@charset "UTF-8" ;


/* base
------------------------------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

html { font-size: 62.5%; }

body {
  color: #FFFFFF; /*ここは自由*/
  font-size: 1.4rem;
  font-display: optional;
  background-color: #000; 
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1c70b5;/*ここは自由*/
  text-decoration: none;
}


/* 
------------------------------------------------------------------------------------*/
.wraper {
  height: 100svh;
  overflow: auto;
  scroll-snap-type: y mandatory;
  /* scroll-snap-type: y proximity; */
  -webkit-overflow-scrolling: touch;
}

.sp_br { display: none; }

.content_wrap {
  width: 100vw;
  min-height: 680px;
  height: 100svh;
  background: center top / cover no-repeat;
  display: grid;
  place-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;

  /*
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  */
}

.content_wrap_inner {
  padding: 40px 72px;
  /*
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px 72px;
  */
}

.prev_nextBtn_wrap {
  width: 360px;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
}

.prev_btn,
.next_btn { width: 90px; }
.prev_btn { margin-right: 180px; }

.back_btn { width: 118px; }

@media screen and (min-width: 768px) and (max-width: 980px) and (max-height: 740px) {
  .content_wrap_inner { margin-top: -24px; }
}

@media screen and (max-width: 767px) {
  .sp_br { display: block; }

  .content_wrap {
    min-height: auto;
    overflow-y: scroll;
  }

  .content_wrap_inner {  
    width: 100%;
    padding: 32px 16px 24px;
  }

  .prev_nextBtn_wrap {  
    width: 85.3%;
    position: relative;
    bottom: auto;
    left: auto;
    margin: 24px auto 0;
    transform: translateX(0);
  }
  
  .prev_btn,
  .next_btn { width: 70px; }
  .prev_btn { margin-right: 100px; }  
  .back_btn { width: 105px; }
}


/* front_wrap
------------------------------------------------------------------------------------*/
.front_wrap { background-image: url(../img/front_backImg_pc.webp); }

.front_welcomeTxt {
  width: 123px;
  margin: 0 auto;
  animation: bound 5s infinite;
}

@keyframes bound {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  17% { transform:translateY(0) }
  20% { transform:translateY(-25px) }
  23% { transform:translateY(0) }
  25% { transform:translateY(-15px) }
  32% { transform:translateY(0) }
  100% { transform:translateY(0) }
}

.front_logo {
  width: 129px;
  margin: 24px auto 0;
}

@media screen and (max-width: 767px) {
  .front_wrap { background-image: url(../img/front_backImg_sp.webp); }

  .front_wrap .prev_nextBtn_wrap {  
    width: 85.3%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
  }
}


/* introduction
------------------------------------------------------------------------------------*/
.introdaction_wrap { background-image: url(../img/introduction_backImg_pc.webp); }

.introduction_tit {
  width: 266px;
  margin: 0 auto;
}

.introduction_txt_wrap {
  width: 500px;
  background:rgba(0, 0, 0, 0.5);
  margin-top: 24px;
  padding: calc(32px - 6px) 0;
}

.introduction_txt {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2.8rem;
}

@media screen and (max-width: 767px) {
  .introdaction_wrap { background-image: url(../img/introduction_backImg_sp.webp); }

  .introduction_tit {
    width: 238px;
  }

  .introduction_txt_wrap {
    width: 100%;
    max-width: 500px;
    margin: 32px auto 0;
    padding: calc(32px - 7px) 0;
  }

  .introduction_txt {
    font-size: 1.4rem;
    text-align: center;
    line-height: 2.8rem;
  }
}

@media screen and (max-width: 339px) {
  .introduction_txt { letter-spacing: -0.06em; }
}


/* menu
------------------------------------------------------------------------------------*/
.menu_wrap { background-image: url(../img/menu_backImg_pc.webp); }

.menu_wrap_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.menu_tit {
  width: 116px;
  margin-left: 24px;
}

.menu_txt_wrap {
  width: auto;
  max-width: 500px;
  background:rgba(0, 0, 0, 0.5);
  order: -1;
  padding: calc(32px - 12px) 0 calc(32px - 6px) 32px;
}

.menu_list_wrap {
  font-size: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
}
.menu_list_wrap:first-of-type { margin-top: 0; }

.menu_list_tit {
  width: 40%;
  margin-top: 12px;
}

.menu_list_val {
  width: 60%;
  margin-top: 12px;
}

