@charset "UTF-8";

@font-face {
  font-family: "Attic Antique";
  font-style: normal;
  font-weight: 400;
  src: url(fonts/atticantique.ttf) format("truetype");
  font-display: swap;
}

::-webkit-scrollbar {
  width: 8px
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #d8271f;
  border-radius: 8px
}

.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.image-holder img {
  object-position: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.skeleton-bg {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgd2lkdGg9IjEwMHB4IiBoZWlnaHQ9IjEwMHB4Ij4NCjxjaXJjbGUgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjeD0iNTAiIGN5PSI1MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNTA1MjU0IiBzdHJva2Utd2lkdGg9IjEwIiByPSI0NSIgc3Ryb2tlLWRhc2hhcnJheT0iMTY2IDQ0IiBzdHlsZT0iJiMxMDsgICAgLyogc3Ryb2tlLWRhc2hhcnJheTogMTY2IDQ0OyAqLyYjMTA7Ij4NCiAgPGFuaW1hdGVUcmFuc2Zvcm0gYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiB0eXBlPSJyb3RhdGUiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiBkdXI9IjFzIiB2YWx1ZXM9IjAgNTAgNTA7MzYwIDUwIDUwIiBrZXlUaW1lcz0iMDsxIi8+DQo8L2NpcmNsZT4NCjwvc3ZnPg==)
    no-repeat center/2.08vw;
}

p {
  margin: 0 0 0.69vw;
}

p:last-child {
  margin-bottom: 0;
}

.slide-wrap {
  position: relative;
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.11vw;
  font-weight: 400;
  line-height: 1.5;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.container {
  position: relative;
  width: 100%;
  max-width: 76.39vw;
  margin-right: auto;
  margin-left: auto;
}

.l-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.88vw;
}

.l-social__link {
  display: flex;
  transition: all 0.3s;
}

.l-social__link:hover {
  opacity: 0.7;
}

.l-social__link.youtube svg {
  width: 2.53vw;
  height: 1.78vw;
}

.l-social__link.x svg {
  width: 2.47vw;
  height: 2.47vw;
}

.noise {
  background: url(./images/noise.png);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  mix-blend-mode: difference;
  pointer-events: none;
}

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

  100% {
    opacity: 1;
  }
}

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

  60% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes scaleanm {
  0% {
    transform: scale(1.1, 1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}

@keyframes scaleanm2 {
  0% {
    transform: scale(1.1, 1.1);
    opacity: 0;
  }

  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}

@keyframes hurueru {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(0.14vw, 0.07vw);
  }

  50% {
    transform: translate(-0.07vw, 0.14vw);
  }

  75% {
    transform: translate(0.14vw, 0);
  }

  100% {
    transform: translate(0, 0.07vw);
  }
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes fadeinup {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2.08vw, 0);
    transform: translate3d(0, 2.08vw, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.ef {
  visibility: hidden;
  animation-name: none;
}

.ef.ef-init {
  visibility: visible;
  animation-name: fadeinup;
  animation-duration: 0.7s;
}

#l-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

#l-loader.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.l-loader-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.l-loader__logo{
  display: flex;
  margin: 0 auto;
  margin-bottom: 3.61vw;
  max-width: 32.01vw;
  animation: scaleanm2 3s cubic-bezier(0.03, 0.54, 0.56, 0.99) 0s forwards;
}

#percentNumber{
  color: #D8271F;
  text-align: center;
  font-family: "Attic Antique";
  font-style: normal;
  font-weight: 400;
  font-size: 3.47vw;
  line-height: 1;
}

.l-loader__time span{
  color: #D8271F;
  text-align: center;
  font-family: "Attic Antique";
  font-style: normal;
  font-weight: 400;
  font-size: 2.5vw;
  line-height: 1;
}

.l-loader__image-absolute{
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  opacity: .7;
}

.l-loader__image-absolute.blood_1{
  width: 28.5%;
}

.l-loader__image-absolute.blood_2{
  top: unset;
  left: unset;
  right: 12%;
  bottom: 14%;
  width: 26%;
}

.l-loader__image-absolute.blood_3{
  top: unset;
  left: 16%;
  bottom: -1%;
  width: 38.2%;
}

/* .l-loader__image-absolute.blood_1 {
  background: url(./images/banner/banner_blood.png) no-repeat center;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
}

.l-loader__image-absolute.blood_2 {
  background: url(./images/banner/banner_blood_2.png) no-repeat center;
  background-size: contain;
  width: 28%;
  height: 43%;
  top: unset;
  left: unset;
  right: 12.50vw;
  bottom: 8.33vw;
  animation: scaleanm2 3s cubic-bezier(0.03, 0.54, 0.56, 0.99) 0s forwards;
  z-index: -1;
}

.l-loader__image-absolute.blood_3 {
  background: url(./images/banner/banner_blood_3.png) no-repeat center;
  background-size: contain;
  animation: scaleanm2 3s cubic-bezier(0.03, 0.54, 0.56, 0.99) 0s forwards;
  top: unset;
  left: 18%;
  bottom: 0;
  width: 36%;
  height: 23%;
} */

#l-loader__icon {
  width: 4.17vw;
  height: 4.17vw;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 0.14vw solid #ddd;
  border-top-color: #d8271f;
  background: transparent;
  animation: spin 1s linear infinite;
}

