@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  /* color */
  --base-color: #fff;
  --main-color: #000;
  --accent-color: #192c79;
}

/* -- FOUNDATION -- */
html {
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: var(--main-color);
  line-height: 1;
  font-feature-settings: "palt";
  background: url(../img/bg_cloud.png);
  background-size: 2000px;
  background-repeat: no-repeat;
  background-position: top center;
}

@media (max-width:768px) {
  body {
    font-size: 3.733vw;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--main-color);
  transition: 0.2s;
}

@media (min-width:769px) {
  a:hover {
    opacity: 0.7;
  }
}
/* -- LAYOUT -- */
.toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  margin: 0;
  padding: 0;
  width: 114px;
  height: 114px;
  border: none;
  background: var(--accent-color);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.toggle > span, .toggle:before, .toggle:after {
  display: block;
  position: absolute;
  top: 27px;
  right: 16px;
  width: 38px;
  height: 2px;
  background-color: #fff;
}
.toggle > span {
  transition: opacity 0.3s ease;
  will-change: opacity;
}
.toggle::before, .toggle::after {
  content: "";
  transition: background-color 0.3s ease;
}
.toggle::before {
  transform: translateY(-8px);
}
.toggle::after {
  transform: translateY(8px);
}
.toggle[aria-expanded=true] > span {
  opacity: 0;
}
.toggle[aria-expanded=true]::before, .toggle[aria-expanded=true]::after {
  background-color: white;
}
.toggle[aria-expanded=true]::before {
  animation: 0.3s ease closeBar1 forwards;
}
.toggle[aria-expanded=true]::after {
  animation: 0.3s ease closeBar2 forwards;
}
.toggle.-close::before {
  animation: 0.3s ease closeBar1Rev forwards;
}
.toggle.-close::after {
  animation: 0.3s ease closeBar2Rev forwards;
}