.menu_annotation_wrap {
  font-size: 1.4rem;
  list-style: none;
  margin-top: calc(72px - 8px);
}

.menu_annotation {
  --fs: 1.4rem;
  --fh: 1.8rem;
  font-size: var(--fs);
  text-indent: -1em;
  line-height: var(--fh);  
  margin: calc(8px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
  padding-left: 1em;
}

@media screen and (max-width: 767px) {
  .menu_wrap { background-image: url(../img/menu_backImg_sp.webp); }
  
  .menu_wrap_inner { display: block; }
  
  .menu_tit {
    width: 106px;
    margin: 0 auto;
  }

  .menu_txt_wrap {
    margin: 32px auto 0;
    padding: calc(32px - 31px) 16px calc(32px - 6px) 16px;
  }
  
  .menu_list_wrap {
    font-size: 1.4rem;
    display: block;
    margin-top: 16px;
  }

  .menu_list_wrap:last-of-type {
    border-bottom: #aaa solid 1px;
    padding-bottom: 16px;
  }
  
  .menu_list_tit {
    width: auto;
    border-top: #aaa solid 1px;
    margin-top: 16px;
    padding-top: 16px;
  }
  
  .menu_list_val {
    width: auto;
    text-align: right;
    margin-top: 20px;
    margin-top: 8px;
  }
  
  .menu_annotation_wrap { margin-top: calc(56px - 8px); }
}


/* information
------------------------------------------------------------------------------------*/
.information_wrap { background-image: url(../img/information_backImg_pc.webp); }

.information_wrap_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.information_tit {
  width: 248px;
  margin-right: 24px;
}

.information_txt_wrap {
  width: auto;
  max-width: 500px;
  background:rgba(0, 0, 0, 0.5);
  padding: calc(32px - 20px) 0 calc(32px - 6px) 32px;
}

.information_list_wrap {
  display: flex;
  flex-wrap: wrap;
}

.information_list_tit {
  width: 25%;
  font-size: 1.6rem;
  margin-top: 20px;
}

.information_list_val {
  --fs: 1.6rem;
  --fh: 2rem;
  width: 75%;
  font-size: var(--fs);
  line-height: var(--fh);  
  margin: calc(20px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
}

.information_list_annotation {
  --fs: 1.2rem;
  --fh: 1.6rem;
  font-size: var(--fs);
  text-indent: -1em;
  line-height: var(--fh);
  margin: calc(6px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
  padding-left: 1em;
}

.information_annotation_wrap {
  list-style: none;
  margin-top: calc(64px - 8px);
}

.information_annotation {
  --fs: 1.4rem;
  --fh: 1.8rem;
  font-size: var(--fs);
  text-indent: -1em;
  line-height: var(--fh);  
  margin: calc(8px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
  padding-left: 1em;
}

@media screen and (max-width: 767px) {
  .information_wrap { background-image: url(../img/information_backImg_sp.webp); }

  .information_wrap_inner { display: block; }
  
  .information_tit {
    width: 222px;
    margin: 0 auto;
  }
  
  .information_txt_wrap {
    margin: 32px auto 0;
    padding: calc(32px - 20px) 6px calc(32px - 6px) 16px;
  }
  
  .information_list_tit {
    width: 80px;
    font-size: 1.4rem;
    margin-top: 20px;
  }
  
  .information_list_val {
    --fs: 1.4rem;
    --fh: 1.8rem;
    width: calc(100% - 80px);
  }
  
  .information_list_annotation {
    --fs: 1.2rem;
    --fh: 1.6rem;
    font-size: var(--fs);
    line-height: var(--fh);
    margin: calc(4px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
  }
  
  .information_annotation_wrap { margin-top: calc(56px - 8px); }
}


/* event
------------------------------------------------------------------------------------*/
.event_wrap { background-image: url(../img/event_backImg_pc.webp); }

.event_wrap_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.event_tit {
  width: 118px;
  margin-left: 24px;
}

.event_txt_wrap {
  width: 500px;
  background:rgba(0, 0, 0, 0.5);
  order: -1;
  padding: calc(32px - 12px) 32px calc(32px - 6px);
}

.event_txt {
  font-size: 1.6rem;
  line-height: 2.8rem;
}

.event_list_wrap {
  list-style: none;
  margin: 16px 0;
}

.event_list {
  font-size: 1.6rem;
  line-height: 2.8rem;
  text-indent: -1em;
  padding-left: 1em;
}



@media screen and (max-width: 767px) {
  .event_wrap { background-image: url(../img/event_backImg_sp.webp); }

  .event_wrap_inner { display: block; }
  
  .event_tit {
    width: 82px;
    margin: 0 auto;
  }
  
  .event_txt_wrap {
    width: auto;
    margin: 32px auto 0;
    padding: calc(32px - 7px) 16px calc(32px - 6px);
  }

  .event_txt {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }

  .event_list {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}


/* access
------------------------------------------------------------------------------------*/
.access_wrap { background-image: url(../img/access_backImg_pc.webp); }

.access_wrap_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.access_tit {
  width: 274px;
  position: absolute;
  visibility: hidden;
  /*
  width: 274px;
  position: absolute;
  right: 72px;
  */
}

.access_txt_wrap {
  width: 100%;
  min-width: 274px;
  display: flex;
  margin-left: 24px;
  /*
  width: 100%;
  min-width: 274px;
  display: flex;
  flex-flow: column;
  justify-content: end;
  margin: calc(34px + 16px) 0 0 24px; // calc(24px + 16px);
  */
}

.access_txt_wrap_inner {
  height: 100%;
  display: flex;
  flex-flow: column;
  margin-left: auto;
  margin-right: 0;
  /*
  margin-left: auto;
  margin-right: 0;
  */
}

.access_txt_wrap_inner::before {
  content: "";
  width: 274px;
  height: 34px;
  background: url(../img/access_tit.svg) no-repeat;
  display: block;
  margin-bottom: auto;
}

.access_subTit {
  font-weight: normal;
  padding-top: 24px;
  /*
  font-weight: normal;
  margin-top: 56px;
  */
}

.access_subTit:first-of-type { margin-top: 0px; }

.access_list_wrap { margin: 0 0 16px 22px; }

.access_list {
  --fs: 1.6rem;
  --fh: 2rem;
  font-size: var(--fs);
  line-height: var(--fh);  
  margin: calc(12px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
}

.access_txt {
  --fs: 1.6rem;
  --fh: 2.2rem;
  font-size: var(--fs);
  line-height: var(--fh);  
  margin: calc(12px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
}

.access_sns_wrap {
  display: flex;
  margin: 16px 0;
}

.access_sns {
  width: 30px;
  margin-right: 16px;
}

.access_map {
  width: 100%;
  max-width: 500px;
  height: 500px;
  order: -1;
}

@media screen and (max-width: 767px) {
  .access_wrap { background-image: url(../img/access_backImg_sp.webp); }

  .access_wrap_inner { flex-flow: column; }
  
  .access_tit {
    width: 245px;
    visibility: visible;
    position: relative;
    right: auto;
    margin: 0 auto;
  }
  
  .access_txt_wrap {
    order: 1;
    min-width: auto;
    margin: 32px 0 0 0;
    padding-bottom: 32px;
  }

  .access_txt_wrap_inner::before {
    display: none;
  }
  
  .access_subTit {
    font-size: 1.4rem;
    margin-top: 40px;
    padding: 0;
  }
  
  .access_list {
    --fs: 1.4rem;
    --fh: 1.8rem;
  }
  
  .access_txt {
    --fs: 1.4rem;
    --fh: 2rem;
  }
  
  .access_map {
    height: calc(100svw - 32px);
    max-width: 500px;
    order: 0;
    margin: 32px auto 0;
  }
  
  .access_wrap_inner .prev_nextBtn_wrap { order: 2; }
}


/* end
------------------------------------------------------------------------------------*/
.end_wrap { background-image: url(../img/end_backImg_pc.webp); }

.end_cheersTxt {
  width: 251px;
  margin: 0 auto;
}

.footer_wrap {
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}

.footer_wrap a { color: #fff; }
.footer_wrap a:hover { text-decoration: underline; }

@media screen and (max-width: 767px) {
  .end_wrap { background-image: url(../img/end_backImg_sp.webp); }
  
  .end_cheersTxt { width: 230px; }

  .footer_wrap {
    width: 100%;
    text-align: center;
    display: block;
    left: 0;
  }

  .end_wrap .prev_nextBtn_wrap {  
    width: 85.3%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer_wrap small {
    display: block;
    margin-top: 8px;
  }
}



/*
.front_wrap { display: none; }
.introdaction_wrap { display: none; }
.menu_wrap { display: none; }
.information_wrap { display: none; }
.event_wrap { display: none; }
.access_wrap { display: none; }
.end_wrap { display: none; }
*/