<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ------------------------------
    mixin
------------------------------ */
:root {
  --navy01: #005BAC;
  --green01: #00ADC1;
  --blue01: #0075DD;
  --duration03: 0.3s;
  --duration05: 0.5s;
  --opacity: 0.5;
}

/* ------------------------------
    reset
------------------------------ */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 959px) {
  html {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "Zen Kaku Gothic New", メイリオ, Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

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

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

img, object {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* ------------------------------
    base
------------------------------ */
body {
  background: var(--navy01);
  color: #fff;
  font-size: 1rem;
  text-align: left;
}

section {
  position: relative;
}

main {
  display: block;
}

p, th, td, dt, dd, li, input, button, textarea {
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
  input, textarea, select, .select {
    font-size: max(1.6rem, 16px) !important;
  }
}
a {
  color: inherit;
}
a:link, a:active, a:visited, a:focus {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}

/* ------------------------------
    header
------------------------------ */
#header {
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  -webkit-transition: background-color var(--duration03);
  transition: background-color var(--duration03);
  height: 80px;
}
#header.scroll {
  background: rgba(8, 61, 145, 0.6);
}
#header .u-wrap {
  max-width: inherit;
  width: 100%;
  height: 100%;
  padding: 0 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body.is-loading #header {
  -webkit-transition: opacity 0.5s 1.2s;
  transition: opacity 0.5s 1.2s;
  opacity: 1;
}

#header .logo_wrap {
  height: 100%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .logo_wrap a {
  display: block;
}
@media (any-hover: hover) {
  #header .logo_wrap a {
    -webkit-transition: opacity var(--duration03) ease;
    transition: opacity var(--duration03) ease;
  }
  #header .logo_wrap a:hover {
    opacity: var(--opacity);
    text-decoration: none;
  }
}
#header .logo_wrap img {
  max-width: 24rem;
}
#header nav .gnavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 4rem;
}
#header nav .gnavi li {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
#header nav .gnavi li &gt; a .en {
  text-transform: uppercase;
}
@media (any-hover: hover) {
  #header nav .gnavi li &gt; a {
    -webkit-transition: color var(--duration03);
    transition: color var(--duration03);
  }
  #header nav .gnavi li &gt; a:hover {
    color: var(--green01);
  }
}
#header nav .gnavi li .c-buttonArrow01 a {
  width: 24.5rem;
  height: 4rem;
  font-size: 1.6rem;
}
#header .overlay {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 997;
}
#header .overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 959px) {
  #header,
  #header .wrap,
  #header .logo_wrap {
    width: 100%;
    height: 60px;
  }
  #header {
    background-color: transparent;
    padding: 0;
    margin: 0;
    z-index: 999;
  }
  #header .u-wrap {
    padding: 0;
    display: block;
    position: relative;
    min-width: inherit;
  }
  #header .logo_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 999;
    padding: 0 0 0 30px;
  }
  #header .logo_wrap .logo img {
    width: 160px;
  }
  #header .menu-trigger {
    display: block;
    position: fixed;
    top: 10px;
    right: 20px;
    width: 40px;
    height: 40px;
    z-index: 999;
    cursor: pointer;
  }
}
@media screen and (max-width: 959px) and (any-hover: hover) {
  #header .menu-trigger {
    -webkit-transition: opacity var(--duration03) ease;
    transition: opacity var(--duration03) ease;
  }
  #header .menu-trigger:hover {
    opacity: var(--opacity);
    text-decoration: none;
  }
}
@media screen and (max-width: 959px) {
  #header .menu-trigger span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
  }
  #header .menu-trigger span:nth-of-type(1) {
    top: 35%;
  }
  #header .menu-trigger span:nth-of-type(2) {
    bottom: 35%;
  }
  #header nav {
    background: var(--navy01);
    width: 100%;
    opacity: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#143871), color-stop(40%, #0F459B), to(#4980D6));
    background: linear-gradient(#143871, #0F459B 40%, #4980D6 100%);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: opacity 1s, -webkit-transform 0.3s;
    transition: opacity 1s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 1s;
    transition: transform 0.3s, opacity 1s, -webkit-transform 0.3s;
    z-index: 998;
  }
  #header nav .nav_wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    position: relative;
    margin: 0;
    padding: 10.5rem 5vw 5rem;
  }
  #header nav .nav_wrap .gnavi {
    display: block;
  }
  #header nav .nav_wrap .gnavi li {
    text-align: center;
  }
  #header nav .nav_wrap .gnavi li &gt; a {
    display: block;
    position: relative;
    line-height: 1;
  }
  #header nav .nav_wrap .gnavi li &gt; a .en {
    display: block;
    font-size: 2.6rem;
    font-family: "rift", sans-serif;
    font-weight: 600;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
  }
  #header nav .nav_wrap .gnavi li &gt; a .ja {
    display: block;
    font-size: 1.4rem;
    margin-top: 0.6rem;
  }
  #header nav .nav_wrap .gnavi li + li {
    margin-left: 0;
    margin-top: 3.4rem;
  }
  #header nav .nav_wrap .gnavi li:nth-child(6) {
    margin-top: 5rem;
  }
  #header nav .nav_wrap .gnavi li:nth-child(6) .c-buttonArrow01 a,
  #header nav .nav_wrap .gnavi li:nth-child(6) .c-buttonArrow03 a {
    margin: 0 auto;
    font-size: 1.4rem;
    width: 22rem;
    height: 3.8rem;
  }
  #header nav .nav_wrap .gnavi li:nth-child(6) .c-buttonArrow01 a::after,
  #header nav .nav_wrap .gnavi li:nth-child(6) .c-buttonArrow03 a::after {
    right: 1.5em;
    width: 0.7em;
    height: 0.7em;
  }
  #header nav .nav_wrap .gnavi li:nth-child(6) .c-buttonArrow03 {
    margin-top: 3rem;
  }
  #header nav .nav_wrap .gnavi li .btn_arrow a {
    width: 16em;
    padding-top: 0.6em;
    padding-bottom: 0.6em;
  }
  #header.navOpen .menu-trigger span:nth-of-type(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-25deg);
            transform: translateY(-50%) rotate(-25deg);
  }
  #header.navOpen .menu-trigger span:nth-of-type(2) {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(25deg);
            transform: translateY(50%) rotate(25deg);
  }
  #header.navOpen nav {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: opacity 0s, -webkit-transform 0.3s;
    transition: opacity 0s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0s;
    transition: transform 0.3s, opacity 0s, -webkit-transform 0.3s;
  }
}
/* ------------------------------
    footer
------------------------------ */
#footer {
  background: -webkit-gradient(linear, left bottom, left top, from(#4980D6), to(#083D91));
  background: linear-gradient(to top, #4980D6, #083D91);
  padding: 10rem 0 5.4rem;
}
#footer * {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 6rem 0;
  }
}
#footer .logo {
  text-align: center;
}
#footer .logo img {
  max-width: 15rem;
}
@media screen and (max-width: 767px) {
  #footer .logo img {
    max-width: 10.5rem;
  }
}
#footer .catch {
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin: 1.2em 0 3.3rem;
}
@media screen and (max-width: 767px) {
  #footer .catch {
    margin: 2.6rem 0 1.5rem;
    line-height: 1.6;
    font-size: 2.5rem;
  }
}
#footer .catch small {
  font-size: 2.6rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #footer .catch small {
    font-size: 1.7rem;
    letter-spacing: 0.1em;
  }
}
#footer .txt {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  font-weight: bold;
}
#footer .c-buttonBlank01 {
  width: 30rem;
  margin: 4.6rem auto 0;
}
@media screen and (max-width: 767px) {
  #footer .c-buttonBlank01 {
    width: 22rem;
    margin: 3.5rem auto 0;
  }
}
#footer .c-buttonBlank01 a {
  font-size: 1.6rem;
}
#footer .c-buttonBlank01 .c-buttonBlank01__inner {
  font-weight: 700;
}
#footer .flex {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 6rem;
}
#footer .flex_l .name {
  font-size: 2rem;
  line-height: 1.6;
}
@media (any-hover: hover) {
  #footer .flex_l .name {
    -webkit-transition: opacity var(--duration03) ease;
    transition: opacity var(--duration03) ease;
  }
  #footer .flex_l .name:hover {
    opacity: var(--opacity);
    text-decoration: none;
  }
}
#footer .flex_l .address {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 0.6rem;
}
#footer .flex_r .nav {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
#footer .flex_r .nav li {
  font-size: 1.4rem;
}
#footer .flex_r .nav li + li::before {
  content: "　│　";
}
@media (any-hover: hover) {
  #footer .flex_r .nav li a {
    -webkit-transition: opacity var(--duration03) ease;
    transition: opacity var(--duration03) ease;
  }
  #footer .flex_r .nav li a:hover {
    opacity: var(--opacity);
    text-decoration: none;
  }
}
#footer .flex_r .copy {
  font-size: 1.4rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  #footer .flex {
    display: block;
    text-align: center;
    margin-top: 6rem;
  }
  #footer .flex_l .name {
    font-size: 1.6rem;
  }
  #footer .flex_l .address {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
  #footer .flex_r {
    margin-top: 1.8rem;
  }
  #footer .flex_r .nav li {
    font-size: 1.4rem;
  }
  #footer .flex_r .copy {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}

