@charset "UTF-8";
/* ===============================================
  CSS変数セット
=============================================== */
:root {
  --font-family-default: "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", meiryo, sans-serif;
  --font-family-en: "Roboto", sans-serif;
  --color-primary: #333333;
  --color-secondary01: #5dd3ff;
  --color-secondary02: #dca8ff;
  --color-bg01: #010212;
  --color-bg02: #f6f8fB;
}

/* 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%;
  vertical-align: baseline;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

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

caption, th {
  text-align: left;
}

object, embed {
  vertical-align: top;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style-type: none;
}

* {
  box-sizing: border-box;
}

html {
  overflow: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}

body {
  width: 100%;
  color: #000;
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Roboto, "Segoe UI", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  overflow: hidden;
  -webkit-text-size-adjust: 100%;
  margin: 0 auto;
  image-rendering: -webkit-optimize-contrast;
}

a {
  display: block;
  word-break: break-all;
  text-decoration: none;
}

a:link {
  text-decoration: none;
}

a:visited {
  color: #333;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
          appearance: none;
}

picture {
  display: block;
  max-width: 100%;
}

/* =================================================
  Header
================================================= */
.l-header {
  position: fixed;
  top: -70px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: 0.5s;
  visibility: hidden;
  background-color: #03091e;
  z-index: 3;
}
@media screen and (min-width: 1280px) {
  .l-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
  }
}
.l-header_inner {
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}
@media screen and (min-width: 1280px) {
  .l-header_inner {
    display: block;
    padding: 0;
    height: auto;
  }
}
@media screen and (min-width: 1280px) {
  .l-header_img {
    width: 352px;
    height: 25px;
    margin-left: 20px;
  }
}
.l-header_hbgBtn {
  position: relative;
  width: 25px;
  height: 25px;
}
@media screen and (min-width: 1280px) {
  .l-header_hbgBtn {
    display: none;
  }
}
.l-header_hbgBtn span {
  position: absolute;
  display: block;
  width: 25px;
  height: 2px;
  top: 0;
  left: 0;
  background: var(--color-secondary01);
  pointer-events: none;
  transition: all 0.4s;
}
.l-header_hbgBtn span:nth-of-type(1) {
  top: 4px;
}
.l-header_hbgBtn span:nth-of-type(2) {
  top: 10px;
}
.l-header_hbgBtn span:nth-of-type(3) {
  top: 16px;
}
.l-header_navContainer {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  background: #1a1f3a;
  transition: 0.5s;
}
@media screen and (min-width: 1280px) {
  .l-header_navContainer {
    opacity: 1;
    visibility: visible;
    position: static;
    top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    background: #03091e;
  }
}
.l-header_navContainer.is-hidden {
  visibility: hidden;
}
.l-header_btnBox {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .l-header_btnBox {
    margin: 0 0 0 20px;
  }
}
.l-header_btn {
  flex: 1;
  color: #fff;
}
.l-header_hbgBtn.-active span:nth-of-type(1) {
  top: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-header_hbgBtn.-active span:nth-of-type(2) {
  opacity: 0;
}
.l-header_hbgBtn.-active span:nth-of-type(3) {
  top: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* =================================================
main
================================================= */
p {
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  p {
    font-size: 1.125rem;
  }
}

.p-mv {
  position: relative;
  padding: 70px 0 0;
  background-color: #010212;
}
@media screen and (min-width: 769px) {
  .p-mv {
    padding: 100px 0 0;
  }
}
.p-mv.-visitors .p-mv_btnContainer-02 {
  padding-top: 17px;
}
@media screen and (min-width: 769px) {
  .p-mv.-visitors .p-mv_btnContainer-02 {
    padding: 50px 0 0 0;
  }
}
@media screen and (min-width: 769px) {
  .p-mv.-visitors .p-mv_title {
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .p-mv.-visitors .p-mv_infoList {
    margin-top: 38px;
  }
}
.p-mv_inner {
  width: 100%;
  max-width: 400px;
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-mv_inner {
    padding: 0 40px;
    max-width: 1066px;
  }
}
.p-mv_bg {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.p-mv_bg::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  opacity: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(./bg_mv_sp.png) no-repeat 0 0/contain;
  -webkit-animation: fadeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1;
          animation: fadeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transition: 0.3s;
}
@media screen and (min-width: 1000px) {
  .p-mv_bg::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    opacity: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(./bg_mv_pc.png) no-repeat 0 0/contain;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: mvFadeIn;
            animation-name: mvFadeIn;
    -webkit-animation-duration: 0.8s;
            animation-duration: 0.8s;
    transition: 0.3s;
  }
  @-webkit-keyframes mvFadeIn {
    0% {
      visibility: hidden;
      opacity: 0;
    }
    50% {
      visibility: hidden;
      opacity: 0;
    }
    100% {
      visibility: visible;
      opacity: 1;
    }
  }
  @keyframes mvFadeIn {
    0% {
      visibility: hidden;
      opacity: 0;
    }
    50% {
      visibility: hidden;
      opacity: 0;
    }
    100% {
      visibility: visible;
      opacity: 1;
    }
  }
}
@media screen and (min-width: 1000px) and (min-width: 1921px) {
  .p-mv_bg::before {
    background: url(./bg_mv_pc.png) no-repeat 0 0/cover;
  }
}
.p-mv_jsBox, .p-mv_jsBox02 {
  opacity: 0;
}
.p-mv_title {
  margin: 0 auto;
  width: 305px;
}
.p-mv_title img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-mv_title {
    width: 100%;
    max-width: 986px;
    padding: 0;
    margin: 18px auto;
  }
}
.p-mv_infoList {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 5px;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .p-mv_infoList {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
    gap: 28px 36px;
  }
}
.p-mv_infoListItem {
  display: flex;
  gap: 5px;
}
.p-mv_infoListItem:nth-child(3) dd {
  margin-top: -2px;
  letter-spacing: -0.13em;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .p-mv_infoListItem:nth-child(3) dd {
    margin-top: 0;
    letter-spacing: -0.08em;
    line-height: 1;
  }
}
@media screen and (min-width: 769px) {
  .p-mv_infoListItem {
    gap: 15px;
  }
}
.p-mv_infoListTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  max-height: 16px;
  padding: 9px 6px;
  background: #ffffff;
  text-align: center;
  border-radius: 2px;
}
@media screen and (min-width: 769px) {
  .p-mv_infoListTitle {
    max-height: 29px;
    padding: 0 11px;
    border-radius: 3px;
  }
}
.p-mv_infoListTitle span {
  padding-left: 2px;
  font-size: 0.8125rem;
  color: #0C0E3C;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 769px) {
  .p-mv_infoListTitle span {
    font-size: 1.0625rem;
    letter-spacing: 0.2rem;
  }
}
.p-mv_infoListDate {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (min-width: 640px) {
  .p-mv_infoListDate {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 769px) {
  .p-mv_infoListDate {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.875rem;
  }
}
.p-mv_infoListDate span {
  content: "";
  display: inline-block;
  position: relative;
  top: -3px;
  margin: 0 4px 0 6px;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 4px solid #ffffff;
}
@media screen and (min-width: 769px) {
  .p-mv_infoListDate span {
    top: -6px;
    margin: 0 8px 0 10px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid #ffffff;
  }
}
.p-mv_tokyoBnrPc {
  display: none;
  -webkit-animation-name: slideIn;
          animation-name: slideIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
          animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@media screen and (min-width: 1536px) {
  .p-mv_tokyoBnrPc {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    opacity: 0;
    width: 260px;
    background: linear-gradient(90deg, #4d0e0e 0%, #bb0f0f 50%, #4d0e0e 100%);
    background-size: 200% 100%;
    transition: background 0.3s ease;
  }
}
@media screen and (min-width: 1536px) and (any-hover: hover) {
  .p-mv_tokyoBnrPc:hover {
    background-position: 100% 0;
  }
}
@media screen and (min-width: 1536px) {
  .p-mv_tokyoBnrPc_logo {
    padding: 19px 0;
  }
  .p-mv_tokyoBnrPc img {
    margin: 0 auto;
  }
}
.p-mv_tokyoBnrPc_text {
  position: relative;
  padding: 9px 25px 7px;
  font-size: 18px;
  font-weight: 700;
  color: #bb0f0f;
  text-align: center;
  line-height: 1.8;
  background: #fff;
}
.p-mv_tokyoBnrPc_text::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #bb0f0f;
  border-width: 5px 0 5px 6px;
}
.p-mv_tokyoBnrSp {
  max-width: 270px;
  margin: 29px auto 0;
  background: linear-gradient(90deg, #4d0e0e 0%, #bb0f0f 50%, #4d0e0e 100%);
  background-size: 200% 100%;
  transition: background 0.25s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 769px) {
  .p-mv_tokyoBnrSp {
    margin: 50px auto 0;
    max-width: 350px;
  }
}
@media screen and (min-width: 1536px) {
  .p-mv_tokyoBnrSp {
    display: none;
  }
}
@media (any-hover: hover) {
  .p-mv_tokyoBnrSp:hover {
    background-position: 100% 0;
  }
}
.p-mv_tokyoBnrSp_logo {
  padding: 15px 10px;
}
@media screen and (min-width: 769px) {
  .p-mv_tokyoBnrSp_logo {
    padding: 19px;
  }
}
.p-mv_tokyoBnrSp_logo img {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-mv_tokyoBnrSp_logo img {
    width: 280px;
    height: auto;
  }
}
.p-mv_tokyoBnrSp_text {
  position: relative;
  padding: 9px 25px 7px;
  font-weight: 700;
  color: #bb0f0f;
  text-align: center;
  line-height: 1.8;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .p-mv_tokyoBnrSp_text {
    font-size: 18px;
  }
}
.p-mv_tokyoBnrSp_text::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #bb0f0f;
  border-width: 5px 0 5px 6px;
}
.p-mv_btn {
  transition: 0.2s linear;
  background-color: #ffffff;
}
.p-mv_btn:nth-of-type(3) {
  margin-top: 10px;
}
.p-mv_btnContainer-02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 40px 0 60px;
}
@media screen and (min-width: 769px) {
  .p-mv_btnContainer-02 {
    flex-direction: row;
    justify-content: center;
    gap: 0;
    padding: 60px 0 0 0;
    max-width: 978px;
  }
}
.p-mv_btn {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-mv_btn {
    width: 489px;
    height: 96px;
    max-width: none;
  }
}
.p-mv_btn .c-btn_label {
  font-size: 1rem;
}
@media screen and (min-width: 769px) {
  .p-mv_btn .c-btn_label {
    font-size: 1.125rem;
  }
}

.l-gnav {
  display: none;
}
@media screen and (min-width: 769px) {
  .l-gnav {
    display: block;
  }
}

.l-section_inner {
  padding: 0 25px;
  margin: 0 auto;
}

.p-topSection {
  position: relative;
  padding: 0 0 60px;
}
@media screen and (min-width: 1200px) {
  .p-topSection {
    padding: 0 0 40px;
  }
}
.p-topSection_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #010212;
  z-index: -2;
}
.p-topSection_inner {
  position: relative;
  margin: 0 10px;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .p-topSection_inner {
    margin: 0 auto 20px;
    max-width: 1098px;
  }
}
.p-topSection_container {
  position: relative;
  padding: 60px 15px;
  background-color: rgba(41, 40, 57, 0.3);
  -webkit-backdrop-filter: blur(30px) brightness(1.1);
  backdrop-filter: blur(30px) brightness(1.1);
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-topSection_container {
    padding: 65px 60px;
  }
}
.p-topSection_jsBox {
  opacity: 0;
}
.p-topSection_heading {
  position: relative;
  margin-bottom: 36px;
}
@media screen and (min-width: 769px) {
  .p-topSection_heading {
    margin-bottom: 30px;
  }
}
.p-topSection_heading_bg {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}
.p-topSection_heading_bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(./bg_greeting.png) top center/cover;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .p-topSection_heading_bg::before {
    display: none;
  }
}
.p-topSection_heading_title {
  font-size: 1.625rem;
  color: #ffffff;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .p-topSection_heading_title {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}
.p-topSection_txt {
  color: #ffffff;
}
.p-topSection_span {
  font-size: 1.25rem;
}
@media screen and (min-width: 769px) {
  .p-topSection_span {
    font-size: 1.375rem;
  }
}
.p-topSection_btn {
  padding-top: 40px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-topSection_btn {
    padding: 35px 0 0;
    max-width: 642px;
  }
}

p + p {
  padding-top: 12px;
}
@media screen and (min-width: 769px) {
  p + p {
    padding-top: 25px;
  }
}

.p-container {
  position: relative;
  background: var(--color-bg02);
  padding: 60px 0;
  overflow: hidden;
}
.p-container_box {
  position: relative;
  padding: 0 15px 60px 25px;
  margin-right: 10px;
  z-index: 2;
  -webkit-backdrop-filter: blur(30px) brightness(1.1);
  backdrop-filter: blur(30px) brightness(1.1);
}
@media screen and (min-width: 769px) {
  .p-container_box {
    padding: 0 60px 65px;
    max-width: 978px;
    margin: 0 auto;
    box-sizing: content-box;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    z-index: 1;
  }
  .p-container_box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% + (100vw - 100%) / 2);
    height: 100%;
    z-index: -1;
    -webkit-backdrop-filter: blur(30px) brightness(1.1);
    backdrop-filter: blur(30px) brightness(1.1);
  }
}

