/*ALL Settings*/
/*-----------------------------------------------*/
html {
  height: 100%;
}

body {
  height: 100%;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #fff;
  vertical-align: baseline;
  background-image: url(../img/bg_pt.jpg);
}

@media only screen and (max-width: 850px) {
  body {
    font-size: 14px;
  }
}
main {
  min-width: 1080px;
  overflow: hidden;
}

@media only screen and (max-width: 850px) {
  main {
    min-width: auto;
    padding-top: 2em;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.sp-none {
  display: block;
}

.pc-none {
  display: none;
}

@media only screen and (max-width: 850px) {
  .sp-none {
    display: none;
  }
  .pc-none {
    display: block;
  }
}
.fadein {
  opacity: 0;
  transform: translate(0, -30px);
  transition: all 1000ms;
}

.fadeinLeft {
  opacity: 0;
  transform: translate(-40px, 0);
  transition: all 1000ms;
}

.fadeinRight {
  opacity: 0;
  transform: translate(40px, 0);
  transition: all 1000ms;
}

.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeinBounce {
  opacity: 0;
}

.scrollinBounce {
  animation-name: bounceIn;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    opacity: 1;
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0.8);
  }
  40% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(0.9);
  }
  80% {
    transform: scale(1.1);
  }
}
@keyframes yureL {
  0% {
    transform: rotateZ(10deg);
  }
  50% {
    transform: rotateZ(-10deg);
  }
  100% {
    transform: rotateZ(10deg);
  }
}
@keyframes yureR {
  0% {
    transform: rotateZ(-10deg) scale(-1, 1);
  }
  50% {
    transform: rotateZ(10deg) scale(-1, 1);
  }
  100% {
    transform: rotateZ(-10deg) scale(-1, 1);
  }
}
/*!------------------------*\
    component
\*!------------------------*/
.maxW {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.maxW__800 {
  max-width: 800px;
  margin: 0 auto;
}

@media only screen and (max-width: 850px) {
  .maxW {
    max-width: 94%;
    padding: 0;
  }
  .maxW__800 {
    max-width: 94%;
  }
}
.wrap {
  max-width: 1040px;
  padding: 8em 4%;
  margin: 0 auto;
}

@media only screen and (max-width: 850px) {
  .wrap {
    padding: 60px 6%;
  }
}
.shadow {
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 10px;
}

.pd__10 {
  padding: 10px;
}
.pd__20 {
  padding: 20px;
}
.pd__30 {
  padding: 30px;
}
.pd__40 {
  padding: 40px;
}
.pd__50 {
  padding: 50px;
}
.pd__60 {
  padding: 60px;
}

.mgT__10 {
  margin-top: 10px;
}
.mgT__20 {
  margin-top: 20px;
}
.mgT__30 {
  margin-top: 30px;
}
.mgT__40 {
  margin-top: 40px;
}

.mgB__10 {
  margin-bottom: 10px;
}
.mgB__20 {
  margin-bottom: 20px;
}
.mgB__30 {
  margin-bottom: 30px;
}
.mgB__40 {
  margin-bottom: 40px;
}

.undoBox {
  transform: skewY(6deg);
}

.bg__blk {
  background-image: url(../img/bg_blk.jpg);
  background-size: cover;
}

.linkNone {
  display: inline-block;
  position: relative;
}
.linkNone::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background-color: #000;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
}

/*!------------------------*\
    header
\*!------------------------*/
header {
  width: 100%;
  min-width: 1080px;
  height: 80px;
  padding: 0 4% 0 8%;
  display: flex;
  align-items: center;
  transition: 0.3s;
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
}
header .area__logo {
  width: 180px;
}
header .area__menu {
  flex-grow: 1;
}
header .area__menu ul {
  display: flex;
  justify-content: flex-end;
}
header .area__menu ul li {
  margin-right: 4%;
}
header .area__menu ul li a {
  font-size: 18px;
}
header .area__menu ul li a:hover {
  opacity: 0.7;
}
header .hamburger {
  display: none;
}

.hdActive {
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 10px;
}

