@keyframes marquee {
  0% {
    transform: translate(0%);
  }
  30% {
    transform: translate(0%);
  }
  99% {
    transform: translate(-100%);
  }
}
@keyframes mask_show {
  0% {
    left: -100%;
  }
  40% {
    left: 0;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes mask_hide {
  0% {
    left: -100%;
  }
  30% {
    left: 0;
  }
  60% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes text_show {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes text_hide {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.btn-01 {
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
  display: block;
  border: 1px solid #001976;
  line-height: 1;
  padding: 16px 13px;
  color: #001976;
  font-size: 21px;
  font-weight: bold;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.btn-01::after {
  content: "";
  display: block;
  position: absolute;
  width: 23px;
  height: 8px;
  right: 13px;
  bottom: 16px;
  border-right: 1.5px solid #001976;
  border-bottom: 1px solid #001976;
  transform: skew(45deg, 0);
  transition: all 0.2s ease-in-out;
}
.btn-01::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #001976;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  transform: translate(7px, 7px);
  transition: all 0.2s ease-in-out;
}
.btn-01:hover {
  background-color: #fff;
  border-color: #fff;
}
.btn-01:hover::after {
  border-color: #fff;
}
.btn-01:hover::before {
  transform: translate(0, 0);
}

.btn-02 {
  background: #001976;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1;
  padding: 14px 32px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-start;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}
.btn-02::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 7.8px;
  margin-left: 7px;
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
  transform: skew(45deg, 0);
  transition: all 0.2s ease-in-out;
}
.btn-02:hover {
  background: #fff;
  color: #001976;
}
.btn-02:hover::after {
  border-color: #001976;
}

.btn-03, .btn-04, .btn-05 {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #fff;
  color: #001976;
  text-align: center;
  line-height: 1;
  width: 265px;
  height: 77px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease-in-out;
  padding: 28px 0;
}
.btn-03::after, .btn-04::after, .btn-05::after {
  content: "";
  display: block;
  width: 21px;
  height: 10px;
  border-right: 3px solid #001976;
  border-bottom: 2.5px solid #001976;
  transform: skew(45deg, 0);
  margin-left: 16px;
}
.btn-03:hover, .btn-04:hover, .btn-05:hover {
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.5);
}

.btn-04, .btn-05 {
  border: 2px solid #001976;
  box-shadow: 8px 8px 0 rgba(0, 25, 118, 0.5);
}

.btn-05 {
  background-color: #001976;
  color: #fff;
}
.btn-05::after {
  border-color: #fff;
}

.row--ttl.ttl-b,
.row--ttl.ttl-w {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.row--ttl.ttl-b .ttl-container,
.row--ttl.ttl-w .ttl-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 4px solid #001976;
}
.row--ttl.ttl-b .ttl-container .img,
.row--ttl.ttl-w .ttl-container .img {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  background-color: #001976;
  display: flex;
  justify-content: center;
  align-items: center;
}
.row--ttl.ttl-b .ttl-container .img img,
.row--ttl.ttl-w .ttl-container .img img {
  height: 30px;
}
.row--ttl.ttl-b .ttl-container .txt,
.row--ttl.ttl-w .ttl-container .txt {
  padding: 0 16px;
  font-size: 30px;
  font-weight: bold;
  color: #001976;
  line-height: 1;
}
.row--ttl.ttl-b .link,
.row--ttl.ttl-w .link {
  align-self: flex-end;
  color: #001976;
  font-size: 18px;
}
.row--ttl.ttl-b .link::after,
.row--ttl.ttl-w .link::after {
  content: "";
  display: inline-block;
  margin-left: 16px;
  width: 27px;
  height: 12px;
  border-right: 3px solid #001976;
  border-bottom: 2.5px solid #001976;
  transform: skew(45deg, 0);
}
.row--ttl.ttl-b .link:hover,
.row--ttl.ttl-w .link:hover {
  text-decoration: underline;
}

.row--ttl.ttl-w .ttl-container {
  border-color: #fff;
}
.row--ttl.ttl-w .ttl-container .img {
  background-color: #fff;
}
.row--ttl.ttl-w .ttl-container .img img {
  height: 30px;
}
.row--ttl.ttl-w .ttl-container .txt {
  color: #fff;
}
.row--ttl.ttl-w .link {
  color: #fff;
}
.row--ttl.ttl-w .link::after {
  border-color: #fff;
}

#container--bg {
  position: fixed;
  z-index: -1;
}
#container--bg .bg-wave {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/img/top/bg-mask.png") repeat center;
  z-index: 1;
  top: 0;
  left: 0;
}
#container--bg .bg-wave-inner {
  width: 520px;
  height: 520px;
}
#container--bg .bg-swiper {
  width: 100vw;
  height: 100vh;
}
#container--bg .bg-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#container--top {
  width: 100vw;
}

.ttl-top {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #fff;
  line-height: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.ttl-top .ttl-icon {
  flex: 0 0 40px;
  width: 40px;
  margin-right: 12.5px;
}

#playing {
  float: right;
  padding-top: 40px;
  width: 605px;
}
#playing .row--playing {
  justify-content: space-between;
  margin-bottom: 6px;
}
#playing .row--playing .txt {
  flex: 1 1 auto;
}
#playing .row--playing .form-content {
  flex: 0 0 195px;
  height: 39px;
  transition: all 0.2s ease-in-out;
}
#playing .row--playing .form-content input {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  padding: 5px 40px 5px 10px;
  border: none;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
  width: 195px;
}
#playing .row--playing .form-content input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#playing .row--playing .form-content input:focus {
  outline: none;
  width: 300px;
}
#playing .row--playing #song-search {
  position: relative;
}
#playing .row--playing #song-search .submit {
  border: none;
  background: transparent;
  position: absolute;
  right: 5px;
  top: 0;
  height: 30px;
  fill: #fff;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
#playing .row--playing #song-search .submit:hover {
  fill: #001976;
}

#playing-info {
  background-color: #001976;
  color: #fff;
  height: 52px;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#playing-info .time {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #fff;
  line-height: 1;
  height: 100%;
  margin-right: 10px;
}
#playing-info .txt {
  overflow: hidden;
  flex: 1 1 auto;
}
#playing-info .txt .marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 10s linear 0s infinite;
}
#playing-info .txt-inner {
  white-space: nowrap;
}
#playing-info a {
  color: #fff;
}
#playing-info a:hover {
  text-decoration: underline;
}

#on-air--container {
  clear: both;
}
#on-air--container .ttl-on-air {
  height: 248px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