.p-container02 {
  position: relative;
  background: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}
.p-container02_box {
  position: relative;
  padding: 0 25px 60px 15px;
  margin-left: 10px;
  background-color: rgba(241, 244, 248, 0.35);
  z-index: 2;
  -webkit-backdrop-filter: blur(30px) brightness(1.1);
  backdrop-filter: blur(30px) brightness(1.1);
}
@media screen and (min-width: 769px) {
  .p-container02_box {
    padding: 0 60px 60px;
    max-width: 978px;
    margin: 0 auto;
    box-sizing: content-box;
    z-index: 1;
  }
  .p-container02_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + (100vw - 100%) / 2);
    height: 100%;
    background-color: #f1f4f8;
    z-index: -1;
    -webkit-backdrop-filter: blur(30px) brightness(1.1);
    backdrop-filter: blur(30px) brightness(1.1);
  }
}

.p-archive_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .p-archive_container {
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
  }
}
.p-archive_box {
  width: 100%;
  background: #F2F2F2;
  padding: 20px 15px 30px;
}
@media screen and (min-width: 768px) {
  .p-archive_box {
    padding: 30px 40px 37px;
  }
}
@media screen and (min-width: 1180px) {
  .p-archive_box {
    width: calc(50% - 15px);
  }
}
.p-archive_title {
  margin-bottom: 16px;
  font-size: 1.375rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-archive_title {
    font-size: 1.75rem;
  }
}

