@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=Lexend:wght@100..900&display=swap');

html{
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}

body {
  color: #fff;
  font-family: "BIZ UDPGothic", "Lexend", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  background-color: #080F00;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

a {
  color: #000000;
  text-decoration: unset;
}

ul {
  padding: 0;
}

picture img {
  margin: 0 auto;
}

@media only screen and (min-width: 990px) {
  .spOnly {
    display: none!important;
  }
}
@media only screen and (max-width: 991px) {
  .pcOnly {
    display: none!important;
  }
}

.sp-only { display: block!important; }
.pc-only { display: none!important; }
@media  (min-width: 992px) {
    .sp-only { display: none!important; }
    .pc-only { display: block!important; }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .container {
    padding: 0 10px;
  }
  .sp-container-none {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
}
.row.pd_s {
  margin-left: -5px;
  margin-right: -5px;
}
.row.pd_m {
  margin-left: -10px;
  margin-right: -10px;
}
.row.pd_l {
  margin-left: -15px;
  margin-right: -15px;
}
.row.pd_s > * {
  padding-left: 5px;
  padding-right: 5px;
}
.row.pd_m > * {
  padding-left: 10px;
  padding-right: 10px;
}
.row.pd_l > * {
  padding-left: 15px;
  padding-right: 15px;
}
.col-1 {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}
.col-2 {
  width: 50%;
  max-width: 50%;
  flex: 0 0 50%;
}
.col-3 {
  width: 33.3333%;
  max-width: 33.3333%;
  flex: 0 0 33.3333%;
}
.col-4 {
  width: 25%;
  max-width: 25%;
  flex: 0 0 25%;
}
.col-5 {
  width: 20%;
  max-width: 20%;
  flex: 0 0 20%;
}
@media only screen and (max-width: 991px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
  }
  .row.pd_s {
    margin-left: -5px;
    margin-right: -5px;
  }
  .row.pd_m {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row.pd_l {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row.pd_s > * {
    padding-left: 5px;
    padding-right: 5px;
  }
  .row.pd_m > * {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row.pd_l > * {
    padding-left: 10px;
    padding-right: 10px;
  }
  .col-1-sp {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .col-2-sp {
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-3-sp {
    width: 33.3333%;
    max-width: 33.3333%;
    flex: 0 0 33.3333%;
  }
  .col-4-sp {
    width: 25%;
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-5-sp {
    width: 20%;
    max-width: 20%;
    flex: 0 0 20%;
  }
}


.text--center {
  text-align: center!important;
  margin: 0 auto;
}
.text--left {
  text-align: left!important;
}
@media only screen and (max-width: 991px) {
  .sp-text--center {
    text-align: center!important;
    margin: 0 auto;
  }
  .sp-text--left {
    text-align: left!important;
  }
}

.flex-center {
  justify-content: center;
}

h2 {
  display: block;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  h2 {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 36px;
    margin-bottom: 30px;
  }
}

.h2_txt {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
}
.h2_txt small {
  display: inline-block;
  width: fit-content;
  font-size: 13px;
  line-height: 25px;
  color: #646464;
  text-align: left;
  margin-top: 23px;
}

.h3 {
  display: block;
  text-align: center;
  font-size: 25px;
  line-height: 1.8;
  border-bottom: 1px solid #707070;
}
@media only screen and (max-width: 991px) {
  .h3 {
    display: block;
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    border-bottom: 1px solid #707070;
  }
}

.mb0 {
  margin-bottom: 0px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb100 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .mb0-sp {
    margin-bottom: 0px;
  }
  .mb10-sp {
    margin-bottom: 10px;
  }
  .mb20-sp {
    margin-bottom: 20px;
  }
  .mb30-sp {
    margin-bottom: 30px;
  }
  .mb40-sp {
    margin-bottom: 40px;
  }
  .mb50-sp {
    margin-bottom: 50px;
  }
  .mb60-sp {
    margin-bottom: 60px;
  }
  .mb70-sp {
    margin-bottom: 70px;
  }
  .mb80-sp {
    margin-bottom: 80px;
  }
  .mb90-sp {
    margin-bottom: 90px;
  }
  .mb100-sp {
    margin-bottom: 100px;
  }
}

section {
  margin-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  section {
    margin-bottom: 80px;
  }
}

.bg {
  background-color: #F5F5F7;
  padding: 60px 0;
}

.button {
  display: inline-block;
  width: 250px;
  padding: 13px;
  background-color: #C59289;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  text-align: center;
}

.fit-content {
  display: inline-block;
  width: fit-content;
}

@media only screen and (max-width: 991px) {
  .sp-wi80 {
    width: 80%;
    margin: 0 auto;
  }
}

.top-section {
  position: relative;
  width: 100%;
  background: url('../img/fv_bg.png') no-repeat right top;
  background-size: contain;
}
@media only screen and (max-width: 991px) {
  .top-section {
    background: url('../img/fv_bg_sp.png') no-repeat right top;
    background-size: contain;
    text-align: center;
  }
}
.title {
  width: 100%;
  max-width: 57vw;
  padding: 60px 0px 40px 50px;
  box-sizing: border-box;
}
.title2 {
  width: 100%;
  max-width: 623px;
  padding: 60px 0px 0px 60px;
  box-sizing: border-box;
}
@media only screen and (max-width: 991px) {
  .title {
    width: 90%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 60px;
  }
  .title2 {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }
}

.marquee {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-content: center;
  gap: 10px;
/*  animation: marquee 10s linear infinite;*/
}
.marquee img {
  height: 60px;
  width: auto;
}
.marquee1,.marquee2 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.marquee .marquee1 {
  animation: marquee 60s infinite linear 0.5s both;
}
@media only screen and (max-width: 991px) {
  .marquee {
    margin-bottom: 50px;
  }
  .marquee-content {
    display: grid;
    gap: 10px;
    animation: unset;
    overflow-x: hidden;
  }
  .marquee img {
    height: 40px;
    width: auto;
  }
  .marquee .marquee1 {
    animation: marquee 60s infinite linear 0.5s both;
  }
  .marquee .marquee2 {
    animation: marquee2 60s infinite linear 0.5s both;
  }
}
@keyframes marquee {
  from { transform: translateX(0%); }
  to { transform: translateX(calc(-50% - 2px)); }
}
@keyframes marquee2 {
  from { transform: translateX(-80%); }
  to { transform: translateX(calc(-30% + 2px)); }
}

.main-content {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  margin-bottom: 0;
}
.left-content {
  flex: 1;
  padding: 0px 0;
  width: calc(100% - 420px);
}
.right-content {
  width: 420px;
  min-width: 420px;
  position: relative;
  top: 0px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  border-left: 1px solid #ADFF32;
}
@media only screen and (max-width: 1100px) {
  .main-content {

  }
  .left-content {
    flex: 1;
    padding: 0;
    width: 100%;
  }
  .right-content {
    display: none;
  }
}
.right-content.visible {
  opacity: 1;
  transform: translateY(0);
}
.right-content .right-content_wrap {
  padding: 40px 40px;
  position: sticky;
  top: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.right-content .right-content_wrap img {
  max-width: 100%;
  max-height: 220px;
}
.right-content_wrap__btn {
  display: grid;
  gap: 10px;
  margin-top: 60px;
}
.right-content_wrap__btn button {
  width: 100%;
  border: transparent;
  background-color: rgba(255, 255, 255, 0.15);
  height: 100px;
  padding: 25px 80px 25px 30px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.1em;
  text-align: left;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.right-content_wrap__btn button:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  right: 80px;
}
.right-content_wrap__btn button small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.right-content_wrap__btn button span.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 40px;
  bottom: 0;
  margin: auto;
}
.right-content_wrap__btn2 {
  margin-top: 20px;
}
.right-content_wrap__btn2 button {
  border: transparent;
  background-color: #ADFF32;
  border-radius: 5px;
  color: #080F00;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.right-content_wrap__btn2 button a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.right-content_wrap__btn2 button span:not(.arrow) {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 14px 10px;
  color: #ffffff;
  background-color: #080F00;
  border-radius: 3px;
  margin-bottom: 20px;
}
.right-content_wrap__btn2 button strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.05em;
}
.right-content_wrap__btn2 button span.arrow {
  display: block;
  margin-left: 20px;
}
@media (max-height: 800px) {
  .right-content .right-content_wrap img {
    max-width: 100%;
    max-height: 200px;
  }
  .right-content_wrap__btn button {
    height: 80px;
    padding: 15px 80px 15px 30px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
  }
}

.left-content .container {
  padding: 0 60px;
}
@media only screen and (max-width: 991px) {
  .left-content .container {
    padding: 0 20px;
  }
}
.sec1 h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #ADFF32;
  margin-bottom: 80px;
}
.sec1 p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .sec1 h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .sec1 p {
    font-size: 14px;
  }
}
.sec_title {
  font-family: "Lexend", serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 3px;
  text-align: left;
  margin: 0;
  margin-bottom: 60px;
}
.sec_title small {
  font-family: "BIZ UDPGothic", serif;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 10px;
}
.sec_subtitle {
  font-family: "Lexend", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 62.5px;
  letter-spacing: 0.03em;
  text-align: left;
  margin: 0 0 30px;
}
@media only screen and (max-width: 991px) {
  .sec_title {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 30px;
  }
  .sec_title small {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .sec_subtitle {
    font-size: 24px;
    margin: 0 0 30px;
  }
}
.slide_container {
  max-width: 100%;
  padding: 0 0 0 60px;
  box-sizing: border-box;
}
@media only screen and (max-width: 991px) {
  .slide_container {
    max-width: 100%;
    padding: 0 0 0 20px;
    box-sizing: border-box;
  }
}
@media only screen and (min-width: 992px) {
  .slide_container {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 60px;
    box-sizing: content-box;
  }
}
.scroll_list {
  overflow: hidden;
  position: relative;
}
.memb_list {
  /*display: flex;
  overflow-x: scroll;*/
  list-style: none;
  padding-bottom: 4px;
}
.memb_list::-webkit-scrollbar {
  background: #fff;
  height: 10px;
}
.memb_list::-webkit-scrollbar-thumb {
  background-color: #ADFF32;
}
.memb_list li {
  width: 300px;
  min-width: 300px;
  padding: 0 20px;
  box-sizing: border-box;
}
@media only screen and (max-width: 991px) {
  .memb_list li {
    width: 250px;
    min-width: 250px;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
@media only screen and (min-width: 992px) {
  .memb_list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 0;
  }
  .memb_list li {
    width: 240px;
    min-width: 240px;
  }
}
.memb_list_cont div {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-align: center;
}
.memb_list_cont div small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 4px;
}
.memb_list_cont div:not(:first-child) {
  margin-top: 20px;
}
.memb_list_cont div img{
  max-width: 100%;
}
.scroll_list .swiper-scrollbar {
  background-color: #fff;
  height: 10px !important;
  border-radius: 0;
}
@media only screen and (min-width: 992px) {
  .scroll_list .swiper-scrollbar {
    display: none;
  }
}
.scroll_list .swiper-pagination-progressbar-fill {
  background-color: #ADFF32;
}

.time_table {
  display: grid;
}
.time_table .time_table__cont {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 991px) {
  .time_table .time_table__cont {
    display: grid;
    gap: 18px;
  }
}
.time_table .time_table__cont .time_table__cont__time {
  width: 180px;
  min-width: 180px;
}
.time_table .time_table__cont .time_table__cont__time > div {
  font-family: "BIZ UDPGothic", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 37.5px;
  letter-spacing: 0.03em;
  text-align: center;
  border: 1px solid #ADFF32;
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
}
.time_table .time_table__cont .time_table__cont__time > div span {
  font-family: "BIZ UDPGothic", "Lexend", serif;
  font-size: 14px;
  border: 1px solid #ADFF32;
  border-radius: 50%;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.time_table .time_table__cont .time_table__cont__time > div.day {
  color: #ADFF32;
  background-color: #080F00;
}
.time_table .time_table__cont .time_table__cont__time > div.time {
  color: #080F00;
  background-color: #ADFF32;
}
@media only screen and (max-width: 991px) {
  .time_table .time_table__cont .time_table__cont__time {
    width: fit-content;
    min-width: unset;
  }
  .time_table .time_table__cont .time_table__cont__time > div {
    font-size: 20px;
    line-height: 1.6;
    padding: 10px 15px;
  }
  .time_table .time_table__cont .time_table__cont__time > div span {
    font-family: "BIZ UDPGothic", "Lexend", serif;
    font-size: 14px;
    border: 1px solid #ADFF32;
    border-radius: 50%;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
  }
  .time_table .time_table__cont .time_table__cont__time > div.day {
    color: #ADFF32;
    background-color: #080F00;
  }
  .time_table .time_table__cont .time_table__cont__time > div.time {
    color: #080F00;
    background-color: #ADFF32;
  }
}
.time_table .time_table__cont .time_table__cont__main {
  width: calc(100% - 180px);
}
@media only screen and (max-width: 991px) {
  .time_table .time_table__cont .time_table__cont__main {
    width: 100%;
  }
}
.time_table .time_table__cont .time_table__cont__main .time_table__cont__main__ttl {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0.1em;
  color: #ADFF32;
  padding: 6px;
  border: 1px solid #ADFF32;
  background-color: #080F00;
  border-radius: 5px;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.time_table .time_table__cont .time_table__cont__main .time_table__cont__main__ttl span {
  display: inline-block;
  position: relative;
}
.time_table .time_table__cont .time_table__cont__main .time_table__cont__main__ttl span:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/icon_time_ttl.svg);
  background-size: cover;
  position: absolute;
  top: 0;
  left: -60px;
  bottom: 0;
  margin: auto;
}
.time_table .time_table__cont .time_table__cont__main .time_table__cont__main__ttl span:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/icon_time_ttl.svg);
  background-size: cover;
  position: absolute;
  top: 0;
  right: -60px;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 991px) {
  .time_table .time_table__cont .time_table__cont__main .time_table__cont__main__ttl {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    padding: 10px;
    border: 1px solid #ADFF32;
    background-color: #080F00;
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
  }
  .time_table .time_table__cont .time_table__cont__main .time_table__cont__main__ttl span {
    display: inline-block;
    position: relative;
  }
  .time_table .time_table__cont .time_table__cont__main .time_table__cont__main__ttl span:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/icon_time_ttl.svg);
    background-size: cover;
    position: absolute;
    top: 0;
    left: -60px;
    bottom: 0;
    margin: auto;
  }
  .time_table .time_table__cont .time_table__cont__main .time_table__cont__main__ttl span:after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/icon_time_ttl.svg);
    background-size: cover;
    position: absolute;
    top: 0;
    right: -60px;
    bottom: 0;
    margin: auto;
  }
}
.time_table__cont__main__blk {
  padding: 30px;
  background-color: #F4F4F4;
  border-radius: 5px;
  box-sizing: border-box;
}
.time_table__cont__main__blk p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22.8px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #080F00;
  margin: 0 0 23px;
}
.time_table__cont__main__blk p.ttl {
  display: block;
  box-sizing: border-box;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: left;
  padding-bottom: 30px;
  border-bottom: 1px solid #080F00;
}
@media only screen and (max-width: 991px) {
  .time_table__cont__main__blk {
    padding: 30px 20px;
    background-color: #F4F4F4;
    border-radius: 5px;
  }
  .time_table__cont__main__blk p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24.8px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #080F00;
  }
  .time_table__cont__main__blk p.ttl {
    display: block;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: left;
    padding-bottom: 30px;
    border-bottom: 1px solid #080F00;
  }
}
.time_table__cont__main__blk .memb_list {
  margin-top: 30px;
  color: #080F00;
}
.time_table__cont.dtime {
  padding-bottom: 60px;
}
.time_table__cont.dtime .time_table__cont__time {
  position: relative;
}
.time_table__cont.dtime .time_table__cont__time:before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% + 120px);
  background-color: #ADFF32;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .time_table__cont.dtime {
    padding-bottom: 60px;
    position: relative;
  }
  .time_table__cont.dtime:before {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% + 120px);
    background-color: #ADFF32;
    position: absolute;
    top: 0;
    left: 70px;
    margin: auto;
    z-index: -1;
  }
  .time_table__cont.dtime .time_table__cont__time:before {
    content: unset;
  }
}
.time_table__cont.dtime + .time_table__cont.dtime {

}
.time_table__cont__main__blk .memb_list {
  display: flex;
  justify-content: center;
}
.time_table__cont__main__blk .memb_list li {
  padding: 0 10px;
  width: 33.3333%;
  min-width: unset;
}
.memb_list2 .memb_list_cont {
  display: flex;
  gap: 20px;
}
.memb_list2 .memb_list_cont > div:nth-child(1) {
  width: 200px;
}
.memb_list2 .memb_list_cont > div:nth-child(2) {
  width: calc(100% - 200px);
  text-align: left;
  color: #080F00;
}
.memb_list2 .memb_list_cont > div:nth-child(2) div {
  text-align: left;
}
.memb_list2 .memb_list_cont > div:nth-child(2) div img {
  max-width: 300px;
  width: 100%;
}
.memb_list2 .memb_list_cont > div:nth-child(2) small {
  font-size: 14px;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .time_table__cont__main__blk .memb_list {
    display: grid;
    gap: 0px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .time_table__cont__main__blk .memb_list li {
    padding: 0px;
    width: 100%;
  }
  .time_table__cont__main__blk .memb_list li .memb_list_cont {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .time_table__cont__main__blk .memb_list li .memb_list_cont > div:nth-child(1) {
    width: 130px;
  }
  .time_table__cont__main__blk .memb_list li .memb_list_cont > div:nth-child(2) {
    width: calc(100% - 130px);
  }
  .time_table__cont__main__blk .memb_list li .memb_list_cont > div:nth-child(2) div {
    font-size: 16px;
    text-align: left;
    margin-top: 10px;
  }
  .memb_list2 .memb_list_cont > div:nth-child(2) div img {
    max-width: 100%;
  }
  .time_table__cont__main__blk .memb_list li .memb_list_cont > div:nth-child(2) div small {
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
  }
  .memb_list2 .memb_list_cont {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .memb_list2 .memb_list_cont > div:nth-child(1) {
    width: 130px;
  }
  .memb_list2 .memb_list_cont > div:nth-child(2) {
    width: calc(100% - 130px);
    text-align: left;
    color: #080F00;
  }
  .memb_list2 .memb_list_cont > div:nth-child(2) div {
    font-size: 16px;
    text-align: left;
    margin-top: 10px;
  }
  .memb_list2 .memb_list_cont > div:nth-child(2) small {
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
  }

  .ac_btn {
    text-align: center;
  }

  .ac_area {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .ac_btn span {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #080F00;
    padding-right: 50px;
    position: relative;
    cursor: pointer;
  }
  .ac_btn span:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/box_arrow02.svg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .ac_btn.active span:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/box_arrow01.svg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .ac_btn .ac_btn_close {

  }
  .ac_btn .ac_btn_open {
    display: none;
  }
  .ac_btn.active .ac_btn_open {
    display: inline-block;
  }
  .ac_btn.active .ac_btn_close {
    display: none;
  }
}

.after_event {
  background-color: #F4F4F4;
  padding: 40px;
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  .after_event {
    background-color: #F4F4F4;
    padding: 40px 20px 20px 20px;
    border-radius: 5px;
  }
}
.after_event .after_event__ttl {
  text-align: center;
  margin-bottom: 30px;
}
.after_event .after_event__ttl span {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  background-color: #080F00;
  padding: 10px 60px;
  box-sizing: border-box;
  border-radius: 5px;
  margin-bottom: 20px;
}
.after_event .after_event__ttl p {
  font-size: 40px;
  color: #080F00;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 0px;
}
@media only screen and (max-width: 991px) {
  .after_event .after_event__ttl {
    text-align: center;
    margin-bottom: 20px;
  }
  .after_event .after_event__ttl span {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    padding: 10px 20px;
    margin-bottom: 20px;
  }
  .after_event .after_event__ttl p {
    font-size: 24px;
    color: #080F00;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 0px;
  }
}
.after_event .after_event__bnr {
  margin-bottom: 30px;
}
.after_event .after_event__bnr img {
  max-width: 100%;
  border-radius: 5px;
}
@media only screen and (max-width: 991px) {
  .after_event .after_event__bnr {
    margin-bottom: 20px;
  }
}
.after_event .after_event__btm {
  text-align: center;
}
.after_event .after_event__btm span {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  color: #080F00;
  background-color: #ADFF32;
  padding: 10px;
  min-width: 100%;
  margin-bottom: 42px;
  box-sizing: border-box;
  border-radius: 5px;
}
.after_event .after_event__btm img {
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .after_event .after_event__btm {
    text-align: center;
  }
  .after_event .after_event__btm span {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: center;
    color: #080F00;
    background-color: #ADFF32;
    padding: 10px;
    min-width: 100%;
    margin-bottom: 30px;
  }
}
.after_event__other {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .after_event__other {
    text-align: center;
  }
}
.after_event__other__btn_cont {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.after_event__other__btn_cont_wrap {
  border-radius: 5px;
  padding: 30px;
  background-color: #fff;
  box-sizing: border-box;
  color: #080F00;
  margin-top: 60px;
}
.after_event__other__btn_cont h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.05em;
  text-align: left;
  margin: 0 0 30px;
}
.after_event__other__btn_cont ul.table {
  list-style: none;
  margin: 0;
  display: grid;
}
.after_event__other__btn_cont ul.table li {
  display: flex;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  text-align: left;
}
.after_event__other__btn_cont ul.table li div:nth-child(1) {
  width: 120px;
}
.after_event__other__btn_cont ul.table li div:nth-child(2) {
  width: calc(100% - 120px);
}
.after_event__other__btn_cont ul.overview_list {
  list-style: none;
  margin: 0;
  display: grid;
}
.after_event__other__btn_cont ul.overview_list li {
  display: flex;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}
.after_event__other__btn_cont ul + h3 {
  border-top: 1px solid #080F00;
  padding-top: 30px;
  margin-top: 30px;
}
@media only screen and (max-width: 991px) {
  .after_event__other__btn_cont {
  }
  .after_event__other__btn_cont_wrap {
    border-radius: 5px;
    padding: 30px 20px;
  }
  .after_event__other__btn_cont h3 {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 20px;
  }
  .after_event__other__btn_cont ul.table {
    display: grid;
    gap: 15px;
  }
  .after_event__other__btn_cont ul.table li {
    display: grid;
    font-size: 12px;
  }
  .after_event__other__btn_cont ul.table li div:nth-child(1) {
    width: 100%
  }
  .after_event__other__btn_cont ul.table li div:nth-child(2) {
    width: 100%;
  }
  .after_event__other__btn_cont ul.overview_list {

  }
  .after_event__other__btn_cont ul.overview_list li {
    display: flex;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.8;
    text-align: left;
  }
  .after_event__other__btn_cont ul + h3 {
    border-top: 1px solid #080F00;
    padding-top: 30px;
    margin-top: 30px;
  }
}
.after_event__other__btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  padding: 10px;
  background-color: #080F00;
  min-width: 360px;
  position: relative;
  cursor: pointer;
  margin-top: 40px;
  margin-bottom: 0px;
  box-sizing: border-box;
  border-radius: 5px;
}
.after_event__other__btn:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/box_arrow02_w.svg);
  background-size: cover;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.after_event__other__btn.active:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/box_arrow01_w.svg);
  background-size: cover;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.after_event__other__btn .open {
  display: none;
}
.after_event__other__btn.active .open {
  display: inline-block;
}
.after_event__other__btn.active .close {
  display: none;
}
@media only screen and (max-width: 991px) {
  .after_event__other__btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
    padding: 10px;
    background-color: #080F00;
    min-width: 100%;
    position: relative;
    cursor: pointer;
    margin-top: 24px;
  }
}