#on-air--container .ttl-on-air .lottie {
  display: none;
}
#on-air--container .ttl-on-air .lottie svg {
  display: block;
}
#on-air--container .ttl-on-air.active .svg {
  display: none;
}
#on-air--container .ttl-on-air.active .lottie {
  display: block;
}

#on-air--contents {
  clear: both;
  overflow: visible;
}
#on-air--contents .on-air-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
#on-air--contents .ttl-top {
  align-items: flex-end;
}
#on-air--contents .ttl-top .txt {
  margin-bottom: 10px;
}
#on-air--contents .prog-ttl {
  margin-bottom: 11px;
}
#on-air--contents .prog-ttl .row--ttl {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
#on-air--contents .prog-ttl .row--ttl::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 7.8px;
  margin-left: 7px;
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
  transform: skew(45deg, 0);
  transition: all 0.2s ease-in-out;
}
#on-air--contents .prog-ttl .row--ttl:hover {
  background: #fff;
  color: #001976;
}
#on-air--contents .prog-ttl .row--ttl:hover::after {
  border-color: #001976;
}
#on-air--contents .row--ttl {
  background: #001976;
  color: #fff;
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 1.47;
  padding: 20px 32px;
  display: inline-block;
}
#on-air--contents .prog-time {
  margin-bottom: 11px;
}
#on-air--contents .row--time {
  background: #001976;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1;
  padding: 14px 32px;
  display: inline-block;
}
#on-air--contents .row--name {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 11px;
}
#on-air--contents .row-link {
  width: 1000px;
  margin: 0 auto 18px;
  display: flex;
  justify-content: center;
}
#on-air--contents .row-link .row-link-inner {
  width: 446px;
  flex-basis: 446px;
  display: flex;
  justify-content: space-between;
}
#on-air--contents .row-link .row-link-inner .item {
  flex: 0 0 213px;
}
#on-air--contents .row-link .row-link-inner .item .btn-01 {
  width: 100%;
}
#on-air--contents .row-link .btn-radiko {
  flex-basis: 100%;
  text-align: center;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 16px 13px;
  color: #00A7E9;
  font-size: 21px;
  font-weight: 400;
  position: relative;
  transition: all 0.2s ease-in-out;
}
#on-air--contents .row-link .btn-radiko svg {
  width: 32px;
  margin-right: 15px;
  fill: #00A7E9;
  transition: all 0.2s ease-in-out;
}
#on-air--contents .row-link .btn-radiko::after {
  content: "";
  display: block;
  position: absolute;
  width: 23px;
  height: 8px;
  right: 13px;
  bottom: 13px;
  border-right: 1.5px solid #00A7E9;
  border-bottom: 1px solid #00A7E9;
  transform: skew(45deg, 0);
  transition: all 0.2s ease-in-out;
}
#on-air--contents .row-link .btn-radiko::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00A7E9;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  transform: translate(7px, 7px);
  transition: all 0.2s ease-in-out;
}
#on-air--contents .row-link .btn-radiko:hover {
  background-color: #00A7E9;
  color: #fff;
}
#on-air--contents .row-link .btn-radiko:hover svg {
  fill: #fff;
}
#on-air--contents .row-link .btn-radiko:hover::after {
  border-color: #fff;
}
#on-air--contents .row-link .btn-radiko:hover::before {
  transform: translate(0, 0);
}
#on-air--contents .inner {
  overflow: hidden;
  position: relative;
}
#on-air--contents .inner .show-text {
  position: relative;
  opacity: 0;
}
#on-air--contents .mask {
  position: absolute;
  left: -100%;
  right: auto;
  top: 0;
  bottom: 0;
  background: #fff;
  width: 100%;
}
#on-air--contents.active .inner .show-text {
  animation: text_show 1s ease-out 0s forwards;
}
#on-air--contents.active .inner .mask {
  animation: mask_show 1s ease-out 0s;
}
#on-air--contents.hide .inner .show-text {
  animation: text_hide 0.5s ease-out 0s forwards;
}
#on-air--contents.hide .inner .mask {
  animation: mask_hide 0.5s ease-out 0s;
}

#carousel {
  margin-top: 29px;
  position: relative;
}
#carousel .carousel-bg {
  width: 100%;
  height: 96px;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 74px;
}
#carousel .carousel-swiper {
  padding-top: 82px;
}
#carousel .swiper-wrapper {
  margin-left: -70px;
}
#carousel .swiper-slide {
  text-align: center;
  width: 128px;
  height: 80px;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
#carousel .swiper-slide a {
  display: block;
  margin: 0 auto;
  pointer-events: none;
}
#carousel .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
#carousel .swiper-slide-active {
  flex-basis: 262px;
  width: 262px;
  height: 162px;
  margin-top: -82px;
  z-index: 99;
}
#carousel .swiper-slide-active a {
  pointer-events: auto;
}
#carousel .carousel-scrollbar {
  position: relative;
  display: flex;
  width: 493px;
  height: 44px;
  margin: 25px auto;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  font-size: 22px;
  color: #fff;
  line-height: 1;
  justify-content: space-between;
  align-items: center;
}
#carousel .swiper-scrollbar {
  position: static;
  flex: 0 0 310px;
  bottom: calc(50% - 1px);
  z-index: 50;
  height: 2px;
  left: 84px;
  width: 310px;
  -ms-touch-action: none;
  background: #fff;
}
#carousel .swiper-scrollbar .ship {
  position: absolute;
  width: 42px;
  height: 25px;
  top: -8px;
  margin-left: calc(300px * var(--i) / var(--l));
  transition: all 0.2s linear;
}
#carousel .swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: 0;
  background: #001976;
  left: 0;
  top: 0;
  display: none;
}
#carousel .swiper-button-prev,
#carousel .swiper-button-next {
  position: static;
  display: flex;
  flex: 0 0 19px;
  width: 19px;
  height: 44px;
  z-index: 10;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin: 0;
}
#carousel .swiper-button-prev::after,
#carousel .swiper-button-next::after {
  display: none;
}

#container--schedule {
  margin: 202px auto 280px;
  text-align: center;
}
#container--schedule .btn-schedule {
  display: inline-block;
  width: 500px;
  transition: 0.2s ease-out;
}
#container--schedule .btn-schedule:hover {
  transform: scale(1.1) rotate(-5deg);
}

#blog-acc01 {
  position: absolute;
  width: 162px;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translateX(50%);
}
#blog-acc01 img {
  animation: spin 20s infinite linear;
  display: inline-block;
}

#blog-acc02 {
  position: absolute;
  width: 135px;
  top: -80px;
  left: -85px;
  z-index: 1;
}
#blog-acc02 img {
  animation: spin-reverse 40s infinite linear;
  display: inline-block;
}