.p-application {
  background: url(./bg_cta_sp.png) no-repeat top center/cover;
}
@media screen and (min-width: 769px) {
  .p-application {
    background: url(./bg_cta_pc.png) no-repeat top center/cover;
  }
}
.p-application_inner {
  padding: 0 25px 60px;
}
@media screen and (min-width: 769px) {
  .p-application_inner {
    padding: 0 60px 80px;
    max-width: 978px;
  }
}
.p-application p {
  color: rgba(255, 255, 255, 0.8);
}
.p-application .c-titleLvTwo, .p-application .c-titleLvThree {
  color: #ffffff;
}
.p-application .c-titleLvTwo {
  padding-top: 53px;
}
@media screen and (min-width: 769px) {
  .p-application .c-titleLvTwo {
    padding-top: 67px;
  }
}
.p-application_btn {
  margin: 0 auto;
  background-color: #ffffff;
}
@media screen and (min-width: 769px) {
  .p-application_btn {
    margin-top: 41px;
    width: 642px;
    height: 96px;
    max-width: none;
  }
}
.p-application_wrap {
  padding: 10px 0;
}
@media screen and (min-width: 769px) {
  .p-application_wrap {
    padding: 80px 0 1.56%;
  }
}
.p-application_container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-application_container {
    grid-template-columns: 1fr 1fr;
    gap: 1.56%;
    max-width: 1680px;
  }
}

