@charset "UTF-8";

/* base */
* {
  box-sizing: border-box;
  position: relative;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

html {
  font-size: 62.5%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: #393939;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s 0s ease;
  color: #313131;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

a.noref {
  pointer-events: none;
}

@media (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

.en {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.pc-only {
  display: block;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .inner {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .inner {
    width: 95%;
  }
}

/* base end */
.main {
  overflow-x: hidden;
}

.body {
  line-height: 1.6;
  font-size: 1.6rem;
  letter-spacing: 0.03rem;
  font-weight: 400;
  overflow-x: hidden;
}

@media (max-width: 520px) {
  .body {
    line-height: 1.3;
    font-size: 1.3rem;
  }
}

.header {
  background: #fff;
  position: fixed;
  z-index: 998;
  width: 100%;
  padding: 1rem 2rem;
}

@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__left {
  align-items: center;
  width: 25%;
}

@media (max-width: 1145px) {
  .header__left {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .header__left {
    display: block;
  }
}

@media (max-width: 680px) {
  .header__left {
    width: 80%;
  }
}

.header__left a {
  display: flex;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 520px) {
  .header__left a {
    gap: 1rem;
  }
}

.header-sub {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

@media (max-width: 520px) {
  .header-sub {
    font-size: 1.2rem;
  }
}

.header__right {
  flex: 1;
}

@media (max-width: 680px) {
  .header__right {
    width: 20%;
  }
}

.header-nav {
  display: flex;
  gap: 3rem;
  justify-content: flex-end;
  align-items: center;
}

.header-nav__list {
  display: flex;
  gap: 2rem;
}

@media (max-width: 1290px) {
  .header-nav__list {
    display: none;
  }
}

.header-nav__item a {
  font-size: 1.4rem;
  font-weight: 700;
}

.header-search {
  width: 100%;
  max-width: 230px;
  background: #f4f4f4;
  border-radius: 100px;
  margin-left: 1rem;
}

@media (max-width: 680px) {
  .header-search {
    display: none;
  }
}

.header-search__input {
  width: 100%;
  display: block;
  left: 2rem;
  border: none;
  font-size: 1.4rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  padding: 1rem 2rem;
  background: none;
}

.header-search__submit {
  background: transparent url("../img/common/icon_search.svg") no-repeat center center;
  background-size: cover;
  width: 18px;
  height: 19px;
  display: block;
  position: absolute;
  left: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  text-indent: -9999px;
  cursor: pointer;
}

.header-toggle {
  background: #4a4a4a;
  width: 50px;
  height: 45px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s all;
}

.header-toggle:hover {
  opacity: 0.8;
}

.header-toggle__label {
  color: #fff;
  font-size: 0.9rem;
  position: absolute;
  bottom: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  font-weight: 700;
}

.header-toggle div {
  top: 0.8rem;
  left: 1rem;
  width: 30px;
}

.header-toggle span {
  border-bottom: solid 3px #fff;
  display: block;
  -moz-transition: 0.35s ease-in-out;
  position: absolute;
  transition: 0.35s ease-in-out;
  -webkit-transition: 0.35s ease-in-out;
  width: 100%;
}

.header-toggle span:nth-child(1) {
  top: 0;
}

.header-toggle span:nth-child(2) {
  top: 8px;
}

.header-toggle span:nth-child(3) {
  top: 16px;
}

.header-toggle.is-active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
  -webkit-transform: translateY(8px) rotate(-45deg);
  border-bottom: solid 2px #fff;
}

.header-toggle.is-active span:nth-of-type(2) {
  opacity: 0;
}

.header-toggle.is-active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
  -webkit-transform: translateY(-8px) rotate(45deg);
  border-bottom: solid 2px #fff;
}

.header-side {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  right: -1999px;
  top: 7rem;
  width: 70%;
  max-width: 820px;
  padding: 5rem 5rem 5rem;
  transition: 0.8s all;
}

@media (max-width: 768px) {
  .header-side {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 2rem;
  }
}

@media (max-width: 520px) {
  .header-side {
    overflow-y: scroll;
  }
}

.header-side.is-active {
  right: 0;
}

.header-side__sp-close {
  position: absolute;
  right: 3rem;
  top: 3rem;
  z-index: 1999;
  width: 30px;
  height: 30px;
  text-align: center;
  display: none;
}

@media (max-width: 768px) {
  .header-side__sp-close {
    display: block;
  }
}

.header-side__sp-close span {
  border-bottom: solid 4px #fff;
  display: block;
  -moz-transition: 0.35s ease-in-out;
  position: absolute;
  transition: 0.35s ease-in-out;
  -webkit-transition: 0.35s ease-in-out;
  width: 100%;
}

.header-side__sp-close span:nth-of-type(1) {
  transform: translateY(0) rotate(-45deg);
  -webkit-transform: translateY(0) rotate(-45deg);
  border-bottom: solid 4px #fff;
}

.header-side__sp-close span:nth-of-type(2) {
  transform: translateY(0) rotate(45deg);
  -webkit-transform: translateY(0) rotate(45deg);
  border-bottom: solid 4px #fff;
}

.header-side__wrap {
  display: flex;
  gap: 4rem;
}

@media (max-width: 768px) {
  .header-side__wrap {
    flex-direction: column;
    gap: 3rem;
  }
}

.header-side__left {
  width: 50%;
}

@media (max-width: 768px) {
  .header-side__left {
    width: 100%;
  }
}

.header-side-logo {
  max-width: 500px;
  text-align: center;
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .header-side-logo {
    max-width: 40%;
    margin: 0 auto 2rem;
  }
}

.header-side-search {
  width: 100%;
  background: #f4f4f4;
  border-radius: 100px;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .header-side-search {
    margin-bottom: 2rem;
  }
}

.header-side-search__input {
  width: 100%;
  display: block;
  left: 2rem;
  border: none;
  font-size: 1.4rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  padding: 1rem 2rem;
  background: none;
}

.header-side-search__submit {
  background: transparent url("../img/common/icon_search.svg") no-repeat center center;
  background-size: cover;
  width: 18px;
  height: 19px;
  display: block;
  position: absolute;
  left: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  text-indent: -9999px;
  cursor: pointer;
}

.header-side-label {
  color: #afafaf;
  margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
  .header-side-label {
    margin-bottom: 1rem;
  }
}

.header-side-sns__item {
  margin-bottom: 1rem;
  left: 1rem;
}

@media (max-width: 768px) {
  .header-side-sns__item {
    margin-bottom: 2rem;
    left: 3rem;
  }
}

.header-side-sns__item:last-child {
  margin-bottom: 0;
}

.header-side-sns__item a {
  color: #fff;
  padding: 0 0 0 3rem;
  font-size: 1.4rem;
}

.header-side-sns__item--insta a {
  background: transparent url("../img/common/icon_header_insta.svg") no-repeat left center;
  background-size: auto 100%;
}

.header-side-sns__item--twitter a {
  background: transparent url("../img/common/icon_header_twitter.svg") no-repeat left center;
  background-size: auto 100%;
}

.header-side-sns__item--youtube a {
  background: transparent url("../img/common/icon_header_youtube.svg") no-repeat left center;
  background-size: auto 100%;
}

.header-side__right {
  width: 50%;
}

@media (max-width: 768px) {
  .header-side__right {
    width: 100%;
  }
}

.header-side-nav {
  padding: 0 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
}

.header-side-nav__link {
  margin-bottom: 10px;
  color: #fff;
}

.header-side-nav__link a {
  color: #fff;
  font-size: 1.4rem;
}

.header-side-nav__wrap--single .header-side-nav__link {
  width: 100%;
}

.header-side-link {
  border-bottom: 1px solid #fff;
  padding: 1.5rem 0;
}

.header-side-link__item {
  left: 0;
}

.header-side-link__item a {
  font-size: 1.4rem;
  color: #fff;
}

.header-side-pdf__item--link a {
  background: transparent url("../img/common/icon_link.svg") no-repeat right center;
  background-size: auto 100%;
  padding: 0 2.5rem 0 0;
}

@media (max-width: 768px) {
  .header-side-pdf__item--link a {
    background-size: 14px;
  }
}

.header-side-pdf__item--pdf a {
  background: transparent url("../img/common/icon_pdf.svg") no-repeat right center;
  background-size: auto 100%;
  padding: 0 2rem 0 0;
}

@media (max-width: 768px) {
  .header-side-pdf__item--pdf a {
    background-size: 10px;
  }
}

.header-side-pdf {
  padding: 1.5rem 0 1rem;
  border-bottom: 1px solid #fff;
}

.header-side-pdf__item {
  left: 0;
  padding: 0 0 1rem;
}

.header-side-pdf__item a {
  font-size: 1rem;
  color: #fff;
}

@media (max-width: 768px) {
  .header-side-pdf__item a {
    font-size: 1.4rem;
  }
}
@media (max-width: 520px) {
  .header-side-pdf__item a {
    font-size: 1rem;
  }
}

.main {
  padding: 7rem 0;
}

.top-sponsorship {
  width: 50%;
}

.top-fv {
  margin-bottom: 60px;
}

.top-fv__image {
  width: min(100%, 1000px);
  margin: 0 auto 40px;
}

.top-fv__lead {
  background: #f2f2f2;
  padding: 35px 0;
  text-align: center;
  font-weight: 700;
  line-height: 2.4;
}

@media (max-width: 768px) {
  .top-fv__lead {
    padding: 20px 0;
  }
}

.top-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (max-width: 768px) {
  .top-grid {
    gap: 2rem;
  }
}

.top-grid-flex {
  display: flex;
  gap: 3rem;
}

@media (max-width: 768px) {
  .top-grid-flex {
    flex-direction: column;
    gap: 2rem;
  }
}

.top-mv {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 6rem;
  max-height: 700px;
}

@media (max-width: 768px) {
  .top-mv {
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 3px solid #eee;
  }
}

@media (max-width: 520px) {
  .top-mv {
    flex-direction: column;
  }
}

.top-mv-slider {
  width: 100%;
  max-width: 64vw;
  aspect-ratio: 5/3;
  display: none;
}

@media (max-width: 520px) {
  .top-mv-slider {
    max-width: 100vw;
  }
}

.top-mv-slider.slick-initialized {
  display: block;
}

.top-mv-slider__link {
  display: block;
  height: 100%;
}

.top-mv-slider__link:hover {
  opacity: 1;
}

.top-mv-slider__link:hover .top-pickup-box__image {
  scale: 1.1;
}

.top-mv-slider .slick-dots {
  display: flex;
  gap: 1rem;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.top-mv-slider .slick-dots button {
  background: none;
  border: none;
  text-indent: -9999px;
  font-size: 0;
  cursor: pointer;
}

.top-mv-slider .slick-dots button::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 10px;
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.top-mv-slider .slick-dots .slick-active button::before {
  background: #111;
}

.top-mv-slider__item {
  overflow: hidden;
}

.top-mv-slider__image {
  transition: 0.3s all;
}

.top-mv-slider__image img {
  z-index: -1;
}

.top-mv-slider__box {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90%;
  padding: 0 0 4rem;
}

.top-mv-slider__title {
  color: #fff;
  text-align: center;
}

.top-mv-slider__data {
  color: #fff;
  text-align: center;
}

.slick-list,
.slick-track {
  height: 100% !important;
}

.top-mv-set {
  width: 22vw;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  flex: 1;
  max-height: 700px;
}

@media (max-width: 520px) {
  .top-mv-set {
    width: 100%;
    flex-direction: unset;
    justify-content: space-between;
    border-top: 3px solid #eee;
  }
}

.top-mv-set__link {
  display: block;
  max-height: 350px;
}

@media (max-width: 520px) {
  .top-mv-set__link {
    max-height: 100%;
    height: 100%;
  }
}

.top-mv-set__link:hover {
  opacity: 1;
}

.top-mv-set__link .top-mv-set__image img {
  transition: 0.3s all;
}

.top-mv-set__link:hover .top-mv-set__image img {
  scale: 1.1;
}

.top-mv-set__item {
  overflow: hidden;
}

@media (max-width: 520px) {
  .top-mv-set__item {
    width: 50%;
    aspect-ratio: 4/3;
  }
  .top-mv-set__item:last-child {
    border-left: 3px solid #eee;
  }
}

.top-mv-set__image {
  transition: 0.3s all;
}
@media (max-width: 520px) {
  .top-mv-set__image {
    height: 100%;
  }
}

.top-mv-set__image img {
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-mv-set__box {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90%;
  padding: 0 0 1rem;
}

.top-mv-set__title {
  color: #fff;
  text-align: center;
}

.top-mv-set__data {
  color: #fff;
  text-align: center;
}

.top-section {
  border-radius: 15px;
  overflow: hidden;
  width: 50%;
}

@media (max-width: 520px) {
  .top-section {
    border-radius: 8px;
  }
}

.top-section-title {
  color: #fff;
  font-weight: 700;
  padding: 1.5rem 0 0 10rem;
  line-height: 1.5;
}

@media (max-width: 520px) {
  .top-section-title {
    padding: 0.5rem 0 0 5rem;
  }
}

.top-section-title::before {
  content: "";
  width: 82px;
  height: 82px;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  border-radius: 0 0 15px 0;
}

@media (max-width: 520px) {
  .top-section-title::before {
    width: 40px;
    height: 40px;
    border-radius: 0 0 8px 0;
  }
}

.top-section-title__ja {
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  display: block;
}

@media (max-width: 768px) {
  .top-section-title__ja {
    font-size: 2.2rem;
  }
}

@media (max-width: 520px) {
  .top-section-title__ja {
    font-size: 1.4rem;
  }
}

.top-section-title__en {
  font-size: 1.6rem;
  display: block;
}

@media (max-width: 520px) {
  .top-section-title__en {
    font-size: 1.2rem;
  }
}

.top-topics {
  background: #fdaf60;
}

.top-topics .top-section-title::before {
  background: #f8742e url("../img/common/icon_cat_topics.svg") no-repeat center center;
  background-size: 60px;
}

@media (max-width: 520px) {
  .top-topics .top-section-title::before {
    background-size: 30px;
  }
}

.top-topics-nav {
  position: absolute;
  right: 3rem;
  top: 3rem;
}

@media (max-width: 520px) {
  .top-topics-nav {
    right: 1rem;
    top: 1rem;
    width: 40%;
  }
}

.top-topics-nav a {
  display: block;
  width: 185px;
  color: #fff;
  font-size: 1.8rem;
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 0;
}

@media (max-width: 520px) {
  .top-topics-nav a {
    font-size: 1.3rem;
    width: 100%;
    border-radius: 6px;
  }
}

.top-topics-nav a::before {
  /* arrow */
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 520px) {
  .top-topics-nav a::before {
    border-width: 4px 0 4px 6px;
  }
}

.top-topics-list {
  padding: 4rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

@media (max-width: 520px) {
  .top-topics-list {
    padding: 2rem 2rem 0;
    gap: 0;
  }
}

.top-topics-list__link {
  display: flex;
  gap: 1rem;
}

.top-topics-list__link:hover {
  opacity: 1;
}

.top-topics-list__link:hover img {
  scale: 1.1;
}

.top-topics-list__link:hover .top-topics-list__category {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

.top-topics-list__item {
  width: calc(50% - 3rem);
}

.top-topics-list__thum {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.top-topics-list__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #fff;
  font-size: 1.6rem;
  background: #f8742e;
  border-radius: 10px;
  display: inline-block;
  z-index: 50;
  padding: 0.5rem 1rem;
  transition: 0.3s all;
  font-weight: 700;
}

.top-topics-list__image {
  height: 100%;
}

.top-topics-list__image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s all;
}

.top-topics-list__detail {
  width: calc(100% - 200px);
  color: #fff;
}

.top-topics-list__label {
  font-weight: 700;
  margin-bottom: 2rem;
}

.top-topics-list__text {
  font-size: 1.4rem;
}

.top-topics-head {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .top-topics-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.top-topics-lead {
  color: #fff;
}
@media (max-width: 768px) {
  .top-topics-lead {
    padding: 0 0 0 2rem;
  }
}

.top-event {
  background: transparent url("../img/index/bg_event.jpg") no-repeat center center;
  background-size: cover;
  min-height: 467px;
}

@media (max-width: 768px) {
  .top-event {
    background: transparent url("../img/index/bg_event_sp.jpg") no-repeat center center;
    background-size: cover;
    min-height: auto;
  }
}

.top-event .top-section-title {
  color: #447e3e;
  padding: 16rem 0 2rem 3rem;
}

@media (max-width: 768px) {
  .top-event .top-section-title {
    padding: 1rem 0 0 10rem;
    margin-bottom: 4rem;
  }
}

@media (max-width: 520px) {
  .top-event .top-section-title {
    padding: 0.5rem 0 0 5rem;
    margin-bottom: 3rem;
  }
}

.top-event .top-section-title::before {
  background: #447e3e url("../img/common/icon_cat_event.svg") no-repeat center center;
  background-size: 42px;
}

@media (max-width: 520px) {
  .top-event .top-section-title::before {
    background-size: 21px;
  }
}

.top-event-nav {
  left: 3rem;
  margin-bottom: 2rem;
  /* button */
}

@media (max-width: 768px) {
  .top-event-nav {
    left: 0;
    width: 50%;
  }
}

@media (max-width: 768px) {
  .top-event-nav__wrap {
    display: flex;
    justify-content: center;
    gap: 3rem;
    width: 85%;
    margin: 0 auto;
  }
}

.top-event-nav a {
  background: #447e3e;
  display: block;
  width: 185px;
  color: #fff;
  font-size: 1.8rem;
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 0;
  border: none;
}

@media (max-width: 768px) {
  .top-event-nav a {
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .top-event-nav a {
    border-radius: 6px;
    font-size: 1.3rem;
    width: 100%;
  }
}

.top-event-nav a::before {
  /* arrow */
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 520px) {
  .top-event-nav a::before {
    border-width: 4px 0 4px 6px;
  }
}

.top-event-nav a:hover {
  opacity: 1;
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

.top-instagram {
  min-height: 313px;
  border: 2px solid #fc2364;
}

.top-instagram .top-section-title {
  color: #fc2364;
}

.top-instagram .top-section-title::before {
  background: #fc2364 url("../img/common/icon_cat_instagram.svg") no-repeat center center;
  background-size: 37px;
}

@media (max-width: 520px) {
  .top-instagram .top-section-title::before {
    background-size: 23px;
  }
}

.top-pickup {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  opacity: 0;
}

.top-pickup.is-show {
  opacity: 1;
}

@media (max-width: 520px) {
  .top-pickup {
    gap: 2rem;
    justify-content: space-between;
    flex-direction: unset;
  }
}
.top-pickup-box {
  order: 3;
}
.top-pickup-box__first {
  order: 1;
}
.top-pickup-box-set-fixed {
  order: 2;
}

.top-pickup .top-section-title {
  color: #fff;
  padding: 12rem 0 2rem 3rem;
}

@media (max-width: 768px) {
  .top-pickup .top-section-title {
    padding: 9rem 0 1rem 2rem;
  }
}

@media (max-width: 520px) {
  .top-pickup .top-section-title {
    padding: 6rem 0 2rem 2rem;
  }
}

.top-pickup .top-section-title::before {
  background: #41acc7 url("../img/common/icon_cat_pickup.svg") no-repeat center center;
  background-size: 40px;
}

@media (max-width: 520px) {
  .top-pickup .top-section-title::before {
    background-size: 21px;
  }
}

.top-pickup-box {
  width: calc(33.3333333333% - 2rem);
  min-height: 313px;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

@media (max-width: 1000px) {
  .top-pickup-box {
    aspect-ratio: 1/1;
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .top-pickup-box {
    border-radius: 8px;
    width: calc(50% - 1rem);
  }
}

.top-pickup-box__first {
  background: #94d9d7;
}

.top-pickup-box__link {
  display: block;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 31%, rgba(0, 0, 0, 0.6) 74%, rgba(0, 0, 0, 0.7) 100%);
}

@media (max-width: 520px) {
  .top-pickup-box__link {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 21%, rgba(0, 0, 0, 0.6) 　54%, rgba(0, 0, 0, 0.7) 100%);
  }
}

.top-pickup-box__link:hover {
  opacity: 1;
}

.top-pickup-box__link:hover .top-pickup-box__image {
  scale: 1.1;
}

.top-pickup-box__image {
  height: 100%;
  z-index: -1;
  transition: 0.3s all;
}

.top-pickup-box__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-pickup-box__text {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  width: 90%;
  z-index: 51;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .top-pickup-box__text {
    width: 90%;
    font-size: 1.3rem;
  }
}

.top-pickup-nav {
  left: 3rem;
}

@media (max-width: 768px) {
  .top-pickup-nav {
    left: 2rem;
  }
}

.top-pickup-nav a {
  display: block;
  width: 185px;
  color: #fff;
  font-size: 1.8rem;
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 0;
}

@media (max-width: 520px) {
  .top-pickup-nav a {
    border-radius: 6px;
    font-size: 1.3rem;
    max-width: 70%;
  }
}

.top-pickup-nav a::before {
  /* arrow */
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 520px) {
  .top-pickup-nav a::before {
    border-width: 4px 0 4px 6px;
  }
}

.top-action {
  background: transparent url("../img/index/bg_action.jpg") no-repeat center center;
  background-size: cover;
  min-height: 313px;
}

@media (max-width: 768px) {
  .top-action {
    min-height: auto;
    padding: 0 0 3rem;
  }
}

@media (max-width: 520px) {
  .top-action {
    background: transparent url("../img/index/bg_action_sp.jpg") no-repeat center center;
    background-size: cover;
    min-height: auto;
    padding: 0;
  }
}

.top-action .top-section-title {
  color: #475558;
  padding: 2.5rem 0 0 10rem;
}

@media (max-width: 520px) {
  .top-action .top-section-title {
    padding: 1rem 0 0 5rem;
  }
}

.top-action .top-section-title::before {
  background: #475558 url("../img/common/icon_cat_action.svg") no-repeat center center;
  background-size: 37px;
}

@media (max-width: 520px) {
  .top-action .top-section-title::before {
    background-size: 18px;
  }
}

.top-action-lead {
  padding: 4rem 0 2rem 3rem;
  max-width: 470px;
}

@media (max-width: 520px) {
  .top-action-lead {
    padding: 4rem 0 2rem 2rem;
    max-width: 90%;
    line-height: 1.6;
  }
}

.top-action-nav {
  left: 3rem;
}

@media (max-width: 520px) {
  .top-action-nav {
    left: 2rem;
    margin-bottom: 3rem;
  }
}

.top-action-nav a {
  display: block;
  width: 185px;
  color: #fff;
  font-size: 1.8rem;
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 0;
  border: 2px solid #393939;
  color: #393939;
}

@media (max-width: 520px) {
  .top-action-nav a {
    border-radius: 6px;
    font-size: 1.3rem;
  }
}

.top-action-nav a::before {
  /* arrow */
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 520px) {
  .top-action-nav a::before {
    border-width: 4px 0 4px 6px;
  }
}

.top-action-nav a::before {
  border-color: transparent transparent transparent #393939;
}

.top-about {
  background: #8b8b8b;
  padding: 0 0 3rem;
}

.top-about .top-section-title {
  color: #fff;
  margin-bottom: 4rem;
}

@media (max-width: 520px) {
  .top-about .top-section-title {
    margin-bottom: 2rem;
  }
}

.top-about .top-section-title::before {
  background: #e71a2f url("../img/common/icon_cat_about.svg") no-repeat center center;
  background-size: 35px;
}

@media (max-width: 520px) {
  .top-about .top-section-title::before {
    background-size: 17px;
  }
}

.top-about-lead {
  text-align: center;
  padding: 0 3rem;
  color: #fff;
  margin-bottom: 4rem;
}

@media (max-width: 520px) {
  .top-about-lead {
    line-height: 1.6;
    margin-block: 3rem;
    display: none;
  }
}

.top-about-slider {
  padding: 0 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 520px) {
  .top-about-slider {
    margin-bottom: 2rem;
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .top-about-slider__wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .top-about-slider__wrap {
    height: 200px;
  }
}

.top-about-slider__item {
  background: #fff;
  border-radius: 8px;
  margin: 0 0.5rem;
  overflow: hidden;
  padding: 0 3rem 2rem;
}

@media (max-width: 768px) {
  .top-about-slider__item {
    margin-bottom: 2rem;
    padding: 2rem 2rem 0;
    min-height: 390px;
  }
}

@media (max-width: 428px) {
  .top-about-slider__item {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .top-about-slider__head {
    width: 40%;
  }
}

.top-about-slider__icon {
  max-width: 194px;
  margin: 0 auto;
}

.top-about-slider__label {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .top-about-slider__label {
    font-size: 0.9rem;
  }
}

.top-about-slider__thum {
  height: 230px;
  margin-bottom: 20px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .top-about-slider__thum {
    height: auto;
  }
}

@media (max-width: 520px) {
  .top-about-slider__thum {
    overflow: visible;
  }
}

.top-about-slider__text {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
  min-height: 90px;
}

@media (max-width: 768px) {
  .top-about-slider__text {
    min-height: auto;
    width: 60%;
    line-height: 1.6;
    font-size: 1.2rem;
    padding: 0;
  }
}

.top-about-slider__image {
  max-width: 100%;
  height: 150px;
}

@media (max-width: 768px) {
  .top-about-slider__image {
    height: auto;
    aspect-ratio: 4/2.5;
  }
}

@media (max-width: 520px) {
  .top-about-slider__image {
    width: 100%;
    height: 170px;
  }
}

.top-about-slider__link:hover {
  opacity: 1;
}

.top-about-slider__link:hover .top-about-slider__image img {
  scale: 1.1;
}

.top-about-slider__link img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s all;
}

.top-about-slider__caption {
  background: #393939;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem 1.5rem;
  height: 70px;
}

.top-about-slider .slick-prev {
  background: transparent url("../img/index/btn_action_prev.svg") no-repeat center center;
  background-size: cover;
  width: 30px;
  height: 80px;
  text-indent: -9999px;
  border: none;
  cursor: pointer;
  transition: 0.3s all;
  position: absolute;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}

@media (max-width: 520px) {
  .top-about-slider .slick-prev {
    width: 20px;
    height: 60px;
  }
}

.top-about-slider .slick-prev:hover {
  opacity: 0.8;
}

.top-about-slider .slick-next {
  background: transparent url("../img/index/btn_action_next.svg") no-repeat center center;
  background-size: cover;
  width: 30px;
  height: 80px;
  text-indent: -9999px;
  border: none;
  cursor: pointer;
  transition: 0.3s all;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}

@media (max-width: 520px) {
  .top-about-slider .slick-next {
    width: 20px;
    height: 60px;
  }
}

.top-about-slider .slick-next:hover {
  opacity: 0.8;
}

.top-about-nav__wrap {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

@media (max-width: 520px) {
  .top-about-nav__wrap {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }
}

.top-about-nav__item a {
  display: block;
  width: 185px;
  color: #fff;
  font-size: 1.8rem;
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 0;
  width: 300px;
  background: #e71a2f;
  color: #fff;
}

@media (max-width: 520px) {
  .top-about-nav__item a {
    border-radius: 6px;
    font-size: 1.3rem;
    margin: 0 auto;
  }
}

.top-about-nav__item a::before {
  /* arrow */
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 520px) {
  .top-about-nav__item a::before {
    border-width: 4px 0 4px 6px;
  }
}

.top-about-nav__item a:hover {
  opacity: 1;
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}

.top-history {
  background: transparent url("../img/index/bg_history.jpg") no-repeat center center;
  background-size: cover;
  min-height: 313px;
  width: 100%;
}

@media (max-width: 520px) {
  .top-history {
    background: transparent url("../img/index/bg_history_sp.jpg") no-repeat center center;
    background-size: cover;
    min-height: max-content;
  }
}

.top-history .top-section-title {
  color: #223970;
}

.top-history .top-section-title::before {
  background: #223970 url("../img/common/icon_cat_history.svg") no-repeat center center;
  background-size: 39px;
}

@media (max-width: 520px) {
  .top-history .top-section-title::before {
    background-size: 20px;
  }
}

.top-history-lead {
  padding: 4rem 0 4rem 3rem;
  max-width: 470px;
}

@media (max-width: 520px) {
  .top-history-lead {
    padding: 3rem 0 2rem 2rem;
  }
}

.top-history-nav {
  left: 3rem;
}

@media (max-width: 520px) {
  .top-history-nav {
    left: 0;
    margin: 0 0 2rem 2rem;
  }
}

.top-history-nav a {
  display: block;
  width: 185px;
  color: #fff;
  font-size: 1.8rem;
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 0;
  width: 223px;
  border: 2px solid #393939;
  color: #393939;
}

@media (max-width: 520px) {
  .top-history-nav a {
    border-radius: 6px;
    font-size: 1.3rem;
    width: 50%;
  }
}

.top-history-nav a::before {
  /* arrow */
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 520px) {
  .top-history-nav a::before {
    border-width: 4px 0 4px 6px;
  }
}

.top-history-nav a::before {
  border-color: transparent transparent transparent #393939;
}

.top-sponsorship {
  min-height: 313px;
  background: #a8d55e;
}

@media (max-width: 520px) {
  .top-sponsorship {
    min-height: auto;
    aspect-ratio: 34/30;
  }
}

.top-sponsorship-bg {
  background: transparent url("../img/index/bg_sponsorship.jpg") no-repeat center bottom;
  background-size: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .top-sponsorship-bg {
    background: transparent url("../img/index/bg_sponsorship_sp.jpg") no-repeat center bottom;
    background-size: 100%;
  }
}

.top-sponsorship .top-section-title {
  color: #fff;
  padding: 12rem 0 2rem 3rem;
}

@media (max-width: 768px) {
  .top-sponsorship .top-section-title {
    padding: 10rem 0 2rem 2rem;
  }
}

@media (max-width: 520px) {
  .top-sponsorship .top-section-title {
    padding: 6rem 0 2rem 1rem;
  }
}

@media (max-width: 375px) {
  .top-sponsorship .top-section-title {
    padding: 5rem 0 2rem 1rem;
  }
}

.top-sponsorship .top-section-title::before {
  background: #82b135 url("../img/common/icon_cat_sponsorship.svg") no-repeat center center;
  background-size: 47px;
}

@media (max-width: 520px) {
  .top-sponsorship .top-section-title::before {
    background-size: 20px;
  }
}

.top-list {
  min-height: 313px;
  width: 50%;
  background: #6f98c1;
}
@media (max-width: 1000px) {
  .top-list {
    min-height: 180px;
    background: none;
  }
  .top-list a::before {
    content: "";
    width: 100%;
    height: 100px;
    background: #6f98c1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
  }
}

@media (max-width: 768px) {
  .top-list {
    width: 100%;
    min-height: max-content;
    background: none;
  }
  .top-list a::before {
    height: 100px;
  }
}

.top-list .btn {
  position: absolute;
  top: 120px;
  left: 280px;
  background: #fff;
  border-radius: 10px;
  color: #466db9;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 40px;
}
@media (max-width: 1000px) {
  .top-list .btn {
    left: auto;
    right: 20px;
    width: max-content;
    z-index: 5;
  }
}
@media (max-width: 768px) {
  .top-list .btn {
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    font-size: 13px;
    text-align: center;
    padding: 10px 30px 10px 40px;
    left: auto;
    height: 35px;
  }
}

.top-list .btn::before {
  content: "";
  clip-path: polygon(0 100%, 0 0, 100% 50%);
  background: #466db9;
  width: 10px;
  height: 12px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 17px;
}

.top-list-bg {
  background: transparent url("../img/index/bg_list.jpg") no-repeat center bottom;
  background-size: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1000px) {
  .top-list a {
    z-index: 5;
  }
}
@media (max-width: 1000px) {
  .top-list-bg {
    background: transparent url("../img/index/bg_list_sp.jpg") no-repeat center bottom;
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .top-list-bg {
    height: 140px;
  }
}
@media (max-width: 1000px) {
  .top-list .top-section-title__ja {
    font-size: clamp(1.8rem, 2vw, 2.6rem);
  }
}
@media (max-width: 768px) {
  .top-list .top-section-title__ja {
    font-size: 2rem;
  }
}
@media (max-width: 520px) {
  .top-list .top-section-title__ja {
    font-size: 1.8rem;
  }
}
.top-list .top-section-title {
  color: #fff;
  padding: 12rem 0 2rem 3rem;
}

@media (max-width: 1000px) {
  .top-list .top-section-title {
    padding: 2rem 0 2rem 10rem;
    z-index: 5;
  }
}

@media (max-width: 520px) {
  .top-list .top-section-title {
    padding: 1rem 0 0 5rem;
  }
}

.top-list .top-section-title::before {
  background: #466db9 url("../img/common/icon_cat_list.svg") no-repeat center center;
  background-size: 43px;
}

@media (max-width: 520px) {
  .top-list .top-section-title::before {
    background-size: 21px;
  }
}

.top-materials {
  min-height: 313px;
  width: 50%;
  background: #84d0cd;
}
@media (max-width: 1000px) {
  .top-materials {
    min-height: 180px;
    background: none;
  }
  .top-materials a::before {
    content: "";
    width: 100%;
    height: 100px;
    background: #84d0cd;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
  }
}

@media (max-width: 768px) {
  .top-materials {
    width: 100%;
    min-height: 180px;
    background: none;
  }
  .top-materials a::before {
    height: 100px;
  }
}
@media (max-width: 520px) {
  .top-materials {
    min-height: 140px;
  }
}

.top-materials .btn {
  position: absolute;
  top: 120px;
  left: 280px;
  background: #fff;
  border-radius: 10px;
  color: #41acc7;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 40px;
}
@media (max-width: 1000px) {
  .top-materials .btn {
    left: auto;
    right: 20px;
    width: max-content;
    z-index: 5;
  }
}
@media (max-width: 768px) {
  .top-materials .btn {
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    font-size: 13px;
    text-align: center;
    padding: 10px 30px 10px 40px;
    left: auto;
    height: 35px;
  }
}

.top-materials .btn::before {
  content: "";
  clip-path: polygon(0 100%, 0 0, 100% 50%);
  background: #41acc7;
  width: 10px;
  height: 12px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 17px;
}

.top-materials-bg {
  background: transparent url("../img/index/bg_materials.jpg") no-repeat center bottom;
  background-size: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 1000px) {
  .top-materials-bg {
    background: transparent url("../img/index/bg_materials.jpg") no-repeat center bottom;
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .top-materials-bg {
    height: 140px;
  }
}
@media (max-width: 1000px) {
  .top-materials a {
    z-index: 5;
  }
}
@media (max-width: 768px) {
  .top-materials-bg {
    background: transparent url("../img/index/bg_materials.jpg") no-repeat center bottom;
    background-size: cover;
  }
}

.top-materials .top-section-title {
  color: #fff;
  padding: 10rem 0 2rem 3rem;
}

@media (max-width: 768px) {
  .top-materials .top-section-title {
    padding: 10rem 0 2rem 2rem;
  }
}

@media (max-width: 520px) {
  .top-materials .top-section-title {
    padding: 6rem 0 2rem 1rem;
  }
}

@media (max-width: 375px) {
  .top-materials .top-section-title {
    padding: 5rem 0 2rem 1rem;
  }
}
@media (max-width: 768px) {
  .top-materials-bg {
    height: 140px;
  }
}
@media (max-width: 1000px) {
  .top-materials .top-section-title__ja {
    font-size: clamp(1.8rem, 2vw, 2.6rem);
  }
}
@media (max-width: 768px) {
  .top-materials .top-section-title__ja {
    font-size: 2rem;
  }
}
@media (max-width: 520px) {
  .top-materials .top-section-title__ja {
    font-size: 1.8rem;
  }
}
.top-materials .top-section-title::before {
  background: #41acc7 url("../img/index/icon_pdf.svg") no-repeat center center;
  background-size: 43px;
}
@media (max-width: 1000px) {
  .top-materials .top-section-title {
    padding: 1rem 0 2rem 10rem;
    z-index: 5;
  }
}

@media (max-width: 520px) {
  .top-materials .top-section-title {
    padding: 1rem 0 0 5rem;
  }
}
@media (max-width: 520px) {
  .top-materials .top-section-title::before {
    background-size: 21px;
  }
}

.top-materials .top-section-title__en {
  font-size: 14px;
}

@media (max-width: 520px) {
  .top-materials .top-section-title__en {
    font-size: 12px;
  }
}
@media (max-width: 428px) {
  .top-materials .top-section-title__en {
    position: absolute;
    top: 10px;
    left: 40%;
  }
}
/* .top-project */

.top-project {
  min-height: 313px;
  width: 50%;
}
@media (max-width: 1000px) {
  .top-project {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .top-project {
    min-height: 130px;
    width: 100%;
  }
}

.top-project .btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #009464;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 40px;
}

@media (max-width: 768px) {
  .top-project .btn {
    bottom: 10px;
    right: 10px;
    font-size: 13px;
    text-align: center;
    padding: 7px 30px 7px 40px;
  }
}

.top-project .btn::before {
  content: "";
  clip-path: polygon(0 100%, 0 0, 100% 50%);
  background: #fff;
  width: 10px;
  height: 12px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 17px;
}

.top-project-bg {
  background: transparent url("../img/index/bg_about.jpg") no-repeat center top;
  background-size: cover;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .top-project-bg {
    background: transparent url("../img/index/bg_about.jpg") no-repeat center top;
    background-size: 100%;
  }
}

.top-project .top-section-title {
  color: #fff;
  padding: 12rem 2rem 2rem 3rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .top-project .top-section-title {
    padding: 7rem 1rem 7rem 1rem;
  }
}

@media (max-width: 520px) {
  .top-project .top-section-title {
    padding: 5rem 1rem 6rem 1rem;
  }
}

.top-project .top-section-title__ja {
  font-size: clamp(1.8rem, 2vw, 2.6rem);
}
@media (max-width: 768px) {
  .top-project .top-section-title__ja {
    font-size: 2rem;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .top-project .top-section-title__ja {
    font-size: 1.8rem;
    text-align: center;
  }
}

.top-project .top-section-title::before {
  background: #009464 url("../img/index/icon_check.svg") no-repeat center center;
  background-size: 43px;
}

@media (max-width: 520px) {
  .top-project .top-section-title::before {
    background-size: 21px;
  }
}

.top-project .top-section-title__en {
  font-size: 14px;
}

@media (max-width: 768px) {
  .top-project .top-section-title__en {
    font-size: 10px;
    text-align: center;
  }
}
/* .top-pamflet */

.top-pamflet {
  min-height: 313px;
  width: 50%;
}

@media (max-width: 1000px) {
  .top-pamflet {
    min-height: 360px;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .top-pamflet {
    min-height: 130px;
    width: 100%;
  }
}

.top-pamflet .btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #f8742e;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 40px;
}

@media (max-width: 768px) {
  .top-pamflet .btn {
    bottom: 10px;
    right: 10px;
    font-size: 13px;
    text-align: center;
    padding: 7px 30px 7px 40px;
  }
}

.top-pamflet .btn::before {
  content: "";
  clip-path: polygon(0 100%, 0 0, 100% 50%);
  background: #fff;
  width: 10px;
  height: 12px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 17px;
}

.top-pamflet-bg {
  background: #f8742e url("../img/index/bg_pamflet.jpg") no-repeat center top;
  background-size: cover;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .top-pamflet-bg {
    background: #f8742e url("../img/index/bg_pamflet.jpg") no-repeat center top;
    background-size: 100%;
  }
}

.top-pamflet .top-section-title {
  color: #fff;
  padding: 10rem 2rem 2rem 3rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .top-pamflet .top-section-title {
    padding: 4rem 1rem 6rem 1rem;
  }
}

@media (max-width: 520px) {
  .top-pamflet .top-section-title {
    padding: 5rem 1rem 6rem 1rem;
  }
}
@media (max-width: 375px) {
  .top-pamflet.top-section-title {
    padding: 5rem 0 2rem 1rem;
  }
}

.top-pamflet .top-section-title__ja {
  font-size: clamp(1.8rem, 2vw, 2.6rem);
}

@media (max-width: 768px) {
  .top-pamflet .top-section-title__ja {
    font-size: 2rem;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .top-pamflet .top-section-title__ja {
    font-size: 1.8rem;
    text-align: center;
  }
}
.top-pamflet .top-section-title::before {
  background: #f8742e url("../img/index/icon_book.svg") no-repeat center center;
  background-size: 43px;
}

@media (max-width: 520px) {
  .top-pamflet .top-section-title::before {
    background-size: 21px;
  }
}

.top-pamflet .top-section-title__en {
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .top-pamflet .top-section-title__en {
    font-size: 12px;
    text-align: center;
    line-height: 1.8;
  }
}
.top-pamflet .top-section-title__en span {
  display: block;
  padding-top: 10px;
}
/* .top-intro */

.top-intro {
  min-height: 300px;
  width: 100%;
}

@media (max-width: 768px) {
  .top-intro {
    min-height: 380px;
  }
}
@media (max-width: 520px) {
  .top-intro {
    min-height: auto;
    min-height: 320px;
  }
}

@media (max-width: 428px) {
  .top-intro {
    min-height: 260px;
  }
}
.top-intro .btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #f8742e;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 40px;
}

.top-intro__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 0 20px 0 0;
}

@media (max-width: 1000px) {
  .top-intro__main {
    gap: 30px;
  }
  .top-intro__head {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .top-intro__main {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }
  .top-intro__head {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .top-intro__main {
    gap: 10px;
  }
}
.top-intro__wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 1000px) {
  .top-intro__wrap {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .top-intro__wrap {
    width: 90%;
    justify-content: center;
    margin: 0 auto;
  }
}
.top-intro-nav {
  max-width: 300px;
  position: relative;
  top: 35px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .top-intro-nav {
    top: 0;
  }
}
.top-intro-nav a {
  display: block;
  height: 100%;
}

.top-intro-nav__text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  display: block;
  background: rgba(252, 35, 100, 0.9);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  padding: 5px 0;
}

@media (max-width: 768px) {
  .top-intro-nav__text {
    font-size: 13px;
  }
}
.top-intro-nav__text::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  clip-path: polygon(0 100%, 0 0, 100% 50%);
  width: 11px;
  height: 13px;
  background: #fff;
  display: inline-block;
}

@media (max-width: 428px) {
  .top-intro-nav__text::before {
    left: 10px;
  }
}
.top-intro-bg {
  background: transparent url("../img/index/bg_intro.jpg") no-repeat center top;
  background-size: cover;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .top-intro-bg {
    background: transparent url("../img/index/bg_intro.jpg") no-repeat center top;
    background-size: cover;
  }
}

.top-intro .top-section-title {
  color: #fff;
  padding: 10rem 0 1rem 3rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .top-intro .top-section-title {
    padding: 3rem 1rem 1rem 1rem;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .top-intro .top-section-title {
    padding: 3rem 1rem 1rem 1rem;
  }
}
@media (max-width: 375px) {
  .top-intro .top-section-title {
    padding: 3rem 0 2rem 1rem;
  }
}

.top-intro .top-section-title__ja {
  font-size: clamp(1.8rem, 2vw, 2.6rem);
}

@media (max-width: 768px) {
  .top-intro .top-section-title__ja {
    font-size: 2rem;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .top-intro .top-section-title__ja {
    font-size: 1.8rem;
    text-align: center;
  }
}
.top-intro .top-section-title::before {
  background: #fc2364 url("../img/index/icon_calender.svg") no-repeat center center;
  background-size: 43px;
}

@media (max-width: 520px) {
  .top-intro .top-section-title::before {
    background-size: 21px;
  }
}

.top-intro .top-section-title__en {
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .top-intro .top-section-title__en {
    font-size: 12px;
    text-align: center;
    line-height: 1.8;
  }
}
.top-intro .top-intro-lead {
  color: #fff;
  padding: 0 0 0 3rem;
  line-height: 1.8;
  font-size: 14px;
}

@media (max-width: 1000px) {
  .top-intro .top-intro-lead br {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-intro .top-intro-lead {
    text-align: center;
    font-size: 12px;
  }
}
/* .top-letter */

.top-letter {
  min-height: 210px;
  width: 100%;
}

@media (max-width: 1000px) {
  .top-letter {
    min-height: 180px;
  }
}
@media (max-width: 520px) {
  .top-letter {
    min-height: auto;
  }
}

.top-letter .btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #f8742e;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 40px;
}

.top-letter-bg {
  background: transparent url("../img/index/bg_letter.jpg") no-repeat center top;
  background-size: cover;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .top-letter-bg {
    background: transparent url("../img/index/bg_letter.jpg") no-repeat center bottom;
    background-size: cover;
  }
}

.top-letter .top-section-title {
  color: #fff;
  padding: 1rem 0 1rem 10rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .top-letter .top-section-title {
    padding: 3rem 1rem 1rem 1rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .top-letter .top-section-title {
    padding: 3rem 1rem 0 1rem;
  }
}
@media (max-width: 375px) {
  .top-letter .top-section-title {
    padding: 3rem 0 0 1rem;
  }
}

.top-letter .top-section-title__ja {
  font-size: clamp(1.8rem, 2vw, 2.6rem);
}

@media (max-width: 768px) {
  .top-letter .top-section-title__ja {
    font-size: 2rem;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .top-letter .top-section-title__ja {
    font-size: 1.8rem;
    text-align: center;
  }
}
.top-letter .top-section-title::before {
  background: #00b9ef url("../img/index/icon_note.svg") no-repeat center 60%;
  background-size: 34px;
}

@media (max-width: 520px) {
  .top-letter .top-section-title::before {
    background-size: 21px;
  }
}

.top-letter .top-section-title__en {
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .top-letter .top-section-title__en {
    font-size: 12px;
    text-align: center;
    line-height: 1.8;
  }
}
.top-letter__wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 10px 30px;
  margin-top: 10px;

}

@media (max-width: 1000px) {
  .top-letter__wrap {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .top-letter__wrap {
    padding: 30px 20px 20px 10px;
    gap: 20px;
    margin-top: 0;
  }
}
.top-letter__item img {
  max-width: 80px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 5;
}
@media (max-width: 1000px) {
  .top-letter__item img {
    width: 60px;
  }
}
@media (max-width: 768px) {
  .top-letter__item img {
    width: 40px;
  }
}

@media (max-width:520px) {
  .top-letter__item img {
    width: 35px;
    left : 30%;
    transform: translateX(-50%);
    top : -20px;
  }
}
.top-letter__item a {
  position: relative;
}

.top-letter__label {
  background: #00b9ef;
  color: #fff;
  font-size: 18px;
  text-align: center;
  max-width: 165px;
  border-radius: 10px;
  padding: 15px 10px 15px 80px;
  left: 10px;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .top-letter__label {
    font-size: 14px;
    padding: 10px 10px 10px 50px;
  }
}
@media (max-width: 768px) {
  .top-letter__label {
    font-size: 12px;
    padding: 10px 10px 10px 30px;
  }
}
@media (max-width: 520px) {
  .top-letter__label {
    font-size: 10px;
    padding: 10px 5px 10px 10px;
  }
}
.top-letter__label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 80px;
  clip-path: polygon(0 100%, 0 0, 100% 50%);
  width: 11px;
  height: 13px;
  background: #fff;
  display: inline-block;
}
@media (max-width: 1000px) {
  .top-letter__label::before {
    left: 6vw;
  }
}
@media (max-width: 768px) {
  .top-letter__label::before {
    left: 3.5vw;
    width: 5px;
    height: 7px;
  }
}

@media (max-width: 428px) {
  .top-letter__label::before {
    left: 2vw;
  }
}
.top-banner {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 520px) {
  .top-banner {
    flex-direction: column;
  }
}

.top-banner a {
  width: 100%;
  max-width: calc(50% - 1.5rem);
}

@media (max-width: 520px) {
  .top-banner a {
    max-width: 100%;
  }
}

.top-banner-bottom {
  margin-bottom: 3rem;
}

.footer {
  background: #303136;
  padding: 6rem 0 0;
  color: #fff;
}

@media (max-width: 520px) {
  .footer {
    padding: 4rem 0 0;
  }
}

.footer__bg {
  background: transparent url("../img/common/bg_footer_city.svg") repeat-x center bottom;
}

@media (max-width: 520px) {
  .footer__bg {
    background: transparent url("../img/common/bg_footer_city_sp.svg") repeat-x center bottom;
    background-size: 100%;
    padding: 0 1rem;
  }
}

.footer-city {
  text-align: center;
}

@media (max-width: 520px) {
  .footer-city {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }
}

.footer-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

@media (max-width: 520px) {
  .footer-title {
    font-size: 1.4rem;
  }
}

.footer-lead {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
}

@media (max-width: 520px) {
  .footer-lead {
    line-height: 1.4;
    font-size: 1.1rem;
  }
}

.footer-lead2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

@media (max-width: 520px) {
  .footer-lead {
    line-height: 1.4;
    font-size: 1.1rem;
  }
}

.footer-text {
  margin-bottom: 3rem;
  text-align: center;
}

.footer-site {
  display: flex;
  gap: 7rem;
  margin-bottom: 7rem;
  justify-content: center;
}

@media (max-width: 1000px) {
  .footer-site {
    gap: 4rem;
  }
}

@media (max-width: 520px) {
  .footer-site {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

.footer-site__item {
  width: calc(50% - 7rem);
}

@media (max-width: 520px) {
  .footer-site__item {
    width: 100%;
    text-align: center;
  }
}

.footer-site__label {
  text-align: center;
  margin-bottom: 0.7rem;
}

@media (max-width: 520px) {
  .footer-site__label {
    font-size: 1.2rem;
  }
}

.footer-site__link {
  display: block;
  margin-bottom: 1rem;
}

@media (max-width: 520px) {
  .footer-site__link {
    margin-bottom: 2rem;
  }
}

.footer-site__link img {
  transition: 0.3s all;
}

.footer-site__link:hover img {
  opacity: 0.8;
}

.footer-site__nav a {
  border: 3px solid #fff;
  background: #434346;
  margin: 0 auto;
  display: block;
  width: 185px;
  color: #fff;
  font-size: 1.8rem;
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.5rem;
}

@media (max-width: 520px) {
  .footer-site__nav a {
    width: 70%;
    max-width: 220px;
    border-radius: 6px;
    font-size: 1.3rem;
    border: 1px solid #fff;
  }
}

.footer-site__nav a::before {
  /* arrow */
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 520px) {
  .footer-site__nav a::before {
    border-width: 4px 0 4px 6px;
  }
}

.footer-site__nav a:hover {
  background: #58585a;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 4rem;
  padding: 0;
}

@media (max-width: 768px) {
  .footer-nav {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    margin-bottom: 6rem;
    font-size: 1.5rem;
  }
}

@media (max-width: 520px) {
  .footer-nav {
    margin-bottom: 2rem;
    font-size: 1.3rem;
  }
}

.footer-nav__item {
  margin-bottom: 1rem;
  color: #b7b7b7;
}

.footer-nav__item a {
  color: #b7b7b7;
}

.footer-nav__item--label {
  border-bottom: 1px solid #ffffff;
}

.footer-nav__item--line {
  color: #b7b7b7;
}

.footer-nav__item--link a {
  background: transparent url("../img/common/icon_pdf.svg") no-repeat right center;
  padding: 0 2rem 0 0;
  background-size: auto 100%;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer-nav__item--link a {
    background-size: 10px;
  }
}

@media (max-width: 520px) {
  .footer-nav__item--link a {
    font-size: 1rem;
  }
}

.footer-bottom {
  border-top: 3px solid #fff;
  text-align: center;
  padding: 4rem 0 3rem;
}

@media (max-width: 520px) {
  .footer-bottom {
    padding: 3rem 0 3rem;
    border-top: 2px solid #fff;
  }
}

.footer-bottom__name {
  margin-bottom: 2rem;
}

@media (max-width: 520px) {
  .footer-bottom__name {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}

.footer-bottom__copy {
  color: #b7b7b7;
  font-size: 1.2rem;
  letter-spacing: 0;
}

@media (max-width: 520px) {
  .footer-bottom__copy {
    font-size: 0.8rem;
  }
}

.lower-pan {
  background: #525252;
  padding: 1.5rem 0;
}

@media (max-width: 520px) {
  .lower-pan {
    padding: 1rem 0;
  }
}

.lower-pan__list {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .lower-pan__list {
    font-size: 1.1rem;
    flex-wrap: wrap;
    line-height: 1.8;
  }
}

.lower-pan__item {
  padding: 0 2.5rem 0 0;
}

.lower-pan__item::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg) translateY(-50%);
}

@media (max-width: 520px) {
  .lower-pan__item::after {
    width: 4px;
    height: 4px;
  }
}

.lower-pan__item:last-child::after {
  content: none;
}

.lower-pan__item--link {
  color: #fff;
  text-decoration: underline;
}

.lower-pan__item--current {
  color: #fff;
}

.lower-mv {
  height: 314px;
}

@media (max-width: 520px) {
  .lower-mv {
    height: auto;
    padding: 2rem 0 0;
  }
}

.lower-mv__topics {
  background: transparent url("../img/topics/bg_topics.jpg") no-repeat center center;
  background-size: cover;
}

.lower-mv__event {
  background: transparent url("../img/event/bg_event.jpg") no-repeat center center;
  background-size: cover;
}

.lower-mv__action {
  background: transparent url("../img/action/bg_action.jpg") no-repeat center center;
  background-size: cover;
}

.lower-mv__news {
  background: transparent url("../img/news/bg_news.jpg") no-repeat center center;
  background-size: cover;
}

.lower-mv__sponsorship {
  background: transparent url("../img/sponsorship/bg_sponsorship.jpg") no-repeat center center;
  background-size: cover;
}

.lower-mv__document {
  background: transparent url("../img/document/bg_document.jpg") no-repeat center center;
  background-size: cover;
}

.lower-mv__event2 {
  background: transparent url("../img/event/bg_event2.jpg") no-repeat center center;
  background-size: cover;
}

.lower-mv__report2 {
  background: transparent url("../img/event/bg_report2.jpg") no-repeat center center;
  background-size: cover;
}

.lower-mv .inner {
  height: 100%;
}

.lower-mv-title {
  background: #fff;
  max-width: 294px;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2rem 0 0;
}

@media (max-width: 520px) {
  .lower-mv-title {
    position: relative;
    max-width: 50%;
    padding: 1rem 0 0;
    border-radius: 5px 5px 0 0;
    margin: 0;
  }
}

.lower-mv-title__logo {
  background: red;
  width: 38px;
  height: 38px;
  margin: 0 auto;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 520px) {
  .lower-mv-title__logo {
    margin-bottom: 0.5rem;
    width: 20px;
    height: 20px;
  }
}

.lower-mv-title__logo img {
  width: 80%;
}

.lower-mv-title__logo img.lower-mv-title__logo--news {
  width: 21px;
}

.lower-mv-title__logo img.lower-mv-title__logo--action {
  width: 18px;
}

@media (max-width: 520px) {
  .lower-mv-title__logo img.lower-mv-title__logo--action {
    width: 10px;
  }
}

.lower-mv-title__ja {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 520px) {
  .lower-mv-title__ja {
    font-size: 1.4rem;
  }
}

.lower-mv-title__ja--sponsorship {
  margin-bottom: 2rem;
}

.lower-mv-title__en {
  font-size: 1.6rem;
}

@media (max-width: 520px) {
  .lower-mv-title__en {
    font-size: 0.9rem;
  }
}

.lower-mv__topics .lower-mv-title__logo {
  background: #f8742e;
}

.lower-mv__event .lower-mv-title__logo {
  background: #447e3e;
}

.lower-mv__action .lower-mv-title__logo {
  background: #475558;
}

.lower-mv__news .lower-mv-title__logo {
  background: #41acc7;
}

.lower-mv__sponsorship .lower-mv-title__logo {
  background: #82b135;
}

.lower-mv__document .lower-mv-title__logo {
  background: #41acc7;
}

.lower-mv__document .lower-mv-title__logo img {
  width: 23px;
}

.lower-mv__event2 .lower-mv-title__logo img {
  width: 23px;
}
.lower-mv__report2 .lower-mv-title__logo img {
  width: 23px;
}

.lower-mv__action .lower-mv-title__ja {
  font-size: 2rem;
  line-height: 1.2;
}

@media (max-width: 520px) {
  .lower-mv__action .lower-mv-title__ja {
    font-size: 1.4rem;
  }
}

.lower-main {
  padding: 8rem 0 7rem;
}

@media (max-width: 520px) {
  .lower-main {
    padding-bottom: 0;
    padding: 2rem 0 0;
  }
}

.lower-main .wp-pagenavi {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

@media (max-width: 520px) {
  .lower-main .wp-pagenavi {
    gap: 1rem;
  }
}

.lower-pager a {
  width: 40px;
  height: 40px;
  background: #adadad;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
}

@media (max-width: 520px) {
  .lower-pager a {
    font-size: 1.3rem;
  }
}

.lower-pager a:hover {
  background: #333333;
  opacity: 1;
}

.lower-pager .extend {
  display: none;
}

.lower-pager .current {
  width: 40px;
  height: 40px;
  background: #333333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
}

@media (max-width: 520px) {
  .lower-pager .current {
    font-size: 1.3rem;
  }
}

.lower-btn__nav a {
  border: 3px solid #fff;
  background: #434346;
  margin: 0 auto;
  display: block;
  width: 185px;
  color: #fff;
  font-size: 1.8rem;
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.8rem;
  width: 268px;
  padding: 1.5rem 0;
}

@media (max-width: 520px) {
  .lower-btn__nav a {
    width: 70%;
    max-width: 220px;
    border-radius: 6px;
    font-size: 1.3rem;
    border: 1px solid #fff;
  }
}

.lower-btn__nav a::before {
  /* arrow */
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 520px) {
  .lower-btn__nav a::before {
    border-width: 4px 0 4px 6px;
  }
}

.lower-btn__nav a:hover {
  background: #58585a;
}

@media (max-width: 520px) {
  .static-main {
    padding-top: 4rem;
  }
}

.static-body {
  margin-bottom: 12rem;
}

@media (max-width: 520px) {
  .static-body {
    margin-bottom: 4rem;
  }
}

.static-body:last-child {
  margin-bottom: 0;
}

.static-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .static-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 520px) {
  .static-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

.static-title.min {
  font-size: 2.4rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .static-title.min {
    font-size: 2rem;
  }
}
@media (max-width: 520px) {
  .static-title.min {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

.static-text {
  margin-bottom: 4rem;
  text-align: center;
  line-height: 2;
}

@media (max-width: 520px) {
  .static-text {
    margin-block: 3rem;
    text-align: left;
  }
}

.static-text__min {
  font-size: 1.4rem;
}

.static-image {
  margin: 0 auto 4rem;
}

.static-image__aboutus01 {
  max-width: 480px;
}

.static-image__aboutus02 {
  max-width: 525px;
  margin: 2rem 0;
}

.static-image__aboutus03 {
  max-width: 784px;
  margin: 0 auto;
}

.static-image__aboutus04 {
  max-width: 493px;
  margin: 4rem auto 0;
}

.static-image__aboutus05 {
  max-width: 1000px;
  margin: 0 auto;
}

.static-table {
  border-top: 1px solid #707070;
  width: 100%;
}

.static-table th {
  border-bottom: 1px solid #707070;
  width: 25%;
  padding: 2rem 0;
  text-align: left;
  font-weight: 400;
}

@media (max-width: 520px) {
  .static-table th {
    display: block;
    width: 100%;
    border: none;
    padding-bottom: 1rem;
  }
}

.static-table th.static-table__no-border {
  border-bottom: none;
}

.static-table td {
  border-bottom: 1px solid #707070;
  width: 75%;
  padding: 2rem 0;
}

@media (max-width: 520px) {
  .static-table td {
    display: block;
    width: 100%;
    padding-top: 0;
    line-height: 1.6;
  }
}

.static-table td.static-table__no-border {
  border-bottom: none;
}

.static-table td .static-table__indent {
  text-indent: -1.2rem;
  padding-left: 1.2rem;
  margin-bottom: 0.7rem;
}

.static-table td .static-table__indent:last-child {
  margin-bottom: 0;
}

.topics-nav__list {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 820px) {
  .topics-nav__list {
    gap: 1rem;
  }
}

@media (max-width: 520px) {
  .topics-nav__list {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.topics-nav__item {
  width: calc(25% - 3rem);
}

@media (max-width: 820px) {
  .topics-nav__item {
    width: calc(25% - 1rem);
  }
}

@media (max-width: 520px) {
  .topics-nav__item {
    width: calc(50% - 0.5rem);
  }
}

.topics-nav__link {
  display: block;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 1.5rem 0;
  text-align: center;
  background: #adadad;
}

@media (max-width: 820px) {
  .topics-nav__link {
    font-size: 1.6rem;
  }
}

@media (max-width: 520px) {
  .topics-nav__link {
    font-size: 1.3rem;
  }
}

.topics-nav__link--current {
  background: #f8742e;
}

.topics-nav__link:hover {
  opacity: 1;
  background: #f8742e;
}

.topics-search {
  background: #393939;
  border-radius: 8px;
  padding: 2rem 0 4rem;
  margin-bottom: 6rem;
}

@media (max-width: 520px) {
  .topics-search {
    margin-bottom: 4rem;
  }
}

.topics-search__title {
  font-size: 2.1rem;
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (max-width: 520px) {
  .topics-search__title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}

.topics-search__wrap {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  background: #f4f4f4;
  border-radius: 100px;
}

.topics-search__input {
  width: 100%;
  display: block;
  left: 2rem;
  border: none;
  font-size: 1.4rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  padding: 1rem 2rem;
  background: none;
}

@media (max-width: 520px) {
  .topics-search__input {
    font-size: 1.3rem;
  }
}

.topics-search__submit {
  background: transparent url("../img/common/icon_search.svg") no-repeat center center;
  background-size: cover;
  width: 18px;
  height: 19px;
  display: block;
  position: absolute;
  left: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  text-indent: -9999px;
  cursor: pointer;
}

.topics-group {
  margin-bottom: 12rem;
}

.topics-group:last-child {
  margin-block: 0;
}

.loop-list {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .loop-list {
    gap: 1rem;
  }
  .top-topics-list.loop-list {
    gap: 2rem;
  }
}

@media (max-width: 520px) {
  .top-topics-list.loop-list {
    gap: 1rem;
  }
}

.top-topics-list.loop-list {
  margin-bottom: 0;
}

@media (max-width: 520px) {
  .top-topics-list.loop-list {
    flex-direction: column;
    gap: 0;
  }
}

.loop-link {
  display: flex;
  gap: 2rem;
}

@media (max-width: 768px) {
  .loop-link {
    flex-direction: column;
    gap: 1rem;
  }
}

.top-topics-list .loop-link {
  color: #fff;
}

@media (max-width: 520px) {
  .top-topics-list .loop-link {
    display: flex;
    width: 100%;
    flex-direction: unset;
  }
}

.loop-link:hover {
  opacity: 1;
}

.loop-link:hover .loop-image img {
  scale: 1.1;
}

@media (max-width: 520px) {
  .top-topics-list .loop-image {
    display: none;
  }
}

.loop-link:hover .loop-category {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

.loop-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s all;
}

.loop-item {
  width: calc(50% - 3rem);
  background: #f5f5f5;
  padding: 2rem;
}

@media (max-width: 768px) {
  .loop-item {
    width: calc(50% - 1rem);
    padding: 1rem;
  }
}

@media (max-width: 520px) {
  .top-topics-list .loop-item {
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
  }
}

.loop-item.is-dm,
.loop-item.is-dn {
  display: none;
}

.top-topics-list .loop-item {
  padding: 0;
}

.top-topics-list .loop-item {
  background: none;
}

@media (max-width: 768px) {
  .top-topics-list .loop-item:nth-child(n + 3) {
    display: none;
  }
}

.loop-thum {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .loop-thum {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .top-topics-list .loop-thum {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 520px) {
  .top-topics-list .loop-thum {
    aspect-ratio: unset;
    width: 45%;
  }
}

@media (max-width: 768px) {
  .loop-thum {
    border-radius: 6px;
  }
}

.loop-image {
  height: 100%;
}

.loop-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #fff;
  font-size: 1.6rem;
  background: #f8742e;
  border-radius: 10px;
  display: inline-block;
  z-index: 50;
  padding: 0.5rem 1rem;
  transition: 0.3s all;
  font-weight: 700;
}

@media (max-width: 520px) {
  .loop-category {
    font-size: 1.2rem;
    border-radius: 6px;
  }

  .top-topics-list .loop-category {
    left: 0;
    position: relative;
    top: 0;
  }
}

.loop-detail {
  width: calc(100% - 200px);
}

@media (max-width: 768px) {
  .loop-detail {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .top-topics-list .loop-text {
    display: none;
  }
}

.loop-label {
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .top-topics-list .loop-label {
    margin-bottom: 1rem;
  }
}

.loop-text {
  font-size: 1.4rem;
}

@media (max-width: 520px) {
  .loop-text {
    display: none;
  }
}

.loop-text-action {
  display: flex;
}

.loop-text-action__label {
  width: 27%;
}

.loop-text-action__text {
  width: 73%;
  white-space: normal;
  word-break: break-word;
}

.topics-label {
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 520px) {
  .topics-label {
    font-size: 1.5rem;
  }
}

.topics-detail-head {
  margin-bottom: 4rem;
}

.topics-detail-head__sub {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.topics-detail-head__category {
  background: #f8742e;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  border-radius: 8px;
  display: inline-block;
  padding: 1rem 1.5rem;
}

@media (max-width: 520px) {
  .topics-detail-head__category {
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
  }
}

.topics-detail-head__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .topics-detail-head__title {
    font-size: 2.4rem;
  }
}

@media (max-width: 520px) {
  .topics-detail-head__title {
    font-size: 1.8rem;
  }
}

.topics-detail-head__title--center {
  text-align: center;
}

.event-calendar {
  margin-bottom: 7rem;
}

@media (max-width: 520px) {
  .event-calendar {
    margin-bottom: 4rem;
  }
}

.event-calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.event-calendar-head__ym {
  font-weight: bold;
}

.event-calendar-head__nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.event-calendar-head__arrow {
  width: 57px;
  display: block;
  padding: 0.5rem 0;
  text-align: center;
  background: #99be96;
}

.event-calendar-head__arrow img {
  vertical-align: middle;
}

.event-calendar-head__arrow--next img {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.event-calendar-head__today {
  width: 57px;
  display: block;
  padding: 0.5rem 0;
  background: #447e3e;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.event-calendar__wrap {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.event-calendar-table {
  width: 100%;
  margin-bottom: 1.5rem;
}

.event-calendar-table__th {
  color: #fff;
  background: #9f9f9f;
  text-align: center;
  padding: 0.3rem 0;
  border: 2px solid #fff;
  font-size: 1.5rem;
  width: 14.2857142857%;
}

@media (max-width: 520px) {
  .event-calendar-table__th {
    font-size: 1.2rem;
  }
}

.event-calendar-table__th--sat {
  background: #6f8791;
}

.event-calendar-table__th--mon {
  background: #b56161;
}

.event-calendar-table__td {
  text-align: center;
  border: 2px solid #fff;
}

.event-calendar-table__day {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 68px;
  background: #f4f4f4;
}

@media (max-width: 768px) {
  .event-calendar-table__day {
    font-size: 1.6rem;
  }
}

@media (max-width: 520px) {
  .event-calendar-table__day {
    font-size: 1.2rem;
    height: 40px;
  }
}

.event-calendar-table__link {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 68px;
  background: #c3e6c0;
}

@media (max-width: 768px) {
  .event-calendar-table__link {
    font-size: 1.6rem;
  }
}

@media (max-width: 520px) {
  .event-calendar-table__link {
    font-size: 1.2rem;
    height: 40px;
  }
}

.event-calendar-table__td.is-view .event-calendar-table__day,
.event-calendar-table__td.is-view .event-calendar-table__link {
  border: 3px solid #d8be12;
}

.event-calendar__after {
  font-size: 1.4rem;
}

@media (max-width: 520px) {
  .event-calendar__after {
    font-size: 1.1rem;
  }
}

.event-group {
  margin-bottom: 12rem;
}

.event-group:last-child {
  margin-block: 0;
}

.event-label {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  white-space: normal;
}

@media (max-width: 768px) {
  .event-label {
    font-size: 2rem;
  }
}

@media (max-width: 520px) {
  .event-label {
    font-size: 1.5rem;
    text-align: center;
  }
}

.page-head {
  margin-bottom: 4rem;
}

@media (max-width: 520px) {
  .page-head {
    margin-bottom: 2rem;
  }
}

.page-head__image {
  margin-bottom: 4rem;
}

@media (max-width: 520px) {
  .page-head__image {
    margin-bottom: 2rem;
  }
}

.page-head__sub {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 520px) {
  .page-head__sub {
    gap: 1rem;
  }
}

.page-head__category {
  background: #f8742e;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  border-radius: 8px;
  display: inline-block;
  padding: 1rem 1.5rem;
}

@media (max-width: 520px) {
  .page-head__category {
    font-size: 1.2rem;
  }
}

.page-title {
  display: flex;
  gap: 3rem;
}

@media (max-width: 520px) {
  .page-title {
    gap: 1rem;
  }
}

.page-title__set {
  flex: 1;
}

.page-title__icon {
  max-width: 105px;
  height: 100px;
}

@media (max-width: 520px) {
  .page-title__icon {
    max-width: 80px;
    height: 80px;
  }
}

.page-title__icon img {
  width: 90%;
  transition: 0.3s all;
  display: block;
  margin: 0 auto;
}

.page-title__icon:hover img {
  width: 100%;
}

@media (max-width: 520px) {
  .page-title__icon img {
    height: 80px;
    object-fit: contain;
  }
}

.page-title__data {
  font-size: 2rem;
  display: block;
  font-weight: 400;
}

@media (max-width: 768px) {
  .page-title__data {
    font-size: 1.6rem;
  }
}

@media (max-width: 520px) {
  .page-title__data {
    font-size: 1.2rem;
  }
}

.page-title__text {
  display: block;
  font-weight: 700;
  line-height: 1.3;
  font-size: 3rem;
}

@media (max-width: 768px) {
  .page-title__text {
    font-size: 2.4rem;
  }
}

@media (max-width: 520px) {
  .page-title__text {
    font-size: 1.8rem;
  }
}

.page-body {
  margin-bottom: 7rem;
}

@media (max-width: 520px) {
  .page-body {
    margin-bottom: 5rem;
  }
}

.page-body:last-child {
  margin-bottom: 0;
}

.page-contents {
  line-height: 1.8;
}

.page-contents a {
  text-decoration: underline;
}

.topics-detail-body {
  margin-bottom: 10rem;
}

@media (max-width: 520px) {
  .topics-detail-body {
    margin-bottom: 5rem;
  }
}

.page-contents p {
  line-height: 1.8;
  margin-bottom: 3rem;
}

.page-contents p:last-child {
  margin-bottom: 0;
}

.page-contents a {
  text-decoration: underline;
  transition: none;
}

.page-contents a.icon-link {
  background: transparent url("../img/common/icon_link_black.svg") no-repeat right center;
  background-size: 16px;
  padding: 0 2rem 0 0;
}

.wp-block-button a.icon-link {
  background: #000 url("../img/common/icon_link_black.svg") no-repeat right center;
  background-size: 16px;
  padding: 0 2rem 0 0;
  text-decoration: none;
  padding: 10px 40px;
}

.page-contents a.icon-pdf {
  background: transparent url("../img/common/icon_link_pdf.svg") no-repeat right center;
  background-size: 12px;
  padding: 0 2rem 0 0;
}

.page-contents .wp-block-table {
  margin-bottom: 4rem;
}

.page-contents .wp-block-heading {
  margin-bottom: 3rem;
}

.page-contents .wp-block-image {
  margin-bottom: 3rem;
}

.page-contents .wp-block-image.aligncenter {
  margin: 0 auto 3rem;
}

.page-contents .wp-block-image .aligncenter {
  text-align: center;
}

.page-contents .wp-block-image.aligncenter img {
  width: 100%;
}

.page-contents ul {
  margin-bottom: 4rem;
}

.page-contents ol {
  margin-bottom: 4rem;
}

.page-contents ul li .page-contents ol li {
  margin-bottom: 0.5rem;
}

.page-body p:last-child {
  margin-bottom: 0;
}

.page-list {
  width: 100%;
  border: 1px solid #989898;
}

.page-list__item {
  border-bottom: 1px solid #989898;
  padding: 1.5rem;
  display: flex;
  align-items: center;
}

@media (max-width: 520px) {
  .page-list__item {
    padding: 1rem;
  }
}

.page-list__item:last-child {
  border-bottom: 0;
}

.page-list__label {
  width: 12rem;
  display: block;
}

@media (max-width: 520px) {
  .page-list__label {
    width: 7rem;
  }
}

.page-list__text {
  padding: 0 0 0 1rem;
}

.page-list__text a {
  text-decoration: underline;
}

.page-lead {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (max-width: 520px) {
  .page-lead {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
}

.page-icon {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 520px) {
  .page-icon {
    gap: 1rem;
  }
}

.page-icon__item {
  max-width: 110px;
  text-align: center;
}

.news-label {
  text-align: center;
  font-size: 2.1rem;
  margin-block: 3rem;
}

@media (max-width: 520px) {
  .news-label {
    font-size: 1.5rem;
  }
}

.news-search {
  margin-block: 7rem;
}

@media (max-width: 520px) {
  .news-search {
    margin-bottom: 5rem;
  }
}

.news-search-head {
  background: #525252;
  text-align: center;
  font-size: 2.1rem;
  color: #fff;
  padding: 1.5rem 0;
}

@media (max-width: 520px) {
  .news-search-head {
    font-size: 1.5rem;
  }
}

.news-search-head__icon {
  background: transparent url("../img/news/icon_search.svg") no-repeat left center;
  background-size: auto 100%;
  padding: 0 0 0 3rem;
}

.news-search-head__btn {
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.news-search-head__btn a {
  background: #41acc7;
  color: #fff;
  font-size: 1.4rem;
  padding: 0.8rem 0;
  border-radius: 10px;
  width: 108px;
  display: block;
  text-indent: 10px;
}

@media (max-width: 520px) {
  .news-search-head__btn a {
    font-size: 1.1rem;
  }
}

.news-search-head__btn a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 8px 5px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.news-search-head__btn a.is-active::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}

.news-search-body {
  border: 2px solid #41acc7;
  border-top: none;
}

.news-search-body.is-hide {
  display: none;
}

.news-search-title {
  background: #525252;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 0;
}

@media (max-width: 520px) {
  .news-search-label__title {
    font-size: 1.8rem;
    padding: 5px 0;
  }
}

.news-search-set {
  border: 2px solid #fc2364;
}

.news-search-label {
  background: #fc2364;
  color: #fff;
  padding: 1rem 3rem;
}

.news-search-label__title {
  font-size: 2.1rem;
}

@media (max-width: 520px) {
  .news-search-label__title {
    font-size: 1.3rem;
  }
}

.news-search-label__min {
  font-size: 1.4rem;
  padding: 0 0 0 4rem;
}

@media (max-width: 520px) {
  .news-search-label__min {
    font-size: 0.9rem;
  }
}

.news-search-contents {
  padding: 2rem 5rem;
}

@media (max-width: 520px) {
  .news-search-contents {
    padding: 2rem;
  }
}

.news-search-icon {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.news-search-icon__list {
  width: 168px;
}

@media (max-width: 520px) {
  .news-search-icon__list {
    width: calc(33.3333333333% - 0.8rem);
  }
}

.news-search-icon__radio {
  display: none;
}

.news-search-icon__radio + .news-search-icon__label {
  border: 1px solid #ebebeb;
  border-radius: 8px;
  height: 136px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--01 {
  max-width: 102px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--01 {
    max-width: 80%;
  }
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--02 {
  max-width: 105px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--02 {
    max-width: 80%;
  }
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--03 {
  max-width: 130px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--03 {
    max-width: 80%;
  }
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--04 {
  max-width: 113px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--04 {
    max-width: 80%;
  }
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--05 {
  max-width: 106px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--05 {
    max-width: 80%;
  }
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--06 {
  max-width: 106px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--06 {
    max-width: 80%;
  }
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--07 {
  max-width: 111px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--07 {
    max-width: 80%;
  }
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--08 {
  max-width: 106px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--08 {
    max-width: 80%;
  }
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--09 {
  max-width: 105px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--09 {
    max-width: 80%;
  }
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--10 {
  max-width: 106px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--10 {
    max-width: 80%;
  }
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--11 {
  max-width: 101px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--11 {
    max-width: 80%;
  }
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--12 {
  max-width: 105px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--12 {
    max-width: 80%;
  }
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--13 {
  max-width: 106px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--13 {
    max-width: 80%;
  }
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--14 {
  max-width: 105px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--14 {
    max-width: 80%;
  }
}

.news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--15 {
  max-width: 106px;
}

@media (max-width: 520px) {
  .news-search-icon__radio + .news-search-icon__label img.news-search-icon__label--15 {
    max-width: 80%;
  }
}

.news-search-icon__radio:checked + .news-search-icon__label {
  background: #e5e5e5;
}

.news-search-radio {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 520px) {
  .news-search-radio {
    gap: 1rem;
  }
}

.news-search-radio__list {
  width: 160px;
}

@media (max-width: 520px) {
  .news-search-radio__list {
    width: calc(33.3333333333% - 0.8rem);
  }
}

.news-search-radio__radio {
  display: none;
}

.news-search-radio__list a {
  border: 2px solid #adadad;
  border-radius: 10px;
  display: block;
  text-align: center;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1.3;
}

@media (max-width: 520px) {
  .news-search-radio__list a {
    font-size: 1.2rem;
    height: 36px;
  }
}

.news-search-radio__radio + .news-search-radio__label .news-search-radio__label--bold {
  font-weight: bold;
  display: block;
}

.news-search-radio__radio + .news-search-radio__label .news-search-radio__label--min {
  font-size: 1.3rem;
  display: block;
}

@media (max-width: 520px) {
  .news-search-radio__radio + .news-search-radio__label .news-search-radio__label--min {
    font-size: 0.9rem;
  }
}

.news-search-radio__radio:checked + .news-search-radio__label {
  background: #41acc7;
  border-color: #41acc7;
  color: #fff;
  font-weight: 700;
}

.news-search-input {
  background: #f4f4f4;
  border-radius: 100px;
  margin-bottom: 2rem;
}

@media (max-width: 520px) {
  .news-search-input {
    margin-bottom: 3rem;
  }
}

.news-search-input__text {
  font-size: 1.5rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  background: none;
  border: none;
  width: 100%;
  padding: 1rem 2rem;
}

@media (max-width: 520px) {
  .news-search-input__text {
    font-size: 1.3rem;
  }
}

.news-search-input__date {
  border: none;
  background: #f4f4f4;
  border-radius: 4px;
  border: 2px solid #dbdbdb;
  margin: 0 0.5rem;
  padding: 0.85rem 5rem 0.85rem 2rem;
  color: #535353;
  cursor: pointer;
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

@media (max-width: 520px) {
  .news-search-input__date {
    font-size: 1.3rem;
    padding: 1rem;
    width: 33%;
  }
}
@media (max-width: 375px) {
  .news-search-input__date {
    width: 32%;
  }
}

.news-search-input__date::-webkit-input-placeholder {
  color: #c4c4c4;
}

.news-search-input__date::-moz-placeholder {
  color: #c4c4c4;
}

.news-search-input__date::placeholder {
  color: #c4c4c4;
}

.lower-calendar__icon::after {
  content: "";
  background-image: url("../img/common/icon_calender.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}

.news-search-btn {
  max-width: 268px;
  margin: 0 auto;
}

.news-search-btn__submit {
  background: #e71a2f url("../img/news/icon_search.svg") no-repeat 20px center;
  width: 100%;
  border: none;
  color: #fff;
  border-radius: 8px;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.5rem 0;
  letter-spacing: 0.2rem;
  cursor: pointer;
  transition: 0.3s all;
}

@media (max-width: 520px) {
  .news-search-btn__submit {
    font-size: 1.3rem;
    background-size: auto 40%;
  }
}

.news-search-btn__submit:hover {
  opacity: 0.8;
}

.action-first {
  margin-bottom: 5rem;
}

@media (max-width: 520px) {
  .action-first {
    line-height: 1.8;
    margin-bottom: 2rem;
  }
}

.action-first__label {
  margin-bottom: 5rem;
  text-align: center;
  font-size: 2.1rem;
  font-weight: bold;
}

.action-first__err {
  text-align: center;
  font-weight: 700;
  margin: 0 0 2rem;
  color: #ff053f;
}

.action-first__err--sub {
  text-align: center;
}

.action-nav {
  margin-bottom: 7rem;
}

@media (max-width: 768px) {
  .action-nav {
    margin-bottom: 3rem;
  }
}

.action-nav__title {
  font-size: 2rem;
  color: #2fa999;
  margin-bottom: 1rem;
  font-weight: 400;
}

@media (max-width: 520px) {
  .action-nav__title {
    text-align: center;
    font-size: 1.4rem;
  }
}

.action-nav-list {
  display: flex;
  gap: 5rem;
}

@media (max-width: 768px) {
  .action-nav-list {
    gap: 3rem;
    flex-direction: column;
  }
}

.action-nav-list__item {
  width: 162px;
  height: 106px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2fa999;
  color: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .action-nav-list__item {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    padding: 1.5rem;
  }
}

.action-nav-list__item:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #2fa999;
  position: absolute;
  right: -3.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .action-nav-list__item:after {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
    top: auto;
    bottom: -25px;
  }
}

.action-nav-list__item:last-child:after {
  content: none;
}

.action-nav-list__text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  display: block;
  padding: 3rem 0 0;
}

@media (max-width: 900px) {
  .action-nav-list__text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .action-nav-list__text {
    padding: 0 0 0 2rem;
    text-align: left;
    line-height: 1.5;
    font-size: 1.4rem;
    width: 85%;
  }
}

@media (max-width: 768px) {
  .action-nav-list__text br {
    display: none;
  }
}

.action-nav-list__num {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 20px;
  color: #2fa999;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 2rem;
}

@media (max-width: 768px) {
  .action-nav-list__num {
    position: relative;
    left: 0;
    -webkit-transform: none;
    transform: none;
    margin: 0;
    top: 0;
    font-size: 1.4rem;
  }
}

.action-group {
  margin-bottom: 7rem;
}

@media (max-width: 768px) {
  .action-group {
    margin-bottom: 3rem;
  }
}

.action-group:last-child {
  margin-bottom: 0;
}

.action-label {
  background: #475558;
  font-size: 2.1rem;
  color: #fff;
  padding: 1.5rem 4rem;
  font-weight: 400;
  margin-bottom: 4rem;
}

@media (max-width: 520px) {
  .action-label {
    font-size: 1.3rem;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
  }
}

.action-set {
  padding: 0 4rem 4rem;
}

@media (max-width: 768px) {
  .action-set {
    padding: 0 0 3rem;
  }
}

.action-sub {
  font-size: 2rem;
  font-weight: 700;
  color: #444d4c;
  margin-bottom: 2rem;
  letter-spacing: 0.3rem;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .action-sub {
    flex-wrap: wrap;
    letter-spacing: 0.1rem;
  }
}

@media (max-width: 520px) {
  .action-sub {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
}

.action-sub__icon {
  background: #2fa999;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.2rem 1rem;
  margin: 0 0 0 2rem;
  color: #fff;
  letter-spacing: 0.1rem;
}

@media (max-width: 768px) {
  .action-sub__icon {
    font-size: 1rem;
  }
}

.action-sub__icon2 {
  background: #939393;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.2rem 1rem;
  margin: 0 0 0 2rem;
  color: #fff;
  letter-spacing: 0.1rem;
}

@media (max-width: 768px) {
  .action-sub__icon2 {
    font-size: 1rem;
    margin: 0 0 0 1rem;
  }
}

.action-sub__err {
  color: #ff053f;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 0 0 0 2rem;
}

.action-sub__text {
  padding: 0 0 0 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

@media (max-width: 768px) {
  .action-sub__text {
    padding: 2rem 0 0;
    display: block;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .action-sub__text {
    font-size: 1.1rem;
  }
}

.action-preview1,
.action-preview2 {
  max-width: 500px;
  width: 100%;
}

.action-text {
  padding: 0 0 0 2rem;
  font-size: 1.8rem;
}

@media (max-width: 520px) {
  .action-text {
    font-size: 1.1rem;
  }
}

.action-text2 {
  margin-bottom: 2rem;
}

@media (max-width: 520px) {
  .action-text2 {
    font-size: 1.1rem;
  }
}

.action-text2__err {
  color: #ff053f;
  font-weight: 700;
}

.action-img-wrap {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.action-img {
  max-width: 120px;
}
@media (max-width: 768px) {
  .action-img {
    max-width: 20%;
  }
}

.action-check {
  display: flex;
  gap: 6rem;
  align-items: center;
}

@media (max-width: 768px) {
  .action-check {
    gap: 3rem;
  }
}

.action-check__radio {
  display: none;
}

.action-check__radio + .action-check__label {
  font-size: 1.8rem;
  padding: 0 0 0 3rem;
  cursor: pointer;
}

@media (max-width: 520px) {
  .action-check__radio + .action-check__label {
    font-size: 1.2rem;
    padding: 0 0 0 2rem;
  }
}

.action-check__radio + .action-check__label::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #a8a8a8;
  background: #e3e3e3;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 520px) {
  .action-check__radio + .action-check__label::before {
    width: 13px;
    height: 13px;
  }
}

.action-check__radio + .action-check__label::after {
  content: "";
  width: 10px;
  height: 5px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  opacity: 0;
  display: block;
  position: absolute;
  left: 5px;
  top: 4px;
}

@media (max-width: 520px) {
  .action-check__radio + .action-check__label::after {
    width: 6px;
    height: 3px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    left: 4px;
    top: 3px;
  }
}

.action-check__radio:checked + .action-check__label::before {
  background: #2fa999;
  border-color: #2fa999;
}

.action-check__radio:checked + .action-check__label::after {
  opacity: 1;
}

.action-link {
  margin-bottom: 2rem;
}

.action-link a {
  display: block;
  width: 185px;
  color: #fff;
  font-size: 1.8rem;
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 0;
  width: 184px;
  background: #303136;
}

@media (max-width: 520px) {
  .action-link a {
    border-radius: 6px;
    font-size: 1.3rem;
  }
}

.action-link a::before {
  /* arrow */
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 520px) {
  .action-link a::before {
    border-width: 4px 0 4px 6px;
  }
}

.action-icon {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-icon__list {
  width: 168px;
}

@media (max-width: 768px) {
  .action-icon__list {
    width: calc(33.3333333333% - 1rem);
  }
}

.action-icon__radio {
  display: none;
}

.action-icon__radio + .action-icon__label {
  border: 1px solid #ebebeb;
  border-radius: 8px;
  height: 136px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label {
    height: 100%;
    aspect-ratio: 1/1;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--01 {
  max-width: 102px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--01 {
    width: 80%;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--02 {
  max-width: 105px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--02 {
    width: 80%;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--03 {
  max-width: 130px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--03 {
    width: 80%;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--04 {
  max-width: 113px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--04 {
    width: 80%;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--05 {
  max-width: 106px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--05 {
    width: 80%;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--06 {
  max-width: 106px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--06 {
    width: 80%;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--07 {
  max-width: 111px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--07 {
    width: 80%;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--08 {
  max-width: 106px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--08 {
    width: 80%;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--09 {
  max-width: 105px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--09 {
    width: 80%;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--10 {
  max-width: 106px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--10 {
    width: 80%;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--11 {
  max-width: 101px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--11 {
    width: 80%;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--12 {
  max-width: 105px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--12 {
    width: 80%;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--13 {
  max-width: 106px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--13 {
    width: 80%;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--14 {
  max-width: 105px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--14 {
    width: 80%;
  }
}

.action-icon__radio + .action-icon__label img.action-icon__label--15 {
  max-width: 106px;
}

@media (max-width: 768px) {
  .action-icon__radio + .action-icon__label img.action-icon__label--15 {
    width: 80%;
  }
}

.action-icon__radio:checked + .action-icon__label {
  background: #e5e5e5;
}

.action-radio {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.action-radio__list {
  width: 160px;
}

@media (max-width: 768px) {
  .action-radio__list {
    width: calc(33.3333333333% - 1rem);
  }
}

.action-radio__radio {
  display: none;
}

.action-radio__radio + .action-radio__label {
  border: 2px solid #adadad;
  border-radius: 10px;
  display: block;
  text-align: center;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1.3;
}

@media (max-width: 520px) {
  .action-radio__radio + .action-radio__label {
    font-size: 1.2rem;
    height: 36px;
  }
}

.action-radio__radio + .action-radio__label .action-radio__label--bold {
  font-weight: bold;
  display: block;
}

.action-radio__radio + .action-radio__label .action-radio__label--min {
  font-size: 1.3rem;
  display: block;
}

.action-radio__radio:checked + .action-radio__label {
  background: #2fa999;
  border-color: #2fa999;
  color: #fff;
  font-weight: 700;
}

.action-input__text {
  width: 100%;
  border: 1px solid #ecf0ef;
  padding: 2rem;
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

@media (max-width: 520px) {
  .action-input__text {
    font-size: 1.3rem;
    padding: 1.5rem;
  }
}

.action-input__date {
  border: none;
  background: #f4f4f4;
  border-radius: 4px;
  border: 2px solid #dbdbdb;
  margin: 0 0.5rem;
  padding: 0.85rem 5rem 0.85rem 2rem;
  color: #535353;
  cursor: pointer;
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

@media (max-width: 768px) {
  .action-input__date {
    padding: 1rem;
    width: 35%;
  }
}

@media (max-width: 520px) {
  .action-input__date {
    font-size: 1.3rem;
  }
}

.action-input__date::-webkit-input-placeholder {
  color: #c4c4c4;
}

.action-input__date::-moz-placeholder {
  color: #c4c4c4;
}

.action-input__date::placeholder {
  color: #c4c4c4;
}

.action-input__text::-webkit-input-placeholder {
  color: #c4c4c4;
}

.action-input__text::-moz-placeholder {
  color: #c4c4c4;
}

.action-input__text::placeholder {
  color: #c4c4c4;
}

.action-input__text--half {
  max-width: 400px;
}

.action-input__textarea {
  width: 100%;
  border: 1px solid #ecf0ef;
  padding: 2rem;
  font-size: 1.6rem;
  height: 250px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

@media (max-width: 768px) {
  .action-input__textarea {
    font-size: 1.3rem;
  }
}

.action-input__textarea::-webkit-input-placeholder {
  color: #c4c4c4;
}

.action-input__textarea::-moz-placeholder {
  color: #c4c4c4;
}

.action-input__textarea::placeholder {
  color: #c4c4c4;
}

.action-input__file--label {
  display: block;
  width: 285px;
  color: #fff;
  font-size: 1.8rem;
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 0;
  background: #303136;
  cursor: pointer;
  transition: 0.3s all;
}

@media (max-width: 520px) {
  .action-input__file--label {
    border-radius: 6px;
    font-size: 1.3rem;
    margin: 0 auto;
  }
}

.action-input__file--label::before {
  /* arrow */
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 520px) {
  .action-input__file--label::before {
    border-width: 4px 0 4px 6px;
  }
}

.action-input__file--label:hover {
  opacity: 0.8;
}

.action-input__file--text {
  margin: 5px 0 0;
}

.action-input__file {
  display: none;
}

.action-input__submit {
  background: #2fa999;
  border-radius: 8px;
  width: 100%;
  max-width: 268px;
  display: block;
  transition: 0.3s all;
  margin: 0 auto;
}

.action-input__submit--back {
  background: #5a5a5a;
  margin-top: 4rem;
}

.action-input__submit::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  z-index: 50;
}

.action-input__submit:hover {
  opacity: 0.8;
}

.action-input__submit--btn {
  border: none;
  padding: 1.5rem 0;
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  width: 100%;
  background: none;
  cursor: pointer;
}

@media (max-width: 520px) {
  .action-input__submit--btn {
    font-size: 1.5rem;
  }
}

.action-thanks__lead {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 4rem;
}

@media (max-width: 520px) {
  .action-thanks__lead {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem 0 0;
  }
}

.action-thanks__attention {
  font-size: 2rem;
  color: #ff0000;
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 520px) {
  .action-thanks__attention {
    font-size: 1.3rem;
  }
}

.action-thanks__code {
  background: #2fa999;
  max-width: 546px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

@media (max-width: 520px) {
  .action-thanks__code {
    font-size: 1.5rem;
  }
}

.action-thanks__after {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 4rem;
}

@media (max-width: 520px) {
  .action-thanks__after {
    font-size: 1.2rem;
  }
}

@media (max-width: 520px) {
  .action-thanks__after a {
    display: block;
  }
}

.action-thanks__after--copy {
  text-decoration: underline;
  margin: 0 0 0 2rem;
  padding: 0 2rem 0 0;
  background: transparent url("../img/common/icon_copy.svg") no-repeat right center;
  background-size: 14px;
}

.action-thanks__nav a {
  border: 3px solid #fff;
  background: #434346;
  margin: 0 auto;
  display: block;
  width: 185px;
  color: #fff;
  font-size: 1.8rem;
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.8rem;
  width: 268px;
  padding: 1.5rem 0;
}

@media (max-width: 520px) {
  .action-thanks__nav a {
    width: 70%;
    max-width: 220px;
    border-radius: 6px;
    font-size: 1.3rem;
    border: 1px solid #fff;
  }
}

.action-thanks__nav a::before {
  /* arrow */
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 520px) {
  .action-thanks__nav a::before {
    border-width: 4px 0 4px 6px;
  }
}

.action-thanks__nav a:hover {
  background: #58585a;
}

.action-thanks__nav a::after {
  content: "";
  background: transparent url("../img/common/icon_link.svg") no-repeat center center;
  background-size: 100%;
  width: 16px;
  height: 12px;
  position: absolute;
  right: 2rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  display: block;
}

.about-action-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 3rem;
  flex-wrap: wrap;
}

@media (max-width: 520px) {
  .about-action-list {
    gap: 1rem;
  }
}

.about-action-list__item {
  width: calc(20% - 3rem);
}

@media (max-width: 520px) {
  .about-action-list__item {
    width: calc(50% - 1rem);
  }
}

.about-action-list__icon,
.top-about-slider__icon {
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin: 1rem auto 0;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-action-list__icon img,
.top-about-slider__icon img {
  width: 80%;
  transition: 0.3s all;
  margin: 0 auto;
}
.about-action-list__icon:hover img,
.top-about-slider__icon:hover img {
  width: 90%;
}

.about-action-list__text {
  font-size: 1.4rem;
  line-height: 2;
}

@media (max-width: 520px) {
  .about-action-list__text {
    font-size: 1.2rem;
  }
}

.sponsorship {
  padding-bottom: 5rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .sponsorship {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    padding-bottom: 0;
  }
}
.sponsorship-body {
  padding: 8rem 0 5rem;
}
@media (max-width: 768px) {
  .sponsorship-body {
    padding: 3rem 0 0rem;
  }
}
.sponsorship-head {
  margin-bottom: 3rem;
}
.sponsorship-head__title {
  background: #e55242;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  padding: 7rem 3rem;
}
@media (max-width: 800px) {
  .sponsorship-head__title {
    font-size: 2.7rem;
  }
}
@media (max-width: 768px) {
  .sponsorship-head__title {
    padding: 2rem 1rem;
    font-size: 1.8rem;
  }
}
.sponsorship-head__text {
  line-height: 1.8;
}
@media (max-width: 768px) {
  .sponsorship-head__text {
    margin-bottom: 2rem;
  }
}
.sponsorship-head__bg {
  background: #fbdace;
  padding: 3.5rem 35rem 3.5rem 3rem;
}
@media (max-width: 768px) {
  .sponsorship-head__bg {
    padding: 2rem;
  }
}
.sponsorship-head__image {
  position: absolute;
  top: -17rem;
  right: 2rem;
  max-width: 286px;
}
@media (max-width: 768px) {
  .sponsorship-head__image {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 50%;
    top: auto;
    right: auto;
  }
}
.sponsorship-head-sub {
  display: flex;
  gap: 3rem;
  flex-direction: column;
  margin-bottom: 2rem;
}
.sponsorship-head-sub__box {
  border-left: 5px solid #e55242;
  padding: 1.5rem 0 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
@media (max-width: 768px) {
  .sponsorship-head-sub__box {
    border-left: 3px solid #e55242;
    padding: 0.5rem 0 0.5rem 2rem;
  }
}
.sponsorship-head-sub__title {
  color: #e55242;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .sponsorship-head-sub__title {
    font-size: 1.4rem;
  }
}
.sponsorship-head-icon {
  margin-bottom: 14rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 0;
}
@media (max-width: 768px) {
  .sponsorship-head-icon {
    gap: 3rem 0;
    padding: 0 3rem;
    margin-bottom: 6rem;
  }
}
.sponsorship-head-icon__item {
  width: 20%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .sponsorship-head-icon__item {
    width: 33.3333%;
  }
}
.sponsorship-head-icon__item img {
  width: 60%;
}
@media (max-width: 768px) {
  .sponsorship-head-icon__item img {
    width: 80%;
  }
}
.sponsorship-second {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .sponsorship-second {
    margin-bottom: 3rem;
  }
}
.sponsorship-second__bg {
  background: #1fa170;
  color: #fff;
  display: flex;
  align-items: center;
}
.sponsorship-second__inner {
  padding: 1.6rem 3rem;
  flex: 1;
}
@media (max-width: 768px) {
  .sponsorship-second__inner {
    padding: 2rem;
  }
}
.sponsorship-second__icon {
  position: absolute;
  left: 60%;
  top: 0;
  width: 230px;
}
@media (max-width: 890px) {
  .sponsorship-second__icon {
    width: 180px;
    left: 72%;
  }
}
@media (max-width: 768px) {
  .sponsorship-second__icon {
    position: relative;
    margin: 1rem 0;
    left: 0%;
    transform: translateX(0%);
    width: 40%;
  }
}
@media (max-width: 520px) {
  .sponsorship-second__icon {
    width: 60%;
  }
}
.sponsorship-second__icon img {
  width: 100%;
}
.sponsorship-second__label {
  border: 1px solid #fff;
  font-size: 2rem;
  display: inline-block;
  padding: 0.3rem 3rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .sponsorship-second__label {
    font-size: 1.2rem;
  }
}
.sponsorship-second__title {
  font-size: 3rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .sponsorship-second__title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
}
.sponsorship-second__image {
  max-width: 226px;
}
@media (max-width: 950px) {
  .sponsorship-second__image {
    display: none;
  }
}
.sponsorship-second__bottom {
  background: #d8ece0;
  padding: 4rem 3rem;
}
@media (max-width: 768px) {
  .sponsorship-second__bottom {
    padding: 2rem;
  }
}
.sponsorship-second__bottom--sp {
  display: none;
}
@media (max-width: 768px) {
  .sponsorship-second__bottom--sp {
    display: block;
    margin: 0 auto;
    width: 80%;
    max-width: 400px;
  }
}
.sponsorship-second__title2 {
  color: #1fa170;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .sponsorship-second__title2 {
    font-size: 1.8rem;
    text-align: center;
  }
}
.sponsorship-second__text {
  line-height: 1.6;
}
.sponsorship-second__inner2 {
  flex: 1;
}
.sponsorship-second__text2 {
  line-height: 1.8;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .sponsorship-second__text2 {
    margin-bottom: 2rem;
  }
}
.sponsorship-second__text2--bold {
  font-weight: 600;
}
.sponsorship-second__text2:last-child {
  margin-bottom: 0;
}
.sponsorship-second__wrap {
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  .sponsorship-second__wrap {
    flex-direction: column;
  }
}
.sponsorship-second__image2 {
  max-width: 250px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sponsorship-second__image2 {
    max-width: 100%;
  }
}
.sponsorship-second-sub {
  display: flex;
  gap: 3rem;
  flex-direction: column;
  margin-bottom: 5rem;
}
.sponsorship-second-sub__text--col {
  color: #1fa170;
  font-weight: 600;
}
.sponsorship-second-sub__box {
  border-left: 5px solid #1fa170;
  padding: 1.5rem 0 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
@media (max-width: 768px) {
  .sponsorship-second-sub__box {
    border-left: 3px solid #1fa170;
    padding: 0.5rem 0 0.5rem 2rem;
  }
}
.sponsorship-second-sub__title {
  color: #1fa170;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .sponsorship-second-sub__title {
    font-size: 1.4rem;
  }
}
.sponsorship-second-detail {
  margin-bottom: 6rem;
}
.sponsorship-second-detail__title {
  background: #1fa170;
  font-size: 2.4rem;
  color: #fff;
  padding: 2rem 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .sponsorship-second-detail__title {
    padding: 2rem;
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.sponsorship-second-detail__list {
  margin-bottom: 3rem;
  display: flex;
  gap: 2rem;
  padding: 0 3rem;
}
@media (max-width: 768px) {
  .sponsorship-second-detail__list {
    padding: 0;
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
.sponsorship-second-detail__list:last-child {
  margin-bottom: 0;
  flex-direction: column;
  gap: 1rem;
}
.sponsorship-second-detail__label span {
  background: #1fa170;
  color: #fff;
  font-size: 2rem;
  padding: 0.2rem 2rem;
  min-width: 116px;
  text-align: center;
  display: inline-block;
}
@media (max-width: 768px) {
  .sponsorship-second-detail__label span {
    font-size: 1rem;
    padding: 0.2rem 1rem;
    min-width: 17vw;
  }
}
.sponsorship-second-detail__text {
  flex: 1;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .sponsorship-second-detail__text {
    font-size: 1.2rem;
  }
}
.sponsorship-second-detail__text--flex {
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .sponsorship-second-detail__text--flex {
    gap: 2rem;
  }
}
.sponsorship-second-detail__image {
  max-width: 145px;
}
@media (max-width: 768px) {
  .sponsorship-second-detail__image {
    max-width: 30%;
  }
}
.sponsorship-second-detail__inner {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .sponsorship-second-detail__inner {
    font-size: 1.2rem;
  }
}
.sponsorship-second-area {
  margin-bottom: 13rem;
}
@media (max-width: 768px) {
  .sponsorship-second-area {
    margin-bottom: 5rem;
  }
}
.sponsorship-second-area__title {
  background: #1fa170;
  font-size: 2.4rem;
  color: #fff;
  padding: 2rem 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .sponsorship-second-area__title {
    padding: 2rem;
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.sponsorship-second-area__lead {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .sponsorship-second-area__lead {
    margin-bottom: 2rem;
  }
}
.sponsorship-second-area-list {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .sponsorship-second-area-list {
    flex-direction: column;
  }
}
.sponsorship-main-head {
  background: #e55242;
  padding: 3rem;
  color: #fff;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .sponsorship-main-head {
    padding: 2rem;
  }
}
.sponsorship-main-head__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .sponsorship-main-head__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.sponsorship-main-head__list {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .sponsorship-main-head__list {
    gap: 2rem;
  }
}
.sponsorship-main-head__item {
  width: calc(25% - 3rem);
}
@media (max-width: 768px) {
  .sponsorship-main-head__item {
    width: calc(50% - 1rem);
  }
}
.sponsorship-main-head__item a {
  background: #fff;
  display: block;
  border-radius: 4px;
  color: #e55242;
  font-size: 1.8rem;
  text-align: center;
  padding: 1.5rem 0;
  font-weight: 600;
  text-decoration: underline;
  transition: 0.3s all;
}
@media (max-width: 792px) {
  .sponsorship-main-head__item a {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .sponsorship-main-head__item a {
    font-size: 1rem;
    padding: 1rem;
  }
}
.sponsorship-main-head__item a::before {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: 8px;
  border: 2px solid #fff;
  border-radius: 8px;
}

.sponsorship-main-head__item a:hover {
  opacity: 1;
}
.sponsorship-main-head__item:last-child a {
  font-weight: 700;
}
.sponsorship-main-first {
  display: flex;
  gap: 4rem 5rem;
  flex-wrap: wrap;
  margin-bottom: 7rem;
}
@media (max-width: 768px) {
  .sponsorship-main-first {
    flex-direction: column;
    margin-bottom: 5rem;
  }
}
.sponsorship-main-first__box {
  width: calc(50% - 3rem);
}
@media (max-width: 768px) {
  .sponsorship-main-first__box {
    width: 100%;
  }
}
.sponsorship-main-first__title {
  color: #e55242;
  display: flex;
  border-bottom: 5px solid #e55242;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .sponsorship-main-first__title {
    align-items: center;
    gap: 1rem;
    border-bottom: 3px solid #e55242;
  }
}
.sponsorship-main-first__title--num {
  font-size: 5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .sponsorship-main-first__title--num {
    font-size: 2.5rem;
  }
}
.sponsorship-main-first__title--text {
  font-size: 2rem;
  line-height: 1.4;
  padding: 0 0 1.5rem;
}
@media (max-width: 768px) {
  .sponsorship-main-first__title--text {
    font-size: 1.3rem;
    padding: 0;
  }
}
.sponsorship-main-first__label {
  text-align: center;
  color: #e55242;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .sponsorship-main-first__label {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
}
.sponsorship-main-first__text {
  margin-bottom: 3rem;
}
.sponsorship-main-first__image {
  text-align: center;
}
@media (max-width: 768px) {
  .sponsorship-main-first__image {
    max-width: 400px;
    margin: 0 auto;
  }
}
.sponsorship-main-first__note {
  font-size: 1.2rem;
  text-align: center;
  padding: 2rem 0 0;
}
.sponsorship-main-first__box:nth-child(1) .sponsorship-main-first__image img {
  max-width: 244px;
}
.sponsorship-main-first__box:nth-child(2) .sponsorship-main-first__image img {
  max-width: 194px;
}
.sponsorship-main-first__box:nth-child(3) .sponsorship-main-first__image img {
  max-width: 194px;
}
.sponsorship-main-first__box:nth-child(4) .sponsorship-main-first__image img {
  max-width: 100%;
}
.sponsorship-main-first__box:nth-child(5) .sponsorship-main-first__image img {
  max-width: 100%;
}
.sponsorship-main-first__box:nth-child(6) .sponsorship-main-first__image img {
  max-width: 244px;
}
.sponsorship-main-first__box:nth-child(4) .sponsorship-main-first__title {
  color: #1fa170;
  border-bottom-color: #1fa170;
}
.sponsorship-main-first__box:nth-child(4) .sponsorship-main-first__label {
  color: #1fa170;
}

.sponsorship-main-first__box:nth-child(5) .sponsorship-main-first__title {
  color: #1fa170;
  border-bottom-color: #1fa170;
}
.sponsorship-main-first__box:nth-child(5) .sponsorship-main-first__label {
  color: #1fa170;
}
.sponsorship-main-first__box:nth-child(6) .sponsorship-main-first__title {
  color: #0097e0;
  border-bottom-color: #0097e0;
}
.sponsorship-main-first__box:nth-child(6) .sponsorship-main-first__label {
  color: #0097e0;
}
.sponsorship-main-section {
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section {
    margin-bottom: 5rem;
  }
}
.sponsorship-main-section:last-child {
  margin-bottom: 0;
}
.sponsorship-main-section__inner {
  padding: 0 3rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section__inner {
    padding: 0;
  }
}
.sponsorship-main-section__inner--01 {
  margin-bottom: 7rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section__inner--01 {
    margin-bottom: 5rem;
  }
}
.sponsorship-main-section__inner--02 {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section__inner--02 {
    margin-bottom: 5rem;
  }
}
.sponsorship-main-section-head {
  margin-bottom: 3rem;
}
.sponsorship-main-section-head__title {
  background: #e55242;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 2rem 3rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-head__title {
    padding: 2rem;
    font-size: 1.8rem;
  }
}
.sponsorship-main-section-head__text {
  background: #fbdace;
  color: #e55242;
  font-size: 2.4rem;
  padding: 2rem 3rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-head__text {
    padding: 2rem;
    font-size: 1.2rem;
  }
}
.sponsorship-main-section-head__text--mark {
  font-weight: 600;
  background: linear-gradient(transparent 60%, #ff6 60%);
}
.sponsorship-main-section-label {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-label {
    font-size: 1.2rem;
  }
}
.sponsorship-main-section-note {
  padding: 1rem 0;
  font-size: 1.2rem;
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-note {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .sponsorship-main-section-note p {
    padding-left: 1.2rem;
    text-indent: -1.2rem;
  }
}
.sponsorship-main-section-note2 {
  padding: 1rem 0 0;
  font-size: 1.2rem;
  text-align: right;
}
@media (max-width: 768px) {
  .sponsorship-main-section-note2 {
    font-size: 1rem;
  }
}

.sponsorship-main-section-note3 {
  padding: 0 0 0 1.2rem;
  font-size: 1.2rem;
  text-indent: -1.2rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-note3 {
    font-size: 1rem;
    padding-left: 1rem;
    text-indent: -1rem;
  }
}
.sponsorship-main-section-note3-first {
  padding-top: 2rem;
}
.sponsorship-main-section-note4 {
  padding: 2rem 0 4rem;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-note4 {
    font-size: 1rem;
  }
}
.sponsorship-main-section-image2 {
  max-width: 250px;
}
.sponsorship-main-section-thum {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .sponsorship-main-section-thum {
    gap: 0.5rem;
  }
}
.sponsorship-main-section-thum__image {
  max-width: calc(20% - 1rem);
}
@media (max-width: 768px) {
  .sponsorship-main-section-thum__image {
    max-width: calc(33.3333% - 0.5rem);
  }
}
.sponsorship-main-section-thum__spnote {
  display: none;
}
@media (max-width: 768px) {
  .sponsorship-main-section-thum__spnote {
    display: flex;
    align-items: flex-end;
    font-size: 1rem;
    height: 100%;
  }
}
.sponsorship-main-section-thum2 {
  max-width: 810px;
  margin: 2rem auto 0;
}
.sponsorship-main-section-title {
  border-bottom: 4px solid #e55242;
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-title {
    margin-bottom: 1rem;
  }
}
.sponsorship-main-section-title__num {
  width: 30px;
  height: 30px;
  background: #e55242;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .sponsorship-main-section-title__num {
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
  }
}
.sponsorship-main-section-title__text {
  font-size: 2rem;
  color: #e55242;
  font-weight: 700;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .sponsorship-main-section-title__text {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.sponsorship-main-section-toggle {
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle {
    padding-bottom: 4rem;
  }
}
.sponsorship-main-section-toggle__head {
  background: #e55242 url("../img/sponsorship/icon_plus.svg") no-repeat 97% center;
  background-size: 34px;
  padding: 2rem 3rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__head {
    padding: 2rem;
  }
}
.sponsorship-main-section-toggle__head.is-active {
  background: #e55242 url("../img/sponsorship/icon_minus.svg") no-repeat 97% center;
  background-size: 34px;
}
.sponsorship-main-section-toggle__title {
  font-size: 2.4rem;
  font-wight: 700;
  color: #fff;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__title {
    font-size: 1.8rem;
  }
}
.sponsorship-main-section-toggle__body {
  padding: 4rem 3rem 4rem;
  display: none;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__body {
    padding: 2rem 0;
  }
}
.sponsorship-main-section-toggle__body--mb {
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__body--mb {
    padding-bottom: 3rem;
  }
}
.sponsorship-main-section-toggle__label {
  color: #e55242;
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 4px solid #e55242;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__label {
    font-size: 1.4rem;
    border-bottom: 2px solid #e55242;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
}
.sponsorship-main-section-toggle__label--mark {
  font-weight: 600;
  background: linear-gradient(transparent 60%, #ff6 60%);
}
.sponsorship-main-section-toggle__label--mark {
  font-weight: 600;
  background: linear-gradient(transparent 60%, #ff6 60%);
}
.sponsorship-main-section-toggle__label--min {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__label--min {
    font-size: 1.4rem;
  }
}
.sponsorship-main-section-toggle__label--min-g {
  font-size: 1.6rem;
  color: #009e6b;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__label--min-g {
    font-size: 1.4rem;
  }
}
.sponsorship-main-section-toggle__text {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__text {
    margin-bottom: 2rem;
  }
}
.sponsorship-main-section-toggle__text2 {
  margin-bottom: 2rem;
}
.sponsorship-main-section-toggle__detail {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail {
    margin-bottom: 2rem;
  }
}
.sponsorship-main-section-toggle__detail:last-child {
  margin-bottom: 0;
}
.sponsorship-main-section-toggle__detail--label {
  margin-bottom: 1rem;
}
.sponsorship-main-section-toggle__detail2 {
  margin-bottom: 0;
}
.sponsorship-main-section-toggle__detail2--flex {
  display: flex;
  gap: 2rem;
  align-items: baseline;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail2--flex {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.sponsorship-main-section-toggle__detail2--flex2 {
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1000px) {
  .sponsorship-main-section-toggle__detail2--flex2 {
    flex-direction: column;
    gap: 2rem;
  }
}
.sponsorship-main-section-toggle__detail2--flex3 {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail2--flex3 {
    flex-direction: column;
    gap: 2rem;
  }
}
.sponsorship-main-section-toggle__detail2--label {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 950px) {
  .sponsorship-main-section-toggle__detail2--label {
    flex-direction: column;
    gap: 2rem;
  }
}
.sponsorship-main-section-toggle__detail2--label figure {
  max-width: 614px;
}
.sponsorship-main-section-toggle__detail2--box {
  flex: 1;
  background: #fff9af;
  padding: 3rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail2--box {
    padding: 2rem;
  }
}
.sponsorship-main-section-toggle__detail2--box1 {
  max-width: 489px;
  margin: 0 auto;
}
.sponsorship-main-section-toggle__detail2--box2 {
  flex: 1;
  max-width: 489px;
  margin: 0 auto;
}
.sponsorship-main-section-toggle__detail2--sub {
  color: #e55242;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail2--sub {
    margin-bottom: 0.5rem;
  }
}
.sponsorship-main-section-toggle__detail2--sub2 {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail2--sub2 {
    margin-bottom: 2rem;
  }
}
.sponsorship-main-section-toggle__detail2--text {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail2--text {
    font-size: 1rem;
  }
}
.sponsorship-main-section-toggle__detail2--image0 {
  max-width: 100%;
}
.sponsorship-main-section-toggle__detail2--image {
  max-width: 316px;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail2--image {
    max-width: 50%;
    margin: 0 auto;
  }
}
.sponsorship-main-section-toggle__detail2--image02 {
  max-width: 614px;
}
@media (max-width: 1000px) {
  .sponsorship-main-section-toggle__detail2--image02--mid {
    max-width: 400px;
    margin: 0 auto;
    width: 80%;
  }
  .sponsorship-main-section-toggle__detail2--image02--mid-spw100 {
    max-width: 100;
    margin: 0 auto;
    width: 100%;
  }
}
.sponsorship-main-section-toggle__detail2--mid {
  max-width: 400px;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail2--mid {
    max-width: 400px;
    width: 60%;
    margin: 0 auto;
  }
}
.sponsorship-main-section-toggle__detail2--mid2 {
  max-width: 400px;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail2--mid2 {
    max-width: 400px;
    width: 70%;
    margin: 0 auto;
  }
}
.sponsorship-main-section-toggle__detail2--mid3 {
  max-width: 200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail2--mid3 {
    max-width: 150px;
    width: 70%;
    margin: 0 auto;
  }
}
.sponsorship-main-section-toggle__detail2--image03 {
  flex: 1;
  max-width: 400px;
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail2--image03 {
    max-width: 400px;
    width: 60%;
    margin: 0 auto;
  }
}
.sponsorship-main-section-toggle__detail2--note {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail2--note {
    font-size: 1rem;
    text-align: center;
  }
}
.sponsorship-main-section-toggle__detail2--note2 {
  font-size: 1.2rem;
  margin: 2rem 0 0;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail2--note2 {
    font-size: 1rem;
  }
}
.sponsorship-main-section-toggle__detail2--center {
  text-align: center;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
  margin-top: 1rem;
}
.sponsorship-main-section-toggle__detail2--note3 {
  font-size: 1.2rem;
  text-align: center;
  margin: 1rem 0 0;
}
@media (max-width: 768px) {
  .sponsorship-main-section-toggle__detail2--note3 {
    font-size: 1rem;
  }
}

.sponsorship-main-section-form {
  padding: 3rem;
  background: #ddd;
  margin: 3rem 0 0;
}

.sponsorship-main-section-form__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .sponsorship-main-section-form__wrap {
    flex-direction: column;
  }
}

.sponsorship-main-section-form__bg {
  width: 50%;
}

@media (max-width: 768px) {
  .sponsorship-main-section-form__bg {
    width: 100%;
  }
}

.sponsorship-main-section-form__inner {
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 768px) {
  .sponsorship-main-section-form__inner span {
    font-size: 1.5rem;
  }
}

.sponsorship-main-section-form__input {
  width: 200px;
  border: none;
  padding: 2rem;
  font-size: 2rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

@media (max-width: 768px) {
  .sponsorship-main-section-form__input {
    width: 50%;
    padding: 1rem;
  }
}

.sponsorship-main-section-form__note {
  text-align: center;
}

@media (max-width: 768px) {
  .sponsorship-main-section-form__note {
    margin-bottom: 2rem;
  }
}

.sponsorship-main-section-form__btnwrap {
  background: #2fa999;
  border-radius: 8px;
  width: 100%;
  max-width: 268px;
  display: block;
  transition: 0.3s all;
  margin: 0 auto;
  flex: 1;
}

.sponsorship-main-section-form__btnwrap::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  z-index: 50;
}

.sponsorship-main-section-form__btn {
  border: none;
  padding: 1.5rem 0;
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  width: 100%;
  background: none;
  cursor: pointer;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
}

@media (max-width: 768px) {
  .sponsorship-main-section-form__btn {
    font-size: 1.6rem;
  }
}

.sponsorship-bottom {
  padding: 6rem 0 7rem;
  color: #fff;
}
@media (max-width: 768px) {
  .sponsorship-bottom {
    padding: 3rem 0;
  }
}
.sponsorship-bottom-01 {
  background: #1fa170;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .sponsorship-bottom-01 {
    margin-bottom: 2rem;
  }
}
.sponsorship-bottom-02 {
  background: #0067c0;
}
.sponsorship-bottom__title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .sponsorship-bottom__title {
    font-size: 1.8rem;
  }
}
.sponsorship-bottom__text {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .sponsorship-bottom__text {
    text-align: left;
    margin-bottom: 2rem;
  }
}
.sponsorship-bottom__text--marker {
  background: linear-gradient(transparent 80%, #ff6 20%);
}
.sponsorship-bottom__text--last {
  margin-bottom: 4rem;
}
.sponsorship-bottom__text.is-color {
  color: #ff6;
  font-weight: 700;
}
.sponsorship-bottom__border {
  border: 1px solid #fff;
  padding: 1rem;
  margin: 2rem auto;
  max-width: 650px;
}
.sponsorship-bottom__btn {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.sponsorship-bottom__btn--no a {
  pointer-events: none;
}
.sponsorship-bottom__btn--strike {
  text-decoration: line-through;
  font-style: normal;
}
.sponsorship-bottom__btn--mb {
  margin-bottom: 2rem;
}
.sponsorship-bottom__btn a {
  background: #303136;
  color: #fff;
  font-size: 1.8rem;
  display: block;
  border-radius: 8px;
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .sponsorship-bottom__btn a {
    font-size: 1.2rem;
    padding: 1rem 0;
  }
}
.sponsorship-bottom__btn a span {
  padding: 0 2rem 0 0;
  background: transparent url("../img/common/icon_link.svg") no-repeat right center;
}
@media (max-width: 768px) {
  .sponsorship-bottom__btn a span {
    width: 100%;
    display: block;
    background: transparent url("../img/common/icon_link.svg") no-repeat 95% center;
  }
}
.sponsorship-bottom__btn a span::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  display: block;
  content: "";
  position: absolute;
  left: -2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .sponsorship-bottom__btn a span::before {
    left: 1rem;
  }
}
.sponsorship-fixed {
  position: fixed;
  right: 0;
  top: 200px;
  display: flex;
  flex-direction: column;
  z-index: 999;
}
@media (max-width: 768px) {
  .sponsorship-fixed {
    top: auto;
    bottom: 0;
    display: block;
    width: 100%;
  }
  .sponsorship-fixed__list {
    display: flex;
    width: 100%;
  }
  .sponsorship-fixed__item {
    width: 50%;
  }
}
.sponsorship-fixed a {
  color: #fff;
  font-weight: 600;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: block;
  padding: 20px 10px 40px;
}
@media (max-width: 768px) {
  .sponsorship-fixed a {
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    text-align: center;
    padding: 10px;
  }
}
.sponsorship-fixed a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .sponsorship-fixed a::before {
    display: none;
  }
}
.sponsorship-fixed__item--01 a {
  background: #1fa170;
}
.sponsorship-fixed__item--02 a {
  background: #0067c0;
}
@media (max-width: 768px) {
  .sponsorship + .footer {
    padding-bottom: 4rem;
  }
}

.sponsorship-main-section-way {
  margin-bottom: 4rem;
}

.sponsorship-main-section-head2 {
  background: #00ace7;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.sponsorship-main-section-way-image {
  margin-bottom: 1rem;
}

.sponsorship-main-section-way-after {
  background: #fff799;
  color: #ea5514;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .sponsorship-main-section-way-after {
    font-size: 1.6rem;
  }
}

.history {
  overflow: visible;
}
@media (max-width: 768px) {
  .history {
    padding-bottom: 3rem;
  }
}
.history-head {
  padding: 8rem 0 0;
}
@media (max-width: 768px) {
  .history-head {
    padding: 3rem 0 0;
  }
}
.history-head__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .history-head__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.history-nav {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .history-nav {
    margin-bottom: 2rem;
  }
}
.history-nav__list {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .history-nav__list {
    gap: 1rem;
  }
}
.history-nav__item {
  width: calc(33.3333333333% - 2rem);
}
@media (max-width: 768px) {
  .history-nav__item {
    width: calc(33.3333333333% - 1rem);
  }
}
.history-nav__item a {
  background: #adadad;
  border-radius: 8px;
  color: #fff;
  font-size: 2.1rem;
  text-align: center;
  display: block;
  padding: 1.5rem 0;
}
.history-nav__item a:hover {
  opacity: 1;
  background: #223970;
}
@media (max-width: 768px) {
  .history-nav__item a {
    font-size: 1rem;
    border-radius: 4px;
  }
}
.history-nav__item a.is-current {
  background: #223970;
}
.history-body {
  padding: 0;
  display: none;
}
.history-body.is-active {
  display: block;
}
.history-bar {
  width: 11px;
  height: 100%;
  background: #d5d5d5;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 1000px) {
  .history-bar {
    width: 6px;
    left: 20px;
  }
}
.history-bar::after {
  content: "";
  width: 11px;
  height: 90px;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgb(213, 213, 213);
  background: linear-gradient(180deg, rgb(213, 213, 213) 0%, rgb(255, 255, 255) 100%);
  display: block;
}
@media (max-width: 1000px) {
  .history-bar::after {
    width: 6px;
    left: 3px;
  }
}
.history-bar::before {
  content: "";
  width: 11px;
  height: 90px;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgb(213, 213, 213);
  background: linear-gradient(0deg, rgb(213, 213, 213) 0%, rgb(255, 255, 255) 100%);
  display: block;
}
@media (max-width: 1000px) {
  .history-bar::before {
    width: 6px;
    left: 3px;
  }
}
.history-icon {
  width: 130px;
  top: 0.3rem;
}
@media (max-width: 1000px) {
  .history-icon {
    width: 70px;
    top: 1rem;
  }
}
.history-icon-right {
  display: none;
}
@media (max-width: 1000px) {
  .history-icon-right {
    display: block;
  }
}
@media (max-width: 1000px) {
  .history-icon-left {
    display: none;
  }
}
.history-detail {
  flex: 1;
}
.history-detail-inner {
  margin-bottom: 2rem;
}
.history-set {
  max-width: 526px;
  display: flex;
  gap: 10px;
  flex-direction: row-reverse;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  .history-set {
    max-width: 95%;
    left: 5px;
    flex-direction: row;
  }
}
.history-set-right {
  flex-direction: row;
  position: relative;
  left: 73.7%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 1000px) {
  .history-set-right {
    left: 5px;
    -webkit-transform: none;
    transform: none;
  }
}
.history-set-right .history-icon {
  top: 1.5rem;
}
@media (max-width: 1000px) {
  .history-set-right .history-icon {
    top: 1rem;
  }
}
.history-set-01 {
  padding: 70px 0 0;
  margin-bottom: -230px;
}
@media (max-width: 1000px) {
  .history-set-01 {
    margin-bottom: 30px;
    padding: 20px 0 0;
  }
}
.history-set-04 {
  margin-bottom: -10px;
}
@media (max-width: 1000px) {
  .history-set-04 {
    margin-bottom: 30px;
  }
}
.history-set-05 {
  margin-bottom: -260px;
}
@media (max-width: 1000px) {
  .history-set-05 {
    margin-bottom: 30px;
  }
}
.history-set-06 {
  margin-bottom: -40px;
}
@media (max-width: 1000px) {
  .history-set-06 {
    margin-bottom: 30px;
  }
}
.history-set-07 {
  margin-bottom: -520px;
}
@media (max-width: 1000px) {
  .history-set-07 {
    margin-bottom: 30px;
  }
}
.history-set-08 {
  margin-bottom: 80px;
}
@media (max-width: 1000px) {
  .history-set-08 {
    margin-bottom: 30px;
  }
}
.history-set-09 {
  padding-bottom: 60px;
}
@media (max-width: 1000px) {
  .history-set-09 {
    padding-bottom: 60px;
  }
}
.history-set-10 {
  padding: 70px 0 0;
  margin-bottom: -230px;
}
@media (max-width: 1000px) {
  .history-set-10 {
    margin-bottom: 30px;
    padding: 20px 0 0;
  }
}
.history-set-11 {
  margin-bottom: -140px;
}
@media (max-width: 1000px) {
  .history-set-11 {
    margin-bottom: 30px;
  }
}
.history-set-12 {
  margin-bottom: -160px;
}
@media (max-width: 1000px) {
  .history-set-12 {
    margin-bottom: 30px;
  }
}
.history-set-13 {
  margin-bottom: -110px;
}
@media (max-width: 1000px) {
  .history-set-13 {
    margin-bottom: 30px;
  }
}
.history-set-14 {
  margin-bottom: -210px;
}
@media (max-width: 1000px) {
  .history-set-14 {
    margin-bottom: 30px;
  }
}
.history-set-15 {
  margin-bottom: -110px;
}
@media (max-width: 1000px) {
  .history-set-15 {
    margin-bottom: 30px;
  }
}
.history-set-16 {
  margin-bottom: -180px;
}
@media (max-width: 1000px) {
  .history-set-16 {
    margin-bottom: 30px;
  }
}
.history-set-17 {
  margin-bottom: -90px;
}
@media (max-width: 1000px) {
  .history-set-17 {
    margin-bottom: 30px;
  }
}
.history-set-18 {
  margin-bottom: -100px;
}
@media (max-width: 1000px) {
  .history-set-18 {
    margin-bottom: 30px;
  }
}
.history-set-19 {
  margin-bottom: -180px;
}
@media (max-width: 1000px) {
  .history-set-19 {
    margin-bottom: 30px;
  }
}
.history-set-21 {
  padding: 70px 0 0;
  margin-bottom: -230px;
}
@media (max-width: 1000px) {
  .history-set-21 {
    margin-bottom: 30px;
    padding: 20px 0 0;
  }
}
.history-set-22 {
  margin-bottom: -100px;
}
@media (max-width: 1000px) {
  .history-set-22 {
    margin-bottom: 30px;
  }
}
.history-set-23 {
  margin-bottom: 50px;
}
@media (max-width: 1000px) {
  .history-set-23 {
    margin-bottom: 30px;
  }
}
.history-set-24 {
  margin-bottom: -250px;
}
@media (max-width: 1000px) {
  .history-set-24 {
    margin-bottom: 30px;
  }
}
.history-set-25 {
  margin-bottom: -70px;
}
@media (max-width: 1000px) {
  .history-set-25 {
    margin-bottom: 30px;
  }
}
.history-set-26 {
  margin-bottom: -250px;
}
@media (max-width: 1000px) {
  .history-set-26 {
    margin-bottom: 30px;
  }
}
.history-set-27 {
  margin-bottom: -90px;
}
@media (max-width: 1000px) {
  .history-set-27 {
    margin-bottom: 30px;
  }
}
.history-set-28 {
  margin-bottom: -160px;
}
@media (max-width: 1000px) {
  .history-set-28 {
    margin-bottom: 30px;
  }
}
.history-set-29 {
  margin-bottom: -380px;
}
@media (max-width: 1000px) {
  .history-set-29 {
    margin-bottom: 30px;
  }
}
.history-set-30 {
  margin-bottom: -540px;
}
@media (max-width: 1000px) {
  .history-set-30 {
    margin-bottom: 30px;
  }
}
.history-set-32 {
  margin-bottom: -150px;
}
@media (max-width: 1000px) {
  .history-set-32 {
    margin-bottom: 30px;
  }
}
.history-set-33 {
  margin-bottom: -140px;
}
@media (max-width: 1000px) {
  .history-set-33 {
    margin-bottom: 30px;
  }
}
.history-year {
  font-size: 2.1rem;
  color: #223970;
  font-weight: 700;
  border-bottom: 4px solid #e6e6e6;
  padding: 0 0 0 0.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .history-year {
    font-size: 1.5rem;
  }
}
.history-year::before {
  content: "";
  background: #223970;
  height: 4px;
  width: 80px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
}
@media (max-width: 768px) {
  .history-year::before {
    width: 60px;
  }
}
.history-text {
  margin-bottom: 1rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .history-text {
    font-size: 1.1rem;
  }
}
.history-bold {
  font-weight: 700;
}
.history-note {
  font-size: 1.2rem;
  text-align: right;
  padding: 0.5rem 0 0;
}
@media (max-width: 768px) {
  .history-note {
    font-size: 1rem;
  }
}
.history-image {
  max-width: 400px;
}
.history-image-mb {
  margin-bottom: 1rem;
}
.history-image-mid {
  max-width: 230px;
}

/* add */
.sponsorship-main-section-head__title--mark {
  background: linear-gradient(transparent 80%, #ffc000 20%);
}
.sponsorship-main-section-head__title--mark2 {
  background: linear-gradient(transparent 80%, #ff6 20%);
}
.sponsorship-main-section-mb {
  margin-bottom: 3rem;
}
.donation .sponsorship-main-section-head__title {
  background: #0067c0;
}
.sponsorship-main-section-box {
  border: 1px solid #393939;
  padding: 2rem;
}

.more-btn {
  display: inline-block;
  padding: 5px 40px;
  border-radius: 4px;
  background: #434346;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 20px;
}

.more-btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #fff transparent transparent transparent;
}

.sponsorship-com__set {
  margin-bottom: 6rem;
}

.sponsorship-com__name {
  text-align: center;
}

.sponsorship-com__name a {
  text-decoration: underline;
}

.sponsorship-com__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .sponsorship-com__title {
    font-size: 2.4rem;
  }
}
.sponsorship-com__sub {
  background: #f7752d;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 5px 0;
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2rem;
  font-weight: 700;
}
.sponsorship-com__sub2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.sponsorship-com__sub2--bold {
  font-weight: 700;
}
.sponsorship-com__sub2--sec {
  margin-top: 6rem;
}
.sponsorship-com__sub2 span {
  position: relative;
}
@media (max-width: 768px) {
  .sponsorship-com__sub2 span {
    font-size: 1.6rem;
  }
}
.sponsorship-com__sub2 span::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #111;
  position: absolute;
  left: -30px;
  top: 8px;
  display: block;
}
@media (max-width: 768px) {
  .sponsorship-com__sub2 span::before {
    display: none;
  }
}
.sponsorship-com__sub2 span::after {
  content: "";
  width: 20px;
  height: 1px;
  background: #111;
  position: absolute;
  right: -30px;
  top: 8px;
  display: block;
}
@media (max-width: 768px) {
  .sponsorship-com__sub2 span::after {
    display: none;
  }
}
.sponsorship-com__list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .sponsorship-com__list {
    gap: 20px;
  }
}
.sponsorship-com__list-4 {
  gap: 30px;
}
.sponsorship-com__item {
  max-width: 20%;
  width: 100%;
  text-align: center;
}
.sponsorship-com__item--wide {
  max-width: 33.3333%;
}
.sponsorship-com__item--01 img {
  width: 90%;
}
.sponsorship-com__item--02 img {
  width: 90%;
}
.sponsorship-com__item--03 img {
  width: 50%;
}
.sponsorship-com__item--04 img {
  width: 90%;
}
.sponsorship-com__item--05 img {
  width: 80%;
}
.sponsorship-com__item--06 img {
  width: 90%;
}
.sponsorship-com__item--07 img {
  width: 90%;
}
.sponsorship-com__item--08 img {
  width: 42%;
}
.sponsorship-com__item--08-2 img {
  width: 64%;
}
.sponsorship-com__item--09 img {
  width: 56%;
}
.sponsorship-com__item--10 img {
  width: 85%;
}
.sponsorship-com__item--11 img {
  width: 90%;
}
.sponsorship-com__item--12 img {
  width: 85%;
}
.sponsorship-com__item--13 img {
  width: 100%;
}
.sponsorship-com__item--14 img {
  width: 71%;
}

.sponsorship-com__item--re-08-2,
.sponsorship-com__item--re-11,
.sponsorship-com__item--re-12,
.sponsorship-com__item--re-13,
.sponsorship-com__item--re-14 {
  max-width: 25%;
}

.sponsorship-com__bottom {
  background: #999999;
  padding: 10px;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .sponsorship-com__bottom {
    margin-bottom: 3rem;
  }
}

.sponsorship-banner {
  margin: 2rem 0;
  text-align: center;
}

/* sponsorship new style */
.sponsorship-com2 {
  padding-bottom: 60px;
}

.sponsorship-com2__set {
  margin-bottom: 4rem;
}

.sponsorship-com2__name {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .sponsorship-com2__name {
    font-size: 12px;
  }
}
.sponsorship-com2__name a {
  text-decoration: underline;
  font-size: 16px;
}
@media (max-width: 768px) {
  .sponsorship-com2__name a {
    font-size: 12px !important;
  }
}

.sponsorship-com2__name--re {
  font-size: 17px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .sponsorship-com2__name--re {
    font-size: 12px;
  }
}
.sponsorship-com2__title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .sponsorship-com2__title {
    font-size: 2.4rem;
  }
}
.sponsorship-com2__sub {
  background: #f7752d;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 5px 0;
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .sponsorship-com2__sub {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.sponsorship-com2__sub2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .sponsorship-com2__sub2 {
    margin-bottom: 2rem;
  }
}
.sponsorship-com2__sub2--bold {
  font-weight: 700;
}
.sponsorship-com2__sub2--sec {
  margin-top: 6rem;
}

.sponsorship-com2__sub2 span {
  position: relative;
}
@media (max-width: 768px) {
  .sponsorship-com2__sub2 span {
    font-size: 1.6rem;
  }
}
.sponsorship-com2__sub2 span::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #111;
  position: absolute;
  left: -30px;
  top: 8px;
  display: block;
}
@media (max-width: 768px) {
  .sponsorship-com2__sub2 span::before {
    display: none;
  }
}
.sponsorship-com2__sub2 span::after {
  content: "";
  width: 20px;
  height: 1px;
  background: #111;
  position: absolute;
  right: -30px;
  top: 8px;
  display: block;
}
@media (max-width: 768px) {
  .sponsorship-com2__sub2 span::after {
    display: none;
  }
}
.sponsorship-com2__list {
  display: flex;
  justify-content: center;
  margin-bottom: 6rem;
  align-items: center;
  padding: 0 23px;
}
@media (max-width: 768px) {
  .sponsorship-com2__list {
    margin-bottom: 2rem;
  }
}
.sponsorship-com2__list--nopad {
  padding: 0;
}

.sponsorship-com2__item {
  max-width: 190px;
  width: 20%;
  text-align: center;
}
.sponsorship-com2__item--wide {
  max-width: 318px;
  width: 33.3333%;
}
.sponsorship-com2__item--wide2 {
  max-width: 208px;
  width: 21%;
}

.sponsorship-com2__item img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.sponsorship-com2__bottom {
  background: #999999;
  padding: 2rem;
  text-align: center;
  color: #fff;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .sponsorship-com2__bottom {
    margin-bottom: 3rem;
    font-size: 1.5rem;
  }
}

.sponsorship-com2 .balloon_text {
  background: #f7752d;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 5px 0;
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .sponsorship-com2 .balloon_text {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.sponsorship-com2 .sponsor_item_description {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 4rem;
  font-weight: 700;
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .sponsorship-com2 .sponsor_item_description {
    margin-bottom: 2rem;
  }
}

.sponsorship-com2 .sponsor_item_description span {
  position: relative;
}
@media (max-width: 768px) {
  .sponsorship-com2 .sponsor_item_description span {
    font-size: 1.6rem;
  }
}
.sponsorship-com2 .sponsor_item_description span::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #111;
  position: absolute;
  left: -30px;
  top: 8px;
  display: block;
}
@media (max-width: 768px) {
  .sponsorship-com2 .sponsor_item_description span::before {
    display: none;
  }
}
.sponsorship-com2 .sponsor_item_description span::after {
  content: "";
  width: 20px;
  height: 1px;
  background: #111;
  position: absolute;
  right: -30px;
  top: 8px;
  display: block;
}
@media (max-width: 768px) {
  .sponsorship-com2 .sponsor_item_description span::after {
    display: none;
  }
}

.sponsorship-com2 .sponsor_logo_wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 6rem;
  align-items: center;
  padding: 0 23px;
  flex-wrap: wrap;
  gap: 30px 0;
}
@media (max-width: 768px) {
  .sponsorship-com2 .sponsor_logo_wrapper {
    margin-bottom: 2rem;
  }
}

.sponsorship-com2 .platinum-partner .sponsor_logo {
  width: calc(100% / 3);
}

.sponsorship-com2 .gold-partner .sponsor_logo_wrapper {
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0 auto;
}

.sponsorship-com2 .gold-partner .sponsor_logo_wrapper .sponsor_logo {
  max-width: 221px;
}

.sponsorship-com2 .silver-sponsor .sponsor_logo {
  width: calc((100% - 36px) / 5);
}

@media screen and (min-width: 768px) {
  .sponsorship-com2 .sponsor_logo_margin {
    margin-left: 18px;
  }
}

.sponsorship-com2 .silver-sponsor .sponsor_logo.sponsor_logo-width {
  width: calc((100% + 53px) / 5);
}

.sponsorship-com2 .bronze-sponsor,
.sponsorship-com2 .normal-supplier {
  text-align: center;
  font-weight: 500;
  margin: 0;
}

.sponsorship-com2 .bronze_wrapper,
.sponsorship-com2 .normal-supplier-wrapper {
  margin-bottom: 40px;
}

.sponsorship-com2 .bronze_sponsor_body {
  margin: 0 3px;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.sponsorship-com2 .sponsor_contents_box_two .sponsor_logo_wrapper .sponsor_logo,
.sponsorship-com2 .sponsor_contents_box_three .sponsor_logo_wrapper .sponsor_logo {
  width: calc(100% / 5);
}

.sponsorship-info {
  background: #fff799;
  text-align: center;
  font-weight: bold;
  padding: 1.5rem;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.sponsor_logo--ml30 {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .sponsor_logo--ml30 {
    margin-left: 15px;
  }
}

/* add */
.fixed-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  max-width: 198px;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  .fixed-banner {
    max-width: 60%;
  }
}
.fixed-banner a:hover {
  opacity: 1;
}
.fixed-banner.is-hidden {
  opacity: 0;
}

/* 100th */
.cent {
  padding-bottom: 0;
}
.cent-main {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 0;
}
.cent-mv__set {
  position: absolute;
  top: 405px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}
@media (max-width: 1200px) {
  .cent-mv__set {
    top: 32vw;
  }
}
@media (max-width: 768px) {
  .cent-mv__set {
    top: 53%;
  }
}
.cent-mv__lead {
  background: #009b63;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  padding: 0.5rem 0;
  max-width: 600px;
  margin: 0 auto 3rem;
}
@media (max-width: 1200px) {
  .cent-mv__lead {
    font-size: 2vw;
    margin-bottom: 3vw;
  }
}
@media (max-width: 768px) {
  .cent-mv__lead {
    font-size: 3vw;
    max-width: 80%;
    margin-bottom: 2rem;
  }
}
@media (max-width: 520px) {
  .cent-mv__lead {
    font-size: 1.1rem;
  }
}
.cent-mv__text {
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 1200px) {
  .cent-mv__text {
    font-size: 1.5vw;
  }
}
@media (max-width: 768px) {
  .cent-mv__text {
    font-size: 3vw;
  }
}
@media (max-width: 520px) {
  .cent-mv__text {
    font-size: 1.1rem;
  }
}
.cent-mv {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .cent-mv {
    margin-bottom: 0;
  }
}
.cent-image {
  max-width: 866px;
  margin: 0 auto 5rem;
}
@media (max-width: 1000px) {
  .cent-image {
    padding: 2rem;
    margin: 0 auto;
  }
}
.cent-detail {
  background: transparent url("../img/100th-art/bg_cent_02.jpg") no-repeat center center;
  background-size: cover;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 6rem 0;
  text-align: center;
}
@media (max-width: 866px) {
  .cent-detail {
    padding: 6rem 2rem;
  }
}
@media (max-width: 768px) {
  .cent-detail {
    background: transparent url("../img/100th-art/bg_cent_02_sp.jpg") no-repeat center center;
    background-size: cover;
    padding: 3rem 2rem;
    margin: 0;
  }
}
.cent-detail__inner {
  max-width: 866px;
  margin: 0 auto;
}
.cent-detail__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 520px) {
  .cent-detail__title {
    font-size: 1.5rem;
  }
}
.cent-detail__title span {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0 0 0 1rem;
}
.cent-detail__text {
  font-size: 12px;
  margin-bottom: 2rem;
}
@media (max-width: 520px) {
  .cent-detail__text {
    font-size: 1rem;
  }
}
.cent-detail-scroll {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 156px;
  z-index: 50;
  display: none;
}
@media (max-width: 768px) {
  .cent-detail-scroll {
    top: 35%;
  }
}
.cent-detail-scroll.is-active {
  animation: scroll-hint-animation 2s ease forwards;
  display: block;
}
@keyframes scroll-hint-animation {
  0% {
    transform: translateX(-50%);
    opacity: 1;
  }
  50% {
    transform: translateX(-40%);
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%);
    opacity: 0;
    display: none;
  }
}
.cent-detail-list {
}
.cent-detail-overflow {
  margin-bottom: 4rem;
  background: #fff;
  padding: 1.5rem 1rem 1rem;
  overflow-x: scroll;
  max-width: 866px;
}
.cent-detail-list__set {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .cent-detail-list__set {
    flex-direction: column;
  }
}
.cent-detail-list__wrap {
  display: flex;
  gap: 1.5rem;
  width: 5000px;
}

.cent-detail-list__item {
  width: 170px;
  height: 150px;
  text-align: center;
  background: #ec2689;
  color: #fff;
  font-size: 14px;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cent-detail-list__item::before {
  content: "";
  background: #ec2689;
  clip-path: polygon(50% 25%, 0% 100%, 100% 100%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
  display: block;
  width: 22px;
  height: 15px;
}
.cent-detail-list__item--2,
.cent-detail-list__item--2::before {
  background: #ec2689;
}
.cent-detail-list__item--0,
.cent-detail-list__item--0::before {
  background: #009b63;
}
.cent-detail-list__item--1,
.cent-detail-list__item--1::before {
  background: #0097e0;
}
.cent-detail-list__num {
  margin-bottom: 0;
}
.cent-detail-list__q1 {
  font-size: 12px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #fff;
  width: 100%;
}
.cent-detail-list__q2 {
  padding-top: 0.5rem;
  font-size: 12px;
}
.cent-detail-after p {
  font-size: 16px;
  margin-bottom: 4rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .cent-detail-after p {
    font-size: 13px;
    text-align: left;
    margin-bottom: 2rem;
  }
}
@media (max-width: 520px) {
  .cent-detail-after p {
    font-size: 11px;
  }
}
.cent-detail-image {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .cent-detail-image {
    flex-direction: column;
  }
}
.cent-detail-image__inner {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.cent-detail-image img {
  display: block;
  width: 100%;
  max-width: 282px;
}
@media (max-width: 1000px) {
  .cent-detail-image img {
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .cent-detail-image img {
    max-width: 200px;
  }
}
@media (max-width: 520px) {
  .cent-detail-image img {
    max-width: 140px;
  }
}

.bnr-100th {
  display: block;
  margin-bottom: 3rem;
}

.page-contents > .wp-block-columns {
  gap: 10px;
}

.document-title {
  background: #525252;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .document-title {
    font-size: 18px;
  }
}

.document-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
}

.static-image__record01 {
  max-width: 200px;
  margin: 0 auto;
}

.static-image__record01 img {
  border: 1px solid #ccc;
}

.document-list__item--icon {
  border: 1px solid #ccc;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 4px;
  margin: 0 0 0 20px;
}

.record-btn {
  max-width: 300px;
  margin: 30px auto 10px;
}

.record-btn a {
  background: #223970;
  border-radius: 8px;
  color: #fff;
  font-size: 2.1rem;
  text-align: center;
  display: block;
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .record-btn a {
    font-size: 1rem;
    border-radius: 4px;
  }
}

.archive-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .archive-title {
    font-size: 2.2rem;
  }
}

.wp-block-file__button,
.wp-block-file__button:hover {
  color: #313131;
}

.event .page-title a,
.event .page-icon__item a {
  pointer-events: none;
}

.wp-block-file a {
  color : #000;
}