#blog-acc03 {
  position: absolute;
  width: 69px;
  top: 37%;
  right: 0;
  transform: translate(70%, 0%);
}
#blog-acc03 img {
  animation: spin-reverse 30s infinite linear;
  display: inline-block;
}

#blog-acc04 {
  position: absolute;
  width: 98px;
  top: 42%;
  left: 0;
  transform: translate(-50%, 0%);
  opacity: 0.5;
}
#blog-acc04 img {
  animation: spin 15s infinite linear;
  display: inline-block;
}

#blog-acc05 {
  position: absolute;
  width: 135px;
  bottom: -100px;
  left: -50px;
  z-index: 1;
}
#blog-acc05 img {
  animation: spin 15s infinite linear;
  display: inline-block;
}

#blog-acc06 {
  position: absolute;
  width: 148px;
  bottom: -110px;
  right: -70px;
  z-index: 1;
}
#blog-acc06 img {
  animation: spin-reverse 20s infinite linear;
  display: inline-block;
}

#blog-top .wrap, #bottom-top .wrap {
  position: relative;
}
#blog-top .blog-top-bg, #bottom-top .blog-top-bg {
  overflow: hidden;
  position: relative;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#blog-top .blog-top-inner, #bottom-top .blog-top-inner {
  width: 1920px;
  height: 100px;
}
#blog-top .blog-top-inner img, #bottom-top .blog-top-inner img {
  width: 1920px;
  height: 100px;
  object-fit: cover;
  object-position: bottom center;
  display: block;
}

#blog-bottom .wrap {
  position: relative;
}
#blog-bottom .blog-bottom-bg {
  overflow: hidden;
  position: relative;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#blog-bottom .blog-bottom-inner {
  width: 1920px;
  height: 100px;
}
#blog-bottom .blog-bottom-inner img {
  width: 1920px;
  height: 100px;
  object-fit: cover;
  object-position: bottom center;
  display: block;
  transform: rotate(180deg);
}

#blog-contents {
  background-color: #fff;
  padding: 80px 0 74px;
  position: relative;
}
#blog-contents .wrap {
  position: relative;
}
#blog-contents .row--ttl img {
  height: 28px;
}

#blog-list {
  overflow: hidden;
}
#blog-list .blog-item {
  width: 430px;
  height: 684px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
}
#blog-list .blog-item .item {
  flex: 0 0 203px;
  height: 330px;
  color: #121212;
  display: block;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  position: relative;
}
#blog-list .blog-item .item .img {
  height: 152px;
  overflow: hidden;
  display: block;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
#blog-list .blog-item .item .img img {
  border-radius: 10px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
#blog-list .blog-item .item .date {
  display: block;
  line-height: 1;
  font-size: 16px;
  color: #8D8D8D;
  margin: 12px 0 2px 0;
}
#blog-list .blog-item .item .ttl {
  display: block;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 5px;
}
#blog-list .blog-item .item .txt {
  display: block;
  text-align: justify;
}
#blog-list .blog-item .item.x2 {
  flex: 0 0 430px;
}
#blog-list .blog-item .item.x2 .img {
  height: 212px;
}
#blog-list .blog-item .item:hover {
  box-shadow: 7px 7px 0px rgba(0, 25, 118, 0.15);
}
#blog-list .blog-scrollbar {
  width: 420px;
  position: relative;
  margin: 40px auto 64px;
}
#blog-list .swiper-scrollbar {
  position: absolute;
  bottom: -1px;
  z-index: 50;
  height: 4px;
  left: 43px;
  width: calc(100% - 86px);
  -ms-touch-action: none;
  background: rgba(0, 25, 118, 0.15);
}
#blog-list .swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: 0;
  background: #001976;
  left: 0;
  top: 0;
}
#blog-list .swiper-button-prev,
#blog-list .swiper-button-next {
  position: absolute;
  width: 19px;
  height: 42px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
#blog-list .swiper-button-prev::after,
#blog-list .swiper-button-next::after {
  display: none;
}
#blog-list .btn-block {
  padding: 60px 0 8px;
  position: relative;
  z-index: 2;
}
#blog-list .btn-block .btn2twitter {
  background: #fff;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #121212;
  width: 420px;
  height: 78px;
  padding: 0 30px;
  border: 2px solid #1DA1F2;
  font-size: 20px;
  line-height: 1;
  box-shadow: 8px 8px 0 #D7F0FF;
  transition: all 0.2s ease-in-out;
}
#blog-list .btn-block .btn2twitter .logo-twitter {
  flex: 0 0 38px;
  width: 38px;
  fill: #1da1f2;
  transition: all 0.2s ease-in-out;
}
#blog-list .btn-block .btn2twitter .logo-twitter .twitter-blue {
  fill: #1da1f2;
  transition: all 0.2s ease-in-out;
}
#blog-list .btn-block .btn2twitter .icon-arrow {
  flex: 0 0 18px;
  width: 18px;
  stroke: #121212;
  transition: all 0.2s ease-in-out;
}
#blog-list .btn-block .btn2twitter:hover {
  box-shadow: 0 0 #D7F0FF;
  background-color: #1DA1F2;
  color: #fff;
}
#blog-list .btn-block .btn2twitter:hover .logo-twitter {
  fill: #fff;
}
#blog-list .btn-block .btn2twitter:hover .icon-arrow {
  stroke: #fff;
}

#bg-blue-top {
  position: relative;
  z-index: 1;
  height: 10.65vw;
  margin-top: 355px;
}
#bg-blue-top .acc-box {
  position: absolute;
  width: 100%;
  height: 15vw;
}
#bg-blue-top .acc-box .wrap {
  height: 15vw;
  position: relative;
}
#bg-blue-top .top-bg {
  height: 10.65vw;
  width: 100vw;
  position: absolute;
}
#bg-blue-top .top-bg .bg1 {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10.65vw;
  z-index: 1;
  background: #001976;
  transform: skew(0, -6deg);
  transform-origin: right top;
}
#bg-blue-top .top-bg .bg2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 11vw;
  z-index: 1;
  background: #001976;
  transform: skew(0, -6deg);
  border-top: 2px solid #fff;
  transform-origin: right top;
}

#bg-blue-bottom {
  position: relative;
  background: #001976;
  height: 10.5vw;
  transform: skew(0, -6deg);
  transform-origin: left bottom;
  z-index: 1;
}

#bg-blue {
  background-color: #001976;
  position: relative;
  z-index: 2;
}

#topics-acc01 {
  position: absolute;
  top: 100px;
}
#topics-acc01 img {
  width: 150px;
  display: block;
}