@media screen and (min-width: 769px) {
  .p-contact01 {
    padding: 0;
    flex: 1;
  }
}
.p-contact01 p {
  color: #d2d7e0;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-contact01 p {
    font-size: 1.125rem;
  }
}
.p-contact01_inner {
  padding: 46px 20px 50px 20px;
  height: 100%;
  background: #1F4966;
}
@media screen and (min-width: 769px) {
  .p-contact01_inner {
    padding: 60px 20px 50px;
  }
}
@media screen and (min-width: 769px) {
  .p-contact01 .c-titleLvThree {
    margin-bottom: 30px;
  }
}
.p-contact01_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 0;
  width: 100%;
  height: 45px;
  border: 2px solid #d2d7e0;
  border-radius: 50px;
  color: #d2d7e0;
  text-align: center;
  transition: 0.5s;
}
@media screen and (min-width: 769px) {
  .p-contact01_btn {
    max-width: 386px;
    height: 46px;
  }
}
@media screen and (min-width: 1024px) {
  .p-contact01_btn {
    font-size: 1.125rem;
  }
}
.p-contact01_btn:visited {
  color: #d2d7e0;
}
@media (any-hover: hover) {
  .p-contact01_btn:hover {
    color: #243f6d;
    background-color: #d2d7e0;
  }
}

