@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  box-sizing: border-box;
  font-size: 62.5%;
  line-height: 100%; }

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  line-height: 150%;
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100vw; }
  body h1, body h2, body h3, body h4, body h5, body h6 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    line-height: 120%;
    transform: rotate(0.05deg); }
  @media screen and (max-width: 1023px) {
    body h1 {
      font-size: calc(5rem * 0.8);
      margin-bottom: 30px; } }
  @media screen and (min-width: 1024px) {
    body h1 {
      font-size: 5rem;
      margin-bottom: 50px; } }
  @media screen and (max-width: 1023px) {
    body h2 {
      font-size: calc(4rem * 0.6);
      margin-bottom: 20px; } }
  @media screen and (min-width: 1024px) {
    body h2 {
      font-size: 4rem;
      margin-bottom: 30px; } }
  @media screen and (max-width: 1023px) {
    body h3 {
      font-size: calc(3rem * 0.6);
      margin-bottom: 20px; } }
  @media screen and (min-width: 1024px) {
    body h3 {
      font-size: 3rem;
      margin-bottom: 30px; } }
  @media screen and (max-width: 1023px) {
    body h4 {
      font-size: calc(2rem * 0.6);
      margin-bottom: 10px; } }
  @media screen and (min-width: 1024px) {
    body h4 {
      font-size: 2rem;
      margin-bottom: 20px; } }
  @media screen and (max-width: 1023px) {
    body h5 {
      font-size: calc(1.75rem * 0.6);
      margin-bottom: 10px; } }
  @media screen and (min-width: 1024px) {
    body h5 {
      font-size: 1.75rem;
      margin-bottom: 20px; } }
  @media screen and (max-width: 1023px) {
    body h6 {
      font-size: calc(1.6rem * 0.6);
      margin-bottom: 5px; } }
  @media screen and (min-width: 1024px) {
    body h6 {
      font-size: 1.6rem;
      margin-bottom: 10px; } }
  body p {
    font-size: 1.6rem;
    line-height: 150%;
    margin-bottom: 20px; }
    @media screen and (min-width: 1024px) {
      body p {
        font-size: 1.25rem;
        margin-bottom: 20px; } }
  body a {
    transition: all 0.5s; }
    body a:hover {
      opacity: .75;
      transition: all 0.5s; }
  body ul {
    list-style-type: none; }
  body table {
    border: 1px solid #DDD;
    border-collapse: collapse;
    margin: 0 auto;
    position: relative;
    text-align: left;
    table-layout: fixed; }
    body table tr {
      background: #FFF; }
    body table th, body table td {
      border-top: 1px solid #DDD;
      border-collapse: collapse;
      word-break: break-all; }
      @media screen and (max-width: 1023px) {
        body table th, body table td {
          padding: 20px; } }
      @media screen and (min-width: 1024px) {
        body table th, body table td {
          padding: calc(20px * 0.75); } }
    body table th {
      background: #F3F3F3; }
    body table td span {
      margin-right: 0.875rem; }
      body table td span img {
        height: 20px;
        width: auto; }

#term {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10000; }

#backtotop {
  color: #F16D0E;
  cursor: pointer;
  font-size: 4rem;
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 999999; }
  @media screen and (min-width: 1024px) {
    #backtotop {
      right: 20px;
      bottom: 20px; } }

/* .display */
@media screen and (max-width: 1023px) {
  .display-mobile {
    display: block; } }
@media screen and (min-width: 1024px) {
  .display-mobile {
    display: none; } }

@media screen and (max-width: 1023px) {
  .display-pc {
    display: none; } }
@media screen and (min-width: 1024px) {
  .display-pc {
    display: block; } }

/* general */
.video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9; }
  .video-wrap iframe {
    width: 100%;
    height: 100%; }

@media screen and (max-width: 1023px) {
  .note {
    font-size: 1.6rem; } }
@media screen and (min-width: 1024px) {
  .note {
    font-size: 1.25rem; } }

.important {
  color: #F16D0E; }

.source {
  text-align: right; }

.btn-wrap {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  column-gap: 20px; }
  .btn-wrap .btn {
    font-weight: 700;
    display: block;
    width: 100%;
    position: relative;
    transform: rotate(0.05deg); }
    .btn-wrap .btn > * {
      -webkit-border-radius: 100vh;
      -moz-border-radius: 100vh;
      border-radius: 100vh;
      color: #FFF;
      cursor: pointer;
      display: block;
      line-height: 0;
      margin: 0 auto;
      position: relative;
      text-decoration: none;
      text-align: center;
      width: 100%; }
      @media screen and (max-width: 1023px) {
        .btn-wrap .btn > * {
          height: 60px;
          width: 100%; } }
      @media screen and (min-width: 1024px) {
        .btn-wrap .btn > * {
          padding: 10px;
          height: 40px;
          width: 300px; } }
      .btn-wrap .btn > * span {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        white-space: nowrap; }
        @media screen and (max-width: 1023px) {
          .btn-wrap .btn > * span {
            font-size: 1.25rem; } }
        @media screen and (min-width: 1024px) {
          .btn-wrap .btn > * span {
            font-size: 1.6rem; } }
      .btn-wrap .btn > * i {
        position: absolute;
        top: 50%;
        right: 5%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%); }

.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
  width: 100%; }
  .tab li {
    cursor: pointer;
    display: block;
    position: relative;
    transition: all 0.5s; }
    .tab li span {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      text-align: center;
      width: 100%; }

.tab-wrap {
  display: none; }
  .tab-wrap.show {
    display: block; }

.modalWrap {
  background: rgba(255, 255, 255, 0.75);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000; }
  .modalWrap .modalCont {
    background: #FFF;
    border: 3px solid #F16D0E;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    height: auto; }
    @media screen and (max-width: 1023px) {
      .modalWrap .modalCont {
        width: 90%; } }
    @media screen and (min-width: 1024px) {
      .modalWrap .modalCont {
        width: 550px; } }
    .modalWrap .modalCont .inner {
      position: relative;
      width: 100%; }
      .modalWrap .modalCont .inner .close {
        color: #FFF;
        cursor: pointer;
        position: absolute;
        z-index: 100; }
        @media screen and (max-width: 1023px) {
          .modalWrap .modalCont .inner .close {
            font-size: calc(4rem * 1.5);
            top: 25px;
            right: 15px; } }
        @media screen and (min-width: 1024px) {
          .modalWrap .modalCont .inner .close {
            font-size: 4rem;
            top: 30px;
            right: 20px; } }
      .modalWrap .modalCont .inner h3 {
        background: #F16D0E;
        color: #FFF;
        margin-bottom: 0;
        padding: 20px 0;
        text-align: center; }
        @media screen and (max-width: 1023px) {
          .modalWrap .modalCont .inner h3 {
            font-size: calc(4rem * 0.8); } }
        @media screen and (min-width: 1024px) {
          .modalWrap .modalCont .inner h3 {
            font-size: 3rem; } }
      .modalWrap .modalCont .inner figure {
        width: 100%; }
        @media screen and (min-width: 1024px) {
          .modalWrap .modalCont .inner figure {
            margin: 0 auto;
            text-align: center;
            max-width: 500px; } }
        .modalWrap .modalCont .inner figure img {
          height: auto;
          width: 100%; }

.results .ex span {
  background-color: #FFF799;
  background-image: url("../images/icn_prize.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 50%;
  border: 1px solid #DDD;
  display: inline-block;
  height: 2rem;
  margin-right: 0.875rem;
  width: 4rem;
  vertical-align: middle; }

/***** common *****/
header, section, footer {
  display: block;
  width: 100%; }
  header .inner, section .inner, footer .inner {
    position: relative; }
    @media screen and (max-width: 1023px) {
      header .inner, section .inner, footer .inner {
        width: 100%; } }
    @media screen and (min-width: 1024px) {
      header .inner, section .inner, footer .inner {
        margin: 0 auto;
        max-width: 980px; } }

@media screen and (max-width: 1023px) {
  section .inner {
    padding: 0 5%; } }

/***** #header *****/
header {
  background: rgba(255, 255, 255, 0.9);
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000; }
  @media screen and (max-width: 1023px) {
    header {
      height: 100px; } }
  @media screen and (min-width: 1024px) {
    header {
      height: 100px; } }
  @media screen and (max-width: 1023px) {
    header .inner {
      padding: 25px 5%; } }
  @media screen and (min-width: 1024px) {
    header .inner {
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 25px 0; } }
  header #logo {
    display: block; }
    @media screen and (max-width: 1023px) {
      header #logo {
        height: 60px;
        width: auto; } }
    @media screen and (min-width: 1024px) {
      header #logo {
        height: 50px;
        width: auto; } }
    header #logo img {
      height: 100%;
      width: auto; }
  header #menu {
    position: absolute;
    top: 30px;
    right: 5%;
    height: 30px;
    width: 40px;
    z-index: 120; }
    header #menu .bar {
      display: inline-block;
      width: 40px;
      height: 2px;
      background-color: #000;
      position: absolute;
      left: 0;
      transition: .15s ease-in-out; }
      header #menu .bar#bar01 {
        top: 0; }
      header #menu .bar#bar02 {
        top: 15px; }
      header #menu .bar#bar03 {
        top: 30px; }
    header #menu.active #bar01 {
      top: 15px;
      transform: rotate(45deg); }
    header #menu.active #bar02 {
      top: 15px;
      transform: rotate(45deg); }
    header #menu.active #bar03 {
      top: 15px;
      transform: rotate(-45deg); }
    @media screen and (max-width: 1023px) {
      header #menu {
        display: block; } }
    @media screen and (min-width: 1024px) {
      header #menu {
        display: none; } }
  header #g-nav {
    font-weight: 700; }
    @media screen and (max-width: 1023px) {
      header #g-nav .nav-wrap {
        background-color: rgba(255, 255, 255, 0.9);
        display: block;
        margin-left: -5%;
        position: absolute;
        padding: 100px 5% 0;
        height: 100vh;
        top: 100px;
        width: 100vw;
        z-index: 100;
        transition: all .5; }
        header #g-nav .nav-wrap li a {
          border-bottom: 1px solid #DDD;
          display: block;
          font-size: 2rem;
          padding-bottom: 50px;
          margin-bottom: 50px; } }
    @media screen and (max-width: 1023px) {
      header #g-nav .nav-wrap li.off {
        opacity: 0.5;
        filter: alpha(opacity=50);
        -ms-filter: "alpha( opacity=50 )"; }
        header #g-nav .nav-wrap li.off a {
          cursor: default; }
          header #g-nav .nav-wrap li.off a:hover {
            border-bottom: 0; } }
    @media screen and (min-width: 1024px) {
      header #g-nav .nav-wrap {
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 1.25rem;
        height: 50px;
        width: 700px; }
        header #g-nav .nav-wrap li.off {
          opacity: 0.5;
          filter: alpha(opacity=50);
          -ms-filter: "alpha( opacity=50 )"; }
          header #g-nav .nav-wrap li.off a {
            cursor: default; }
            header #g-nav .nav-wrap li.off a:hover {
              border-bottom: 0; }
        header #g-nav .nav-wrap li a {
          position: relative;
          padding: 20px 10px; }
        header #g-nav .nav-wrap li a::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 3px;
          background: #EE3026;
          transition: all .3s;
          transform: scale(0, 1);
          transform-origin: left top; }
        header #g-nav .nav-wrap li a:hover::after {
          transform: scale(1, 1); } }

/***** #main *****/
section#main {
  margin-top: 100px; }
  @media screen and (max-width: 1023px) {
    section#main {
      width: 100%; } }
  @media screen and (min-width: 1024px) {
    section#main {
      width: 100%; } }
section#provider .logo-wrap {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  column-gap: 50px;
  padding: 50px 0; }
  @media screen and (max-width: 1023px) {
    section#provider .logo-wrap {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }
  @media screen and (max-width: 1023px) {
    section#provider .logo-wrap figure {
      margin-bottom: 50px;
      width: 60%; }
      section#provider .logo-wrap figure img {
        height: auto;
        width: 100%; } }
  @media screen and (min-width: 1024px) {
    section#provider .logo-wrap figure {
      height: 50px; }
      section#provider .logo-wrap figure img {
        height: 100%;
        width: auto; } }

