/* root
  ====================================================*/
:root {
  --common-red: #e60000;
  --accent-yellow: #fddf61;
  --black: #1e1e1e;
  --white: #ffffff;
  --common-gray: #f0ece8;
  --BLACK-MIDDLE: #2d2d2d;

  --Makinas: "Mkinas 4 Square";
}

/* animation
  ====================================================*/
@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Fadein UP */
.inview {
  overflow: visible;
  opacity: 0.01;
}

.inview[data-animate="custom-fadeInUp"] {
  transform: translateY(20px);
  opacity: 0.01;
  transition:
    opacity 1.5s cubic-bezier(0.5, 1, 0.89, 1),
    transform 1.5s cubic-bezier(0.5, 1, 0.89, 1);
  will-change: opacity, transform;
}

.inview[data-animate="custom-fadeInUp"].is-show {
  transform: translateY(0);
  opacity: 1;
}

.sp-only {
  display: none;
}
.pc-only {
  display: block;
}
@media only screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}
/* contents
  ====================================================*/
.competitionsPage {
  margin-top: -2.8rem;
}
/* competitionsPage_title */
.competitionsPage_title {
  display: flex;
  justify-content: center;
}
.competitionsPage_title_text {
  color: var(--black);
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 2rem;
  border-bottom: solid 5px var(--common-red);
}
.competitionsPage_title_text::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 31px 17px 0 17px;
  border-color: var(--common-red) transparent transparent transparent;
  position: absolute;
  bottom: -31px;
  left: 50%;
  transform: translateX(-50%);
}
.competitionsPage_title_text::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 23px 12px 0 12px;
  border-color: var(--white) transparent transparent transparent;
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .competitionsPage {
    margin-top: 0;
  }
  .competitionsPage_title_text {
    font-size: 2.4rem;
    padding-bottom: 1rem;
    border-bottom: solid 3px var(--common-red);
  }
  .competitionsPage_title_text::before {
    border-width: 20px 12px 0 12px;
    bottom: -20px;
  }
  .competitionsPage_title_text::after {
    border-width: 15px 8px 0 8px;
    bottom: -14px;
  }
}