body.loading{
  overflow: hidden;
}

/* body.loading #l-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  pointer-events: unset;
} */

/* Header.css */

.l-social-fixed {
  position: absolute;
  z-index: 100;
  top: 1.6vw;
  left: 1.94vw;
}

.l-fixed {
position: fixed !important;
}

.d-none {
  display: none;
}

.close-menu {
  transform: translate(34.17vw) !important;
}
.l-social-fixed .l-social {
  gap: 0.35vw;
}

.l-social-fixed .l-social__link {
  width: 4.44vw;
  height: 4.44vw;
  align-items: center;
  justify-content: center;
  background: #d8271f;
}

.l-social-fixed .l-social__link:hover {
  opacity: 1;
  background: #b10800;
}

.l-menu-trigger {
  padding: 0;
  border: none;
  background: #d8271f;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.44vw;
  height: 4.44vw;
  cursor: pointer;
  position: absolute;
  top: 1.6vw;
  right: 1.94vw;
  transition: all 0.3s;
  z-index: 100;
}

.l-menu-trigger:hover {
  background: #b10800;
}

.l-menu-trigger__span {
  position: relative;
  width: 2.78vw;
  height: 2.15vw;
}

.l-menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  right: 0;
  width: 100%;
  height: 0.14vw;
  background-color: #fff;
  border-radius: 0.21vw;
  transition: all 0.5s;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .l-menu-trigger span {
  background-color: #f20700;
}

.l-menu-trigger span:nth-of-type(1) {
  top: 0;
}

body.menu-open .l-menu-trigger span:nth-of-type(1) {
  transform: translateY(1.04vw) rotate(-45deg);
  width: 2.78vw;
  background-color: #000;
}

.l-menu-trigger span:nth-of-type(2) {
  top: 0.97vw;
  width: 2.78vw;
}

body.menu-open .l-menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

.l-menu-trigger span:nth-of-type(3) {
  bottom: 0;
  width: 2.78vw;
}

body.menu-open .l-menu-trigger span:nth-of-type(3) {
  transform: translateY(-0.97vw) rotate(45deg);
  width: 2.78vw;
  background-color: #000;
}

.l-offcanvas-menu {
  background: linear-gradient(135deg, #d82720 0%, #651216 100%);
  width: 34.17vw;
  height: 100%;
  padding: 0 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  transform: translate(34.17vw);
  transition: all 0.5s;
  overflow-y: auto;
}

body.menu-open .l-offcanvas-menu {
  transform: translateZ(0);
}

.l-offcanvas-menu-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  z-index: 1;
}

.l-offcanvas__logo {
  display: flex;
  width: 21.13vw;
  margin: 0 auto;
  margin-bottom: 3.19vw;
}