/***** footer *****/
footer {
  border-top: 1px solid #DDD; }
  @media screen and (max-width: 1023px) {
    footer {
      padding: 50px 0; } }
  @media screen and (min-width: 1024px) {
    footer {
      padding: 20px 0; } }
  footer .inner {
    display: flex; }
    @media screen and (max-width: 1023px) {
      footer .inner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }
    @media screen and (min-width: 1024px) {
      footer .inner {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
    footer .inner nav .nav-wrap {
      display: flex;
      column-gap: 20px; }
      @media screen and (max-width: 1023px) {
        footer .inner nav .nav-wrap {
          margin-bottom: 20px;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; } }
      @media screen and (min-width: 1024px) {
        footer .inner nav .nav-wrap {
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between; } }
      @media screen and (max-width: 1023px) {
        footer .inner nav .nav-wrap li {
          font-size: 2rem;
          margin-bottom: 30px;
          text-align: center;
          width: 25%; } }
      @media screen and (min-width: 1024px) {
        footer .inner nav .nav-wrap li {
          font-size: 1.25rem; } }
      footer .inner nav .nav-wrap li.off {
        opacity: 0.5;
        filter: alpha(opacity=50);
        -ms-filter: "alpha( opacity=50 )"; }
        footer .inner nav .nav-wrap li.off a {
          cursor: default; }
          footer .inner nav .nav-wrap li.off a:hover {
            border-bottom: 0; }
    @media screen and (max-width: 1023px) {
      footer .inner address {
        font-size: 2rem; } }
    @media screen and (min-width: 1024px) {
      footer .inner address {
        font-size: 1.25rem; } }

/********** #index **********/
#index header #g-nav .nav-wrap a.index::after {
  transform: scale(1, 1); }
#index section#main {
  background-repeat: no-repeat;
  background-position: center top; }
  @media screen and (max-width: 1023px) {
    #index section#main {
      background-image: url("../images/index/main_bg_sp.png");
      background-size: cover; } }
  @media screen and (min-width: 1024px) {
    #index section#main {
      background-image: url("../images/index/main_bg.png");
      background-size: 2000px 1000px;
      width: 100%; } }
  #index section#main .inner {
    position: relative; }
    @media screen and (max-width: 1023px) {
      #index section#main .inner {
        padding-top: 125%; } }
    @media screen and (min-width: 1024px) {
      #index section#main .inner {
        min-height: 650px; } }
    #index section#main .inner h1, #index section#main .inner h2, #index section#main .inner h3 {
      position: absolute; }
      #index section#main .inner h1 img, #index section#main .inner h2 img, #index section#main .inner h3 img {
        height: auto;
        width: 100%; }
    #index section#main .inner h1 {
      animation-delay: 0.4s; }
      @media screen and (max-width: 1023px) {
        #index section#main .inner h1 {
          top: 0;
          left: 0;
          height: auto;
          width: 100%;
          z-index: 0; } }
      @media screen and (min-width: 1024px) {
        #index section#main .inner h1 {
          top: 290px;
          left: 0;
          height: auto;
          width: 230px; } }
    @media screen and (max-width: 1023px) {
      #index section#main .inner h2 {
        top: 0;
        left: 0;
        height: auto;
        width: 100%;
        z-index: 1; } }
    @media screen and (min-width: 1024px) {
      #index section#main .inner h2 {
        top: 170px;
        left: 100px;
        height: auto;
        width: 260px; } }
    #index section#main .inner h3 {
      animation-delay: 0.2s; }
      @media screen and (max-width: 1023px) {
        #index section#main .inner h3 {
          top: 0;
          left: 0;
          height: auto;
          width: 100%;
          z-index: 2; } }
      @media screen and (min-width: 1024px) {
        #index section#main .inner h3 {
          top: 220px;
          left: 190px;
          height: auto;
          width: 150px; } }
#index section#topics {
  padding-bottom: 50px;
  width: 100%; }
  @media screen and (max-width: 1023px) {
    #index section#topics {
      background: #fffbbf; } }
  @media screen and (min-width: 1024px) {
    #index section#topics {
      background: linear-gradient(rgba(255, 251, 191, 0) 25%, #fffbbf 26%, #fffbbf 100%); } }
  @media screen and (max-width: 1023px) {
    #index section#topics .inner {
      margin-top: -50px;
      padding: 0 5%; } }
  @media screen and (min-width: 1024px) {
    #index section#topics .inner {
      display: block;
      margin-top: -100px; } }
  #index section#topics h1 {
    margin-bottom: 30px;
    text-align: center; }
    @media screen and (max-width: 1023px) {
      #index section#topics h1 {
        height: 45px; } }
    @media screen and (min-width: 1024px) {
      #index section#topics h1 {
        height: 45px; } }
    #index section#topics h1 img {
      height: 100%;
      width: auto; }
  #index section#topics .topics {
    background: #FFF; }
    @media screen and (max-width: 1023px) {
      #index section#topics .topics {
        height: 350px;
        padding: 25px 5%;
        width: 100%; } }
    @media screen and (min-width: 1024px) {
      #index section#topics .topics {
        height: 250px;
        margin: 0 auto;
        padding: 50px;
        width: 700px; } }
    #index section#topics .topics ul {
      overflow-y: scroll;
      width: 100%;
      z-index: 10; }
      @media screen and (max-width: 1023px) {
        #index section#topics .topics ul {
          font-size: 2rem;
          height: 300px; } }
      @media screen and (min-width: 1024px) {
        #index section#topics .topics ul {
          font-size: 1.25rem;
          height: 150px; } }
      #index section#topics .topics ul li {
        display: flex;
        border-bottom: 1px solid #DDD; }
        @media screen and (max-width: 1023px) {
          #index section#topics .topics ul li {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            padding-bottom: 30px;
            margin-bottom: 30px; } }
        @media screen and (min-width: 1024px) {
          #index section#topics .topics ul li {
            padding-bottom: 20px;
            margin-bottom: 20px; } }
        #index section#topics .topics ul li:first-child {
          padding-top: 10px; }
        #index section#topics .topics ul li:last-child {
          margin-bottom: 0; }
        @media screen and (max-width: 1023px) {
          #index section#topics .topics ul li span.date {
            margin-bottom: 20px;
            width: 100%; } }
        @media screen and (min-width: 1024px) {
          #index section#topics .topics ul li span.date {
            width: 15%; } }
        @media screen and (max-width: 1023px) {
          #index section#topics .topics ul li span.title {
            width: 100%; } }
        @media screen and (min-width: 1024px) {
          #index section#topics .topics ul li span.title {
            width: 85%; } }
#index section#message {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-color: #FFFBBF;
  position: relative; }
  @media screen and (max-width: 1023px) {
    #index section#message {
      background-image: url("../images/index/message_bg_sp.png"); } }
  @media screen and (min-width: 1024px) {
    #index section#message {
      background-image: url("../images/index/message_bg.png"); } }
  #index section#message .message {
    position: relative; }
    @media screen and (max-width: 1023px) {
      #index section#message .message .inner .text {
        padding: 150px 0 50px; } }
    @media screen and (min-width: 1024px) {
      #index section#message .message .inner .text {
        display: block;
        padding-top: calc(150px * 0.8);
        padding-left: calc(150px * 1.6);
        padding-bottom: 50px; } }
    @media screen and (max-width: 1023px) {
      #index section#message .message .inner .text h1 {
        font-size: calc(4rem * 0.8);
        margin-bottom: 20px; } }
    @media screen and (min-width: 1024px) {
      #index section#message .message .inner .text h1 {
        font-size: 2rem;
        margin-bottom: 20px; } }
    @media screen and (max-width: 1023px) {
      #index section#message .message .inner .text p {
        font-size: 2rem; } }
    @media screen and (min-width: 1024px) {
      #index section#message .message .inner .text p {
        font-size: 1.6rem; } }
    @media screen and (max-width: 1023px) {
      #index section#message .message .inner .megapon {
        position: relative;
        margin-bottom: 50px; } }
    @media screen and (min-width: 1024px) {
      #index section#message .message .inner .megapon {
        position: absolute;
        right: calc(150px * 0.9);
        top: calc(150px * 1.0); } }
    @media screen and (max-width: 1023px) {
      #index section#message .message .inner .megapon figure {
        position: absolute;
        right: 5%;
        bottom: -35px;
        width: 150px; }
        #index section#message .message .inner .megapon figure img {
          height: auto;
          width: 100%; } }
    @media screen and (min-width: 1024px) {
      #index section#message .message .inner .megapon figure {
        margin: 0 auto 10px;
        width: 100px; }
        #index section#message .message .inner .megapon figure img {
          height: 100%;
          width: auto; } }
    #index section#message .message .inner .megapon .btn {
      border: 3px solid #64BF60;
      background: #FFF;
      position: relative; }
      @media screen and (max-width: 1023px) {
        #index section#message .message .inner .megapon .btn {
          height: 60px;
          width: 100%; } }
      @media screen and (min-width: 1024px) {
        #index section#message .message .inner .megapon .btn {
          height: 50px;
          width: 300px; } }
      #index section#message .message .inner .megapon .btn a span {
        color: #64BF60;
        font-weight: 700;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        white-space: nowrap; }
        @media screen and (max-width: 1023px) {
          #index section#message .message .inner .megapon .btn a span {
            font-size: 2rem;
            top: calc(50% - 5px); } }
        @media screen and (min-width: 1024px) {
          #index section#message .message .inner .megapon .btn a span {
            font-size: 1.25rem; } }
      #index section#message .message .inner .megapon .btn:after {
        content: url("../images/index/message_icn_btn.svg");
        display: block;
        position: absolute;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%); }
        @media screen and (max-width: 1023px) {
          #index section#message .message .inner .megapon .btn:after {
            bottom: -18px;
            height: 30px;
            width: 30px; } }
        @media screen and (min-width: 1024px) {
          #index section#message .message .inner .megapon .btn:after {
            bottom: -12px;
            height: 20px;
            width: 20px; } }
  #index section#message .about {
    background: rgba(255, 247, 96, 0.7);
    position: relative; }
    #index section#message .about .inner {
      display: flex;
      column-gap: 5%;
      width: 100%; }
      @media screen and (max-width: 1023px) {
        #index section#message .about .inner {
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          padding: 100px 5%; } }
      @media screen and (min-width: 1024px) {
        #index section#message .about .inner {
          padding: 30px 0;
          height: 310px; } }
      @media screen and (max-width: 1023px) {
        #index section#message .about .inner .thumb {
          margin-bottom: 20px;
          width: 100%; } }
      @media screen and (min-width: 1024px) {
        #index section#message .about .inner .thumb {
          width: 40%; } }
      #index section#message .about .inner .thumb img {
        height: auto;
        width: 100%; }
      @media screen and (max-width: 1023px) {
        #index section#message .about .inner .text {
          width: 100%; } }
      @media screen and (min-width: 1024px) {
        #index section#message .about .inner .text {
          padding: 50px;
          width: 55%; } }
      #index section#message .about .inner .text p {
        line-height: 180%; }
        @media screen and (max-width: 1023px) {
          #index section#message .about .inner .text p {
            font-size: 2rem; } }
        @media screen and (min-width: 1024px) {
          #index section#message .about .inner .text p {
            font-size: 1.6rem; } }
      #index section#message .about .inner .text .btn a {
        background: #EE3026; }
        #index section#message .about .inner .text .btn a span {
          color: #FFF; }
          @media screen and (max-width: 1023px) {
            #index section#message .about .inner .text .btn a span {
              font-size: 2rem; } }
          @media screen and (min-width: 1024px) {
            #index section#message .about .inner .text .btn a span {
              font-size: 1.25rem; } }
        #index section#message .about .inner .text .btn a:after {
          content: url("../images/index/about_icn_arw.svg");
          display: block;
          position: absolute;
          position: absolute;
          top: 50%;
          -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }
          @media screen and (max-width: 1023px) {
            #index section#message .about .inner .text .btn a:after {
              right: 20px;
              height: 25px;
              width: 25px; } }
          @media screen and (min-width: 1024px) {
            #index section#message .about .inner .text .btn a:after {
              right: 10px;
              height: 20px;
              width: 20px; } }