.sponsor ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.entry {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}
.overview ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.overview ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
}
.sns ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}
.sns ul li {
  width: 50px;
}
@media only screen and (max-width: 991px) {
  .sponsor ul {
  }
  .entry {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 20px 20px 30px;
  }
  .overview ul {
    list-style: none;
    display: grid;
    gap: 10px;
  }
  .overview ul li {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: left;
  }
  .sns ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .sns ul li {
    width: 50px;
  }
}

.sp_timetable {
  display: none;
}
@media only screen and (max-width: 991px) {
  body {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .scroll_in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }
  .scroll_in.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .sp_timetable {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 99;
  }
  .sp_timetable_area {
    background-color: #fff;
    padding: 14px;
    box-sizing: border-box;
    color: #080F00;
    border-radius: 3px;
  }
  .sp_timetable_area > p {
    display: flex;
    flex-wrap: wrap;
    font-family: Lexend;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.05em;
    text-align: left;
    margin: 0;
    position: relative;
  }
  .sp_timetable_area > p small {
    display: block;
    width: 100%;
    font-family: BIZ UDPGothic;
    font-size: 10px;
    font-weight: 400;
    line-height: 10px;
    letter-spacing: 0.1em;
    text-align: left;
  }
  .sp_timetable_area > p:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/box_arrow02.svg);
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    margin: auto;
  }
  .sp_timetable_area > p.active:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/box_arrow01.svg);
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    margin: auto;
  }
  .sp_timetable_wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .sp_timetable_list {
    list-style: none;
    display: grid;
    gap: 3px;
    overflow: hidden;
    overflow-y: scroll;
    height: 180px;
  }
  .sp_timetable_list li {
    background-color: #F4F4F4;
  }
  .sp_timetable_list li a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 10px;
    box-sizing: border-box;
  }
  .sp_timetable_list li a div:nth-child(1) {
    font-family: Lexend;
    font-size: 13px;
    font-weight: 400;
    line-height: 16.25px;
    letter-spacing: 0.05em;
    text-align: left;
  }
  .sp_timetable_list li a div:nth-child(2) {
    font-family: Lexend;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0.03em;
  }

  .sp_fixed {
    position: fixed;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 99;
    text-align: center;
  }
}