@media screen and (min-width: 769px) {
  .p-contact02 {
    padding: 0;
    flex: 1;
  }
}
.p-contact02_inner {
  padding: 46px 20px 50px 15px;
  height: 100%;
  background: #142f48;
}
@media screen and (min-width: 769px) {
  .p-contact02_inner {
    padding: 52px 20px 50px;
  }
}
.p-contact02 p {
  color: #d2d7e0;
  line-height: 1.4;
  text-align: center;
}

.p-footerContents {
  padding: 46px 20px 50px 20px;
  background-color: #384457;
}
@media screen and (min-width: 769px) {
  .p-footerContents {
    padding: 60px 0;
  }
}
@media screen and (min-width: 1400px) {
  .p-footerContents {
    max-width: 1680px;
    margin: 0 auto 80px;
  }
}
.p-footerContents_movie {
  margin: 0 auto;
  max-width: 600px;
}
.p-footerContents_btn {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .p-footerContents_btn {
    margin: 0 auto;
    width: 642px;
    height: auto;
    max-width: none;
  }
}

.videoWrap > .uliza-player,
.videoWrap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-pageTop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 3;
}
.c-pageTop_link {
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .c-pageTop_img {
    width: 60px;
    height: 60px;
  }
}

/* =================================================
footer
================================================= */
.l-footer {
  padding: 0 10px;
  color: #ffffff;
  background: linear-gradient(to bottom, #0B1C33 0%, #040A1F 100%);
}
@media screen and (min-width: 769px) {
  .l-footer {
    padding: 0 60px;
  }
}
@media screen and (min-width: 1400px) {
  .l-footer {
    padding: 0 6.25%;
  }
}
.l-footer_info {
  position: relative;
}
@media screen and (min-width: 1400px) {
  .l-footer_info::before {
    content: "";
    position: absolute;
    inset-block-start: 0;
    inset-inline: 50%;
    width: 100vw;
    height: 1px;
    background: #4F525E;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    pointer-events: none;
  }
}
.l-footer_inner {
  padding: 50px 8px 25px;
  border-top: solid 1px #4F525E;
}
@media screen and (min-width: 1400px) {
  .l-footer_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 45px 0 52px;
    max-width: 1680px;
  }
}
.l-footer_logo {
  margin: 0 auto;
  width: 100px;
  height: auto;
  transition: 0.3s;
}
@media screen and (min-width: 1024px) {
  .l-footer_logo {
    width: 145px;
  }
}
@media screen and (min-width: 1400px) {
  .l-footer_logo {
    margin: 0;
  }
}
@media (any-hover: hover) {
  .l-footer_logo:hover {
    opacity: 0.7;
  }
}
.l-footer_img {
  width: 100%;
}
.l-footer_navList {
  margin-top: 20px;
  width: 100%;
  font-size: 0.75rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-footer_navList {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1400px) {
  .l-footer_navList {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 0;
  }
}
.l-footer_navItem_navItem:nth-of-type(2) {
  text-align: center;
}
@media screen and (min-width: 1400px) {
  .l-footer_navItem:nth-of-type(2) {
    padding-left: 20px;
    border-left: 1px solid #e5e5e5;
  }
}
.l-footer li + li {
  padding-top: 20px;
}
@media screen and (min-width: 1400px) {
  .l-footer li + li {
    padding-top: 0;
  }
}
.l-footer_navLink {
  display: inline-block;
  color: #fff;
  line-height: 1.4;
  transition: 0.3s;
}
.l-footer_navLink:visited {
  color: #ffffff;
}
@media (any-hover: hover) {
  .l-footer_navLink:hover {
    opacity: 0.7;
  }
}
.l-footer_copy {
  padding-top: 20px;
  text-align: center;
}
@media screen and (min-width: 1400px) {
  .l-footer_copy {
    padding-top: 10px;
    text-align: right;
  }
}
.l-footer_small {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.4;
}

/* =================================================
  components
================================================= */
.c-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 65px;
  color: var(--color-primary);
  background: var(--color-secondary01);
  text-align: center;
  transition: 0.3s linear;
  border: 2px solid var(--color-secondary01);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 769px) {
  .c-btn {
    height: 96px;
  }
}
@media screen and (min-width: 769px) and (any-hover: hover) {
  .c-btn:hover {
    background: #030724;
    color: var(--color-secondary01);
  }
  .c-btn:hover .c-btn_pdfIcon {
    content: url(ico_pdf_02.svg);
  }
}
.c-btn.-header {
  height: 50px;
}
@media screen and (min-width: 1280px) {
  .c-btn.-header {
    width: 140px;
    height: 60px;
    box-shadow: none;
  }
}
.c-btn.-purple {
  background: var(--color-secondary02);
  border: 2px solid var(--color-secondary02);
}
@media (any-hover: hover) {
  .c-btn.-purple:hover {
    color: var(--color-secondary02);
    background: #1A0324;
  }
}
.c-btn.-disabled {
  pointer-events: none;
  background: #a8a8a8;
  border: 2px solid #a8a8a8;
}
.c-btn_pdfIcon {
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  width: 20px;
  height: 24px;
  z-index: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: 0.3;
}
@media screen and (min-width: 769px) {
  .c-btn_pdfIcon {
    right: 25px;
  }
}