#index section#content {
  background-image: url("../images/index/content_bg.png");
  background-repeat: repeat;
  position: relative; }
  @media screen and (max-width: 1023px) {
    #index section#content {
      padding: 50px 0; } }
  @media screen and (min-width: 1024px) {
    #index section#content {
      padding: 50px 0; } }
  #index section#content .inner {
    background-image: url("../images/index/content_inner_bg.svg");
    background-repeat: no-repeat;
    background-size: 70%; }
    @media screen and (max-width: 1023px) {
      #index section#content .inner {
        background-position: left 5% top 0;
        padding-top: 50px; } }
    @media screen and (min-width: 1024px) {
      #index section#content .inner {
        background-position: left top;
        padding-top: 50px; } }
    #index section#content .inner h1 {
      margin-bottom: 50px;
      text-align: center; }
      @media screen and (max-width: 1023px) {
        #index section#content .inner h1 {
          height: 45px; } }
      @media screen and (min-width: 1024px) {
        #index section#content .inner h1 {
          height: 45px; } }
      #index section#content .inner h1 img {
        height: 100%;
        width: auto; }
    #index section#content .inner .bnr {
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      column-gap: 5%;
      width: 100%; }
      #index section#content .inner .bnr li:nth-child(2) {
        animation-delay: 0.2s; }
      #index section#content .inner .bnr li:nth-child(3) {
        animation-delay: 0.4s; }
      #index section#content .inner .bnr li:nth-child(4) {
        animation-delay: 0.6s; }
      #index section#content .inner .bnr li:nth-child(5) {
        animation-delay: 0.8s; }
      #index section#content .inner .bnr li:nth-child(6) {
        animation-delay: 1.0s; }
      #index section#content .inner .bnr li img {
        height: auto;
        width: 100%; }
      @media screen and (max-width: 1023px) {
        #index section#content .inner .bnr li {
          margin-bottom: 20px;
          width: 47.5%; } }
      @media screen and (min-width: 1024px) {
        #index section#content .inner .bnr li {
          margin-bottom: 50px;
          width: 30%; } }
#index section#advertisement {
  background: #E5DAFA;
  position: relative; }
  @media screen and (max-width: 1023px) {
    #index section#advertisement {
      padding: 50px 0; } }
  @media screen and (min-width: 1024px) {
    #index section#advertisement {
      padding: 50px 0; } }
  #index section#advertisement .inner {
    background-image: url("../images/index/ad_inner_bg.svg");
    background-repeat: no-repeat;
    background-size: 100%; }
    @media screen and (max-width: 1023px) {
      #index section#advertisement .inner {
        background-position: left 5% top 0;
        padding-top: 50px; } }
    @media screen and (min-width: 1024px) {
      #index section#advertisement .inner {
        background-position: left top;
        padding-top: 50px; } }
    #index section#advertisement .inner h1 {
      margin-bottom: 50px;
      text-align: center; }
      @media screen and (max-width: 1023px) {
        #index section#advertisement .inner h1 {
          height: 45px; } }
      @media screen and (min-width: 1024px) {
        #index section#advertisement .inner h1 {
          height: 45px; } }
      #index section#advertisement .inner h1 img {
        height: 100%;
        width: auto; }
    #index section#advertisement .inner .cm {
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      column-gap: 5%; }
      @media screen and (max-width: 1023px) {
        #index section#advertisement .inner .cm {
          margin-bottom: 30px; } }
      @media screen and (min-width: 1024px) {
        #index section#advertisement .inner .cm {
          margin-bottom: 50px; } }
      #index section#advertisement .inner .cm dl {
        border-top: 2px solid #9F78E9;
        position: relative; }
        @media screen and (max-width: 1023px) {
          #index section#advertisement .inner .cm dl {
            margin-bottom: 50px;
            width: 100%; } }
        @media screen and (min-width: 1024px) {
          #index section#advertisement .inner .cm dl {
            margin-bottom: 50px;
            width: 47.5%; } }
        #index section#advertisement .inner .cm dl dt {
          font-weight: 700;
          text-align: center; }
          @media screen and (max-width: 1023px) {
            #index section#advertisement .inner .cm dl dt {
              font-size: 2rem;
              padding: 20px; } }
          @media screen and (min-width: 1024px) {
            #index section#advertisement .inner .cm dl dt {
              font-size: 1.75rem;
              padding: 10px; } }
        #index section#advertisement .inner .cm dl dd img {
          height: auto;
          width: 100%; }
        #index section#advertisement .inner .cm dl dd.new {
          position: absolute;
          height: auto; }
          @media screen and (max-width: 1023px) {
            #index section#advertisement .inner .cm dl dd.new {
              top: -40px;
              right: -20px;
              width: 80px; } }
          @media screen and (min-width: 1024px) {
            #index section#advertisement .inner .cm dl dd.new {
              top: -30px;
              right: -15px;
              width: 60px; } }
          #index section#advertisement .inner .cm dl dd.new img {
            height: auto;
            width: 100%; }
#index section#profile {
  background: #E4FCE1;
  position: relative; }
  @media screen and (max-width: 1023px) {
    #index section#profile {
      padding: 50px 0; } }
  @media screen and (min-width: 1024px) {
    #index section#profile {
      padding: 50px 0; } }
  #index section#profile .inner {
    background-image: url("../images/index/profile_inner_bg.svg");
    background-repeat: no-repeat;
    background-size: 65%; }
    @media screen and (max-width: 1023px) {
      #index section#profile .inner {
        background-position: left 5% top 0;
        padding-top: 50px; } }
    @media screen and (min-width: 1024px) {
      #index section#profile .inner {
        background-position: left top;
        padding-top: 50px; } }
    #index section#profile .inner h1 {
      text-align: center; }
      @media screen and (max-width: 1023px) {
        #index section#profile .inner h1 {
          height: 200px;
          margin-bottom: 50px; } }
      @media screen and (min-width: 1024px) {
        #index section#profile .inner h1 {
          height: 160px;
          margin-bottom: 100px; } }
      #index section#profile .inner h1 img {
        height: 100%;
        width: auto; }
    #index section#profile .inner .megapon {
      display: block;
      margin-bottom: 50px; }
      #index section#profile .inner .megapon dl {
        position: relative;
        width: 100%; }
        @media screen and (min-width: 1024px) {
          #index section#profile .inner .megapon dl {
            height: 200px; } }
        #index section#profile .inner .megapon dl dt {
          display: block;
          width: 100%; }
          @media screen and (max-width: 1023px) {
            #index section#profile .inner .megapon dl dt {
              margin-bottom: 20px; } }
          @media screen and (min-width: 1024px) {
            #index section#profile .inner .megapon dl dt {
              position: absolute;
              position: absolute;
              top: 50%;
              left: 50%;
              -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); } }
          #index section#profile .inner .megapon dl dt figure {
            margin: 0 auto; }
            #index section#profile .inner .megapon dl dt figure img {
              height: auto;
              width: 100%; }
            @media screen and (max-width: 1023px) {
              #index section#profile .inner .megapon dl dt figure {
                padding: 0 5%;
                width: 100%; } }
            @media screen and (min-width: 1024px) {
              #index section#profile .inner .megapon dl dt figure {
                width: 700px; } }
        @media screen and (max-width: 1023px) {
          #index section#profile .inner .megapon dl dd.btn-wrap {
            padding: 0 5%; } }
        @media screen and (min-width: 1024px) {
          #index section#profile .inner .megapon dl dd.btn-wrap {
            -webkit-box-pack: flex-end;
            -ms-flex-pack: flex-end;
            justify-content: flex-end;
            position: absolute;
            right: 100px;
            bottom: -40px; } }
        #index section#profile .inner .megapon dl dd.btn-wrap .btn a {
          background: #EE3026; }
          #index section#profile .inner .megapon dl dd.btn-wrap .btn a span {
            color: #FFF; }
            @media screen and (max-width: 1023px) {
              #index section#profile .inner .megapon dl dd.btn-wrap .btn a span {
                font-size: 2rem; } }
            @media screen and (min-width: 1024px) {
              #index section#profile .inner .megapon dl dd.btn-wrap .btn a span {
                font-size: 1.25rem; } }
          #index section#profile .inner .megapon dl dd.btn-wrap .btn a:after {
            content: url("../images/index/about_icn_arw.svg");
            display: block;
            position: absolute;
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
            @media screen and (max-width: 1023px) {
              #index section#profile .inner .megapon dl dd.btn-wrap .btn a:after {
                right: 20px;
                height: 25px;
                width: 25px; } }
            @media screen and (min-width: 1024px) {
              #index section#profile .inner .megapon dl dd.btn-wrap .btn a:after {
                right: 10px;
                height: 20px;
                width: 20px; } }

/********** #tournament **********/
#tournament header #g-nav .nav-wrap a.tournament::after {
  transform: scale(1, 1); }
#tournament section#main {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover; }
  @media screen and (max-width: 1023px) {
    #tournament section#main {
      background-image: url("../images/main_bg_sp.png"); } }
  @media screen and (min-width: 1024px) {
    #tournament section#main {
      background-image: url("../images/main_bg.png");
      width: 100%; } }
  #tournament section#main .inner {
    position: relative;
    padding-bottom: 100px; }
    #tournament section#main .inner h1 {
      text-align: center; }
      @media screen and (max-width: 1023px) {
        #tournament section#main .inner h1 {
          height: 180px;
          margin-bottom: 20px; } }
      @media screen and (min-width: 1024px) {
        #tournament section#main .inner h1 {
          height: 140px;
          margin-bottom: 10px; } }
      #tournament section#main .inner h1 img {
        height: 100%;
        width: auto; }
    @media screen and (max-width: 1023px) {
      #tournament section#main .inner .tournament .title {
        height: 160px; } }
    @media screen and (min-width: 1024px) {
      #tournament section#main .inner .tournament .title {
        height: 80px; } }
    #tournament section#main .inner .tournament .title h2 {
      text-align: center;
      height: 45px; }
      @media screen and (max-width: 1023px) {
        #tournament section#main .inner .tournament .title h2 {
          margin-bottom: 20px; } }
      @media screen and (min-width: 1024px) {
        #tournament section#main .inner .tournament .title h2 {
          margin-bottom: 10px; } }
      #tournament section#main .inner .tournament .title h2 img {
        height: 100%;
        width: auto; }
    #tournament section#main .inner .tournament .title::before {
      content: '';
      background-image: url("../images/tournament/h_megapon_1st.png");
      background-repeat: no-repeat;
      background-size: cover;
      display: block;
      position: absolute; }
      @media screen and (max-width: 1023px) {
        #tournament section#main .inner .tournament .title::before {
          bottom: 0;
          left: 50px;
          height: 80px;
          width: 200px; } }
      @media screen and (min-width: 1024px) {
        #tournament section#main .inner .tournament .title::before {
          bottom: 0;
          left: 50px;
          height: 80px;
          width: 200px; } }
    #tournament section#main .inner .tournament .title::after {
      content: '';
      background-image: url("../images/tournament/h_megapon_2nd.png");
      background-repeat: no-repeat;
      background-size: cover;
      display: block;
      position: absolute; }
      @media screen and (max-width: 1023px) {
        #tournament section#main .inner .tournament .title::after {
          bottom: 0;
          right: 50px;
          height: 80px;
          width: 200px; } }
      @media screen and (min-width: 1024px) {
        #tournament section#main .inner .tournament .title::after {
          bottom: 0;
          right: 50px;
          height: 80px;
          width: 200px; } }
    #tournament section#main .inner .tournament .results {
      background: #FFF;
      padding: 30px; }
      #tournament section#main .inner .tournament .results .standings {
        margin: 0 auto 50px; }
        @media screen and (max-width: 1023px) {
          #tournament section#main .inner .tournament .results .standings {
            overflow-x: scroll;
            width: 100%; } }
        @media screen and (min-width: 1024px) {
          #tournament section#main .inner .tournament .results .standings {
            width: 800px; } }
        #tournament section#main .inner .tournament .results .standings table {
          border-left: 0;
          border-right: 0;
          margin-bottom: 10px;
          width: 100%; }
          @media screen and (max-width: 1023px) {
            #tournament section#main .inner .tournament .results .standings table {
              width: 160%; } }
          @media screen and (min-width: 1024px) {
            #tournament section#main .inner .tournament .results .standings table {
              width: 100%; } }
          #tournament section#main .inner .tournament .results .standings table tr:nth-child(-n+2) {
            background-color: #FFFFD5; }
            #tournament section#main .inner .tournament .results .standings table tr:nth-child(-n+2) td {
              font-size: calc(2rem * 1.0);
              font-weight: 500; }
          #tournament section#main .inner .tournament .results .standings table th, #tournament section#main .inner .tournament .results .standings table td {
            text-align: center;
            font-size: 1.6rem; }
          #tournament section#main .inner .tournament .results .standings table th {
            background: #FFF;
            color: #999;
            border-left: 1px solid #DDD; }
            #tournament section#main .inner .tournament .results .standings table th:nth-child(1) {
              border-left: 0; }
            #tournament section#main .inner .tournament .results .standings table th.rank {
              width: 12.5%; }
            #tournament section#main .inner .tournament .results .standings table th.name {
              width: 22.5%; }
            #tournament section#main .inner .tournament .results .standings table th.area {
              width: 12.5%; }
            #tournament section#main .inner .tournament .results .standings table th.time {
              width: 20%; }
            #tournament section#main .inner .tournament .results .standings table th.num {
              width: 22.5%; }
          #tournament section#main .inner .tournament .results .standings table td {
            border-left: 1px solid #DDD; }
            #tournament section#main .inner .tournament .results .standings table td:nth-child(1) {
              border-left: 0; }
            #tournament section#main .inner .tournament .results .standings table td .prize {
              color: #F16D0E; }
      #tournament section#main .inner .tournament .results .thumb {
        margin: 0 auto; }
        #tournament section#main .inner .tournament .results .thumb figure {
          margin-bottom: 20px;
          width: 100%; }
          @media screen and (max-width: 1023px) {
            #tournament section#main .inner .tournament .results .thumb figure {
              padding-bottom: 30px; } }
          @media screen and (min-width: 1024px) {
            #tournament section#main .inner .tournament .results .thumb figure {
              padding: 5px; } }
          #tournament section#main .inner .tournament .results .thumb figure img {
            height: auto;
            width: 100%; }
        #tournament section#main .inner .tournament .results .thumb p {
          text-align: center; }

