@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
html {
  font-family: "Nunito", "M PLUS Rounded 1c", sans-serif;
}

body {
  color: #0B172C;
  font-size: 14px;
  font-family: "Nunito", "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  min-height: 100%;
  min-width: 100%;
  height: 100%;
  overflow-x: hidden;
  margin: 0px;
  padding: 0px;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

main {
  margin-top: 84px;
}
@media (min-width: 1024px) {
  main {
    margin-top: 128px;
  }
}

.container-wrap {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}
@media (min-width: 768px) {
  .container-wrap {
    padding: 0 16px;
  }
}
.container-wrap.full {
  max-width: 100%;
}
@media (min-width: 768px) {
  .container-wrap.full {
    padding: 0 40px;
  }
}

p {
  line-height: 1.7;
}

.btn {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  max-width: 280px;
  width: 100%;
  padding: 12px;
  border-radius: 100px;
}
@media (min-width: 768px) {
  .btn {
    max-width: 320px;
    padding: 16px;
  }
}
.btn::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("../img/common/arrow_orange.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn.blue::after {
  background-image: url("../img/common/arrow_blue.svg");
}
.btn.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

/*------------------
 setting
------------------*/
.section-wrap {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .section-wrap {
    padding: 100px 0;
  }
}

a {
  transition: all 0.2s ease-in;
}
a:hover, a:focus, a:hover img, a:focus img {
  opacity: 0.7;
  transition: all ease 0.25;
}

.section-ttl {
  position: relative;
  margin-bottom: 24px;
  letter-spacing: 0.05rem;
  line-height: 1.15;
  text-align: center;
}
@media (min-width: 768px) {
  .section-ttl {
    margin-bottom: 40px;
  }
}
.section-ttl::before {
  color: #F68E05;
  display: block;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  font-size: 16vw;
  font-weight: 900;
  line-height: 1;
  opacity: 0.2;
  text-align: center;
}
@media (min-width: 768px) {
  .section-ttl::before {
    font-size: 80px;
    top: -32px;
  }
}
.section-ttl h2 {
  position: relative;
  font-size: 28px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .section-ttl h2 {
    font-size: 36px;
  }
}
.section-ttl.orange h2 {
  color: #E65529;
}
.section-ttl.orange::before {
  color: #E65529;
}
.section-ttl.white h2 {
  color: #fff;
}
.section-ttl.white::before {
  color: #fff;
}
.section-ttl.news::before {
  content: "News";
}
.section-ttl.about::before {
  content: "About";
}
.section-ttl.access::before {
  content: "Access";
}
.section-ttl.program::before {
  content: "Program";
}
.section-ttl.faq::before {
  content: "Q&A";
}
.section-ttl.sponsor::before {
  content: "Sponsor";
}
.section-ttl.host::before {
  content: "Host";
}
.section-ttl.contact::before {
  content: "Contact";
}

/*------------------
 header
------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 0 0 8px;
  transition: padding 0.2s ease, background-color 0.3s ease;
  z-index: 9999;
}
@media (min-width: 1024px) {
  .header {
    padding: 0 0 12px;
  }
}
.header .header-deco {
  display: block;
  background-image: url(../img/common/header_deco.svg);
  background-size: contain;
  background-repeat: repeat;
  width: 100%;
  height: 4px;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .header .header-deco {
    margin-bottom: 12px;
  }
}
.header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 0 10px;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 9999;
}
.header .header-logo img {
  display: inline-block;
  height: 64px;
  width: 100%;
}
@media (min-width: 1024px) {
  .header .header-logo img {
    height: 100px;
  }
}
.header .hamburger {
  display: block;
  position: relative;
  width: 56px;
  height: 56px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  background-color: #E65529;
  border-radius: 100px;
}
@media (min-width: 1024px) {
  .header .hamburger {
    display: none;
  }
}
.header .line {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.header .line:nth-child(2), .header .line:nth-child(3) {
  margin-top: 8px;
}
.header .hamburger.clicked .line:nth-child(1) {
  width: 100%;
  transform: rotate(45deg);
  top: 4px;
  left: 0;
}
.header .hamburger.clicked .line:nth-child(2) {
  display: none;
}
.header .hamburger.clicked .line:nth-child(3) {
  width: 100%;
  transform: rotate(-45deg);
  bottom: 5px;
  left: 0;
}
.header .menu {
  display: none;
}
@media (min-width: 1024px) {
  .header .menu {
    display: block;
  }
}
.header .menu .container-wrap.full {
  padding: 0;
}
.header .menu.active {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: 100vh;
  padding: 8px 16px;
  display: block;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 999;
  transition: all 0.3s ease;
  overflow-y: scroll;
}
.header .menu.active .menu-logo {
  display: block;
}
.header .menu.active ul li {
  width: 100%;
}
.header .menu.active ul li a {
  display: block;
}
.header .menu .header-btn {
  border-style: solid;
  border-width: 2px;
  border-radius: 100px;
  max-width: 280px;
  min-width: 280px;
  padding: 8px;
}
@media (min-width: 1024px) {
  .header .menu .header-btn {
    padding: 4px;
    max-width: 164px;
    min-width: 164px;
    width: 100%;
  }
}
.header .menu .header-btn.btn-contact {
  color: #01348F;
  border-color: #01348F;
}
.header .menu .header-btn.btn-reserve {
  color: #fff;
  background-color: #E65529;
  border-color: #E65529;
}
.header .menu a.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

/*------------------
 disabled
------------------*/
a.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

/*------------------
 footer
------------------*/
.footer {
  color: #fff;
  padding: 20px 0;
  background-color: #E65529;
}
@media (min-width: 768px) {
  .footer {
    padding: 24px 0;
  }
}

/*------------------
 form
------------------*/
.form-block .form-label {
  width: 100%;
}
@media (min-width: 768px) {
  .form-block .form-label {
    width: 240px;
  }
}
.form-block .form-data {
  width: 100%;
}
@media (min-width: 768px) {
  .form-block .form-data {
    padding-left: 48px;
    width: calc(100% - 240px);
  }
}
.form-block select {
  appearance: auto;
}

/*------------------
 contactform7
------------------*/
div.wpcf7 .wpcf7-spinner {
  display: none;
}

.wpcf7-submit,
.wpcf7-previous {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 12px 8px;
  min-width: 300px;
  color: #fff;
  border-radius: 100px;
  text-align: center;
  background-color: #F68E05;
}
@media (min-width: 768px) {
  .wpcf7-submit,
  .wpcf7-previous {
    padding: 14px 24px;
    min-width: 280px;
  }
}

.wpcf7-previous {
  background-color: #999;
}

/*------------------
 wp pagenavi
------------------*/
.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi span,
.wp-pagenavi a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  margin: 0 4px;
  border: solid 1px #F68E05;
}
@media (min-width: 768px) {
  .wp-pagenavi span,
  .wp-pagenavi a {
    font-size: 18px;
    width: 48px;
    height: 48px;
    margin: 0 8px;
  }
}
.wp-pagenavi .current {
  color: #fff;
  background-color: #F68E05;
}
.wp-pagenavi a {
  color: #F68E05;
  background-color: #fff;
}
.wp-pagenavi a:hover, .wp-pagenavi a:focus {
  color: #fff;
  background-color: #F68E05;
}