@media only screen and (max-width: 850px) {
  header {
    height: auto;
    min-width: auto;
    padding: 12px 4%;
  }
  header .area__logo {
    width: 140px;
    opacity: 1;
  }
  header .area__logo img {
    width: 80px;
  }
  header .area__menu ul {
    display: none;
  }
  header .hamburger {
    display: flex;
    justify-content: flex-end;
  }
  header .hamburger img {
    width: 16px;
  }
  .hdActive .area__logo {
    opacity: 1;
  }
}
.modal-menu {
  display: none;
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}

.global-menu {
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.9);
}
.global-menu__base {
  width: 94%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.global-menu .area__logo img {
  width: 50%;
}
.global-menu .area__menu ul {
  margin: 20px 0 40px;
}
.global-menu .area__menu ul li {
  padding: 12px 0;
}
.global-menu .area__menu ul li a {
  font-size: 16px;
  font-style: italic;
}

.close-btn {
  width: 16px;
  height: 16px;
  position: fixed;
  top: 20px;
  right: 4%;
}
.close-btn a {
  width: 100%;
  height: 100%;
  display: block;
}

/*!------------------------*\
    main
\*!------------------------*/
.mainVisual {
  min-width: 1080px;
  position: relative;
}
.mainVisual::before {
  content: "";
  width: 200px;
  height: 290px;
  background-image: url(../img/triangle_org.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: -6%;
}
.mainVisual::after {
  content: "";
  width: 780px;
  height: 430px;
  background-image: url(../img/gra_1-F16.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  position: absolute;
  right: 0;
  bottom: -26%;
}
.mainVisual__img img {
  width: 100%;
}
.mainVisual__content {
  width: 90%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.mainVisual .area__logo {
  margin-bottom: 30px;
}
.mainVisual .area__logo img {
  margin-bottom: 30px;
}
.mainVisual .area__logo h2 {
  font-size: 20px;
}

@media only screen and (max-width: 850px) {
  .mainVisual {
    min-width: auto;
  }
  .mainVisual::before {
    width: 80px;
    height: 120px;
    left: 0;
    bottom: -6%;
  }
  .mainVisual::after {
    width: 320px;
    height: 180px;
    right: 0;
    bottom: -24%;
  }
  .mainVisual .area__logo {
    width: 90%;
    margin: 20px auto 20px;
  }
  .mainVisual .area__logo img {
    width: 50%;
    max-width: 300px;
    margin-bottom: 20px;
  }
  .mainVisual .area__logo h2 {
    font-size: 14px;
  }
}
.joinSns {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.joinSns p {
  font-size: 18px;
  font-weight: 700;
}
.joinSns span {
  width: 40px;
  margin: 0 20px;
  border-top: 1px solid #fff;
}
.joinSns ul {
  display: flex;
}
.joinSns ul li {
  margin-right: 16px;
}
.joinSns ul li:last-of-type {
  margin-right: 0;
}
.joinSns ul li a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 850px) {
  .joinSns {
    margin-bottom: 20px;
  }
  .joinSns p {
    font-size: 16px;
  }
  .joinSns span {
    width: 30px;
    margin: 0 10px;
  }
  .joinSns ul li {
    width: 20px;
    margin-right: 16px;
  }
  .joinSns ul li a:hover {
    opacity: 1;
  }
}
.btnSide {
  display: flex;
  justify-content: center;
}
.btnSide .btn__gold {
  margin-right: 30px;
}
.btnSide .btn__gold:last-of-type {
  margin-right: 0;
}
.btnSide .btn__gold a {
  width: 276px;
}

.btn__gold a {
  width: 100%;
  max-width: 300px;
  padding: 20px 40px;
  margin: 0 auto;
  border-radius: 50px;
  background: rgb(215, 198, 141);
  background: linear-gradient(90deg, rgb(215, 198, 141) 0%, rgb(71, 47, 23) 100%);
  display: block;
}
.btn__gold a:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 850px) {
  .btnSide {
    display: block;
  }
  .btnSide .btn__gold {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .btnSide .btn__gold:last-of-type {
    margin-bottom: 0;
  }
  .btnSide .btn__gold a {
    width: 260px;
  }
  .btn__gold a {
    max-width: 260px;
    padding: 12px 30px;
  }
  .btn__gold a:hover {
    opacity: 0.8;
  }
}
/*!------------------------*\
      movie
\*!------------------------*/
.movie .wrap {
  padding: 4em 4% 0;
}
.movie .wrap .area__movie {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 850px) {
  .movie .wrap {
    padding: 0 4%;
  }
}
.video-youtube {
  width: 100%;
  margin: 30px 0;
  padding-top: 56.25%;
  position: relative;
}
.video-youtube iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  right: 0;
}

/*!------------------------*\
    about
\*!------------------------*/
.about {
  text-align: center;
}
.about__title {
  margin-bottom: 60px;
}
.about__title h3 {
  margin-bottom: 30px;
}
.about__title p {
  line-height: 1.8;
}
.about__capture img {
  width: 30%;
  margin-right: 30px;
}
.about__capture img:last-of-type {
  margin-right: 0;
}

@media only screen and (max-width: 850px) {
  .about__title {
    margin-bottom: 20px;
  }
  .about__title h3 {
    margin-bottom: 20px;
  }
  .about__title p {
    line-height: 1.6;
  }
  .about__capture {
    display: flex;
  }
  .about__capture img {
    width: 32%;
    margin-right: 2%;
  }
}
/*!------------------------*\
  introductory
\*!------------------------*/
.introductory {
  text-align: center;
}
.introductory .wrap {
  padding: 2em 4% 8%;
}
.introductory__title {
  margin-bottom: 60px;
}
.introductory__title h3 {
  margin-bottom: 30px;
}
.introductory__title p {
  line-height: 1.8;
}
.introductory__capture {
  display: flex;
  flex-wrap: wrap;
}
.introductory__capture li {
  width: 30%;
  margin-right: 30px;
}
.introductory__capture li:last-of-type {
  margin-right: 0;
}
.introductory__capture img {
  width: 100%;
  margin-bottom: 8px;
}
.introductory__capture span {
  font-size: 16px;
  display: block;
  text-align: right;
}

@media only screen and (max-width: 850px) {
  .introductory .wrap {
    padding: 0 6% 60px;
  }
  .introductory__title {
    margin-bottom: 20px;
  }
  .introductory__title h3 {
    margin-bottom: 20px;
  }
  .introductory__title p {
    line-height: 1.8;
  }
  .introductory__capture {
    display: block;
  }
  .introductory__capture li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .introductory__capture img {
    margin-bottom: 8px;
  }
  .introductory__capture span {
    font-size: 16px;
  }
}
.movie__area {
  max-width: 800px;
  margin: 0 auto;
}
.movie__area .js-modal-video-open {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.movie__area .js-modal-video-open::before {
  content: "";
  width: 60px;
  height: 40px;
  background-color: #ff2400;
  border-radius: 20%;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.movie__area .js-modal-video-open::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.movie__area p {
  margin-top: 20px;
}

@media only screen and (max-width: 850px) {
  .movie__area .js-modal-video-open {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .movie__area .js-modal-video-open::before {
    content: "";
    width: 60px;
    height: 40px;
    background-color: #ff2400;
    border-radius: 20%;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .movie__area .js-modal-video-open::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #fff;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .movie__area p {
    margin-top: 20px;
  }
}
#modal-video {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  transition: 0.5s;
  z-index: 10000;
}
#modal-video.close {
  filter: opacity(0);
  visibility: hidden;
}
#modal-video.open {
  filter: opacity(1);
  visibility: visible;
}
#modal-video iframe {
  width: 64vw;
  height: 36vw;
}

@media only screen and (max-width: 850px) {
  #modal-video iframe {
    width: 90vw;
    height: 51vw;
  }
}
/*!------------------------*\
    earn
\*!------------------------*/
.bg__001 {
  background-image: url(../img/bg_play.png);
  background-repeat: no-repeat;
  background-position: top right;
}

@media only screen and (max-width: 850px) {
  .bg__001 {
    background-size: 120%;
  }
}
.earn {
  padding-top: 110px;
  margin-top: -300px;
}
.earn .wrap {
  padding-bottom: 0;
  display: flex;
  align-items: center;
}
.earn__title {
  width: 55%;
  padding-left: 60px;
  position: relative;
  z-index: 1;
}
.earn__title::before {
  content: "";
  width: 820px;
  height: 870px;
  background-image: url(../img/play_gra.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -370px;
  left: -400px;
  z-index: -1;
}
.earn__title h3 {
  margin-bottom: 30px;
}
.earn__content {
  width: 55%;
  margin-left: -16%;
  position: relative;
  z-index: 1;
}
.earn__content h4 {
  font-size: 36px;
  text-align: center;
}
.earn__content p {
  font-size: 16px;
  text-align: center;
}
.earn .cont__base {
  display: inline-block;
  position: relative;
}
.earn .cont__position {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.earn .cont__01 {
  transition-delay: 0.2s;
}
.earn .cont__02 {
  position: absolute;
  right: -110px;
  top: 200px;
  transition-delay: 0.4s;
}
.earn .cont__03 {
  margin-top: 180px;
  margin-left: 140px;
  transition-delay: 0.6s;
}

@media only screen and (max-width: 850px) {
  .earn {
    padding-top: 0;
    margin-top: -40px;
  }
  .earn .wrap {
    padding-bottom: 0;
    display: block;
  }
  .earn__title {
    width: 66%;
    max-width: 420px;
    padding-left: 0;
    margin-top: 30px;
    margin-bottom: 40px;
    margin-left: auto;
  }
  .earn__title::before {
    width: 400px;
    height: 430px;
    top: -110px;
    left: -330px;
  }
  .earn__title h3 {
    width: 80%;
    margin-bottom: 10px;
  }
  .earn__content {
    width: 100%;
    max-width: 410px;
    margin: 0 auto;
  }
  .earn__content h4 {
    font-size: 24px;
  }
  .earn__content p {
    font-size: 11px;
  }
  .earn .cont__base {
    max-width: 230px;
    min-width: 230px;
  }
  .earn .cont__base img {
    width: 100%;
  }
  .earn .cont__01 {
    margin-left: -30px;
  }
  .earn .cont__02 {
    right: auto;
    left: 150px;
    top: 90px;
  }
  .earn .cont__03 {
    margin-top: -10px;
    margin-left: -20px;
  }
}
/*!------------------------*\
        futures
\*!------------------------*/
.futures__title {
  padding-left: 4%;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.futures__title::after {
  content: "";
  width: 700px;
  height: 300px;
  background-image: url(../img/future_gra.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -180px;
  top: -90px;
  z-index: -1;
}
.futures ul {
  display: flex;
}
.futures ul li {
  width: 25%;
  padding: 2%;
  text-align: center;
}
.futures ul li:nth-of-type(1) {
  transition-delay: 0.2s;
}
.futures ul li:nth-of-type(2) {
  transition-delay: 0.4s;
}
.futures ul li:nth-of-type(3) {
  transition-delay: 0.6s;
}
.futures ul li:nth-of-type(4) {
  transition-delay: 0.8s;
}
.futures ul li img {
  width: 90px;
  margin-bottom: 20px;
}
.futures ul li h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.futures ul li p {
  font-size: 16px;
}

@media only screen and (max-width: 850px) {
  .futures__title {
    padding-left: 0;
    text-align: center;
    margin-bottom: 40px;
  }
  .futures__title img {
    width: 70%;
    max-width: 300px;
  }
  .futures__title::after {
    width: 430px;
    height: 190px;
    right: -180px;
    top: -120px;
  }
  .futures ul {
    flex-wrap: wrap;
  }
  .futures ul li {
    width: 50%;
    padding: 2%;
    margin-bottom: 20px;
  }
  .futures ul li img {
    width: 60px;
    margin-bottom: 10px;
  }
  .futures ul li h4 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .futures ul li p {
    font-size: 14px;
  }
}
/*!------------------------*\
    token
\*!------------------------*/
.bg__002 {
  background-image: url(../img/bg_token.png);
  background-repeat: no-repeat;
  background-position: top left;
}

@media only screen and (max-width: 850px) {
  .bg__002 {
    background-size: 120%;
  }
}
.bg__003 {
  background-image: url(../img/bg_team.png);
  background-repeat: no-repeat;
  background-position: bottom 500px right;
}

@media only screen and (max-width: 850px) {
  .bg__003 {
    background-size: 120%;
    background-position: bottom 700px right;
  }
}
.token {
  margin-top: -160px;
}
.token .wrap {
  padding-bottom: 0;
  display: flex;
  align-items: center;
}
.token__title {
  width: 46%;
  padding-left: 60px;
  position: relative;
  z-index: 1;
}
.token__title::before {
  content: "";
  width: 780px;
  height: 380px;
  background-image: url(../img/token_gra.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -310px;
  left: -230px;
  z-index: -1;
}
.token__title h3 {
  margin-bottom: 30px;
}
.token__content {
  width: 54%;
  text-align: right;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 850px) {
  .token {
    margin-top: -80px;
    padding-top: 110px;
  }
  .token .wrap {
    display: block;
  }
  .token__title {
    width: 100%;
    padding-left: 0;
  }
  .token__title::before {
    width: 440px;
    height: 220px;
    top: -170px;
    left: auto;
    right: -110px;
  }
  .token__title h3 {
    margin-bottom: 30px;
    text-align: center;
  }
  .token__title h3 img {
    width: 80%;
    max-width: 340px;
  }
  .token__title p {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  .token__content {
    width: 94%;
    margin: 0 auto;
    text-align: center;
  }
}
/*!------------------------*\
    roadmap
\*!------------------------*/
.roadmap {
  margin-top: -80px;
}
.roadmap .wrap {
  padding-bottom: 0;
  display: flex;
  flex-direction: row-reverse;
}
.roadmap__title {
  width: 40%;
  margin-top: 80px;
  margin-left: -10%;
  position: relative;
  z-index: 1;
}
.roadmap__title::before {
  content: "";
  width: 780px;
  height: 640px;
  background-image: url(../img/roadmap_gra.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 60px;
  right: -280px;
  z-index: -1;
}
.roadmap__title h3 {
  margin-bottom: 30px;
}
.roadmap__content {
  width: 70%;
  position: relative;
  z-index: 1;
}
.roadmap__content ul li {
  display: flex;
  align-items: center;
  margin-bottom: -60px;
}
.roadmap__content ul li:nth-of-type(odd) {
  margin-left: 90px;
}
.roadmap__content ul li:nth-of-type(4n) {
  margin-left: 180px;
}
.roadmap__content ul li .stage {
  display: inline-block;
  position: relative;
}
.roadmap__content ul li .stage__content {
  font-weight: 700;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.roadmap__content ul li .stage__content .data {
  font-size: 20px;
  margin-top: -10px;
  margin-bottom: -14px;
}
.roadmap__content ul li .stage__content .stageNo {
  font-size: 30px;
}
.roadmap__content ul li .stage__content .stageNo span {
  font-size: 36px;
  margin-left: 10px;
}
.roadmap__content ul li .stageContent {
  text-align: left;
}

@media only screen and (max-width: 850px) {
  .roadmap {
    margin-top: 0;
  }
  .roadmap .wrap {
    padding-bottom: 10%;
    display: block;
  }
  .roadmap__title {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 130px;
  }
  .roadmap__title::before {
    width: 440px;
    height: 430px;
    top: -40px;
    left: -90px;
    right: auto;
  }
  .roadmap__title h3 {
    margin-bottom: 30px;
    text-align: right;
  }
  .roadmap__title h3 img {
    width: 50%;
    margin-right: 6%;
  }
  .roadmap__content {
    width: 106%;
    margin-left: -6%;
    text-align: center;
  }
  .roadmap__content ul {
    display: inline-block;
  }
  .roadmap__content ul li {
    display: flex;
    align-items: center;
    margin-bottom: -36px;
  }
  .roadmap__content ul li:nth-of-type(odd) {
    margin-left: 40px;
  }
  .roadmap__content ul li:nth-of-type(4n) {
    margin-left: 0;
  }
  .roadmap__content ul li .stage {
    width: 150px;
  }
  .roadmap__content ul li .stage__content {
    text-align: left;
  }
  .roadmap__content ul li .stage .data {
    font-size: 14px;
    margin-top: 0;
  }
  .roadmap__content ul li .stage .stageNo {
    font-size: 18px;
  }
  .roadmap__content ul li .stage .stageNo span {
    font-size: 22px;
    margin-left: 4px;
  }
}
/*!------------------------*\
    team
\*!------------------------*/
.team .wrap {
  padding-bottom: 0;
}
.team__title {
  margin-bottom: 80px;
}
.team ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
.team ul li {
  width: 22%;
  text-align: center;
  margin-bottom: 60px;
  margin-right: 4%;
}
.team ul li:nth-of-type(4n) {
  margin-right: 0;
}
.team ul li .area__img {
  width: 90%;
  padding-top: 100%;
  margin: 0 auto 30px;
  position: relative;
}
.team ul li .area__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.team ul li .area__text h4 {
  font-size: 24px;
}
.team ul li .area__text p {
  font-size: 16px;
  margin-bottom: 0.6em;
}
.team ul li .area__text .note {
  font-size: 12px;
}
.team ul li .area__sns {
  display: flex;
  justify-content: center;
}
.team ul li .area__sns a {
  width: 34px;
  height: 34px;
  padding: 8px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #000;
  display: flex;
}
.team ul li .area__sns a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 850px) {
  .team .wrap {
    padding-bottom: 0;
  }
  .team__title {
    margin-bottom: 40px;
    text-align: center;
  }
  .team__title img {
    width: 32%;
    max-width: 160px;
  }
  .team ul li {
    width: 47%;
    margin-bottom: 30px;
    margin-right: 6%;
  }
  .team ul li:nth-of-type(4n) {
    margin-right: 6%;
  }
  .team ul li:nth-of-type(2n) {
    margin-right: 0;
  }
  .team ul li .area__img {
    margin: 0 auto 10px;
  }
  .team ul li .area__text h4 {
    font-size: 24px;
  }
  .team ul li .area__text p {
    font-size: 14px;
    margin-bottom: 0.4em;
  }
  .team ul li .area__sns a {
    width: 30px;
    height: 30px;
    padding: 8px;
  }
  .team ul li .area__sns a:hover {
    opacity: 1;
  }
}
/*!------------------------*\
    partners
\*!------------------------*/
.partners__title {
  text-align: center;
  margin-bottom: 60px;
}
.partners ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.partners ul li {
  margin: 0 2.5% 30px;
  display: inline-block;
}
.partners ul li a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 850px) {
  .partners__title {
    margin-bottom: 30px;
  }
  .partners ul li a img {
    height: 46px;
  }
  .partners ul li a:hover {
    opacity: 1;
  }
}
/*!------------------------*\
    info
\*!------------------------*/
.info {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
}
.info__title {
  margin-bottom: 40px;
}
.info__title img {
  max-width: 270px;
}
.info__detail dl {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.info__detail dl dt {
  width: 30%;
  font-size: 24px;
  text-align: right;
}
.info__detail dl dd {
  width: 70%;
  font-size: 24px;
  padding-left: 10px;
  text-align: left;
}
.info__detail dl a {
  text-decoration: underline;
}

@media only screen and (max-width: 850px) {
  .info__title img {
    max-width: 240px;
  }
  .info__detail dl dt {
    width: 26%;
    font-size: 14px;
  }
  .info__detail dl dd {
    width: 74%;
    font-size: 14px;
    padding-left: 10px;
  }
}
/*!------------------------*\
    footer
\*!------------------------*/
footer {
  text-align: center;
  margin: 80px 0 0;
  padding-bottom: 40px;
}
footer .copyright {
  font-size: 14px;
  color: #777777;
  letter-spacing: 2px;
}

@media only screen and (max-width: 850px) {
  footer {
    margin: 40px 0 0;
    padding-bottom: 20px;
  }
  footer .joinSns {
    margin-bottom: 30px;
  }
}
/*!------------------------*\
    end
\*!------------------------*/