/********** #qualifiers **********/
#qualifiers header #g-nav .nav-wrap a.qualifiers::after {
  transform: scale(1, 1); }
#qualifiers section#main {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover; }
  @media screen and (max-width: 1023px) {
    #qualifiers section#main {
      background-image: url("../images/main_bg_sp.png"); } }
  @media screen and (min-width: 1024px) {
    #qualifiers section#main {
      background-image: url("../images/main_bg.png");
      width: 100%; } }
  #qualifiers section#main .inner {
    position: relative;
    padding-bottom: 50px; }
    #qualifiers section#main .inner h1 {
      text-align: center; }
      #qualifiers section#main .inner h1 img {
        height: 100%;
        width: auto; }
      @media screen and (max-width: 1023px) {
        #qualifiers section#main .inner h1 {
          height: 180px;
          margin-bottom: 0; } }
      @media screen and (min-width: 1024px) {
        #qualifiers section#main .inner h1 {
          height: 140px;
          position: absolute;
          top: 0;
          left: 0;
          z-index: 100;
          margin-bottom: 20px; } }
    #qualifiers section#main .inner nav {
      margin-bottom: 50px; }
      @media screen and (min-width: 1024px) {
        #qualifiers section#main .inner nav {
          padding-top: 50px; } }
      #qualifiers section#main .inner nav ul.map {
        background-image: url("../images/qualifiers/main_map.svg");
        background-position: left 75% top 50%;
        background-repeat: no-repeat;
        position: relative; }
        @media screen and (max-width: 1023px) {
          #qualifiers section#main .inner nav ul.map {
            background-size: 90%;
            padding-top: 100%;
            width: 100%; } }
        @media screen and (min-width: 1024px) {
          #qualifiers section#main .inner nav ul.map {
            background-size: 75%;
            margin: 0 auto;
            height: 500px;
            width: 640px; } }
        #qualifiers section#main .inner nav ul.map li {
          position: absolute; }
          #qualifiers section#main .inner nav ul.map li:nth-child(2) {
            animation-delay: 0.2s; }
          #qualifiers section#main .inner nav ul.map li:nth-child(3) {
            animation-delay: 0.4s; }
          #qualifiers section#main .inner nav ul.map li:nth-child(4) {
            animation-delay: 0.6s; }
          #qualifiers section#main .inner nav ul.map li:nth-child(5) {
            animation-delay: 0.8s; }
          #qualifiers section#main .inner nav ul.map li:nth-child(6) {
            animation-delay: 1.0s; }
          #qualifiers section#main .inner nav ul.map li:nth-child(7) {
            animation-delay: 1.2s; }
          #qualifiers section#main .inner nav ul.map li:nth-child(8) {
            animation-delay: 1.4s; }
          #qualifiers section#main .inner nav ul.map li:nth-child(9) {
            animation-delay: 1.6s; }
          @media screen and (max-width: 1023px) {
            #qualifiers section#main .inner nav ul.map li {
              width: 30%; } }
          @media screen and (min-width: 1024px) {
            #qualifiers section#main .inner nav ul.map li {
              width: 140px; } }
          @media screen and (max-width: 1023px) {
            #qualifiers section#main .inner nav ul.map li#date-hokkaido {
              left: 25%;
              top: 10%; } }
          @media screen and (min-width: 1024px) {
            #qualifiers section#main .inner nav ul.map li#date-hokkaido {
              left: 250px;
              top: 20px; } }
          @media screen and (max-width: 1023px) {
            #qualifiers section#main .inner nav ul.map li#date-tohoku {
              right: 5%;
              top: 30%; } }
          @media screen and (min-width: 1024px) {
            #qualifiers section#main .inner nav ul.map li#date-tohoku {
              left: 460px;
              top: 140px;
              /*
              				  a {
                                  cursor: default;
              				  }
              */ } }
          @media screen and (max-width: 1023px) {
            #qualifiers section#main .inner nav ul.map li#date-hokushinetsu {
              left: 20%;
              top: 30%; } }
          @media screen and (min-width: 1024px) {
            #qualifiers section#main .inner nav ul.map li#date-hokushinetsu {
              left: 230px;
              top: 160px; } }
          @media screen and (max-width: 1023px) {
            #qualifiers section#main .inner nav ul.map li#date-kanto {
              right: 5%;
              top: 55%; } }
          @media screen and (min-width: 1024px) {
            #qualifiers section#main .inner nav ul.map li#date-kanto {
              left: 440px;
              top: 260px; } }
          @media screen and (max-width: 1023px) {
            #qualifiers section#main .inner nav ul.map li#date-tokai {
              right: 20%;
              top: 70%; } }
          @media screen and (min-width: 1024px) {
            #qualifiers section#main .inner nav ul.map li#date-tokai {
              left: 380px;
              top: 350px; } }
          @media screen and (max-width: 1023px) {
            #qualifiers section#main .inner nav ul.map li#date-kansai {
              left: 5%;
              top: 45%; } }
          @media screen and (min-width: 1024px) {
            #qualifiers section#main .inner nav ul.map li#date-kansai {
              left: 140px;
              top: 230px; } }
          @media screen and (max-width: 1023px) {
            #qualifiers section#main .inner nav ul.map li#date-chugokushikoku {
              left: 0;
              top: 60%; } }
          @media screen and (min-width: 1024px) {
            #qualifiers section#main .inner nav ul.map li#date-chugokushikoku {
              left: 50px;
              top: 300px; } }
          @media screen and (max-width: 1023px) {
            #qualifiers section#main .inner nav ul.map li#date-kyushu {
              left: 0;
              top: 90%; } }
          @media screen and (min-width: 1024px) {
            #qualifiers section#main .inner nav ul.map li#date-kyushu {
              left: 0px;
              top: 400px; } }
          @media screen and (max-width: 1023px) {
            #qualifiers section#main .inner nav ul.map li#megapon {
              right: 0;
              bottom: 0;
              width: 140px; } }
          @media screen and (min-width: 1024px) {
            #qualifiers section#main .inner nav ul.map li#megapon {
              right: -100px;
              bottom: 0;
              width: 140px; } }
          #qualifiers section#main .inner nav ul.map li img {
            height: auto;
            width: 100%; }
    #qualifiers section#main .inner .schedule {
      margin-bottom: 0; }
      #qualifiers section#main .inner .schedule figure {
        display: block; }
        @media screen and (max-width: 1023px) {
          #qualifiers section#main .inner .schedule figure {
            width: 100%; } }
        @media screen and (min-width: 1024px) {
          #qualifiers section#main .inner .schedule figure {
            margin: 0 auto;
            width: 90%; } }
        #qualifiers section#main .inner .schedule figure img {
          height: auto;
          width: 100%; }