#topics-acc02 {
  position: absolute;
  z-index: 22;
  top: -6vw;
  right: 0;
}
#topics-acc02 img {
  width: 115px;
  display: block;
}

#container--topics {
  padding: 30px 0;
}
#container--topics .wrap {
  position: relative;
}
#container--topics .row--ttl img {
  height: 33px;
}
#container--topics .topics-items {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-flow: row wrap;
}
#container--topics .topics-items .item {
  flex: 0 0 236px;
  gap: 18px;
  position: relative;
  margin-bottom: 18px;
}
#container--topics .topics-items .item a {
  display: block;
  background: #fff;
  color: #121212;
  height: 100%;
  transition: all 0.2s ease-in-out;
}
#container--topics .topics-items .item a .img {
  display: block;
  height: 134px;
  margin-bottom: 12px;
}
#container--topics .topics-items .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#container--topics .topics-items .item a .ttl {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  margin: 0 12px 9px;
  background-color: #001976;
  text-align: center;
  line-height: 1;
  padding: 5px 10px;
}
#container--topics .topics-items .item a .ttl.t2 {
  background-color: #FF8C00;
}
#container--topics .topics-items .item a .ttl.t3 {
  background-color: #DF1700;
}
#container--topics .topics-items .item a .schedule {
  display: flex;
  margin: 0 12px 9px;
  align-items: center;
  justify-content: flex-start;
}
#container--topics .topics-items .item a .schedule .icon-cal {
  width: 17px;
  height: 18px;
  margin-right: 8px;
}
#container--topics .topics-items .item a .schedule .date {
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
}
#container--topics .topics-items .item a .txt {
  display: block;
  text-align: justify;
  margin: 0 12px;
  padding-bottom: 18px;
}
#container--topics .topics-items .item a:hover {
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.5);
}
#container--topics .topics-items .item.flg-up::after {
  content: url("/img/top/topics_update.svg");
  display: block;
  position: absolute;
  top: -14px;
  right: -12px;
  pointer-events: none;
  width: 30px;
  height: 36px;
}
#container--topics .btn-block {
  margin-top: 22px;
  padding-bottom: 40px;
}

#topics-acc03 {
  position: absolute;
  z-index: 4;
  bottom: -150px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 160px;
  height: 160px;
}
#topics-acc03 img {
  width: 160px;
  display: block;
}

#ticket-top {
  position: relative;
  z-index: 1;
  background: #F5F5F5;
  height: 10.5vw;
  transform: skew(0, -6deg);
  transform-origin: right top;
}

#ticket-bottom {
  position: relative;
  background: #F5F5F5;
  height: 10.5vw;
  transform: skew(0, -6deg);
  transform-origin: left bottom;
  z-index: 1;
}

#ticket--container {
  position: relative;
  background: #F5F5F5;
  padding: 80px 0;
  z-index: 2;
}
#ticket--container .row--ttl img {
  height: 23px;
}

#ticket-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 26px;
}
#ticket-list .item {
  width: 316px;
  border-radius: 10px;
  background-color: #F7F7F7;
  box-shadow: -3px -3px 6px #fff, 3px 3px 6px rgba(0, 0, 0, 0.11);
  transition: all 0.2s ease-in-out;
}
#ticket-list .item a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 24px 24px;
  color: #121212;
  position: relative;
  height: 100%;
}
#ticket-list .item a .img {
  flex: 0 0 239px;
  display: block;
  text-align: center;
  width: 239px;
  height: 239px;
  margin: 0 auto 12px;
}
#ticket-list .item a .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#ticket-list .item a .ttl {
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.02em;
  flex: 1 1 auto;
}
#ticket-list .item a .date {
  flex: 0 0 1em;
  margin-top: 1em;
  align-self: flex-end;
  color: #8D8D8D;
}
#ticket-list .item:hover {
  box-shadow: -3px -3px 0 #fff, 4px 4px 8px rgba(0, 0, 0, 0.5);
}

#present--container {
  padding: 80px 0;
}
#present--container .row--ttl img {
  height: 31px;
}

#present-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 40px 16px;
  padding-bottom: 60px;
}
#present-list .item {
  flex: 0 0 238px;
  background-color: #fff;
  border-radius: 150px 150px 20px 20px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
#present-list .item a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px;
  position: relative;
  color: #121212;
  height: 100%;
}
#present-list .item a .img {
  flex: 0 0 174px;
  display: block;
  border-radius: 150px 150px 0 0;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 8px;
}
#present-list .item a .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#present-list .item a .ttl {
  display: block;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.22;
  margin-bottom: 17px;
}
#present-list .item a .txt {
  display: block;
  text-align: justify;
  flex: 1 1 auto;
}
#present-list .item a .date {
  flex: 0 0 1em;
  align-self: flex-end;
  display: block;
  margin-top: 1em;
  line-height: 1;
  font-size: 14px;
  color: #8D8D8D;
}
#present-list .item:nth-child(2n) {
  margin: 60px 0 -60px;
}
#present-list .item:hover {
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.5);
}

#news-top {
  height: 30px;
  background: url("/img/top/bg-dot-top.png") repeat-x;
  margin-top: 300px;
}

#news-bottom {
  height: 30px;
  background: url("/img/top/bg-dot-bottom.png") repeat-x;
}

#news--container .row--ttl img {
  height: 26px;
}
#news--container .row--ttl .link {
  display: none;
}

#news-content {
  background-color: #fff;
  padding: 80px 0;
}
#news-content .btn-block {
  margin-top: 24px;
  padding-bottom: 8px;
}

#news-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
#news-list .item {
  flex: 0 0 484px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #d8d8d8;
  transition: all 0.2s ease-in-out;
}
#news-list .item a {
  display: flex;
  width: 100%;
  height: 140px;
  color: #121212;
  justify-content: flex-start;
  align-items: stretch;
  transition: all 0.2s ease-in-out;
}
#news-list .item a .img {
  flex: 0 0 140px;
  margin-right: 24px;
}
#news-list .item a .col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#news-list .item a .col .date {
  display: block;
  font-size: 14px;
  color: #8D8D8D;
}
#news-list .item a .col .txt {
  flex: 1 1 auto;
  text-align: justify;
}
#news-list .item a .col .src {
  flex: 0 0 1em;
  align-self: flex-end;
  font-size: 14px;
  color: #8D8D8D;
}
#news-list .item a:hover {
  background-color: rgba(0, 25, 118, 0.1);
}

#news-list-sp {
  display: none;
}

#notice--container {
  padding-top: 80px;
}
#notice--container .row--ttl img {
  height: 20px;
}
#notice--container .btn-block {
  margin-top: 40px;
}