/* competitionsPage_header */
.competitionsPage_header {
  position: relative;
  max-width: 94.3rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.competitionsPage_header-title_left {
  position: absolute;
  left: 9.9rem;
}
.competitionsPage_header-title_right {
  position: absolute;
  right: 9.9rem;
}
.competitionsPage_header_title_flug {
  padding-top: 4.4rem;
  display: flex;
  justify-content: center;
}
.competitionsPage_header_title_flug span {
  color: var(--black);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 130%;
  background-color: var(--accent-yellow);
  padding: 0.6rem 1rem;
  height: 100%;
}
.competitionsPage_header_title_flug_rod {
  margin-top: -1rem;
}
.competitionsPage_header_title_text {
  color: var(--common-red);
  text-align: center;
  font-family: var(--Makinas);
  font-size: 8rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.header-title_anime_left01 {
  position: absolute;
  top: 0.9rem;
  left: 5.3rem;
  animation: blinking 1s ease-in-out infinite alternate;
  opacity: 0;
  animation-delay: 500ms;
}
.header-title_anime_left02 {
  position: absolute;
  top: 6.5rem;
  left: 1.5rem;
  animation: blinking 0.8s ease-in-out infinite alternate;
  opacity: 0;
}
.header-title_anime_left03 {
  position: absolute;
  top: 12.3rem;
  left: 9.1rem;
  animation: blinking 0.9s ease-in-out infinite alternate;
  opacity: 0;
  animation-delay: 400ms;
}
.header-title_anime_left04 {
  position: absolute;
  top: 17.8rem;
  left: 6.1rem;
  animation: blinking 0.7s ease-in-out infinite alternate;
  opacity: 0;
  animation-delay: 300ms;
}
.header-title_anime_right01 {
  position: absolute;
  top: 0;
  right: 5.7rem;
  animation: blinking 0.8s ease-in-out infinite alternate;
  opacity: 0;
}
.header-title_anime_right02 {
  position: absolute;
  top: 5.2rem;
  right: 2.5rem;
  animation: blinking 1s ease-in-out infinite alternate;
  animation-delay: 500ms;
  opacity: 0;
}
.header-title_anime_right03 {
  position: absolute;
  top: 12.4rem;
  right: 9.8rem;
  animation: blinking 1.5s ease-in-out infinite alternate;
  animation-delay: 600ms;
  opacity: 0;
}
.header-title_anime_right04 {
  position: absolute;
  top: 17.2rem;
  right: 5.5rem;
  animation: blinking 0.9s ease-in-out infinite alternate;
  animation-delay: 400ms;
  opacity: 0;
}
.competitionsPage_header_lead {
  color: var(--black);
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.09em;
  margin-top: 2rem;
}
@media screen and (max-width: 943px) {
  .competitionsPage_header-title_left {
    width: calc(100vw / 1000 * 216);
  }
  .competitionsPage_header-title_right {
    width: calc(100vw / 1000 * 216);
  }
  .competitionsPage_header_title_text {
    font-size: calc(100vw / 1000 * 80);
  }
}
@media screen and (max-width: 768px) {
  .competitionsPage_header_title_flug {
    padding-top: 5.4rem;
  }
  .competitionsPage_header_title_flug span {
    font-size: 1.2rem;
    padding: 0.2rem 0.5rem;
  }
  .competitionsPage_header_title_flug_rod {
    width: 0.8rem;
  }
  .competitionsPage_header-title_left {
    width: 12rem;
    left: 0;
  }
  .competitionsPage_header-title_right {
    width: 12rem;
    right: 0;
  }
  .competitionsPage_header_title_text {
    margin-top: 1rem;
    font-size: 4rem;
  }
  .header-title_anime_left01 {
    width: calc(2rem * 0.7);
    top: 0;
    left: 6rem;
  }
  .header-title_anime_left02 {
    width: calc(1.6rem * 0.7);
    top: 4.5rem;
    left: 4.5rem;
  }
  .header-title_anime_left03 {
    width: calc(2.5rem * 0.7);
    top: 7rem;
    left: 6rem;
  }
  .header-title_anime_left04 {
    width: calc(1.6rem * 0.7);
    top: 6rem;
    left: 2rem;
  }
  .header-title_anime_right01 {
    width: calc(2.5rem * 0.7);
    top: 0;
    right: 5.7rem;
  }
  .header-title_anime_right02 {
    width: calc(1.2rem * 0.7);
    top: 1.2rem;
    right: 2.5rem;
  }
  .header-title_anime_right03 {
    width: calc(1.4rem * 0.7);
    top: 4.4rem;
    right: 5.8rem;
  }
  .header-title_anime_right04 {
    width: calc(2.7rem * 0.7);
    top: 6.2rem;
    right: 0.5rem;
  }
  .competitionsPage_header_lead {
    font-size: 1.5rem;
  }
}

/* competitionsPage_numMenu */
.competitionsPage_numMenu {
  margin-top: 10rem;
}
.competitionsPage_numMenu_list {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6rem;
}
.competitionsPage_numMenu_item {
  max-width: calc((100% - 8rem) / 3);
  width: 100%;
  border-radius: 1rem;
  min-width: 34.5rem;
}
.competitionsPage_numMenu_link {
  padding: 2rem;
  background-color: var(--common-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;
  box-shadow: 1rem 1rem 0 0 #8c8c8c;
  transition: all 0.4s ease-out;
  position: relative;
  border: solid 3px var(--common-red);
  color: var(--white) !important;
}
.competitionsPage_numMenu_title {
  color: currentColor;
  font-family: var(--Makinas);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.competitionsPage_numMenu_num {
  color: var(--accent-yellow);
  font-family: var(--Makinas);
  font-size: 5.4rem;
  font-weight: 400;
  line-height: 120%;
  transition: all 0.4s ease-out;
}
.competitionsPage_numMenu_arrow {
  width: 4rem;
  height: 4rem;
  background: currentColor;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 2rem;
}
.competitionsPage_numMenu_arrow::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  border-top: solid 2px var(--common-red);
  border-right: solid 2px var(--common-red);
  position: absolute;
  transform: rotate(45deg);
  margin-left: -0.5rem;
}
.competitionsPage_numMenu_line {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
  height: 3px;
  background: url(../img/competitions/numMenu_line.png) no-repeat center center;
  background-size: cover;
}
.competitionsPage_numMenu_text {
  color: currentColor;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 120%;
}
@media only screen and (min-width: 769px) {
  .competitionsPage_numMenu_link:hover {
    opacity: 1;
    background-color: var(--white);
    color: var(--common-red) !important;
  }
  .competitionsPage_numMenu_link:hover .competitionsPage_numMenu_num {
    color: var(--common-red);
  }
  .competitionsPage_numMenu_link:hover .competitionsPage_numMenu_arrow::before {
    border-color: var(--white);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1179px) {
  .competitionsPage_numMenu_title {
    padding-right: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .competitionsPage_numMenu {
    margin-top: 6.4rem;
  }
  .competitionsPage_numMenu_list {
    gap: 2rem;
    margin-top: 4rem;
  }
  .competitionsPage_numMenu_item {
    min-width: auto;
    max-width: 32rem;
  }
  .competitionsPage_numMenu_link {
    padding: 1rem 4rem 1rem 1rem;
    box-shadow: 0.5rem 0.5rem 0 0 #8c8c8c;
  }
  .competitionsPage_numMenu_title {
    font-size: 2rem;
    flex-direction: row;
    align-items: baseline;
  }
  .competitionsPage_numMenu_num {
    font-size: 3rem;
  }
  .competitionsPage_numMenu_arrow {
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
  }
  .competitionsPage_numMenu_arrow::before {
    width: 0.6rem;
    height: 0.6rem;
    margin-left: -0.2rem;
  }
  .competitionsPage_numMenu_line {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
  .competitionsPage_numMenu_text {
    font-size: 1.5rem;
  }
}

/* competitionsPage_purpose */
.competitionsPage_purpose {
  margin-top: 10rem;
}
.competitionsPage_purpose_list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  margin-top: 6rem;
}
.competitionsPage_purpose_item {
  display: flex;
  align-items: stretch;
  max-width: calc((100% - 8rem) / 3);
  width: 100%;
  min-width: 34.5rem;
}
.competitionsPage_purpose_link {
  border-radius: 1rem;
  background: var(--accent-yellow);
  box-shadow: 1rem 1rem 0 0 #8c8c8c;
  display: flex;
  width: 100%;
  padding: 2rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  color: var(--black) !important;
  transition: all 0.3s ease-out;
  border: solid 3px var(--accent-yellow);
}
.competitionsPage_purpose_title {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--common-red);
  text-align: center;
  font-family: var(--Makinas);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.2;
}
.competitionsPage_purpose_title_arrow {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--black);
  border-radius: 50%;
}
.competitionsPage_purpose_title_arrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  position: absolute;
  transform: rotate(45deg);
  margin-left: -0.4rem;
}
.competitionsPage_purpose_line {
  width: 100%;
  height: 3px;
  background: url(../img/competitions/purpose_line.png) no-repeat center center;
  background-size: cover;
}
.competitionsPage_purpose_text {
  padding-top: 0.5rem;
  color: var(--black);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}
@media only screen and (min-width: 769px) {
  .competitionsPage_purpose_title_text {
    width: calc(100% - 3.4rem);
  }
  .competitionsPage_purpose_link:hover {
    opacity: 1;
    background-color: var(--white);
    border: solid 3px var(--common-red);
  }
  .competitionsPage_purpose_link:hover .competitionsPage_purpose_title {
    color: var(--common-red);
  }
  .competitionsPage_purpose_link:hover .competitionsPage_purpose_title_arrow {
    background: var(--common-red);
  }
  .competitionsPage_purpose_link:hover .competitionsPage_purpose_line {
    background: url(../img/competitions/numMenu_line.png) no-repeat center
      center;
    background-size: cover;
  }
  .competitionsPage_purpose_link:hover .competitionsPage_purpose_text {
    color: var(--common-red);
  }
}
@media only screen and (max-width: 768px) {
  .competitionsPage_purpose {
    margin-top: 6.4rem;
  }
  .competitionsPage_purpose_list {
    gap: 2rem;
    margin-top: 4rem;
  }
  .competitionsPage_purpose_item {
    min-width: auto;
    max-width: 32rem;
  }
  .competitionsPage_purpose_link {
    position: relative;
    gap: 0.5rem;
    padding: 1rem 4rem 1rem 1rem;
  }
  .competitionsPage_purpose_title {
    font-size: 2rem;
  }
  .competitionsPage_purpose_title_arrow {
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
  }
  .competitionsPage_purpose_text {
    font-size: 1.5rem;
  }
}

/* competitionsPage_category */
.competitionsPage_category {
  margin-top: 10rem;
}
.competitionsPage_category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  justify-content: center;
  margin-top: 6rem;
}
.competitionsPage_category_item {
  max-width: calc((100% - 9.6rem) / 4);
  width: 100%;
  min-width: 29rem;
}
.competitionsPage_category_link {
  border-radius: 1rem;
  background: var(--common-gray);
  box-shadow: 1rem 1rem 0 0 #8c8c8c;
  display: flex;
  width: 100%;
  padding: 2rem 1.5rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease-out;
  color: var(--black) !important;
  height: 100%;
}
.competitionsPage_category_title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.competitionsPage_category_title_arrow {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: currentColor;
  border-radius: 50%;
}
.competitionsPage_category_title_arrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  position: absolute;
  transform: rotate(45deg);
  margin-left: -0.4rem;
}
.competitionsPage_category_image {
  width: 15rem;
}
.competitionsPage_category_text {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
}
@media only screen and (min-width: 769px) {
  .competitionsPage_category_title_text {
    width: calc(100% - 3.6rem);
  }
  .competitionsPage_category_link:hover {
    opacity: 1;
    background-color: var(--common-red);
    color: var(--white) !important;
  }
  .competitionsPage_category_link:hover
    .competitionsPage_category_title_arrow::before {
    border-color: var(--common-red);
  }
}
@media only screen and (max-width: 768px) {
  .competitionsPage_category {
    margin-top: 6.4rem;
  }
  .competitionsPage_category_list {
    gap: 1rem;
    align-items: stretch;
    margin-top: 4rem;
  }
  .competitionsPage_category_item {
    min-width: auto;
    max-width: calc(50% - 1rem);
    width: calc(100vw / 390 * 175);
  }
  .competitionsPage_category_link {
    padding: 1rem;
    box-shadow: 0.5rem 0.5rem 0 0 #8c8c8c;
  }
  .competitionsPage_category_title {
    font-size: 1.6rem;
    height: 2em;
  }
  .competitionsPage_category_title_arrow {
    display: none;
  }
  .competitionsPage_category_image {
    width: 7rem;
  }
  .competitionsPage_category_title_arrow::before {
    width: 0.4rem;
    height: 0.4rem;
    margin-left: -0.1rem;
  }
  .competitionsPage_category_text {
    font-size: 1.2rem;
    text-align: left;
  }
}