#qualifiers section#qualifying {
  background: #FFE2C4;
  padding-top: 100px;
  padding-bottom: 100px; }
  #qualifiers section#qualifying h1 {
    margin-bottom: 50px;
    text-align: center; }
    @media screen and (max-width: 1023px) {
      #qualifiers section#qualifying h1 {
        height: 45px; } }
    @media screen and (min-width: 1024px) {
      #qualifiers section#qualifying h1 {
        height: 45px; } }
    #qualifiers section#qualifying h1 img {
      height: 100%;
      width: auto; }
  #qualifiers section#qualifying .qualifying {
    background: #FFF;
    padding-top: 50px; }
    #qualifiers section#qualifying .qualifying::before {
      content: '';
      background-image: url(../images/qualifiers/qualifying_megapon.png);
      background-repeat: no-repeat;
      background-size: cover;
      display: block;
      position: absolute; }
      @media screen and (max-width: 1023px) {
        #qualifiers section#qualifying .qualifying::before {
          top: -5px;
          left: 50px;
          height: 100px;
          width: 100px; } }
      @media screen and (min-width: 1024px) {
        #qualifiers section#qualifying .qualifying::before {
          top: -5px;
          left: 50px;
          height: 100px;
          width: 100px; } }
    #qualifiers section#qualifying .qualifying .area {
      margin: 0 auto;
      padding: 0; }
      @media screen and (max-width: 1023px) {
        #qualifiers section#qualifying .qualifying .area {
          width: 85%; } }
      @media screen and (min-width: 1024px) {
        #qualifiers section#qualifying .qualifying .area {
          width: 800px; } }
      #qualifiers section#qualifying .qualifying .area .tab {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0;
        width: 100%; }
        @media screen and (max-width: 1023px) {
          #qualifiers section#qualifying .qualifying .area .tab {
            font-size: 1.6rem; } }
        @media screen and (min-width: 1024px) {
          #qualifiers section#qualifying .qualifying .area .tab {
            font-size: 1.6rem; } }
        #qualifiers section#qualifying .qualifying .area .tab li {
          margin-bottom: 20px;
          width: 47.5%; }
          @media screen and (min-width: 1024px) {
            #qualifiers section#qualifying .qualifying .area .tab li {
              width: 22.5%; } }
          #qualifiers section#qualifying .qualifying .area .tab li:nth-child(4n) {
            margin-right: 0; }
          #qualifiers section#qualifying .qualifying .area .tab li.off {
            cursor: default; }
            #qualifiers section#qualifying .qualifying .area .tab li.off a {
              cursor: default; }
          #qualifiers section#qualifying .qualifying .area .tab li div {
            background: #FACBC8;
            color: #FFF;
            height: 5.0rem;
            position: relative;
            display: block; }
            #qualifiers section#qualifying .qualifying .area .tab li div span {
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              -webkit-transform: translate(-50%, -50%);
              text-align: center;
              width: 100%; }
          #qualifiers section#qualifying .qualifying .area .tab li a {
            background: #FACBC8;
            color: #FFF;
            height: 5.0rem;
            position: relative;
            display: block; }
            #qualifiers section#qualifying .qualifying .area .tab li a span {
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              -webkit-transform: translate(-50%, -50%);
              text-align: center;
              width: 100%; }
            #qualifiers section#qualifying .qualifying .area .tab li a:hover {
              background: #EE3026; }
  #qualifiers section#qualifying .tab-content {
    padding: 0 5%; }
    @media screen and (min-width: 1024px) {
      #qualifiers section#qualifying .tab-content {
        padding: 0; } }
    #qualifiers section#qualifying .tab-content .results {
      background: #FFF;
      padding: 20px 20px 5px; }
      @media screen and (min-width: 1024px) {
        #qualifiers section#qualifying .tab-content .results {
          padding: 50px 0 0; } }
      #qualifiers section#qualifying .tab-content .results .venue {
        border: 1px solid #EE3026;
        color: #EE3026;
        margin: 0 auto 50px;
        padding: 20px;
        padding-bottom: 0;
        position: relative;
        text-align: center;
        width: 100%; }
        @media screen and (min-width: 1024px) {
          #qualifiers section#qualifying .tab-content .results .venue {
            width: 800px; } }
        #qualifiers section#qualifying .tab-content .results .venue h3 {
          font-size: 4rem;
          margin-bottom: 20px; }
          @media screen and (min-width: 1024px) {
            #qualifiers section#qualifying .tab-content .results .venue h3 {
              font-size: calc(4rem * 1.0); } }
        #qualifiers section#qualifying .tab-content .results .venue p {
          border-top: 1px solid #EE3026;
          padding-top: 20px; }
        #qualifiers section#qualifying .tab-content .results .venue figure.pic {
          height: 80px;
          position: absolute;
          left: 2.5%;
          top: 50%;
          -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }
        #qualifiers section#qualifying .tab-content .results .venue figure.megapon {
          height: 150px;
          position: absolute;
          right: -2.5%;
          bottom: -5px; }
          @media screen and (min-width: 1024px) {
            #qualifiers section#qualifying .tab-content .results .venue figure.megapon {
              right: 0; } }
        #qualifiers section#qualifying .tab-content .results .venue figure img {
          height: 100%;
          width: auto; }
      #qualifiers section#qualifying .tab-content .results .standings {
        margin: 0 auto 50px; }
        @media screen and (max-width: 1023px) {
          #qualifiers section#qualifying .tab-content .results .standings {
            width: 100%; } }
        @media screen and (min-width: 1024px) {
          #qualifiers section#qualifying .tab-content .results .standings {
            width: 800px; } }
        #qualifiers section#qualifying .tab-content .results .standings table {
          border-left: 0;
          border-right: 0;
          margin-bottom: 10px;
          width: 100%; }
          #qualifiers section#qualifying .tab-content .results .standings table th, #qualifiers section#qualifying .tab-content .results .standings table td {
            text-align: center;
            font-size: 1.6rem; }
          #qualifiers section#qualifying .tab-content .results .standings table th {
            background: #FFF;
            color: #999; }
            #qualifiers section#qualifying .tab-content .results .standings table th:nth-child(2) {
              border-left: 1px solid #DDD;
              border-right: 1px solid #DDD; }
            #qualifiers section#qualifying .tab-content .results .standings table th.rank {
              width: 20%; }
          #qualifiers section#qualifying .tab-content .results .standings table td:nth-child(2) {
            border-left: 1px solid #DDD;
            border-right: 1px solid #DDD; }
          #qualifiers section#qualifying .tab-content .results .standings table td .prize {
            position: relative; }
            #qualifiers section#qualifying .tab-content .results .standings table td .prize:before {
              content: '';
              background-image: url("../images/icn_prize.svg");
              background-repeat: no-repeat;
              background-size: cover;
              display: block;
              position: absolute; }
              @media screen and (max-width: 1023px) {
                #qualifiers section#qualifying .tab-content .results .standings table td .prize:before {
                  top: 50%;
                  -webkit-transform: translateY(-50%);
                  transform: translateY(-50%);
                  left: -30px;
                  height: 30px;
                  width: 30px; } }
              @media screen and (min-width: 1024px) {
                #qualifiers section#qualifying .tab-content .results .standings table td .prize:before {
                  top: 50%;
                  -webkit-transform: translateY(-50%);
                  transform: translateY(-50%);
                  left: -30px;
                  height: 30px;
                  width: 30px; } }
      #qualifiers section#qualifying .tab-content .results .movie {
        margin: 0 auto 150px;
        width: 100%; }
        @media screen and (min-width: 1024px) {
          #qualifiers section#qualifying .tab-content .results .movie {
            width: 600px; } }
        #qualifiers section#qualifying .tab-content .results .movie h3 {
          border-top: 2px solid #F16D0E;
          font-size: calc(1.75rem * 1.5);
          margin-bottom: 0;
          padding: 20px;
          text-align: center; }
          @media screen and (min-width: 1024px) {
            #qualifiers section#qualifying .tab-content .results .movie h3 {
              font-size: calc(1.75rem * 1.2); } }
        #qualifiers section#qualifying .tab-content .results .movie video {
          height: auto;
          width: 100%; }
      #qualifiers section#qualifying .tab-content .results .thumb {
        margin: 0 auto; }
        #qualifiers section#qualifying .tab-content .results .thumb figure {
          margin-bottom: 20px;
          width: 100%; }
          @media screen and (max-width: 1023px) {
            #qualifiers section#qualifying .tab-content .results .thumb figure {
              padding-bottom: 30px; } }
          @media screen and (min-width: 1024px) {
            #qualifiers section#qualifying .tab-content .results .thumb figure {
              padding: 5px; } }
          #qualifiers section#qualifying .tab-content .results .thumb figure img {
            width: 100%; }
        #qualifiers section#qualifying .tab-content .results .thumb .message {
          display: block;
          height: 580px;
          margin: 0 auto;
          padding-bottom: 100px;
          position: relative;
          width: 100%; }
          @media screen and (min-width: 1024px) {
            #qualifiers section#qualifying .tab-content .results .thumb .message {
              height: 400px;
              width: 800px; } }
          #qualifiers section#qualifying .tab-content .results .thumb .message dt, #qualifiers section#qualifying .tab-content .results .thumb .message dd {
            position: absolute; }
            #qualifiers section#qualifying .tab-content .results .thumb .message dt img, #qualifiers section#qualifying .tab-content .results .thumb .message dd img {
              height: auto;
              width: 100%; }
          #qualifiers section#qualifying .tab-content .results .thumb .message dt {
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            right: 0;
            z-index: 3;
            width: 200px; }
            @media screen and (min-width: 1024px) {
              #qualifiers section#qualifying .tab-content .results .thumb .message dt {
                top: 0;
                -webkit-transform: translateY(0);
                transform: translateY(0);
                height: auto; } }
          #qualifiers section#qualifying .tab-content .results .thumb .message dd.pic01 {
            z-index: 1;
            width: 90%; }
            @media screen and (min-width: 1024px) {
              #qualifiers section#qualifying .tab-content .results .thumb .message dd.pic01 {
                top: 0;
                left: 0;
                width: 450px; } }
          #qualifiers section#qualifying .tab-content .results .thumb .message dd.pic02 {
            bottom: 50px;
            left: 10%;
            width: 70%;
            z-index: 2; }
            @media screen and (min-width: 1024px) {
              #qualifiers section#qualifying .tab-content .results .thumb .message dd.pic02 {
                left: 350px;
                width: 350px; } }
#qualifiers section#quota {
  background-image: url("../images/qualifiers/quota_bg.png");
  padding: 50px 0; }
  #qualifiers section#quota .inner {
    position: relative;
    padding-bottom: 50px; }
    #qualifiers section#quota .inner h1 {
      margin-bottom: 50px;
      text-align: center; }
      @media screen and (max-width: 1023px) {
        #qualifiers section#quota .inner h1 {
          height: 45px; } }
      @media screen and (min-width: 1024px) {
        #qualifiers section#quota .inner h1 {
          height: 45px; } }
      #qualifiers section#quota .inner h1 img {
        height: 100%;
        width: auto; }
    #qualifiers section#quota .inner .information {
      background: #FFF;
      padding: 50px;
      position: relative;
      display: flex; }
      #qualifiers section#quota .inner .information::before {
        content: '';
        background-image: url(../images/qualifiers/quota_megapon.png);
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        position: absolute; }
        @media screen and (max-width: 1023px) {
          #qualifiers section#quota .inner .information::before {
            top: -100px;
            right: 0;
            height: 100px;
            width: 100px; } }
        @media screen and (min-width: 1024px) {
          #qualifiers section#quota .inner .information::before {
            top: -100px;
            right: 50px;
            height: 100px;
            width: 100px; } }
      @media screen and (max-width: 1023px) {
        #qualifiers section#quota .inner .information {
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          padding: 50px 5%; } }
      @media screen and (min-width: 1024px) {
        #qualifiers section#quota .inner .information {
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          column-gap: 5%; } }
      #qualifiers section#quota .inner .information .list table th, #qualifiers section#quota .inner .information .list table td {
        font-size: 1.75rem;
        text-align: center; }
      #qualifiers section#quota .inner .information .list table th {
        background: #EE3026;
        color: #FFF;
        letter-spacing: .5rem;
        position: relative; }
        #qualifiers section#quota .inner .information .list table th span {
          display: inline-block;
          -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
          position: absolute;
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
          @media screen and (max-width: 1023px) {
            #qualifiers section#quota .inner .information .list table th span {
              width: 20px; } }
          @media screen and (min-width: 1024px) {
            #qualifiers section#quota .inner .information .list table th span {
              width: 18px; } }
          #qualifiers section#quota .inner .information .list table th span img {
            height: auto;
            width: 100%; }
      @media screen and (max-width: 1023px) {
        #qualifiers section#quota .inner .information .list {
          margin-bottom: 50px;
          width: 100%; }
          #qualifiers section#quota .inner .information .list table {
            width: 80%; }
            #qualifiers section#quota .inner .information .list table th, #qualifiers section#quota .inner .information .list table td {
              font-size: 2rem; }
            #qualifiers section#quota .inner .information .list table th {
              width: 12.5%; }
            #qualifiers section#quota .inner .information .list table td {
              width: 82.5%; } }
      @media screen and (min-width: 1024px) {
        #qualifiers section#quota .inner .information .list {
          width: 35%; }
          #qualifiers section#quota .inner .information .list table {
            width: 80%; }
            #qualifiers section#quota .inner .information .list table th, #qualifiers section#quota .inner .information .list table td {
              font-size: 2rem; }
            #qualifiers section#quota .inner .information .list table th {
              width: 25%; }
            #qualifiers section#quota .inner .information .list table td {
              width: 75%; } }
      @media screen and (max-width: 1023px) {
        #qualifiers section#quota .inner .information .explanation {
          width: 100%; } }
      @media screen and (min-width: 1024px) {
        #qualifiers section#quota .inner .information .explanation {
          width: 60%; } }
      #qualifiers section#quota .inner .information .explanation h2 {
        border-bottom: 1px solid #DDD;
        padding-bottom: 20px; }
        @media screen and (max-width: 1023px) {
          #qualifiers section#quota .inner .information .explanation h2 {
            font-size: calc(4rem * 0.8); } }
        @media screen and (min-width: 1024px) {
          #qualifiers section#quota .inner .information .explanation h2 {
            font-size: 3rem; } }
      @media screen and (max-width: 1023px) {
        #qualifiers section#quota .inner .information .explanation p {
          font-size: 2rem; } }
      @media screen and (min-width: 1024px) {
        #qualifiers section#quota .inner .information .explanation p {
          font-size: 1.25rem;
          width: 100%; } }
      #qualifiers section#quota .inner .information .explanation dl {
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        column-gap: 5%;
        margin-bottom: 20px; }
        #qualifiers section#quota .inner .information .explanation dl dt, #qualifiers section#quota .inner .information .explanation dl dd {
          font-weight: 400;
          margin-bottom: 10px;
          line-height: 150%; }
          @media screen and (max-width: 1023px) {
            #qualifiers section#quota .inner .information .explanation dl dt, #qualifiers section#quota .inner .information .explanation dl dd {
              font-size: 2rem; } }
          @media screen and (min-width: 1024px) {
            #qualifiers section#quota .inner .information .explanation dl dt, #qualifiers section#quota .inner .information .explanation dl dd {
              font-size: 1.25rem;
              width: 65%; } }
        @media screen and (max-width: 1023px) {
          #qualifiers section#quota .inner .information .explanation dl.seed dt {
            width: 100%; } }
        @media screen and (min-width: 1024px) {
          #qualifiers section#quota .inner .information .explanation dl.seed dt {
            width: 20%; } }
        @media screen and (max-width: 1023px) {
          #qualifiers section#quota .inner .information .explanation dl.seed dd {
            margin-bottom: 20px;
            width: 100%; } }
        @media screen and (min-width: 1024px) {
          #qualifiers section#quota .inner .information .explanation dl.seed dd {
            width: 75%; } }
        @media screen and (max-width: 1023px) {
          #qualifiers section#quota .inner .information .explanation dl.note dt {
            width: 100%; } }
        @media screen and (min-width: 1024px) {
          #qualifiers section#quota .inner .information .explanation dl.note dt {
            width: 10%; } }
        @media screen and (max-width: 1023px) {
          #qualifiers section#quota .inner .information .explanation dl.note dd {
            margin-bottom: 20px;
            width: 100%; } }
        @media screen and (min-width: 1024px) {
          #qualifiers section#quota .inner .information .explanation dl.note dd {
            width: 85%; } }