.c-btn_label {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.4;
  vertical-align: middle;
  max-width: 75%;
}
@media screen and (min-width: 769px) {
  .c-btn_label {
    font-size: 1.5rem;
  }
}
.c-btn_label.-headerText {
  font-size: 0.6875rem;
}
@media screen and (min-width: 1280px) {
  .c-btn_label.-headerText {
    font-size: 0.8125rem;
  }
}
.c-btn_label.-arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid currentColor;
  z-index: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .c-btn_label.-arrow::after {
    right: 33px;
  }
}

.c-btnOfficial {
  position: relative;
  padding: 18px 48px 16px;
  margin: 20px auto 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-secondary01);
  text-align: center;
  background: transparent;
  border: 2px solid currentColor;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.4s cubic-bezier(0.21, 0.6, 0.35, 1);
}
@media screen and (min-width: 769px) {
  .c-btnOfficial {
    padding: 21px 48px 17px;
    margin: 89px auto 0;
    max-width: 474px;
    height: auto;
    font-size: 1.25rem;
  }
}
@media (any-hover: hover) {
  .c-btnOfficial:hover {
    color: #fff;
    background: #1C3287;
    border-color: #1C3287;
  }
}
.c-btnOfficial:visited {
  color: #2E4688;
  background: #fff;
}
@media (any-hover: hover) {
  .c-btnOfficial:visited:hover {
    color: #fff;
    background: #2E4688;
    border-color: #2E4688;
  }
}
.c-btnOfficial::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent currentColor;
  border-width: 5px 0 5px 6px;
}
@media screen and (min-width: 769px) {
  .c-btnOfficial::after {
    right: 30px;
  }
}

.c-btnOfficial.-white {
  color: #ffffff;
}
@media (any-hover: hover) {
  .c-btnOfficial.-white:hover {
    color: #384457;
    background: #ffffff;
    border-color: #ffffff;
  }
}
.c-btnOfficial.-white:visited {
  color: #ffffff;
}
@media (any-hover: hover) {
  .c-btnOfficial.-white:visited:hover {
    color: #384457;
    background: #ffffff;
    border-color: #ffffff;
  }
}

