/*---------------------------------------
    foundation
----------------------------------------*/
/* reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

img {
  vertical-align: bottom;
}

a {
  padding: 0;
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
}

a:not(.hover-bg) {
  transition: opacity 0.3s;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

input,
button,
select {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  font-size: inherit;
  line-height: inherit;
}

textarea {
  resize: none;
}

select:focus,
textarea:focus,
input:focus {
  outline: none;
}

/*---------------------------------------
    Base CSS
----------------------------------------*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  min-height: 100vh;
  font-size: 62.5%;
  overflow-x: hidden;
}

@media (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 1.30208vw;
  }
}

@media (max-width: 420px) {
  html {
    font-size: 2.380952vw;
  }
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: noto-sans-cjk-jp, sans-serif;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.7rem;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}

@media (max-width: 420px) {
  body {
    font-size: 1.5rem;
    line-height: 2.6rem;
  }
}

main {
  flex-grow: 1;
}

p {
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.7rem;
  letter-spacing: 0.1em;
}

@media (max-width: 420px) {
  p {
    font-size: 1.5rem;
    line-height: 2.6rem;
  }
}

a {
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.7rem;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  display: inline-block;
}

@media (max-width: 420px) {
  a {
    font-size: 1.5rem;
    line-height: 2.6rem;
  }
}

section {
  position: relative;
}

/*---------------------------------------
    Utilities
----------------------------------------*/
.font-en {
  font-family: "grange-extended", sans-serif;
}

.t-dark {
  color: #333;
}

.t-white {
  color: #fff;
}

.t-main {
  color: #0181CC;
}