/* 地区予選通過 */
#qualifiers.top section#main .inner .schedule {
  margin-bottom: 0; }
#qualifiers.top section#qualifying .area .tab li#tab-tohoku a {
  background: #EE3026; }
#qualifiers.top section#qualifying .tab-content .results .standings table tr:nth-child(-n+2) {
  background-color: #FFFFD5; }
#qualifiers.hokkaido section#qualifying .area .tab li#tab-hokkaido a {
  background: #EE3026; }
#qualifiers.hokkaido section#qualifying .tab-content .results .standings table tr:nth-child(-n+2) {
  background-color: #FFFFD5; }
#qualifiers.tohoku section#qualifying .area .tab li#tab-tohoku a {
  background: #EE3026; }
#qualifiers.tohoku section#qualifying .tab-content .results .standings table tr:nth-child(-n+2) {
  background-color: #FFFFD5; }
#qualifiers.hokushinetsu section#qualifying .area .tab li#tab-hokushinetsu a {
  background: #EE3026; }
#qualifiers.hokushinetsu section#qualifying .tab-content .results .standings table tr:nth-child(-n+2) {
  background-color: #FFFFD5; }
#qualifiers.kanto section#qualifying .area .tab li#tab-kanto a {
  background: #EE3026; }
#qualifiers.kanto section#qualifying .tab-content .results .standings table tr:nth-child(-n+8) {
  background-color: #FFFFD5; }
#qualifiers.tokai section#qualifying .area .tab li#tab-tokai a {
  background: #EE3026; }
#qualifiers.tokai section#qualifying .tab-content .results .standings table tr:nth-child(-n+2) {
  background-color: #FFFFD5; }
#qualifiers.kansai section#qualifying .area .tab li#tab-kansai a {
  background: #EE3026; }
#qualifiers.kansai section#qualifying .tab-content .results .standings table tr:nth-child(-n+5) {
  background-color: #FFFFD5; }
#qualifiers.chugokushikoku section#qualifying .area .tab li#tab-chugokushikoku a {
  background: #EE3026; }
#qualifiers.chugokushikoku section#qualifying .tab-content .results .standings table tr:nth-child(-n+2) {
  background-color: #FFFFD5; }
#qualifiers.kyushu section#qualifying .area .tab li#tab-kyushu a {
  background: #EE3026; }
#qualifiers.kyushu section#qualifying .tab-content .results .standings table tr:nth-child(-n+2) {
  background-color: #FFFFD5; }

/********** #athlete **********/
#athlete header #g-nav .nav-wrap a.athlete::after {
  transform: scale(1, 1); }
#athlete section nav .tab li {
  background-color: #F4BBB9;
  width: 30%; }
  @media screen and (max-width: 1023px) {
    #athlete section nav .tab li {
      padding: calc(50px * 1.2) 20px; } }
  @media screen and (min-width: 1024px) {
    #athlete section nav .tab li {
      padding: calc(50px * 1.2) 50px; } }
  #athlete section nav .tab li:nth-child(2) {
    animation-delay: .2s; }
  #athlete section nav .tab li:nth-child(3) {
    animation-delay: .4s; }
  #athlete section nav .tab li.crt {
    background-color: #EE3026; }
  #athlete section nav .tab li:hover {
    background-color: #EE3026; }
  #athlete section nav .tab li a {
    display: block;
    color: #FFF;
    position: relative;
    width: 100%; }
    #athlete section nav .tab li a dl {
      display: block;
      position: absolute;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      text-align: center;
      width: 100%; }
      #athlete section nav .tab li a dl dt {
        letter-spacing: 0.2rem;
        margin-bottom: calc(10px * 1.2); }
        @media screen and (max-width: 1023px) {
          #athlete section nav .tab li a dl dt {
            font-size: 1.75rem; } }
        @media screen and (min-width: 1024px) {
          #athlete section nav .tab li a dl dt {
            font-size: 1.75rem; } }
      #athlete section nav .tab li a dl dd {
        border-top: 1px solid #FFF;
        border-bottom: 1px solid #FFF;
        line-height: 200%;
        margin-bottom: 10px; }
        @media screen and (max-width: 1023px) {
          #athlete section nav .tab li a dl dd {
            font-size: 1.6rem; } }
        @media screen and (min-width: 1024px) {
          #athlete section nav .tab li a dl dd {
            font-size: 1.25rem; } }
#athlete section#main {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover; }
  @media screen and (max-width: 1023px) {
    #athlete section#main {
      background-image: url("../images/main_bg_sp.png"); } }
  @media screen and (min-width: 1024px) {
    #athlete section#main {
      background-image: url("../images/main_bg.png");
      width: 100%; } }
  #athlete section#main .inner {
    position: relative;
    padding-bottom: 100px; }
    #athlete section#main .inner h1 {
      text-align: center; }
      #athlete section#main .inner h1 img {
        height: 100%;
        width: auto; }
      @media screen and (max-width: 1023px) {
        #athlete section#main .inner h1 {
          height: 180px;
          margin-bottom: 20px; } }
      @media screen and (min-width: 1024px) {
        #athlete section#main .inner h1 {
          height: 140px;
          margin-bottom: 10px; } }
      #athlete section#main .inner h1 img {
        margin: 0 auto; }
    #athlete section#main .inner h2 {
      line-height: 150%;
      text-align: center; }
      @media screen and (max-width: 1023px) {
        #athlete section#main .inner h2 {
          font-size: 2rem; } }
      @media screen and (min-width: 1024px) {
        #athlete section#main .inner h2 {
          font-size: 2rem; } }
    #athlete section#main .inner nav .tab li a dl:after {
      content: url("");
      background-image: url("../images/athlete/arw.svg");
      background-repeat: no-repeat;
      background-size: cover;
      display: block;
      margin: 0 auto; }
      @media screen and (max-width: 1023px) {
        #athlete section#main .inner nav .tab li a dl:after {
          height: 20px;
          width: 20px; } }
      @media screen and (min-width: 1024px) {
        #athlete section#main .inner nav .tab li a dl:after {
          height: 16px;
          width: 16px; } }
    #athlete section#main .inner .ale {
      background: #FFF; }
      @media screen and (max-width: 1023px) {
        #athlete section#main .inner .ale {
          padding: 30px 5%; } }
      @media screen and (min-width: 1024px) {
        #athlete section#main .inner .ale {
          padding: 50px; } }
      #athlete section#main .inner .ale h3 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
        @media screen and (max-width: 1023px) {
          #athlete section#main .inner .ale h3 {
            margin-bottom: 30px; } }
        @media screen and (min-width: 1024px) {
          #athlete section#main .inner .ale h3 {
            column-gap: 5%; } }
        #athlete section#main .inner .ale h3 figure img {
          height: auto;
          width: 100%; }
        @media screen and (max-width: 1023px) {
          #athlete section#main .inner .ale h3 figure {
            width: 30%; } }
        @media screen and (min-width: 1024px) {
          #athlete section#main .inner .ale h3 figure {
            width: 20%; } }
        @media screen and (max-width: 1023px) {
          #athlete section#main .inner .ale h3 span {
            padding-top: 20px;
            width: 70%; } }
        @media screen and (min-width: 1024px) {
          #athlete section#main .inner .ale h3 span {
            padding-top: 30px;
            width: 75%; } }
      @media screen and (max-width: 1023px) {
        #athlete section#main .inner .ale .message {
          margin-bottom: 50px; } }
      @media screen and (min-width: 1024px) {
        #athlete section#main .inner .ale .message {
          margin-bottom: 50px; } }
      #athlete section#main .inner .ale .message h4 {
        color: #EE3026;
        margin-bottom: 30px;
        text-align: center; }
        @media screen and (max-width: 1023px) {
          #athlete section#main .inner .ale .message h4 {
            font-size: 4rem; } }
        @media screen and (min-width: 1024px) {
          #athlete section#main .inner .ale .message h4 {
            font-size: 4rem; } }
      #athlete section#main .inner .ale .message p {
        font-weight: 700;
        line-height: 200%; }
        @media screen and (max-width: 1023px) {
          #athlete section#main .inner .ale .message p {
            font-size: calc(1.6rem * 1.2); } }
        @media screen and (min-width: 1024px) {
          #athlete section#main .inner .ale .message p {
            font-size: calc(1.6rem * 1.0); } }
      @media screen and (min-width: 1024px) {
        #athlete section#main .inner .ale .detail {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          column-gap: 5%; } }
      @media screen and (max-width: 1023px) {
        #athlete section#main .inner .ale .detail .biography {
          width: 100%; } }
      @media screen and (min-width: 1024px) {
        #athlete section#main .inner .ale .detail .biography {
          width: 47.5%; } }
      #athlete section#main .inner .ale .detail .biography .profile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        column-gap: 5%; }
        @media screen and (max-width: 1023px) {
          #athlete section#main .inner .ale .detail .biography .profile {
            margin-bottom: 50px; } }
        @media screen and (min-width: 1024px) {
          #athlete section#main .inner .ale .detail .biography .profile {
            margin-bottom: 20px; } }
        #athlete section#main .inner .ale .detail .biography .profile dt img, #athlete section#main .inner .ale .detail .biography .profile dd img {
          height: auto;
          width: 100%; }
        #athlete section#main .inner .ale .detail .biography .profile dt {
          background-color: #F4BBB9;
          padding: calc(20px * 1.5) 20px;
          width: 55%; }
        #athlete section#main .inner .ale .detail .biography .profile dd {
          width: 40%; }
      @media screen and (max-width: 1023px) {
        #athlete section#main .inner .ale .detail .biography .trackrecord {
          margin-bottom: 50px; } }
      @media screen and (min-width: 1024px) {
        #athlete section#main .inner .ale .detail .biography .trackrecord {
          margin-bottom: 0; } }
      #athlete section#main .inner .ale .detail .biography .trackrecord dt {
        text-align: center; }
        @media screen and (max-width: 1023px) {
          #athlete section#main .inner .ale .detail .biography .trackrecord dt {
            margin-bottom: 30px; } }
        @media screen and (min-width: 1024px) {
          #athlete section#main .inner .ale .detail .biography .trackrecord dt {
            margin-bottom: 10px; } }
        #athlete section#main .inner .ale .detail .biography .trackrecord dt img {
          margin: 0 auto; }
          @media screen and (max-width: 1023px) {
            #athlete section#main .inner .ale .detail .biography .trackrecord dt img {
              width: 50%; } }
          @media screen and (min-width: 1024px) {
            #athlete section#main .inner .ale .detail .biography .trackrecord dt img {
              width: 30%; } }
      #athlete section#main .inner .ale .detail .biography .trackrecord dd {
        border-bottom: 1px solid #000;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        @media screen and (max-width: 1023px) {
          #athlete section#main .inner .ale .detail .biography .trackrecord dd {
            font-size: calc(1.6rem * 1.0);
            padding-bottom: 20px;
            margin-bottom: 20px; } }
        @media screen and (min-width: 1024px) {
          #athlete section#main .inner .ale .detail .biography .trackrecord dd {
            font-size: calc(1rem * 1.25);
            padding-bottom: 10px;
            margin-bottom: 10px; } }
        #athlete section#main .inner .ale .detail .biography .trackrecord dd span {
          line-height: 120%; }
          #athlete section#main .inner .ale .detail .biography .trackrecord dd span:first-child {
            width: 15%; }
          #athlete section#main .inner .ale .detail .biography .trackrecord dd span:last-child {
            width: 80%; }
      @media screen and (min-width: 1024px) {
        #athlete section#main .inner .ale .detail figure {
          width: 47.5%; } }
      #athlete section#main .inner .ale .detail figure img {
        height: auto;
        width: 100%; }