@media screen and (min-width: 769px) {
  .-nallow {
    margin-top: 20px;
  }
}

.c-ancherList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .c-ancherList {
    justify-content: center;
    gap: 30px;
    padding: 50px 10px 52px 0;
    margin: 0 auto;
  }
}
.c-ancherList_item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.3333333333%;
  padding: 0;
  height: 50px;
}
@media screen and (min-width: 769px) {
  .c-ancherList_item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1280px) {
  .c-ancherList_item {
    height: auto;
  }
}
.c-ancherList_item:nth-of-type(2):before, .c-ancherList_item:nth-of-type(3):before, .c-ancherList_item:nth-of-type(5):before, .c-ancherList_item:nth-of-type(6):before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  width: 1px;
  height: 20px;
  background: #e5e5e5;
}
@media screen and (min-width: 769px) {
  .c-ancherList_item:nth-of-type(2):before, .c-ancherList_item:nth-of-type(3):before, .c-ancherList_item:nth-of-type(5):before, .c-ancherList_item:nth-of-type(6):before {
    content: none;
  }
}
.c-ancherList_item a {
  padding: 5px;
  font-size: 0.6875rem;
  color: #ffffff;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .c-ancherList_item a {
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    padding-right: 16px;
  }
  .c-ancherList_item a::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #ffffff;
    z-index: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    transition: 0.3s;
  }
}
@media screen and (min-width: 769px) and (any-hover: hover) {
  .c-ancherList_item a:hover {
    text-decoration: underline;
  }
  .c-ancherList_item a:hover::after {
    border-top: 6px solid #ffffff;
  }
}
.c-ancherList_item.-headerLine:nth-of-type(2):before, .c-ancherList_item.-headerLine:nth-of-type(3):before, .c-ancherList_item.-headerLine:nth-of-type(5):before, .c-ancherList_item.-headerLine:nth-of-type(6):before {
  background: #39302d;
}
@media screen and (min-width: 769px) {
  .c-ancherList_item.-headerLine:nth-of-type(2):before, .c-ancherList_item.-headerLine:nth-of-type(3):before, .c-ancherList_item.-headerLine:nth-of-type(5):before, .c-ancherList_item.-headerLine:nth-of-type(6):before {
    content: none;
  }
}
@media screen and (min-width: 1000px) {
  .c-ancherList_item.-headerLine a {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 1280px) {
  .c-ancherList_item.-headerLine a {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
}
@media (any-hover: hover) {
  .c-ancherList_item.-headerLine a:hover {
    text-decoration: underline;
  }
  .c-ancherList_item.-headerLine a:hover::after {
    border-top: 6px solid #ffffff;
  }
}
.c-ancherList.-header {
  padding: 0;
  max-width: none;
}
@media screen and (min-width: 769px) {
  .c-ancherList.-header {
    padding: 0 30px;
  }
}
@media screen and (min-width: 1280px) {
  .c-ancherList.-header {
    padding: 0;
    background: transparent;
    gap: 14px;
  }
}
.c-ancherList.-header a {
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .c-ancherList.-header a {
    font-size: 0.813rem;
    display: flex;
    align-items: center;
    padding-right: 15px;
  }
  .c-ancherList.-header a::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid var(--color-secondary01);
    z-index: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (min-width: 1280px) {
  .c-ancherList.-header a {
    color: #ffffff;
  }
}

.c-titleLvTwo {
  padding-top: 55px;
  margin-bottom: 34px;
  color: var(--color-primary);
  font-size: 2.0625rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .c-titleLvTwo {
    margin-bottom: 60px;
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 769px) {
  .c-titleLvTwo.-schedule {
    padding-top: 120px;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .c-titleLvTwo.-exhibition {
    margin-bottom: 28px;
  }
}
@media screen and (min-width: 769px) {
  .c-titleLvTwo.-archive {
    padding-top: 43px;
    margin-bottom: 30px;
  }
}

.c-titleLvThree {
  margin-bottom: 23px;
  color: #ffffff;
  font-size: 1.375rem;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .c-titleLvThree {
    margin-bottom: 35px;
    font-size: 1.75rem;
  }
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table tr {
  border: 2px solid #203864;
}
.c-table th, .c-table td {
  display: block;
  padding: 8px 15px;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .c-table th, .c-table td {
    display: table-cell;
    font-size: 1.125rem;
  }
}
.c-table th {
  color: #ffffff;
  background: #28467d;
}
@media screen and (min-width: 769px) {
  .c-table th {
    padding: 8px 20px;
    width: 22%;
  }
}
.c-table td {
  vertical-align: middle;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .c-table td {
    padding: 8px 26px;
  }
}

.c-btnList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -8px -8px;
}
@media screen and (min-width: 769px) {
  .c-btnList {
    margin: 0 0 -10px -10px;
    justify-content: center;
  }
}
.c-btnList_item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  margin: 0 0 8px 8px;
  width: calc(49.9750124938% - 8px);
  min-height: 105px;
  background: #ffffff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 769px) {
  .c-btnList_item {
    width: calc(33.3222259247% - 10px);
    min-height: 100px;
    padding: 10px;
    margin: 0 0 10px 10px;
  }
}
@media screen and (min-width: 1024px) {
  .c-btnList_item {
    width: calc(19.9960007998% - 10px);
  }
}
.c-btnList_item::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: solid transparent 5px;
  border-left: solid transparent 5px;
  border-right: solid var(--color-secondary01) 5px;
  border-bottom: solid transparent 5px;
  position: absolute;
  top: -2px;
  left: -2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-btnList_label {
  display: inline-block;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.4;
  text-align: center;
}

.c-sectionBg {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.c-sectionBg.-right {
  right: 0;
}
.c-sectionBg.-event {
  height: 100%;
}
.c-sectionBg.-archive {
  top: 0;
}
@media screen and (min-width: 769px) {
  .c-sectionBg.-event img {
    width: auto;
    height: 100%;
  }
}
@media screen and (min-width: 769px) {
  .c-sectionBg.-archive img {
    width: 1070px;
    height: 100%;
  }
}

.c-eventList_item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  border-top: 1px solid #b1c5ce;
  font-size: 1rem;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .c-eventList_item {
    grid-template-columns: 222px 1fr;
    font-size: 1.125rem;
    line-height: 1.8;
  }
}
.c-eventList_item:nth-of-type(1) {
  border-top: none;
}
.c-eventList_item + .c-eventList_item {
  margin-top: 5px;
  padding-top: 15px;
}
@media screen and (min-width: 769px) {
  .c-eventList_item + .c-eventList_item {
    margin-top: 3px;
    padding-top: 9px;
  }
}
.c-eventList_term {
  padding-left: 20px;
}
.c-eventList_desc {
  padding: 0 10px;
  font-weight: 500;
}

/* =================================================
  utility
================================================= */
@media screen and (min-width: 769px) {
  .u-sp {
    display: none;
  }
}

@media (max-width: 500px) and (min-width: 1280px) {
  .u-tab {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .u-pc {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .u-tabPc {
    display: none;
  }
}

.u-inlineBlock {
  display: inline-block;
}

.is-show {
  top: 0;
  visibility: visible;
}

.u-fadeLeft {
  opacity: 0;
  -webkit-transform: translate(-50px, 0px);
          transform: translate(-50px, 0px);
  transition: opacity 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
}

.is-fadeUp {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* -----------------------------------------------
  JavaScript
----------------------------------------------- */
.-openMenu {
  opacity: 1;
  visibility: visible;
}

.-fixed {
  position: fixed;
}

/* データ利用について */
.bpPrivacy {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  display: none;
  width: calc(100% - 32px);
  max-width: 440px;
  padding: 16px;
  background: #ffffff;
  border-top: 4px solid #1e4d84;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}

.bpPrivacy_message {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.bpPrivacy_buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.bpPrivacy_button-detail,
.bpPrivacy_button-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 1.65;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: bottom;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a.bpPrivacy_button-detail {
  font-weight: 500;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}

.bpPrivacy_button-detail:hover {
  background-color: rgba(51, 51, 51, 0.06);
}

.bpPrivacy_button-close {
  margin-left: 15px;
  font-weight: 700;
  color: #fff;
  background-color: #0068bc;
  border: none;
}

.bpPrivacy_button-close:hover {
  background-color: rgba(0, 118, 214, 0.9);
}/*# sourceMappingURL=master.css.map */