#notice-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
#notice-list .item {
  flex: 0 0 484px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #d8d8d8;
  transition: all 0.2s ease-in-out;
}
#notice-list .item a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  color: #121212;
  transition: all 0.2s ease-in-out;
}
#notice-list .item a .date {
  display: block;
  font-size: 14px;
  color: #8D8D8D;
  align-self: flex-end;
  margin-top: 25px;
}
#notice-list .item a .txt {
  flex: 1 1 auto;
  text-align: justify;
  font-size: 14px;
}
#notice-list .item a:hover {
  background-color: rgba(0, 25, 118, 0.1);
}

#press--container {
  padding-top: 80px;
}
#press--container .row--ttl img {
  height: 30px;
}
#press--container .btn-block {
  margin-top: 40px;
}

#press-list .item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #d8d8d8;
  transition: all 0.2s ease-in-out;
}
#press-list .item a {
  display: flex;
  width: 100%;
  color: #121212;
  justify-content: flex-start;
  align-items: stretch;
  transition: all 0.2s ease-in-out;
}
#press-list .item a .img {
  flex: 0 0 160px;
  margin-right: 24px;
}
#press-list .item a .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}
#press-list .item a .col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#press-list .item a .col .date {
  display: block;
  font-size: 14px;
  color: #8D8D8D;
  flex: 0 0 1em;
  line-height: 1em;
  align-self: flex-end;
}
#press-list .item a .col .txt {
  flex: 1 1 auto;
  text-align: justify;
}
#press-list .item a:hover {
  background-color: rgba(0, 25, 118, 0.1);
}

#twitter--container {
  padding-top: 80px;
  width: 440px;
  margin: 0 auto;
}
#twitter--container .ttl-twitter {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
#twitter--container .ttl-twitter .img {
  height: 53px;
  margin-right: 12px;
}
#twitter--container .ttl-twitter .img img {
  height: 100%;
  display: block;
}
#twitter--container .ttl-twitter .txt {
  font-size: 21px;
  line-height: 1;
}
#twitter--container .twitter-content {
  overflow: hidden;
  border: 1px solid #d5d5d5;
  padding: 0 20px;
}
#twitter--container .twitter-content .inner {
  margin-top: -45px;
}

#bottom-links--container {
  padding-top: 80px;
}
#bottom-links--container .bottom-links-00 {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}
#bottom-links--container .bottom-links-00 .item {
  flex: 0 0 486px;
}
#bottom-links--container .bottom-links-00 .item a {
  display: block;
}
#bottom-links--container .bottom-links-00 .item a img {
  display: block;
  width: 100%;
}
#bottom-links--container .bottom-links-01 {
  margin: 40px -24px 0;
  background-color: #F5F5F5;
  padding: 24px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px 26.66px;
}
#bottom-links--container .bottom-links-01 .item {
  flex: 0 0 230px;
}
#bottom-links--container .bottom-links-01 .item a {
  display: block;
}
#bottom-links--container .bottom-links-01 .item a img {
  display: block;
  width: 100%;
}
#bottom-links--container .bottom-links-02 {
  margin-top: 40px;
  padding-bottom: 10px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px 26.66px;
}
#bottom-links--container .bottom-links-02 .item {
  flex: 0 0 230px;
}
#bottom-links--container .bottom-links-02 .item a {
  display: block;
}
#bottom-links--container .bottom-links-02 .item a img {
  display: block;
  width: 100%;
}
#bottom-links--container a {
  position: relative;
  z-index: 1;
}
#bottom-links--container a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #001976;
  transition: all 0.2s ease-in-out;
}
#bottom-links--container a:hover::after {
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
}

#bottom-top {
  margin-top: 300px;
}

#bottom--container {
  background: #fff;
}

#container.top footer {
  background: #fff;
}