@media (max-width:768px) {
  .toggle {
    width: 20vw;
    height: 20vw;
  }
  .toggle > span, .toggle:before, .toggle:after {
    top: 4.667vw;
    right: 2.8vw;
    width: 6.56vw;
    height: 0.459vw;
    background-color: #fff;
  }
  .toggle[aria-expanded=true]::before {
    transform: translateY(-1.333vw);
  }
  .toggle[aria-expanded=true]::after {
    transform: translateY(1.333vw);
  }
}
.humnav {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--accent-color);
  color: black;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.humnav[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.humnav[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

@media (max-width:768px) {
  .humnav {
    display: block;
  }
}
.menu li {
  position: relative;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: calc(1em + 0.5rem);
}
.menu li:hover {
  opacity: 0.7;
  transition: 0.2s;
}
.menu li a {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
}
.menu li a:hover {
  opacity: 1;
}
.menu li + li {
  margin-top: 60px;
}

@media (max-width:768px) {
  .menu {
    width: 320px;
    max-width: 90vw;
    margin: 0 auto;
    padding-left: 0;
  }
  .menu li a {
    font-size: 16px;
  }
  .menu li img {
    top: -4px;
    left: 0;
    width: 23px;
    height: 26px;
    content: "";
  }
  .menu li + li {
    margin-top: 25px;
  }
}
@keyframes closeBar1 {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes closeBar2 {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes closeBar1Rev {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes closeBar2Rev {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(10px);
  }
}
.header {
  padding-top: 107px;
  padding-bottom: 205px;
  background: url(../img/bg_city.png);
  background-size: 1977px;
  background-repeat: repeat-x;
  background-position: bottom center;
  box-sizing: border-box;
}

.header_logo {
  width: 655px;
  margin: 0 auto;
}

.header_lead {
  width: 705px;
  margin: 90px auto 0;
}

@media (max-width:768px) {
  .header {
    padding-top: 14.933vw;
    padding-bottom: 28.4vw;
    background: url(../img/sp/bg_city.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    box-sizing: border-box;
  }
  .header_logo {
    width: 68.4vw;
  }
  .header_lead {
    width: 88.48vw;
    margin: 12.533vw auto 0;
  }
}
.main {
  padding-bottom: 160px;
  background: url(../img/bg_city.png);
  background-size: 1977px;
  background-repeat: repeat-x;
  background-position: bottom center;
  box-sizing: border-box;
}

@media (max-width:768px) {
  .main {
    padding-bottom: 25vw;
    background: url(../img/sp/bg_city.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    box-sizing: border-box;
  }
}
.kv {
  text-align: center;
}

.kv_img {
  display: block;
  width: 1100px;
  margin: 0 auto;
}

@media (max-width:768px) {
  .kv_img {
    width: 100%;
  }
}
.programBnr {
  display: block;
  width: 1000px;
  max-width: 100%;
  margin: 30px auto 0;
}

@media (max-width:768px) {
  .programBnr {
    width: 92vw;
    margin: 6vw auto 0;
  }
}
.present {
  margin: 45px auto 0;
}

.present_heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: 65px auto 0;
  padding-bottom: 30px;
  color: #172c78;
  font-size: min(28px, 3.2vw);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  background: url(../img/border_tri.png);
  background-size: contain;
  background-repeat: repeat-x;
  background-position: bottom center;
}
.present_heading .bold {
  font-weight: 700;
}

.present_container {
  padding: 0 30px 60px;
}

.present_dateBox {
  display: flex;
  justify-content: center;
  align-items: start;
  margin-top: 20px;
}

.present_date {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 41px;
  padding: 12px 25px;
  color: var(--accent-color);
  box-sizing: border-box;
  background: #fff;
  border-radius: 20.5px;
  border: 2px dotted var(--accent-color);
}

.present_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 742px;
  margin: -30px auto 0;
}

.present_txt {
  width: 460px;
  margin-right: 40px;
  line-height: 1.8;
}

.present_image {
  width: 236px;
}

.present_btn {
  margin: 8px auto 0;
  transition: 0.2s;
  cursor: pointer;
}
.present_btn:hover {
  opacity: 0.7;
}

@media (max-width:768px) {
  .present {
    margin: 6.133vw auto 0;
  }
  .present_heading {
    margin: 8.8vw auto 0;
    padding-bottom: 6.133vw;
    color: #172c78;
    font-size: 4.308vw;
    line-height: 1.5;
    background: url(../img/border_tri.png);
    background-size: contain;
    background-repeat: repeat-x;
    background-position: bottom center;
  }
  .present_heading .bold {
    font-weight: 700;
  }
  .present_container {
    padding: 0 4vw 4.667vw;
  }
  .present_dateBox {
    margin-top: 4.4vw;
  }
  .present_date {
    height: 6.533vw;
    font-size: 2.933vw;
    padding: 1.867vw 2.933vw;
    border-radius: 3.267vw;
    border: 0.267vw dotted var(--accent-color);
  }
  .present_inner {
    flex-flow: column;
    max-width: 100%;
    margin: 6.667vw auto 0;
  }
  .present_txt {
    width: 100%;
    margin-right: 0;
    line-height: 1.8;
  }
  .present_image {
    margin-top: 3.733vw;
    width: 51.6vw;
  }
  .present_btn {
    margin: 4.533vw auto 0;
  }
}
.modaal-container {
  background: transparent;
  box-shadow: none;
}

.modaal-content-container {
  padding: 0;
}

.modal_container {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: wrap;
  gap: 28px 3.2%;
  width: 900px;
  max-width: 100%;
  margin: 15px auto 0;
}

.modaal-inner-wrapper {
  padding: 60px 0 0;
}

.modaal-close-present {
  position: absolute;
  top: -65px;
  right: 0;
  width: 40px;
  cursor: pointer;
}

@media (max-width:768px) {
  .modaal-close-present {
    position: absolute;
    top: -50px;
    right: 0;
    width: 30px;
  }
}
.modal_box {
  width: 31.2%;
}

.modal_name {
  padding: 15px 0 5px;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 2px dotted #000;
}
.modal_name .small {
  font-size: 0.85em;
}

.modal_time {
  padding-top: 5px;
  font-size: 13px;
}

@media (max-width:768px) {
  .modal_container {
    flex-flow: column;
  }
  .modal_box {
    width: 100%;
  }
  .modal_name {
    padding: 2vw 0 0.667vw;
    font-size: 3vw;
    font-weight: 700;
    border-bottom: 2px dotted #000;
  }
  .modal_time {
    padding-top: 0.667vw;
    font-size: 3vw;
  }
}
.episode {
  margin: 45px auto 0;
}

.episode_heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: 75px auto 0;
  padding-bottom: 30px;
  color: #172c78;
  font-size: min(28px, 3.2vw);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  background: url(../img/border_tri.png);
  background-size: contain;
  background-repeat: repeat-x;
  background-position: bottom center;
}
.episode_heading .bold {
  font-weight: 700;
}

.episode_container {
  padding-bottom: 55px;
}

.episode_dateBox {
  display: flex;
  justify-content: center;
  align-items: start;
  margin-top: 20px;
}

.episode_date {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 41px;
  padding: 12px 25px;
  color: var(--accent-color);
  box-sizing: border-box;
  background: #fff;
  border-radius: 20.5px;
  border: 2px dotted var(--accent-color);
}

.episode_date + .episode_date {
  margin-left: 10px;
}

.episode_txt {
  margin: 30px auto 0;
  line-height: 2;
  text-align: center;
}

.episode_inner {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: wrap;
  gap: 11px 1.16772824%;
  width: 912px;
  max-width: 95%;
  margin: 40px auto 0;
}
.episode_inner.--center {
  justify-content: center;
}

.episode_box {
  flex: 0 0 24.12%;
  display: block;
  width: 24.12%;
}

.episode_name {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  height: 35px;
  background: linear-gradient(90deg, #088ac1 0%, #602394 100%);
}
.episode_name:after {
  position: absolute;
  display: block;
  right: 4px;
  bottom: 4px;
  width: 6px;
  height: 6px;
  background: #fff;
  content: "";
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.episode_name .day {
  margin-top: 0.4em;
  margin-right: 0.4em;
  font-size: 0.67em;
}

@media (max-width:768px) {
  .episode {
    margin: 6.133vw auto 0;
  }
  .episode_heading {
    margin: 8.8vw auto 0;
    padding-bottom: 6.133vw;
    color: #172c78;
    font-size: 4.308vw;
    line-height: 1.5;
    background: url(../img/border_tri.png);
    background-size: contain;
    background-repeat: repeat-x;
    background-position: bottom center;
  }
  .episode_heading .bold {
    font-weight: 700;
  }
  .episode_container {
    padding: 0 4vw 4.667vw;
  }
  .episode_dateBox {
    margin-top: 4.4vw;
  }
  .episode_date {
    height: 6.533vw;
    font-size: 2.933vw;
    padding: 1.867vw 2.933vw;
    border-radius: 3.267vw;
    border: 0.267vw dotted var(--accent-color);
  }
  .episode_txt {
    width: 100%;
    margin: 4.4vw auto 0;
    line-height: 1.8;
    text-align: left;
  }
  .episode_inner {
    gap: 4vw 4%;
    max-width: 100%;
    margin: 4.4vw auto 0;
  }
  .episode_inner.--center {
    justify-content: center;
  }
  .episode_box {
    flex: 0 0 46%;
    width: 46%;
  }
  .episode_name {
    height: 6vw;
    font-size: 2.6vw;
    background: linear-gradient(90deg, #088ac1 0%, #602394 100%);
  }
  .episode_name:after {
    position: absolute;
    display: block;
    right: 0.533vw;
    bottom: 0.533vw;
    width: 1.333vw;
    height: 1.333vw;
    background: #fff;
    content: "";
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
            clip-path: polygon(0 100%, 100% 100%, 100% 0);
  }
}
.belt {
  margin: 55px auto 0;
}

.belt_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 378px;
  background: url(../img/bg_sky.jpg);
  background-size: cover;
  background-position: center top;
}

.belt_txt {
  width: 834px;
  max-width: 90%;
}

.belt_bottom {
  padding: 17px;
  text-align: center;
  background: #ff0344;
}

@media (max-width:768px) {
  .belt {
    margin: 10vw auto 0;
  }
  .belt_inner {
    height: 51.733vw;
    background: url(../img/sp/bg_sky.jpg);
    background-size: cover;
    background-position: center top;
  }
  .belt_txt {
    max-width: 95vw;
  }
  .belt_bottom {
    padding: 2.5vw;
  }
}
.program {
  margin: 50px auto 0;
}

.program_heading {
  width: 201px;
  margin: 37px auto 0;
}

.program_container {
  padding: 0 20px 15px;
}

.program_top {
  padding-bottom: 70px;
  background-image: repeating-linear-gradient(90deg, #000000, #000000 8px, transparent 8px, transparent 12px), repeating-linear-gradient(180deg, #000000, #000000 8px, transparent 8px, transparent 12px), repeating-linear-gradient(90deg, #000000, #000000 8px, transparent 8px, transparent 12px), repeating-linear-gradient(180deg, #000000, #000000 8px, transparent 8px, transparent 12px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 0, 0, 100% 2px, 0;
}

.program_txtPrimary {
  margin: 25px auto 0;
  line-height: 1.875;
  text-align: center;
}
.program_txtPrimary .bold {
  font-weight: 800;
}
.program_txtPrimary strong {
  font-size: 20px;
  font-weight: 900;
  color: #FF0000;
}

.program_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  gap: 45px 40px;
  width: 727px;
  max-width: 100%;
  margin: 40px auto 0;
}

.program_box {
  width: 46.77%;
}

.program_part {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  color: #fff;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 28px;
  letter-spacing: 0.05em;
  background: #0985bd;
}

.program_live {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 100%;
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
  font-weight: 600;
  font-style: normal;
  background: #ff0344;
}

.program_partNum {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
}

.program_img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.program_img img {
  width: 50%;
}

.program_name {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.program_txtSecondary {
  margin: 70px auto 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
}
.program_txtSecondary h2 {
  font-size: 24px;
  font-weight: 900;
}
.program_txtSecondary strong {
  font-size: 20px;
  font-weight: 900;
  color: #FF0000;
}
.program_txtSecondary > a {
  text-decoration: underline;
}

.program_btn {
  margin: 35px auto 0;
}

.program_btnNote {
  margin: 13px auto 0;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.program_note {
  margin: 30px auto 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
}

.program_bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}

.program_denriku {
  width: 50%;
  padding: 15px 20px 45px 0;
  background-image: repeating-linear-gradient(90deg, #000000, #000000 8px, transparent 8px, transparent 12px), repeating-linear-gradient(180deg, #000000, #000000 8px, transparent 8px, transparent 12px), repeating-linear-gradient(90deg, #000000, #000000 8px, transparent 8px, transparent 12px), repeating-linear-gradient(180deg, #000000, #000000 8px, transparent 8px, transparent 12px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 0, 2px 100%, 0, 0;
  box-sizing: border-box;
}

.program_denrikuHeading {
  width: 184px;
  margin: 0 auto;
}

.program_denrikuCatch {
  color: #0985bd;
  font-size: 18px;
  font-weight: 700;
}

.program_denrikuCatch {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  margin: 20px auto 0;
  color: #0985bd;
  font-size: min(18px, 2vw);
  font-weight: 700;
  text-align: center;
}

.program_denrikuImg {
  display: block;
  width: 199px;
  margin: 20px auto 0;
}

.program_denrikuTxt {
  width: 340px;
  max-width: 80%;
  margin: 20px auto 0;
  font-size: 12px;
  line-height: 1.75;
}

.program_present {
  width: 50%;
  padding: 15px 0 45px 20px;
  box-sizing: border-box;
}

.program_presentHeading {
  width: 174px;
  margin: 0 auto;
}

.program_presentCatch {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  margin: 20px auto 0;
  color: #0985bd;
  font-size: min(18px, 2vw);
  font-weight: 700;
  line-height: 1.46;
  text-align: center;
}

.program_presentImg {
  display: block;
  width: 199px;
  margin: 20px auto 0;
}

.program_presentTxt {
  width: 340px;
  max-width: 80%;
  margin: 20px auto 0;
  font-size: 12px;
  line-height: 1.75;
}

@media (max-width:768px) {
  .program {
    margin: 10vw auto 0;
  }
  .program_heading {
    width: 40.2vw;
    margin: 4.933vw auto 0;
  }
  .program_container {
    padding: 0 4vw 4.667vw;
  }
  .program_top {
    padding-bottom: 9.333vw;
    background-image: repeating-linear-gradient(90deg, #000000, #000000 1.067vw, transparent 1.067vw, transparent 1.6vw), repeating-linear-gradient(180deg, #000000, #000000 1.067vw, transparent 1.067vw, transparent 1.6vw), repeating-linear-gradient(90deg, #000000, #000000 1.067vw, transparent 1.067vw, transparent 1.6vw), repeating-linear-gradient(180deg, #000000, #000000 1.067vw, transparent 1.067vw, transparent 1.6vw);
    background-position: left top, right top, left bottom, left top;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size: 0, 0, 100% 0.267vw, 0;
  }
  .program_txtPrimary {
    margin: 3.333vw auto 0;
    text-align: left;
  }
  .program_txtPrimary strong {
    font-size: 4vw;
    font-weight: 900;
    color: #FF0000;
  }
  .program_content {
    gap: 4vw;
    max-width: 80%;
    margin: 5.333vw auto 0;
  }
  .program_box {
    width: 100%;
  }
  .program_part {
    height: 6.9vw;
    color: #fff;
    font-size: 4.8006vw;
  }
  .program_live {
    width: 25%;
    font-size: 2.6vw;
  }
  .program_partNum {
    width: 75%;
    font-size: 4.8006vw;
  }
  .program_img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .program_img img {
    width: 50%;
  }
  .program_name {
    margin-top: 3.5vw;
    font-size: 3.733vw;
  }
  .program_txtSecondary {
    margin: 9.333vw auto 0;
    font-weight: 600;
    line-height: 2;
    text-align: left;
    font-size: 3.4vw;
  }
  .program_txtSecondary h2 {
    font-size: 5vw;
    font-weight: 900;
  }
  .program_txtSecondary strong {
    font-size: 3.4vw;
    font-weight: 900;
    color: #FF0000;
  }
  .program_txtSecondary .program_btnNote {
    margin: 1.733vw auto 0;
    font-size: 2.5vw;
    font-weight: 600;
    text-align: center;
  }
  .program_btn {
    margin: 4.667vw auto 0;
  }
  .program_btnNote {
    margin: 1.733vw auto 0;
    font-size: 2.667vw;
    font-weight: 600;
    text-align: center;
  }
  .program_note {
    margin: 4.667vw auto 0;
    font-size: 3.2vw;
    text-align: left;
  }
  .program_bottom {
    display: flex;
    justify-content: space-between;
    flex-flow: column;
    padding-top: 0;
  }
  .program_denriku {
    width: 100%;
    padding: 6vw 0;
    background-image: repeating-linear-gradient(90deg, #000000, #000000 1.067vw, transparent 1.067vw, transparent 1.6vw), repeating-linear-gradient(180deg, #000000, #000000 1.067vw, transparent 1.067vw, transparent 1.6vw), repeating-linear-gradient(90deg, #000000, #000000 1.067vw, transparent 1.067vw, transparent 1.6vw), repeating-linear-gradient(180deg, #000000, #000000 1.067vw, transparent 1.067vw, transparent 1.6vw);
    background-position: left top, right top, left bottom, left top;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size: 0, 0, 100% 0.267vw, 0;
  }
  .program_denrikuHeading {
    width: 36.8vw;
    margin: 0 auto;
  }
  .program_denrikuCatch {
    min-height: inherit;
    margin: 5.333vw auto 0;
    font-size: 3.733vw;
  }
  .program_denrikuImg {
    display: block;
    width: 60%;
    margin: 5.333vw auto 0;
  }
  .program_denrikuTxt {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0;
    font-size: 3.733vw;
    line-height: 1.75;
  }
  .program_present {
    width: 100%;
    padding: 6vw 0 0;
  }
  .program_presentHeading {
    width: 34.8vw;
    margin: 0 auto;
  }
  .program_presentCatch {
    min-height: inherit;
    margin: 5.333vw auto 0;
    font-size: 3.733vw;
  }
  .program_presentImg {
    display: block;
    width: 60%;
    margin: 5.333vw auto 0;
  }
  .program_presentTxt {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0;
    font-size: 3.733vw;
    line-height: 1.75;
  }
}
.footer {
  position: relative;
  padding: 0;
}
.footer_common {
  margin: 0 auto;
  padding: 10px 0 5px;
  border-bottom: 8px solid var(--accent-color);
}
.footer_common-pc {
  display: block;
}
.footer_common-sp {
  display: none;
}
.footer_share {
  position: absolute;
  bottom: 17px;
  left: 14px;
}
.footer_icon {
  display: inline-block;
  width: 38px;
  margin-right: 5px;
}
.footer_copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 69px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1000px) {
  .footer_common {
    padding: 0;
    border-bottom: none;
  }
  .footer_common-pc {
    display: none;
  }
  .footer_common-sp {
    display: block;
  }
}
@media (max-width:768px) {
  .footer_share {
    position: relative;
    bottom: inherit;
    left: inherit;
    width: -moz-fit-content;
    width: fit-content;
    margin: 6vw auto 0;
  }
  .footer_icon {
    width: min(10vw, 45px);
    margin-right: 1vw;
    margin-left: 1vw;
  }
  .footer_copyright {
    height: auto;
    margin: 6vw auto;
    font-size: 4vw;
  }
}
.pagetop-pc {
  position: fixed;
  right: 25px;
  bottom: 90px;
  cursor: pointer;
  z-index: 2;
}
.pagetop-pc img {
  width: 60px;
}

.pagetop-sp {
  display: none;
}

@media (max-width:768px) {
  .pagetop-pc {
    display: none !important;
  }
  .pagetop-sp {
    display: block;
    width: min(14vw, 60px);
    margin: 6vw auto 0;
    cursor: pointer;
  }
}
.sponsors {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: #FFF;
  padding: 70px 0 0px;
  text-align: center;
}
@media (max-width:768px) {
  .sponsors {
    padding: 40px 0 0;
  }
}
.sponsors_inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.sponsors_list {
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}
.sponsors_list li {
  width: 22%;
  border: 1px solid #ddd;
  margin: 0 1.4% 30px;
}
.sponsors_list li img {
  max-height: 100px;
}
@media (max-width:768px) {
  .sponsors_list {
    margin: 15px auto 0;
  }
  .sponsors_list li {
    width: 42%;
    margin: 0 2% 15px;
  }
  .sponsors_list li img {
    max-height: 70px;
  }
}
.sponsors_ttl {
  width: 411px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .sponsors_ttl {
    width: 200px;
  }
}
.sponsors_lead {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 900;
  color: var(--accent-color);
  margin: 40px 0;
}
.sponsors_txt {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
  color: var(--accent-color);
}
.sponsors_txt strong {
  font-size: 2rem;
}
.sponsors_txt span {
  font-size: 1.3rem;
}
.sponsors_btn {
  display: block;
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  background: #FFF;
  transform: skewX(-10deg);
  color: var(--accent-color);
  font-size: 3.8rem;
  font-weight: 900;
  text-align: center;
  box-sizing: border-box;
  padding: 20px 50px 20px;
}
.sponsors_btn span {
  width: 100%;
  display: block;
  transform: skewX(10deg);
  background: url(../../images/arrow.png) 100% center no-repeat;
  background-size: 15px;
}
.sponsors_btn_pia {
  font-size: 1.4rem;
  margin-top: 20px;
}

/* -- COMPONENT -- */
.c-box {
  position: relative;
  width: 1000px;
  max-width: 98%;
  padding: 14px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0px 8px 24.3px 2.7px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.c-box:before {
  position: absolute;
  inset: 0;
  display: block;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  margin: auto;
  background: #e3fbff;
  background-image: repeating-linear-gradient(90deg, #000000, #000000 8px, transparent 8px, transparent 12px), repeating-linear-gradient(180deg, #000000, #000000 8px, transparent 8px, transparent 12px), repeating-linear-gradient(90deg, #000000, #000000 8px, transparent 8px, transparent 12px), repeating-linear-gradient(180deg, #000000, #000000 8px, transparent 8px, transparent 12px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
  pointer-events: none;
  z-index: 0;
  content: "";
}
.c-box:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 186px;
  max-width: 20%;
  height: 149px;
  background: url(../img/box_ribbon.png);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  content: "";
}

.c-boxContainer {
  position: relative;
  z-index: 1;
}

.c-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 520px;
  height: 61px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  background: #088ac1;
  background: linear-gradient(90deg, #088ac1 0%, #602394 100%);
}
.c-btn:before {
  position: absolute;
  display: block;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  border: 2px solid #fff;
  content: "";
  pointer-events: none;
}
.c-btn:after {
  position: absolute;
  top: 0;
  right: 26px;
  bottom: 0;
  width: 24px;
  height: 24px;
  display: block;
  margin: auto;
  background: url(../img/btn_arrow.svg);
  background-size: contain;
  content: "";
}

@media (max-width:768px) {
  .c-box {
    width: 92vw;
    padding: 1.867vw;
    box-sizing: border-box;
    box-shadow: 0 1.067vw 3.24vw 0.36vw rgba(0, 0, 0, 0.25);
  }
  .c-box:before {
    width: calc(100% - 3.2vw);
    height: calc(100% - 3.2vw);
    background-image: repeating-linear-gradient(90deg, #000000, #000000 1.067vw, transparent 1.067vw, transparent 1.6vw), repeating-linear-gradient(180deg, #000000, #000000 1.067vw, transparent 1.067vw, transparent 1.6vw), repeating-linear-gradient(90deg, #000000, #000000 1.067vw, transparent 1.067vw, transparent 1.6vw), repeating-linear-gradient(180deg, #000000, #000000 1.067vw, transparent 1.067vw, transparent 1.6vw);
    background-position: left top, right top, left bottom, left top;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size: 100% 0.267vw, 0.267vw 100%, 100% 0.267vw, 0.267vw 100%;
  }
  .c-box:after {
    width: 24.8vw;
    max-width: inherit;
    height: 19.867vw;
  }
  .c-btn {
    width: 79.733vw;
    height: 12vw;
    font-size: 3.733vw;
    background: linear-gradient(90deg, #088ac1 0%, #602394 100%);
  }
  .c-btn:before {
    position: absolute;
    display: block;
    top: 0.8vw;
    right: 0.8vw;
    bottom: 0.8vw;
    left: 0.8vw;
    border: 0.267vw solid #fff;
    content: "";
    pointer-events: none;
  }
  .c-btn:after {
    right: 3.867vw;
    width: 4.667vw;
    height: 4.667vw;
  }
}
/* -- UTILITY -- */
/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pcflex {
  display: flex;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width:768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .pcflex {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */