@charset "UTF-8";
/* ======================================================================= */
/* event */
/* ======================================================================= */
/* common
========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html {
  font-size: 62.5%;
  height: -webkit-fill-available;
}

body {
  font-size: 14px;
  font-weight: normal;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

main {
  color: #fff;
}
main h1 {
  font-weight: normal;
}
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-weight: 600 !important;
}
main ul,
main li {
  list-style: none;
}
main a {
  color: #fff;
  text-decoration: none;
}
main table {
  border-collapse: collapse;
}
main img {
  max-width: 100%;
  vertical-align: top;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-touch-callout: none;
  -moz-touch-callout: none;
  -webkit-user-drag: none;
  -moz-user-drag: none;
}
main figure {
  overflow: hidden;
}
main svg {
  fill: currentColor;
}
main * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
main section {
  position: relative;
  width: 100%;
}
main section .container {
  z-index: 1;
}
main section .section_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(-1px);
          clip-path: inset(-1px);
  z-index: 0;
}
main section .section_img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
main section .section_ttl {
  width: 100%;
  margin-bottom: 40px;
}
main section .section_ttl .en {
  font-size: 1.4rem;
  color: #959595;
  line-height: 1.2;
}
main section .section_ttl h2 {
  font-size: 2rem;
}
main .only_sp {
  display: none;
}
main .only_pc {
  display: inherit;
}

#wrapper {
  padding: 0;
}

#breadcrumb.breadcrumb-super-wide ul {
  width: 100%;
  max-width: 1920px;
  padding-left: 50px;
  margin: 0 auto;
}

a[target=_blank] h3::after {
  content: url(../../brand/images/ico_external.svg);
  padding-left: 10px;
}

@media screen and (max-width: 767px) {
  main .only_sp {
    display: inherit;
  }
  main .only_pc {
    display: none;
  }
}
@media screen and (min-width: 1080px) {
  main section .section_ttl {
    width: 100%;
    max-width: 1540px;
    padding: 0;
    margin: 0 auto 50px;
  }
  main section a {
    transition: 0.5s;
  }
  main section a img {
    transition: 0.5s;
  }
}
/* ======================================================================= */
/* Animation
========================================================================== */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn-up {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn-up {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn-down {
  from {
    opacity: 0;
    transform: translateY(-80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn-down {
  from {
    opacity: 0;
    transform: translateY(-80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn-side {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn-side {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.scr-target {
  position: relative;
  opacity: 0;
  top: 30px;
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .scr-target {
      opacity: 1;
    }
  }
}

.scr-target.is-active {
  opacity: 1;
  top: 0;
  transition: 1s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

.animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* ======================================================================= */
/* button
========================================================================== */
@-webkit-keyframes btnAnimation {
  0% {
    transform: translate(0) rotate(225deg);
  }
  50% {
    transform: translate(-3px) rotate(225deg);
  }
  100% {
    transform: translate(0) rotate(225deg);
  }
}
@keyframes btnAnimation {
  0% {
    transform: translate(0) rotate(225deg);
  }
  50% {
    transform: translate(-3px) rotate(225deg);
  }
  100% {
    transform: translate(0) rotate(225deg);
  }
}
.btn_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

a.btn_prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border: solid 1px #fff;
  transition: 0.3s;
}
a.btn_prev::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 30px;
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #fff;
  transform: rotate(225deg);
}
a.btn_prev > span {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
}

@media screen and (min-width: 1080px) {
  a.btn_prev {
    opacity: 0.7;
  }
  a.btn_prev:hover {
    opacity: 1;
  }
  a.btn_prev:hover::after {
    -webkit-animation: btnAnimation 0.5s 2 both;
            animation: btnAnimation 0.5s 2 both;
  }
}
/* ======================================================================= */
/* page */
/* ======================================================================= */
/* title area
========================================================================== */
#page_ttl {
  width: 100%;
  height: 25vw;
  max-height: 360px;
  background: #000;
}
#page_ttl .inner {
  width: 100%;
  height: 100%;
  padding: 0 5%;
  background: url("../images/page_ttl__bg.jpg");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}
#page_ttl .inner .ttl {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  height: 100%;
  background: linear-gradient(90deg, rgb(0, 0, 0) 1%, rgba(0, 0, 0, 0));
}
#page_ttl .inner .ttl h1 {
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
}

@media screen and (min-width: 768px) {
  #page_ttl .inner {
    padding: 0 8%;
  }
  #page_ttl .inner .ttl h1 {
    font-size: 2.8rem;
  }
}
/* ======================================================================= */
/* event
========================================================================== */
#event {
  position: relative;
  width: 100%;
  color: #fff;
  background-color: #111;
  padding-bottom: 60px;
}
#event #primary_event,
#event #other_event {
  background: #111;
}
#event #exhibition {
  background: #1b1b1b;
}
#event .container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 40px 5% 0;
}
#event .container .ttl {
  width: 100%;
  margin: 0 auto 40px;
}
#event .container .ttl .en {
  font-size: 1.4rem;
  color: #959595;
}
#event .container .ttl h2 {
  font-size: 2rem;
}
#event .container .col {
  display: flex;
  flex-wrap: wrap;
}
#event .container .col .card {
  margin-bottom: 30px;
}
#event .container .col .card .caption {
  position: relative;
  width: 100%;
  padding: 20px 0;
  font-size: 1.3rem;
  line-height: 1.6;
  text-align: justify;
}
#event .container .col .card .caption h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

@media screen and (min-width: 768px) {
  #event {
    padding-bottom: 60px;
  }
  #event .container {
    padding: 74px 8% 0;
  }
  #event .container .col .card {
    width: 30%;
    margin: 0 5% 5% 0;
  }
  #event .container .col .card:nth-of-type(3n) {
    margin: 0 0 5% 0;
  }
}
@media screen and (min-width: 1080px) {
  #event {
    padding-bottom: 100px;
  }
  #event .container .inner {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
  }
  #event .container .inner .ttl {
    margin: 0 auto 70px;
  }
  #event .container .inner .col {
    display: flex;
    flex-wrap: wrap;
  }
  #event .container .inner .col .card {
    width: 30%;
    margin: 0 5% 5% 0;
  }
  #event .container .inner .col .card:nth-of-type(3n) {
    margin: 0 0 5% 0;
  }
  #event .container .inner .col .card a {
    position: relative;
  }
  #event .container .inner .col .card a:hover {
    cursor: pointer;
  }
  #event .container .inner .col .card a:hover img {
    transform: scale(1.1);
  }
  #event .container .inner .col .card a:hover .caption {
    opacity: 1;
  }
  #event .container .inner .col .card .caption {
    opacity: 0.7;
    transition: 0.5s;
  }
}