@charset "UTF-8";
:root {
  --base: #000;
  --strong: #E5B237;
  --red: #AB0000;
  --violet: #3B1965;
  --white: #FFF;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --bold: 700;
  --en: "Roboto", sans-serif;
  --s: .3s;
}

html {
  height: 100%;
  overflow: auto;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
}
html.is-modal-open {
  overflow: hidden;
}

body {
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: var(--regular);
  line-height: 2;
  background: var(--base);
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}
body.is-drawer-open {
  width: 100%;
  position: fixed;
  left: 0;
}

article, aside, figcaption, figure, footer, header, main, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, blockquote, table, figure {
  margin: 0;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

dd {
  margin-left: 0;
}

b, strong {
  font-weight: var(--bold);
}

em {
  font-style: normal;
}

small {
  font-size: inherit;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
  position: relative;
}

sup {
  top: -0.5em;
}

a {
  background-color: transparent;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover {
  color: inherit;
}
a[tabindex] {
  outline: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  border: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: normal;
  text-align: left;
}

hr {
  display: block;
  margin: 0;
  border: none;
}

a, button {
  touch-action: manipulation;
}

button {
  color: inherit;
  font: inherit;
  background: transparent;
  text-align: inherit;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  overflow: visible;
}
button:disabled, button[aria-disabled=true] {
  cursor: default;
}

.wrapper {
  display: flex;
  flex-direction: column;
  text-align: left;
  word-break: normal;
  min-height: 100vh;
  position: relative;
}
.header .header_logo {
  display: none;
}
.header .header_logo img {
  width: 86px;
  margin-right: 8px;
}
.header .header_menu {
  color: var(--white);
  background: var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
.header .header_menu > svg {
  width: 28px;
}
.header .header_drawer {
  visibility: hidden;
  background: var(--base);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  overflow-y: auto;
  opacity: 0;
  transition: opacity var(--s);
}
.header .header_drawer_inner {
  padding: 60px 12px 24px;
}
.header .header_nav {
  max-width: 320px;
  margin: 0 auto;
  border-bottom: 1px solid var(--white);
}
.header .header_nav > li {
  border-top: 1px solid var(--white);
}
.header .header_nav_btn {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 60px;
}
.header .header_action {
  text-align: center;
  margin-top: 40px;
}

.is-drawer-open .header .header_drawer {
  visibility: visible;
  height: 100%;
  opacity: 1;
}

.main {
  flex: 1 0 auto;
}

.mv {
  background: url("../images/img-halftime/bg_mv.jpg") no-repeat 50% 0;
  background-size: 640px auto;
  text-align: center;
  padding-top: 80px;
  box-sizing: border-box;
  position: relative;
}
.mv:before {
  content: "";
  display: block;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 36.93%);
  width: 100%;
  height: 75%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.mv .mv_inner {
  position: relative;
}
.mv .mv_title {
  font-size: 32px;
  font-weight: var(--bold);
  line-height: 1.2;
}
.mv .mv_title_small {
  font-size: 20px;
  line-height: 1.3;
  display: block;
}
.mv .mv_title_logo {
  display: block;
  width: 80%;
  margin: 20px auto;
}
.mv .mv_action {
  width: 95%;
  margin: 55px auto 0;
}
.mv .mv_logo {
  background: linear-gradient(90deg, #344177 0%, #d26927 50%, #e6b738 100%);
  margin-top: 26px;
}
.mv .mv_logo .mv_logo_inner {
  background: linear-gradient(90deg, rgba(52, 65, 119, 0.7) 0%, rgba(210, 105, 39, 0.7) 50%, rgba(230, 183, 56, 0.7) 100%);
  display: flex;
  overflow: hidden;
}
.mv .mv_logo .mv_logo_ani {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  flex-shrink: 0;
  height: 100px;
  margin: 0;
  padding: 0;
  will-change: transform;
}
.mv .mv_logo .mv_logo_ani:first-child {
  animation: loop 50s -25s linear infinite;
}
.mv .mv_logo .mv_logo_ani:last-child {
  animation: loop2 50s linear infinite;
}
.mv .mv_logo img {
  width: 100px;
  height: 100px;
}

.about {
  padding: 120px 12px 0;
}
.about .about_title {
  color: var(--strong);
  font-size: 26px;
  font-weight: var(--bold);
  line-height: 1;
  text-align: center;
}
.about .about_title_small {
  font-size: 16px;
  font-weight: var(--regular);
  line-height: 1.5;
  display: block;
}
.about .about_title_logo {
  display: block;
  width: 85%;
  margin: 20px auto 28px;
}
.about .about_text {
  text-align: left;
  margin: 28px 0 60px;
}
.about .about_text > p:not(:first-child) {
  margin-top: 1em;
}
.about .about_text_em {
  font-size: 20px;
  font-weight: var(--bold);
}

.box-wrapper {
  margin: 0 12px;
}

.box {
  background: var(--white);
}
.box:not(:first-child) {
  margin-top: 60px;
}
.box .box_header {
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 2.2;
  background: linear-gradient(90deg, #344177 0%, #d26927 50%, #e6b738 100%);
  text-align: center;
  padding: 8px;
}
.box .box_body {
  color: var(--base);
  line-height: 1.5;
  padding: 20px 12px 28px;
}
.box .box_note {
  font-size: 14px;
  line-height: 1.7142;
  display: block;
  margin-top: 12px;
}

.feature {
  font-size: 14px;
  line-height: 1.7142;
}
.feature > li:not(:first-child) {
  margin-top: 28px;
}
.feature > li img {
  width: 100%;
}
.feature .feature_title {
  font-size: 18px;
  font-weight: var(--bold);
  line-height: 1.111;
  text-align: center;
  margin: 20px 0 12px;
  padding-bottom: 16px;
  position: relative;
}
.feature .feature_title:after {
  content: "";
  display: block;
  background: linear-gradient(90deg, #344177 0%, #d26927 50%, #e6b738 100%);
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.benefit {
  font-size: 14px;
  line-height: 1.4285;
  margin-top: 24px;
}
.benefit > li:not(:first-child) {
  margin-top: 24px;
}
.benefit .benefit_title {
  font-size: 18px;
  font-weight: var(--bold);
  line-height: 1.3;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.benefit .benefit_title:before {
  content: "";
  display: block;
  background: url("../images/img-halftime/icon_ball.png") no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.cv_wrapper {
  background: url("../images/img-halftime/bg_cv_sp.jpg") no-repeat 50% 0;
  background-size: 100%;
  padding: 0 12px;
}
.cv_wrapper.cv_wrapper--footer {
  background-position: 50% 60%;
  position: relative;
}
.cv_wrapper.cv_wrapper--footer:before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.52);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cv_wrapper.cv_wrapper--footer .cv {
  padding-bottom: 60px;
}
.cv_wrapper.cv_wrapper--footer > * {
  position: relative;
}

.cv {
  padding: 60px 0 77px;
}
.cv .cv_title {
  font-size: 32px;
  font-weight: var(--bold);
  line-height: 1.2;
  text-align: center;
}
.cv .cv_title_logo {
  display: block;
  width: 85%;
  margin: 0 auto 20px;
}
.cv .cv_action {
  text-align: center;
  margin-top: 40px;
}

.article {
  color: var(--base);
  font-size: 14px;
  line-height: 1.4285;
  background: #F5F5F6;
  padding: 32px 14px 28px;
  border-radius: 4px;
  box-sizing: border-box;
}
.article .article_header {
  font-size: 14px;
  font-weight: var(--regular);
  text-align: center;
}
.article .article_list {
  margin-top: 20px;
}
.article .article_list > li:not(:first-child) {
  margin-top: 28px;
}
.article .article_list > li img {
  width: 100%;
}
.article .article_title {
  font-size: 18px;
  font-weight: var(--bold);
  line-height: 1.3333;
  margin: 16px 0 12px;
}
.article .article_action {
  text-align: center;
  margin-top: 12px;
}

.team {
  margin: 60px 12px 0;
}
.team .team_nav {
  display: none;
}
.team .team_btn {
  font-family: var(--en);
  font-size: 18px;
  font-weight: var(--bold);
  line-height: 1.1111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 40px;
  padding-bottom: 4px;
  box-sizing: border-box;
  position: relative;
}
.team .team_btn:after {
  content: "";
  display: block;
  background: #ccc;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.team .team_btn.is-active:after {
  background: linear-gradient(90deg, #344177 0%, #d26927 50%, #e6b738 100%);
}
.team .team_wrapper {
  margin-top: 10px;
}
.team .team_item:not(:first-child) {
  margin-top: 12px;
}
.team .team_body {
  max-height: 0;
  overflow: hidden;
}
.team .team_body.is-active {
  max-height: inherit;
  margin-top: 17px;
}
.team .team_inner {
  padding: 8px;
}
.team .team_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px -20px;
}
.team .team_list > li {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-bottom: 20px;
  padding: 0 10px;
  box-sizing: border-box;
}
.team .team_modal {
  flex: 1 0 auto;
  width: 100%;
  padding: 20px 10px;
  box-shadow: -2px -2px 8px #F2F2F2, 2px 2px 8px #CCCCCC;
  border-radius: 8px;
}
.team .team_name {
  font-family: var(--en);
  font-size: 12px;
  font-weight: var(--bold);
  line-height: 1.3333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  word-break: break-word;
}
.team .team_name_en {
  font-size: 14px;
  line-height: 1.1428;
  margin-bottom: 0.15em;
}

.flow {
  margin: 60px 12px 0;
}
.flow .flow_inner {
  max-width: 840px;
  margin: 0 auto;
}
.flow .flow_step {
  position: relative;
}
.flow .flow_step:before {
  content: "";
  display: block;
  background: #BDBDBD;
  width: 2px;
  height: 146px;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 96px;
  z-index: 1;
}
.flow .flow_step > li {
  background: #fafafa;
  display: flex;
  align-items: center;
  padding: 4px 16px 4px 28px;
  border-radius: 4px;
  position: relative;
}
.flow .flow_step > li:not(:first-child) {
  margin-top: 24px;
}
.flow .flow_step > li:nth-child(2):after {
  background: #E73C3C;
  border: 0;
}
.flow .flow_step > li:nth-child(2) .flow_step_title,
.flow .flow_step > li:nth-child(2) .flow_step_text {
  color: #E73C3C;
  font-weight: var(--bold);
}
.flow .flow_step > li:after {
  content: "";
  display: block;
  background: var(--white);
  width: 8px;
  height: 8px;
  margin: auto 0;
  border: 2px solid #BDBDBD;
  border-radius: 50%;
  box-sizing: border-box;
  position: absolute;
  left: 93px;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.flow .flow_step_title {
  font-size: 16px;
  font-weight: var(--bold);
  margin-right: 32px;
}
.flow .flow_step_text {
  color: #383F43;
  font-size: 14px;
  line-height: 1.4285;
}
.flow .flow_attention {
  margin-top: 28px;
}
.flow .flow_attention_title {
  font-size: 14px;
  font-weight: var(--bold);
  line-height: 1.2857;
  text-align: center;
}
.flow .flow_attention_list {
  font-size: 12px;
  line-height: 1.6667;
  margin-top: 12px;
}
.flow .flow_attention_list > li:before {
  content: "※";
  display: inline;
}

.sponser {
  text-align: center;
}
.sponser .sponser_header {
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.35;
}
.sponser .sponser_list {
  margin-top: 24px;
}
.sponser .sponser_list > li:not(:first-child) {
  margin-top: 24px;
}
.sponser .sponser_title {
  font-size: 18px;
  font-weight: var(--regular);
}

.modal {
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.75);
  max-height: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity var(--s);
  z-index: 1000;
}
.modal.is-active {
  visibility: visible;
  max-height: inherit;
  opacity: 1;
  z-index: 1000;
}
.modal .modal_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.modal .modal_content {
  color: var(--base);
  background: var(--white);
  display: flex;
  flex-direction: column;
  max-height: calc(100% - 90px);
  width: calc(100% - 40px);
  margin: 45px 20px;
  border-radius: 12px;
  position: relative;
}
.modal .modal_close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -40px;
  right: 0;
}
.modal .modal_close:before {
  content: "";
  display: block;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1.66667%2021.5L0.5%2020.3333L9.83333%2011L0.5%201.66667L1.66667%200.5L11%209.83333L20.3333%200.5L21.5%201.66667L12.1667%2011L21.5%2020.3333L20.3333%2021.5L11%2012.1667L1.66667%2021.5Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E") no-repeat;
  width: 22px;
  height: 22px;
}
.modal .modal_inner {
  padding: 24px;
  overflow-y: auto;
}
.modal .modal_title {
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.modal .modal_title_logo {
  display: block;
  width: 80%;
  margin: 0 auto;
}
.modal .modal_title_en {
  font-weight: var(--bold);
}
.modal .modal_title_area {
  margin-top: 8px;
}
.modal .modal_body {
  font-size: 14px;
  line-height: 1.7142;
  margin-top: 20px;
}
.modal .modal_body > p:not(:first-child) {
  margin-top: 1em;
}
.modal .modal_copy {
  font-size: 16px;
  font-weight: var(--bold);
  text-align: center;
}

.footer {
  font-size: 14px;
  line-height: 2.5714;
  text-align: center;
  margin-top: 28px;
  padding-bottom: 45px;
}
.footer .footer_nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer_nav > li {
  display: flex;
  align-items: center;
}
.footer .footer_nav > li:not(:first-child) {
  margin-left: 0.5em;
}
.footer .footer_nav > li:not(:first-child):before {
  content: "";
  display: block;
  background: var(--white);
  width: 1px;
  height: 1em;
  margin-right: 0.5em;
}
.footer .footer_nav a {
  color: var(--white);
  text-decoration: none;
}
.footer .footer_copy {
  font-size: 12px;
  line-height: 3;
}

.btn {
  color: var(--white);
  font-size: 18px;
  font-weight: var(--bold);
  background: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  max-width: 320px;
  min-height: 52px;
  width: 100%;
  border: 2px solid var(--white);
  border-radius: 8px;
  box-sizing: border-box;
}

.btn-link {
  color: #383F43;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 220px;
  min-height: 40px;
  width: 100%;
  border: 1px solid #85898B;
  border-radius: 4px;
}

.download-pdf {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    color: #fff;
    background: #e6002d;
    padding: 5px 10px;
    text-decoration: none;
    margin: 20px auto 0;
}
.download-pdf:after {
    content: "";
    background-image: url(../images/Icon-download-white.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 36%;
    right: 16px;
    display: inline-block;
    padding: 8px;
}
.halftime button.header_menu {
    /* display: none; */
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@media screen and (min-width: 769px) {
  body {
    font-size: 20px;
    line-height: 1.92;
  }
  body.is-drawer-open {
    position: static;
  }
  .main {
    background-size: 100%;
  }
  .mv {
    background-size: cover;
    background-position: 50% 100%;
    padding-top: 148px;
  }
  .mv:before {
    height: 60%;
  }
  .mv .mv_title {
    font-size: 52px;
  }
  .mv .mv_title_small {
    font-size: 32px;
  }
  .mv .mv_title_logo {
    width: 370px;
  }
  .mv .mv_action {
    max-width: 436px;
    margin-top: 60px;
  }
  .mv .mv_logo {
    margin-top: 60px;
  }
  .mv .mv_logo .mv_logo_ani {
    height: auto;
  }
  .mv .mv_logo img {
    width: 120px;
    height: 120px;
  }
  .about {
    padding: 240px 20px 0;
  }
  .about .about_title {
    font-size: 52px;
  }
  .about .about_title_small {
    font-size: 32px;
  }
  .about .about_title_logo {
    max-width: 370px;
    margin-top: 24px;
    margin-bottom: 36px;
  }
  .about .about_text {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 150px;
  }
  .about .about_text > p:not(:first-child) {
    margin-top: 2em;
  }
  .about .about_text_em {
    font-size: 28px;
  }
  .box-wrapper {
    margin: 0;
    padding: 0 20px;
  }
  .box {
    max-width: 1060px;
    margin: 0 auto;
  }
  .box:not(:first-child) {
    margin-top: 40px;
  }
  .box .box_header {
    font-size: 32px;
    line-height: 1.375;
    padding: 18px 20px;
  }
  .box .box_body {
    line-height: 1.92;
    padding: 60px 40px 40px;
  }
  .box .box_text {
    text-align: center;
    margin-top: -20px;
  }
  .box .box_note {
    line-height: 2.7428;
    margin-top: 0;
  }
  .feature {
    font-size: 16px;
    line-height: 1.75;
    display: flex;
    justify-content: space-between;
  }
  .feature > li {
    display: flex;
    flex-direction: column;
    width: 30.613%;
  }
  .feature > li:not(:first-child) {
    margin-top: 0;
  }
  .feature .feature_title {
    font-size: 24px;
    line-height: 1.1667;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding-bottom: 20px;
  }
  .feature .feature_title:after {
    height: 8px;
  }
  .benefit {
    font-size: 16px;
    line-height: 1.4375;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 800px;
    margin: 28px auto -20px;
  }
  .benefit > li {
    width: 48%;
    margin-bottom: 20px;
    padding-left: 64px;
    box-sizing: border-box;
    position: relative;
  }
  .benefit > li:not(:first-child) {
    margin-top: 0;
  }
  .benefit > li:before {
    content: "";
    display: block;
    background: url("../images/img-halftime/icon_ball.png") no-repeat;
    background-size: 100%;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .benefit .benefit_title {
    font-size: 24px;
    margin-bottom: 4px;
  }
  .benefit .benefit_title:before {
    content: none;
  }
  .cv_wrapper {
    background-image: url("../images/img-halftime/bg_cv.jpg");
    background-size: 1280px auto;
    padding: 0 20px;
  }
  .cv_wrapper.cv_wrapper--footer {
    background-position: 50% -20%;
  }
  .cv {
    padding: 83px 0 65px;
  }
  .cv .cv_title {
    font-size: 52px;
    line-height: 1.4483;
  }
  .cv .cv_title_logo {
    max-width: 370px;
    margin-bottom: 24px;
  }
  .article {
    font-size: 16px;
    line-height: 1.5;
    max-width: 1060px;
    margin: 0 auto;
    width: inherit;
    padding: 32px 20px 40px;
  }
  .article .article_header {
    font-size: 20px;
    font-weight: var(--bold);
  }
  .article .article_list {
    display: flex;
    justify-content: space-between;
    max-width: 880px;
    margin: 28px auto 0;
  }
  .article .article_list > li {
    width: 47.728%;
  }
  .article .article_list > li:not(:first-child) {
    margin-top: 0;
  }
  .article .article_title {
    font-size: 24px;
    line-height: 1.1667;
    margin-top: 20px;
  }
  .article .article_action {
    margin-top: 20px;
  }
  .team {
    margin: 60px auto 0;
    padding: 0 20px;
  }
  .team .team_nav {
    display: flex;
    flex-wrap: wrap;
    margin: -40px 0 -8px -12px;
  }
  .team .team_nav > li {
    width: 25%;
    margin-bottom: 8px;
    padding-left: 12px;
    box-sizing: border-box;
  }
  .team .team_wrapper {
    margin-top: 40px;
  }
  .team .team_item {
    display: none;
  }
  .team .team_item:not(:first-child) {
    margin-top: 0;
  }
  .team .team_item.is-active {
    display: block;
  }
  .team .team_title {
    display: none;
  }
  .team .team_body {
    max-width: 940px;
    max-height: inherit;
    margin: 0 auto;
  }
  .team .team_body.is-active {
    margin-top: 0;
  }
  .team .team_list {
    margin-left: -6px;
    margin-right: -6px;
  }
  .team .team_list > li {
    width: 33.3333%;
    padding: 0 6px;
  }
  .team .team_name {
    font-size: 14px;
    line-height: 1.7142;
  }
  .team .team_name_en {
    line-height: 1.7142;
  }
  .team .box_body {
    padding-bottom: 60px;
  }
  .flow {
    margin: 60px 0 0;
    padding: 0 20px;
  }
  .flow .flow_step:before {
    height: 193px;
    left: 279px;
  }
  .flow .flow_step > li {
    background: #EAEAEA;
    padding: 16px 10px 16px 175px;
  }
  .flow .flow_step > li:after {
    width: 12px;
    height: 12px;
    left: 274px;
  }
  .flow .flow_step_title {
    font-size: 24px;
    line-height: 1.6667;
    margin-right: 60px;
  }
  .flow .flow_step_text {
    font-size: 20px;
    line-height: 1.362;
  }
  .flow .flow_attention {
    margin-top: 40px;
  }
  .flow .flow_attention_title {
    font-size: 20px;
    line-height: 1.362;
  }
  .flow .flow_attention_list {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
  }
  .flow .box_body {
    padding-bottom: 65px;
  }
  .sponser .sponser_header {
    font-size: 32px;
    line-height: 1.3618;
  }
  .sponser .sponser_list {
    display: flex;
    justify-content: center;
  }
  .sponser .sponser_list > li {
    display: flex;
    flex-direction: column;
    max-width: 280px;
  }
  .sponser .sponser_list > li:not(:first-child) {
    margin-top: 0;
    margin-left: 40px;
  }
  .sponser .sponser_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 auto;
  }
  .modal .modal_content {
    max-width: 680px;
    max-height: calc(100% - 100px);
    width: auto;
    margin: 50px 40px;
  }
  .modal .modal_inner {
    padding: 80px 40px;
  }
  .modal .modal_title_logo {
    max-width: 200px;
  }
  .modal .modal_title_en {
    font-size: 20px;
  }
  .modal .modal_body {
    margin-top: 80px;
  }
  .modal .modal_copy {
    font-size: 20px;
  }
  .footer {
    font-size: 18px;
    line-height: 2;
    margin-top: 0;
  }
  .footer .footer_copy {
    font-size: inherit;
    line-height: 2;
  }
  .btn {
    font-size: 24px;
    display: inline-flex;
    max-width: 436px;
    min-height: 60px;
    width: 100%;
  }
  .btn.btn--header {
    font-size: 16px;
    min-height: 44px;
    padding: 0 16px;
    border: 0;
  }
  .btn-link {
    font-size: 16px;
    max-width: 260px;
    min-height: 48px;
  }
  .sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .header {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .header .header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    height: 64px;
    margin: 0 auto;
    padding: 10px 20px;
    position: relative;
    box-sizing: border-box;
  }
  .header .header_logo {
    font-size: 14px;
    font-weight: var(--bold);
    line-height: 1;
    display: flex;
    align-items: center;
  }
  .header .header_menu {
    display: none;
  }
  .header .header_drawer {
    visibility: visible;
    background: none;
    display: flex;
    justify-content: flex-end;
    flex: 1;
    position: static;
    overflow: hidden;
    opacity: 1;
    transition: none;
  }
  .header .header_drawer_inner {
    display: flex;
    align-items: center;
    padding: 0;
  }
  .header .header_nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: inherit;
    margin: 0;
    border-bottom: 0;
  }
  .header .header_nav > li {
    border-top: 0;
  }
  .header .header_nav > li:not(:first-child) {
    margin-left: 30px;
  }
  .header .header_nav_btn {
    font-size: 14px;
    min-height: inherit;
  }
  .header .header_action {
    margin: 0 0 0 32px;
  }
}
@media screen and (min-width: 1280px) {
  .header .header_logo {
    font-size: 16px;
  }
  .header .header_nav > li:not(:first-child) {
    margin-left: 40px;
  }
  .header .header_nav_btn {
    font-size: 16px;
  }
  .header .header_action {
    margin-left: 64px;
  }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  a {
    transition: color var(--s);
  }
  button {
    transition: color var(--s);
  }
}
@media (hover: hover) {
  a:hover {
    text-decoration: none;
    font-weight: bold;
  }
  .team .team_btn {
    transition: 0.3s;
  }
  .team .team_btn:hover {
    opacity: 0.5;
  }
  .team .team_modal {
    transition: 0.3s;
  }
  .team .team_modal:hover {
    opacity: 0.5;
  }
  .sponser .sponser_logo {
    transition: 0.3s;
  }
  .sponser .sponser_logo:hover {
    opacity: 0.7;
  }
  .btn {
    transition: 0.3s;
  }
  .btn:hover {
    opacity: 0.7;
  }
  .btn-link {
    transition: 0.3s;
  }
  .btn-link:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }
}
