@charset "utf-8";
/* CSS Document */

/*------------ 初期設定 ------------*/
p {
  line-height: 1.7;
}

/*------------ 全体 ------------*/
body {
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
}
._hover {
  transition: opacity 0.3s linear;
  opacity: 1;
}
._hover:hover {
  opacity: 0.7;
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
.anim-fadeUp {
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: transform 0.8s, opacity 0.8s;
  transition: transform 0.8s, opacity 0.8s, -webkit-transform 0.8s;
  opacity: 0;
  -webkit-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px);
}
.anim-fadeUp.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.anim-fade {
  transition: opacity 0.8s;
  opacity: 0;
}
.anim-fade.is-show {
  opacity: 1;
}
@keyframes vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
@keyframes vertical2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(15px);
  }
}
@keyframes horizontal1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-15px);
  }
}
@keyframes horizontal2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(15px);
  }
}
@keyframes showBound {
  0% {
    -webkit-transform: scale(0.2);
    opacity: 0;
    transform: scale(0.2);
  }
  20% {
    -webkit-transform: scale(1.3);
    opacity: 1;
    transform: scale(1.3);
  }
  40% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  60% {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  80% {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
  }
  to {
    -webkit-transform: scale(1);
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes showBound2 {
  0% {
    -webkit-transform: scale(0.2);
    opacity: 0;
    transform: scale(0.2);
  }
  20% {
    -webkit-transform: scale(1.1);
    opacity: 1;
    transform: scale(1.1);
  }
  40% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  60% {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  80% {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
  }
  to {
    -webkit-transform: scale(1);
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes showBoundHover {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  40% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  60% {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  80% {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.text-color__white {
  color: #fff;
}
.text-color__orange {
  color: #dd6824;
}
.text-color__green {
  color: #17a15b;
}
.text-color__blue {
  color: #0048ad;
}
.bg-color__blue {
  background-color: #81ccd6;
}
.bg-color__new-blue {
  background-color: #78c1e7;
}
.bg-color__deep-blue {
  background-color: #34baf9;
}
.bg-color__new-deep-blue {
  background-color: #0054a7;
}
.bg-color__orange {
  background-color: #ed7981;
}
.bg-color__green {
  background-color: #f3fff0;
}
.bg-color__deep-green {
  background-color: #12b000;
}
.bg-color__new-green {
  background-color: #63c0b5;
}
.bg-color__yellow {
  background-color: #fffeee;
}
.bg-color__deep-yellow {
  background-color: #f3ca1e;
}
.bg-color__deep-yellow2 {
  background-color: #ffdf5d;
}
.bg-color__pink {
  background-color: #f9eef4;
}
.bg-color__gray {
  background-color: #f1f1f1;
}
.bg-color__black {
  background-color: #000;
}
.bg-color__white {
  background-color: #fff;
}
.text-alignC {
  text-align: center;
}
.font-bold {
  font-weight: 700;
}
.font-black {
  font-weight: 900;
}

/*------------ WRAPPER ------------*/
#wrapper {
  width: 100%;
  overflow: hidden;
}
.content-inner {
  width: 110rem;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 2rem;
}

/*------------ HEADER ------------*/
.header-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.3s;
}
.btn-nav.is-active ~ .header-inner {
  transform: translateY(0%);
}

/*------------ NAVI ------------*/
.btn-nav {
  width: 8rem;
  height: 8rem;
  border: 2px solid #81ccd6;
  border-radius: 2rem;
  position: fixed;
  right: 3rem;
  top: 2rem;
  z-index: 101;
  background: url("../images/common/btn_menu.svg") no-repeat center center #fff;
  background-size: 4em auto;
  cursor: pointer;
  overflow: hidden;
}
.btn-nav.is-active {
  background-image: url("../images/common/btn_menu_close.svg");
}
.headerNav {
  position: absolute;
  top: 6rem;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.6s;
  transition-delay: 2s;
}
.is-show .headerNav {
  opacity: 1;
}
.headerNav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  height: 5rem;
  border-radius: 2.5rem;
  padding: 0 5.5rem;
}
header .headerNav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  height: 12rem;
  border-radius: 0;
  padding: 0 5rem;
}
.headerNav__list + .headerNav__list {
  margin-top: 1rem;
  padding: 0 2.5rem 0 4rem;
}
.headerNav__list svg {
  height: 2.6rem;
}
.headerNav__list path {
  stroke: transparent;
  transition: fill 0.3s;
}
.headerNav__list > li:nth-child(n + 2) {
  margin-left: 2.5rem;
}
.headerNav__list:nth-child(1) > li:nth-child(1) svg {
  height: 1.8rem;
}
.headerNav__list:nth-child(1) > li:nth-child(2) svg {
  position: relative;
  top: -0.1em;
}
.headerNav__list:nth-child(1) > li:nth-child(3) svg {
  position: relative;
  top: 0;
}
.headerNav__list:nth-child(1) > li:nth-child(4) svg,
.headerNav__list:nth-child(1) > li:nth-child(5) svg {
  position: relative;
  top: -0.1em;
}
.headerNav__list a {
  display: flex;
  align-items: center;
}
.headerNav__list a:before {
  content: "";
  width: 0.8rem;
  height: 0.9rem;
  background: url("../images/common/icon_arrow_nav.svg") no-repeat center center;
  background-size: contain;
  margin-right: 0.7rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.headerNav__list a:hover:before {
  opacity: 1;
}
.headerNav__list a:hover path {
  fill: rgba(221, 104, 36, 1);
}
.headerNav__list a.sns-link {
  opacity: 1;
  transition: opacity 0.3s;
}
.headerNav__list a.sns-link:hover {
  opacity: 0.6;
}
.headerNav__list a.sns-link:before {
  display: none;
}
.headerNav__list a.sns-link-x {
  padding-left: 0.8rem;
}
.headerNav__list .sns-x {
  width: 2.2rem;
}

.headerNav__list .sns-instagram {
  width: 2.3rem;
}

.headerNav__list .sns-tiktok {
  width: 2rem;
}

/*------------ TOP ------------*/
.content-mv {
  background: url("../images/top/bg_mv.png") no-repeat center top;
  background-size: auto 66.9rem;
}
.content-inner__mv {
  width: 126rem;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 2rem;
  position: relative;
}
.content-mv__bottom {
  padding-top: 30px;
}
.content-mv__bottom img {
  display: block;
}
.logo-ntv {
  position: absolute;
  width: 8.3rem;
  left: 3.5rem;
  top: 4rem;
  z-index: 11;
}
.icon-free {
  position: absolute;
  width: 24.2rem;
  left: 5rem;
  top: 11rem;
  opacity: 0;
}
.is-show .icon-free {
  animation: showBound 0.8s ease-out 2s forwards;
}
.illust-sorajiro {
  position: absolute;
  width: 16.7rem;
  right: 4rem;
  top: 15.4rem;
  opacity: 0;
}
.is-show .illust-sorajiro {
  animation: showBound 0.8s ease-out 2.05s forwards;
}
.is-show .illust-sorajiro img {
  animation: vertical 1s ease-out 3s infinite alternate forwards;
}
.content-mv__ttl {
  padding-top: 37rem;
}
.logo-ss {
  opacity: 0;
  padding: 0 12.5rem;
}
.is-show .logo-ss {
  animation: showBound2 1.2s ease-out 1s forwards;
}
.content-mv__ttl ._inner {
  padding: 3rem 12.5rem 0;
}
.content-mv__ttl ._date,
.content-mv__ttl ._info {
  transform: translateY(6rem);
  transition: all 0.8s;
  opacity: 0;
}
.content-mv__ttl ._date {
  transition-delay: 1.6s;
}
.content-mv__ttl ._date img {
  width: 100%;
  max-width: initial !important;
}
.content-mv__ttl ._info {
  transition-delay: 1.7s;
}
.is-show .content-mv__ttl ._date,
.is-show .content-mv__ttl ._info {
  transform: translateY(0rem);
  opacity: 1;
}
.content-mv__ttl ._inner ._info {
  margin-top: 3rem;
  background-color: #f3f4f5;
  border-radius: 2rem;
  padding: 2.5rem 0;
}
.content-mv__ttl .sp-sns-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  display: none;
}
.content-mv__ttl .sp-sns-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.content-mv__ttl .sp-sns-links .sns-x {
  width: 5.4rem;
}
.content-mv__ttl .sp-sns-links .sns-instagram {
  width: 5.6rem;
}
.content-mv__ttl .sp-sns-links .sns-tiktok {
  width: 4.9rem;
}
.flex-mv-info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-mv-info__li ._lab img {
  width: 18rem;
}
.flex-mv-info__li {
  flex-grow: 0;
  flex-shrink: 1;
}
.flex-mv-info__li:nth-child(2) {
  margin-left: 3.9rem;
}
.flex-mv-organizer {
  display: flex;
  align-items: center;
}
.flex-mv-organizer__li {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.flex-mv-organizer__li ._label {
  background-color: #666666;
  width: 4em;
  text-align: center;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-mv-organizer__li ._body {
  margin-left: 2rem;
  letter-spacing: 0.02em;
}
.flex-mv-organizer__li:nth-child(2) {
  margin-left: 12.6rem;
}
.flex-mv-organizer__li:nth-child(3) {
  margin-left: 4.6rem;
}
.flex-mv-organizer__li:nth-child(1) {
  position: relative;
}
.flex-mv-organizer__li:nth-child(1):after {
  content: "";
  width: 6rem;
  height: 5.6rem;
  background: url("../images/top/img_illust_kml.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translate(100%, -50%);
}
.content-about {
  padding: 5rem 0;
  background-image: url("../images/top/bg_about.png");
  background-repeat: no-repeat;
  background-position: center 16rem;
  background-size: 154rem auto;
}
.content-about__inner {
  background: url("../images/top/bg_about_content.png") no-repeat center center;
  background-size: auto 76.2rem;
  height: 76.2rem;
  padding-top: 17.7rem;
  position: relative;
}
.content-about__ttl {
  margin-bottom: 2.5rem;
}
.content-about__ttl img {
  width: 57.4rem;
}
.content-about__lead {
  font-size: 1.8rem;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.content-about__lead em {
  font-size: 2.4rem;
}
.content-about__declaration {
  font-size: 4rem;
  margin-top: 2.5rem;
  padding-left: 7.5rem;
}
.content-about__bold {
  font-size: 2.4rem;
  line-height: 2;
  margin-top: 2.5rem;
}
.content-about__inner ._illust {
  position: absolute;
}
.illust-potsurin {
  width: 9.5rem;
  left: 9.5rem;
  top: 42.8rem;
}
.content-news__inner {
  padding: 5rem 0 5rem;
}
.flex-news {
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 0 15px;
}
.flex-news__li:nth-child(2) {
  max-height: 36.5rem;
  overflow-y: scroll;
  min-height: 36.5rem;
}

.flex-news__li::-webkit-scrollbar {
  width: 10px;
}

/* .flex-news__li::-webkit-scrollbar-track {
  background-color:#ccc;
  border-radius:3px 3px 3px 3px;
} */

.flex-news__li::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 3px 3px 3px 3px;
}
.flex-news__ttl {
  margin-top: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  position: relative;
}
.flex-news__ttl::before {
  content: "";
  position: absolute;
  top: -12rem;
  left: 0;
  width: 100%;
  height: 12rem;
  background-color: #fff;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  z-index: -1;
}
.flex-news__ttl::after {
  content: "";
  position: absolute;
  bottom: -12rem;
  left: 0;
  width: 100%;
  height: 12rem;
  background-color: #fff;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
  z-index: -1;
}
.flex-news__ttl ._ttl img {
  height: 4.3rem;
  width: auto;
}
.flex-news__ttl ._illust {
  margin-top: 1.2rem;
  width: 12.8rem;
}
.flex-news__ttl.hs ._illust {
  margin-top: 1rem;
  width: 10rem;
}
.list-news {
  margin-right: 0.5rem;
}
.list-news > li {
  background-color: #f3f4f5;
  border-radius: 2rem;
}
.list-news > li:nth-child(n + 2) {
  margin-top: 1rem;
}
.flex-news__item {
  display: flex;
  align-items: center;
  padding: 2.5rem 2rem;
}
.list-news > li a {
  color: inherit;
  text-decoration: none;
}
a.flex-news__item {
  padding-right: 6rem;
  position: relative;
}
a.flex-news__item:before {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url("../images/common/icon_btn_arrow_w.png") no-repeat center center #0048ad;
  background-size: 1.5rem auto;
  border-radius: 50%;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.flex-news__item ._date {
  font-size: 1.4rem;
  flex-grow: 0;
  flex-shrink: 0;
}
.flex-news__item ._body {
  font-size: 1.6rem;
  flex-grow: 1;
  flex-shrink: 1;
  margin-left: 2rem;
}
.ttl-content__img {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}
.ttl-content__img img {
  height: 5rem;
  width: auto;
}
.content-access {
  padding: 9rem 0 13.5rem;
  background-image: url("../images/top/bg_access.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 8.4rem;
}
.flex-access {
  display: flex;
}
.flex-access__li:nth-child(1) {
  flex-grow: 1;
  flex-shrink: 1;
}
.flex-access__li:nth-child(2) {
  flex-grow: 0;
  flex-shrink: 0;
  margin-left: 2.5rem;
  background-color: #fff;
  border-radius: 2rem;
  overflow: hidden;
  padding: 1rem;
}
.flex-access__li ._map {
  position: relative;
  padding-right: 0;
  width: 50.5rem;
}
.flex-access__li ._map ._illust {
  position: absolute;
  width: 7.2rem;
  right: 0;
  bottom: 0;
}
.flex-access__li ._block + ._block {
  margin-top: 4.5rem;
}
.flex-access__li ._ttl {
  background-color: #000;
  color: #fff;
  font-size: 1.8rem;
  padding: 0.4rem 6rem 0.5rem;
  position: relative;
  margin-bottom: 2.5rem;
}
.flex-access__li ._ttl:before {
  content: "";
  width: 1rem;
  height: 3.3rem;
  background: url("../images/top/icon_pen.svg") no-repeat center center;
  background-size: contain;
  transform: rotate(-150deg);
  position: absolute;
  left: 2.7rem;
  top: -0.4rem;
}
.flex-access__li ._body {
  font-size: 1.6rem;
}
.flex-access__li p {
  line-height: 2;
}
.flex-access__li:nth-child(1) ._body {
  padding: 0 0;
}
.list-access > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list-access > li:nth-child(n + 2) {
  margin-top: 1em;
}

.floor-map {
  padding: 6rem 4rem 0rem;
}

.floor-map img {
  border-radius: 4rem;
  border: 10px;
  padding: 2rem;
  background: #fff;
}
@media (max-width: 980px) {
  .floor-map {
    padding: 6rem 0rem 0rem;
  }
}

.content-outline {
  padding: 10rem 0;
}
.content-outline ._inner {
  width: 60rem;
  margin: 0 auto;
  position: relative;
}
.list-outline {
  margin-top: 5rem;
}
.list-outline > li:nth-child(n + 2) {
  margin-top: 3rem;
}
.list-outline > li {
  display: flex;
  font-size: 1.8rem;
  align-items: center;
}
.list-outline > li ._ttl {
  flex-grow: 0;
  flex-shrink: 0;
  width: 10rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-outline > li ._body {
  margin-left: 4rem;
}
.content-outline ._illust {
  width: 10.3rem;
  position: absolute;
  right: -7.5rem;
  bottom: -10rem;
}
.content-organizer {
  /*padding: 0 0 24rem;*/
  padding: 10rem 0 24rem;
  /*border-top: 1rem solid #1f385b;*/
}
.content-organizer ._inner {
  width: 64rem;
  margin: 0 auto;
}
.content-organizer ._block + ._block {
  margin-top: 4rem;
}
.content-organizer ._ttl {
  margin-bottom: 3rem;
}
.content-organizer ._ttl img {
  height: 3.4rem;
  width: auto;
}
.content-organizer ._body {
  font-size: 1.8rem;
  line-height: 2;
}
.content-organizer ._btn {
  display: flex;
  justify-content: center;
}
.content-organizer .list-sponsor {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2rem;
  padding-bottom: 5rem;
}
.btn-common {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48rem;
  height: 6rem;
  border-radius: 3rem;
  font-size: 1.8rem;
  text-decoration: none;
  position: relative;
  padding: 0 7rem;
}
.btn-common:after {
  content: "";
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/common/icon_btn_arrow.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: auto 1.5rem;
  transition: background-position 0.3s;
}
.btn-common:hover:after {
  background-position: 70% 50%;
}

a.yoyakunasi__btn.btn-common.bg-color__black.text-color__white.font-bold._hover {
  background-color: #dd6825;
  width: 100rem;
  border-radius: 5rem;
  color: #fff;
  font-size: 1.8rem;
  height: 8rem;
  margin: 0 1rem;
  padding-left: 3rem;
}

.flex-notes {
  display: flex;
  justify-content: flex-end;
  font-size: 1.6rem;
  margin-top: 1rem;
}
.flex-notes__li {
  display: flex;
  align-items: center;
}
.flex-notes__li:nth-child(n + 2) {
  margin-left: 1em;
}
.flex-notes__li ._color {
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
}
.flex-notes__li:nth-child(1) ._color {
  background-color: #89cea1;
  border: 1px solid #067d43;
}
.flex-notes__li:nth-child(2) ._color {
  background-color: #f89a92;
  border: 1px solid #fe0000;
}

.content-join {
  padding: 12rem 0 10rem;
  background: url("../images/top/bg_join.png") no-repeat center bottom;
  background-size: 100% auto;
}
.contentJoin__ttl {
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  padding-right: 4rem;
}
.contentJoin__ttl img {
  width: 63.5rem;
}
.contentJoin__lead {
  margin-bottom: 5rem;
  position: relative;
}
.contentJoin__lead ._illust {
  position: absolute;
  right: -3rem;
  bottom: 0;
}
.contentJoin__body {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  letter-spacing: 0;
}
.contentJoin__notes {
  width: 90rem;
  margin: 0 auto;
  border-radius: 3rem;
  border: 1px solid #dddddd;
  padding: 5rem 13rem;
  font-size: 1.4rem;
}
.contentJoin__notes p {
  line-height: 2.2;
}
.contentJoin__notes p + p {
  margin-top: 1.7em;
}
.content-program {
  padding: 6rem 0 0 0;
  position: relative;
}
.content-program::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 32rem;
  background-color: #f18051;
  z-index: -1;
}
.contentProgram__ttl {
  margin-bottom: 2rem;
}
.contentProgram__lead {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 3rem;
}
.contentProgram__slide {
  position: relative;
}
.contentProgram__slide .swiper {
  padding: 0 1rem 1rem 1rem;
}
.contentProgram__slide .swiper-wrapper {
  align-items: stretch;
}
.programSlideItem__arrow {
  position: absolute;
  top: 9rem;
  z-index: 10;
  cursor: pointer;
}
.programSlideItem__arrow.-prev {
  left: 0;
  transform: translateX(-50%) rotate(180deg);
}
.programSlideItem__arrow.-next {
  right: 0;
  transform: translateX(50%);
}
.programSlideItem {
  width: 35rem;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  background-color: #fff;
  position: relative;
  filter: drop-shadow(0px 0 5px rgba(0, 0, 0, 0.1));
}
.programSlideItem__link {
  display: block;
}
.programSlideItem__img {
  display: block;
  overflow: hidden;
  position: relative;
  position: relative;
  aspect-ratio: 700 / 440;
}
.programSlideItem__img img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: transform 0.6s;
}
.programSlideItem:hover .programSlideItem__img img {
  transform: scale(1.2);
  opacity: 0.8;
}
.programSlideItem .programSlideItem__cat {
  position: absolute;
  left: 0;
  bottom: 0;
}
.programDetailBlock .programSlideItem__cat {
  margin-bottom: 2rem;
}
.programSlideItem__cat {
  display: inline-flex;
  background-color: #000;
  color: #fff;
  padding: 0.2em 1em 0.3em;
  font-size: 1.4rem;
  z-index: 2;
  min-width: 14rem;
  justify-content: center;
}
.programSlideItem__badge {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  transform: translate(30%, -30%);
}
.programSlideItem__badge img {
  width: 6.4rem;
}
.programSlideItem__inner {
  padding: 1rem;
  height: 100%;
}
.programSlideItem .programSlideItem__tag {
  margin-top: 2rem;
}
.programSlideItem__tag {
  margin-right: -0.5rem;
}
.programSlideItem__tag > li {
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  display: inline-block;
}
.programSlideItem__tag > li > .program-caticon {
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 1.5rem;
  padding: 0.5rem 1.2rem;
  background-color: #f3f4f5;
  color: inherit;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.programSlideItem__tag > li > .program-caticon ._icon {
  margin-right: 0.5rem;
  flex-shrink: 0;
  flex-grow: 0;
}
.programSlideItem__tag > li > .program-caticon ._icon img {
  width: 2rem;
}
.programSlideItem__tag > li > .program-caticon._date1 {
  color: #fff;
  background-color: #62c0b5;
}
.programSlideItem__tag > li > .program-caticon._date2 {
  color: #fff;
  background-color: #ed7981;
}
.programSlideItem__tag > li > a {
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 1.5rem;
  padding: 0.5rem 1.2rem;
  background-color: #f3f4f5;
  color: inherit;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.programSlideItem__tag > li > a ._icon {
  margin-right: 0.5rem;
  flex-shrink: 0;
  flex-grow: 0;
}
.programSlideItem__tag > li > a ._icon img {
  width: 2rem;
}
.programSlideItem__tag > li > a._date1 {
  color: #fff;
  background-color: #62c0b5;
}
.programSlideItem__tag > li > a._date2 {
  color: #fff;
  background-color: #ed7981;
}
.programSlideItem__link {
  text-decoration: none;
  color: inherit;
}
.programSlideItem__ttl {
  font-size: 1.6rem;
  font-weight: 700;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
}
.programSlideItem__exhibitors {
  display: flex;
  justify-content: flex-end;
  font-size: 1.4rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #000000;
}
.contentProgram__btn {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}
.content-faq {
  padding: 10rem 0;
}
.contentFaq__ttl {
  margin-bottom: 6rem;
}
.contentFaq__ttl span {
  position: relative;
  padding-right: 10rem;
}
.contentFaq__ttl ._illust {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contentFaq__ttl ._illust img {
  width: 7.2rem;
  height: auto;
}
.contentFaq__tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 0;
  height: 7rem;
}
.contentFaq__tab > li {
  flex-grow: 1;
  flex-shrink: 1;
}
.contentFaq__tab > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  background-color: #999999;
  border-radius: 2rem 2rem 0 0;
  text-decoration: none;
  height: 6rem;
  transition: all 0.3s;
}
.contentFaq__tab > li.is-active a,
.contentFaq__tab > li a:hover {
  background-color: #62bfb4;
  height: 7rem;
}
.contentFaq__tab .btn-common {
  width: 100%;
  padding: 0 8rem 0 5rem;
}
.contentFaq__tab .btn-common:after {
  transform: translateY(-50%) rotate(90deg);
}
.contentFaq__tabContent {
  background-color: #fff;
  padding: 3rem;
  border-radius: 0 0 2rem 2rem;
}
.contentFaq__tabContent ._ttl {
  background-color: #000;
  color: #fff;
  font-size: 1.8rem;
  padding: 0.4rem 6rem 0.5rem;
  position: relative;
  margin-bottom: 2.5rem;
}
.contentFaq__tabContent ._ttl:before {
  content: "";
  width: 1rem;
  height: 3.3rem;
  background: url("../images/top/icon_pen.svg") no-repeat center center;
  background-size: contain;
  transform: rotate(-150deg);
  position: absolute;
  left: 2.7rem;
  top: -0.4rem;
}

._ttl-margin {
  margin-top: 3.5rem;
}

.faqBlock {
  background-color: #f3f4f5;
  border-radius: 3rem;
  padding: 2rem 3rem;
}
.faqBlock + .faqBlock {
  margin-top: 1rem;
}
.flexFaqHead {
  display: flex;
  align-items: center;
}
.flexFaqHead__li:nth-child(1) {
  flex-grow: 0;
  flex-shrink: 0;
}
.flexFaqHead__li:nth-child(2) {
  flex-grow: 1;
  flex-shrink: 1;
  margin-left: 3rem;
}
.flexFaqHead__li:nth-child(3) {
  flex-grow: 0;
  flex-shrink: 0;
  width: 8rem;
  margin-left: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flexFaqHead__q {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #62bfb4;
  color: #fff;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
}
.flexFaqHead__q span {
  position: relative;
  top: -0.12em;
}
.flexFaqHead__ttl {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
.faqBlock__body {
  margin-top: 2rem;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  /* border-top: 1px dotted #333333; */
  margin-left: 9rem;
  font-size: 1.4rem;
  line-height: 2;
  background-image: linear-gradient(to right, #333 2px, transparent 2px);
  background-size: 5px 2px;
  background-repeat: repeat-x;
}
.faqBlock__body > p {
  padding: 0 0;
}
.js-acc {
  cursor: pointer;
}
.flexFaqHead__arrow {
  transition: transform 0.3s;
}
.js-acc.is-active .flexFaqHead__arrow {
  transform: rotate(180deg);
}
.js-acc__target {
  display: none;
}
.js-tab__target > li {
  display: none;
}
.content-notes {
  padding: 10rem 0 0 0;
}
.contentNotes {
  border-radius: 3rem;
  border: 1px solid #dddddd;
  padding: 5rem 6rem;
  font-size: 1.4rem;
}
.contentNotes p {
  line-height: 2.2;
}
.contentNotes p + p {
  margin-top: 1.7em;
}
.sponsorList {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.9rem;
  margin: 0 auto 8rem;
}
/* .sponsorList > li {
} */
.sponsorList > li img {
  width: 100%;
}

/*------------ PROGRAM ------------*/
.content-mv.-lower {
  height: 30rem;
  background-image: url("../images/program/bg_mv.png");
  background-size: auto 66.9rem;
}
.content-mv.-lower .headerNav {
  transition-delay: 0.3s;
}
.content-mv.-lower .illust-sorajiro {
  animation: showBound 0.8s ease-out 0.6s forwards;
}
.content-mv.-lower.is-show .illust-sorajiro img {
  animation: vertical 1s ease-out 1.4s infinite alternate forwards;
}
.content-search.program {
  padding-bottom: 8rem;
}
.content-search__ttl {
  display: flex;
  justify-content: center;
  margin-bottom: -5rem;
}
.content-search__ttl img {
  width: 69rem;
}
.searchBlock {
  background-color: #52813a;
  border: 1.5rem solid #4e3d28;
  padding: 4.5rem 1rem 5rem;
}
.searchBlock__ttl {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.searchBlock__ttl img {
  width: 35.8rem;
}
.flexSearchBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -4rem;
  margin-top: -2rem;
}
.flexSearchBlock__li {
  margin-right: 4rem;
  margin-top: 2rem;
}
.flexSearchBlock__li:nth-child(1) .flexSearchBlock__ttl img,
.flexSearchBlock__li:nth-child(4) .flexSearchBlock__ttl img {
  height: 2.4rem;
  width: auto;
}
.flexSearchBlock__li:nth-child(2) .flexSearchBlock__ttl img,
.flexSearchBlock__li:nth-child(3) .flexSearchBlock__ttl img {
  height: 3rem;
  width: auto;
}
.flexSearchBlock__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  margin-bottom: 2rem;
}
.flexSearchBtn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -0.8rem;
  margin-top: -0.8rem;
}
.flexSearchBtn.-narrow {
  padding: 0 3rem;
}
.flexSearchBtn__li {
  margin-right: 0.8rem;
  margin-top: 0.8rem;
}
.flexSearchBtn__li a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4.5rem;
  min-width: 15rem;
  border-radius: 2.25rem;
  background-color: #f3f4f5;
  transition: background 0.3s;
  font-size: 1.8rem;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  padding: 0.5em 1.2em;
}
.flexSearchBtn.-narrow .flexSearchBtn__li a {
  min-width: initial;
  display: inline-flex;
  padding: 0.5em 1em;
}
.flexSearchBtn__li a:hover,
.flexSearchBtn__li.is-active a {
  background-color: #f3ca1e;
}
.content-search__illust {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}
.content-search__illust img {
  width: 32.6rem;
}
.content-program-lower {
  padding: 9rem 0 29rem;
  background-image: url("../images/program/bg_cloud.png");
  background-repeat: no-repeat;
  background-position: center 2.8rem;
  background-size: 134.5rem auto;
}
.contentProgram__slide .swiper {
  padding-top: 2rem;
  margin-top: -2rem;
}
.contentProgram__slide.-lower {
  display: flex;
  flex-wrap: wrap;
  margin-top: -3rem;
}
.contentProgram__slide.-lower .programSlideItem {
  width: calc((100% - (2.5rem * 2)) / 3);
  margin-left: 2.5rem;
  margin-top: 3rem;
}
.contentProgram__slide.-lower .programSlideItem:nth-child(3n + 1) {
  margin-left: 0;
}
.contentProgram__slide.-lower .programSlideItem__inner {
  padding-bottom: 2rem;
}

/*------------ PROGRAM DETAIL ------------*/
.content-program-lower.-detail {
  padding: 6rem 0 23rem;
}
.programDetail__btn {
  display: flex;
  justify-content: center;
}
.programDetail__btn + .programDetail__btn {
  margin-top: 5rem;
}
.content-programDetail {
  margin-top: 32rem;
  background-color: #e3acb1;
  position: relative;
  padding: 0 0 5rem;
}
.programDetailEyecatch {
  position: relative;
  top: -26rem;
  width: 70rem;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -23rem;
}
.programDetailEyecatch__illust {
  position: absolute;
  bottom: 10rem;
}
.programDetailEyecatch__illust img {
  width: 12.5rem;
}
.programDetailEyecatch__illust.-potsurin {
  left: -14.5rem;
}
.programDetailEyecatch__illust.-kumojiro {
  right: -14.5rem;
}
.programDetailEyecatch__img {
  position: relative;
}
.programDetailEyecatch__img img {
  width: 100%;
}
.programDetailEyecatch__sign {
  width: 100%;
  text-align: center;
}
.programDetailEyecatch__sign img {
  width: 31rem;
}
.programDetailEyecatch_inner {
  padding: 1rem;
  background-color: #fff;
}
.programDetail_exhibitors {
  background-color: #fff;
  padding: 0 1rem 1rem 1rem;
}
.programDetail_exhibitors.bottom {
  width: 70rem;
  margin-top: 3.5rem;
  padding: 1rem 1rem 1rem 1rem;
  margin-left: auto;
  margin-right: auto;
}
.programDetail_exhibitors--name {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  padding: 0 0 0 0.1rem;
}
.programDetail_exhibitors--name a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  transition: all 0.3s;
}
.programDetail_exhibitors--name a:hover {
  color: #c9151f;
}
.programDetail_exhibitors--name .separate {
  width: 1px;
  height: 2rem;
  background-color: #c5c5c5;
  margin: 0 0.8rem 0 1.1rem;
  display: inline-block;
  vertical-align: middle;
}
.programDetail_exhibitors--ico {
  display: block;
  text-align: right !important;
  padding: 0 0;
}
.programDetail_exhibitors--ico > span {
  font-size: 1.5rem;
  color: #fff;
  background-color: #c9151f;
  border-radius: 4px;
  align-items: center;
  padding: 0 0.5rem;
  gap: 0 0.2rem;
  display: inline-flex;
  height: 2.4rem;
}
.programDetail_exhibitors--ico > span > img {
  width: 1.4rem;
  display: block;
}
.programDetail_exhibitors a.no-link .programDetail_exhibitors--ico > span {
  display: none;
}
.programDetailBlock {
  background-color: #fff;
  padding: 5rem 10rem;
  border-radius: 3rem;
}
.programDetailBlock + .programDetailBlock {
  margin-top: 2.5rem;
}
.programDetailBlock__ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.9;
}
.programDetailBlock__info {
  /* border-top: 1px dotted #000; */
  background-image: linear-gradient(to right, #333 2px, transparent 2px);
  background-size: 5px 2px;
  background-repeat: repeat-x;
  margin-top: 2.5rem;
  padding-top: 3rem;
}
.programDetailBlock__exhibitors {
  margin-top: 1rem;
  margin-bottom: -2rem;
  display: flex;
  justify-content: flex-end;
  font-size: 2rem;
  font-weight: 700;
  color: #0048ad;
}
.programDetailBlock__place {
  display: grid;
  grid-template-columns: 17.2% 82.8%;
  border: solid 1px #c9151f;
  background-color: #fff;
  border-radius: 9999px;
  margin-top: 4rem;
  overflow: hidden;
}
.programDetailBlock__place--ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: left;
  color: #fff;
  background-color: #c9151f;
}
.programDetailBlock__place--ttl span {
  display: inline-block;
  padding: 0 0 0 2.4rem;
  background-image: url(../images/common/icon_place.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.7rem auto;
}
.programDetailBlock__place--data {
  padding: 0 3rem;
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  color: #000;
}
.programDetailBlock__place--data span {
  display: inline-block;
  padding: 1.5rem 0;
}
.programDetailPost {
  padding-top: 3rem;
}
.programDetailPost__ttl {
  display: flex;
  justify-content: center;
}
.programDetailPost__ttl img {
  width: 31.4rem;
}
.programDetailPost_links {
  text-align: center;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
}
.programDetailPost_links_inner {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2rem;
}
.programDetailPost_link_link {
  width: 100%;
  max-width: 22rem;
}
.programDetailPost_link_link a {
  display: block;
  text-decoration: none;
  color: #000;
  background-color: #f3f4f5;
  border-radius: 9999px;
  padding: 0 0;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 5.6rem;
  background-image: url(../images/program/icon_program_links.svg);
  background-repeat: no-repeat;
  background-position: center 90%;
  background-size: 1.3rem auto;
  transition: all 0.3s;
  position: relative;
}
.programDetailPost_link a:hover {
  background-position: center 92%;
  background-color: #dadbdb;
}

.programDetailPost__body {
  margin-top: 4rem;
}
.programDetailPost__body + .programDetailPost__body {
  margin-top: 5rem;
}
.programDetailPost__body h3 {
  background-color: #d36e77;
  color: #fff;
  padding: 1em 1.5em;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.programDetailPost__body h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 1rem;
  /* border-bottom: 1px dotted #000; */
  position: relative;
}
.programDetailPost__body h4::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-image: linear-gradient(to right, #d36e77 2px, transparent 2px);
  background-size: 5px 2px;
  background-repeat: repeat-x;
}
.programDetailPost__body p,
.programDetailPost__body ul {
  font-size: 1.6rem;
  line-height: 2;
}
.programDetailPost__body p + p {
  margin-top: 2em;
}
.programDetailPost__body * + h3,
.programDetailPost__body * + h4 {
  margin-top: 3rem;
}
.programDetailPost__body h3 + *,
.programDetailPost__body h4 + *,
.programDetailPost__image + * {
  margin-top: 3rem;
}
.programDetailBlock__notes p {
  font-size: 1.4rem;
}
.programDetailBlock__notes p + p {
  margin-top: 1.5em;
}
.programDetailPost__info {
  margin-top: 4rem;
  background-color: #f9f2f3;
  padding: 4rem;
}
.programDetailPost__info--data {
  display: grid;
  grid-template-columns: 24% 76%;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
}
.programDetailPost__info--data--ttl {
  background-color: #d36e77;
  color: #fff;
  border-radius: 3px;
  font-size: 1.6rem;
  font-weight: bold;
  min-height: 4rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.programDetailPost__info--data--ttl .tt {
  padding-left: 3.1rem;
  background-image: url(../images/program/icon_time.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 2.3rem auto;
}
.programDetailPost__info--data--ttl .time {
  padding-left: 3rem;
  background-image: url(../images/program/icon_timer.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.7rem auto;
}
.programDetailPost__info--data--ttl .num {
  padding-left: 2.7rem;
  background-image: url(../images/program/icon_man.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.3rem auto;
}
.programDetailPost__info--data--desc {
  padding-left: 2rem;
  color: #000;
  font-size: 1.6rem;
  font-weight: bold;
  word-break: break-all;
}
.programDetailPost__info--data + .programDetailPost__info--data {
  margin-top: 1.5rem;
}
.programDetailPost__body table {
  /*margin-top: 1.5em auto;*/
  margin: 1.5em auto;
  width: 80rem;
  border: 1.5px solid #000;
}
.programDetailPost__body table {
  font-size: 1.6rem;
}
.programDetailPost__body table th,
.programDetailPost__body table td {
  border: 1px solid #000;
  padding: 0.5rem 1rem;
  font-weight: 700;
  text-align: center;
}
.programDetailPost__body table td span {
  font-size: 0.8em;
}
.programDetailPost__body table th {
  background-color: #000;
  color: #fff;
  min-width: 10em;
  border-bottom: 1px solid #fff;
}
/*.programDetailPost__body table tr + tr th{
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #000;
}*/
.programDetailPost__body table th:nth-child(3) {
  border-bottom: 1px solid #000;
}
.programDetailPost__body table td {
  min-width: 18em;
}
.programDetailPlace {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.programDetailNote h4 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 4rem;
  padding: 0 5rem;
  background-color: #000;
  border-radius: 9999px;
  display: inline-block;
}
.programDetailNote ul {
  color: #e72233;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 2rem;
  padding-left: 2rem;
}
.programDetailNote ul li {
  list-style: disc;
  margin-top: 0.8rem;
}
.programDetailNote p {
  color: #e72233;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 2rem;
}
.programDetailNote a {
  color: #e72233;
  text-decoration: underline;
}
.blog_box {
  border: 1px solid #f00;
  padding: 2rem;
  margin-bottom: 4rem;
}

.blog_box p {
  color: red;
}

.flexProgramPlace {
  display: flex;
  border-radius: 2.5rem;
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: 700;
}
.flexProgramPlace__li {
  padding: 0.65em 1em;
  display: flex;
  align-items: center;
  word-break: break-all;
}
.flexProgramPlace__li a {
  text-decoration: none;
  color: inherit;
}
.flexProgramPlace__li a:hover {
  text-decoration: underline;
}
.flexProgramPlace__li:nth-child(1) {
  background-color: #d36e77;
  color: #fff;
  width: 13rem;
  flex-grow: 0;
  flex-shrink: 0;
  text-align: center;
}
.flexProgramPlace__li:nth-child(2) {
  background-color: #fff;
  min-width: 47rem;
}
.btn-common.-back:after {
  right: auto;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.btn-common.-reserve {
  font-size: 2.5rem;
  border: 4px solid #fff;
  border-radius: 4rem;
  height: 8rem;
  background-color: #0048ad;
}
.btn-common.-reserve.-close {
  background-color: #c0c0c0;
  pointer-events: none;
  cursor: not-allowed;
}
.btn-common.-reserve.-close:after {
  display: none;
}

ul.time_table {
  padding: 0 0 3rem 14rem;
}

ul.time_table > li {
  text-indent: -12rem;
  margin-bottom: 2rem;
}

ul.time_table > li > span {
  margin: 1rem 2rem 1rem 0;
  padding: 0.2rem 2rem;
  background: #d36e77;
  color: #fff;
  text-align: center;
  width: 80px;
}

/*------------ FOOTER ------------*/

footer {
  padding-top: 1rem;
  margin-top: -14rem;
  position: relative;
  z-index: 2;
  background: url("../images/common/bg_footer.png") no-repeat center bottom;
  background-size: auto 22rem;
  height: 22rem;
}
footer ._logo img {
  width: 8.7rem;
}
footer small {
  font-size: 1.2rem;
  margin-top: 9.5rem;
  display: block;
}
.btn-pagetop {
  position: fixed;
  z-index: 10;
  width: 7rem;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #ed7a81;
  border: solid 2px #fff;
  right: 3rem;
  bottom: 3rem;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
.btn-pagetop i {
  font-size: 1rem;
  font-style: normal;
  display: block;
}

/*------------ 2025 ------------*/
.content-lastyear {
  padding: 6rem 11.5rem 5rem;
  border-radius: 2rem;
  margin-top: 8rem;
}
.content-lastyear__ttl {
  display: flex;
  justify-content: center;
}
.content-lastyear__ttl .-inner {
  display: flex;
  justify-content: center;
  position: relative;
}
.content-lastyear__ttl .-icon {
  position: absolute;
  width: 5.6rem;
  left: -8rem;
  top: -1rem;
}
.content-lastyear__ttl .-ttl img {
  width: 64.1rem;
}
.content-lastyear__ttl .-illust {
  position: absolute;
  width: 7.8rem;
  right: -10rem;
  top: -9rem;
}
.content-lastyear__lead {
  margin-top: 3.5rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
.content-lastyear__pic {
  margin-top: 3rem;
}
.content-lastyear__mov {
  margin-top: 5rem;
  border-radius: 4rem;
  overflow: hidden;
  position: relative;
  padding-top: 56.25%;
}
.content-lastyear__mov iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.content-lastyear__btn {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}
.content-lastyear__btn .btn-common {
  padding-left: 5rem;
}
.content-topics {
  padding: 10rem 0;
}
.content-topics__inner {
  background-color: transparent !important;
}
.content-topics > .content-inner > .contentProgram__ttl {
  margin-bottom: 4rem;
}
.list-topics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.list-topics a {
  color: inherit;
  text-decoration: none;
}
.list-topics > li > a {
  display: flex;
  align-items: center;
  gap: 4rem;
  background-color: #fff;
  padding: 1rem 10rem 1rem 1rem;
  border-radius: 2rem;
  position: relative;
}
.list-topics__pic {
  width: 35rem;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 700 / 420;
  position: relative;
}
.list-topics__pic img {
  transform: scale(1);
  transition: transform 0.6s;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.list-topics > li:hover .list-topics__pic img {
  transform: scale(1.1);
}
.list-topics__info {
  flex-grow: 1;
  flex-shrink: 1;
}
.list-topics__head {
  display: flex;
  flex-direction: column;
}
.list-topics__ttl {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.list-topics__meta {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.list-topics__more {
  color: #0009ff;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: url("../images/common/icon_btn_arrow_w.png") no-repeat center center #0048ad;
  background-size: 1.5rem auto;
  border-radius: 50%;
}
.list-topics__more span {
  text-decoration: underline;
  display: none;
}
.list-topics__foot {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #000;
}
.list-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  row-gap: 0.5em;
  font-size: 1.4rem;
}

.contentTopicsSearch__ttl {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.contentTopicsSearch__ttl img {
  width: 73.5rem;
}
.contentTopicsSearch__lead {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #333333;
}
.contentTopicsSearch__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.contentTopicsSearch__tag a {
  display: block;
  background-color: #f3f4f5;
  padding: 0.5rem 2rem;
  color: inherit;
  text-decoration: none;
  border-radius: 1.5rem;
  transition: background 0.3s;
}
.contentTopicsSearch__tag a:hover,
.contentTopicsSearch__tag li.is-active a {
  background-color: #f3ca1e;
}

.topicsDetailHead {
  border: 2px solid #c4c3b4;
  border-radius: 3rem;
  position: relative;
  margin-top: 7rem;
  background-color: #fff;
  margin-bottom: -12rem;
}
.topicsDetailHead__label {
  position: absolute;
  left: 3.2rem;
  top: -3.5rem;
}
.topicsDetailHead__label img {
  width: 17.6rem;
}
.topicsDetailHead__inner {
  padding: 4.5rem 10rem 0;
}
.topicsDetailHead__ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.9;
}
.topicsDetailHead__info {
  border-top: 1px dotted #333333;
  margin-top: 2rem;
  padding: 3rem 13rem;
  position: relative;
}
.topicsDetailHead .programDetailEyecatch__illust {
  bottom: -5rem;
}
.topicsDetailHead .programDetailEyecatch__illust.-potsurin {
  left: -5rem;
}
.topicsDetailHead .programDetailEyecatch__illust.-kumojiro {
  right: -5rem;
}
.content-topicsDetailbody {
  padding: 22rem 0 10rem;
}
.topicsDetailbody {
  background-color: #fff;
  border-radius: 3rem;
  padding: 5rem 10rem;
}
.topicsDetailbody__eyecatch {
  margin: 0 auto 5rem;
  text-align: center;
}
.topicsDetailbody__eyecatch img {
  width: 70rem;
}
.topicsDetailbody__post {
  font-size: 1.6rem;
  line-height: 2;
}
.topicsDetailbody__post h3 {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.5rem 3rem;
  color: #fff;
  background-color: #000;
  line-height: 1.5;
  margin-bottom: 3rem;
}
.topicsDetailbody__post h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dotted #333333;
}
.topicsDetailbody__post blockquote {
  color: #666666;
  font-style: italic;
  padding-left: 1rem;
  border-left: 4px solid #cccccc;
  margin-left: 2rem;
}
.topicsDetailbody__post hr {
  border-top: 1px dotted #333333;
  height: 1px;
  display: block;
}
.topicsDetailbody__post ul {
  padding-left: 1.3em;
}
.topicsDetailbody__post ul > li {
  list-style: disc;
}
.topicsDetailbody__post ol {
  padding-left: 1.3em;
}
.topicsDetailbody__post ol > li {
  list-style: decimal;
}
.topicsDetailbody__post img {
  display: block;
  width: 70rem;
  margin-left: auto;
  margin-right: auto;
}
.topicsDetailbody__post a {
  color: inherit;
}
.topicsDetailbody__post a:hover {
  text-decoration: none;
}
.topicsDetailbody__post > * + *,
.topicsDetailbody__post > div > * + * {
  margin-top: 3rem !important;
}
.content-program-lower.-nobg {
  background-image: none;
}
.contentProgram__list {
  margin-bottom: 5.4rem;
  text-align: center;
}
.contentProgram__list img {
  width: 32.2rem;
}

@media (min-width: 981px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 980px) {
  .pc {
    display: none !important;
  }
  body {
    -webkit-text-size-adjust: 100%;
    overflow: auto;
  }

  /*------------ WRAPPER ------------*/
  #wrapper {
    overflow: hidden;
    width: 100%;
  }
  .content-inner {
    width: 100%;
    box-sizing: border-box;
    padding: 0 4rem;
  }

  /*------------ HEADER ------------*/
  .header-inner {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  .header-inner nav {
    height: 100%;
    overflow: auto;
    background-color: #fff;
    width: 50%;
  }
  .btn-nav.is-active ~ .header-inner {
    transform: translateX(0%);
  }

  /*------------ NAVI ------------*/
  .btn-nav {
    width: 10rem;
    height: 10rem;
    border: 2px solid #81ccd6;
    border-radius: 1rem;
    right: auto;
    left: 2rem;
    top: 2rem;
    background-size: 5em auto;
    display: block !important;
    opacity: 1 !important;
  }
  .btn-nav.is-active {
    background-image: url("../images/common/btn_menu_close.svg");
  }
  .headerNav {
    position: absolute;
    top: 6rem;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s;
    transition-delay: 2s;
  }
  .headerNav.is-show {
    opacity: 1;
  }
  .headerNav__list {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    height: 5rem;
    border-radius: 2.5rem;
    padding: 0 5.5rem;
  }
  header .headerNav__list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    height: auto;
    border-radius: 0;
    padding: 16rem 2rem 0 7rem;
    position: static;
  }
  .headerNav__list svg {
    height: 3.4rem;
  }
  .headerNav__list > li:nth-child(n + 2) {
    margin-left: 0;
    margin-top: 6rem;
  }
  .headerNav__list:nth-child(1) > li:nth-child(2) svg {
    position: relative;
    top: 0.2em;
  }
  .headerNav__list:nth-child(1) > li:nth-child(3) svg,
  .headerNav__list:nth-child(1) > li:nth-child(4) svg {
    position: relative;
    top: -0.1em;
  }
  .headerNav__list a {
    display: flex;
    align-items: center;
  }
  .headerNav__list a:before {
    content: "";
    width: 0.8rem;
    height: 0.9rem;
    background: url("../images/common/icon_arrow_nav.svg") no-repeat center center;
    background-size: contain;
    margin-right: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .headerNav__list a:hover:before {
    opacity: 1;
  }
  .headerNav__list a:hover path {
    fill: rgba(221, 104, 36, 1);
  }
  .headerNav {
    display: none;
  }
  body.top .btn-pagetop {
    bottom: 10rem;
  }

  /*------------ TOP ------------*/
  .content-mv {
    background: url("../images/top/bg_mv_sp.png") no-repeat center top;
    background-size: 100% auto;
  }
  .content-inner__mv {
    width: 100%;
    box-sizing: border-box;
    padding: 0 4rem;
  }
  /*
  .logo-ntv{
    position: absolute;
    width: 10.4rem;
    left: 10.2rem;
    top: 9.2rem;
  }
  */
  .logo-ntv {
    position: static;
    width: 10.4rem;
    left: auto;
    top: auto;
    margin: 10rem auto 0;
    padding-bottom: 5rem;
  }
  .icon-free {
    width: 24rem;
    left: 55rem;
    top: 0.7rem;
  }
  .illust-sorajiro {
    width: 13.9rem;
    right: auto;
    left: 47.6rem;
    top: 13.9rem;
  }
  .content-mv.-lower .illust-sorajiro {
    left: 30.7rem;
    top: 10.5rem;
  }
  .logo-ss {
    padding: 0;
  }
  .content-mv__ttl {
    padding-top: 31rem;
  }
  .content-mv__ttl ._inner {
    padding: 5rem 0 0;
  }
  .content-mv__ttl ._date {
    padding: 0 1rem;
  }
  .content-mv__ttl ._date img {
    width: 100%;
  }
  .content-mv__ttl ._inner ._info {
    margin-top: 2.9rem;
    border-radius: 2rem;
    padding: 2rem 2rem 3rem;
  }
  .content-mv__ttl .sp-sns-links {
    display: flex;
  }
  .flex-mv-info {
    flex-direction: column;
  }
  .flex-mv-info__li ._lab img {
    width: 25.5rem;
  }
  .flex-mv-info__li {
    flex-grow: 0;
    flex-shrink: 1;
  }
  .flex-mv-info__li:nth-child(2) {
    margin-left: 0;
    margin-top: 2rem;
  }
  .flex-mv-organizer {
    gap: 5px 8em;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr;
  }
  .flex-mv-organizer__li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    white-space: nowrap;
  }
  .flex-mv-organizer__li ._label {
    font-size: 1.2rem;
    background-color: #666666;
    width: 4rem;
    height: 100%;
    aspect-ratio: initial;
  }
  .flex-mv-organizer__li ._body {
    margin-left: 0.8rem;
    letter-spacing: 0;
  }
  .flex-mv-organizer__li:nth-child(2) {
    margin-left: 0;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    height: 100%;
  }
  .flex-mv-organizer__li:nth-child(3) {
    margin-left: 0;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 100%;
  }
  .flex-mv-organizer__li:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    position: relative;
    height: 100%;
  }
  .flex-mv-organizer__li:nth-child(1):after {
    content: "";
    width: 3rem;
    height: 3rem;
    background: url("../images/top/img_illust_kml.svg") no-repeat center center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
  }
  .flex-mv-organizer__li:nth-child(1) ._label {
    height: 100%;
    aspect-ratio: initial;
  }
  .content-about {
    height: auto;
    padding: 10rem 0;
    background-image: none;
    position: relative;
  }
  .content-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/top/bg_about_sp.png") no-repeat center 5rem;
    background-size: 100% auto;
    z-index: 1;
  }
  .content-about::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/top/bg_about_bottom_sp.png") no-repeat center 99%;
    background-size: 100% auto;
    z-index: 1;
  }
  .content-about__inner {
    background: url("../images/top/bg_about_content_sp.png") no-repeat center center;
    background-size: 100% auto;
    height: 114.8rem;
    padding-top: 15rem;
    margin: 0 -2rem;
  }
  .content-about__ttl img {
    width: 42.1rem;
  }
  .content-about__lead {
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 2;
    margin-top: 1.5rem;
    gap: 1rem;
  }
  .content-about__lead em {
    font-size: 3.2rem;
    font-weight: 700;
  }
  .content-about__declaration {
    font-size: 2.8rem;
    margin-top: 1.5rem;
    padding-left: 0;
    line-height: 1.2;
  }
  .content-about__bold {
    font-size: 2.6rem;
    line-height: 2;
    margin-top: 1.5rem;
  }
  .content-about__inner ._illust {
    position: absolute;
  }
  .illust-potsurin {
    width: 9.5rem;
    left: 3.8rem;
    top: 9.5rem;
  }
  .content-news__inner {
    padding: 2rem 0 5rem;
  }
  .flex-news {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
  }
  .flex-news__li:nth-child(1) {
    flex-grow: 0;
    flex-shrink: 0;
    width: calc(50% - 2rem);
    margin-left: -1rem;
  }
  .flex-news__li:nth-child(2) {
    flex-grow: 1;
    flex-shrink: 1;
    padding-right: 1rem;
    margin-top: 3rem;
    max-height: 66rem;
    min-height: initial;
  }
  .flex-news__ttl {
    margin-top: 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 2rem 0;
    position: relative;
  }
  .flex-news__ttl::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
    border-radius: 9999px;
    z-index: -1;
  }
  .flex-news__ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: initial;
    right: -50%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-bottom-left-radius: 9999px;
    border-bottom-right-radius: 9999px;
    border-radius: 9999px;
    z-index: -1;
  }
  .flex-news__ttl ._ttl img {
    height: 5.6rem;
    width: auto;
  }
  .flex-news__ttl ._illust {
    margin-top: 0;
    margin-bottom: 2rem;
    width: 12.8rem;
  }
  .list-news > li {
    border-radius: 2rem;
    padding: 0;
  }
  .list-news > li:nth-child(n + 2) {
    margin-top: 2rem;
  }
  .flex-news__item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 4rem;
  }
  a.flex-news__item {
    padding-right: 8rem;
    position: relative;
  }
  a.flex-news__item:before {
    width: 4.5rem;
    height: 4.5rem;
    background-size: 2.4rem auto;
  }
  .flex-news__item ._date {
    font-size: 2rem;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .flex-news__item ._body {
    font-size: 2.6rem;
    font-weight: 400 !important;
    flex-grow: 1;
    flex-shrink: 1;
    margin-left: 0;
    margin-top: 1.5rem;
    letter-spacing: 0;
  }
  .ttl-content__img {
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
  }
  .ttl-content__img img {
    height: 6rem;
    width: auto;
  }
  .content-access {
    padding: 5rem 0 16rem;
    background-image: url("../images/top/bg_access_sp.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
  }
  .flex-access {
    flex-direction: column-reverse;
  }
  .flex-access__li:nth-child(1) {
    flex-grow: 1;
    flex-shrink: 1;
  }
  .flex-access__li:nth-child(2) {
    flex-grow: 1;
    flex-shrink: 1;
    margin-left: 0;
    margin-bottom: 4rem;
  }
  .flex-access__li ._map {
    position: relative;
    padding: 0 1.8rem 0;
    width: 100%;
  }
  .flex-access__li ._map ._illust {
    width: 9.8rem;
    bottom: 0.5rem;
  }
  .flex-access__li ._block + ._block {
    margin-top: 4rem;
  }
  .flex-access__li ._ttl {
    font-size: 2.6rem;
    padding: 1rem 6rem 1.1rem;
    position: relative;
    margin-bottom: 2.5rem;
  }
  .flex-access__li ._ttl:before {
    width: 1.4rem;
    height: 4.8rem;
    left: 2.4rem;
    top: -1.2rem;
  }
  .flex-access__li ._body {
    font-size: 2.6rem;
  }
  .flex-access__li p {
    line-height: 2;
  }
  .list-access > li {
    padding-left: 1em;
    text-indent: -1em;
  }
  .list-access > li:nth-child(n + 2) {
    margin-top: 0.5em;
  }
  .content-outline {
    padding: 10rem 0 9rem;
  }
  .content-outline ._inner {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .list-outline {
    margin-top: 5rem;
  }
  .list-outline > li:nth-child(n + 2) {
    margin-top: 4rem;
  }
  .list-outline > li {
    display: flex;
    font-size: 2.6rem;
    align-items: center;
  }
  .list-outline > li ._ttl {
    flex-grow: 0;
    flex-shrink: 0;
    width: 15rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .list-outline > li ._body {
    margin-left: 1.5rem;
  }
  .content-outline ._illust {
    width: 10.3rem;
    right: 0;
    bottom: -9rem;
  }
  /* .content-organizer {
    padding: 10rem 0 22rem;
    border-top: 1rem solid #1f385b;
  } */
  .content-organizer ._inner {
    width: 100%;
    margin: 0 auto;
  }
  .content-organizer ._block + ._block {
    margin-top: 5rem;
  }
  .content-organizer ._ttl {
    margin-bottom: 3rem;
  }
  .content-organizer ._ttl img {
    height: 4.8rem;
    width: auto;
  }
  .content-organizer ._body {
    font-size: 2.6rem;
    line-height: 2;
  }
  .content-organizer ._btn {
    display: flex;
    justify-content: center;
  }
  .content-organizer .list-sponsor {
    grid-template-columns: repeat(3, 1fr);
  }
  .btn-common {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45rem;
    height: 8rem;
    border-radius: 4rem;
    font-size: 2.6rem;
    text-decoration: none;
    position: relative;
    padding: 0 7rem;
  }
  .btn-common:after {
    content: "";
    width: 4rem;
    height: 4rem;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("../images/common/icon_btn_arrow.svg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: auto 2rem;
    transition: background-position 0.3s;
  }
  .btn-common:hover:after {
    background-position: 70% 50%;
  }

  a.yoyakunasi__btn.btn-common.bg-color__black.text-color__white.font-bold._hover {
    height: 8.6rem;
    padding: 0 7rem 0 2.5rem;
    margin-top: 2rem;
    font-size: 2.4rem;
  }

  .flex-notes {
    font-size: 2rem;
    margin-top: 1rem;
  }
  .flex-notes__li ._color {
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
  }

  .content-join {
    padding: 9rem 0 10rem;
    background: none;
  }
  .contentJoin__ttl {
    margin: 0 0 5rem;
    padding-right: 0;
    justify-content: flex-end;
  }
  .contentJoin__ttl img {
    width: 63.5rem;
  }
  .contentJoin__lead {
    margin-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contentJoin__lead ._illust {
    position: static;
    right: auto;
    bottom: auto;
    margin-top: 1.5rem;
  }
  .contentJoin__body {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 2;
    text-align: center;
    letter-spacing: 0;
  }
  .contentJoin__notes {
    width: auto;
    margin: 0 -2rem;
    padding: 8rem 7rem;
    font-size: 2.2rem;
  }
  .contentJoin__notes p {
    line-height: 2;
  }
  .contentJoin__notes p + p {
    margin-top: 1.7em;
  }
  .content-program {
    padding: 5rem 0 10rem;
    background-size: auto 45rem;
  }
  .content-program::before {
    height: 42rem;
  }
  .contentProgram__lead {
    text-align: center;
    font-size: 2.6rem;
    line-height: 1.53;
    margin-top: -1.5rem;
    margin-bottom: 4rem;
  }
  .contentProgram__slide {
    position: relative;
  }
  .programSlideItem__arrow {
    position: absolute;
    top: 9rem;
    z-index: 10;
    cursor: pointer;
  }
  .programSlideItem__arrow.-prev {
    left: 0;
    transform: translateX(-50%) rotate(180deg);
  }
  .programSlideItem__arrow.-next {
    right: 0;
    transform: translateX(50%);
  }
  .programSlideItem {
    width: auto;
  }
  .programSlideItem__img img {
    height: 20rem;
  }
  .programSlideItem__cat {
    padding: 0.2em 1em 0.3em;
    font-size: 2rem;
    min-width: 14rem;
  }
  .programSlideItem__badge img {
    width: 10rem;
  }
  .programSlideItem__inner {
    padding: 2rem;
  }
  .programSlideItem__tag > li > .program-caticon {
    font-size: 1.8rem;
    border-radius: 1.5rem;
    padding: 0.4rem 2rem;
  }
  .programSlideItem__tag > li > .program-caticon ._icon {
    position: relative;
    top: 0.1rem;
  }
  .programSlideItem__tag > li > .program-caticon ._icon img {
    display: block;
  }
  .programSlideItem__tag > li > .program-caticon ._txt {
    position: relative;
    top: -0.1rem;
  }
  /**/
  .programSlideItem__tag > li > a {
    font-size: 1.8rem;
    border-radius: 1.5rem;
    padding: 0.4rem 2rem;
  }
  .programSlideItem__tag > li > a ._icon {
    position: relative;
    top: 0.1rem;
  }
  .programSlideItem__tag > li > a ._icon img {
    display: block;
  }
  .programSlideItem__tag > li > a ._txt {
    position: relative;
    top: -0.1rem;
  }
  /**/
  .programSlideItem__ttl {
    font-size: 2.4rem;
  }
  .programSlideItem__exhibitors {
    font-size: 2rem;
  }
  .contentProgram__btn {
    margin-top: 3rem;
  }
  .content-faq {
    padding: 9rem 0 4rem;
  }
  .contentFaq__ttl {
    margin-bottom: 6rem;
  }
  .contentFaq__ttl span {
    position: relative;
    padding-right: 10rem;
  }
  .contentFaq__ttl ._illust {
    position: absolute;
    right: 0;
    top: auto;
    bottom: -1rem;
    transform: translateY(0);
  }
  .contentFaq__ttl ._illust img {
    width: 7.2rem;
    height: auto;
  }
  .contentFaq__tab {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1rem;
  }
  .contentFaq__tab > li {
    width: 50%;
  }
  .contentFaq__tab > li a {
    font-size: 2.4rem;
    height: 8rem;
  }
  .contentFaq__tab > li.is-active a,
  .contentFaq__tab > li a:hover {
    height: 9rem;
  }
  /* .contentFaq__tab > li:nth-child(even) {
  } */
  .contentFaq__tab .btn-common {
    width: auto;
    min-height: 8rem;
    height: auto;
    padding: 1.5rem 6rem 1.5rem 3rem;
    font-size: 2.2rem;
    justify-content: center;
    border-radius: 4rem / 50%;
  }
  .contentFaq__tab .btn-common:after {
    width: 3rem;
    height: 3rem;
    right: 2rem;
  }
  .contentFaq__tab .btn-common:after {
    transform: translateY(-50%) rotate(90deg);
  }
  .contentFaq__tabContent {
    padding: 2rem;
  }
  .contentFaq__tabContent ._ttl {
    font-size: 2.6rem;
    padding: 1rem 6rem 1.1rem;
    position: relative;
    margin-bottom: 2.5rem;
  }
  .contentFaq__tabContent ._ttl:before {
    width: 1.4rem;
    height: 4.8rem;
    left: 2.4rem;
    top: -1.2rem;
  }
  .faqBlock {
    padding: 5rem 3rem;
  }
  .faqBlock + .faqBlock {
    margin-top: 1rem;
  }
  .flexFaqHead {
    display: flex;
    align-items: stretch;
  }
  .flexFaqHead__li:nth-child(1) {
    flex-grow: 0;
    flex-shrink: 0;
  }
  .flexFaqHead__li:nth-child(2) {
    flex-grow: 1;
    flex-shrink: 1;
    margin-left: 3rem;
  }
  .flexFaqHead__li:nth-child(3) {
    flex-grow: 0;
    flex-shrink: 0;
    width: 8rem;
    margin-left: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .flexFaqHead__q {
    position: relative;
    top: 1rem;
  }
  .flexFaqHead__q span {
    position: relative;
    top: -0.12em;
  }
  .flexFaqHead__ttl {
    font-size: 2.6rem;
  }
  .faqBlock__body {
    margin-top: 2rem;
    padding: 3rem 1em 0;
    font-size: 2.4rem;
    margin-left: 0;
  }
  .flexFaqHead__arrow img {
    width: 3rem;
  }
  .content-notes {
    padding: 10rem 0 0 0;
  }
  .contentNotes {
    padding: 7rem 7rem;
    font-size: 2.2rem;
  }
  .contentNotes p {
    line-height: 2;
  }
  .contentNotes p + p {
    margin-top: 1.7em;
  }
  .sponsorList {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 3.5rem;
    margin: 0 auto 5rem;
  }
  .sponsorList > li img {
    width: 100%;
  }

  /*------------ PROGRAM ------------*/
  .content-mv.-lower {
    height: 30rem;
    background: url("../images/top/bg_mv_sp.png") no-repeat center top;
    background-size: 100% auto;
  }
  .content-search__ttl {
    display: flex;
    justify-content: center;
    margin-bottom: -7rem;
  }
  .content-search__ttl img {
    width: 60rem;
  }
  .searchBlock {
    background-color: #52813a;
    border: 1.5rem solid #4e3d28;
    padding: 5rem 3rem;
  }
  .searchBlock__ttl {
    padding-top: 1.5rem;
    margin-bottom: 3.5rem;
  }
  .searchBlock__ttl img {
    width: 40rem;
  }
  .flexSearchBlock {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    margin-top: -3rem;
  }
  .flexSearchBlock__li {
    margin-right: 0;
    margin-top: 3rem;
  }
  .flexSearchBlock__li:nth-child(1) .flexSearchBlock__ttl img,
  .flexSearchBlock__li:nth-child(4) .flexSearchBlock__ttl img {
    height: 3.2rem;
    width: auto;
  }
  .flexSearchBlock__li:nth-child(2) .flexSearchBlock__ttl img,
  .flexSearchBlock__li:nth-child(3) .flexSearchBlock__ttl img {
    height: 3.8rem;
    width: auto;
  }
  .flexSearchBlock__ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-bottom: 2rem;
  }
  .flexSearchBtn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: -1rem;
    margin-top: -1rem;
  }
  .flexSearchBtn.-narrow {
    padding: 0;
  }
  .flexSearchBtn__li {
    margin-right: 1rem;
    margin-top: 1rem;
  }
  .flexSearchBtn__li:nth-child(n + 2) {
    margin-left: 0;
  }
  .flexSearchBtn__li a {
    min-height: 4.5rem;
    border-radius: 3rem / 50%;
    font-size: 2.8rem;
    padding: 0.4em 1em;
  }
  .content-search__illust {
    margin-top: 4rem;
  }
  .content-search__illust img {
    width: 50rem;
  }
  .content-program-lower {
    padding: 6rem 0 20rem;
    /*background: url("../images/program/bg_cloud.png") no-repeat center 2.8rem #daecf3;*/
    background-position: center 2.8rem;
    background-size: 95% auto;
  }
  .content-program-lower.topics > .content-inner {
    background-color: #fff;
    border-radius: 3rem;
    margin: 0 3rem;
    padding: 4rem 1.5rem;
    width: calc(100% - 6rem);
  }
  .contentProgram__slide.-lower {
    display: flex;
    flex-wrap: wrap;
    margin-top: -1.5rem;
  }
  .contentProgram__slide.-lower .programSlideItem {
    width: calc((100% - 1.5rem) / 2);
    margin-left: 1.5rem;
    margin-top: 1.5rem;
  }
  .contentProgram__slide.-lower .programSlideItem:nth-child(3n + 1) {
    margin-left: 1.5rem;
  }
  .contentProgram__slide.-lower .programSlideItem:nth-child(2n + 1) {
    margin-left: 0;
  }
  .contentProgram__slide.-lower .programSlideItem__inner {
    padding-bottom: 2rem;
  }

  /*------------ PROGRAM DETAIL ------------*/
  .content-program-lower {
    padding: 6rem 0 20rem;
  }
  .programDetail__btn {
    display: flex;
    justify-content: center;
  }
  .programDetail__btn + .programDetail__btn {
    margin-top: 5rem;
  }
  .content-programDetail {
    margin-top: 30rem;
    padding: 0 0 5rem;
  }
  .programDetailEyecatch {
    position: relative;
    top: -26rem;
    width: 67rem;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: -23rem;
  }
  .programDetailEyecatch__illust {
    position: absolute;
    z-index: 2;
    bottom: -2rem;
  }
  .programDetailEyecatch__illust img {
    width: 10.5rem;
  }
  .programDetailEyecatch__illust.-potsurin {
    left: -4rem;
  }
  .programDetailEyecatch__illust.-kumojiro {
    right: -4rem;
  }
  .programDetailEyecatch__sign img {
    width: 45.5rem;
  }
  .programDetail_exhibitors {
    margin-top: 2rem;
    padding: 1rem 8rem 1rem 7rem;
  }
  .programDetail_exhibitors.bottom {
    width: 100%;
    margin-top: 3rem;
    padding: 1rem 1.5rem !important;
  }
  .programDetail_exhibitors--name {
    font-size: 2.8rem;
  }
  .programDetail_exhibitors--ico {
    padding: 0 0;
  }
  .programDetail_exhibitors--ico > span {
    width: 6.5rem;
    font-size: 2rem;
    justify-content: center;
    height: 3rem;
  }
  .programDetail_exhibitors--ico > span > img {
    width: 1.8rem;
  }
  .programDetailBlock {
    padding: 4rem;
    border-radius: 3rem;
  }
  .programDetailBlock + .programDetailBlock {
    margin-top: 2rem;
  }
  .programDetailBlock__ttl {
    font-size: 3rem;
    line-height: 1.7;
  }
  .programDetailBlock__info {
    /* border-top: 1px dotted #000; */
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
  .programDetailBlock__info .programSlideItem__tag > li > a {
    font-size: 2.4rem;
    border-radius: 1.5rem;
    padding: 0.4rem 2rem;
  }
  .programDetailBlock__info .programSlideItem__tag > li > a ._icon img {
    width: 2.4rem;
  }
  .programSlideItem__tag {
    margin-right: -1rem;
  }
  /* .programSlideItem__tag > li {
    margin-right: 1rem;
    margin-top: 1rem;
  } */
  .programDetailBlock__exhibitors {
    margin-top: 1rem;
    margin-bottom: -1rem;
    font-size: 2.4rem;
  }
  .programDetailBlock__place {
    grid-template-columns: 29% 71%;
    margin-top: 3rem;
  }
  .programDetailBlock__place--ttl {
    font-size: 2.4rem;
  }
  .programDetailBlock__place--ttl span {
    padding: 0 0 0 2.6rem;
    background-size: 2rem auto;
  }
  .programDetailBlock__place--data {
    font-size: 2.4rem;
    padding: 0 2rem;
  }
  .programDetailPost {
    padding-top: 2rem;
  }
  .programDetailPost__ttl {
    display: flex;
    justify-content: center;
  }
  .programDetailPost__ttl img {
    width: 38rem;
  }
  .programDetailPost_links {
    margin-top: 3rem;
    width: 100%;
    padding: 0 3rem;
  }
  .programDetailPost_links_inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .programDetailPost_link_link {
    width: 100%;
    max-width: initial;
  }
  .programDetailPost_link_link a {
    font-size: 2rem;
    background-position: center 91%;
  }
  .programDetailPost_link_link a:hover {
    background-position: center 91%;
    background-color: #f3f4f5;
  }
  .programDetailPost__body {
    margin-top: 3rem;
  }
  .programDetailPost__body h3 {
    padding: 0.5em 1em;
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
  .programDetailPost__body h4 {
    font-size: 2.8rem;
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px dotted #000;
  }
  .programDetailPost__body p,
  .programDetailPost__body ul {
    font-size: 2.4rem;
    line-height: 1.7;
  }
  .programDetailPost__body p + p {
    margin-top: 1.7em;
  }
  .programDetailPost__info {
    padding: 3rem;
  }
  .programDetailPost__info--data {
    display: block;
  }
  .programDetailPost__info--data--ttl {
    font-size: 2.2rem;
    width: 21rem;
    display: inline-flex;
  }
  .programDetailPost__info--data--desc {
    padding-left: 0;
    font-size: 2.2rem;
  }
  .programDetailPost__body table {
    margin-top: 1.7em;
  }
  .programDetailPost__body table {
    font-size: 2.4rem;
    width: 22em;
    margin: 1.7rem auto;
  }
  .programDetailPost__body table td {
    min-width: 14em;
  }
  .programDetailPost__body table th {
    min-width: 8em;
  }
  .programDetailBlock__notes p {
    font-size: 2.2rem;
  }
  .programDetailBlock__notes p + p {
    margin-top: 1.5em;
  }
  .programDetailPlace {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
  }
  .flexProgramPlace {
    display: flex;
    border-radius: 3rem / 50%;
    overflow: hidden;
    font-size: 2.8rem;
    font-weight: 700;
  }
  .flexProgramPlace__li {
    padding: 0.65em 1em;
  }
  .flexProgramPlace__li:nth-child(1) {
    background-color: #d36e77;
    color: #fff;
    /*width: auto;*/
    width: 8em;
    flex-grow: 0;
    flex-shrink: 0;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .flexProgramPlace__li:nth-child(2) {
    background-color: #fff;
    /*min-width: 0;*/
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .btn-common.-reserve {
    font-size: 3.2rem;
    border: 4px solid #fff;
    border-radius: 6rem;
    height: 12rem;
    width: 60rem;
  }

  .programDetailPost__body p,
  .programDetailPost__body ul {
    font-size: 2.4rem;
    line-height: 1.7;
  }

  .programDetailNote h4 {
    font-size: 2.4rem;
    line-height: 4rem;
    padding: 0 4rem;
  }
  .programDetailNote ul {
    font-size: 2.2rem;
  }
  .programDetailNote ul li {
    list-style: disc;
  }
  .programDetailNote p {
    font-size: 2.4rem;
  }

  ul.time_table > li {
    text-indent: -14rem;
  }

  ul.time_table > li > span {
    margin: 1rem 1.5rem 1rem 0;
  }

  /*------------ FOOTER ------------*/

  footer {
    padding-top: 0;
    margin-top: -13rem;
    position: relative;
    z-index: 2;
    background: url("../images/common/bg_footer_sp.png") no-repeat 50% 100.5%;
    background-size: 100% auto;
    height: auto;
  }
  body.top footer {
    margin-bottom: 8rem;
  }
  footer ._logo img {
    width: 8.7rem;
  }
  footer small {
    font-size: 1.2rem;
    margin-top: 15.5rem;
    display: block;
    padding-bottom: 1.5rem;
  }

  /*------------ 2025 ------------*/
  .content-lastyear {
    padding: 4rem 3rem 5rem;
    margin-top: 5rem;
  }
  .content-lastyear__ttl {
    display: flex;
    justify-content: center;
  }
  .content-lastyear__ttl .-inner {
    display: flex;
    justify-content: center;
    position: relative;
  }
  .content-lastyear__ttl .-icon {
    position: absolute;
    width: 3.4rem;
    left: 4.5rem;
    top: 0rem;
  }
  .content-lastyear__ttl .-ttl img {
    width: 41.1rem;
  }
  .content-lastyear__ttl .-illust {
    position: absolute;
    width: 7.8rem;
    right: -10rem;
    top: -9.5rem;
  }
  .content-lastyear__lead {
    margin-top: 4rem;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.53;
  }
  .content-lastyear__pic {
    margin-top: 3.5rem;
    padding: 0;
    text-align: center;
  }
  .content-lastyear__mov {
    margin-top: 4rem;
    border-radius: 2rem;
  }
  .content-lastyear__btn {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
  }
  .content-lastyear__btn .btn-common {
    padding-left: 3rem;
    text-align: center;
    line-height: 1.23;
  }
  .content-topics {
    padding: 10rem 0;
  }
  .content-topics > .content-inner > .contentProgram__ttl {
    margin-bottom: 2.5rem;
  }
  .content-topics > .content-inner {
    background-color: #fff;
    border-radius: 3rem;
    margin: 0 3rem;
    padding: 4rem 1.5rem;
    width: calc(100% - 6rem);
  }
  .list-topics {
    gap: 2rem;
  }
  .list-topics > li > a {
    gap: 2rem;
    padding: 1rem 1rem 1rem 1rem;
    background-color: transparent;
    border-radius: 0;
  }
  .list-topics__pic {
    width: 25rem;
    border-radius: 3rem;
  }
  .list-topics__head {
    flex-direction: column-reverse;
  }
  .list-topics__head > a {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    /* padding-right: 2.5rem; */
  }
  .list-topics__head > a:before {
    content: "";
    width: 2rem;
    height: 1.4rem;
    background: url("../images/common/icon_btn_arrow_b.png") no-repeat center center;
    background-size: 2rem auto;
    position: absolute;
    right: 0;
    bottom: 1rem;
  }
  .list-topics__ttl {
    font-size: 2.4rem;
    line-height: 1.5;
    padding-right: 1rem;
    background-image: url(../images/top/icon_topics_sp_arrow.svg);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 2.4rem auto;
  }
  .list-topics__meta {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  .list-topics__more {
    width: 4.5rem;
    height: 4.5rem;
    background-size: 2.4rem auto;
    display: none;
  }
  .list-topics__foot {
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid #000;
  }
  .list-tag {
    font-size: 1.6rem;
  }

  .contentTopicsSearch__ttl {
    display: flex;
    justify-content: center;
    margin-bottom: 3.5rem;
  }
  .contentTopicsSearch__ttl img {
    width: 63.5rem;
  }
  .contentTopicsSearch__lead {
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 4rem;
  }
  .contentTopicsSearch__tag {
    justify-content: center;
    gap: 1rem;
    font-size: 2.2rem;
  }
  .contentTopicsSearch__tag a {
    padding: 1rem 2rem;
    border-radius: 3rem;
  }

  .topicsDetailHead {
    margin-top: 5rem;
    margin-bottom: -12rem;
  }
  .topicsDetailHead__label {
    left: 50%;
    top: -5.7rem;
    transform: translateX(-50%);
  }
  .topicsDetailHead__label img {
    width: 30rem;
  }
  .topicsDetailHead__inner {
    padding: 4.5rem 4rem 0;
  }
  .topicsDetailHead__ttl {
    font-size: 3rem;
  }
  .topicsDetailHead__info {
    border-top: 1px dotted #333333;
    margin-top: 3rem;
    padding: 4rem 5rem;
    position: relative;
  }
  .topicsDetailHead .programDetailEyecatch__illust {
    bottom: -3rem;
  }
  .topicsDetailHead .programDetailEyecatch__illust.-potsurin {
    left: -9rem;
  }
  .topicsDetailHead .programDetailEyecatch__illust.-kumojiro {
    right: -9rem;
  }
  .content-topicsDetailbody {
    padding: 18rem 0 10rem;
  }
  .topicsDetailbody {
    padding: 4rem;
  }
  .topicsDetailbody__eyecatch {
    margin: 0 auto 4rem;
  }
  .topicsDetailbody__eyecatch img {
    width: 70rem;
  }
  .topicsDetailbody__post {
    font-size: 2.4rem;
    line-height: 1.7;
  }
  .topicsDetailbody__post h3 {
    font-size: 3.2rem;
    padding: 1.5rem 3rem;
    line-height: 1.5;
    margin-bottom: 3rem;
  }
  .topicsDetailbody__post h4 {
    font-size: 3.2rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
  }
  .contentProgram__list {
    margin-bottom: 5rem;
  }
  .contentProgram__list img {
    width: 36rem;
  }

  .contentProgram__btn.js-animate.anim-fadeUp.is-show.pg-document {
    flex-wrap: wrap;
    width: 47rem;
    margin: 0 auto;
    margin-top: 3rem;
  }
}

.flex-news__item ._body > a:hover {
  opacity: 0.8;
  text-decoration: none;
}

div#kodomo-week-bnr {
  display: block;
  width: 100%;
  padding: 5rem 4rem 0 50rem;
}

div#kodomo-week-bnr:hover {
  opacity: 0.8;
}

div#kodomo-week-bnr img {
  width: 100%;
  height: auto;
  max-width: 525px;
}

@media (max-width: 980px) {
  div#kodomo-week-bnr {
    display: block;
    width: 100%;
    padding: 3rem 5rem 0 5rem;
  }
  div#kodomo-week-bnr img {
    max-width: initial;
  }
}

.info-links {
  position: fixed;
  width: 13rem;
  top: 35rem;
  right: 0;
  z-index: 1000;
}
.info-links__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 0;
}
.info-links__list li a {
  color: #fff;
  display: flex;
  text-align: center;
  text-decoration: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  aspect-ratio: 1 / 1;
  transition: opacity 0.3s linear;
}
.info-links__list li a:hover {
  opacity: 0.8;
}
.info-links__list li a span {
  display: inline-block;
  margin-top: 1.5rem;
}
.info-links__list li a.timetable {
  background-color: #5fbdb4;
  border-top-left-radius: 2.5rem;
}
.info-links__list li a.timetable img {
  width: 7.1rem;
  margin-right: -1.5rem;
}
.info-links__list li a.timetable span {
  margin-top: 0.5rem;
}
.info-links__list li a.leaflet {
  background-color: #f88080;
  border-bottom-left-radius: 2.5rem;
}
.info-links__list li a.leaflet img {
  width: 5.5rem;
}
@media (max-width: 980px) {
  .info-links {
    position: fixed;
    width: 100%;
    top: initial;
    bottom: 0;
    right: 0;
  }
  .info-links__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .info-links__list li a {
    color: #fff;
    display: flex;
    height: 8rem;
    text-align: center;
    text-decoration: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1;
    aspect-ratio: initial;
    transition: none;
  }
  .info-links__list li a:hover {
    opacity: 1;
  }
  .info-links__list li a span {
    display: inline-block;
    margin-top: initial;
  }
  .info-links__list li a.timetable {
    border-top-left-radius: 0;
  }
  .info-links__list li a.timetable img {
    width: 4.7rem;
    margin-right: 0;
  }
  .info-links__list li a.timetable span {
    margin-top: 0;
  }
  .info-links__list li a.leaflet {
    border-bottom-left-radius: 0;
  }
  .info-links__list li a.leaflet img {
    width: 3.6rem;
  }
}

.fixed_program_application {
  position: fixed;
  width: 12rem;
  top: 35rem;
  right: 1rem;
  z-index: 1000;
  line-height: 0;
}
.fixed_program_application > .icon {
  position: relative;
  z-index: 2;
  bottom: -2.5rem;
  pointer-events: none;
}
.fixed_program_application > .icon > img {
  width: 12.5rem;
}
.fixed_program_application a {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #0048ad;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid 2px #fff;
  z-index: 1;
  position: relative;
  transition: opacity 0.3s linear;
}
.fixed_program_application a:hover {
  opacity: 0.8;
}
.fixed_program_application a > span {
  display: inline-block;
  font-size: 1.8rem;
}
@media (max-width: 980px) {
  .fixed_program_application {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
    top: 35rem;
  }
}
