@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  font-family: "Noto Sans JP", "Albert Sans", Futura, Trebuchet MS, Arial, sans-serif;
}

body {
  color: #111;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP", "Albert Sans", Futura, Trebuchet MS, Arial, sans-serif;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  min-height: 100%;
  min-width: 100%;
  height: 100%;
  overflow-x: hidden;
  background: #F8F8F8;
  margin: 0px;
  padding: 0px;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

main {
  margin-top: 0;
}

p {
  line-height: 1.8;
}

.container-wrap {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.container-wrap.full {
  max-width: 100%;
}

.marker {
  background: linear-gradient(transparent 70%, #FABD00 70%);
}

.font-albert {
  font-family: "Albert Sans", sans-serif;
}

/*------------------
 setting
------------------*/
.section-wrap {
  position: relative;
  padding: 56px 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.8;
  transition: all ease 0.25;
}

.section-ttl {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .section-ttl {
    margin-bottom: 48px;
  }
}
.section-ttl h2,
.section-ttl p {
  position: relative;
}
.section-ttl p {
  font-size: 32px;
  font-weight: 900;
  font-family: "Albert Sans", sans-serif;
  text-transform: uppercase;
  line-height: 1.24;
}
@media (min-width: 768px) {
  .section-ttl p {
    font-size: 40px;
  }
}
.section-ttl h2 {
  font-weight: bold;
  font-size: 12px;
  color: #FABD00;
}
@media (min-width: 768px) {
  .section-ttl h2 {
    font-size: 16px;
  }
}

.btn {
  display: inline-block;
  width: 100%;
  max-width: 240px;
  border-radius: 100px;
  padding: 8px 0;
}
@media (min-width: 768px) {
  .btn {
    font-size: 16px;
    min-width: 280px;
    max-width: 280px;
    padding: 12px 0;
  }
}
.btn.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  padding: 16px 0;
}
@media (min-width: 768px) {
  .btn.btn-cta {
    font-size: 18px;
    min-width: 364px;
    max-width: 364px;
    padding: 20px 0;
  }
}

/*------------------
 header
------------------*/
.header {
  transition: padding 0.2s ease, background-color 0.3s ease;
  color: #111;
  background-color: transparent;
}
.header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  animation: slideDown 0.3s ease-out forwards;
  color: #111;
}
@media (min-width: 1024px) {
  .header.fixed-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
  }
}
.header .header-logo img {
  height: 32px;
}
@media (min-width: 1024px) {
  .header .header-logo img {
    height: 56px;
  }
}
.header .menu span {
  color: #FABD00;
}
.header .menu .header-btn {
  text-align: center;
  max-width: 180px;
  min-width: 180px;
  padding: 8px 0;
  background: #FABD00;
}
.header .menu .menu-logo {
  display: none;
}