#athlete section#interview {
  background: #FDDAB7; }
  @media screen and (max-width: 1023px) {
    #athlete section#interview {
      padding: 100px 0; } }
  @media screen and (min-width: 1024px) {
    #athlete section#interview {
      padding: 150px 0; } }
  #athlete section#interview .inner .question {
    background-image: url("../images/athlete/bg_question.png");
    border: 1px solid #EF6D0E;
    margin-bottom: 50px; }
    @media screen and (max-width: 1023px) {
      #athlete section#interview .inner .question {
        padding: 50px 5%; } }
    @media screen and (min-width: 1024px) {
      #athlete section#interview .inner .question {
        padding: 50px; } }
    #athlete section#interview .inner .question h2 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin-top: -80px; }
      @media screen and (max-width: 1023px) {
        #athlete section#interview .inner .question h2 {
          margin-bottom: 50px; } }
      @media screen and (min-width: 1024px) {
        #athlete section#interview .inner .question h2 {
          column-gap: 5%; } }
      @media screen and (max-width: 1023px) {
        #athlete section#interview .inner .question h2 figure {
          width: 35%; } }
      @media screen and (min-width: 1024px) {
        #athlete section#interview .inner .question h2 figure {
          width: 20%; } }
      #athlete section#interview .inner .question h2 figure img {
        height: auto;
        width: 100%; }
      #athlete section#interview .inner .question h2 span {
        padding-top: 50px; }
        @media screen and (max-width: 1023px) {
          #athlete section#interview .inner .question h2 span {
            width: 65%; } }
        @media screen and (min-width: 1024px) {
          #athlete section#interview .inner .question h2 span {
            width: 75%; } }
    #athlete section#interview .inner .question .answer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      column-gap: 5%; }
      @media screen and (max-width: 1023px) {
        #athlete section#interview .inner .question .answer dt {
          width: 30%; } }
      @media screen and (min-width: 1024px) {
        #athlete section#interview .inner .question .answer dt {
          width: 20%; } }
      #athlete section#interview .inner .question .answer dt figure img {
        height: auto;
        width: 100%; }
      #athlete section#interview .inner .question .answer dd {
        background: #FFF;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        @media screen and (max-width: 1023px) {
          #athlete section#interview .inner .question .answer dd {
            font-size: calc(1.6rem * 1.2);
            padding: 30px 30px;
            width: 70%; } }
        @media screen and (min-width: 1024px) {
          #athlete section#interview .inner .question .answer dd {
            font-size: 1.6rem;
            padding: 30px 50px;
            width: 75%; } }
        @media screen and (max-width: 1023px) {
          #athlete section#interview .inner .question .answer dd span {
            line-height: 150%; } }
        @media screen and (min-width: 1024px) {
          #athlete section#interview .inner .question .answer dd span {
            line-height: 200%; } }
        #athlete section#interview .inner .question .answer dd:before {
          content: '';
          background-repeat: no-repeat;
          background-size: cover;
          position: absolute;
          opacity: .75;
          top: -25px;
          right: -25px; }
          @media screen and (max-width: 1023px) {
            #athlete section#interview .inner .question .answer dd:before {
              height: 80px;
              width: 80px; } }
          @media screen and (min-width: 1024px) {
            #athlete section#interview .inner .question .answer dd:before {
              height: 100px;
              width: 100px; } }
        #athlete section#interview .inner .question .answer dd:after {
          content: '';
          background-repeat: no-repeat;
          background-size: cover;
          position: absolute;
          opacity: .75;
          bottom: -25px;
          left: -25px; }
          @media screen and (max-width: 1023px) {
            #athlete section#interview .inner .question .answer dd:after {
              height: 80px;
              width: 80px; } }
          @media screen and (min-width: 1024px) {
            #athlete section#interview .inner .question .answer dd:after {
              height: 100px;
              width: 100px; } }
    #athlete section#interview .inner .question#routine .answer {
      flex-direction: row-reverse; }
      #athlete section#interview .inner .question#routine .answer dd:before {
        background-image: url("../images/athlete/tape_01.svg");
        top: -25px;
        right: auto;
        left: -25px;
        transform: rotate(90deg); }
      #athlete section#interview .inner .question#routine .answer dd:after {
        background-image: url("../images/athlete/tape_01.svg");
        bottom: -25px;
        left: auto;
        right: -25px;
        transform: rotate(90deg); }
    #athlete section#interview .inner .question#item h2 {
      flex-direction: row-reverse; }
    #athlete section#interview .inner .question#item .answer dd:before {
      background-image: url("../images/athlete/tape_02.svg"); }
    #athlete section#interview .inner .question#item .answer dd:after {
      background-image: url("../images/athlete/tape_02.svg"); }
    #athlete section#interview .inner .question#beforethematch .answer {
      flex-direction: row-reverse; }
      #athlete section#interview .inner .question#beforethematch .answer dd:before {
        background-image: url("../images/athlete/tape_03.svg");
        top: -25px;
        right: auto;
        left: -25px; }
      #athlete section#interview .inner .question#beforethematch .answer dd:after {
        background-image: url("../images/athlete/tape_03.svg");
        bottom: -25px;
        left: auto;
        right: -25px; }
  #athlete section#interview .inner nav .tab {
    margin-bottom: 0; }
    #athlete section#interview .inner nav .tab li a dl:before {
      content: url("");
      background-image: url("../images/athlete/arw.svg");
      background-repeat: no-repeat;
      background-size: cover;
      display: block;
      margin: 0 auto 10px;
      transform: rotate(180deg); }
      @media screen and (max-width: 1023px) {
        #athlete section#interview .inner nav .tab li a dl:before {
          height: 20px;
          width: 20px; } }
      @media screen and (min-width: 1024px) {
        #athlete section#interview .inner nav .tab li a dl:before {
          height: 16px;
          width: 16px; } }

/********** #goods **********/
#goods header #g-nav .nav-wrap a.goods::after {
  transform: scale(1, 1); }
#goods section .goods {
  position: relative;
  background: #FFF;
  border: 4px solid #3DA8E8;
  padding: 50px;
  z-index: 0; }
  #goods section .goods::before {
    content: url("../images/goods/goods_corner.svg");
    position: absolute;
    top: -12px;
    left: -12px;
    height: 140px;
    width: 140px;
    z-index: -1; }
#goods section#main {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover; }
  @media screen and (max-width: 1023px) {
    #goods section#main {
      background-image: url("../images/main_bg_sp.png"); } }
  @media screen and (min-width: 1024px) {
    #goods section#main {
      background-image: url("../images/main_bg.png");
      width: 100%; } }
  #goods section#main .inner {
    position: relative;
    padding-bottom: 100px; }
    #goods section#main .inner h1 {
      text-align: center; }
      #goods section#main .inner h1 img {
        height: 100%;
        width: auto; }
      @media screen and (max-width: 1023px) {
        #goods section#main .inner h1 {
          height: 180px;
          margin-bottom: 20px; } }
      @media screen and (min-width: 1024px) {
        #goods section#main .inner h1 {
          height: 140px;
          margin-bottom: 10px; } }
    #goods section#main .inner > p {
      text-align: center;
      margin-bottom: 50px; }
      @media screen and (max-width: 1023px) {
        #goods section#main .inner > p {
          font-size: 2rem; } }
      @media screen and (min-width: 1024px) {
        #goods section#main .inner > p {
          font-size: 1.6rem; } }
    #goods section#main .inner .information {
      display: flex;
      margin-bottom: 50px; }
      @media screen and (max-width: 1023px) {
        #goods section#main .inner .information {
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          padding-top: 50px; } }
      @media screen and (min-width: 1024px) {
        #goods section#main .inner .information {
          flex-direction: row-reverse;
          column-gap: 5%; } }
      @media screen and (max-width: 1023px) {
        #goods section#main .inner .information .text {
          width: 100%; } }
      @media screen and (min-width: 1024px) {
        #goods section#main .inner .information .text {
          width: 50%; } }
      #goods section#main .inner .information .text h2 {
        color: #3DA8E8;
        position: relative; }
        @media screen and (max-width: 1023px) {
          #goods section#main .inner .information .text h2 {
            font-size: 4rem; } }
        @media screen and (min-width: 1024px) {
          #goods section#main .inner .information .text h2 {
            font-size: 3rem; } }
        #goods section#main .inner .information .text h2 .megapon {
          position: absolute; }
          @media screen and (max-width: 1023px) {
            #goods section#main .inner .information .text h2 .megapon {
              top: -70px;
              right: -70px;
              width: 200px; } }
          @media screen and (min-width: 1024px) {
            #goods section#main .inner .information .text h2 .megapon {
              top: -70px;
              right: -70px;
              width: 150px; } }
          #goods section#main .inner .information .text h2 .megapon img {
            height: auto;
            width: 100%; }
      @media screen and (max-width: 1023px) {
        #goods section#main .inner .information .text p {
          font-size: 2rem;
          margin-bottom: 50px; } }
      @media screen and (min-width: 1024px) {
        #goods section#main .inner .information .text p {
          font-size: 1.6rem;
          line-height: 180%; } }
      @media screen and (max-width: 1023px) {
        #goods section#main .inner .information .thumb {
          width: 100%; } }
      @media screen and (min-width: 1024px) {
        #goods section#main .inner .information .thumb {
          width: 45%; } }
      #goods section#main .inner .information .thumb img {
        height: auto;
        width: 100%; }
    #goods section#main .inner .design {
      margin-bottom: 30px; }
      #goods section#main .inner .design:last-child {
        margin-bottom: 0; }
      #goods section#main .inner .design h3 {
        border-top: 1px solid #F16D0E;
        border-bottom: 1px solid #F16D0E;
        display: flex; }
        @media screen and (max-width: 1023px) {
          #goods section#main .inner .design h3 {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            margin-bottom: 30px;
            padding: 20px 0;
            text-align: center; } }
        @media screen and (min-width: 1024px) {
          #goods section#main .inner .design h3 {
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            line-height: 100%;
            padding: 10px; } }
        @media screen and (max-width: 1023px) {
          #goods section#main .inner .design h3 span {
            margin: 0 auto; } }
        @media screen and (max-width: 1023px) {
          #goods section#main .inner .design h3 span:nth-child(1) {
            font-size: 3rem;
            margin-bottom: 20px; } }
        @media screen and (min-width: 1024px) {
          #goods section#main .inner .design h3 span:nth-child(1) {
            font-size: 2rem; } }
        #goods section#main .inner .design h3 span:nth-child(2) {
          position: relative;
          text-align: center; }
          @media screen and (max-width: 1023px) {
            #goods section#main .inner .design h3 span:nth-child(2) {
              font-size: 2rem;
              padding: 0 5rem; } }
          @media screen and (min-width: 1024px) {
            #goods section#main .inner .design h3 span:nth-child(2) {
              font-size: 1.75rem;
              padding: 0 25px; } }
          #goods section#main .inner .design h3 span:nth-child(2):before {
            position: absolute;
            content: url("../images/goods/main_information_icn_arrow.svg");
            top: 50%;
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
            @media screen and (max-width: 1023px) {
              #goods section#main .inner .design h3 span:nth-child(2):before {
                left: 0;
                height: 4rem;
                width: 4rem; } }
            @media screen and (min-width: 1024px) {
              #goods section#main .inner .design h3 span:nth-child(2):before {
                left: 0;
                height: 20px;
                width: 20px; } }
          #goods section#main .inner .design h3 span:nth-child(2):after {
            position: absolute;
            content: url("../images/goods/main_information_icn_arrow.svg");
            top: 50%;
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
            @media screen and (max-width: 1023px) {
              #goods section#main .inner .design h3 span:nth-child(2):after {
                right: 0;
                height: 4rem;
                width: 4rem; } }
            @media screen and (min-width: 1024px) {
              #goods section#main .inner .design h3 span:nth-child(2):after {
                right: 0;
                height: 20px;
                width: 20px; } }
      @media screen and (min-width: 1024px) {
        #goods section#main .inner .design .open-modal.unv ul li {
          width: 18%; } }
      #goods section#main .inner .design .open-modal.dst ul li:nth-child(2) {
        animation-delay: 0.2s; }
      #goods section#main .inner .design .open-modal.dst ul li:nth-child(3) {
        animation-delay: 0.4s; }
      #goods section#main .inner .design .open-modal.dst ul li:nth-child(4) {
        animation-delay: 0.6s; }
      #goods section#main .inner .design .open-modal.dst ul li:nth-child(5) {
        animation-delay: 0.8s; }
      #goods section#main .inner .design .open-modal.dst ul li:nth-child(6) {
        animation-delay: 1.0s; }
      #goods section#main .inner .design .open-modal.dst ul li:nth-child(7) {
        animation-delay: 1.2s; }
      #goods section#main .inner .design .open-modal.dst ul li:nth-child(8) {
        animation-delay: 1.4s; }
      @media screen and (min-width: 1024px) {
        #goods section#main .inner .design .open-modal.dst ul li {
          width: 22%; } }
      #goods section#main .inner .design .open-modal ul {
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        column-gap: 2.5%;
        width: 100%; }
        #goods section#main .inner .design .open-modal ul li {
          background: #F16D0E;
          cursor: pointer;
          display: block;
          position: relative; }
          @media screen and (max-width: 1023px) {
            #goods section#main .inner .design .open-modal ul li {
              margin-bottom: 20px;
              height: 60px;
              width: 47.5%;
              transition: all 0.5s; } }
          @media screen and (min-width: 1024px) {
            #goods section#main .inner .design .open-modal ul li {
              margin-bottom: 20px;
              height: 40px;
              transition: all 0.5s; }
              #goods section#main .inner .design .open-modal ul li:hover {
                opacity: .75;
                transition: all 0.5s; } }
          #goods section#main .inner .design .open-modal ul li span {
            color: #FFF;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            white-space: nowrap; }
            @media screen and (max-width: 1023px) {
              #goods section#main .inner .design .open-modal ul li span {
                font-size: 2rem; } }
            @media screen and (min-width: 1024px) {
              #goods section#main .inner .design .open-modal ul li span {
                font-size: 1.6rem; } }