.c-buttonArrow01 a {
  height: 5rem;
  background: #fff;
  color: var(--navy01);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5em 1.6em 0.6em 0.5em;
  border-radius: 100px;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.c-buttonArrow01 a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.c-buttonArrow01 a::after {
  content: "";
  position: absolute;
  right: 1.2em;
  top: 50%;
  -webkit-transform: translateY(-60%) rotate(45deg);
          transform: translateY(-60%) rotate(45deg);
  width: 0.6em;
  height: 0.6em;
  border-right: 2px solid var(--navy01);
  border-bottom: 2px solid var(--navy01);
}
@media (any-hover: hover) {
  .c-buttonArrow01 a {
    -webkit-transition: color var(--duration05) ease;
    transition: color var(--duration05) ease;
  }
  .c-buttonArrow01 a::before {
    -webkit-transition: opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1), -webkit-transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1);
    transition: opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1), -webkit-transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1);
    transition: transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1), opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1);
    transition: transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1), opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1), -webkit-transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1);
  }
  .c-buttonArrow01 a::after {
    -webkit-transition: border-color var(--duration05) ease;
    transition: border-color var(--duration05) ease;
  }
  .c-buttonArrow01 a:hover {
    color: #fff;
  }
  .c-buttonArrow01 a:hover::before {
    -webkit-transform: scale(55);
            transform: scale(55);
    opacity: 1;
    background: var(--green01);
  }
  .c-buttonArrow01 a:hover::after {
    border-color: #fff;
  }
}
.c-buttonArrow01.m-nolink a {
  background: #A8A8A8;
  pointer-events: none;
}
.c-buttonArrow01.m-nolink a::after {
  content: none;
}

.c-buttonArrow01__inner {
  position: relative;
}

.c-buttonArrow02 a {
  border: 1px solid #555;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5em 0 0.6em;
  line-height: 1.3;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  --opacity: 0.6;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (any-hover: hover) {
  .c-buttonArrow02 a {
    -webkit-transition: opacity var(--duration03) ease;
    transition: opacity var(--duration03) ease;
  }
  .c-buttonArrow02 a:hover {
    opacity: var(--opacity);
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .c-buttonArrow02 a {
    font-size: 1.6rem;
  }
}
.c-buttonArrow02 a::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
  width: 0.6em;
  height: 0.6em;
  border-right: 1px solid #555;
  border-bottom: 1px solid #555;
}
@media screen and (max-width: 767px) {
  .c-buttonArrow02 a::after {
    right: 1.2em;
  }
}

.c-buttonArrow03 a {
  height: 5rem;
  color: #fff;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5em 1.6em 0.5em 0.5em;
  border-radius: 100px;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.c-buttonArrow03 a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.c-buttonArrow03 a::after {
  content: "";
  position: absolute;
  right: 1.2em;
  top: 50%;
  -webkit-transform: translateY(-60%) rotate(45deg);
          transform: translateY(-60%) rotate(45deg);
  width: 0.6em;
  height: 0.6em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
@media (any-hover: hover) {
  .c-buttonArrow03 a {
    -webkit-transition: color var(--duration05) ease;
    transition: color var(--duration05) ease;
  }
  .c-buttonArrow03 a::before {
    -webkit-transition: opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1), -webkit-transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1);
    transition: opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1), -webkit-transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1);
    transition: transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1), opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1);
    transition: transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1), opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1), -webkit-transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1);
  }
  .c-buttonArrow03 a::after {
    -webkit-transition: border-color var(--duration05) ease;
    transition: border-color var(--duration05) ease;
  }
  .c-buttonArrow03 a:hover {
    color: var(--navy01);
  }
  .c-buttonArrow03 a:hover::before {
    -webkit-transform: scale(55);
            transform: scale(55);
    opacity: 1;
    background: #fff;
  }
  .c-buttonArrow03 a:hover::after {
    border-color: var(--navy01);
  }
}

.c-buttonArrow03__inner {
  position: relative;
}

.c-buttoninvalid01 a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5em 0;
  line-height: 1.3;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  border: 1px solid var(--buttoninvalid01);
  color: var(--buttoninvalid01);
  font-weight: 500;
  --opacity: 0.6;
}
@media (any-hover: hover) {
  .c-buttoninvalid01 a {
    -webkit-transition: opacity var(--duration03) ease;
    transition: opacity var(--duration03) ease;
  }
  .c-buttoninvalid01 a:hover {
    opacity: var(--opacity);
    text-decoration: none;
  }
}
.c-buttoninvalid01.m-cs a {
  background-color: #C4C4C4;
  pointer-events: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: inherit;
  border: none;
}
.c-buttoninvalid01.m-cs a::after {
  content: "（8月19日配信開始）";
  display: block;
}
.c-buttoninvalid01.m-active a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-buttoninvalid01.m-active a::after {
  content: "（配信は8月31日まで）";
  display: block;
}
@media screen and (max-width: 767px) {
  .c-buttoninvalid01.m-active a::after {
    font-size: 1.3rem;
    white-space: nowrap;
  }
}