@media screen and (min-width: 1920px) {
  #blog-top, #bottom-top {
    height: auto;
    display: block;
  }
  #blog-top .blog-top-bg, #bottom-top .blog-top-bg {
    height: auto;
  }
  #blog-top .blog-top-inner, #bottom-top .blog-top-inner {
    width: 100vw;
    height: auto;
  }
  #blog-top .blog-top-inner img, #bottom-top .blog-top-inner img {
    width: 100%;
    height: auto;
  }

  #blog-bottom {
    height: auto;
    display: block;
  }
  #blog-bottom .blog-bottom-bg {
    height: auto;
  }
  #blog-bottom .blog-bottom-inner {
    width: 100vw;
    height: auto;
  }
  #blog-bottom .blog-bottom-inner img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .btn-01 {
    padding: 9px 8px;
    font-size: 14px;
  }
  .btn-01::after {
    width: 14px;
    height: 5px;
    right: 8px;
    bottom: 9px;
  }
  .btn-01::before {
    transform: translate(4px, 4px);
  }

  .btn-02 {
    font-size: 14px;
    padding: 9px 20px;
  }
  .btn-02::after {
    width: 14px;
    height: 5px;
    margin-left: 4px;
  }

  .btn-03, .btn-04, .btn-05 {
    width: 49.8666666667vw;
    height: 14.9333333333vw;
    font-size: 4.2666666667vw;
    box-shadow: 1.8666666667vw 1.8666666667vw 0 rgba(255, 255, 255, 0.5);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .btn-03::after, .btn-04::after, .btn-05::after {
    width: 4.2666666667vw;
    height: 2.1333333333vw;
    margin-top: 2.1333333333vw;
    margin-left: 2.1333333333vw;
  }

  .btn-04, .btn-05 {
    width: 49.8666666667vw;
    height: 14.9333333333vw;
    font-size: 4.2666666667vw;
    box-shadow: 1.8666666667vw 1.8666666667vw 0 rgba(0, 25, 118, 0.5);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #001976;
  }
  .btn-04::after, .btn-05::after {
    width: 4.2666666667vw;
    height: 2.1333333333vw;
    margin-top: 2.1333333333vw;
    margin-left: 2.1333333333vw;
  }

  .btn-05 {
    background-color: #001976;
    color: #fff;
  }
  .btn-05::after {
    border-color: #fff;
  }

  .row--ttl.ttl-b,
.row--ttl.ttl-w {
    margin-bottom: 32px;
  }
  .row--ttl.ttl-b .ttl-container,
.row--ttl.ttl-w .ttl-container {
    margin-left: -20px;
    padding-left: 20px;
  }
  .row--ttl.ttl-b .ttl-container .img,
.row--ttl.ttl-w .ttl-container .img {
    width: 40px;
    height: 40px;
  }
  .row--ttl.ttl-b .ttl-container .img img,
.row--ttl.ttl-w .ttl-container .img img {
    height: 25px;
  }
  .row--ttl.ttl-b .ttl-container .txt,
.row--ttl.ttl-w .ttl-container .txt {
    padding: 0 8px;
    font-size: 24px;
  }
  .row--ttl.ttl-b .link,
.row--ttl.ttl-w .link {
    align-self: center;
    font-size: 14px;
  }
  .row--ttl.ttl-b .link::after,
.row--ttl.ttl-w .link::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    width: 17px;
    height: 8px;
  }

  .ttl-top {
    font-size: 18px;
  }
  .ttl-top .ttl-icon {
    flex: 0 0 25px;
    width: 25px;
    margin-right: 8px;
  }

  #playing {
    float: none;
    padding-top: 28px;
    margin-right: -20px;
    width: auto;
  }
  #playing .row--playing {
    margin-bottom: 3px;
  }
  #playing .row--playing .txt {
    flex: 1 1 auto;
  }
  #playing .row--playing .form-content {
    flex: 0 0 116px;
    height: 24px;
    transition: all 0.2s ease-in-out;
    margin-right: 20px;
  }
  #playing .row--playing .form-content input {
    background-color: rgba(255, 255, 255, 0.25);
    padding: 5px 25px 5px 8px;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    width: 116px;
  }
  #playing .row--playing .form-content input:focus {
    width: 170px;
  }
  #playing .row--playing #song-search {
    display: flex;
  }
  #playing .row--playing #song-search .submit {
    width: 30px;
    right: 0;
    top: 3px;
    bottom: 0;
    margin: auto;
    height: 19px;
    padding: 0;
  }

  #playing-info {
    height: 32px;
    padding: 7px 8px;
  }
  #playing-info .time {
    padding: 0 4px;
    margin-right: 8px;
    font-size: 12px;
  }
  #playing-info .txt {
    font-size: 14px;
  }

  #on-air--container .ttl-on-air {
    height: 159px;
  }

  #on-air--contents .ttl-top .txt {
    margin-bottom: 8px;
  }
  #on-air--contents .row--ttl {
    background: #001976;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.025em;
    line-height: 1.45;
    padding: 12px 20px;
    display: inline-block;
    margin: 0 0 8px -20px;
  }
  #on-air--contents .row--time {
    font-size: 14px;
    padding: 9px 20px;
    margin: 0 0 8px -20px;
  }
  #on-air--contents .row--name {
    gap: 8px;
    margin: 0 0 8px -20px;
  }
  #on-air--contents .row-link {
    width: auto;
    margin: 0 auto 18px;
    display: flex;
    justify-content: center;
  }
  #on-air--contents .row-link .row-link-inner {
    width: calc(100vw - 40px);
    flex-basis: calc(100vw - 96px);
    display: flex;
    justify-content: space-between;
  }
  #on-air--contents .row-link .row-link-inner .item {
    flex: 0 0 48%;
  }
  #on-air--contents .row-link .btn-radiko {
    padding: 9px 8px;
    font-size: 14px;
  }
  #on-air--contents .row-link .btn-radiko svg {
    width: 20px;
    margin-right: 9px;
  }
  #on-air--contents .row-link .btn-radiko::after {
    content: "";
    display: block;
    position: absolute;
    width: 14px;
    height: 5px;
    right: 8px;
    bottom: 9px;
  }
  #on-air--contents .row-link .btn-radiko::before {
    transform: translate(4px, 4px);
  }
  #on-air--contents .on-air-item .prog-time,
#on-air--contents .on-air-item .prog-ttl {
    margin-left: -20px;
    padding-left: 20px;
  }

  #carousel {
    margin: 24px -20px 0;
  }
  #carousel .carousel-bg {
    height: 62px;
    top: 37px;
  }
  #carousel .carousel-swiper {
    padding-top: 45px;
  }
  #carousel .swiper-wrapper {
    margin-left: -40px;
  }
  #carousel .swiper-slide {
    width: 72px;
    height: 45px;
  }
  #carousel .swiper-slide-active {
    flex-basis: 148px;
    width: 148px;
    height: 92px;
    margin-top: -47px;
  }
  #carousel .carousel-scrollbar {
    width: 100vw;
    height: 31px;
    margin: 25px 0 0;
    font-size: 14px;
  }
  #carousel .carousel-scrollbar .txt {
    flex: 0 0 56px;
    text-align: center;
  }
  #carousel .swiper-scrollbar {
    position: static;
    flex: 0 0 calc(100vw - 160px);
    bottom: calc(50% - 1px);
    z-index: 50;
    height: 2px;
    left: 78px;
    width: calc(100vw - 160px);
  }
  #carousel .swiper-scrollbar .ship {
    width: 30px;
    height: 18px;
    top: -8px;
    margin-left: calc((100vw - 155px) * var(--i) / var(--l));
  }
  #carousel .swiper-button-prev,
#carousel .swiper-button-next {
    flex: 1 1 12px;
    width: 12px;
    height: 31px;
  }
  #carousel .swiper-button-prev img,