.l-main-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.l-main-menu ul li a {
  display: block;
  color: #fff;
  font-family: "Attic Antique";
  font-size: 2.22vw;
  font-style: normal;
  text-align: center;
  text-decoration: none;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.04vw;
  white-space: nowrap;
  transition: all 0.3s;
}

.l-main-menu ul li a:hover {
  opacity: 0.7;
}

.l-main-menu ul > li {
  margin-bottom: 2.78vw;
}

.l-offcanvas-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3.06vw;
}

.l-offcanvas-bottom a {
  color: #fff;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 1.04vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* Section */

.l-section {
  position: relative;
}

.l-section__title {
  color: #d9281f;
  text-align: center;
  font-family: "Attic Antique";
  font-size: 4.86vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.33vw;
  margin: 0 0 6.81vw;
}

.hide-pc {
    display: none;
}

/* Banner */

.l-banner__heading {
  position: absolute;
  z-index: 1;
  top: 10.88vw;
  left: 6.32vw;
  width: 32.01vw;
  height: auto;
  animation: scaleanm2 2s ease 3.5s forwards;
  opacity: 0;
}

.l-banner__heading-descript {
  color: #d8271f;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 1.04vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.94vw;
  letter-spacing: -0.09vw;
}

.l-banner__heading-descript p.firstp {
  font-size: 1.81vw;
  line-height: 2.57vw;
  letter-spacing: -0.22vw;
  margin-top: 2vw;
  margin-bottom: 0.83vw;
}

.l-banner__heading-descript p:last-child {
  margin: 0;
}

.l-banner__image-titlev {
  position: absolute;
  z-index: 1;
  top: 11.46vw;
  right: 6.88vw;
  width: 3.19vw;
  height: auto;
  animation: scaleanm2 2s ease 4s forwards;
  opacity: 0;
}

.l-banner__image-titlev img {
  animation: hurueru 0.2s infinite;
}

.l-banner__time {
  position: absolute;
  bottom: 6.04vw;
  left: 50%;
  transform: translateX(-50%);
  width: 51.74vw;
  text-align: center;
  z-index: 10;
}

.l-banner__time-wrap {
  animation: scaleanm2 2s ease 4.5s forwards;
  opacity: 0;
}

.l-banner__time p.firstp {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-size: 2.43vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05vw;
  margin-top: 1.53vw;
}

.l-banner__time p.firstp span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.22vw;
  height: 2.22vw;
  border: 0.07vw solid #fff;
  border-radius: 50%;
  font-size: 1.39vw;
  line-height: 1;
  font-weight: 900;
}

.l-banner__time p.firstp small {
  font-size: 1.81vw;
  letter-spacing: 0.04vw;
}

.l-banner__time p.lastp {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-size: 1.39vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08vw;
  margin-bottom: 1.53vw;
}

.l-banner__time span.line {
  display: block;
  background: url(./images/banner_top_line.png) no-repeat center;
  width: 100%;
  height: 0.14vw;
}

.l-banner__image {
  animation: scaleanm2 4s cubic-bezier(0.03, 0.54, 0.56, 0.99) 3s forwards;
  opacity: 0;
}

/* Episode */

.l-episode {
  z-index: 1;
  padding-top: 0.94vw;
}

.l-episode .container {
  max-width: 69.44vw;
}

.l-episode .noise {
  height: 84%;
}

.l-episode__image-absolute {
  position: absolute;
  top: 0;
  left: 0;
}

.l-episode__image-absolute.blood_1 {
  background: url(./images/episode/episode_blood_1.png) no-repeat center;
  background-size: cover;
  width: 34%;
  height: 51%;
  top: -13%;
  opacity: 0;
}

.l-episode.show .l-episode__image-absolute.blood_1 {
  animation: scaleanm2 3s cubic-bezier(0.03, 0.54, 0.56, 0.99) 0s forwards;
}

.l-episode__image-absolute.blood_2 {
  top: unset;
  left: unset;
  bottom: -18%;
  right: 4%;
  background: url(./images/episode/episode_blood_2.png) no-repeat center;
  background-size: cover;
  width: 26%;
  height: 48%;
  opacity: 0;
}

.l-episode.show .l-episode__image-absolute.blood_2 {
  animation: scaleanm2 3s cubic-bezier(0.03, 0.54, 0.56, 0.99) 0.5s forwards;
}

.l-episode-descript {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.88vw 0 1.88vw;
}

.l-episode-descript a{
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-decoration: none;
  text-edge: cap;
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.18vw;
  padding: 0 8.611vw;
  background: #c2140b;
  height: 3.47vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-episode-descript a:hover, .l-episode-descript a.active{
  background: #9d0800;
}

.l-episode-navs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.28vw;
}

.l-episode-navs a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.47vw;
  background: #c2140b;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 500;
  line-height: 2.01vw;
  letter-spacing: 0.18vw;
  text-decoration: none;
  transition: all 0.3s;
}

.l-episode-navs a:hover,
.l-episode-navs a.active {
  background: #9d0800;
}

/* About */

.l-about {
  padding: 16.6vw 0 20.07vw;
  margin-top: 0.9vw;
}

.l-about__mask {
  background: url(./images/about/about_mask.png) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 24.5%;
  position: absolute;
  top: -11%;
  left: 0;
}

.l-about__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(./images/about/about_bg.jpg) no-repeat top center;
  background-size: cover;
  opacity: 0;
}

.l-about.show .l-about__image {
  animation: fadein 3s cubic-bezier(0.03, 0.54, 0.56, 0.99) 0.5s forwards;
}

.l-about__image-absolute {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.l-about.show .l-about__image-absolute {
  animation: fadein 3s 0.7s forwards;
}

.l-about__image-absolute.i_1 {
  background: url(./images/about/about_image_1.png) no-repeat center;
  background-size: cover;
  width: 24%;
  height: 30%;
  z-index: 9;
}

.l-about__image-absolute.i_2 {
  top: 15%;
  left: unset;
  right: 0;
  background: url(./images/about/about_image_2.png) no-repeat center;
  background-size: cover;
  width: 22%;
  height: 25%;
  z-index: 9;
  animation-delay: 1.5s !important;
}

.l-about__image-absolute.i_3 {
  top: unset;
  bottom: 9%;
  background: url(./images/about/about_image_3.png) no-repeat center;
  background-size: cover;
  width: 28%;
  height: 26%;
  animation-delay: 2s !important;
}

.l-about__image-absolute.i_4 {
  top: unset;
  left: unset;
  bottom: 7%;
  right: 0;
  background: url(./images/about/about_image_4.png) no-repeat center;
  background-size: cover;
  width: 32%;
  height: 29%;
  z-index: 9;
  animation-delay: 2.5s !important;
}

.l-about__image-absolute.blood_1 {
  background: url(./images/about/about_blood_1.png) no-repeat center;
  background-size: cover;
  width: 23%;
  height: 30%;
  top: 21%;
}

.l-about__image-absolute.blood_2 {
  top: 9%;
  left: unset;
  right: 0;
  background: url(./images/about/about_blood_2.png) no-repeat center;
  background-size: cover;
  mix-blend-mode: multiply;
  width: 14%;
  height: 18%;
}

.l-about__image-absolute.blood_3 {
  top: unset;
  left: unset;
  bottom: 30%;
  right: 0;
  background: url(./images/about/about_blood_3.png) no-repeat center;
  background-size: cover;
  width: 13%;
  height: 20%;
}

.l-about .container {
  max-width: 54.17vw;
}

.l-about .l-section__title {
  margin-bottom: 5.21vw;
  opacity: 0;
}

.l-about.show .l-section__title {
  animation: fadeinup 3s cubic-bezier(0.03, 0.54, 0.56, 0.99) 1s forwards;
}

.l-about__descript {
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 1.39vw;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  opacity: 0;
}

.l-about.show .l-about__descript {
  animation: fadeinup 3s cubic-bezier(0.03, 0.54, 0.56, 0.99) 1.5s forwards;
}

.l-about__descript p:not(:last-child) {
  margin-bottom: 2.78vw;
}

.l-about__descript p small {
  font-size: 1.11vw;
}

/* Cast */

.l-castStaff {
  background: url(./images/cast/cast_bg.png) no-repeat top center;
  background-size: cover;
  padding: 16.88vw 0 8.68vw;
  margin-top: -16.88vw;
}

.l-castStaffs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3.33vw;
}