#goods section#detail {
  background: #FDDAB7; }
  #goods section#detail .inner {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    column-gap: 5%; }
    @media screen and (max-width: 1023px) {
      #goods section#detail .inner {
        padding: 100px 5%; } }
    @media screen and (min-width: 1024px) {
      #goods section#detail .inner {
        padding: 100px 0 50px; } }
    #goods section#detail .inner .goods {
      margin-bottom: 50px;
      padding-top: 100px;
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end; }
      #goods section#detail .inner .goods:nth-child(2) {
        animation-delay: 0.2s; }
      #goods section#detail .inner .goods:nth-child(3) {
        animation-delay: 0.4s; }
      #goods section#detail .inner .goods:nth-child(4) {
        animation-delay: 0.6s; }
      @media screen and (max-width: 1023px) {
        #goods section#detail .inner .goods {
          width: 100%; }
          #goods section#detail .inner .goods:last-child {
            margin-bottom: 0; } }
      @media screen and (min-width: 1024px) {
        #goods section#detail .inner .goods {
          width: 47.5%; } }
      #goods section#detail .inner .goods .text {
        display: block; }
        #goods section#detail .inner .goods .text h2 {
          color: #3DA8E8;
          position: relative; }
          @media screen and (max-width: 1023px) {
            #goods section#detail .inner .goods .text h2 {
              font-size: 4rem; } }
          @media screen and (min-width: 1024px) {
            #goods section#detail .inner .goods .text h2 {
              font-size: 3rem; } }
          #goods section#detail .inner .goods .text h2 span > span {
            display: block;
            line-height: 100%; }
            @media screen and (max-width: 1023px) {
              #goods section#detail .inner .goods .text h2 span > span {
                font-size: calc(2rem * 1.25); } }
            @media screen and (min-width: 1024px) {
              #goods section#detail .inner .goods .text h2 span > span {
                font-size: 1.6rem; } }
          #goods section#detail .inner .goods .text h2 .megapon {
            position: absolute; }
            @media screen and (max-width: 1023px) {
              #goods section#detail .inner .goods .text h2 .megapon {
                top: -150px;
                right: -80px;
                width: 180px; } }
            @media screen and (min-width: 1024px) {
              #goods section#detail .inner .goods .text h2 .megapon {
                top: -100px;
                right: -70px;
                width: 140px; } }
            #goods section#detail .inner .goods .text h2 .megapon img {
              height: auto;
              width: 100%; }
        @media screen and (max-width: 1023px) {
          #goods section#detail .inner .goods .text p {
            font-size: 2rem;
            margin-bottom: 50px; } }
        @media screen and (min-width: 1024px) {
          #goods section#detail .inner .goods .text p {
            font-size: 1.6rem;
            line-height: 180%; } }
        @media screen and (max-width: 1023px) {
          #goods section#detail .inner .goods .text p.note {
            font-size: 1.6rem;
            margin-bottom: 20px; } }
        @media screen and (min-width: 1024px) {
          #goods section#detail .inner .goods .text p.note {
            font-size: 1.25rem; } }
        #goods section#detail .inner .goods .text .btn {
          margin-bottom: 50px; }
          #goods section#detail .inner .goods .text .btn a {
            background: #EE3026; }
            #goods section#detail .inner .goods .text .btn a span {
              color: #FFF; }
              @media screen and (max-width: 1023px) {
                #goods section#detail .inner .goods .text .btn a span {
                  font-size: 2rem; } }
              @media screen and (min-width: 1024px) {
                #goods section#detail .inner .goods .text .btn a span {
                  font-size: 1.25rem; } }
            #goods section#detail .inner .goods .text .btn a:after {
              content: url("../images/index/about_icn_arw.svg");
              display: block;
              position: absolute;
              position: absolute;
              top: 50%;
              -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
              @media screen and (max-width: 1023px) {
                #goods section#detail .inner .goods .text .btn a:after {
                  right: 20px;
                  height: 25px;
                  width: 25px; } }
              @media screen and (min-width: 1024px) {
                #goods section#detail .inner .goods .text .btn a:after {
                  right: 10px;
                  height: 20px;
                  width: 20px; } }
      #goods section#detail .inner .goods .thumb img {
        height: auto;
        width: 100%; }
      @media screen and (min-width: 1024px) {
        #goods section#detail .inner .goods#towel .text p {
          margin-bottom: 55px; } }
      #goods section#detail .inner .goods#keyholder .text h2 {
        margin-top: -2.0rem; }
        #goods section#detail .inner .goods#keyholder .text h2 .megapon {
          position: absolute; }
          @media screen and (max-width: 1023px) {
            #goods section#detail .inner .goods#keyholder .text h2 .megapon {
              top: -120px; } }
          @media screen and (min-width: 1024px) {
            #goods section#detail .inner .goods#keyholder .text h2 .megapon {
              top: -70px; } }
      #goods section#detail .inner .goods#vege .text h2 {
        margin-top: -2.0rem; }
        #goods section#detail .inner .goods#vege .text h2 .megapon {
          position: absolute; }
          @media screen and (max-width: 1023px) {
            #goods section#detail .inner .goods#vege .text h2 .megapon {
              top: -120px; } }
          @media screen and (min-width: 1024px) {
            #goods section#detail .inner .goods#vege .text h2 .megapon {
              top: -70px; } }
      @media screen and (min-width: 1024px) {
        #goods section#detail .inner .goods#vege .text p {
          margin-bottom: 55px; } }
#goods section#profile {
  background: #DDFCD9; }
  #goods section#profile .inner {
    background-image: url("../images/goods/profile_bg.svg");
    background-repeat: no-repeat;
    background-size: 60%; }
    @media screen and (max-width: 1023px) {
      #goods section#profile .inner {
        background-position: left 5% top 50px;
        padding: 100px 5%; } }
    @media screen and (min-width: 1024px) {
      #goods section#profile .inner {
        background-position: left 0 top 50px;
        padding: 100px 0; } }
    #goods section#profile .inner h1 {
      text-align: center;
      max-width: 100%; }
      @media screen and (max-width: 1023px) {
        #goods section#profile .inner h1 {
          height: 160px; } }
      @media screen and (min-width: 1024px) {
        #goods section#profile .inner h1 {
          height: 140px; } }
      #goods section#profile .inner h1 img {
        height: 100%;
        width: auto; }
    @media screen and (max-width: 1023px) {
      #goods section#profile .inner p {
        font-size: 2rem;
        margin-bottom: 50px;
        width: 70%; } }
    @media screen and (min-width: 1024px) {
      #goods section#profile .inner p {
        font-size: 1.6rem; } }
    #goods section#profile .inner .biography-wrap {
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      column-gap: 5%; }
      @media screen and (min-width: 1024px) {
        #goods section#profile .inner .biography-wrap {
          flex-direction: row-reverse; } }
      #goods section#profile .inner .biography-wrap .biography {
        background: #FFF;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        padding: 30px;
        padding-top: 20px; }
        @media screen and (max-width: 1023px) {
          #goods section#profile .inner .biography-wrap .biography {
            width: 100%; } }
        @media screen and (min-width: 1024px) {
          #goods section#profile .inner .biography-wrap .biography {
            width: 75%; } }
        #goods section#profile .inner .biography-wrap .biography dl {
          border-bottom: 2px dotted #55B54E;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
          @media screen and (max-width: 1023px) {
            #goods section#profile .inner .biography-wrap .biography dl {
              font-size: 2rem; } }
          @media screen and (min-width: 1024px) {
            #goods section#profile .inner .biography-wrap .biography dl {
              font-size: 1.6rem; } }
          #goods section#profile .inner .biography-wrap .biography dl:last-child {
            border-bottom: 0; }
          #goods section#profile .inner .biography-wrap .biography dl dt, #goods section#profile .inner .biography-wrap .biography dl dd {
            line-height: 150%;
            padding: 10px; }
          #goods section#profile .inner .biography-wrap .biography dl dt {
            color: #55B54E;
            width: 25%; }
          #goods section#profile .inner .biography-wrap .biography dl dd {
            width: 75%; }
      @media screen and (max-width: 1023px) {
        #goods section#profile .inner .biography-wrap .megapon {
          position: relative;
          width: 100%; }
          #goods section#profile .inner .biography-wrap .megapon span {
            position: absolute;
            top: -250px;
            right: 0;
            width: 20%; } }
      @media screen and (min-width: 1024px) {
        #goods section#profile .inner .biography-wrap .megapon {
          width: 20%; } }
      #goods section#profile .inner .biography-wrap .megapon img {
        height: auto;
        width: 100%; }

/********** #archive **********/
#archive header #g-nav .nav-wrap a.archive::after {
  transform: scale(1, 1); }
#archive section#main {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover; }
  @media screen and (max-width: 1023px) {
    #archive section#main {
      background-image: url("../images/main_bg_sp.png"); } }
  @media screen and (min-width: 1024px) {
    #archive section#main {
      background-image: url("../images/main_bg.png");
      width: 100%; } }
  #archive section#main .inner {
    position: relative;
    padding-bottom: 50px; }
    #archive section#main .inner h1 {
      margin-bottom: 20px;
      text-align: center; }
      #archive section#main .inner h1 img {
        height: 100%;
        width: auto; }
      @media screen and (max-width: 1023px) {
        #archive section#main .inner h1 {
          height: 180px; } }
      @media screen and (min-width: 1024px) {
        #archive section#main .inner h1 {
          height: 140px; } }
    #archive section#main .inner nav ul {
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      column-gap: 5%; }
      #archive section#main .inner nav ul li {
        margin-bottom: 50px; }
        #archive section#main .inner nav ul li:nth-child(2) {
          animation-delay: 0.2s; }
        #archive section#main .inner nav ul li:nth-child(3) {
          animation-delay: 0.4s; }
        #archive section#main .inner nav ul li:nth-child(4) {
          animation-delay: 0.6s; }
        #archive section#main .inner nav ul li:nth-child(5) {
          animation-delay: 0.8s; }
        #archive section#main .inner nav ul li:nth-child(6) {
          animation-delay: 1.0s; }
        @media screen and (max-width: 1023px) {
          #archive section#main .inner nav ul li {
            width: 47.5%; } }
        @media screen and (min-width: 1024px) {
          #archive section#main .inner nav ul li {
            width: 30%; } }
        #archive section#main .inner nav ul li img {
          height: auto;
          width: 100%; }