#carousel .swiper-button-next img {
    width: 12px;
    display: block;
    margin: 0 auto;
  }

  #container--schedule {
    margin: 120px auto 160px;
  }
  #container--schedule .btn-schedule {
    width: 100%;
  }

  #blog-acc01 {
    width: 135px;
    top: -44px;
    right: -40px;
    transform: translateX(0);
  }

  #blog-acc02 {
    width: 112px;
    top: -66px;
    left: -58px;
  }

  #blog-acc03 {
    position: absolute;
    width: 69px;
    top: 37%;
    right: 0;
    transform: translate(70%, 0%);
  }
  #blog-acc03 img {
    animation: spin-reverse 30s infinite linear;
    display: inline-block;
  }

  #blog-acc04 {
    position: absolute;
    width: 98px;
    top: 42%;
    left: 0;
    transform: translate(-50%, 0%);
    opacity: 0.5;
  }
  #blog-acc04 img {
    animation: spin 15s infinite linear;
    display: inline-block;
  }

  #blog-acc05 {
    width: 113px;
    bottom: -72px;
    left: -28;
  }

  #blog-acc06 {
    width: 124px;
    bottom: -50px;
    right: -50px;
  }

  #blog-top .blog-top-bg, #bottom-top .blog-top-bg {
    height: auto;
    display: block;
  }
  #blog-top .blog-top-inner, #bottom-top .blog-top-inner {
    width: auto;
    height: auto;
  }
  #blog-top .blog-top-inner img, #bottom-top .blog-top-inner img {
    width: 100%;
    height: auto;
  }

  #blog-bottom {
    z-index: 1;
    position: relative;
    margin-top: -1px;
  }
  #blog-bottom .blog-bottom-bg {
    height: auto;
    display: block;
  }
  #blog-bottom .blog-bottom-inner {
    width: auto;
    height: auto;
  }
  #blog-bottom .blog-bottom-inner img {
    width: 100%;
    height: auto;
  }

  #blog-contents {
    background-color: #fff;
    padding: 85px 0;
  }
  #blog-contents .row--ttl img {
    height: 23px;
  }

  #blog-list {
    width: 100vw;
    margin-left: -20px;
  }
  #blog-list .blog-items {
    margin: 0 -20px 0 20px;
  }
  #blog-list .blog-item {
    width: 310px;
    height: auto;
    display: flex;
  }
  #blog-list .blog-item .item {
    flex: 0 0 147px;
    min-height: 282px;
    height: auto;
    margin-bottom: 16px;
  }
  #blog-list .blog-item .item .img {
    height: 110px;
  }
  #blog-list .blog-item .item .date {
    font-size: 13px;
    margin: 10px 0 5px 0;
  }
  #blog-list .blog-item .item .ttl {
    display: block;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
  }
  #blog-list .blog-item .item .txt {
    font-size: 14px;
    line-height: 1.4;
  }
  #blog-list .blog-item .item.x2 {
    flex: 0 0 310px;
  }
  #blog-list .blog-item .item.x2 .img {
    height: 153px;
  }
  #blog-list .blog-item .item:hover {
    box-shadow: 4px 4px 0 rgba(0, 25, 118, 0.15);
  }
  #blog-list .blog-scrollbar {
    width: calc(100vw - 40px);
    height: 31px;
    position: relative;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #blog-list .swiper-scrollbar {
    position: static;
    z-index: 50;
    height: 4px;
    left: 0;
    right: 0;
    width: calc(100% - 68px);
    -ms-touch-action: none;
    background: rgba(0, 25, 118, 0.15);
  }
  #blog-list .swiper-button-prev,
#blog-list .swiper-button-next {
    position: static;
    margin: 0;
    width: 14px;
    height: 31px;
  }
  #blog-list .btn-block {
    padding: 56px 0 4px;
    position: relative;
    z-index: 1;
  }
  #blog-list .btn-block .btn2twitter {
    width: calc(100vw - 40px);
    height: 56px;
    padding: 0 24px;
    font-size: 16px;
    box-shadow: 4px 4px 0 #D7F0FF;
  }
  #blog-list .btn-block .btn2twitter .logo-twitter {
    flex: 0 0 32px;
    width: 32px;
  }
  #blog-list .btn-block .btn2twitter .icon-arrow {
    flex: 0 0 15px;
    width: 15px;
  }

  #bg-blue-top {
    height: 21.3333333333vw;
  }
  #bg-blue-top .acc-box {
    height: calc(21.3333333333vw + 80px);
  }
  #bg-blue-top .acc-box .wrap {
    height: calc(21.3333333333vw + 80px);
  }
  #bg-blue-top .top-bg {
    height: 21.3333333333vw;
  }
  #bg-blue-top .top-bg .bg1 {
    top: -8px;
    height: 21.3333333333vw;
  }
  #bg-blue-top .top-bg .bg2 {
    height: 22vw;
  }

  #bg-blue-bottom {
    height: 21.3333333333vw;
  }

  #topics-acc01 {
    top: 50px;
    left: -45px;
  }
  #topics-acc01 img {
    width: 124px;
  }

  #topics-acc02 {
    top: -100px;
    right: -30px;
  }
  #topics-acc02 img {
    width: 75px;
  }

  #container--topics .row--ttl img {
    height: 27px;
  }
  #container--topics .topics-items {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #container--topics .topics-items .item {
    flex: 1 1 auto;
    width: 75.7333333333vw;
    margin-left: -20px;
    gap: inherit;
    margin-bottom: 0;
  }
  #container--topics .topics-items .item + .item {
    margin-top: 36px;
  }
  #container--topics .topics-items .item a .img {
    height: 42.6666666667vw;
    margin-bottom: 4.2666666667vw;
  }
  #container--topics .topics-items .item a .ttl {
    font-size: 3.2vw;
    margin: 0 4.2666666667vw 3.2vw;
    padding: 1.6vw;
  }
  #container--topics .topics-items .item a .schedule {
    margin: 0 4.2666666667vw 3.2vw;
  }
  #container--topics .topics-items .item a .schedule .icon-cal {
    width: 4.2666666667vw;
    height: auto;
    margin-right: 1.8666666667vw;
  }
  #container--topics .topics-items .item a .schedule .date {
    font-size: 3.2vw;
  }
  #container--topics .topics-items .item a .txt {
    margin: 0 4.2666666667vw;
    padding-bottom: 8vw;
  }
  #container--topics .topics-items .item a:hover {
    box-shadow: 3.2vw 3.2vw 0 rgba(255, 255, 255, 0.5);
  }
  #container--topics .topics-items .item.flg-up::after {
    top: -6.6666666667vw;
    right: -4.8vw;
    width: 8vw;
    height: auto;
  }
  #container--topics .topics-items .item:nth-child(even) {
    align-self: flex-end;
    margin-left: auto;
    margin-right: -20px;
  }
  #container--topics .topics-items .item:nth-child(even).flg-up::after {
    right: auto;
    left: 0.8vw;
  }
  #container--topics .topics-items .item:nth-child(even) a:hover {
    box-shadow: -3.2vw 3.2vw 0 rgba(255, 255, 255, 0.5);
  }
  #container--topics .btn-block {
    margin-top: 57px;
    padding-bottom: 130px;
  }

  #topics-acc03 {
    position: absolute;
    z-index: 4;
    bottom: -22.6666666667vw;
    width: 32.2666666667vw;
    height: 32.2666666667vw;
  }
  #topics-acc03 img {
    width: 32.2666666667vw;
    display: block;
  }

  #ticket-top {
    height: 10.6666666667vw;
  }

  #ticket-bottom {
    height: 10.6666666667vw;
  }

  #ticket--container {
    padding: 54px 0;
  }
  #ticket--container .row--ttl img {
    height: 18px;
  }

  #ticket-list {
    display: block;
  }
  #ticket-list .item {
    width: calc(100vw - 40px);
    background-color: #F7F7F7;
    box-shadow: -0.8vw -0.8vw 1.6vw #fff, 0.8vw 0.8vw 1.6vw rgba(0, 0, 0, 0.11);
    margin-bottom: 32px;
  }
  #ticket-list .item a {
    display: block;
    padding: 20px 23px;
  }
  #ticket-list .item a .img {
    width: 67.4666666667vw;
    height: 67.4666666667vw;
    margin: 0 auto 8px;
  }
  #ticket-list .item a .img {
    display: block;
  }
  #ticket-list .item a .ttl {
    display: block;
    font-size: 16px;
    letter-spacing: 0;
  }
  #ticket-list .item a .date {
    display: block;
    text-align: right;
    margin-top: 18px;
  }
  #ticket-list .item:hover {
    box-shadow: -0.8vw -0.8vw 0vw #fff, 0.8vw 0.8vw 1.6vw rgba(0, 0, 0, 0.5);
  }

  #present--container {
    padding: 54px 0;
  }
  #present--container .row--ttl img {
    height: 24px;
  }

  #present-list {
    gap: 16px 15px;
    padding-bottom: 50px;
  }
  #present-list .item {
    flex: 0 0 calc((100vw - 55px) / 2);
    border-radius: 180px 180px 10px 10px;
  }
  #present-list .item a {
    display: block;
    padding: 8px 8px 29px;
  }
  #present-list .item a .img {
    height: 41.6vw;
    border-radius: 200px 200px 0 0;
  }
  #present-list .item a .ttl {
    display: block;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.23;
  }
  #present-list .item a .txt {
    display: block;
    font-size: 14px;
  }
  #present-list .item a .date {
    display: block;
    text-align: right;
    margin-top: 15px;
    font-size: 13px;
  }
  #present-list .item:nth-child(2n) {
    margin: 50px 0 -50px;
  }
  #present-list .item:hover {
    box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.5);
  }

  #news-top {
    margin-top: 320px;
  }

  #news--container .row--ttl img {
    height: 22px;
  }
  #news--container .row--ttl .link {
    display: block;
  }

  #news-content {
    padding: 54px 0;
  }
  #news-content .btn-block {
    display: none;
  }

  #news-list {
    display: none;
  }

  #news-list-sp {
    display: block;
    position: relative;
  }
  #news-list-sp .news-list-swiper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  #news-list-sp .item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #d8d8d8;
    transition: all 0.2s ease-in-out;
  }
  #news-list-sp .item a {
    display: flex;
    width: 100%;
    color: #121212;
    justify-content: flex-start;
    align-items: stretch;
    transition: all 0.2s ease-in-out;
    height: 27.2vw;
  }
  #news-list-sp .item a .img {
    flex: 0 0 27.2vw !important;
    margin-right: 12px;
  }
  #news-list-sp .item a .col {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  #news-list-sp .item a .col .date {
    display: block;
    color: #8D8D8D;
    font-size: 3.4666666667vw;
  }
  #news-list-sp .item a .col .txt {
    flex: 1 1 auto;
    text-align: justify;
    font-size: 3.7333333333vw;
  }
  #news-list-sp .item a .col .src {
    flex: 0 0 1em;
    align-self: flex-end;
    color: #8D8D8D;
    font-size: 2.9333333333vw;
  }
  #news-list-sp .item a:hover {
    background-color: rgba(0, 25, 118, 0.1);
  }
  #news-list-sp .news-scrollbar {
    width: calc(100vw - 40px);
    height: 31px;
    position: relative;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #news-list-sp .swiper-scrollbar {
    position: static;
    bottom: -1px;
    z-index: 50;
    height: 4px;
    left: 0;
    right: 0;
    width: calc(100% - 68px);
    -ms-touch-action: none;
    background: rgba(0, 25, 118, 0.15);
  }
  #news-list-sp .swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 0;
    background: #001976;
    left: 0;
    top: 0;
  }
  #news-list-sp .swiper-button-prev,