/*form*/
.entry .hs-form {
  max-width: 800px;
  margin: 0 auto;
}
.entry .hs-form ul {
  list-style: none;
}
.entry .hs-form-field label {
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  width: auto;
  line-height: 1.4;
  margin-bottom: 0.3rem;
  color: #1b1b1b;
}
.entry .hs-form fieldset .hs-error-msg {
  color: red;
}
.entry .hs-form fieldset {
  margin-bottom: 15px;
  width: 100%;
  max-width: 100%;
}
.entry .hs-form fieldset input {
  width: 100%;
  padding: 5px 15px;
  outline: none;
  word-break: keep-all;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 12px;
  border-style: solid;
  border-width: 2px;
  border-color: #cccccc;
  -moz-border-radius: 10px;
  border-radius: 10px;
  box-sizing: border-box;
}
.entry .hs-form fieldset input[type=checkbox] {
  width: auto;
  padding: 5px;
  border-radius: 0;
  position: relative;
}
.entry .hs-form fieldset input[type=checkbox]:checked:before {
  position: absolute;
  top: -1px;
  left: 3px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}
.entry .hs-form fieldset select {
  width: 100%;
  height: 100%;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 10px 35px 10px 19px;
  background: transparent;
  font-weight: 400;
  font-size: 12px;
  color: #000;
  cursor: pointer;
  position: relative;
  z-index: 1;
  width: 100%;
  position: relative;
  background: #fff;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-width: 0.26667vw;
  border-color: #cccccc;
  -moz-border-radius: 1.33333vw;
  border-radius: 1.33333vw;
}
.entry .hs-form .hs-form-checkbox-display {
  display: flex;
  align-items: center;
}
.entry .hs-form .hs-richtext {
  background-color: #f2f2f2;
  color: #1b1b1b;
  padding: 20px;
  height: 150px;
  box-sizing: border-box;
  overflow-y: scroll;
  font-size: 14px;
  line-height: 1.6;
}
.entry .hs-form .hs-richtext a {
  color: blue;
}
.entry .hs-form .legal-consent-container .hs-form-booleancheckbox-display>span {
  display: flex;
  align-items: center;
}
.entry .hs-form input[type="submit"] {
  font-size: 16px;
  font-weight: bold;
  background-color: #90d600;
  color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  -moz-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  max-width: 600px;
  width: 100%;
  height: 45px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 25px auto 0;
  border: 2px solid #90d600;
}
@media only screen and (max-width: 991px) {
  .entry .hs-form fieldset input {
    width: 100%!important;
  }
  .entry .hs-form .hs_lastname {
    margin-bottom: 15px;
  }
  .entry .hs-form-field label {
    text-align: left;
    font-size: 14px;
  }
  .entry .hs-form fieldset input[type=checkbox] {
    width: auto!important;
  }
}