.container {
  width: 100%;
  max-width: 128rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 4rem;
  padding-left: 4rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .container {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

.container.md {
  max-width: 98rem;
}

.container.sm {
  max-width: 88rem;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.show_sp {
  display: none;
}

@media (max-width: 420px) {
  .show_sp {
    display: block;
  }
}

@media (max-width: 420px) {
  .hide_sp {
    display: none;
  }
}

.show_tab {
  display: none;
}

@media (max-width: 768px) {
  .show_tab {
    display: block;
  }
}

@media (max-width: 768px) {
  .hide_tab {
    display: none;
  }
}

/*---------------------------------------
    animation
----------------------------------------*/
.js-anime {
  opacity: 0;
}

.anime-fadeIn.js-anime-active {
  animation: fadeInActive 0.7s forwards;
}

@keyframes fadeInActive {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.anime-fadeInUp.js-anime-active {
  animation: fadeInUpActive 0.7s forwards;
}

@keyframes fadeInUpActive {
  0% {
    opacity: 0;
    transform: translateY(4rem);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*---------------------------------------
    module
----------------------------------------*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.2s;
}

@media (max-width: 420px) {
  .header {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    position: absolute;
  }
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
}

.header.scrolled .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: none;
}

.header .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.1rem solid #555;
  transition: all 0.2s;
}

@media (max-width: 420px) {
  .header .container {
    padding: 1.5rem 0;
  }
}

.header__left a {
  width: 18rem;
}

@media (max-width: 420px) {
  .header__left a {
    width: 15rem;
  }
}

.header__left a img {
  width: 100%;
}

@media (max-width: 420px) {
  .header__right {
    display: none;
  }
}

.header__right ul {
  align-items: center;
}

.header__right ul li:first-child {
  margin-right: 2rem;
}

.header__right ul li:first-child a {
  background: #fff;
}

.header__right ul li:first-child a:hover {
  /* background: #0181CC; */
  /* color: #fff; */
}

/* .header__right ul li:last-child a {
  color: #fff;
  border: 0.1rem solid #fff;
} */

/* .header__right ul li:last-child a:hover {
  background: #FBC02D;
  color: #000;
  border: 0.1rem solid #FBC02D;
} */

.header__right ul li:last-child a {
  color: #fff;
  background-color: #6b6b6b;
  border: 0.1rem solid #fff;
}

.header__right ul li a {
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  transition: 0.2s;
}

.sticky__cta {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  z-index: 999;
}

.sticky__cta__inner {
  padding: 1.5rem 2.5rem;
  justify-content: space-between;
}

.sticky__cta__inner a {
  padding: 1rem 2.5rem;
  font-size: 1.7rem;
  font-weight: 700;
  border-radius: 3rem;
  letter-spacing: 0.1rem;
}

.sticky__cta__inner a:first-child {
  margin-right: 1rem;
  color: #fff;
  background: #0081CC;
  box-shadow: 0px 0px 13px 0px #0081CC;
}

@media (max-width: 420px) {
  .sticky__cta__inner a:first-child {
    margin-right: 0;
  }
}

.sticky__cta__inner a:last-child {
  background: #FBC02D;
  box-shadow: 0px 0px 13px 0px #FBC02D;
}

.footer {
  padding: 6rem 0;
  background: #001A29;
}

@media (max-width: 420px) {
  .footer {
    margin-bottom: 7.6rem;
    padding: 4rem 0;
  }
}

.footer .container {
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .footer .container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer__left {
    margin-bottom: 5rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .footer__left {
    margin-bottom: 4rem;
  }
}

.footer__left img {
  margin-bottom: 3rem;
  width: 18rem;
  height: auto;
}

@media (max-width: 420px) {
  .footer__left img {
    width: 16rem;
  }
}

@media (max-width: 768px) {
  .footer__left nav ul {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .footer__left nav ul li {
    margin-bottom: 1rem;
  }
}

.footer__left nav ul li:not(:last-child) {
  margin-right: 3rem;
}

@media (max-width: 420px) {
  .footer__left nav ul li:not(:last-child) {
    margin-right: 0;
  }
}

@media (max-width: 420px) {
  .footer__left nav ul li:not(:nth-child(3)) {
    margin-right: 3rem;
  }
}

@media (max-width: 420px) {
  .footer__left nav ul li:last-child {
    margin-right: 0rem;
  }
}

.footer__left nav ul li a {
  font-size: 1.4rem;
}

.footer__right {
  text-align: right;
}

@media (max-width: 768px) {
  .footer__right {
    width: 100%;
    text-align: center;
  }
}

.footer__right p {
  color: #aaa;
  font-size: 1.2rem;
  line-height: 2rem;
}

.section__title {
  margin-bottom: 5rem;
}

@media (max-width: 420px) {
  .section__title {
    margin-bottom: 3rem;
  }
}

.section__title.center {
  text-align: center;
}

.section__title p {
  margin-bottom: 1rem;
}

@media (max-width: 420px) {
  .section__title p {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    line-height: 2rem;
  }
}

.section__title h2 {
  font-size: 4.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 5rem;
}

@media (max-width: 420px) {
  .section__title h2 {
    font-size: 3.2rem;
    line-height: 4.5rem;
  }
}

/*---------------------------------------
    page
----------------------------------------*/
/*---------------------------------------
    MV
----------------------------------------*/
.mv__area {
  background: url(../images/jpg/mv-bg.jpg) no-repeat center/cover;
}

.mv__area>img {
  width: 70rem;
  height: auto;
  position: absolute;
  right: -10rem;
  top: -20rem;
}

@media (max-width: 420px) {
  .mv__area>img {
    width: 34rem;
    top: -10rem;
    right: -5rem;
  }
}

.section__mv {
  padding: 20rem 0 13rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 420px) {
  .section__mv {
    padding: 14rem 0 7rem;
  }
}

@media (max-width: 768px) {
  .section__mv__cont__title {
    margin-bottom: 6rem;
  }
}

@media (max-width: 420px) {
  .section__mv__cont__title {
    margin-bottom: 3.5rem;
  }
}

.section__mv__cont__title h1 {
  margin-bottom: 3rem;
}

.section__mv__cont__title h1 span {
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .section__mv__cont__title h1 span {
    line-height: 10rem !important;
  }
}

@media (max-width: 420px) {
  .section__mv__cont__title h1 span {
    font-size: 3.8rem !important;
    line-height: 5rem !important;
  }
}

.section__mv__cont__title h1 span:first-child {
  display: block;
  font-size: 9rem;
  font-weight: 700;
  line-height: 12rem;
}

.section__mv__cont__title h1 span:last-child {
  font-size: 9rem;
  font-weight: 700;
  line-height: 12rem;
  background: linear-gradient(90deg, #0181CC 0%, #FBC02D 108.89%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__mv__cont__title p {
  font-size: 2rem;
  line-height: 3.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
}

@media (max-width: 420px) {
  .section__mv__cont__title p {
    font-size: 1.6rem;
    line-height: 3rem;
    letter-spacing: 0.2rem;
  }
}

.section__mv__cont__point ul {
  max-width: 60rem;
  justify-content: space-between;
  position: absolute;
  right: 4rem;
  bottom: -5rem;
}

@media (max-width: 768px) {
  .section__mv__cont__point ul {
    position: relative;
    right: initial;
    bottom: initial;
  }
}

.section__mv__cont__point ul li {
  margin-bottom: 0.7rem;
  padding: 0 3rem;
  width: 49.5%;
  height: 9.5rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-radius: 1rem;
  border: 0.2rem solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

@media (max-width: 420px) {
  .section__mv__cont__point ul li {
    padding: 0 1.5rem;
    height: 5.2rem;
  }
}

@media (max-width: 420px) {

  .section__mv__cont__point ul li:nth-child(3),
  .section__mv__cont__point ul li:nth-child(4) {
    width: 100%;
  }
}

.section__mv__cont__point ul li img {
  margin-right: 1rem;
  width: auto;
  height: 4.2rem;
}

@media (max-width: 420px) {
  .section__mv__cont__point ul li img {
    height: 2.2rem;
  }
}

.section__mv__cont__point ul li p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

@media (max-width: 420px) {
  .section__mv__cont__point ul li p {
    font-size: 1.4rem;
  }
}

.section__mv__cont__point ul li p .t-main {
  color: #009BF5;
}

@media (max-width: 420px) {
  .section__mv__cont__point ul li p br {
    display: none;
  }
}

.section__mv__cont__button {
  margin-top: 7rem;
}

@media (max-width: 420px) {
  .section__mv__cont__button {
    margin-top: 3.5rem;
    justify-content: space-between;
  }
}

.section__mv__cont__button a {
  padding: 1.4rem 3rem;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 3rem;
  letter-spacing: 0.2rem;
  transition: 0.3s;
}

@media (max-width: 420px) {
  .section__mv__cont__button a {
    margin-right: 0;
    padding: 1rem 2.5rem;
    font-size: 1.7rem;
    letter-spacing: 0.1rem;
  }
}

.section__mv__cont__button a:first-child {
  margin-right: 2rem;
  color: #fff;
  background: #0081CC;
  box-shadow: 0px 0px 13px 0px #0081CC;
}

@media (max-width: 420px) {
  .section__mv__cont__button a:first-child {
    margin-right: 1rem;
  }
}

.section__mv__cont__button a:first-child:hover {
  box-shadow: 0px 0px 20px 0px #0081CC;
}

/*.section__mv__cont__button a:last-child {
  background: #FBC02D;
  box-shadow: 0px 0px 13px 0px #FBC02D;
}

 .section__mv__cont__button a:last-child:hover {
  box-shadow: 0px 0px 20px 0px #FBC02D;
} */

.section__mv__cont__button a:last-child {
  color: #fff;
  background-color: #6b6b6b;
  box-shadow: 0px 0px 13px 0px #6b6b6b;
}

/*---------------------------------------
    INFO
----------------------------------------*/
.section__info {
  padding-right: 4rem;
  padding-left: 4rem;
}

@media (max-width: 420px) {
  .section__info {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

.section__info__cont {
  max-width: 140rem;
  margin: 0 auto;
  padding: 3rem 0;
  width: 100%;
  justify-content: center;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

@media (max-width: 768px) {
  .section__info__cont {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media (max-width: 420px) {
  .section__info__cont {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    padding-bottom: 1rem;
  }
}

.section__info__cont__item {
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  .section__info__cont__item {
    margin-right: 0 !important;
    margin-bottom: 1rem;
    width: 50%;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .section__info__cont__item {
    margin-bottom: 2rem;
    width: 100%;
  }
}

.section__info__cont__item:not(:last-child) {
  margin-right: 6rem;
}

.section__info__cont__item:not(:last-child):before {
  content: "";
  width: 0.1rem;
  height: 4rem;
  background: #aaa;
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .section__info__cont__item:not(:last-child):before {
    display: none;
  }
}

.section__info__cont__item>img {
  margin-right: 1rem;
  width: auto;
  height: 3rem;
}

.section__info__cont__item__text {
  justify-content: flex-start;
  align-items: center;
}

@media (max-width: 768px) {
  .section__info__cont__item__text {
    width: 80%;
  }
}

.section__info__cont__item__text p {
  letter-spacing: 0;
}

.section__info__cont__item__text p:first-child {
  font-size: 1.6rem;
  font-weight: 700;
}

@media (max-width: 420px) {
  .section__info__cont__item__text p:first-child {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

.section__info__cont__item__text p:last-child {
  font-size: 1.4rem;
}

@media (max-width: 420px) {
  .section__info__cont__item__text p:last-child {
    line-height: 2.2rem;
  }
}

/*---------------------------------------
    INTRO
----------------------------------------*/
.section__intro {
  padding: 14rem 0 16rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 420px) {
  .section__intro {
    padding: 6rem 0 8rem;
  }
}

.section__intro>img {
  width: 65rem;
  height: auto;
  position: absolute;
  left: -15rem;
  bottom: -15rem;
}

@media (max-width: 420px) {
  .section__intro>img {
    width: 35rem;
    left: -10rem;
    bottom: -10rem;
  }
}

.section__intro .swiper {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40%;
}

@media (max-width: 420px) {
  .section__intro .swiper {
    top: 27%;
    bottom: initial;
  }
}

.section__intro .swiper-wrapper {
  transition-timing-function: linear;
}

.section__intro .swiper-slide img {
  height: auto;
  width: 90%;
}

@media (max-width: 420px) {
  .section__intro .swiper-slide img {
    width: 100%;
  }
}

.section__intro__cont h2 {
  margin-bottom: 5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 420px) {
  .section__intro__cont h2 {
    margin-bottom: 4rem;
    text-align: left;
  }
}

.section__intro__cont h2 span {
  display: block;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 7rem;
  letter-spacing: 0.5rem;
}

@media (max-width: 768px) {
  .section__intro__cont h2 span {
    font-size: 3.8rem;
    line-height: 6rem;
  }
}

@media (max-width: 420px) {
  .section__intro__cont h2 span {
    font-size: 2.7rem;
    line-height: 4.4rem;
    letter-spacing: 0.1rem;
  }
}

.section__intro__cont h2 span:first-child {
  background: linear-gradient(90deg, #0081CC 35%, #FBC02D 74.13%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 420px) {
  .section__intro__cont h2 span:first-child {
    background: linear-gradient(90deg, #0081CC 0.06%, #FBC02D 57.45%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.2rem;
    line-height: 5rem;
  }
}

.section__intro__cont__text {
  position: relative;
  text-align: center;
  z-index: 1;
}

.section__intro__cont__text p {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 3.6rem;
  letter-spacing: 0.2rem;
}

@media (max-width: 420px) {
  .section__intro__cont__text p {
    text-align: justify;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 3rem;
  }
}

.section__intro__cont__text p:not(:last-child) {
  margin-bottom: 3rem;
}

@media (max-width: 420px) {
  .section__intro__cont__text p:not(:last-child) {
    margin-bottom: 2rem;
  }
}

@media (max-width: 420px) {
  .section__intro__cont__text p br {
    display: none;
  }
}

/*---------------------------------------
    OVERVIEW
----------------------------------------*/
.section__overview {
  padding: 10rem 0 15rem;
}

@media (max-width: 768px) {
  .section__overview {
    padding: 8rem 0 12rem;
  }
}

@media (max-width: 420px) {
  .section__overview {
    padding: 6rem 0 8rem;
  }
}

.section__overview__cont__top {
  margin-bottom: 8rem;
  width: 75%;
}

@media (max-width: 768px) {
  .section__overview__cont__top {
    margin-bottom: 6rem;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .section__overview__cont__top {
    margin-bottom: 2rem;
  }
}

.section__overview__cont__top__item {
  width: 50%;
  margin-bottom: 4rem;
}

.section__overview__cont__top__item>img {
  margin-bottom: 1rem;
  width: auto;
  height: 5.5rem;
}

@media (max-width: 420px) {
  .section__overview__cont__top__item>img {
    height: 4.5rem;
  }
}

.section__overview__cont__top__item__text {
  justify-content: flex-start;
  align-items: center;
}

.section__overview__cont__top__item__text p:first-child {
  margin-right: 1rem;
  font-weight: 700;
}

@media (max-width: 420px) {
  .section__overview__cont__top__item__text p:first-child {
    margin-right: 0;
    margin-bottom: 0.5rem;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .section__overview__cont__top__item__text p:last-child {
    line-height: 2.2rem;
  }
}

.section__overview__cont__bottom__item {
  padding: 5rem 6rem;
  position: relative;
  align-items: flex-start;
}

@media (max-width: 420px) {
  .section__overview__cont__bottom__item {
    padding: 3.5rem 2rem 5.5rem;
  }
}

.section__overview__cont__bottom__item.grandprix {
  background: #003452;
}

.section__overview__cont__bottom__item.grandprix .section__overview__cont__bottom__item__left__point h4 {
  background: #1B6D9C;
}

.section__overview__cont__bottom__item.grandprix .section__overview__cont__bottom__item__right__item {
  background: rgba(0, 26, 41, 0.8);
}

.section__overview__cont__bottom__item.challenge {
  background: #333;
}

.section__overview__cont__bottom__item.challenge .section__overview__cont__bottom__item__left__point h4,
.section__overview__cont__bottom__item.challenge .section__overview__cont__bottom__item__right__item {
  background: #202020;
}

.section__overview__cont__bottom__item>img {
  height: 11rem;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 768px) {
  .section__overview__cont__bottom__item>img {
    height: 7rem;
  }
}

@media (max-width: 420px) {
  .section__overview__cont__bottom__item>img {
    height: 3.5rem;
  }
}

.section__overview__cont__bottom__item__left {
  width: 45%;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .section__overview__cont__bottom__item__left {
    margin-bottom: 4rem;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .section__overview__cont__bottom__item__left {
    margin-bottom: 3rem;
  }
}

.section__overview__cont__bottom__item__left__intro {
  margin-bottom: 4rem;
}

@media (max-width: 420px) {
  .section__overview__cont__bottom__item__left__intro {
    margin-bottom: 3rem;
  }
}

.section__overview__cont__bottom__item__left__intro h3 {
  margin-bottom: 2rem;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 5rem;
  letter-spacing: 0.4rem;
}

@media (max-width: 420px) {
  .section__overview__cont__bottom__item__left__intro h3 {
    margin-bottom: 1rem;
    font-size: 2.8rem;
    line-height: 4rem;
    letter-spacing: 0.2rem;
  }
}

.section__overview__cont__bottom__item__left__intro p {
  font-size: 1.8rem;
  line-height: 3.5rem;
}

@media (max-width: 420px) {
  .section__overview__cont__bottom__item__left__intro p {
    font-size: 1.5rem;
    line-height: 3rem;
  }
}

.section__overview__cont__bottom__item__left__point h4 {
  margin-bottom: 1.5rem;
  padding: 0.6rem 3rem;
  border-radius: 3rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3rem;
  display: inline-block;
}

@media (max-width: 420px) {
  .section__overview__cont__bottom__item__left__point h4 {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}

.section__overview__cont__bottom__item__left__point ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

@media (max-width: 420px) {
  .section__overview__cont__bottom__item__left__point ul li {
    align-items: flex-start;
  }
}

.section__overview__cont__bottom__item__left__point ul li:not(:last-child) {
  margin-right: 2rem;
}

.section__overview__cont__bottom__item__left__point ul li:last-child p {
  white-space: nowrap;
}

@media (max-width: 420px) {
  .section__overview__cont__bottom__item__left__point ul li:last-child p {
    white-space: initial;
  }
}

.section__overview__cont__bottom__item__left__point ul li img {
  margin-right: 1rem;
  width: 2.2rem;
  height: auto;
}

.section__overview__cont__bottom__item__right {
  width: 55%;
  position: relative;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .section__overview__cont__bottom__item__right {
    width: 100%;
  }
}

.section__overview__cont__bottom__item__right__item {
  margin-bottom: 0.7rem;
  padding: 2rem 3rem;
  border-radius: 1rem;
}

@media (max-width: 420px) {
  .section__overview__cont__bottom__item__right__item {
    padding: 1.5rem 2.5rem;
    width: 100% !important;
  }
}

.section__overview__cont__bottom__item__right__item:nth-child(odd) {
  width: 64.5%;
}

.section__overview__cont__bottom__item__right__item:nth-child(even) {
  width: 34.5%;
}

.section__overview__cont__bottom__item__right__item h4 {
  margin-bottom: 1rem;
}

.section__overview__cont__bottom__item__right__item h4 img {
  margin-right: 1rem;
  height: 2.5rem;
}

@media (max-width: 420px) {
  .section__overview__cont__bottom__item__right__item h4 img {
    margin-right: 0.5rem;
    height: 2.2rem;
  }
}

.section__overview__cont__bottom__item__right__item h4 span {
  font-size: 2rem;
}

@media (max-width: 420px) {
  .section__overview__cont__bottom__item__right__item h4 span {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}

.section__overview__cont__bottom__item__right__item p {
  letter-spacing: 0;
}

/*---------------------------------------
    TIMELINE
----------------------------------------*/
.section__timeline {
  padding: 8rem 0 12rem;
  background: #001A29;
}

@media (max-width: 768px) {
  .section__timeline {
    padding: 8rem 0 10rem;
  }
}

@media (max-width: 420px) {
  .section__timeline {
    padding: 5rem 0 0;
  }
}

.section__timeline__cont img {
  width: 100%;
}

@media (max-width: 420px) {
  .section__timeline__cont img {
    width: 80%;
  }
}

/*---------------------------------------
    JUDGES
----------------------------------------*/
.section__judges {
  padding: 12rem 0 10rem;
  background: #F7F7F7;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section__judges {
    padding: 8rem 0 6rem;
  }
}

@media (max-width: 420px) {
  .section__judges {
    padding: 6rem 0 2rem;
  }
}

.section__judges>img {
  position: absolute;
  width: 120rem;
  height: auto;
}

@media (max-width: 420px) {
  .section__judges>img {
    width: 50rem;
  }
}

.section__judges>img:first-of-type {
  top: -60rem;
  left: -60rem;
}

@media (max-width: 420px) {
  .section__judges>img:first-of-type {
    top: -15rem;
    left: -15rem;
  }
}

.section__judges>img:last-of-type {
  right: -60rem;
  bottom: -60rem;
}

@media (max-width: 420px) {
  .section__judges>img:last-of-type {
    right: -15rem;
    bottom: -5rem;
  }
}

.section__judges .section__title {
  margin-bottom: 8rem;
}

@media (max-width: 420px) {
  .section__judges .section__title {
    margin-bottom: 5rem;
  }
}

.section__judges__cont__item {
  width: calc(20% - 2rem);
}

@media (max-width: 768px) {
  .section__judges__cont__item {
    margin-bottom: 6rem;
    width: calc(33.333% - 1.6666rem);
  }
}

@media (max-width: 420px) {
  .section__judges__cont__item {
    margin-right: 1.5rem !important;
    width: calc(50% - 0.75rem);
  }
}

.section__judges__cont__item:not(:last-child) {
  margin-right: 2.5rem;
}

@media (max-width: 420px) {
  .section__judges__cont__item:nth-child(2n) {
    margin-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .section__judges__cont__item:nth-child(3) {
    margin-right: 0;
  }
}

.section__judges__cont__item__image {
  margin-bottom: 2rem;
  padding-top: 140%;
  width: 100%;
  position: relative;
  background: no-repeat center/cover;
}

.section__judges__cont__item__image p {
  font-size: 4.2rem;
  line-height: 6rem;
  position: absolute;
  top: -3.5rem;
  left: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
}

@media (max-width: 420px) {
  .section__judges__cont__item__image p {
    font-size: 3rem;
    line-height: 4rem;
    top: -2rem;
  }
}

.section__judges__cont__item__text p:first-of-type {
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
}

@media (max-width: 420px) {
  .section__judges__cont__item__text p:first-of-type {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

.section__judges__cont__item__text p:last-of-type {
  color: #777;
  font-size: 1.4rem;
  line-height: 2.2rem;
  letter-spacing: 0.2em;
}

.section__judges__cont__item__text h3 {
  font-size: 2.2rem;
  line-height: 4rem;
  letter-spacing: 0.2em;
}

@media (max-width: 420px) {
  .section__judges__cont__item__text h3 {
    font-size: 2rem;
    line-height: 3.5rem;
  }
}

.section__judges__cont__item__text h3 span {
  margin-left: 1rem;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 700;
}

/*---------------------------------------
    SPONSORS
----------------------------------------*/
.section__sponsors {
  padding: 8rem 0 6rem;
}

@media (max-width: 420px) {
  .section__sponsors {
    padding: 6rem 0 5rem;
  }
}

.section__sponsors__cont ul {
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 3rem;
}

.section__sponsors__cont ul li:not(:last-child) {
  margin-right: 8rem;
}

@media (max-width: 768px) {
  .section__sponsors__cont ul li:not(:last-child) {
    margin-right: 5rem;
  }
}

@media (max-width: 420px) {
  .section__sponsors__cont ul li:not(:last-child) {
    margin-right: 2rem;
  }
}

.section__sponsors__cont ul li img {
  width: auto;
  height: 6rem;
}

@media (max-width: 768px) {
  .section__sponsors__cont ul li img {
    height: 5rem;
  }
}

@media (max-width: 420px) {
  .section__sponsors__cont ul li img {
    height: 2.8rem;
  }
}

/*---------------------------------------
    SLIDER
----------------------------------------*/
.section__slider {
  padding: 8rem 0 10rem;
  overflow: hidden;
}

@media (max-width: 420px) {
  .section__slider {
    padding: 3rem 0 6rem;
  }
}

.section__slider .swiper {
  overflow: initial;
}

.section__slider .swiper-wrapper {
  display: flex;
  align-items: flex-end;
}

.section__slider .swiper-slide {
  width: 100%;
  opacity: 0.6;
  transform: scale(0.9) !important;
  transition: 0.7s;
  position: relative;
  bottom: -1.5rem;
}

.section__slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1) !important;
  bottom: 0.2rem;
}

@media (max-width: 420px) {
  .section__slider .swiper-slide-active {
    bottom: -0.3rem;
  }
}

.section__slider .swiper-button-prev {
  width: 8rem;
  height: 8rem;
  background: url(../images/svg/slide-prev.svg) no-repeat center/contain;
}

@media (max-width: 420px) {
  .section__slider .swiper-button-prev {
    width: 4.5rem;
    height: 4.5rem;
    top: 55%;
    left: -1.5rem;
  }
}

.section__slider .swiper-button-prev:after {
  display: none;
}

.section__slider .swiper-button-next {
  width: 8rem;
  height: 8rem;
  background: url(../images/svg/slide-next.svg) no-repeat center/contain;
}

@media (max-width: 420px) {
  .section__slider .swiper-button-next {
    width: 4.5rem;
    height: 4.5rem;
    top: 55%;
    right: -1.5rem;
  }
}

.section__slider .swiper-button-next:after {
  display: none;
}

/*---------------------------------------
    CTA
----------------------------------------*/
.section__cta {
  padding-bottom: 8rem;
}

@media (max-width: 420px) {
  .section__cta {
    padding-bottom: 5rem;
  }
}

.section__cta__cont {
  overflow: hidden;
  border-radius: 2rem;
}

.section__cta__cont a {
  padding: 10rem 0;
  width: 100%;
  position: relative;
  /* background: linear-gradient(93deg, rgba(0, 129, 204, 0.9) 0.47%, rgba(251, 192, 45, 0.85) 130.63%); */
  background: rgba(125, 125, 125, 0.9);
  border-radius: 2rem;
  box-shadow: 0 0 4rem rgba(0, 0, 0, 0.16);
  text-align: center;
}

@media (max-width: 420px) {
  .section__cta__cont a {
    padding: 4rem 2.5rem;
    text-align: left;
    border-radius: 1rem;
  }
}

/* .section__cta__cont a:hover {
  opacity: 1;
}

.section__cta__cont a:hover img:last-of-type {
  right: 3rem;
}

.section__cta__cont a:hover:before {
  transform: scale(1.1);
} */

.section__cta__cont a::before {
  content: "";
  background: url(../images/jpg/cta-bg.jpg) no-repeat center/cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2rem;
  z-index: -1;
  transition: 0.2s;
}

@media (max-width: 420px) {
  .section__cta__cont a::before {
    border-radius: 1rem;
  }
}

.section__cta__cont a p {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.5rem;
  letter-spacing: 0.2rem;
}

@media (max-width: 420px) {
  .section__cta__cont a p {
    font-size: 1.6rem;
    line-height: 2.7rem;
  }
}

.section__cta__cont a h2 {
  margin-bottom: 2.5rem;
  font-size: 6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 8rem;
  text-transform: uppercase;
}

@media (max-width: 420px) {
  .section__cta__cont a h2 {
    font-size: 3.2rem;
    line-height: 4.5rem;
  }
}

.section__cta__cont a img:first-of-type {
  width: 15rem;
  height: auto;
}

@media (max-width: 420px) {
  .section__cta__cont a img:first-of-type {
    width: 11rem;
  }
}

.section__cta__cont a img:last-of-type {
  width: 8rem;
  height: 8rem;
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .section__cta__cont a img:last-of-type {
    width: 7rem;
    height: 7rem;
    right: 3rem;
  }
}

@media (max-width: 420px) {
  .section__cta__cont a img:last-of-type {
    width: 4rem;
    height: 4rem;
    right: 2rem;
  }
}

/*# sourceMappingURL=main.css.map */


/* 登壇者紹介 */
.kincuba-speakers-box {
  max-width: 1310px;
  margin: 80px auto;
  padding: 0 25px;
}

.kincuba-speakers-title {
  position: relative;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
}

.kincuba-speakers-title::before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0.6em;
  width: 100%;
  height: 3px;
  background-color: #e4e4e4;
}

.kincuba-speakers-title span {
  position: relative;
  padding: 0 1em;
  background-color: #fff;
}

.kincuba-speakers-list {}

.kincuba-speakers-list .kincuba-speakers-item {
  position: relative;
  margin-top: 40px;
  border: 1px solid#737373;
  text-align: center;
}

.kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 62px;
  height: 55px;
  background-color: #ffd15d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-number {
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  background-color: #e15d42;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
}

.kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-photo {
  width: 45%;
  max-width: 200px;
  margin: 24px auto 0;
}

.kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-name {
  margin-top: 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
}

.kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-faculty {
  margin-top: 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
}

.kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-award {
  margin-top: 20px;
  padding-top: 8px;
  color: #818181;
  border-top: 1px solid #e0e0e0;
  font-weight: 500;
  font-size: 12px;
  line-height: 130%
}

.kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-theme-wrap {
  margin: 10px 15px 20px;
  padding: 8px 10px;
  border: 1px solid #e7e8e9;
  background-color: #fafafa;
  min-height: 100px;
}

.kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-theme-wrap .kincuba-speakers-theme {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}

.kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-theme-wrap .kincuba-speakers-text {
  margin-top: 12px;
  color: #737373;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  text-align: left;
}

@media print,
screen and (min-width: 768px) {

  /* PC */
  /* 登壇者紹介 */
  .kincuba-speakers-box {
    margin-top: 140px;
  }

  .kincuba-speakers-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
  }

  .kincuba-speakers-list {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    margin-left: -20px;
  }

  .kincuba-speakers-list .kincuba-speakers-item {
    /* max-width: 404px; */
    min-height: 590px;
    width: 404px;
    box-sizing: content-box;
    margin: 0 0 32px 20px;
  }

  .kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-name {
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
  }

  .kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-faculty {
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
  }

  .kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-award {
    padding-top: 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
  }

  .kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-theme-wrap {
    margin: 10px 20px 20px;
    padding: 20px;
    min-height: 100px;
  }

  .kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-theme-wrap .kincuba-speakers-theme {
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
  }

  .kincuba-speakers-list .kincuba-speakers-item .kincuba-speakers-theme-wrap .kincuba-speakers-text {
    margin-top: 12px;
    color: #737373;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
  }
}

.width_100 {
  width: 100% !important;
}

.width_64 {
  width: 64.5% !important;
}

.width_34 {
  width: 34.5% !important;
}

/* 20240301修正対応 */
/* youtube */
.youtube-box-wrap {
  width: 100%;
  max-width: 1310px;
  margin: 80px auto;
  padding: 0 4rem;
}

@media print,
screen and (min-width: 768px) {
  /* PC */
  /* youtube */
  .youtube-box-wrap {
    margin-top: 140px;
  }
}

.youtube-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube-box iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.kincuba-speakers-award-list {
  margin: 0 20px 20px;
  text-align: left;
  display: flex;
  /*コレ*/flex-wrap: wrap;
}
.kincuba-speakers-award-list > div {
  margin-top: 10px;
  margin-right: 10px;
  padding: 5px 13px;
  border-radius: 16px;
}
.kincuba-speakers-award-list > div > img {
  margin-right: 4px;
  height: 24px;
}
.kincuba-speakers-award-list > div > span {
  font-weight: bold;
  font-size: 14px;
  line-height: 130%;
}
.kincuba-speakers-award-list-item01 {
  background-color: #F1E6AC;
  color: #C3A817;
}
.kincuba-speakers-award-list-item01 >img {
  filter: invert(70%) sepia(75%) saturate(1973%) hue-rotate(11deg) brightness(95%) contrast(82%);
}
.kincuba-speakers-award-list-item02 {
  background-color: #E7E6E3;
  color: #858480;
}
.kincuba-speakers-award-list-item02 >img {
  filter: invert(58%) sepia(7%) saturate(163%) hue-rotate(11deg) brightness(89%) contrast(83%);
}
.kincuba-speakers-award-list-item03 {
  background-color: #D7EAF4;
  color: #0081CC;
}
.kincuba-speakers-award-list-item04 {
  background-color: #D7EAF4;
  color: #0081CC;
}