@media (max-width: 1023.98px) {
  .header .menu {
    display: none;
  }
  .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: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    z-index: 999;
    transition: all 0.3s ease;
    overflow-y: scroll;
  }
  .header .menu.active ul li a {
    color: #111;
  }
  .header .menu.active ul li a.header-btn {
    width: 100%;
    color: #FABD00;
  }
  .hamburger {
    position: relative;
    background: #111;
    width: 48px;
    height: 48px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    border-radius: 100px;
  }
  .line {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 100px;
  }
  .line:nth-child(2), .line:nth-child(3) {
    margin-top: 8px;
  }
  .hamburger.clicked .line:nth-child(2) {
    transform: scaleX(0);
  }
  .hamburger.clicked .line:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  .hamburger.clicked .line:nth-child(3) {
    width: 100%;
    transform: rotate(-45deg);
    bottom: 10px;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/*------------------
 mainfv
------------------*/
/*------------------
 info
------------------*/
.news-lists .news-list {
  padding-top: 12px;
  margin-bottom: 12px;
  border-top: 1px solid #E8E8E8;
}
.news-lists .news-list:last-of-type {
  padding-bottom: 12px;
  border-bottom: 1px solid #E8E8E8;
}
.news-lists .news-list a .news-cat {
  background-color: #FFF9E3;
  border: solid 1px #FABD00;
}
.news-lists .news-list a p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*------------------
 event
------------------*/
.section-event {
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
  background-color: #F6F5F0;
}
@media (min-width: 768px) {
  .section-event {
    border-top-right-radius: 100px;
    border-top-left-radius: 100px;
  }
}
.section-event .event-deco {
  z-index: 0;
}

.event-lists .event-list .event-card__thumb img {
  border-radius: 8px;
}
@media (min-width: 768px) {
  .event-lists .event-list .event-card__thumb img {
    border-radius: 16px;
  }
}
.event-lists .event-list .event-card__col .event-cat {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
}
@media (min-width: 768px) {
  .event-lists .event-list .event-card__col .event-cat {
    font-size: 12px;
  }
}
.event-lists .event-list .event-card__col .event-cat.cat01 {
  color: #FABD00;
  background-color: #E4F9F8;
  border: solid 1px #FABD00;
}
.event-lists .event-list .event-card__col .event-cat.cat02 {
  color: #FE7D03;
  background-color: #FFEDDC;
  border: solid 1px #FE7D03;
}
.event-lists .event-list .event-card__col .event-cat.cat03 {
  color: #FE9EAC;
  background-color: #FFF5F6;
  border: solid 1px #FE9EAC;
}

@media (max-width: 767.98px) {
  .event-card__thumb {
    width: 120px;
  }
  .event-card__col {
    padding-left: 8px;
    width: calc(100% - 120px);
  }
}
/*------------------
 schedule
------------------*/
.section-schedule {
  background-color: #F6F5F0;
}
.section-schedule::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
}
@media (min-width: 768px) {
  .section-schedule::before {
    border-top-right-radius: 100px;
    border-top-left-radius: 100px;
  }
}
.section-schedule .tabs .tab-list .tab {
  cursor: pointer;
  border: solid 2px #FABD00;
  background: #fff;
  color: #111;
  border-radius: 100px;
  text-align: center;
  padding: 12px 0;
  font-weight: bold;
}
.section-schedule .tabs .tab-list .tab.is-active {
  background: #FABD00;
}
.section-schedule .tabs .tab-content {
  display: none;
  padding-top: 40px;
}
.section-schedule .tabs .tab-content.is-active {
  display: block;
  animation: fadein 0.4s;
}
.section-schedule .tabs .tab-content .schedule-image {
  min-width: 720px;
}