.c-buttonBlank01 a {
  height: 5rem;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5em 0;
  border-radius: 100px;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-buttonBlank01 a {
    height: 4.4rem;
    font-size: 1.5rem;
    padding-right: 3rem;
  }
}
.c-buttonBlank01 a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
@media (any-hover: hover) {
  .c-buttonBlank01 a {
    -webkit-transition: color var(--duration05) ease;
    transition: color var(--duration05) ease;
  }
  .c-buttonBlank01 a::before {
    -webkit-transition: opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1), -webkit-transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1);
    transition: opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1), -webkit-transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1);
    transition: transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1), opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1);
    transition: transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1), opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1), -webkit-transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1);
  }
  .c-buttonBlank01 a .ico path {
    -webkit-transition: fill var(--duration05) ease;
    transition: fill var(--duration05) ease;
  }
  .c-buttonBlank01 a:hover {
    color: var(--navy01);
  }
  .c-buttonBlank01 a:hover::before {
    -webkit-transform: scale(55);
            transform: scale(55);
    opacity: 1;
    background: #fff;
  }
  .c-buttonBlank01 a:hover .ico path {
    fill: var(--navy01);
  }
}
.c-buttonBlank01 .ico {
  position: absolute;
  right: 1.7em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1em;
  height: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-buttonBlank01 .ico {
    right: 1.5em;
  }
}

.c-buttonBlank01__inner {
  position: relative;
}

.c-titleSec01 {
  text-align: center;
}
.c-titleSec01 span {
  display: block;
}
.c-titleSec01 .en {
  font-family: "rift", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 5rem;
  color: #fff;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .c-titleSec01 .en {
    font-size: 4rem;
  }
}
.c-titleSec01 .ja {
  font-size: 2.4rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .c-titleSec01 .ja {
    font-size: 2rem;
    margin-top: 2.3rem;
  }
}

.c-titleSec02 {
  text-align: center;
}
.c-titleSec02 span {
  display: block;
}
.c-titleSec02 .en {
  font-family: "rift", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 7rem;
  color: #fff;
  mix-blend-mode: overlay;
}
@media screen and (max-width: 767px) {
  .c-titleSec02 .en {
    font-size: 5rem;
  }
}
.c-titleSec02 .ja {
  font-size: 2.4rem;
  margin-top: 4.3rem;
}
@media screen and (max-width: 767px) {
  .c-titleSec02 .ja {
    font-size: 2rem;
    margin-top: 3rem;
  }
}

