.inner {
  width: 1280px;
  padding: 0;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .inner {
    width: 100%;
    padding: 0 6vw;
  }
}

section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}
section .section__heading + .section__content {
  margin-top: 2.5rem;
}
section .section__heading .sectionHeading__meta .date {
  opacity: 0.5;
}
section .section__heading .sectionHeading__thumb {
  margin-top: 1rem;
}
section .section__heading .sectionHeading__thumb .thumb img {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  section {
    padding: 4rem 0;
  }
}

#header__logo {
  position: fixed;
  top: 2rem;
  left: 6vw;
  z-index: 10;
}
#header__logo h1 a {
  display: block;
}
#header__logo h1 a img {
  width: auto;
  height: 6rem;
}
#header__x {
  position: fixed;
  top: 1rem;
  right: 6.5rem;
  width: 5rem;
  height: 5rem;
  z-index: 200;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #262D35;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.3s;
}
#header__x img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  object-position: center;
}
#header__x:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  #header__logo {
    top: 1.5rem;
  }
  #header__logo h1 a img {
    height: 4rem;
  }
  #header__x {
    right: 6rem;
    width: 4.5rem;
    height: 4.5rem;
  }
  #header__x img {
    width: 1.75rem;
    height: 1.75rem;
  }
}

#hamburger__button {
  position: fixed;
  width: 5rem;
  height: 5rem;
  top: 1rem;
  right: 1rem;
  z-index: 200;
  border-radius: 50%;
  background-color: #262D35;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.3s;
}
#hamburger__button .border {
  position: relative;
  width: 3rem;
  height: 2rem;
}
#hamburger__button .border span {
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  width: 3rem;
  height: 2px;
  background-color: #fff;
  display: block;
  transition: 0.3s;
}
#hamburger__button .border span:nth-child(1) {
  transform: translateY(-0.5rem);
}
#hamburger__button .border span:nth-child(3) {
  transform: translateY(0.5rem);
}
#hamburger__button .label {
  color: #fff;
  line-height: 1;
  font-size: 0.75rem;
  text-align: center;
}
#hamburger__button.is-open span {
  background-color: #fff;
}
#hamburger__button.is-open span:nth-child(1) {
  transform: rotate(-30deg);
}
#hamburger__button.is-open span:nth-child(2) {
  opacity: 0;
}
#hamburger__button.is-open span:nth-child(3) {
  transform: rotate(30deg);
}
#hamburger__button:hover {
  opacity: 0.75;
}
#hamburger__content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: 100dvw;
  height: 100dvh;
  background-color: #E83820;
}
#hamburger__content .column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
#hamburger__content .column__image {
  position: relative;
}
#hamburger__content .column__image .logo {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 30vw;
  height: auto;
}
#hamburger__content .column__image .logo img {
  width: 100%;
  height: 100%;
}
#hamburger__content .column__image .bg {
  width: 100%;
  height: 100%;
}
#hamburger__content .column__image .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hamburger__content .column__content {
  display: flex;
  justify-content: center;
  align-items: center;
}
#hamburger__content .column__content h1 {
  display: none;
}
#hamburger__content .column__content ul {
  z-index: 10;
}
#hamburger__content .column__content ul li a {
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 1rem;
}
#hamburger__content .column__content ul li a .en {
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  width: 15rem;
}
#hamburger__content .column__content ul li a .ja {
  font-size: 1.5rem;
}
#hamburger__content .column__content ul li a:hover {
  opacity: 0.5;
}
#hamburger__content .column__content ul li + li {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  #hamburger {
    display: block;
  }
  #hamburger__button {
    width: 4.5rem;
    height: 4.5rem;
  }
  #hamburger__button .border {
    width: 2.5rem;
    height: 1.5rem;
  }
  #hamburger__button .border span {
    width: 2.5rem;
  }
  #hamburger__content .column {
    grid-template-columns: 1fr;
    grid-template-rows: 30vh auto;
  }
  #hamburger__content .column__content {
    padding: 3rem 0;
    flex-direction: column;
    gap: 3rem;
    justify-content: flex-start;
    overflow: scroll;
  }
  #hamburger__content .column__content h1 {
    display: block;
  }
  #hamburger__content .column__content h1 a {
    display: block;
  }
  #hamburger__content .column__content h1 a img {
    width: 45vw;
    height: auto;
  }
  #hamburger__content .column__content ul li a .ja {
    font-size: 1.25rem;
  }
  #hamburger__content .column__content ul li + li {
    margin-top: 1.5rem;
  }
  #hamburger__content .column__image .logo {
    display: none;
  }
}

#pageHeading {
  padding: 8rem 0 0 0;
  background-color: #F4F2ED;
  text-align: center;
  border-top: 8px solid #E83820;
}
#pageHeading h2 {
  color: #E83820;
  line-height: 1;
}
#pageHeading h2 .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  text-transform: capitalize;
}
#pageHeading h2 .ja {
  font-size: 1.25rem;
}
#pageHeading .inner {
  max-width: 860px;
}
@media screen and (max-width: 768px) {
  #pageHeading {
    padding: 10rem 0 0 0;
  }
  #pageHeading h2 .en {
    font-size: 5rem;
  }
  #pageHeading h2 .ja {
    font-size: 1.5rem;
  }
}

#pageContent {
  background-color: #F4F2ED;
}
#pageContent .inner {
  max-width: 860px;
}
#pageContent__heading__title h2 {
  font-size: 2rem;
  font-weight: 700;
}
#pageContent__heading__meta {
  opacity: 0.5;
}
#pageContent__content {
  margin-top: 2rem;
}

#breadcrumb {
  padding: 2rem 0;
  font-size: 0.8rem;
}
#breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
}
#breadcrumb ul li a img {
  width: 1rem;
  height: 1rem;
  object-position: center;
  object-fit: contain;
}
#breadcrumb ul li + li::before {
  content: "/";
  margin: 0 0.5rem;
  opacity: 0.5;
}

#mv {
  background-color: #E83820;
  padding: 0;
  width: 100%;
  height: 100dvh;
  max-height: 56.25vw;
}
#mv__catch {
  position: absolute;
  top: 4rem;
  left: 6vw;
  z-index: 2;
}
#mv__catch img {
  height: 12rem;
}
#mv__bg {
  height: 100%;
  overflow: hidden;
}
#mv__bg .slick-list {
  height: 100%;
}
#mv__bg .slick-list .slick-track {
  height: 100%;
}
#mv__bg .mvBg__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#mv::before, #mv::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/frame_01.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#mv::after {
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  #mv {
    height: 100vw;
    max-height: 112.5vw;
  }
  #mv__catch {
    display: none;
  }
}

#homeAbout {
  background-color: #E83820;
  padding-top: 2.5rem;
}
#homeAbout .column {
  display: flex;
  gap: 4rem;
}
#homeAbout .column__logo {
  display: none;
}
#homeAbout .column__content {
  color: #fff;
  flex-shrink: 0;
}
#homeAbout .column__content .homeAbout__date {
  font-family: "Josefin Sans", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
}
#homeAbout .column__content .homeAbout__date span {
  font-weight: 400;
  font-size: 2rem;
}
#homeAbout .column__content .homeAbout__place {
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  margin-top: 2rem;
}
#homeAbout .column__content .homeAbout__lead {
  margin-top: 3rem;
  font-size: 1.5rem;
  font-weight: 700;
}
#homeAbout .column__image {
  flex-grow: 1;
  width: 100%;
  height: auto;
}
#homeAbout .column__image img {
  width: 100%;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  #homeAbout .column {
    flex-direction: column;
  }
  #homeAbout .column__logo {
    display: block;
  }
  #homeAbout .column__logo img {
    width: 60vw;
    height: auto;
    margin: auto;
    display: block;
  }
  #homeAbout .column__content {
    text-align: center;
  }
  #homeAbout .column__content .homeAbout__date {
    font-size: 3rem;
  }
  #homeAbout .column__content .homeAbout__date span {
    font-weight: 400;
    font-size: 2rem;
  }
  #homeAbout .column__content .homeAbout__place {
    font-size: 1.5rem;
    margin-top: 0rem;
  }
  #homeAbout .column__content .homeAbout__lead {
    margin-top: 4rem;
    font-size: 1.2rem;
    font-weight: 500;
  }
}

#homeNews .column {
  display: flex;
  gap: 8rem;
}
#homeNews .column__heading {
  font-weight: 700;
  font-style: italic;
  font-size: 6rem;
  color: #E83820;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  flex-shrink: 0;
}
#homeNews .column__content {
  flex-grow: 1;
}
@media screen and (max-width: 1280px) {
  #homeNews .column {
    gap: 4rem;
  }
  #homeNews .column__heading {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  #homeNews .column {
    flex-direction: column;
    gap: 1rem;
  }
  #homeNews .column__heading {
    font-size: 6rem;
  }
}

#homeLink {
  padding-top: 0;
}
#homeLink ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
#homeLink ul li {
  border-radius: 0.5rem;
  overflow: hidden;
}
#homeLink ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  background-size: cover;
  aspect-ratio: 2/1;
  color: #fff;
  line-height: 1;
}
#homeLink ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #E83820;
  opacity: 0.8;
  transition: 0.3s;
}
#homeLink ul li a:hover::after {
  opacity: 0.95;
}
#homeLink ul li a span {
  position: relative;
  z-index: 2;
}
#homeLink ul li a span.en {
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 2.25rem;
}
@media screen and (max-width: 768px) {
  #homeLink ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  #homeLink ul li a {
    gap: 0;
  }
  #homeLink ul li a span.en {
    font-size: 1.5rem;
  }
}

#footerSponsor {
  background-color: #fff;
}
#footerSponsor .column {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 2rem;
}
#footerSponsor .column__label {
  display: flex;
  background-color: #F4F2ED;
  justify-content: center;
  align-items: center;
}
#footerSponsor .column__content .sponsorshipList01 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
#footerSponsor .column__content .sponsorshipList01 + .sponsorshipList02 {
  margin-top: 1rem;
}
#footerSponsor .column__content .sponsorshipList01 li a {
  display: block;
}
#footerSponsor .column__content .sponsorshipList01 li a img {
  height: 3rem;
  width: auto;
}
#footerSponsor .column__content .sponsorshipList01 li a:hover img {
  opacity: 0.75;
}
#footerSponsor .column__content .sponsorshipList02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#footerSponsor .column__content .sponsorshipList02 li + li::before {
  content: "/";
  opacity: 0.5;
  margin: 0 1rem;
}
#footerSponsor .column__content .supportList01 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#footerSponsor .column__content .supportList01 li + li::before {
  content: "/";
  opacity: 0.5;
  margin: 0 1rem;
}
#footerSponsor .column + .column {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  #footerSponsor .column {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #footerSponsor .column + .column {
    margin-top: 2rem;
  }
  #footerSponsor .column__content .sponsorshipList01 {
    gap: 1rem;
    justify-content: center;
  }
  #footerSponsor .column__content .sponsorshipList01 + .sponsorshipList02 {
    margin-top: 1rem;
  }
  #footerSponsor .column__content .sponsorshipList01 li a img {
    height: 2rem;
    width: auto;
  }
  #footerSponsor .column__content .sponsorshipList02 {
    justify-content: center;
  }
  #footerSponsor .column__content .supportList01 {
    justify-content: center;
  }
}

#footerMenu {
  background-color: #262D35;
  color: #fff;
}
#footerMenu .column {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footerMenu .column__logo {
  display: block;
}
#footerMenu .column__logo h1 a {
  display: block;
}
#footerMenu .column__logo h1 a img {
  width: auto;
  max-width: 30vw;
  height: 6rem;
}
#footerMenu .column__text {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#footerMenu .column__text .footerMenu__link {
  display: flex;
  gap: 1rem;
  font-weight: 700;
}
#footerMenu .column__text .footerMenu__link li a {
  color: #fff;
}
#footerMenu .column__text .footerMenu__copy {
  font-weight: 300;
  font-size: 0.8rem;
}
@media screen and (max-width: 1280px) {
  #footerMenu .column {
    gap: 2rem;
  }
  #footerMenu .column__text {
    flex-direction: column;
    gap: 1rem;
  }
  #footerMenu .column__text .footerMenu__link {
    display: flex;
    gap: 1rem;
    font-weight: 700;
  }
  #footerMenu .column__text .footerMenu__link li a {
    color: #fff;
  }
  #footerMenu .column__text .footerMenu__copy {
    font-weight: 300;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  #footerMenu {
    padding: 2rem 0;
  }
  #footerMenu .column {
    flex-direction: column;
    gap: 2rem;
  }
  #footerMenu .column__logo h1 a img {
    width: 40vw;
    max-width: inherit;
    height: auto;
  }
  #footerMenu .column__text {
    flex-direction: column;
    gap: 1rem;
  }
  #footerMenu .column__text .footerMenu__link {
    display: flex;
    gap: 1rem;
    font-weight: 700;
  }
  #footerMenu .column__text .footerMenu__link li a {
    color: #fff;
  }
  #footerMenu .column__text .footerMenu__copy {
    font-weight: 300;
    font-size: 0.8rem;
  }
}