/*------------------
 subkv
------------------*/
.subkv {
  background: repeating-linear-gradient(235deg, #fff, #fff 5px, rgba(254, 242, 229, 0.5) 5px, rgba(254, 242, 229, 0.5) 10px);
  padding: 64px 0;
}
@media (min-width: 768px) {
  .subkv {
    padding: 120px 0;
  }
}
.subkv p {
  line-height: 1;
  font-size: 32px;
  font-weight: 900;
  color: #E65529;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .subkv p {
    font-size: 56px;
  }
}
.subkv h1 {
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .subkv h1 {
    font-size: 24px;
  }
}

/*------------------
 other
------------------*/
.news-tag {
  color: #fff;
  background-color: #E65529;
}

.bus {
  max-width: 800px;
  margin: 0 auto;
}

/*------------------
 spmenu
------------------*/
.float-btns {
  width: 100%;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.float-btns.active {
  opacity: 1;
  visibility: visible;
}
.float-btns li .btn-reserve {
  background: #E65529;
  border: solid 2px #E65529;
  color: #fff;
  flex-wrap: wrap;
  font-weight: bold;
}
.float-btns li .btn-reserve span {
  width: 100%;
}
.float-btns li .btn-contact {
  background: #01348F;
  border: solid 2px #01348F;
  color: #fff;
  flex-wrap: wrap;
  font-weight: bold;
}
.float-btns li .btn-contact span {
  width: 100%;
}

/*------------------
 mainkv
------------------*/
/*------------------
 news
------------------*/
/*------------------
 about
------------------*/
.top-about {
  padding: 80px 0;
}
.top-about .about-left,
.top-about .about-right {
  flex: 1;
}
.top-about .about-left img,
.top-about .about-right img {
  max-width: 80%;
  margin: 0 auto;
}
.top-about .about-left {
  margin-left: calc(50% - 50vw);
}
.top-about .about-right {
  margin-right: calc(50% - 50vw);
}
@media (min-width: 768px) {
  .top-about .about-content {
    max-width: 60%;
  }
}

/*------------------
 access
------------------*/
.top-access {
  z-index: 1;
}
.top-access .access-icon {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  max-width: 200px;
}
.top-access .access-info dt {
  width: 140px;
  font-size: 16px;
  font-weight: bold;
  background-color: #EAEAEA;
  border-radius: 100px;
  text-align: center;
  padding: 8px 12px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .top-access .access-info dt {
    font-size: 20px;
    width: 180px;
    margin-bottom: 16px;
  }
}
.top-access .access-info dd {
  width: 100%;
  font-size: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .top-access .access-info dd {
    width: calc(100% - 180px);
    font-size: 18px;
    padding-left: 24px;
    margin-bottom: 16px;
  }
}
.top-access .access-info dd .font-red {
  color: red;
}

/*------------------
 program
------------------*/
.top-program .program-left {
  position: absolute;
  left: 0;
  top: -50%;
  transform: translateY(25%);
}
.top-program .program-right {
  position: absolute;
  right: 0;
  bottom: -50%;
  transform: translateY(-25%);
  z-index: 1;
}
.top-program .program-block {
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .top-program .program-block {
    padding: 64px 48px;
  }
}

/*------------------
 faq
------------------*/
.top-faq {
  z-index: 1;
}

.faq-wrap .faq-block + .faq-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: dashed 2px #E3E3E3;
}
.faq-wrap .faq-block dt,
.faq-wrap .faq-block dd {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.faq-wrap .faq-block dt {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .faq-wrap .faq-block dt {
    font-size: 20px;
  }
}
.faq-wrap .faq-block dd {
  align-items: start;
}
@media (min-width: 768px) {
  .faq-wrap .faq-block dd {
    align-items: center;
  }
}
.faq-wrap .faq-block p {
  line-height: 1.35;
  flex: 1;
}
.faq-wrap .faq-block span {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-right: 16px;
}
@media (min-width: 768px) {
  .faq-wrap .faq-block span {
    font-size: 20px;
    width: 48px;
    min-width: 48px;
    height: 48px;
  }
}
.faq-wrap .faq-block span::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  position: absolute;
  top: 0;
  right: -6px;
  bottom: 0;
  margin: auto;
}
.faq-wrap .faq-block span.q {
  background-color: #E65529;
}
.faq-wrap .faq-block span.q::before {
  border-color: transparent transparent transparent #E65529;
}
.faq-wrap .faq-block span.a {
  background-color: #FCA71A;
}
.faq-wrap .faq-block span.a::before {
  border-color: transparent transparent transparent #FCA71A;
}

