/*------------------------------------------------------------
    Reset
------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

table,
input,
textarea,
select,
option {
  line-height: 1.1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a {
  transition: 0.3s ease-in-out;
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

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

html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: #FFCBC7;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #333333;
  height: 100%;
  width: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  scrollbar-width: thin;
}

a {
  display: block;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.l-footer {
  overflow: hidden;
}
.l-footer p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: center;
  background-color: #EEEEEE;
  padding: 145px 0 63px;
}
@media screen and (min-width: 1921px) {
  .l-footer p {
    padding: 7.5520833333vw 0 3.28125vw;
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .l-footer p {
    padding: 10.0694444444vw 0 4.375vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer p {
    padding: 20.5333333333vw 0 13.8666666667vw;
    font-size: 2.6666666667vw;
  }
}

.c-sidebar {
  width: 313px;
  height: 463px;
  background-color: #F6FFD0;
  z-index: 10;
  border-radius: 60px;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 87px;
  right: 48px;
  display: none;
  z-index: 1100;
}
.c-sidebar__link {
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 900;
}
.c-sidebar__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 55px;
}
.c-sidebar__item {
  position: relative;
}
.c-sidebar__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -31.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 8px;
  background-color: #FFACA6;
  border-radius: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .c-sidebar {
    width: 260px;
    height: 400px;
    border-radius: 48px;
    top: 64px;
    right: 32px;
  }
  .c-sidebar__link {
    font-size: 2.2rem;
  }
  .c-sidebar__list {
    gap: 40px;
  }
  .c-sidebar__item:not(:last-child)::after {
    bottom: -24px;
    width: 22px;
    height: 6px;
    border-radius: 60px;
  }
}
@media screen and (max-width: 767px) {
  .c-sidebar {
    width: 240px;
    height: 360px;
    border-radius: 40px;
    top: 40px;
    right: 14px;
  }
  .c-sidebar__link {
    font-size: 2rem;
  }
  .c-sidebar__list {
    gap: 40px;
  }
  .c-sidebar__item:not(:last-child)::after {
    bottom: -24px;
    width: 20px;
    height: 6px;
    border-radius: 60px;
  }
}

.c-hamburger {
  position: fixed;
  pointer-events: auto;
  background-color: #fff;
  cursor: pointer;
  border: 0;
  width: 96px;
  height: 88px;
  border-radius: 44px;
  top: 24px;
  right: 24px;
  z-index: 2000;
  transition: border-radius 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c-hamburger.js-active {
  border-radius: 50%;
}
.c-hamburger.js-active .c-hamburger__bar {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.c-hamburger.js-active .c-hamburger__wrapBar .c-hamburger__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.c-hamburger.js-active .c-hamburger__wrapBar .c-hamburger__bar:nth-child(2) {
  transform: translateY(-8px) rotate(-45deg);
}
.c-hamburger.js-active .c-hamburger__wrapBar .c-hamburger__bar:nth-child(3) {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .c-hamburger.js-active .c-hamburger__wrapBar .c-hamburger__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .c-hamburger.js-active .c-hamburger__wrapBar .c-hamburger__bar:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
@media screen and (max-width: 767px) {
  .c-hamburger.js-active .c-hamburger__wrapBar .c-hamburger__bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  .c-hamburger.js-active .c-hamburger__wrapBar .c-hamburger__bar:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }
}
.c-hamburger__wrapBar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9px;
  width: 36px;
  height: 46px;
}
.c-hamburger__bar {
  width: 36px;
  height: 7px;
  background-color: #000;
  border-radius: 4px;
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .c-hamburger {
    width: 96px;
    height: 88px;
    border-radius: 44px;
    top: 24px;
    right: 24px;
  }
  .c-hamburger__wrapBar {
    gap: 9px;
    width: 36px;
    height: 46px;
  }
  .c-hamburger__bar {
    width: 36px;
    height: 7px;
    border-radius: 4px;
  }
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    width: 42px;
    height: 38px;
    border-radius: 50px;
    gap: 4px;
    top: 20px;
    right: 14px;
    z-index: 2000;
  }
  .c-hamburger__wrapBar {
    gap: 4px;
    width: 16px;
    height: 17px;
  }
  .c-hamburger__bar {
    width: 16px;
    height: 3px;
    border-radius: 32.59px;
  }
}

.l-container__1440 {
  max-width: 1440px;
  height: 100%;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 1921px) {
  .l-container__1440 {
    max-width: 75vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .l-container__1440 {
    max-width: 100vw;
  }
}
@media screen and (max-width: 767px) {
  .l-container__1440 {
    max-width: 384vw;
  }
}

.p-anime__pinkHero.is-scroll {
  height: 100vh;
}
.p-anime__pinkHero.is-scroll img {
  top: 50%;
  transform: translate(-50%, -50%);
}

body.is-scroll-zero,
html.is-scroll-zero {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: unset !important;
}

body.is-scroll-zero::-webkit-scrollbar,
html.is-scroll-zero::-webkit-scrollbar,
body.is-scroll-zero::-webkit-scrollbar-thumb,
html.is-scroll-zero::-webkit-scrollbar-thumb,
body.is-scroll-zero::-webkit-scrollbar-track,
html.is-scroll-zero::-webkit-scrollbar-track {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}

.js-greenText {
  opacity: 0;
}

@keyframes fillColorSt3 {
  0% {
    fill: #F8BB9B;
  }
  50% {
    fill: #D8D8D8;
  }
  100% {
    fill: #F8BB9B;
  }
}
@keyframes fillColorSt4 {
  0% {
    fill: #FE3E2E;
  }
  33% {
    fill: #F5E54B;
  }
  66% {
    fill: #63DA17;
  }
  100% {
    fill: #FE3E2E;
  }
}
@keyframes fillColorSt3Reverse {
  0% {
    fill: #F8BB9B;
  }
  50% {
    fill: #D8D8D8;
  }
  100% {
    fill: #F8BB9B;
  }
}
@keyframes fillColorSt4Reverse {
  0% {
    fill: #FE3E2E;
  }
  33% {
    fill: #63DA17;
  }
  66% {
    fill: #F5E54B;
  }
  100% {
    fill: #FE3E2E;
  }
}
@keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutText {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.js-change-color .st3 {
  animation: fillColorSt3 1.3s linear forwards;
}
.js-change-color .st4 {
  animation: fillColorSt4 1.3s linear forwards;
}

.js-show-text {
  animation: fadeInText 1.6s ease-out 1.3s forwards;
}

.js-show-text-rv {
  animation: fadeOutText 1.6s cubic-bezier(0.55, 0.06, 0.68, 0.19) forwards;
}

.js-change-color-rv .st3 {
  animation: fillColorSt3Reverse 1.3s linear 1.6s forwards;
}
.js-change-color-rv .st4 {
  animation: fillColorSt4Reverse 1.3s linear 1.6s forwards;
}

body.isScrollBack .p-anime__greenHeroWrap {
  opacity: 0;
}
body.isScrollBack .p-anime__pinkHero {
  display: block !important;
}

img {
  width: 100%;
  height: 100%;
}

.l-main {
  overflow: hidden;
}

.p-anime__title {
  width: 505px;
  height: 196px;
  margin: 0 auto;
  position: relative;
  z-index: 11;
}
@media screen and (min-width: 1921px) {
  .p-anime__title {
    width: 26.3020833333vw;
    height: 10.2083333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__title {
    width: 35.0694444444vw;
    height: 13.6111111111vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__title {
    width: 81.0666666667vw;
    height: 31.4666666667vw;
  }
}
.p-anime__btn {
  width: 524px;
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 96px auto 0;
  font-size: 3rem;
  line-height: 1.7;
  background-color: #D93627;
  border-radius: 90px;
  color: #ffffff;
  position: relative;
  font-weight: 900;
}
@media screen and (min-width: 1921px) {
  .p-anime__btn {
    width: 27.2916666667vw;
    height: 5.8333333333vw;
    margin-top: 5vw;
    font-size: 1.5625vw;
    border-radius: 4.6875vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__btn {
    width: 36.3888888889vw;
    height: 7.7777777778vw;
    margin-top: 6.6666666667vw;
    font-size: 2.0833333333vw;
    border-radius: 6.25vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__btn {
    width: 91.7333333333vw;
    height: 19.7333333333vw;
    margin-top: 10.4vw;
    font-size: 5.3333333333vw;
    border-radius: 15.7333333333vw;
  }
}
.p-anime__btnArrow {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background-color: transparent;
  display: flex;
  justify-content: center;
  position: absolute;
  align-items: center;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.p-anime__btnArrow svg {
  width: 28px;
  height: 29px;
}
@media screen and (min-width: 1921px) {
  .p-anime__btnArrow {
    width: 2.7604166667vw;
    height: 2.7604166667vw;
    border-width: 0.15625vw;
    right: 1.25vw;
  }
  .p-anime__btnArrow svg {
    width: 1.4583333333vw;
    height: 1.5104166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__btnArrow {
    width: 3.6805555556vw;
    height: 3.6805555556vw;
    border-width: 0.2083333333vw;
    right: 1.6666666667vw;
  }
  .p-anime__btnArrow svg {
    width: 1.9444444444vw;
    height: 2.0138888889vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__btnArrow {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
    border-width: 0.5333333333vw;
    right: 4.2666666667vw;
  }
  .p-anime__btnArrow svg {
    width: 4.8vw;
    height: 4.8vw;
  }
}
.p-anime__gap-icon {
  position: relative;
  padding-left: 125px;
}
@media screen and (min-width: 1921px) {
  .p-anime__gap-icon {
    padding-left: 6.5104166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__gap-icon {
    padding-left: 8.6805555556vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__gap-icon {
    padding-left: 18.6666666667vw;
  }
}
.p-anime__gap-icon img {
  width: 28px;
  height: 25px;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 1921px) {
  .p-anime__gap-icon img {
    width: 1.4583333333vw;
    height: 1.3020833333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__gap-icon img {
    width: 1.9444444444vw;
    height: 1.7361111111vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__gap-icon img {
    width: 4.2666666667vw;
    height: 3.7333333333vw;
  }
}
.p-anime__gap-icon img:first-child {
  left: 18px;
}
@media screen and (min-width: 1921px) {
  .p-anime__gap-icon img:first-child {
    left: 0.9375vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__gap-icon img:first-child {
    left: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__gap-icon img:first-child {
    left: 2.6666666667vw;
  }
}
.p-anime__gap-icon img:last-child {
  right: 18px;
}
@media screen and (min-width: 1921px) {
  .p-anime__gap-icon img:last-child {
    right: 0.9375vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__gap-icon img:last-child {
    right: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__gap-icon img:last-child {
    right: 2.6666666667vw;
  }
}
.p-anime__shape {
  clip-path: polygon(13% 0, 87% 0, 100% 100%, 0% 100%);
  flex-shrink: 0;
  position: relative;
  margin-bottom: -1px;
}
.p-anime__shape:first-child {
  margin-left: -76px;
}
@media screen and (min-width: 1921px) {
  .p-anime__shape:first-child {
    margin-left: -3.9583333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__shape:first-child {
    margin-left: -5.2777777778vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__shape:first-child {
    margin-left: -13.3333333333vw;
  }
}
.p-anime__shape img {
  width: 28px;
  height: 25px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
@media screen and (min-width: 1921px) {
  .p-anime__shape img {
    width: 1.4583333333vw;
    height: 1.3020833333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__shape img {
    width: 1.9444444444vw;
    height: 1.7361111111vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__shape img {
    width: 4.2666666667vw;
    height: 3.7333333333vw;
  }
}
.p-anime__shape img:first-child {
  left: 18px;
}
@media screen and (min-width: 1921px) {
  .p-anime__shape img:first-child {
    left: 0.9375vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__shape img:first-child {
    left: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__shape img:first-child {
    left: 2.6666666667vw;
  }
}
.p-anime__shape img:last-child {
  right: 18px;
}
@media screen and (min-width: 1921px) {
  .p-anime__shape img:last-child {
    right: 0.9375vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__shape img:last-child {
    right: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__shape img:last-child {
    right: 2.6666666667vw;
  }
}
.p-anime__line {
  display: flex;
  align-items: center;
  margin-bottom: -1px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-anime__line::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    top: -3px;
  }
}
.p-anime__line01::before {
  background-color: #FFCBC7;
}
.p-anime__line01 .p-anime__shape {
  background-color: #DFF5EC;
}
.p-anime__line02 {
  background-color: #C5E6D7;
  z-index: 10;
}
.p-anime__line02::before {
  background-color: #C5E6D7;
}
.p-anime__line02 .p-anime__shape {
  background-color: #FAECD1;
}
.p-anime__line03 {
  background-color: #FAECD1;
}
.p-anime__line03::before {
  background-color: #FAECD1;
}
.p-anime__line03 .p-anime__shape {
  background-color: #FFCBC7;
}
.p-anime__pink {
  height: 100vh;
  margin-bottom: 24px;
}
.p-anime__pink .l-container__1440 {
  max-height: 915px;
}
@media screen and (min-width: 1921px) {
  .p-anime__pink {
    margin-bottom: 1.25vw;
  }
  .p-anime__pink .l-container__1440 {
    max-height: 47.65625vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__pink {
    margin-bottom: 1.6666666667vw;
  }
  .p-anime__pink .l-container__1440 {
    max-height: 63.5416666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__pink {
    margin-bottom: 0;
    height: 170.4vw;
  }
  .p-anime__pink .l-container__1440 {
    max-height: 100%;
  }
}
.p-anime__pinkDokan {
  width: 1372px;
  height: 977px;
  margin: 0 auto;
  transform: translateY(-62px);
  z-index: -1;
}
@media screen and (min-width: 1921px) {
  .p-anime__pinkDokan {
    width: 71.4583333333vw;
    height: 50.8854166667vw;
    transform: translateY(-3.2291666667vw);
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__pinkDokan {
    width: 95.2777777778vw;
    height: 67.8472222222vw;
    transform: translateY(-4.3055555556vw);
  }
}
@media screen and (max-width: 767px) {
  .p-anime__pinkDokan {
    width: 126.9333333333vw;
    height: 154.9333333333vw;
    position: absolute;
    margin: unset;
    transform: unset;
    bottom: -22.1333333333vw;
    right: -29.6vw;
  }
}
.p-anime__pinkScroll {
  position: absolute;
  width: 56px;
  height: 192px;
  bottom: -2px;
  right: 30px;
  z-index: 2;
  animation: arrowmove 1.2s ease-in-out infinite;
}
@media screen and (min-width: 1921px) {
  .p-anime__pinkScroll {
    width: 2.9166666667vw;
    height: 10vw;
    bottom: -0.1041666667vw;
    right: 1.5625vw;
    animation: arrowmove-pc 1.2s ease-in-out infinite;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__pinkScroll {
    width: 3.8888888889vw;
    height: 13.3333333333vw;
    bottom: -0.1388888889vw;
    right: 2.0833333333vw;
    animation: arrowmove-pc 1.2s ease-in-out infinite;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__pinkScroll {
    width: 14.9333333333vw;
    height: 51.2vw;
    bottom: -0.5333333333vw;
    right: 8vw;
    animation: arrowmove-sp 1.2s ease-in-out infinite;
  }
}
@keyframes arrowmove {
  0% {
    bottom: 70px;
  }
  50% {
    bottom: 50px;
  }
  100% {
    bottom: 70px;
  }
}
@keyframes arrowmove-pc {
  0% {
    bottom: 4.8611111111vw;
  }
  50% {
    bottom: 3.4722222222vw;
  }
  100% {
    bottom: 4.8611111111vw;
  }
}
@keyframes arrowmove-sp {
  0% {
    bottom: 18.6666666667vw;
  }
  50% {
    bottom: 13.3333333333vw;
  }
  100% {
    bottom: 18.6666666667vw;
  }
}
.p-anime__pinkArm {
  position: absolute;
  top: -215px;
  right: -150px;
  width: 634px;
  height: 449px;
}
@media screen and (min-width: 1921px) {
  .p-anime__pinkArm {
    top: -11.1979166667vw;
    right: -7.8125vw;
    width: 33.0208333333vw;
    height: 23.3854166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__pinkArm {
    top: -14.9305555556vw;
    right: -10.4166666667vw;
    width: 44.0277777778vw;
    height: 31.1805555556vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__pinkArm {
    top: -25.6vw;
    right: -38.1333333333vw;
    width: 75.4666666667vw;
    height: 56.5333333333vw;
  }
}
.p-anime__pinkVoice {
  position: absolute;
  z-index: 2;
}
.p-anime__pinkVoice01 {
  width: 340px;
  height: 327px;
  top: 136px;
  left: 227px;
  opacity: 0;
}
@media screen and (min-width: 1921px) {
  .p-anime__pinkVoice01 {
    width: 17.7083333333vw;
    height: 17.03125vw;
    top: 7.0833333333vw;
    left: 11.8229166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__pinkVoice01 {
    width: 23.6111111111vw;
    height: 22.7083333333vw;
    top: 9.4444444444vw;
    left: 15.7638888889vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__pinkVoice01 {
    width: 68.2666666667vw;
    height: 69.3333333333vw;
    left: 0.2666666667vw;
    top: -1.0666666667vw;
    bottom: 0;
  }
}
.p-anime__pinkVoice02 {
  width: 206px;
  height: 420px;
  right: 203px;
  top: 117px;
}
@media screen and (min-width: 1921px) {
  .p-anime__pinkVoice02 {
    width: 10.7291666667vw;
    height: 21.875vw;
    right: 10.5729166667vw;
    top: 6.09375vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__pinkVoice02 {
    width: 14.3055555556vw;
    height: 29.1666666667vw;
    right: 14.0972222222vw;
    top: 8.125vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__pinkVoice02 {
    width: 24.5333333333vw;
    height: 50.1333333333vw;
    bottom: 0;
    right: 4vw;
    top: 13.0666666667vw;
  }
}
.p-anime__pinkHero {
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1440px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1440/915;
  z-index: 997;
  transition: bottom 0.2s linear;
}
@media screen and (min-width: 1921px) {
  .p-anime__pinkHero {
    width: 75vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__pinkHero {
    top: 10.1333333333vw;
    transform: translateX(-50%);
    aspect-ratio: 376/412;
    z-index: 1000;
  }
}
.p-anime__pinkHero img {
  position: absolute;
  width: 434px;
  height: 451px;
  left: 50%;
  transform: translateX(-50%);
  top: 27%;
}
@media screen and (min-width: 1921px) {
  .p-anime__pinkHero img {
    width: 22.6041666667vw;
    height: 23.4895833333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__pinkHero img {
    width: 30.1388888889vw;
    height: 31.3194444444vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__pinkHero img {
    top: 36.8vw;
    width: 65.6vw;
    height: 68vw;
  }
}
.p-anime__pinkSNS {
  width: 484px;
  position: absolute;
  left: 27px;
  bottom: 69px;
  z-index: 999;
}
@media screen and (min-width: 1921px) {
  .p-anime__pinkSNS {
    width: 25.2083333333vw;
    left: 1.40625vw;
    bottom: 3.59375vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__pinkSNS {
    width: 33.6111111111vw;
    left: 1.875vw;
    bottom: 4.7916666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__pinkSNS {
    width: 83.7333333333vw;
    transform: translateX(-50%);
    left: 50%;
    bottom: 23.4666666667vw;
  }
}
.p-anime__pinkSNSSocial {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 90px;
  padding: 16px 0;
}
@media screen and (min-width: 1921px) {
  .p-anime__pinkSNSSocial {
    gap: 1.0416666667vw;
    border-radius: 4.6875vw;
    padding: 0.8333333333vw 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__pinkSNSSocial {
    gap: 1.3888888889vw;
    border-radius: 6.25vw;
    padding: 1.1111111111vw 0;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__pinkSNSSocial {
    gap: 3.4666666667vw;
    border-radius: 15.2vw;
    padding: 2.9333333333vw 0;
  }
}
.p-anime__pinkSNSTitle {
  font-size: 2.6rem;
  font-family: "Fredoka", sans-serif;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 9px;
}
@media screen and (min-width: 1921px) {
  .p-anime__pinkSNSTitle {
    font-size: 1.3541666667vw;
    margin-bottom: 0.46875vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__pinkSNSTitle {
    font-size: 1.8055555556vw;
    margin-bottom: 0.625vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__pinkSNSTitle {
    font-size: 4.408vw;
    margin-bottom: 2.9333333333vw;
  }
}
.p-anime__pinkSNSItem {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1921px) {
  .p-anime__pinkSNSItem {
    width: 2.7083333333vw;
    height: 2.7083333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__pinkSNSItem {
    width: 3.6111111111vw;
    height: 3.6111111111vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__pinkSNSItem {
    width: 8.816vw;
    height: 8.816vw;
  }
}
.p-anime__green {
  background-color: #DFF5EC;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-anime__green {
    padding-bottom: 114.6666666667vw;
  }
}
.p-anime__green .l-container__1440 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-anime__green .l-container__1440 {
    height: 100%;
    display: block;
  }
}
.p-anime__greenCity {
  position: relative;
  width: 100%;
  z-index: -1;
  background-color: #DFF5EC;
}
.p-anime__greenCity img {
  transform: translateY(15px);
}
.p-anime__greenCity::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 12px;
  display: block;
  background-color: #DFF5EC;
  top: -3px;
}
.p-anime__greenCity::after {
  content: "";
  width: 100%;
  height: 90px;
  display: block;
  background-color: #C5E6D7;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenCity::after {
    height: 3.125vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenCity::after {
    height: 4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenCity::after {
    display: none;
  }
}
.p-anime__greenContent {
  display: flex;
  position: relative;
  z-index: 2;
  padding-top: 61px;
  gap: 79px;
  justify-content: center;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenContent {
    padding-top: 3.1770833333vw;
    gap: 4.1145833333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenContent {
    padding-top: 4.2361111111vw;
    gap: 5.4861111111vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenContent {
    flex-direction: column;
    padding-top: 34.6666666667vw;
    gap: 4.2666666667vw;
  }
}
.p-anime__greenPoem {
  max-width: 764px;
  position: absolute;
  right: 156px;
  z-index: 9999;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenPoem {
    max-width: 39.7916666667vw;
    right: 8.125vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenPoem {
    max-width: 53.0555555556vw;
    right: 10.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenPoem {
    max-width: 106.6666666667vw;
    padding-left: 7.4666666667vw;
    right: unset;
    top: 121.3333333333vw;
    margin-top: -2.9333333333vw;
  }
}
.p-anime__greenPoem li {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.8;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenPoem li {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenPoem li {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenPoem li {
    font-size: 3.7333333333vw;
  }
}
.p-anime__greenSpacer {
  height: 53px;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenSpacer {
    height: 2.7604166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenSpacer {
    height: 3.6805555556vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenSpacer {
    height: 6.6666666667vw;
  }
}
.p-anime__greenHero {
  width: 453px;
  height: 457px;
  position: relative;
  z-index: 2;
}
.p-anime__greenHero img {
  position: absolute;
  inset: 0;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenHero {
    width: 23.59375vw;
    height: 23.8020833333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenHero {
    width: 31.4583333333vw;
    height: 31.7361111111vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenHero {
    width: 65.6vw;
    height: 68vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenHero02 {
    margin: 0 auto;
  }
}
.p-anime__greenHeroTitle {
  font-size: 3rem;
  color: #D93627;
  font-weight: 900;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenHeroTitle {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenHeroTitle {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenHeroTitle {
    font-size: 4.5333333333vw;
  }
}
.p-anime__greenHeroNote {
  font-size: 1.6rem;
  color: #D93627;
  display: flex;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenHeroNote {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenHeroNote {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenHeroNote {
    font-size: 2.9333333333vw;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
.p-anime__greenHeroText {
  position: absolute;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.p-anime__greenHeroText01 {
  width: 433px;
  height: 287px;
  left: 124px;
  top: -56px;
  background-image: url("../images/pc/green_textbg-01.png");
}
@media screen and (min-width: 1921px) {
  .p-anime__greenHeroText01 {
    width: 22.5520833333vw;
    height: 14.9479166667vw;
    left: 6.4583333333vw;
    top: -2.9166666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenHeroText01 {
    width: 30.0694444444vw;
    height: 19.9305555556vw;
    left: 8.6111111111vw;
    top: -3.8888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenHeroText01 {
    background-image: url("../images/sp/green_textbg-01.png");
    width: 70.9333333333vw;
    height: 67.2vw;
    left: 10.9333333333vw;
    top: 26.6666666667vw;
  }
}
.p-anime__greenHeroText01 .p-anime__greenHeroContent {
  padding: 45px;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenHeroText01 .p-anime__greenHeroContent {
    padding: 2.34375vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenHeroText01 .p-anime__greenHeroContent {
    padding: 3.125vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenHeroText01 .p-anime__greenHeroContent {
    padding: 47.4666666667vw 2.6666666667vw 5.3333333333vw 13.0666666667vw;
  }
}
.p-anime__greenHeroText02 {
  width: 476px;
  height: 157px;
  top: -104px;
  right: 251px;
  background-image: url("../images/pc/green_textbg-02.png");
}
@media screen and (min-width: 1921px) {
  .p-anime__greenHeroText02 {
    width: 24.7916666667vw;
    height: 8.1770833333vw;
    top: -5.4166666667vw;
    right: 13.0729166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenHeroText02 {
    width: 33.0555555556vw;
    height: 10.9027777778vw;
    top: -7.2222222222vw;
    right: 17.4305555556vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenHeroText02 {
    background-image: url("../images/sp/green_textbg-02.png");
    width: 58.1333333333vw;
    height: 29.8666666667vw;
    left: unset;
    right: 3.2vw;
    top: -27.2vw;
  }
}
.p-anime__greenHeroText02 .p-anime__greenHeroContent {
  padding: 33px 36px 31px 132px;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenHeroText02 .p-anime__greenHeroContent {
    padding: 1.71875vw 1.875vw 1.6145833333vw 6.875vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenHeroText02 .p-anime__greenHeroContent {
    padding: 2.2916666667vw 2.5vw 2.1527777778vw 9.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenHeroText02 .p-anime__greenHeroContent {
    padding: 5.0666666667vw 5.0666666667vw 5.8666666667vw;
  }
}
.p-anime__greenHeroText03 {
  width: 407px;
  height: 157px;
  bottom: -96px;
  right: 170px;
  background-image: url("../images/pc/green_textbg-03.png");
}
@media screen and (min-width: 1921px) {
  .p-anime__greenHeroText03 {
    width: 21.1979166667vw;
    height: 8.1770833333vw;
    bottom: -5vw;
    right: 8.8541666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenHeroText03 {
    width: 28.2638888889vw;
    height: 10.9027777778vw;
    bottom: -6.6666666667vw;
    right: 11.8055555556vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenHeroText03 {
    background-image: url("../images/sp/green_textbg-03.png");
    width: 67.7333333333vw;
    height: 76.8vw;
    bottom: unset;
    top: 46.4vw;
    right: 10.9333333333vw;
  }
}
.p-anime__greenHeroText03 .p-anime__greenHeroContent {
  padding: 30px 35px 34px 136px;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenHeroText03 .p-anime__greenHeroContent {
    padding: 1.5625vw 1.8229166667vw 1.7708333333vw 7.0833333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenHeroText03 .p-anime__greenHeroContent {
    padding: 2.0833333333vw 2.4305555556vw 2.3611111111vw 9.4444444444vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenHeroText03 .p-anime__greenHeroContent {
    padding: 57.3333333333vw 15.4666666667vw 5.3333333333vw 16vw;
  }
}
.p-anime__greenArm {
  width: 1249px;
  height: 485px;
  position: absolute;
  left: -299px;
  top: -237px;
  z-index: 3;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenArm {
    width: 65.0520833333vw;
    height: 25.2604166667vw;
    left: -15.5729166667vw;
    top: -12.34375vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenArm {
    width: 85.4166666667vw;
    height: 33.6805555556vw;
    left: -20.7638888889vw;
    top: -16.4583333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenArm {
    width: 162.6666666667vw;
    height: 62.4vw;
    left: -83.2vw;
    top: 18.4vw;
  }
}
.p-anime__greenArm02 {
  width: 1249px;
  height: 485px;
  top: 190px;
  left: -680px;
  position: absolute;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenArm02 {
    width: 65.0520833333vw;
    height: 25.2604166667vw;
    top: 9.8958333333vw;
    left: -35.4166666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenArm02 {
    width: 86.7361111111vw;
    height: 33.6805555556vw;
    top: 13.1944444444vw;
    left: -47.2222222222vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenArm02 {
    width: 162.6666666667vw;
    height: 62.6666666667vw;
    top: 111.4666666667vw;
    left: -82.4vw;
  }
}
.p-anime__greenInner {
  position: relative;
  width: 100%;
}
.p-anime__greenInner .p-anime__title {
  position: absolute;
  top: -251px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1921px) {
  .p-anime__greenInner .p-anime__title {
    top: -13.0729166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenInner .p-anime__title {
    top: -17.4305555556vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenInner .p-anime__title {
    top: 1.0666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenInner {
    padding-top: 46.1333333333vw;
  }
}
.p-anime__greenHeroWrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 4;
}
.p-anime__greenIcon {
  width: 95px;
  height: 95px;
  position: absolute;
  z-index: 2;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenIcon {
    width: 4.9479166667vw;
    height: 4.9479166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenIcon {
    width: 6.5972222222vw;
    height: 6.5972222222vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenIcon {
    width: 14.4vw;
    height: 14.4vw;
  }
}
.p-anime__greenIcon01 {
  top: 114px;
  left: -50px;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenIcon01 {
    top: 5.9375vw;
    left: -2.6041666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenIcon01 {
    top: 7.9166666667vw;
    left: -3.4722222222vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenIcon01 {
    top: 130.9333333333vw;
    left: 2.1333333333vw;
  }
}
.p-anime__greenIcon02 {
  top: -134px;
  right: -19px;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenIcon02 {
    top: -6.9791666667vw;
    right: -0.9895833333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenIcon02 {
    top: -9.3055555556vw;
    right: -1.3194444444vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenIcon02 {
    top: 66.9333333333vw;
    right: 1.6vw;
  }
}
.p-anime__greenIcon03 {
  right: 42px;
  top: -60px;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenIcon03 {
    right: 2.1875vw;
    top: -3.125vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenIcon03 {
    right: 2.9166666667vw;
    top: -4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenIcon03 {
    right: -1.0666666667vw;
    top: 173.3333333333vw;
  }
}
.p-anime__greenIcon04 {
  right: 270px;
  top: 166px;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenIcon04 {
    right: 14.0625vw;
    top: 8.6458333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenIcon04 {
    right: 18.75vw;
    top: 11.5277777778vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenIcon04 {
    right: 92vw;
    top: 141.3333333333vw;
  }
}
.p-anime__greenIcon05 {
  top: -184px;
  left: -63px;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenIcon05 {
    top: -9.5833333333vw;
    left: -3.28125vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenIcon05 {
    top: -12.7777777778vw;
    left: -4.375vw;
  }
}
.p-anime__greenIcon06 {
  left: 231px;
  top: 443px;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenIcon06 {
    left: 12.03125vw;
    top: 23.0729166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenIcon06 {
    left: 16.0416666667vw;
    top: 30.7638888889vw;
  }
}
.p-anime__greenIcon07 {
  right: 123px;
  top: -183px;
  width: 167px;
  height: 166px;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenIcon07 {
    right: 6.40625vw;
    top: -9.53125vw;
    width: 8.6979166667vw;
    height: 8.6458333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenIcon07 {
    right: 8.5416666667vw;
    top: -12.7083333333vw;
    width: 11.5972222222vw;
    height: 11.5277777778vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenIcon07 {
    right: 0;
    top: 40vw;
    width: 24.8vw;
    height: 22.9333333333vw;
  }
}
.p-anime__greenIcon08 {
  right: -29px;
  top: 305px;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenIcon08 {
    right: -1.5104166667vw;
    top: 15.8854166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenIcon08 {
    right: -2.0138888889vw;
    top: 21.1805555556vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenIcon08 {
    right: unset;
    top: 66.6666666667vw;
    left: -4.2666666667vw;
  }
}
.p-anime__greenIcon09 {
  left: 311px;
  top: 551px;
  width: 167px;
  height: 166px;
  display: block;
}
@media screen and (min-width: 1921px) {
  .p-anime__greenIcon09 {
    left: 16.1979166667vw;
    top: 28.6979166667vw;
    width: 8.6979166667vw;
    height: 8.6458333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__greenIcon09 {
    left: 21.5972222222vw;
    top: 38.2638888889vw;
    width: 11.5972222222vw;
    height: 11.5277777778vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__greenIcon09 {
    display: none;
  }
}
.p-anime__yellow {
  background-color: #FAECD1;
  padding: 130px 0 217px;
  position: relative;
  z-index: 11;
}
@media screen and (min-width: 1921px) {
  .p-anime__yellow {
    padding: 6.7708333333vw 0 11.3020833333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__yellow {
    padding: 9.0277777778vw 0 15.0694444444vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__yellow {
    padding: 19.2vw 0 29.8666666667vw;
  }
  .p-anime__yellow .p-anime__title {
    transform: translateY(-7.4666666667vw);
  }
}
.p-anime__yellowArm {
  width: 1639px;
  height: 625px;
  position: absolute;
  left: -1144px;
  top: -377px;
  z-index: 10;
  opacity: 0;
  transform: translateX(-100px);
}
@media screen and (min-width: 1921px) {
  .p-anime__yellowArm {
    width: 85.3645833333vw;
    height: 32.5520833333vw;
    left: -59.5833333333vw;
    top: -19.6354166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__yellowArm {
    width: 113.8194444444vw;
    height: 43.4027777778vw;
    left: -79.4444444444vw;
    top: -26.1805555556vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__yellowArm {
    width: 238.6666666667vw;
    height: 94.4vw;
    left: 25.6vw;
    top: -51.7333333333vw;
  }
}
.p-anime__yellowHero {
  width: 380px;
  height: 395px;
  margin-bottom: 11px;
  opacity: 0;
  transform: translateY(-50px);
}
@media screen and (min-width: 1921px) {
  .p-anime__yellowHero {
    width: 19.7916666667vw;
    height: 20.5729166667vw;
    margin-bottom: 0.5729166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__yellowHero {
    width: 26.3888888889vw;
    height: 27.4305555556vw;
    margin-bottom: 0.7638888889vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__yellowHero {
    margin: 0 auto;
    width: 52.2666666667vw;
    height: 54.1333333333vw;
    margin-bottom: -1px;
  }
}
.p-anime__yellowWrapHero {
  text-align: center;
}
.p-anime__yellowWrapHero span {
  font-size: 2.4rem;
  line-height: 1.7;
  font-family: "Zen Kaku Gothic New", sans-serif;
  opacity: 0;
}
@media screen and (min-width: 1921px) {
  .p-anime__yellowWrapHero span {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__yellowWrapHero span {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__yellowWrapHero span {
    font-size: 3.2vw;
  }
}
.p-anime__yellowWrapHero h3 {
  opacity: 0;
}
.p-anime__yellowWrapHero h3 img {
  width: 314px;
  height: 77px;
  margin: 0 auto;
}
@media screen and (min-width: 1921px) {
  .p-anime__yellowWrapHero h3 img {
    width: 16.3541666667vw;
    height: 4.0104166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__yellowWrapHero h3 img {
    width: 21.8055555556vw;
    height: 5.3472222222vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__yellowWrapHero h3 img {
    width: 43.2vw;
    height: 17.3333333333vw;
    transform: translateY(-2.4vw);
  }
}
.p-anime__yellowTxt {
  width: 760px;
  height: 530px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/pc/yellow_textbg.png);
}
@media screen and (min-width: 1921px) {
  .p-anime__yellowTxt {
    width: 39.5833333333vw;
    height: 27.6041666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__yellowTxt {
    width: 52.7777777778vw;
    height: 36.8055555556vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__yellowTxt {
    margin: 0 auto;
    width: 91.4666666667vw;
    height: 64vw;
  }
}
.p-anime__yellowList {
  padding: 91px 70px 83px 115px;
}
@media screen and (min-width: 1921px) {
  .p-anime__yellowList {
    padding: 4.7395833333vw 3.6458333333vw 4.3229166667vw 5.9895833333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__yellowList {
    padding: 6.3194444444vw 4.8611111111vw 5.7638888889vw 7.9861111111vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__yellowList {
    padding: 6.1333333333vw 5.3333333333vw 4vw 6.9333333333vw;
  }
}
.p-anime__yellowItem {
  display: flex;
  align-items: flex-start;
  font-size: 2.6rem;
  line-height: 1.7;
}
.p-anime__yellowItem:nth-child(5) {
  margin-top: 6px;
}
.p-anime__yellowItem:nth-child(5) .p-anime__yellowLabel, .p-anime__yellowItem:nth-child(6) .p-anime__yellowLabel {
  min-width: unset;
}
.p-anime__yellowItem:nth-child(5) {
  margin-top: 38px;
}
@media screen and (min-width: 1921px) {
  .p-anime__yellowItem:nth-child(5) {
    margin-top: 1.9791666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__yellowItem:nth-child(5) {
    margin-top: 2.6388888889vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__yellowItem:nth-child(5) {
    margin-top: 5.0666666667vw;
  }
}
.p-anime__yellowItem:nth-child(6) {
  margin-top: 14px;
}
@media screen and (min-width: 1921px) {
  .p-anime__yellowItem:nth-child(6) {
    margin-top: 0.7291666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__yellowItem:nth-child(6) {
    margin-top: 0.9722222222vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__yellowItem:nth-child(6) {
    margin-top: 1.0666666667vw;
  }
}
@media screen and (min-width: 1921px) {
  .p-anime__yellowItem {
    font-size: 1.3541666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__yellowItem {
    font-size: 1.8055555556vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__yellowItem {
    font-size: 3.7333333333vw;
  }
}
.p-anime__yellowLabel {
  min-width: 104px;
  text-align: left;
  font-weight: bold;
  flex-shrink: 0;
}
@media screen and (min-width: 1921px) {
  .p-anime__yellowLabel {
    min-width: 5.4166666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__yellowLabel {
    min-width: 7.2222222222vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__yellowLabel {
    min-width: 17.0666666667vw;
  }
}
.p-anime__yellowColon {
  flex-shrink: 0;
}
.p-anime__yellowValue {
  flex: 1;
}
.p-anime__yellowContent {
  display: flex;
  position: relative;
  z-index: 10;
  padding-top: 82px;
  gap: 23px;
  justify-content: center;
}
@media screen and (min-width: 1921px) {
  .p-anime__yellowContent {
    padding-top: 4.2708333333vw;
    gap: 1.1979166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__yellowContent {
    padding-top: 5.6944444444vw;
    gap: 1.5972222222vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__yellowContent {
    flex-direction: column;
    padding-top: 19.2vw;
    gap: 0;
  }
}
.p-anime__slide {
  padding: 151px 0 133px;
}
@media screen and (min-width: 1921px) {
  .p-anime__slide {
    padding: 7.8645833333vw 0 6.9270833333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slide {
    padding: 10.4861111111vw 0 9.2361111111vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__slide {
    padding: 16.2666666667vw 0 20.8vw;
  }
}
.p-anime__slideArm {
  width: 396px;
  height: 546px;
  right: -28px;
  top: -104px;
  position: absolute;
  z-index: 10;
}
@media screen and (min-width: 1921px) {
  .p-anime__slideArm {
    width: 20.625vw;
    height: 28.4375vw;
    right: -1.4583333333vw;
    top: -5.4166666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slideArm {
    width: 27.5vw;
    height: 37.9166666667vw;
    right: -1.9444444444vw;
    top: -7.2222222222vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__slideArm {
    width: 59.4666666667vw;
    height: 81.8666666667vw;
    right: -25.3333333333vw;
    top: 5.0666666667vw;
  }
}
.p-anime__slideText {
  text-align: center;
  line-height: 1.7;
  position: relative;
  z-index: 10;
}
.p-anime__slideText--large {
  margin-top: 30px;
  font-size: 3rem;
}
@media screen and (min-width: 1921px) {
  .p-anime__slideText--large {
    margin-top: 1.5625vw;
    font-size: 1.5625vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slideText--large {
    margin-top: 2.0833333333vw;
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__slideText--large {
    margin-top: 7.2vw;
    font-size: 3.7333333333vw;
  }
}
.p-anime__slideText--small {
  margin-top: 22px;
  font-size: 2rem;
}
@media screen and (min-width: 1921px) {
  .p-anime__slideText--small {
    margin-top: 1.1458333333vw;
    font-size: 1.0416666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slideText--small {
    margin-top: 1.5277777778vw;
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__slideText--small {
    margin-top: 2.9333333333vw;
    font-size: 3.2vw;
  }
}
.p-anime__slideContent {
  position: relative;
  width: 100%;
  max-width: 1252px;
  margin: 0 auto;
}
@media screen and (min-width: 1921px) {
  .p-anime__slideContent {
    max-width: 65.2083333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slideContent {
    max-width: 86.9444444444vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__slideContent {
    max-width: 333.8666666667vw;
    margin: 14.4vw auto 0;
  }
}
.p-anime__slideList {
  display: flex;
  justify-content: space-between;
  padding: 0 98px;
  position: relative;
  margin-bottom: -44px;
  z-index: 99;
}
.p-anime__slideList .owl-stage {
  padding-top: 47px;
  padding-bottom: 5px;
}
@media screen and (min-width: 1921px) {
  .p-anime__slideList .owl-stage {
    padding-top: 2.4479166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slideList .owl-stage {
    padding-top: 3.2638888889vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__slideList .owl-stage {
    padding-top: 14.4vw;
  }
}
.p-anime__slideList .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 463px;
  max-width: 519px;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
}
@media screen and (min-width: 1921px) {
  .p-anime__slideList .owl-nav {
    top: 24.1145833333vw;
    max-width: 27.03125vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slideList .owl-nav {
    top: 32.1527777778vw;
    max-width: 36.0416666667vw;
  }
}
.p-anime__slideList .owl-nav .owl-prev,
.p-anime__slideList .owl-nav .owl-next {
  width: 77px;
  height: 78px;
}
.p-anime__slideList .owl-nav .owl-prev.disabled,
.p-anime__slideList .owl-nav .owl-next.disabled {
  opacity: 0.8;
  pointer-events: none;
}
@media screen and (min-width: 1921px) {
  .p-anime__slideList .owl-nav .owl-prev,
  .p-anime__slideList .owl-nav .owl-next {
    width: 4.0104166667vw;
    height: 4.0625vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slideList .owl-nav .owl-prev,
  .p-anime__slideList .owl-nav .owl-next {
    width: 5.3472222222vw;
    height: 5.4166666667vw;
  }
}
.p-anime__slideList .owl-nav .owl-prev:hover,
.p-anime__slideList .owl-nav .owl-next:hover {
  opacity: 0.8;
}
.p-anime__slideList .owl-dots {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 484px;
  gap: 21px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1921px) {
  .p-anime__slideList .owl-dots {
    top: 25.2083333333vw;
    gap: 1.09375vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slideList .owl-dots {
    top: 33.6111111111vw;
    gap: 1.4583333333vw;
  }
}
.p-anime__slideList .owl-dots .owl-dot {
  display: inline-block;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 3px solid #333333;
  border-radius: 50%;
}
@media screen and (min-width: 1921px) {
  .p-anime__slideList .owl-dots .owl-dot {
    width: 1.7708333333vw;
    height: 1.7708333333vw;
    border: 0.15625vw solid #333333;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slideList .owl-dots .owl-dot {
    width: 2.3611111111vw;
    height: 2.3611111111vw;
    border: 0.2083333333vw solid #333333;
  }
}
.p-anime__slideList .owl-dots .owl-dot.active {
  background-color: #333333;
}
@media screen and (min-width: 1921px) {
  .p-anime__slideList {
    padding: 0 5.1041666667vw;
    margin-bottom: -2.2916666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slideList {
    padding: 0 6.8055555556vw;
    margin-bottom: -3.0555555556vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__slideList {
    padding: 0 4.2666666667vw;
    margin-bottom: -10.1333333333vw;
  }
}
.p-anime__slideItem {
  transition: border 0.3s ease;
  height: 222px;
  flex: 1;
  max-width: 100%;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 23px 39px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-anime__slideItem:hover {
  border: 7px solid #d93627;
  opacity: unset;
}
@media screen and (min-width: 1921px) {
  .p-anime__slideItem:hover {
    border: 0.3645833333vw solid #d93627;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slideItem:hover {
    border: 0.4861111111vw solid #d93627;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__slideItem:hover {
    border: 0;
  }
}
@media screen and (min-width: 1921px) {
  .p-anime__slideItem {
    height: 11.5625vw;
    padding: 1.1979166667vw 2.03125vw;
    border-radius: 0.5208333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slideItem {
    height: 15.4166666667vw;
    padding: 1.5972222222vw 2.7083333333vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__slideItem {
    height: 39.4666666667vw;
    max-width: calc(50% - 2vw);
    padding: 4vw 6.6666666667vw;
    border-radius: 1.8666666667vw;
  }
}
.p-anime__slideItem span {
  font-size: 2.6rem;
  line-height: 1;
  font-family: "Fredoka", sans-serif;
}
@media screen and (min-width: 1921px) {
  .p-anime__slideItem span {
    font-size: 1.3541666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slideItem span {
    font-size: 1.8055555556vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__slideItem span {
    font-size: 4.5333333333vw;
  }
}
.p-anime__slideArrow {
  width: 41px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFA49D;
  border-radius: 50%;
  position: absolute;
  bottom: 2px;
  right: 3px;
}
.p-anime__slideArrow svg {
  width: 19px;
  height: 22px;
}
@media screen and (min-width: 1921px) {
  .p-anime__slideArrow {
    width: 2.1354166667vw;
    height: 2.1354166667vw;
    bottom: 0.1041666667vw;
    right: 0.15625vw;
  }
  .p-anime__slideArrow svg {
    width: 0.9895833333vw;
    height: 1.1458333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slideArrow {
    width: 2.8472222222vw;
    height: 2.8472222222vw;
    bottom: 0.1388888889vw;
    right: 0.2083333333vw;
  }
  .p-anime__slideArrow svg {
    width: 1.3194444444vw;
    height: 1.5277777778vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__slideArrow {
    width: 7.2vw;
    height: 7.2vw;
    bottom: 0.5333333333vw;
    right: 0.8vw;
  }
  .p-anime__slideArrow svg {
    width: 3.2vw;
    height: 4vw;
  }
}
.p-anime__slidePDF {
  width: 210px;
  height: 35px;
  margin: -39px auto 0;
  position: relative;
  z-index: 12;
}
@media screen and (min-width: 1921px) {
  .p-anime__slidePDF {
    width: 10.9375vw;
    height: 1.8229166667vw;
    margin: -2.03125vw auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__slidePDF {
    width: 14.5833333333vw;
    height: 2.4305555556vw;
    margin: -2.7083333333vw auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__slidePDF {
    width: 33.0666666667vw;
    height: 5.6vw;
    margin: 12.2666666667vw auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__slideTable {
    width: 223.2vw;
    height: 23.2vw;
    margin-left: -57%;
  }
  .p-anime__slideTable.mb-44 {
    margin-bottom: 11.7333333333vw;
  }
}
.p-anime__follow {
  background-color: #ffffff;
  position: relative;
  height: 497px;
}
@media screen and (min-width: 1921px) {
  .p-anime__follow {
    height: 25.8854166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__follow {
    height: 34.5138888889vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__follow {
    height: 116.5333333333vw;
  }
}
.p-anime__follow .l-container__1440 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 42px;
}
@media screen and (min-width: 1921px) {
  .p-anime__follow .l-container__1440 {
    gap: 2.1875vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__follow .l-container__1440 {
    gap: 2.9166666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__follow .l-container__1440 {
    justify-content: flex-start;
  }
}
.p-anime__followContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 42px;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 1921px) {
  .p-anime__followContent {
    gap: 2.1875vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__followContent {
    gap: 2.9166666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__followContent {
    justify-content: flex-start;
    gap: 5.6vw;
  }
}
.p-anime__followHero {
  position: absolute;
  left: 122px;
  top: 147px;
  z-index: 2;
}
@media screen and (min-width: 1921px) {
  .p-anime__followHero {
    left: 6.3541666667vw;
    top: 7.65625vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__followHero {
    left: 8.4722222222vw;
    top: 10.2083333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__followHero {
    left: 45.3333333333vw;
    top: 67.7333333333vw;
  }
}
.p-anime__followHeroInner {
  position: relative;
  width: fit-content;
}
.p-anime__followHeroInner img:first-child {
  width: 281px;
  height: 283px;
}
@media screen and (min-width: 1921px) {
  .p-anime__followHeroInner img:first-child {
    width: 14.6354166667vw;
    height: 14.7395833333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__followHeroInner img:first-child {
    width: 19.5138888889vw;
    height: 19.6527777778vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__followHeroInner img:first-child {
    width: 44.5333333333vw;
    height: 44.8vw;
  }
}
.p-anime__followHeroInner img:last-child {
  width: 159px;
  height: 153px;
  position: absolute;
  top: -85px;
  right: -73px;
}
@media screen and (min-width: 1921px) {
  .p-anime__followHeroInner img:last-child {
    width: 8.28125vw;
    height: 7.96875vw;
    top: -4.4270833333vw;
    right: -3.8020833333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__followHeroInner img:last-child {
    width: 11.0416666667vw;
    height: 10.625vw;
    top: -5.9027777778vw;
    right: -5.0694444444vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__followHeroInner img:last-child {
    width: 28.2666666667vw;
    height: 26.9333333333vw;
    top: -20.8vw;
    right: -7.4666666667vw;
  }
}
.p-anime__followTitle {
  font-size: 3.2rem;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  font-family: "Fredoka", sans-serif;
}
@media screen and (min-width: 1921px) {
  .p-anime__followTitle {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__followTitle {
    font-size: 2.2222222222vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__followTitle {
    padding-top: 15.7333333333vw;
    font-size: 8.5333333333vw;
  }
}
.p-anime__followCar {
  position: absolute;
  bottom: 0;
  left: 165px;
  width: 600px;
  height: 359px;
}
@media screen and (min-width: 1921px) {
  .p-anime__followCar {
    left: 8.59375vw;
    width: 31.25vw;
    height: 18.6979166667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__followCar {
    left: 11.4583333333vw;
    width: 41.6666666667vw;
    height: 24.9305555556vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__followCar {
    width: 78.9333333333vw;
    height: 47.4666666667vw;
    bottom: -4.8vw;
    left: -7.2vw;
  }
}
.p-anime__followSocial {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1921px) {
  .p-anime__followSocial {
    gap: 2.0833333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__followSocial {
    gap: 2.7777777778vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__followSocial {
    gap: 4vw;
  }
}
.p-anime__followItem img {
  width: 60px;
  height: 60px;
}
@media screen and (min-width: 1921px) {
  .p-anime__followItem img {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-anime__followItem img {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-anime__followItem img {
    width: 12vw;
    height: 12vw;
  }
}

/*# sourceMappingURL=style.css.map */