.c-textSec01 {
  font-size: 1.8rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-textSec01 {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}

/* ------------------------------
    スクロールアニメーション
------------------------------ */
*[data-scroll=fade-top] {
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

*[data-scroll=fade-bottom] {
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

*[data-scroll=fade-top].scroll-show,
*[data-scroll=fade-bottom].scroll-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

*[data-scroll=fade-left] {
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

*[data-scroll=fade-right] {
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

*[data-scroll=fade-left].scroll-show,
*[data-scroll=fade-right].scroll-show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.u-wrap {
  max-width: 1080px;
  width: 90%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .u-wrap {
    width: 90%;
    padding: 0;
  }
}

.h-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0);
          transform: translateX(-50%) translateZ(0);
}

.v-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0);
          transform: translateY(-50%) translateZ(0);
}

.hv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
          transform: translate(-50%, -50%) translateZ(0);
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.u-preload *, .u-preload *::before, .u-preload *::after {
  -webkit-transition: none !important;
  transition: none !important;
}

.u-noto {
  font-family: "Noto Sans JP", sans-serif;
}

.u-rajdhani {
  font-family: "Rajdhani", sans-serif;
}

.u-riftItalic {
  font-family: "rift", sans-serif;
  font-weight: 600;
  font-style: italic;
}

/* ------------------------------
    responsive
------------------------------ */
@media screen and (max-width: 959px) {
  .u-minPc {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .u-pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-minSp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf {
  zoom: 1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden; /* 隙間対応 */
  font-size: 0.1em; /* 隙間対応 */
  line-height: 0; /* 隙間対応 */
}

.inner {
  background: -webkit-gradient(linear, left top, left bottom, from(#143871), color-stop(40%, #0F459B), to(#4980D6));
  background: linear-gradient(#143871, #0F459B 40%, #4980D6 100%);
}

.mv {
  height: 100vh;
  height: 100dvh;
  min-height: 81rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  background-image: url(../img/bg_mv.jpg);
  background-size: cover;
  background-position: center;
}
.mv .u-wrap {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .mv .u-wrap {
    padding: 0 0 6rem;
  }
}

.mvMovie {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  mix-blend-mode: lighten;
}
.mvMovie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mvMovie::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: rgba(0, 149, 227, 0.45);
  mix-blend-mode: hard-light;
}

.mvBox01__title {
  width: 100%;
  margin: 0 auto;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  text-align: center;
}
.mvBox01__title img {
  max-width: 98rem;
  width: 100%;
}
body.is-loading .mvBox01__title {
  -webkit-transition: -webkit-clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  will-change: clip-path;
  -webkit-transform: rotate(0.0001deg);
          transform: rotate(0.0001deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.mvBox01__lead {
  position: relative;
  margin: 0 calc(50% - 50vw);
}
.mvBox01__lead::before, .mvBox01__lead::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(133deg, rgba(255, 255, 255, 0.9) 0%, rgba(221, 238, 248, 0.9) 50%, rgba(116, 183, 226, 0.9) 100%);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 0;
}
.mvBox01__lead::before {
  mix-blend-mode: screen;
}
body.is-loading .mvBox01__lead::before {
  -webkit-transition: 0.5s opacity 0.6s;
  transition: 0.5s opacity 0.6s;
  opacity: 0.1;
}

.mvBox01__lead::after {
  mix-blend-mode: overlay;
}
body.is-loading .mvBox01__lead::after {
  -webkit-transition: 0.5s opacity 0.6s;
  transition: 0.5s opacity 0.6s;
  opacity: 0.7;
}

.mvBox01__leadInner {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  line-height: 1;
  padding: 1rem 0 1.2rem;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
body.is-loading .mvBox01__leadInner {
  -webkit-transition: -webkit-clip-path 1.7s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  transition: -webkit-clip-path 1.7s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  transition: clip-path 1.7s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  transition: clip-path 1.7s cubic-bezier(0.19, 1, 0.22, 1) 0.6s, -webkit-clip-path 1.7s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  will-change: clip-path;
  -webkit-transform: rotate(0.0001deg);
          transform: rotate(0.0001deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@media screen and (max-width: 767px) {
  .mvBox01__leadInner {
    font-size: 1.6rem;
    margin: 0.2rem calc(50% - 50vw) 0;
  }
}

.mvFlex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .mvFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.mvBox02 {
  margin: 3rem 0 0 auto;
  color: #fff;
  width: 40rem;
  opacity: 0;
}
body.is-loading .mvBox02 {
  -webkit-transition: opacity 0.5s 1.2s;
  transition: opacity 0.5s 1.2s;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .mvBox02 {
    width: 29rem;
    margin: 3.8rem auto 0;
  }
}

.mvBox02__text01 {
  font-family: "rift", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .mvBox02__text01 {
    font-size: 4.2rem;
    text-align: center;
  }
}

.mvBox02__text01Small {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .mvBox02__text01Small {
    font-size: 2.8rem;
  }
}

.mvBox02__text02 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .mvBox02__text02 {
    font-size: 1.4rem;
    margin-top: 0.3rem;
  }
}

.mvBox02__text02Ls {
  letter-spacing: 0.01em;
}

.mvBox02 .c-buttonArrow01 {
  width: 27.5rem;
  margin: 1.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .mvBox02 .c-buttonArrow01 {
    width: 24.5rem;
    margin: 2rem auto 0;
  }
}
.mvBox02 .c-buttonArrow01 a {
  font-size: 2.1rem;
  padding: 0.5em 1.1em 0.5em 0.5em;
}
@media screen and (max-width: 767px) {
  .mvBox02 .c-buttonArrow01 a {
    font-size: 1.8rem;
    height: 4.4rem;
  }
}
.mvBox02 .c-buttonArrow01 a::after {
  right: 1.4em;
  top: 45%;
  width: 0.7em;
  height: 0.7em;
}

.mvBox03 {
  margin-top: 3.5rem;
  padding-left: 5rem;
  opacity: 0;
}
body.is-loading .mvBox03 {
  -webkit-transition: opacity 0.5s 1.2s;
  transition: opacity 0.5s 1.2s;
  opacity: 1;
}

@media screen and (max-width: 959px) {
  .mvBox03 {
    margin-top: 3rem;
    padding-left: 0;
  }
}

.mvBox03__text01 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 959px) {
  .mvBox03__text01 {
    font-size: 1.2rem;
    line-height: 1.9166666667;
    text-align: center;
  }
}

.mvLead {
  position: absolute;
  bottom: -2.5rem;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .mvLead {
    bottom: 8rem;
  }
}

.mvLead__text {
  font-family: "Teko", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 22.5rem;
  white-space: nowrap;
  position: relative;
  height: 28.6rem;
  width: 146.5rem;
}
@media screen and (max-width: 767px) {
  .mvLead__text {
    height: 13.1rem;
    width: 100vw;
    font-size: 8.4rem;
    white-space: unset;
    line-height: 0.7619047619;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .mvLead__text span {
    width: 100%;
    display: block;
  }
}
.mvLead__text span:nth-of-type(odd) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  mix-blend-mode: screen;
}
body.is-loading .mvLead__text span:nth-of-type(odd) {
  -webkit-transition: opacity 0.2s 2.6s;
  transition: opacity 0.2s 2.6s;
  opacity: 0.05;
}

.mvLead__text span:nth-of-type(even) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  mix-blend-mode: overlay;
}
body.is-loading .mvLead__text span:nth-of-type(even) {
  -webkit-transition: opacity 0.2s 2.6s;
  transition: opacity 0.2s 2.6s;
  opacity: 0.3;
}

.bg_gradation {
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(73, 128, 214)), color-stop(37%, rgb(15, 69, 155)), to(rgb(20, 56, 113)));
  background: linear-gradient(0deg, rgb(73, 128, 214) 0%, rgb(15, 69, 155) 37%, rgb(20, 56, 113) 100%);
}

.introduction {
  background: url(../img/bg_introduction.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .introduction {
    background: url(../img/bg_introduction_sp.png) no-repeat center/cover;
    padding-bottom: 4rem;
  }
}
.introduction::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #01305F;
  opacity: 0.5;
  mix-blend-mode: hard-light;
}
@media screen and (max-width: 767px) {
  .introduction .u-wrap {
    width: 84%;
  }
}

.introductionBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 959px) {
  .introductionBox {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.introductionBox .logo {
  width: 50%;
  background: url(../img/img_introduction.png) no-repeat center/contain;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 959px) {
  .introductionBox .logo {
    width: 100%;
    height: 58rem;
    background: url(../img/img_introduction.png) no-repeat center/23rem auto;
  }
}
.introductionBox .txt {
  width: 50%;
  padding: 15.7rem 0 15.2rem 4rem;
}
@media screen and (max-width: 959px) {
  .introductionBox .txt {
    width: 100%;
    padding: 5.8rem 0 2.5rem;
  }
}
.introductionBox .txt p {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .introductionBox .txt p {
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}
.introductionBox .txt p + p {
  margin-top: 1rem;
}
.introductionBox .txt p:last-child {
  text-align: right;
}

.info {
  padding: 8rem 0 20rem;
}
@media screen and (max-width: 767px) {
  .info {
    padding: 4rem 0 10rem;
  }
}
.info .u-wrap {
  padding-top: 8.5rem;
}
@media screen and (max-width: 767px) {
  .info .u-wrap {
    padding-top: 3.8rem;
  }
}

.infoTable {
  max-width: 90rem;
  width: 100%;
  margin: 6rem auto 0;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .infoTable {
    margin: 3.7rem 0 0;
  }
}
.infoTable th,
.infoTable td {
  border-top: solid 1px #fff;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .infoTable th,
  .infoTable td {
    font-size: 1.4rem;
    line-height: 1.3333333333;
  }
}
.infoTable th:last-of-type,
.infoTable td:last-of-type {
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 767px) {
  .infoTable tr {
    height: 6rem;
  }
}
.infoTable th {
  position: relative;
  width: 16.1rem;
  padding: 1.52rem 1.2rem;
}
@media screen and (max-width: 767px) {
  .infoTable th {
    width: 7.5rem;
    padding: 1rem 0;
  }
}
.infoTable th::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 80%;
  background-color: #fff;
}
.infoTable td {
  width: calc(100% - 16.1rem);
  padding: 1.52rem 3rem;
}
@media screen and (max-width: 767px) {
  .infoTable td {
    width: calc(100% - 7.5rem);
    padding: 1rem 0.5rem 1rem 1rem;
  }
}
@media screen and (min-width: 768px) {
  .infoTable .large {
    font-size: 1.8rem;
  }
}
.infoTable .small {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  display: block;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .infoTable .small {
    font-size: 1.2rem;
  }
}
.infoTable a {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
@media (any-hover: hover) {
  .infoTable a {
    -webkit-transition: opacity var(--duration03) ease;
    transition: opacity var(--duration03) ease;
  }
  .infoTable a:hover {
    opacity: var(--opacity);
    text-decoration: none;
  }
}

.exhibition {
  background: url(../img/bg_exhibition.png) no-repeat top center/100%;
  padding: 10.6rem 0 20rem;
}
@media screen and (max-width: 767px) {
  .exhibition {
    background: url(../img/bg_exhibition_sp.png) no-repeat top center/100%;
    padding: 7.3rem 0 10rem;
  }
}
.exhibition .u-wrap &gt; .c-textSec01 {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .exhibition .u-wrap &gt; .c-textSec01 {
    margin-top: 3.5rem;
  }
}

.exhibitionDate {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 4rem;
  font-family: "rift", sans-serif;
  font-weight: 600;
  font-style: italic;
  mix-blend-mode: overlay;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .exhibitionDate {
    font-size: 3.2rem;
  }
}
.exhibitionDate .week {
  font-size: 75%;
  padding: 0 0.2em;
}

.exhibitionMap {
  position: relative;
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .exhibitionMap {
    margin-top: 3rem;
    padding-top: 4.5rem;
  }
}

.exhibitionMap__list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.exhibitionMap__item {
  position: absolute;
}
@media (any-hover: hover) {
  .exhibitionMap__item a {
    -webkit-transition: opacity var(--duration03) ease;
    transition: opacity var(--duration03) ease;
  }
  .exhibitionMap__item a:hover {
    opacity: var(--opacity);
    text-decoration: none;
  }
}
.exhibitionMap__item:nth-of-type(1) {
  width: 19rem;
  top: 6.1rem;
  left: 12rem;
}
@media screen and (max-width: 959px) {
  .exhibitionMap__item:nth-of-type(1) {
    top: 4rem;
    left: 0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .exhibitionMap__item:nth-of-type(1) {
    width: 13.5rem;
    top: auto;
    bottom: 3rem;
    left: 0;
  }
}
.exhibitionMap__item:nth-of-type(1) a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.exhibitionMap__item:nth-of-type(2) {
  width: 23rem;
  top: -5.9rem;
  left: 61rem;
}
@media screen and (max-width: 959px) {
  .exhibitionMap__item:nth-of-type(2) {
    left: 45.6rem;
  }
}
@media screen and (max-width: 767px) {
  .exhibitionMap__item:nth-of-type(2) {
    width: 12.8rem;
    top: 1rem;
    left: auto;
    right: 0.3rem;
  }
}
.exhibitionMap__item:nth-of-type(2) a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.exhibitionMap__item:nth-of-type(3) {
  width: 22rem;
  top: 26.3rem;
  left: 75rem;
}
@media screen and (max-width: 959px) {
  .exhibitionMap__item:nth-of-type(3) {
    top: 20.6rem;
    left: 58.2rem;
  }
}
@media screen and (max-width: 767px) {
  .exhibitionMap__item:nth-of-type(3) {
    width: 14.2rem;
    left: auto;
    right: 0.2rem;
    top: auto;
    bottom: 0.5rem;
  }
}
.exhibitionMap__item:nth-of-type(4) {
  width: 21rem;
  top: -3.8rem;
  left: 21.4rem;
}
@media screen and (max-width: 959px) {
  .exhibitionMap__item:nth-of-type(4) {
    left: 13rem;
  }
}
@media screen and (max-width: 767px) {
  .exhibitionMap__item:nth-of-type(4) {
    width: 12.8rem;
    top: 0.8rem;
    left: 0;
  }
}
.exhibitionMap__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.exhibitionMap__item a .num {
  font-family: "rift", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 5rem;
  padding-right: 1.2rem;
  line-height: 1;
  min-width: 4rem;
}
@media screen and (max-width: 767px) {
  .exhibitionMap__item a .num {
    font-size: 2.7rem;
    min-width: 1.8rem;
    padding-right: 0;
  }
}
.exhibitionMap__item a .txt {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .exhibitionMap__item a .txt {
    font-size: 1.1rem;
    line-height: 1.3333333333;
  }
}

.exhibitionMap__txt {
  position: absolute;
  bottom: -0.2rem;
  left: 26rem;
  font-size: 1.5rem;
  line-height: 1.2666666667;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .exhibitionMap__txt {
    font-size: 1.2rem;
    bottom: 8.5rem;
    left: 0;
  }
}

.exhibitionMap__img {
  display: block;
  width: 100%;
  max-width: 84.1rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .exhibitionMap__img {
    margin-right: auto;
  }
}

.exhibitionBox01 {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .exhibitionBox01 {
    margin-top: 0;
  }
}

.exhibitionBox01__item {
  display: grid;
  grid-template-columns: 35rem auto;
  grid-template-rows: auto 1fr;
  grid-gap: 1rem 3rem;
  padding-top: 6.6rem;
}
@media screen and (max-width: 767px) {
  .exhibitionBox01__item {
    display: block;
    padding-top: 3.8rem;
  }
}

.exhibitionBox01__image {
  grid-column: 1;
  grid-row: 1/3;
}
.exhibitionBox01__image img {
  width: 100%;
}

.exhibitionBox01__title {
  grid-column: 2;
  grid-row: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.6rem;
  line-height: 1.46;
  margin-top: -1rem;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .exhibitionBox01__title {
    margin-top: 0;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .exhibitionBox01__title {
    font-size: 1.8rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 1.8rem;
  }
  .exhibitionBox01__item:nth-child(1) .exhibitionBox01__title, .exhibitionBox01__item:nth-child(2) .exhibitionBox01__title {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1;
    margin-top: 0.8rem;
  }
  .exhibitionBox01__item:nth-child(1) .exhibitionBox01__title .num, .exhibitionBox01__item:nth-child(2) .exhibitionBox01__title .num {
    translate: none;
  }
}
.exhibitionBox01__title .num {
  font-family: "rift", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 9rem;
  line-height: 1;
  padding-right: 1.9rem;
  min-width: 7rem;
}
@media screen and (max-width: 959px) {
  .exhibitionBox01__title .num {
    font-size: 7rem;
    min-width: 5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .exhibitionBox01__title .num {
    font-size: 6rem;
    min-width: 4.7rem;
    translate: 0 -0.8rem;
    padding-right: 0;
  }
}

.exhibitionBox01__text {
  grid-column: 2;
  grid-row: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .exhibitionBox01__text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-top: 0.7rem;
  }
}

.exhibitionBox02 {
  margin-top: 14.3rem;
}
@media screen and (max-width: 767px) {
  .exhibitionBox02 {
    margin-top: 7rem;
  }
}

.exhibitionBox02__title {
  font-size: 3.6rem;
  line-height: 1;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .exhibitionBox02__title {
    font-size: 2.4rem;
  }
}

.exhibitionBox02__text {
  margin-top: 3.3rem;
}
@media screen and (max-width: 767px) {
  .exhibitionBox02__text {
    margin-top: 1.5rem;
    line-height: 1.75;
  }
}

.exhibitionBox02__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  margin-top: 4.7rem;
}
@media screen and (max-width: 767px) {
  .exhibitionBox02__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    margin-top: 3.8rem;
  }
}
.exhibitionBox02__buttons .c-buttonArrow01 {
  width: 28.3rem;
}
.exhibitionBox02__buttons .c-buttonArrow01 a {
  padding: 0.5em;
}
.exhibitionBox02__buttons .c-buttonArrow01 a::after {
  right: 1.7em;
}

.seminar {
  background: url(../img/bg_seminar.png) no-repeat top center/100%;
  padding: 10.4rem 0 7rem;
}
@media screen and (max-width: 767px) {
  .seminar {
    background: url(../img/bg_seminar_sp.png) no-repeat top center/100%;
    padding: 7.5rem 0 4rem;
  }
}
.seminar .c-textSec01 {
  margin-top: 3.5rem;
}

.seminarBox {
  background-color: #0064BE;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.6rem 3rem 4rem 5.1rem;
}
@media screen and (max-width: 767px) {
  .seminarBox {
    display: block;
    padding: 3rem 2.2rem;
  }
}
.seminarBox + .seminarBox {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .seminarBox + .seminarBox {
    margin-top: 2rem;
  }
}
.seminarBox .c-buttonArrow01 {
  width: 28.3rem;
  margin-top: 2.8rem;
}
.seminarBox .c-buttonArrow01 a {
  padding: 0.5em;
}
.seminarBox .c-buttonArrow01 a::after {
  right: 1.7em;
}

.seminarBox01 {
  margin-top: 11.5rem;
}
@media screen and (max-width: 767px) {
  .seminarBox01 {
    margin-top: 5.5rem;
  }
}

.seminarBox__title {
  font-size: 2.8rem;
  line-height: 1.75;
  font-weight: 500;
}
.seminarBox__title .seminarBox__small {
  display: inline-block;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .seminarBox__title {
    font-size: 2.2rem;
    line-height: 1.3636363636;
  }
  .seminarBox__title .seminarBox__small {
    font-size: 1.8rem;
  }
}

.seminarBox__text {
  margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .seminarBox__text {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: 1rem;
  }
}

.seminarBox__note {
  margin-top: 0.9rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .seminarBox__note {
    margin-top: 0.5rem;
    padding-left: 0;
  }
}
.seminarBox__note li {
  font-size: 1.5rem;
  line-height: 1.73;
  position: relative;
}
.seminarBox__note li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: -1.5rem;
}
@media screen and (max-width: 767px) {
  .seminarBox__note li::before {
    position: static;
    top: auto;
    left: auto;
    display: inline-block;
  }
}

.seminarBox__image {
  padding-top: 1rem;
}
@media screen and (max-width: 959px) {
  .seminarBox__image {
    padding: 1rem 0 0 3rem;
  }
}
@media screen and (max-width: 767px) {
  .seminarBox__image {
    padding: 4rem 0 0;
  }
}

.seminarBox01__image {
  width: 35.1rem;
}
@media screen and (max-width: 767px) {
  .seminarBox01__image {
    width: 104%;
    margin: 0 -2%;
  }
}

.seminarBox02__image {
  width: 14.8rem;
  margin-right: 4.6rem;
}
@media screen and (max-width: 959px) {
  .seminarBox02__image {
    margin-right: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .seminarBox02__image {
    margin: 0 auto;
    padding-top: 2rem;
  }
}

.schedule {
  padding: 7rem 0 6.4rem;
}
@media screen and (max-width: 767px) {
  .schedule {
    padding: 5.5rem 0 4rem;
  }
  .schedule .c-titleSec01 .en {
    font-size: 5rem;
  }
}

.scheduleTable {
  margin-top: 6.3rem;
  display: grid;
  grid-template-areas: "headb head01 head02" "line01h line01left line01right" "line02h line02left line02right" "line03h line03left line03right" "line04h line04left line04right";
  grid-template-columns: 8rem 1fr 1fr;
  grid-template-rows: -webkit-max-content -webkit-max-content -webkit-max-content -webkit-max-content;
  grid-template-rows: max-content max-content max-content max-content;
  gap: 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .scheduleTable {
    display: block;
    margin-top: 2.8rem;
  }
}
.scheduleTable .scheduleTable__head {
  background-color: #0064BE;
  text-align: center;
  font-family: "rift", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 4rem;
  min-width: 4rem;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__head {
    font-size: 3rem;
    padding: 0.5rem 0;
  }
}
.scheduleTable .scheduleTable__head .small {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__head .small {
    font-size: 2rem;
  }
}
.scheduleTable .scheduleTable__head.m-headBlank {
  background-color: transparent;
  grid-area: headb;
}
.scheduleTable .scheduleTable__head.m-head01 {
  grid-area: head01;
}
.scheduleTable .scheduleTable__head.m-head02 {
  grid-area: head02;
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__head.m-head02 {
    margin-top: 6rem;
  }
}
.scheduleTable .scheduleTable__times {
  background-color: #0064BE;
  text-align: center;
  font-family: "rift", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 4rem;
  min-width: 4rem;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__times {
    margin-top: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 2rem;
    gap: 2.6rem;
    padding: 0.5rem 0;
  }
}
.scheduleTable .scheduleTable__times .time {
  display: block;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  margin-top: 1.3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__times .time {
    margin-top: 0;
    font-size: 2rem;
  }
}
.scheduleTable .scheduleTable__times .time:last-child {
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__times .time:last-child {
    margin-bottom: 0;
  }
}
.scheduleTable .scheduleTable__times .time + span {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__times .time + span {
    margin-top: 0;
  }
}
.scheduleTable .scheduleTable__times .time + span::before {
  content: "▼";
  position: absolute;
  font-size: 1.9rem;
  top: -3rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__times .time + span::before {
    content: "▶";
    top: 50%;
    translate: 0 -50%;
    left: -1.3rem;
    font-size: 1.6rem;
  }
}
.scheduleTable .scheduleTable__times.m-line01Head {
  grid-area: line01h;
}
.scheduleTable .scheduleTable__times.m-line02Head {
  grid-area: line02h;
}
.scheduleTable .scheduleTable__times.m-line03Head {
  grid-area: line03h;
}
.scheduleTable .scheduleTable__times.m-line04Head {
  grid-area: line04h;
}
.scheduleTable .scheduleTable__cnt {
  background-color: #fff;
  color: #555;
  position: relative;
  padding: 1.2rem 2.5rem 9.2rem 7.5rem;
}
@media screen and (max-width: 959px) {
  .scheduleTable .scheduleTable__cnt {
    padding-bottom: 14rem;
  }
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__cnt {
    padding: 1.1rem 1.6rem 2rem;
  }
}
.scheduleTable .scheduleTable__cnt.m-line01Left {
  grid-area: line01left;
  --buttoninvalid01: #0095E3;
}
.scheduleTable .scheduleTable__cnt.m-line01Right {
  grid-area: line01right;
  --buttoninvalid01: #0095E3;
}
.scheduleTable .scheduleTable__cnt.m-line02Left {
  grid-area: line02left;
  --buttoninvalid01: #0095E3;
}
.scheduleTable .scheduleTable__cnt.m-line02Right {
  grid-area: line02right;
  --buttoninvalid01: #00ADC1;
}
.scheduleTable .scheduleTable__cnt.m-line03Left {
  grid-area: line03left;
  --buttoninvalid01: #00ADC1;
}
.scheduleTable .scheduleTable__cnt.m-line03Right {
  grid-area: line03right;
  --buttoninvalid01: #00ADC1;
}
.scheduleTable .scheduleTable__cnt.m-line04Left {
  grid-area: line04left;
  --buttoninvalid01: #0095E3;
}
.scheduleTable .scheduleTable__cnt.m-line04Right {
  grid-area: line04right;
  --buttoninvalid01: #0095E3;
}
.scheduleTable .scheduleTable__text {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__text {
    padding-left: 4.6rem;
  }
}
.scheduleTable .scheduleTable__text .tag {
  font-family: "rift", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 4.4rem;
  position: absolute;
  top: 0;
  left: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 4.6rem;
  height: 7.4rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__text .tag {
    font-size: 3.4rem;
    width: 3.6rem;
    height: 6.4rem;
  }
}
.scheduleTable .scheduleTable__text .dateTime {
  font-size: 1.8rem;
  padding-left: 1.6rem;
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__text .dateTime {
    display: block;
    padding-left: 0;
    line-height: 1;
    margin-top: 0.3rem;
  }
}
.scheduleTable .scheduleTable__text .dateTime &gt; span {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__text .category {
    display: block;
  }
}
.scheduleTable .scheduleTable__text.u-employee .tag {
  background-color: #0095E3;
}
.scheduleTable .scheduleTable__text.u-employee .category {
  color: #0095E3;
}
.scheduleTable .scheduleTable__text.u-special .tag {
  background-color: var(--green01);
}
.scheduleTable .scheduleTable__text.u-special .category {
  color: var(--green01);
}
.scheduleTable .scheduleTable__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  margin-top: 0.4rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .scheduleTable .scheduleTable__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__title {
    margin-top: 1.5rem;
  }
}
.scheduleTable .scheduleTable__note dt,
.scheduleTable .scheduleTable__note dd {
  font-size: 1.5rem;
  line-height: 1.6;
}
.scheduleTable .scheduleTable__note dt {
  margin-top: 1rem;
}
.scheduleTable .scheduleTable__note dd + dt {
  margin-top: 0.8rem;
}
.scheduleTable .scheduleTable__buttons {
  margin-top: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
  position: absolute;
  bottom: 2.5rem;
  width: calc(100% - 10rem);
}
@media screen and (max-width: 767px) {
  .scheduleTable .scheduleTable__buttons {
    position: static;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
    gap: 3%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .scheduleTable .scheduleTable__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.scheduleTable .scheduleTable__buttons &gt; div {
  width: 48%;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .scheduleTable .scheduleTable__buttons &gt; div {
    width: 100%;
  }
}

.speaker {
  padding: 8rem 0 16.5rem;
}
@media screen and (max-width: 767px) {
  .speaker {
    padding: 4.5rem 0;
  }
}
.speaker .c-titleSec01 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .speaker .c-titleSec01 {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .speaker .c-titleSec01 .en {
    font-size: 5rem;
  }
}

.speakerItem {
  position: relative;
  background: #fff;
  padding: 2.9rem 4.1rem 3.4rem 9rem;
  color: #555555;
}
@media screen and (max-width: 767px) {
  .speakerItem {
    padding: 1.4rem 1.9rem;
  }
}

.speakerItem + .speakerItem {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .speakerItem + .speakerItem {
    margin-top: 2rem;
  }
}

#speakerA, #speakerB, #speakerC {
  --speakerColor: #00ADC1;
}

#speakerD, #speakerE, #speakerF, #speakerG, #speakerH {
  --speakerColor: #0095E3;
}

.speakerItem__num {
  position: absolute;
  top: 0;
  left: 1.9rem;
  width: 5rem;
  height: 8rem;
  background: var(--speakerColor);
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "rift", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0.06em;
  padding-bottom: 0.4rem;
}

.speakerItem__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .speakerItem__flex {
    padding-left: 6.9rem;
    display: block;
  }
}

.speakerItem__label {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--speakerColor);
  color: var(--speakerColor);
}
@media screen and (max-width: 767px) {
  .speakerItem__label {
    font-size: 1.6rem;
    display: inline-block;
  }
}
.speakerItem__label.m-noborder {
  border: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .speakerItem__label.m-noborder {
    padding-top: 0.9rem;
  }
}

.speakerItem__date {
  color: var(--speakerColor);
  font-family: "rift", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .speakerItem__date {
    font-size: 2.6rem;
    margin-top: 1rem;
  }
}

.speakerItem__week {
  font-size: 80%;
  display: inline-block;
  padding: 0 0.6em 0 0.3em;
}
@media screen and (max-width: 767px) {
  .speakerItem__week {
    font-size: 76%;
  }
}

.speakerItem__title01 {
  margin-top: 2rem;
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .speakerItem__title01 {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-top: 1.5rem;
  }
  #speakerB .speakerItem__title01 {
    font-size: 2.2rem;
  }
}

.speakerItem__title02 {
  margin-top: 2.2rem;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .speakerItem__title02 {
    font-size: 2rem;
    line-height: 1.4;
  }
}

.speakerItem__lead {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .speakerItem__lead {
    font-size: 1.6rem;
  }
}

.speakerItem__text {
  font-size: 1.7rem;
  line-height: 1.7647058824;
  margin: 1.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .speakerItem__text {
    font-size: 1.6rem;
    line-height: 1.625;
    margin: 0.7rem 0 0;
  }
}

.speakerItemBox01 {
  border: 1px solid #707070;
  margin: 2.7rem 0 1.8rem;
  padding: 2.4rem 3rem 3rem;
  display: grid;
  grid-template-areas: "area1 area1 area1" "area2 area3 area4" "area5 area5 area5" "area6 area8 area8" "area7 area8 area8";
  grid-template-columns: 36% 36% 28%;
  grid-template-rows: -webkit-max-content -webkit-max-content 4.5rem -webkit-max-content -webkit-max-content;
  grid-template-rows: max-content max-content 4.5rem max-content max-content;
}
@media screen and (max-width: 959px) {
  .speakerItemBox01 {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .speakerItemBox01 {
    padding: 2.2rem 1.9rem;
    margin: 2.9rem 0 1.5rem;
  }
}

.speakerItemBox01__title {
  color: var(--speakerColor);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2.3rem;
}
@media screen and (max-width: 767px) {
  .speakerItemBox01__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.speakerItemBox01__title.m-title01 {
  grid-area: area1;
}
.speakerItemBox01__title.m-title02 {
  grid-area: area6;
}

.speakerItemProfile {
  display: grid;
  grid-template-areas: "area1 area2" "area1 area3";
  grid-template-columns: 9.5rem 1fr;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  gap: 1rem 2rem;
}
@media screen and (max-width: 959px) {
  .speakerItemProfile {
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .speakerItemProfile {
    gap: 1rem 1.5rem;
  }
}

.speakerItemProfile__image {
  grid-area: area1;
}

.speakerItemProfile__name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  grid-area: area2;
  padding-top: 0.5rem;
}

.speakerItemProfile__text {
  font-size: 1.2rem;
  line-height: 1.5;
  grid-area: area3;
}

.speakerItemBox01Item__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .speakerItemBox01Item__title {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 959px) {
  .speakerItemBox01Item {
    margin-bottom: 2.8rem;
  }
}
.speakerItemBox01Item.m-item01 {
  grid-area: area2;
}
.speakerItemBox01Item.m-item02 {
  grid-area: area3;
}
.speakerItemBox01Item.m-item03 {
  grid-area: area4;
}
.speakerItemBox01Item.m-item04 {
  grid-area: area7;
}
.speakerItemBox01Item.m-item01, .speakerItemBox01Item.m-item02 {
  position: relative;
}
.speakerItemBox01Item.m-item01::before, .speakerItemBox01Item.m-item02::before {
  content: "";
  position: absolute;
  top: -0.8rem;
  left: 9.2rem;
  width: 20.2rem;
  height: 1.8rem;
  border-bottom: 1px solid var(--green01);
  border-right: 1px solid var(--green01);
  -webkit-transform: skew(40deg);
          transform: skew(40deg);
}
@media screen and (max-width: 959px) {
  .speakerItemBox01Item.m-item01::before, .speakerItemBox01Item.m-item02::before {
    top: 2.5rem;
    left: 0;
    width: 1.4rem;
    height: 12rem;
    border-bottom: 1px solid var(--green01);
    border-left: 1px solid var(--green01);
    border-right: none;
    -webkit-transform: skewY(-40deg);
            transform: skewY(-40deg);
  }
}
@media screen and (max-width: 959px) {
  .speakerItemBox01Item.m-item01 .speakerItemProfile, .speakerItemBox01Item.m-item02 .speakerItemProfile, .speakerItemBox01Item.m-item03 .speakerItemProfile {
    margin-left: 4rem;
  }
  .speakerItemBox01Item.m-item04 {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .speakerItemBox01Item.m-item01 .speakerItemProfile, .speakerItemBox01Item.m-item02 .speakerItemProfile, .speakerItemBox01Item.m-item03 .speakerItemProfile {
    margin-left: 2rem;
  }
}

.speakerItemBox01__text {
  grid-area: area8;
  font-size: 1.7rem;
  line-height: 1.7647058824;
  padding: 0.7rem 0 0;
}
@media screen and (max-width: 767px) {
  .speakerItemBox01__text {
    font-size: 1.5rem;
    line-height: 1.6;
    padding: 0;
  }
}
.speakerItemBox01__text span {
  font-size: 80%;
  display: block;
}

.speakerItemBox02 {
  border: 1px solid #707070;
  margin-top: 2.7rem;
  padding: 2.5rem 3rem 3rem;
}
@media screen and (max-width: 767px) {
  .speakerItemBox02 {
    padding: 2rem 2rem 2.7rem;
    margin-top: 2rem;
  }
}

.speakerItemBox02 + .speakerItemBox02 {
  margin: 2rem 0 1.8rem;
}

.speakerItemBox02__time {
  color: var(--speakerColor);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .speakerItemBox02__time {
    font-size: 2rem;
  }
}

.speakerItemBox02__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .speakerItemBox02__title {
    font-size: 2rem;
    margin-top: 1.5rem;
    letter-spacing: -0.01em;
  }
}

.speakerItemBox02__lead {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .speakerItemBox02__lead {
    font-size: 1.6rem;
    margin-top: 0.3rem;
  }
}

.speakerItemBox02__grid {
  display: grid;
  grid-template-columns: 1fr 29rem;
  margin-top: 0.7rem;
  gap: 3rem;
}
@media screen and (max-width: 959px) {
  .speakerItemBox02__grid {
    grid-template-columns: 1fr;
  }
}

.speakerItemBox02__text {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .speakerItemBox02__text {
    font-size: 1.5rem;
    line-height: 1.6;
    line-break: strict;
  }
}

.speakerItemBox03 {
  display: grid;
  grid-template-columns: 1fr 32rem;
  margin-top: 1rem;
  gap: 3rem;
}
@media screen and (max-width: 959px) {
  .speakerItemBox03 {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .speakerItemBox03 {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.speakerItemBox03__text {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .speakerItemBox03__text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.speakerItemBox03__note {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.registration {
  margin-top: 13px;
  padding: 2rem 0 20rem;
}
@media screen and (max-width: 767px) {
  .registration {
    margin-top: 4rem;
    padding: 2rem 0 8.3rem;
  }
}
.registration .c-titleSec01 {
  margin-bottom: 6.2rem;
}
.registration .c-titleSec01 .en {
  font-size: 7rem;
}
@media screen and (max-width: 767px) {
  .registration .c-titleSec01 .en {
    font-size: 5rem;
  }
}
.registration .c-titleSec01 .ja {
  font-size: 2.6rem;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .registration .c-titleSec01 .ja {
    font-size: 2rem;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .registration .c-titleSec01 {
    margin-bottom: 4rem;
  }
}
.registration .u-wrap {
  max-width: 90rem;
}

.registrationBox + .registrationBox {
  margin-top: 5.8rem;
}
@media screen and (max-width: 767px) {
  .registrationBox + .registrationBox {
    margin-top: 5rem;
  }
}

.registrationBox__title {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  padding: 1rem;
  width: 100%;
  background: #fff;
  color: var(--navy01);
}
@media screen and (max-width: 767px) {
  .registrationBox__title {
    font-size: 2rem;
    padding: 0.7rem;
  }
}

.registrationBoxList {
  margin-top: 2rem;
}

.registrationBoxList__grid {
  border: 1px solid #fff;
  display: grid;
  grid-template-columns: 16rem 1fr;
  padding: 1.5rem 0;
  min-height: 12rem;
}
@media screen and (max-width: 767px) {
  .registrationBoxList__grid {
    display: block;
    padding: 1.5rem 2rem 3rem;
  }
}
.registrationBoxList__grid:nth-child(n+2) {
  margin-top: 1.9rem;
}
@media screen and (max-width: 767px) {
  .registrationBoxList__grid:nth-child(n+2) {
    margin-top: 2rem;
  }
}

.registrationBoxList__title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .registrationBoxList__title {
    font-size: 2rem;
    padding: 0 0 1.3rem;
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}

.registrationBoxList__cnt {
  padding: 0 3rem 0 2.3rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .registrationBoxList__cnt {
    display: block;
    padding: 2rem 0 0;
  }
}

.registrationBoxList__text {
  font-size: 1.7rem;
  line-height: 1.7647058824;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .registrationBoxList__text {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
.registrationBoxList__text a {
  color: #FFFF31;
  text-decoration: underline;
  font-weight: 700;
}
@media (any-hover: hover) {
  .registrationBoxList__text a {
    -webkit-transition: opacity var(--duration03) ease;
    transition: opacity var(--duration03) ease;
  }
  .registrationBoxList__text a:hover {
    opacity: var(--opacity);
    text-decoration: none;
  }
}

.registrationBoxList__button {
  width: 100%;
  margin: 3rem 0 1rem;
}
@media screen and (max-width: 767px) {
  .registrationBoxList__button {
    margin: 2.8rem auto 1rem;
  }
}
.registrationBoxList__button a {
  position: relative;
  height: 5rem;
  background: #FFFF31;
  color: #1F7AD5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5em 1.6em 0.5em 0.5em;
  border-radius: 100px;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  position: relative;
  z-index: 0;
  overflow: hidden;
  border: 1px solid #FFFF31;
  padding-right: 1.7rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .registrationBoxList__button a {
    padding-right: 3rem;
  }
}
.registrationBoxList__button a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}
.registrationBoxList__button a::after {
  content: "";
  position: absolute;
  right: 1.5em;
  top: 50%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  width: 0.8em;
  height: 0.8em;
  background: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"&gt;&lt;path fill="%231F7AD5" d="M6.3,2.8v-1.4H0v12.6h12.6v-6.3h-1.4v4.9H1.4V2.8h4.9ZM14,4.85V0h-4.9v1.4h2.51l-5.11,5.1.99.99,5.11-5.1v2.46h1.4Z" /&gt;&lt;/svg&gt;') no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .registrationBoxList__button a::after {
    right: 2em;
    width: 0.7em;
    height: 0.7em;
  }
}
@media (any-hover: hover) {
  .registrationBoxList__button a {
    -webkit-transition: color var(--duration05) ease;
    transition: color var(--duration05) ease;
  }
  .registrationBoxList__button a::before {
    -webkit-transition: opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1), -webkit-transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1);
    transition: opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1), -webkit-transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1);
    transition: transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1), opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1);
    transition: transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1), opacity 0.7s cubic-bezier(0.3, 0.36, 0.12, 1), -webkit-transform var(--duration05) cubic-bezier(0.63, 0.05, 0.17, 1);
  }
  .registrationBoxList__button a::after {
    -webkit-transition: border-color var(--duration05) ease;
    transition: border-color var(--duration05) ease;
  }
  .registrationBoxList__button a:hover {
    color: #FFFF31;
  }
  .registrationBoxList__button a:hover::before {
    -webkit-transform: scale(100);
            transform: scale(100);
    opacity: 1;
    background: #1F7AD5;
  }
  .registrationBoxList__button a:hover::after {
    background: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"&gt;&lt;path fill="%23FFFF31" d="M6.3,2.8v-1.4H0v12.6h12.6v-6.3h-1.4v4.9H1.4V2.8h4.9ZM14,4.85V0h-4.9v1.4h2.51l-5.11,5.1.99.99,5.11-5.1v2.46h1.4Z" /&gt;&lt;/svg&gt;') no-repeat center center/contain;
  }
}
.registrationBoxList__button.m-nolink a {
  background: #A8A8A8;
  border: none;
  pointer-events: none;
}
.registrationBoxList__button.m-nolink a::after {
  content: none;
}

.registrationBoxList__buttonInner {
  position: relative;
}

.registrationBoxList__note li {
  position: relative;
  font-size: 1.6rem;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .registrationBoxList__note li {
    padding-left: 0;
  }
}
.registrationBoxList__note li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .registrationBoxList__note li::before {
    position: static;
    top: auto;
    left: auto;
    display: inline-block;
  }
}</pre></body></html>