#news-list-sp .swiper-button-next {
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    margin: 0;
    width: 14px;
    height: 31px;
  }
  #news-list-sp .swiper-button-prev::after,
#news-list-sp .swiper-button-next::after {
    display: none;
  }

  #bottom-top {
    margin-top: 320px;
  }
  #bottom-top .blog-top-bg {
    height: auto;
    display: block;
  }
  #bottom-top .blog-top-inner {
    width: auto;
    height: auto;
  }
  #bottom-top .blog-top-inner img {
    width: 100%;
    height: auto;
  }

  #notice--container {
    padding-top: 54px;
  }
  #notice--container .row--ttl img {
    height: 20px;
  }
  #notice--container .btn-block {
    margin-top: 60px;
  }

  #notice-list {
    display: block;
  }
  #notice-list .item {
    margin-bottom: 9px;
    padding-bottom: 9px;
  }
  #notice-list .item a .date {
    font-size: 3.4666666667vw;
    margin-top: 4.8vw;
  }
  #notice-list .item a .txt {
    font-size: 3.7333333333vw;
  }

  #press--container {
    padding-top: 100px;
  }
  #press--container .row--ttl img {
    height: 22px;
  }
  #press--container .btn-block {
    margin-top: 64px;
  }

  #press-list .item a .img {
    flex: 0 0 29.3333333333vw;
    margin-right: 16px;
  }
  #press-list .item a .col .date {
    font-size: 3.4666666667vw;
    color: #8D8D8D;
    margin-top: 18px;
  }
  #press-list .item a .col .txt {
    font-size: 3.7333333333vw;
  }

  #twitter--container {
    padding-top: 90px;
    width: calc(100vw - 40px);
    max-width: 440px;
    margin: 0 auto;
  }
  #twitter--container .ttl-twitter {
    margin-bottom: 8px;
  }
  #twitter--container .ttl-twitter .img {
    height: 40px;
    margin-right: 8px;
  }
  #twitter--container .ttl-twitter .txt {
    font-size: 16px;
  }
  #twitter--container .twitter-content {
    padding: 0 15px;
  }
  #twitter--container .twitter-content .inner {
    margin-top: -45px;
  }

  #bottom-links--container {
    padding-bottom: 1px;
  }
  #bottom-links--container .bottom-links-00 {
    justify-content: center;
    gap: 1.8133333333vw 0;
  }
  #bottom-links--container .bottom-links-00 .item {
    flex: 0 0 100%;
  }
  #bottom-links--container .bottom-links-01 {
    margin: 40px -20px 0;
    padding: 16px 20px;
    gap: 1.8133333333vw 2%;
  }
  #bottom-links--container .bottom-links-01 .item {
    flex: 0 0 49%;
  }
  #bottom-links--container .bottom-links-02 {
    gap: 1.8133333333vw 2%;
  }
  #bottom-links--container .bottom-links-02 .item {
    flex: 0 0 49%;
  }

  footer {
    margin-top: -1px;
    padding-top: 51px;
  }
}