:root {
  --color-lightblue: #1ebcde;
  --color-red: #c7000a;
  --color-gray: #cecece;
  --color-white: #fff;
  --color-black: #000;
  --color-gray2: #414546;
  --color-pink: #efc1b4;
  --color-pink2: #e59f86;
}

:root {
  --in-sine: cubic-bezier(.47, 0, .745, .715);
  --out-sine: cubic-bezier(.39, .575, .565, 1);
  --in-out-sine: cubic-bezier(.445, .05, .55, .95);
  --in-quad: cubic-bezier(.55, .085, .68, .53);
  --out-quad: cubic-bezier(.25, .46, .45, .94);
  --in-out-quad: cubic-bezier(.455, .03, .515, .955);
  --in-cubic: cubic-bezier(.55, .055, .675, .19);
  --out-cubic: cubic-bezier(.215, .61, .355, 1);
  --in-out-cubic: cubic-bezier(.645, .045, .355, 1);
  --in-quart: cubic-bezier(.895, .03, .685, .22);
  --out-quart: cubic-bezier(.165, .84, .44, 1);
  --in-out-quart: cubic-bezier(.77, 0, .175, 1);
  --in-quint: cubic-bezier(.755, .05, .855, .06);
  --out-quint: cubic-bezier(.23, 1, .32, 1);
  --in-out-quint: cubic-bezier(.86, 0, .07, 1);
  --in-expo: cubic-bezier(.95, .05, .795, .035);
  --out-expo: cubic-bezier(.19, 1, .22, 1);
  --in-out-expo: cubic-bezier(1, 0, 0, 1);
  --in-circ: cubic-bezier(.6, .04, .98, .335);
  --out-circ: cubic-bezier(.075, .82, .165, 1);
  --in-out-circ: cubic-bezier(.785, .135, .15, .86);
  --in-back: cubic-bezier(.6, -.28, .735, .045);
  --out-back: cubic-bezier(.175, .885, .32, 1.275);
  --in-out-back: cubic-bezier(.68, -.55, .265, 1.55);
}

@keyframes loop_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes deco_loop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.p-special .l-section__ttl {
  margin-bottom: 59px;
}
@media screen and (max-width: 767px) {
  .p-special .l-section__ttl {
    margin-bottom: 38px;
  }
}
.p-special__content {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}
.p-special__bnr {
  display: flex;
  flex-wrap: wrap;
  transform: translateY(30px);
  opacity: 0;
}
.l-section.is-active .p-special__bnr {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.15s;
}
@media screen and (max-width: 767px) {
  .p-special__bnr {
    display: block;
  }
}
.p-special__bnr-item {
  width: 48%;
}
@media screen and (min-width: 768px) {
  .p-special__bnr-item {
    margin-right: 4%;
    margin-top: 4%;
  }
  .p-special__bnr-item:nth-child(2n) {
    margin-right: 0;
  }
  .p-special__bnr-item:nth-child(n+1):nth-child(-n+2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-special__bnr-item {
    width: 100%;
  }
  .p-special__bnr-item + .p-special__bnr-item {
    margin-top: 5.5%;
  }
}
.p-special__bnr-item a {
  display: block;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (hover: hover) {
  .p-special__bnr-item a:hover {
    transform: scale(1.05);
  }
}
.p-special__cap {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  color: var(--color-lightblue);
  font-size: 40px;
  letter-spacing: 1.5px;
  transform: translateY(30px);
  opacity: 0;
}
.l-section.is-active .p-special__cap {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-special__cap {
    font-size: 30px;
    letter-spacing: 0.5px;
  }
}

.p-special_charavisual {
  margin-top: 55px;
  transform: translateY(30px);
  opacity: 0;
}
.l-section.is-active .p-special_charavisual {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-special_charavisual {
    margin-top: 36px;
  }
}
.p-special_charavisual__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-special_charavisual__list {
    display: block;
  }
}
.p-special_charavisual__list-item {
  width: 48%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-special_charavisual__list-item {
    margin-right: 4%;
    margin-top: 4%;
  }
  .p-special_charavisual__list-item:nth-child(2n) {
    margin-right: 0;
  }
  .p-special_charavisual__list-item:nth-child(n+1):nth-child(-n+2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-special_charavisual__list-item {
    width: 100%;
  }
  .p-special_charavisual__list-item + .p-special_charavisual__list-item {
    margin-top: 8%;
  }
}
.p-special_charavisual__list-ttl {
  font-weight: 700;
  line-height: 1.4;
  margin-top: 16px;
  color: #414545;
}
@media screen and (max-width: 767px) {
  .p-special_charavisual__list-ttl {
    margin-top: 13px;
    font-size: 13px;
    letter-spacing: 1px;
  }
}