/* competitionsPage_footer */
.competitionsPage_footer {
  margin: 10rem calc(50% - 50vw) 0;
  width: 100vw;
  background: #fddf61;
}
.competitionsPage_footer_container {
  width: 100%;
  max-width: 97.4rem;
  margin-right: auto;
  margin-left: auto;
  padding: 5rem 1.4rem;
  position: relative;
  z-index: 1;
}
.competitionsPage_footer_title {
  display: flex;
  justify-content: center;
  padding-top: 1.6rem;
  position: relative;
}
.competitionsPage_footer_title_text {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem 9.5rem 2rem 3rem;
  position: relative;
}
.competitionsPage_footer_title_text::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border: solid 3px #3b4662;
  transform: skewX(-11deg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0.5rem;
  box-shadow: 1rem 1.7rem 0 #ff9d00;
}
.competitionsPage_footer_title_text::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 37px 20px 0 20px;
  border-color: #ff9d00 transparent transparent transparent;
  position: absolute;
  left: calc(50% + 8px);
  bottom: -55px;
  transform: translateX(-50%);
  z-index: -1;
}
.competitionsPage_footer_title_text_inner {
  color: var(--common-red);
  text-align: center;
  font-family: var(--Makinas);
  font-size: 5.1rem;
  font-weight: 400;
  line-height: 110%;
}
.competitionsPage_footer_title_text_inner::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 36px 20px 0 20px;
  border-color: #3b4662 transparent transparent transparent;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.competitionsPage_footer_title_text_inner::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 19px 0 19px;
  border-color: var(--white) transparent transparent transparent;
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.competitionsPage_footer_title_text_accent {
  position: absolute;
  right: 2rem;
}
.footer-title_anime_left01 {
  position: absolute;
  top: 0;
  left: 5.2rem;
  animation: blinking 1s ease-in-out infinite alternate;
  opacity: 0;
  animation-delay: 500ms;
}
.footer-title_anime_left02 {
  position: absolute;
  top: 5.1rem;
  left: 2rem;
  animation: blinking 0.8s ease-in-out infinite alternate;
  opacity: 0;
}
.footer-title_anime_left03 {
  position: absolute;
  top: 14.3rem;
  left: 4.3rem;
  animation: blinking 0.9s ease-in-out infinite alternate;
  opacity: 0;
  animation-delay: 400ms;
}
.footer-title_anime_left04 {
  position: absolute;
  top: 19.1rem;
  left: 0;
  animation: blinking 0.7s ease-in-out infinite alternate;
  opacity: 0;
  animation-delay: 300ms;
}
.footer-title_anime_right01 {
  position: absolute;
  top: 0;
  right: 4.2rem;
  animation: blinking 0.8s ease-in-out infinite alternate;
  opacity: 0;
}
.footer-title_anime_right02 {
  position: absolute;
  top: 4.4rem;
  right: 0;
  animation: blinking 1s ease-in-out infinite alternate;
  animation-delay: 500ms;
  opacity: 0;
}
.footer-title_anime_right03 {
  position: absolute;
  top: 13.2rem;
  right: 5.4rem;
  animation: blinking 1.5s ease-in-out infinite alternate;
  animation-delay: 600ms;
  opacity: 0;
}
.footer-title_anime_right04 {
  position: absolute;
  top: 18.7rem;
  right: 2.3rem;
  animation: blinking 0.9s ease-in-out infinite alternate;
  animation-delay: 400ms;
  opacity: 0;
}
.competitionsPage_footer_row {
  display: flex;
  gap: 2rem;
  margin-top: 6rem;
  max-width: 83.2rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  justify-content: center;
}
.competitionsPage_footer_row_item {
  color: var(--black);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  max-width: 26.4rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/competitions/footer-cloud.png) center center no-repeat;
  background-size: contain;
  aspect-ratio: 264 / 92;
}
.competitionsPage_footer_lead {
  color: var(--black);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 150%;
  margin-top: 2rem;
}
.competitionsPage_button {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.competitionsPage_button_link {
  color: var(--white) !important;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 100%;
  border-radius: 1rem;
  background: var(--common-red);
  max-width: 40rem;
  width: 100%;
  padding: 1.8rem 4rem 1.8rem 2rem;
  display: block;
  border: solid 2px var(--common-red);
  transition: all 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.competitionsPage_button_arrow {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: currentColor;
  border-radius: 50%;
  position: absolute;
  right: 1rem;
}
.competitionsPage_button_arrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: solid 2px var(--common-red);
  border-right: solid 2px var(--common-red);
  position: absolute;
  transform: rotate(45deg);
  margin-left: -0.4rem;
}
@media only screen and (min-width: 769px) {
  .competitionsPage_button_link:hover {
    color: var(--common-red) !important;
    background: var(--white);
    opacity: 1;
  }
  .competitionsPage_button_link:hover .competitionsPage_button_arrow::before {
    border-color: var(--white);
  }
}
@media screen and (min-width: 1002px) {
  .competitionsPage_footer_container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width: 974px) {
  .competitionsPage_footer_title_text_inner {
    font-size: calc(100vw / 1000 * 51);
  }
  .competitionsPage_footer_title_text_accent {
    width: calc(100vw / 1000 * 100);
  }
}
@media only screen and (max-width: 768px) {
  .competitionsPage_footer {
    margin-top: 4rem;
    margin: 4rem -1.4rem 0;
    width: calc(100% + 2.8rem);
    overflow: hidden;
  }
  .competitionsPage_footer_container {
    padding: 3rem 1.4rem 4rem;
  }
  .competitionsPage_footer_title {
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
  }
  .competitionsPage_footer_title_text::before {
    box-shadow: 0.5rem 0.9rem 0 #ff9d00;
  }
  .competitionsPage_footer_title_text::after {
    border-width: 27px 15px 0 15px;
    bottom: -36px;
    left: calc(50% + 4px);
  }
  .competitionsPage_footer_title_text_inner::before {
    border-width: 26px 15px 0 15px;
    bottom: -30px;
  }
  .competitionsPage_footer_title_text_inner::after {
    border-width: 25px 14px 0 14px;
    bottom: -24px;
  }
  .competitionsPage_footer_title_text_inner {
    font-size: 2.4rem;
  }
  .competitionsPage_footer_title_text {
    padding: 1.5rem 3.5rem 1.5rem 2rem;
    width: 100%;
  }
  .competitionsPage_footer_title_text_accent {
    width: 4rem;
    bottom: 2rem;
    right: 3rem;
  }
  .competitionsPage_footer_row {
    gap: 1rem;
    margin-top: 4rem;
  }
  .competitionsPage_footer_row_item {
    font-size: 1.3rem;
    width: 17.5rem;
  }
  .competitionsPage_footer_lead {
    font-size: 1.4rem;
  }
  .competitionsPage_button_link {
    font-size: 1.8rem;
    max-width: none;
    width: auto;
  }
  .competitionsPage_button_arrow {
    width: 2rem;
    height: 2rem;
  }
  .competitionsPage_button_arrow::before {
    width: 0.5rem;
    height: 0.5rem;
    margin-left: -0.2rem;
  }
  .footer-title_anime_left01 {
    width: calc(2.5rem * 0.7);
    top: -1rem;
    left: 1.2rem;
  }
  .footer-title_anime_left02 {
    width: calc(1.2rem * 0.7);
    top: 4.1rem;
    left: -1rem;
  }
  .footer-title_anime_left03 {
    width: calc(1.4rem * 0.7);
    top: 7.3rem;
    left: -2.7rem;
  }
  .footer-title_anime_left04 {
    width: calc(2.7rem * 0.7);
    top: 14.1rem;
    left: -2rem;
  }
  .footer-title_anime_right01 {
    width: calc(2rem * 0.7);
    top: -1rem;
    right: -2.8rem;
  }
  .footer-title_anime_right02 {
    width: calc(1.6rem * 0.7);
    top: 2.4rem;
    right: 0;
  }
  .footer-title_anime_right03 {
    width: calc(2.5rem * 0.7);
    top: 10.2rem;
    right: -3.6rem;
  }
  .footer-title_anime_right04 {
    width: calc(1.6rem * 0.7);
    top: 13.7rem;
    right: -1.7rem;
  }
}
/* カテゴリ一覧
  ====================================================*/
.competitionsPosts_subTitle {
  color: var(--common-red);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.competitionsPosts_title {
  color: var(--BLACK-MIDDLE);
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 1rem;
}
.competitionsPosts_title::after {
  content: "";
  display: block;
  position: absolute;
  width: 6rem;
  height: 0.3rem;
  background: var(--common-red);
  bottom: 0;
}
.competitionsPosts_list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.competitionsPosts_item {
  border-radius: 1rem;
  border: 3px solid #000;
  background: var(--white);
  box-shadow: 1rem 1rem 0 0 #000;
  max-width: calc((100% - 4rem) / 2);
  width: 100%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.competitionsPosts_item_title {
  color: var(--black);
  font-size: 2.8rem;
  font-size: clamp(1.8rem, calc(100vw / 1440 * 28), 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 1rem;
  border-bottom: 3px dashed var(--common-red);
}
.competitionsPosts_item_row {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.competitionsPosts_item_image {
  flex: 0 0 auto;
  width: clamp(16rem, calc(100vw / 1440 * 246), 24.6rem);
}
.competitionsPosts_item_categorys {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.competitionsPosts_item_category {
  color: var(--black);
  font-size: clamp(1.2rem, calc(100vw / 1440 * 16), 1.6rem);
  font-weight: 700;
  line-height: 1.5;
  border: 1px solid #000;
  background: var(--accent-yellow);
  padding: 0 clamp(0.5rem, calc(100vw / 1440 * 10), 1rem);
}
.competitionsPosts_item_purposes {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  gap: 0.5rem 1rem;
}
.competitionsPosts_item_purpose {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.competitionsPosts_item_degree {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  gap: 0.5rem 1rem;
}
.competitionsPosts_item_label {
  flex: 0 0 auto;
  border-radius: 5rem;
  border: 1px solid #000;
  background: var(--black);
  color: var(--white);
  font-size: clamp(1.3rem, calc(100vw / 1440 * 16), 1.6rem);
  font-weight: 700;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.competitionsPosts_item_degree_icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.competitionsPosts_item_degree_icon img {
  max-width: clamp(1.3rem, calc(100vw / 1440 * 17), 1.7rem);
  width: 100%;
}
.competitionsPosts_item_number {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  gap: 0.5rem 1rem;
}
.competitionsPosts_item_number_text {
  color: var(--black);
  font-size: clamp(1.4rem, calc(100vw / 1440 * 18), 1.8rem);
  font-weight: 700;
  line-height: 1.5;
}
.competitionsPosts_item_lead {
  color: var(--black);
  font-size: clamp(1.4rem, calc(100vw / 1440 * 18), 1.8rem);
  font-weight: 700;
  line-height: 1.5;
}
.competitionsPosts_item_point_title {
  border-radius: 1rem 1rem 0 0;
  border: 1px solid #000;
  background: var(--common-red);
  padding: 0.4rem 1.3rem;
  color: var(--white);
  font-family: var(--Makinas);
  font-size: clamp(1.4rem, calc(100vw / 1440 * 20), 2rem);
  font-weight: 400;
  line-height: 1.3;
  display: inline-block;
  border-bottom: 0;
}
.competitionsPosts_item_point_text {
  border: 1px solid #000;
  background: var(--common-gray);
  padding: clamp(1rem, calc(100vw / 1440 * 18), 1.8rem)
    clamp(1.5rem, calc(100vw / 1440 * 20), 2rem);
  color: var(--black);
  font-size: clamp(1.4rem, calc(100vw / 1440 * 16), 1.6rem);
  font-weight: 500;
  line-height: 1.5;
}
.competitionsPosts_item_link {
  border-radius: 1rem;
  background: var(--black);
  color: var(--white) !important;
  text-align: center;
  font-size: clamp(1.4rem, calc(100vw / 1440 * 16), 1.6rem);
  font-weight: 700;
  line-height: 1.4;
  padding: 1.4rem 4.8rem 1.4rem 2.8rem;
  position: relative;
  display: flex;
  align-items: center;
  max-width: 28.4rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.4s ease-out;
}
.competitionsPosts_item_arrow {
  position: absolute;
  right: 1rem;
  border-radius: 50%;
  background: var(--white);
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.competitionsPosts_item_arrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: solid 2px var(--common-red);
  border-right: solid 2px var(--common-red);
  position: absolute;
  transform: rotate(45deg);
  margin-left: -0.4rem;
}
@media only screen and (min-width: 769px) {
  .competitionsPosts_item_link:hover {
    background: var(--common-red);
    opacity: 1;
  }
}
@media only screen and (max-width: 1000px) {
  .competitionsPosts_item_degree,
  .competitionsPosts_item_number {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  .competitionsPosts_subTitle {
    font-size: 1.5rem;
  }
  .competitionsPosts_title {
    font-size: 2.4rem;
  }
  .competitionsPosts_list {
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .competitionsPosts_item {
    padding: 2rem 1.5rem;
    max-width: 100%;
    box-shadow: 0.5rem 0.5rem 0 0 #000;
    gap: 1rem;
  }
  .competitionsPosts_item_row {
    gap: 1rem;
    flex-direction: column;
  }
  .competitionsPosts_item_image {
    max-width: 39rem;
    width: 100%;
  }
  .competitionsPosts_item_image img {
    width: 100%;
  }
  .competitionsPosts_item_content {
    width: 100%;
  }
  .competitionsPosts_item_categorys {
    gap: 0.5rem;
    width: 100%;
  }
  .competitionsPosts_item_degree {
    margin-top: 1rem;
    flex-direction: row;
  }
  .competitionsPosts_item_degree_icons {
    gap: 0.3rem;
  }
  .competitionsPosts_item_number {
    margin-top: 1rem;
    flex-direction: row;
  }
  .competitionsPosts_item_link {
    padding: 1rem 3rem 1rem 1.5rem;
    max-width: 24rem;
  }
  .competitionsPosts_item_arrow {
    width: 2rem;
    height: 2rem;
  }
  .competitionsPosts_item_arrow::before {
    width: 0.4rem;
    height: 0.4rem;
    margin-left: -0.2rem;
  }
}

.competitionsPage_topLink {
  margin-top: 10rem;
}
.competitionsPage_topLink_button {
  color: var(--white) !important;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  max-width: 40rem;
  width: 100%;
  padding: 1.8rem 4.5rem 1.6rem 4.5rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1rem;
  background: var(--common-red);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: solid 2px var(--common-red);
  transition: all 0.4s ease-out;
}
.competitionsPage_topLink_arrow {
  position: absolute;
  left: 1rem;
  border-radius: 50%;
  background: var(--white);
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.competitionsPage_topLink_arrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: solid 2px var(--common-red);
  border-right: solid 2px var(--common-red);
  position: absolute;
  transform: rotate(-135deg);
  margin-right: -0.4rem;
}
@media only screen and (min-width: 769px) {
  .competitionsPage_topLink_button:hover {
    color: var(--common-red) !important;
    background: var(--white);
    opacity: 1;
  }
  .competitionsPage_topLink_button:hover .competitionsPage_topLink_arrow {
    background: var(--common-red);
  }
  .competitionsPage_topLink_button:hover
    .competitionsPage_topLink_arrow::before {
    border-color: var(--white);
  }
}
@media only screen and (max-width: 768px) {
  .competitionsPage_topLink {
    margin-top: 5rem;
  }
  .competitionsPage_topLink_button {
    font-size: 1.8rem;
    max-width: 29rem;
  }
}
.pagination + .competitionsPage_another {
  margin-top: -9rem;
}
.competitionsPage_another {
  margin-top: 10rem;
}
.competitionsPage_another_list {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6rem;
}
.competitionsPage_another_item {
  max-width: calc((100% - 8rem) / 3);
  width: 100%;
  border-radius: 1rem;
  min-width: 34.5rem;
}
.competitionsPage_another_link {
  padding: 1.5rem;
  background-color: var(--common-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;
  box-shadow: 1rem 1rem 0 0 #8c8c8c;
  transition: all 0.4s ease-out;
  position: relative;
  border: solid 3px var(--common-red);
  color: var(--white) !important;
}
.competitionsPage_another_title {
  color: currentColor;
  font-family: var(--Makinas);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.competitionsPage_another_num {
  color: var(--accent-yellow);
  font-family: var(--Makinas);
  font-size: 4rem;
  font-weight: 400;
  line-height: 120%;
  transition: all 0.4s ease-out;
}
.competitionsPage_another_arrow {
  width: 4rem;
  height: 4rem;
  background: currentColor;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 2rem;
}
.competitionsPage_another_arrow::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  border-top: solid 2px var(--common-red);
  border-right: solid 2px var(--common-red);
  position: absolute;
  transform: rotate(45deg);
  margin-left: -0.5rem;
}
.competitionsPage_another_line {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
  height: 3px;
  background: url(../img/competitions/numMenu_line.png) no-repeat center center;
  background-size: cover;
}
.competitionsPage_another_link.is-active {
  opacity: 1;
  background-color: var(--white);
  color: var(--common-red) !important;
  pointer-events: none;
}
.competitionsPage_another_link.is-active .competitionsPage_another_num {
  color: var(--common-red);
}
.competitionsPage_another_link.is-active
  .competitionsPage_another_arrow::before {
  border-color: var(--white);
}
@media only screen and (min-width: 769px) {
  .competitionsPage_another_link:hover {
    opacity: 1;
    background-color: var(--white);
    color: var(--common-red) !important;
  }
  .competitionsPage_another_link:hover .competitionsPage_another_num {
    color: var(--common-red);
  }
  .competitionsPage_another_link:hover .competitionsPage_another_arrow::before {
    border-color: var(--white);
  }
}
@media only screen and (max-width: 768px) {
  .pagination + .competitionsPage_another {
    margin-top: -2rem;
  }
  .competitionsPage_another {
    margin-top: 4rem;
  }
  .competitionsPage_another_list {
    gap: 2rem;
    margin-top: 4rem;
  }
  .competitionsPage_another_item {
    min-width: auto;
    max-width: 32rem;
  }
  .competitionsPage_another_link {
    padding: 1rem 4rem 1rem 1rem;
    box-shadow: 0.5rem 0.5rem 0 0 #8c8c8c;
  }
  .competitionsPage_another_title {
    font-size: 2rem;
    flex-direction: row;
    align-items: baseline;
  }
  .competitionsPage_another_num {
    font-size: 2.5rem;
  }
  .competitionsPage_another_arrow {
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
  }
  .competitionsPage_another_arrow::before {
    width: 0.6rem;
    height: 0.6rem;
    margin-left: -0.2rem;
  }
  .competitionsPage_another_line {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
}

.competitionsPage_another_category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  justify-content: center;
  margin-top: 6rem;
}
.competitionsPage_another_category_item {
  max-width: calc((100% - 9.6rem) / 4);
  width: 100%;
  min-width: 29rem;
}
.competitionsPage_another_category_link {
  border-radius: 1rem;
  background: var(--common-gray);
  box-shadow: 1rem 1rem 0 0 #8c8c8c;
  display: flex;
  width: 100%;
  padding: 2rem 1.5rem;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease-out;
  color: var(--black) !important;
  height: 100%;
}
.competitionsPage_another_category_title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.competitionsPage_another_category_image {
  flex: 0 0 auto;
  width: 7rem;
}
.competitionsPage_another_category_title_arrow {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: currentColor;
  border-radius: 50%;
}
.competitionsPage_another_category_title_arrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  position: absolute;
  transform: rotate(45deg);
  margin-left: -0.4rem;
}
.competitionsPage_another_category_link.is-active {
  opacity: 1;
  background-color: var(--common-red);
  color: var(--white) !important;
  pointer-events: none;
}
.competitionsPage_another_category_link.is-active
  .competitionsPage_another_category_title_arrow::before {
  border-color: var(--common-red);
}
.competitionsPage .competitionsPosts .pagination {
  padding-bottom: 0;
}
@media only screen and (min-width: 769px) {
  .competitionsPage_another_category_link:hover {
    opacity: 1;
    background-color: var(--common-red);
    color: var(--white) !important;
  }
  .competitionsPage_another_category_link:hover
    .competitionsPage_another_category_title_arrow::before {
    border-color: var(--common-red);
  }
  .competitionsPage_another_category_title {
    width: calc(100% - 11.6rem);
  }
}
@media only screen and (max-width: 768px) {
  .competitionsPage_another_category {
    margin-top: 4rem;
  }
  .competitionsPage_another_category_list {
    gap: 1rem;
    align-items: stretch;
    margin-top: 4rem;
  }
  .competitionsPage_another_category_item {
    min-width: auto;
    max-width: calc(50% - 1rem);
    width: calc(100vw / 390 * 175);
  }
  .competitionsPage_another_category_link {
    padding: 1rem 0.6rem;
    box-shadow: 0.5rem 0.5rem 0 0 #8c8c8c;
  }
  .competitionsPage_another_category_title {
    font-size: 1.4rem;
    height: 2em;
    width: calc(100% - 5rem);
  }
  .competitionsPage_another_category_title_arrow {
    display: none;
  }
  .competitionsPage_another_category_image {
    width: 4rem;
  }
  .competitionsPage_another_category_title_arrow::before {
    width: 0.4rem;
    height: 0.4rem;
    margin-left: -0.1rem;
  }
}

.competitionsPage_another_purpose_list {
  display: flex;
  gap: 3.2rem 4rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6rem;
}
.competitionsPage_another_purpose_item {
  display: flex;
  max-width: calc((100% - 8rem) / 3);
  width: 100%;
  border-radius: 1rem;
  min-width: 34.5rem;
}
.competitionsPage_another_purpose_link {
  padding: 2rem 5.4rem;
  background-color: var(--accent-yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  border-radius: 1rem;
  box-shadow: 1rem 1rem 0 0 #8c8c8c;
  transition: all 0.4s ease-out;
  position: relative;
  border: solid 3px var(--accent-yellow);
  color: var(--common-red) !important;
}
.competitionsPage_another_purpose_link.is-active {
  background-color: var(--white);
  border: solid 3px var(--common-red);
}
.competitionsPage_another_purpose_title {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--common-red);
  text-align: center;
  font-family: var(--Makinas);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.2;
}
.competitionsPage_another_purpose_arrow {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--black);
  border-radius: 50%;
  position: absolute;
  right: 2rem;
}
.competitionsPage_another_purpose_link.is-active
  .competitionsPage_another_purpose_arrow {
  background: currentColor;
}
.competitionsPage_another_purpose_arrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  position: absolute;
  transform: rotate(45deg);
  margin-left: -0.4rem;
}
@media only screen and (min-width: 769px) {
  .competitionsPage_another_purpose_link:hover {
    opacity: 1;
    background-color: var(--white);
    border: solid 3px var(--common-red);
  }
  .competitionsPage_another_purpose_link:hover
    .competitionsPage_another_purpose_arrow {
    background: currentColor;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1179px) {
  .competitionsPage_another_purpose_link {
    padding: 2rem 5.4rem 2rem 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .competitionsPage_another_purpose_list {
    margin-top: 4rem;
    gap: 1rem;
    margin-top: 4rem;
  }
  .competitionsPage_another_purpose_item {
    min-width: auto;
    max-width: 17.5rem;
    width: calc(100vw / 390 * 175);
  }
  .competitionsPage_another_purpose_link {
    padding: 1.6rem 1rem;
    box-shadow: 0.5rem 0.5rem 0 0 #8c8c8c;
  }
  .competitionsPage_another_purpose_title {
    font-size: 1.4rem;
  }
  .competitionsPage_another_purpose_arrow {
    display: none;
  }
}