/*------------------
 map
------------------*/
.section-map .map-deco {
  z-index: -1;
}
.section-map .map-deco.bottom {
  bottom: -12vw;
}
.section-map .map-lists .map-area {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.section-map .map-lists .map-area__ttl {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.section-map .map-lists .map-area__col {
  height: 100%;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.dot-lists {
  list-style: none;
}
.dot-lists li {
  position: relative;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .dot-lists li {
    padding-left: 24px;
  }
}
.dot-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
@media (min-width: 768px) {
  .dot-lists li::before {
    top: 8px;
    width: 16px;
    height: 16px;
  }
}
.dot-lists li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
@media (min-width: 768px) {
  .dot-lists li::after {
    top: 12px;
    width: 8px;
    height: 8px;
  }
}
.dot-lists.cyan li::before {
  background: rgba(1, 181, 169, 0.2);
}
.dot-lists.cyan li::after {
  background: #FABD00;
}
.dot-lists.orange li::before {
  background: rgba(254, 125, 3, 0.2);
}
.dot-lists.orange li::after {
  background: #FE7D03;
}
.dot-lists.purple li::before {
  background: rgba(114, 98, 205, 0.2);
}
.dot-lists.purple li::after {
  background: #7262CD;
}
.dot-lists.pink li::before {
  background: rgba(254, 158, 172, 0.2);
}
.dot-lists.pink li::after {
  background: #FE9EAC;
}

/*------------------
 summary
------------------*/
.section-summary {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.section-summary::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('data:image/svg+xml;utf8,<svg width="1440" height="1793" viewBox="0 0 1440 1793" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M702.692 0C1015.22 1.63687e-05 1324.45 125.721 1440 188.581V1604.42C1324.45 1667.28 1015.22 1793 702.692 1793C390.165 1793 104.011 1667.28 0 1604.42V188.581C104.011 125.721 390.165 0 702.692 0Z" fill="%23F6F5F0"/></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 0.3s;
}
.section-summary .summary-deco {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  max-width: 90%;
}
@media (min-width: 768px) {
  .section-summary .summary-deco {
    max-width: 640px;
  }
}
.section-summary .summary-deco img {
  width: 100%;
}
.section-summary .summary-wrap .summary-block + .summary-block {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .section-summary .summary-wrap .summary-block + .summary-block {
    margin-top: 56px;
  }
}

@media (max-width: 767.98px) {
  .section-summary::before {
    background: url('data:image/svg+xml;utf8,<svg width="390" height="764" viewBox="0 0 390 764" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M190.312 0C274.955 0 358.705 34.2175 390 51.3262V711.869C358.705 728.978 274.955 763.195 190.312 763.195C105.67 763.195 28.1696 728.978 0 711.869V51.3262C28.1696 34.2175 105.67 4.52407e-05 190.312 0Z" fill="%23F6F5F0"/></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
/*------------------
 sponsor
------------------*/
/*------------------
 subkv
------------------*/
.section-subkv {
  position: relative;
  height: 280px;
  background-color: #F6F5F0;
}
@media (min-width: 768px) {
  .section-subkv {
    height: 400px;
  }
}
.section-subkv .subkv-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.section-subkv .subkv-inner h1 {
  font-size: 16px;
  font-weight: 900;
  color: #FABD00;
}
@media (min-width: 768px) {
  .section-subkv .subkv-inner h1 {
    font-size: 20px;
  }
}
.section-subkv .subkv-inner p {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .section-subkv .subkv-inner p {
    font-size: 64px;
  }
}

/*------------------
 single
------------------*/
.single-wrap .single-hero {
  border-radius: 24px;
  overflow: hidden;
}
.single-wrap .single-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-wrap h2,
.single-wrap h3,
.single-wrap h4 {
  font-weight: bold;
}
.single-wrap h2 {
  font-size: 20px;
  line-height: 1.5;
  padding: 12px;
  border-top: solid 2px #FABD00;
  margin: 28px 0 20px;
  background-color: #fafafa;
}
@media (min-width: 768px) {
  .single-wrap h2 {
    padding: 16px;
  }
}
.single-wrap h3 {
  font-size: 18px;
  line-height: 1.5;
  padding: 8px;
  margin: 24px 0 18px;
  border-left: solid 3px #FABD00;
  background-color: #fafafa;
}
@media (min-width: 768px) {
  .single-wrap h3 {
    padding: 12px;
  }
}
.single-wrap h4 {
  font-size: 16px;
  color: #FABD00;
  margin: 20px 0 16px;
}
.single-wrap .single-cta {
  margin: 32px 0;
}
@media (min-width: 768px) {
  .single-wrap .single-cta {
    margin: 40px 0;
  }
}
.single-wrap .single-cta img {
  max-width: 360px;
}
@media (min-width: 768px) {
  .single-wrap .single-cta img {
    max-width: 480px;
  }
}

/*------------------
 fixed
------------------*/
.float-box {
  display: none;
  position: fixed;
  z-index: 9999;
  bottom: -1px;
  left: 0;
  right: 0;
}
.float-box .float-btn {
  padding: 40px 16px 8px;
}

/*------------------
 pagination
------------------*/
.pagination-wrap .pagination li a, .pagination-wrap .pagination li span {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #E8E8E8;
  color: #111;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.pagination-wrap .pagination li a:hover, .pagination-wrap .pagination li span:hover {
  background: #FABD00;
  border-color: #FABD00;
  opacity: 1;
}
.pagination-wrap .pagination li span.current {
  background: #FABD00;
  border-color: #FABD00;
  font-weight: bold;
}
.pagination-wrap .pagination li a.prev, .pagination-wrap .pagination li a.next {
  font-weight: bold;
}

/*------------------
 animation
------------------*/
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}