/*------------------
 sponsor
------------------*/
.top-sponsor .sponsor-wrap .sponsor-block + .sponsor-block {
  margin-top: 28px;
}
@media (min-width: 768px) {
  .top-sponsor .sponsor-wrap .sponsor-block + .sponsor-block {
    margin-top: 48px;
  }
}
.top-sponsor .sponsor-wrap .sponsor-block .pc {
  display: none;
}
@media (min-width: 768px) {
  .top-sponsor .sponsor-wrap .sponsor-block .pc {
    display: block;
  }
}
.top-sponsor .sponsor-wrap .sponsor-block .sp {
  display: block;
}
@media (min-width: 768px) {
  .top-sponsor .sponsor-wrap .sponsor-block .sp {
    display: none;
  }
}

/*------------------
 host
------------------*/
.top-host .container-wrap .main-txt {
  font-size: 1.3rem;
  font-weight: bold;
}

/*------------------
 cta
------------------*/
.section-cta {
  background: repeating-linear-gradient(235deg, #fff, #fff 5px, rgba(254, 242, 229, 0.5) 5px, rgba(254, 242, 229, 0.5) 10px);
}

/*------------------
 news
------------------*/
.single-wrap .single-content {
  margin-top: 16px;
  padding-top: 16px;
  border-top: solid 1px #E2E2E2;
}
@media (min-width: 768px) {
  .single-wrap .single-content {
    margin-top: 24px;
    padding-top: 24px;
  }
}
.single-wrap .single-content h2,
.single-wrap .single-content h3,
.single-wrap .single-content h4 {
  font-weight: bold;
}
.single-wrap .single-content h2 {
  font-size: 20px;
  padding-bottom: 8px;
  border-bottom: dashed 2px #F68E05;
  margin: 28px 0 20px;
}
@media (min-width: 768px) {
  .single-wrap .single-content h2 {
    font-size: 24px;
    margin: 32px 0 24px;
  }
}
.single-wrap .single-content h3 {
  font-size: 18px;
  padding: 12px;
  margin: 24px 0 18px;
  border-left: solid 3px #F68E05;
  background-color: #fafafa;
}
@media (min-width: 768px) {
  .single-wrap .single-content h3 {
    font-size: 20px;
    margin: 28px 0 20px;
  }
}
.single-wrap .single-content h4 {
  font-size: 16px;
  color: #F68E05;
  margin: 20px 0 16px;
}
@media (min-width: 768px) {
  .single-wrap .single-content h4 {
    font-size: 18px;
    margin: 24px 0 18px;
  }
}

/*------------------
 program
------------------*/
.program-wrap .date-exa {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem 0;
}
.program-wrap .date-exa .date {
  font-size: 12px;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 100px;
  margin-right: 8px;
}
.program-wrap .date-exa .sat {
  background-color: #00A0E8;
}
.program-wrap .date-exa .sun {
  background-color: #E8303E;
}
.program-wrap .program-block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 768px) {
  .program-wrap .program-block {
    flex-direction: row;
  }
}
.program-wrap .program-block + .program-block {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .program-wrap .program-block + .program-block {
    margin-top: 20px;
  }
}
.program-wrap .program-block.lightblue .program-block__num {
  background-color: #00A0E8;
}
.program-wrap .program-block.lightblue .program-block__info {
  background-color: #F2FAFD;
}
.program-wrap .program-block.lightorange .program-block__num {
  background-color: #FCA71A;
}
.program-wrap .program-block.lightorange .program-block__info {
  background-color: #FFFDF1;
}
.program-wrap .program-block.orange .program-block__num {
  background-color: #F68E05;
}
.program-wrap .program-block.orange .program-block__info {
  background-color: #FFF5F1;
}
.program-wrap .program-block.blue .program-block__num {
  background-color: #01348F;
}
.program-wrap .program-block.blue .program-block__info {
  background-color: #F2F5FD;
}
.program-wrap .program-block.green .program-block__num {
  background-color: #9a9c51;
}
.program-wrap .program-block.green .program-block__info {
  background-color: #EAEDD5;
}
.program-wrap .program-block__num {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  width: 100%;
}
@media (min-width: 768px) {
  .program-wrap .program-block__num {
    width: 4.8rem;
  }
}
.program-wrap .program-block__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .program-wrap .program-block__info {
    padding: 16px 24px;
    width: calc(100% - 4.8rem);
  }
}
.program-wrap .program-block__info .date-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin: 0 0 10px 0;
}
@media (min-width: 768px) {
  .program-wrap .program-block__info .date-wrap {
    width: auto;
    margin: 0 0 0 0;
  }
}
.program-wrap .program-block__info p {
  line-height: 1.5;
}
.program-wrap .program-block__info .city {
  font-size: 12px;
  text-align: center;
  width: 4rem;
  padding-right: 8px;
  margin-right: 8px;
  border-right: solid 1px #E2E2E2;
}
@media (min-width: 768px) {
  .program-wrap .program-block__info .city {
    font-size: 16px;
    width: 10%;
    padding-right: 16px;
    margin-right: 16px;
  }
}
.program-wrap .program-block__info .date {
  font-size: 12px;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: #E3017F;
  margin-right: 8px;
}
@media (min-width: 768px) {
  .program-wrap .program-block__info .date {
    font-size: 14px;
    width: 56px;
    height: 56px;
    margin-right: 12px;
  }
}
.program-wrap .program-block__info .date.sat {
  background-color: #00A0E8;
}
.program-wrap .program-block__info .date.sun {
  background-color: #E8303E;
}
.program-wrap .program-block__info .date.clear {
  opacity: 0;
  display: none;
}
@media (min-width: 768px) {
  .program-wrap .program-block__info .date.clear {
    display: inline-block;
  }
}
.program-wrap .program-block__info .ttl {
  font-size: 16px;
  flex: 1;
}
@media (min-width: 768px) {
  .program-wrap .program-block__info .ttl {
    flex: unset;
    width: 60%;
    padding-right: 16px;
    margin-right: 16px;
    border-right: solid 1px #E2E2E2;
  }
}
.program-wrap .program-block__info .place {
  font-size: 12px;
  text-align: center;
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .program-wrap .program-block__info .place {
    margin-top: 0;
    text-align: right;
    width: auto;
    flex: 1;
  }
}

/*------------------
 faq
------------------*/
.section-faq .faq-wrapper + .faq-wrapper {
  margin-top: 48px;
}