.l-castStaff-item.i_1 {
  grid-row-start: 1;
  grid-column: span 2 / span 2;
}

.l-castStaff-item.i_2 {
  grid-row-start: 1;
  grid-column: span 2 / span 2;
  grid-column-start: 3;
}

.l-castStaff-item {
  grid-row-start: 2;
}

.l-castStaff-item.i_1 .l-castStaff-item__thumbnail,
.l-castStaff-item.i_2 .l-castStaff-item__thumbnail {
  padding-top: 66%;
}

.l-castStaff-item__thumbnail {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}

.l-castStaff-item__thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.l-castStaff-item__title {
  margin: 2.22vw 0 1.25vw;
  color: #d9281f;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 2.08vw;
  font-style: normal;
  font-weight: 700;
  line-height: 2.29vw;
}

.l-castStaff-item__title small {
  font-size: 1.53vw;
}

.l-castStaff-item__sub {
  color: #d9281f;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Attic Antique";
  font-size: 0.83vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1vw;
}

.l-castStaff__descript {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4.31vw;
  border: 0.07vw solid #d6281f99;
  padding: 2.5vw 3.68vw 2.43vw 5vw;
}

.l-castStaff__descript-heading {
  flex: 0 0 auto;
  width: 12.8vw;
  color: #d9281f;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 2.22vw;
  font-style: normal;
  font-weight: 700;
  line-height: 2.71vw;
}

.l-castStaff__descript-heading small {
  font-size: 1.81vw;
}

.l-castStaff__descript-content {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-size: 1.11vw;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}

/* Gallery */

.l-gallery .swiper {
  padding-right: 15%;
}

.l-gallery-item__image {
  position: relative;
  overflow: hidden;
  padding-top: 66%;
}

.l-gallery-item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Sponsor */

.l-sponsor {
  background: #272727;
  padding: 5.35vw 0 5.28vw;
}

.l-sponsor-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  row-gap: 4.58vw;
  max-width: 38.26vw;
  margin: 0 auto;
}

.l-sponsor__heading-image {
  flex: 0 0 auto;
  width: 20.35vw;
}

.l-sponsor__heading-image a{
  text-decoration: none;
}

.l-sponsor__heading-image p {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-size: 1.39vw;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  margin: 1.39vw 0 0;
}

.l-sponsor__group-image {
  flex: 0 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.57vw;
}

.l-sponsor__descript {
  color: #d8271f;
  leading-trim: both;
  text-edge: cap;
  font-size: 1.04vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.94vw;
  letter-spacing: -0.09vw;
}

.l-sponsor__descript .firstp {
  font-size: 1.81vw;
  line-height: 2.57vw;
  letter-spacing: -0.22vw;
  margin: 0 0 2.08vw;
}

/* Footer */

.l-footer {
  position: relative;
  background: linear-gradient(135deg, #d82720 0%, #651216 100%);
  padding: 2.01vw 0 2.15vw;
}

.l-footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.l-footer__heading-image {
  width: 13.89vw;
  height: auto;
}

.l-footer__policy {
  margin: 0.69vw 0 1.88vw;
}

.l-footer__policy a {
  color: #fff;
  text-align: center;
  font-size: 0.833vw;
  font-style: normal;
  font-weight: 700;
  line-height: 2.01vw;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.l-footer__policy div {
  font-size: 0.833vw;
  text-align: center;
  margin-top: 0.6944vw;
  color: #fff;
}

.l-footer__copyright {
  margin: 0.69vw 0 0;
  color: #fff;
  text-align: center;
  font-size: 0.69vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
