@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-origin: border-box;
}
:root {
  --main-primary: #fff;
  --main-secondary: #fded98;
  --main-font: "Noto Serif JP", serif;
  --sub-font: "Montserrat", sans-serif;
  --main-bg: #030410;
  font-size: 10px;
}
html {
  scroll-behavior: smooth;
}
body {
  display: block;
  overflow-x: hidden;
  width: 100%;
  font-style: normal;
  font-family: var(--main-font);
  color: var(--main-primary);
  background-color: var(--main-bg);
}
/*====================================*/
/* base contents */
/*====================================*/
h3,
h4 {
  font-weight: 400;
  line-height: 1.8;
}
p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.2;
}
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
ul li {
  color: currentColor;
}
img {
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  display: block;
}
.animate,
.animate-delay {
  opacity: 0;
  transition: all 0.8s ease-in-out;
  position: relative;
}
.animate-delay {
  transition-delay: 0.5s;
}
.slide-up {
  transform: translateY(100px);
}
.slide-down {
  transform: translateY(-100px);
}
.slide-left {
  transform: translateX(100px);
}
.slide-right {
  transform: translateX(-100px);
}
.animate.active {
  opacity: 1;
  transform: translate(0, 0);
}
.animate_logo {
  position: absolute !important;
}
.animate_logo.active {
  opacity: 1;
  transform: translate(0, 0);
}
@media (max-width: 768px) {
  .animate_logo.active {
    transform: translate(-50%, 0);
  }
}
/* ------------------------
    edit contents
------------------------- */
/* 指定フォント ここから */

/* ----pc,sp/on_off---- */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/*====================================*/
/* Header */
/*====================================*/
header {
  position: relative;
}
.header_logo {
  position: absolute;
  /* top: 161px;
  left: 215px; */
  top: min(80px, 16vh);
  left: 12vw;
  width: clamp(200px, 30vw, 632px);
}
@media (max-width: 768px) {
  .header_logo {
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
  }
}
/*====================================*/
/* Main */
/*====================================*/
/* LP Content1 */
.lp_content01 {
  margin-top: 87px;
  overflow-x: hidden;
}
.lp_content01 .hero {
  padding-top: 80px;
  text-align: center;
  background: url(../img/hero_bg.webp) no-repeat;
  background-size: cover;
}
.hero .hero_title {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.8;
}
.hero .hero_title span {
  display: block;
  font-family: var(--sub-font);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--main-secondary);
  margin-top: 8px;
}
.hero .hero_text {
  position: relative;
}
.hero .hero_text::before,
.hero .hero_text::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  max-width: 721px;
  height: 20px;
  background-image: url(../img/svg/line_1.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  left: 50%;
  transform: translateX(-50%);
  transition-delay: 1s;
}
.hero .hero_text::before {
  top: 68px;
}
.hero .hero_text::after {
  bottom: 133px;
}
.hero .hero_text p:first-child {
  padding-top: 100px;
}
.hero .hero_text .time {
  margin-top: 32px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.8;
  padding-bottom: 165px;
}
.hero .hero_text .time span {
  margin-top: 16px;
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.2;
}
.lp_content01 .list {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(259deg, rgba(25, 31, 73, 0.6) 0%, rgba(7, 11, 37, 0.6) 100%);
  max-width: 1080px;
  margin: 0 auto;
}
.lp_content01 .list::before,
.lp_content01 .list::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/svg/line_3.svg) no-repeat;
  background-size: cover;
  width: 126px;
  height: 145px;
}
.lp_content01 .list::before {
  left: -9%;
  top: 6%;
}
.lp_content01 .list::after {
  right: -5%;
  top: 28%;
}
.lp_content01 .list .title {
  padding: 40px 40px 0 40px;
}
.lp_content01 .list .title p {
  position: relative;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.8;
}
.lp_content01 .list .title p::after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: 1px solid var(--main-primary);
  width: 100%;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
}
.lp_content01 .list .title p > span {
  position: absolute;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.2;
  right: 0;
  bottom: -6px;
}
.lp_content01 .list .grid_container {
  margin-top: 45px;
  padding: 0 40px 40px 40px;
  display: grid;
  grid-template-areas:
    "text-1 text-3"
    "text-2 text-3";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
.list .grid_container .op .op_label,
.event .event_2 .event_detail--text .event_time p:first-child {
  background-color: var(--main-primary);
  color: var(--main-bg);
  padding: 0 8px;
  font-weight: 700;
  line-height: 2.2;
  width: fit-content;
}
.list .grid_container .op .op_detail,
.event .event_2 .event_detail--text .event_time p:last-child {
  margin-top: 24px;
}
.list .grid_container .op .op_detail p,
.event .event_2 .event_detail--text .event_time li p:last-child {
  position: relative;
  display: flex;
  gap: 52px;
}
.list .grid_container .op .op_detail p span,
.event .event_2 .event_detail--text .event_time li p:last-child span {
  display: block;
  position: relative;
}
.list .grid_container .op .op_detail p span:first-child:after,
.event .event_2 .event_detail--text .event_time li p:last-child span:first-child:after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../img/svg/star.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
}
.list .grid_container .op .op_detail .op_2 {
  margin-top: 16px;
}
.text_1 {
  grid-area: text-1;
}
.text_2 {
  grid-area: text-2;
  margin-top: 40px;
}
.text_3 {
  grid-area: text-3;
}
.lp_content01 .list_btn {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.btn {
  background: transparent;
}
.btn a {
  position: relative;
  border: 1px solid var(--main-primary);
  padding: 14px 24px 14px 58px;
  color: var(--main-secondary);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.8;
  display: block;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  overflow: hidden;
}
.btn a::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../img/svg/star_yl.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 3;
}
.btn a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 165, 0, 0.6) 30%, rgba(255, 69, 0, 0.4) 60%, transparent 100%);
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
  opacity: 0;
  border-radius: 2px;
}
.btn a:hover {
  padding: 14px 58px 14px 24px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}
.btn a:hover::before {
  left: unset;
  right: 30px;
  transform: translateY(-50%) rotate(720deg) scale(1.3);
  filter: drop-shadow(0 0 12px var(--main-primary)) brightness(1.2);
  animation: starPulse 0.8s ease-out;
}
.btn a:hover::after {
  width: 100px;
  height: 4px;
  opacity: 0.7;
  right: 50px;
  left: unset;
  background: linear-gradient(-90deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 165, 0, 0.6) 30%, rgba(255, 69, 0, 0.4) 60%, transparent 100%);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}
@keyframes starPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 12px var(--main-primary)) brightness(1.2);
  }
  50% {
    filter: drop-shadow(0 0 20px var(--main-primary)) brightness(1.4);
  }
}
/* LP Content2 */
.lp_content02 {
  position: relative;
  padding-top: 160px;
  z-index: 1;
  overflow-x: hidden;
}
.content_title {
  position: relative;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  padding-bottom: 40px;
}
.content_title::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/svg/line_2.svg) no-repeat;
  background-size: cover;
  width: 140px;
  height: 20px;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
}
.content_title span {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.2;
  margin-bottom: -9px;
}
.lp_content02 .schedule_main {
  margin-top: 49px;
}
.schedule_main .schedule_main--list {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
}
.schedule_main .schedule_main--list .set {
  flex: 1;
  border-radius: 16px;
  border: 1px solid var(--main-primary);
  padding: 32px;
}
.schedule_main--list .set p:first-child {
  position: relative;
  padding-bottom: 12px;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.8;
}
.schedule_main--list .set p:first-child::after {
  position: absolute;
  content: "";
  border-bottom: 1px solid var(--main-primary);
  width: 100%;
  bottom: 0;
  left: 0;
}
.schedule_main--list .set p:last-child {
  margin-top: 24px;
}
.schedule_main .schedule_main--note {
  text-align: justify;
  margin: 49px auto 0;
  width: fit-content;
}
.schedule_main .schedule_main--infor {
  margin: 120px auto 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1080px;
}
.schedule_main .schedule_main--infor .half_left {
  width: 40.9%;
  max-width: 440px;
}
.schedule_main--infor .half_left h3 {
  font-size: 3.4rem;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--main-primary);
}
.schedule_main--infor .half_left p {
  margin-top: 40px;
}
.schedule_main .schedule_main--infor .half_right {
  width: 55.7%;
  max-width: 600px;
  border-radius: 16px;
  background: linear-gradient(259deg, rgba(25, 31, 73, 0.6) 0%, rgba(7, 11, 37, 0.6) 100%);
  padding: 32px 40px 40px;
}
.schedule_main--infor .half_right .label {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.8;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--main-primary);
}
.schedule_main--infor .half_right .detail {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.schedule_main--infor .half_right .detail li {
  display: flex;
  align-items: flex-start;
  gap: 36px;
}
.schedule_main--infor .half_right .detail li:nth-child(3) {
  gap: 16px;
}
.schedule_main--infor .half_right .detail li:nth-child(4) {
  gap: 46px;
}
.schedule_main--infor .half_right .detail li p:first-child {
  width: fit-content;
  background-color: var(--main-primary);
  color: var(--main-bg);
  padding: 0 8px;
}
.schedule_main--infor .half_right .detail li p:last-child {
  width: 73%;
}
.lp_content02 .activity {
  margin-top: 160px;
}
.activity .activity_adver {
  position: relative;
}
.activity .activity_adver .img {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.activity .activity_adver .img img {
  flex: 1;
}
.activity .activity_adver .text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.activity .activity_adver .text h3 {
  font-size: 3.4rem;
  margin-bottom: 16px;
}
.activity .activity_adver .text p {
  width: max-content;
  margin: 0 auto;
}
.activity .activity_infor {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  display: flex;
  justify-content: center;
  gap: 72px;
}
.activity .activity_infor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/hero_bg.webp") no-repeat center center / cover;
  opacity: 0.5;
  z-index: -1;
}
.activity .activity_infor .half_left h3 {
  font-size: 3.4rem;
}
.activity .activity_infor .half_left h3 span {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.2;
}
.activity .activity_infor .half_left p {
  margin-top: 61px;
}
.activity .activity_infor .half_right img {
  border-radius: 16px;
}
.decor {
  position: absolute;
  z-index: -1;
}
.decor1 {
  background: url(../img/svg/decor1.svg) no-repeat;
  background-size: cover;
  width: 428.246px;
  height: 395px;
  left: 0;
  top: 0;
  animation: float 6s ease-in-out infinite;
}
.decor2 {
  background: url(../img/svg/decor2.svg) no-repeat;
  background-size: cover;
  width: 938px;
  height: 1290px;
  right: 0;
  top: -5%;
}
.decor3 {
  background: url(../img/svg/decor3.svg) no-repeat;
  background-size: contain;
  width: 994px;
  height: 994px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.decor4 {
  background: url(../img/svg/decor4.svg) no-repeat;
  background-size: cover;
  width: 520.982px;
  height: 465px;
  left: 0;
  top: 23%;
}
/* LP Content 3 */
.lp_content03 {
  position: relative;
}
/* .lp_content03 .content_title {
  padding-bottom: 40px;
} */
.lp_content03 .content_title span {
  color: var(--main-secondary);
}
.lp_content03 .event {
  max-width: 1080px;
  margin: 0 auto;
}
.lp_content03 .event .event_detail {
  margin-top: 40px;
  padding: 40px;
  border-radius: 16px;
  background: linear-gradient(259deg, rgba(25, 31, 73, 0.6) 0%, rgba(7, 11, 37, 0.6) 100%);
  z-index: 3;
}
.event .event_detail .event_detail--title h4 {
  font-size: 3.4rem;
  color: var(--main-secondary);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--main-primary);
}
.event .event_detail .event_detail--text {
  margin-top: 32px;
}
.event .event_1 .event_detail--title h4 {
  max-width: 500px;
}
.event .event_1 {
  position: relative;
}
.event .event_1::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../img/moon_night.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 519px;

  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
  right: 0;
  top: 0;
  border-radius: 0 16px 16px 0;
  z-index: -1;
}
.event .event_1 .event_detail--text {
  position: relative;
  z-index: 2;
}
.event .event_2 .event_detail--text .event_time {
  margin-top: 40px;
}
.event .event_2 .event_detail--text .event_time li:last-child {
  margin-top: 24px;
}
.event .event_2 .event_detail--text .event_time p:first-child {
  font-weight: 500;
  line-height: 2.2;
}
.event .event_2 .event_detail--text .event_menu {
  margin-top: 48px;
  display: flex;
  gap: 17px;
}
.event .event_2 .event_detail--text .event_menu li {
  flex: 1;
  position: relative;
}
.event .event_2 .event_detail--text .event_menu li img {
  border-radius: 8px;
}
.event .event_2 .event_detail--text .event_menu li p:first-child {
  position: absolute;
  padding: 0 8px;
  color: var(--main-bg);
  background-color: var(--main-primary);
  top: 0;
  left: 0;
  border-radius: 8px 0;
}
.event .event_2 .event_detail--text .event_menu li p:last-child {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-weight: 700;
}
.event .event_2 .event_detail--text .event_menu li p:last-child span {
  display: block;
  margin-top: -9px;
}
.lp_content03 .event_note {
  max-width: 1080px;
  margin: 160px auto 115px;
  width: fit-content;
}
@media (max-width: 768px) {
  .hero .hero_title {
    font-size: 2.4rem;
    line-height: 1.7;
  }
  .hero .hero_title span {
    font-size: 2rem;
    line-height: 1.8;
  }
  .hero .hero_text {
    padding: 0 24px;
    text-align: left;
    font-size: 1.6rem;
  }
  .hero .hero_text::before,
  .hero .hero_text::after {
    width: calc(100% - 48px);
    background-size: contain;
  }
  .hero .hero_text p:first-child {
    font-size: 1.6rem;
    padding-top: 76px;
  }
  .hero .hero_text .time {
    margin-top: 16px;
    font-size: 2rem;
    text-align: center;
  }
  .hero .hero_text .time span {
    font-size: 1.6rem;
  }
  .hero .hero_text::before {
    top: 60px;
  }
  .lp_content01 {
    overflow-x: hidden;
  }
  .lp_content01 .list .title {
    padding: 40px 16px 0 16px;
  }
  .lp_content01 .list .title p {
    font-size: 2.4rem;
    line-height: 1.7;
    padding-bottom: 30px;
    text-align: center;
  }
  .lp_content01 .list .title p > span {
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    font-size: 1.6rem;
    width: max-content;
  }
  .lp_content01 .list .grid_container {
    grid-template-areas:
      "text-1"
      "text-2"
      "text-3";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 16px 16px 16px;
    margin-top: 40px;
  }
  .list .grid_container .op .op_label,
  .event .event_2 .event_detail--text .event_time p:first-child {
    font-size: 1.6rem;
  }
  .list .grid_container .op .op_detail p,
  .event .event_2 .event_detail--text .event_time li p:last-child {
    font-weight: 400;
    line-height: 1.7;
  }
  .text_2 {
    grid-area: text-3;
  }
  .text_3 {
    grid-area: text-2;
    margin-top: 40px;
  }
  .lp_content01 .list::before,
  .lp_content01 .list::after {
    width: 79.944px;
    height: 92px;
  }
  .lp_content01 .list::before {
    top: -25px;
    left: -12px;
  }
  .lp_content01 .list::after {
    top: unset;
    bottom: -17px;
  }
  .lp_content01 .list_btn {
    flex-direction: column;
    padding: 0 24px;
  }
  .btn a {
    font-size: 2rem;
  }
  .decor1,
  .decor2,
  .decor4 {
    display: none;
  }
  .decor3 {
    width: 100%;
    height: 390px;
  }
  .content_title {
    font-size: 2.4rem;
    line-height: 1.7;
  }
  .content_title span {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 0;
  }
  .lp_content02 .schedule_main {
    padding: 0 24px;
  }
  .schedule_main .schedule_main--list {
    flex-direction: column;
  }
  .schedule_main .schedule_main--list .set {
    padding: 16px 24px;
  }
  .schedule_main--list .set p:first-child {
    font-size: 2rem;
    line-height: 1.7;
  }
  .schedule_main--list .set p:last-child {
    font-size: 1.6rem;
  }
  .schedule_main .schedule_main--note {
    font-size: 1.6rem;
  }
  .schedule_main .schedule_main--infor {
    flex-direction: column;
  }
  .schedule_main .schedule_main--infor .half_left,
  .schedule_main .schedule_main--infor .half_right {
    width: 100%;
    max-width: none;
  }
  .schedule_main--infor .half_left h3 {
    position: relative;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.7;
    border-bottom: none;
  }
  .schedule_main--infor .half_left h3::after {
    position: absolute;
    content: "";
    border-bottom: 1px solid var(--main-primary);
    width: 140px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
  .schedule_main--infor .half_left p {
    font-size: 1.6rem;
  }
  .schedule_main .schedule_main--infor .half_right {
    padding: 24px;
  }
  .schedule_main--infor .half_right .label {
    font-size: 2rem;
  }
  .schedule_main--infor .half_right .detail li {
    flex-direction: column;
    gap: 16px;
  }
  .schedule_main--infor .half_right .detail li p:first-child {
    font-size: 1.6rem;
  }
  .schedule_main--infor .half_right .detail li p:last-child {
    width: 100%;
    font-size: 1.6rem;
  }
  .activity .activity_adver {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
  h3,
  h4 {
    line-height: 1.7;
  }
  .activity .activity_adver .text h3 {
    font-size: 2.4rem;
  }
  .activity .activity_adver .img {
    flex-direction: column;
  }
  .activity .activity_adver .text {
    position: unset;
    transform: none;
    padding: 0 24px;
  }
  .activity .activity_adver .text p {
    text-align: left;
    font-size: 1.6rem;
    width: 100%;
  }
  .activity .activity_infor {
    flex-direction: column;
  }
  .activity .activity_infor .half_left {
    text-align: center;
  }
  .activity .activity_infor .half_left h3 {
    font-size: 2.4rem;
  }
  .activity .activity_infor .half_left h3 span,
  .activity .activity_infor .half_left p {
    font-size: 1.6rem;
  }
  .activity .activity_infor .half_left p {
    margin-top: 40px;
  }
  /* .activity .activity_infor .half_right {
    padding: 0 24px;
  } */
  .lp_content03 .event .event_detail {
    margin: 40px 20px 0;
    padding: 24px;
  }
  .lp_content03 .event .event_1 {
    padding-bottom: 369px;
  }
  .event .event_1::after {
    bottom: 0;
    top: unset;
    width: 100%;
    max-width: none;
    height: 329px;
    background-position: center;
    border-radius: 0 0 16px 16px;
  }
  .event .event_detail .event_detail--title h4 {
    font-size: 2.4rem;
    text-align: center;
  }
  .event .event_detail .event_detail--text p {
    font-size: 1.6rem;
  }
  .event .event_2 .event_detail--title h4 {
    letter-spacing: 0;
  }
  @media (max-width: 425px) {
    .event .event_2 .event_detail--title h4 {
      letter-spacing: -0.1px;
    }
  }
  .event .event_2 .event_detail--text .event_time {
    margin-top: 24px;
  }
  .event .event_2 .event_detail--text .event_time li p:last-child {
    margin-top: 16px;
    flex-direction: column;
    gap: 25px;
  }
  .event .event_2 .event_detail--text .event_time li p:last-child span:first-child:after {
    left: 0;
    right: unset;
    transform: translateY(15px);
  }
  .event .event_2 .event_detail--text .event_menu {
    flex-direction: column;
  }
  .lp_content03 .event_note {
    padding: 0 24px;
  }
  .lp_content03 .event_note > p {
    font-size: 1.6rem;
  }
}
@media (max-width: 1080px) {
  .lp_content01 .list {
    margin: 0 24px;
  }
  .lp_content02 .schedule_main {
    padding: 0 24px;
  }
  /* .activity .activity_infor {
    padding: 160px 24px;
  } */
  .activity .activity_infor {
    padding: 160px 24px;
  }
  .lp_content03 .event .event_detail {
    margin: 40px 24px 0;
  }
  .lp_content03 .event_note {
    padding: 0 24px;
  }
  .footer {
    padding: 0 24px;
  }
}
/*====================================*/
/* Footer */
/*====================================*/
.footer {
  display: flex;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto 19px;
  gap: 40px;
}
.footer .ft_access p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .footer {
    padding: 0 24px;
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-bottom: 40px;
  }
}
.copyright {
  background-color: #466476;
}
.copyright p {
  padding: 16px 0;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  line-height: 170%;
  color: var(--main-primary);
}
/* pageTop */
.pageTop a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  rotate: 180deg;
  background-color: var(--main-primary);
  transition: all 0.3s ease, filter 0.3s ease;
  opacity: 0.5;
}
.pageTop a:hover {
  background-color: var(--main-primary);
  filter: drop-shadow(0px 8px 5px #3d260488);
  rotate: 270deg;
  opacity: 1;
}
.pageTop a:hover svg path,
.pageTop a:hover svg circle {
  stroke: var(--main-bg);
  fill: var(--main-primary);
}
.pageTop a:hover svg circle {
  stroke: var(--main-bg);
}
.pageTop a svg {
  width: 80px;
}


/* 25年11月 */
span.detail_title {
    font-size: 26px;
    color: white;
}.detail_row {
    margin-bottom: 38px;
}

h4.detail_title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

figcaption.detail_img {
    font-size: 20px;
    text-align: center;
    line-height: 2.2;
}

figure.detail_img {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail_item {
    flex: 1;
}

.detail_box {
    border: 1px solid white;
    border-radius: 8px;
    padding: 16px;
}

span.detail_text {
    font-size: 20px;
    line-height: 2.2;
}

small.detail_text {
    font-size: 10px;
    line-height: 2.2;
    letter-spacing: 0.2px;
}

.detail_flex {
    display: flex;
    gap: 24px;
    margin: 0;
}

div.detail_table {
  margin-top: 40px;
}

strong.detail_table {
    width: fit-content;
    padding: 4px 8px;
    background: white;
    color: #030410;
    font-size: 20px;
    float: left;
    margin-bottom: 16px;
}

ul.detail_list {
    margin-left: 96px;
    font-size: 20px;
    line-height: 2.2;
    margin-top: 28px;
}

li.detail_list::before {
    content: "※";
}

li.detail_list {display: flex;align-items: start;}

.detail_cost {display: flex;font-size: 26px;line-height: 1.8;margin-bottom: 12px;font-weight: 400;gap: 8px;align-items: center;}

.detail_cost::before {
    content: "";
    width: 1em;
    height: 1em;
    display: block;
    order: 1;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M19.9956 10C16.6645 10 9.99781 16.6638 9.99781 20C9.99781 16.6681 3.33552 10 0 10C3.33552 10 10.0022 3.33188 10.0022 0C10.0022 3.33188 16.6645 10 20 10H19.9956Z' fill='white'/%3E%3C/svg%3E");
    background-size: cover;
}


.detail_table {
    display: grid;
    gap: 14px;
    grid-auto-flow: column;
    grid-template-columns: 1fr;
}

.detail_table_col {
    display: flex;
    flex-direction: column;
}

span.detail_table:first-of-type {
    order: 0;
}

span.detail_table:last-of-type {
    order: 2;
}
p.bottom-text {
    text-align: center;
    margin-block: -35px 64px;
}

.bottom-box {
    width: 100%;
    max-width: 1080px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: linear-gradient(259deg, rgba(25, 31, 73, 0.60) 0%, rgba(7, 11, 37, 0.60) 100%);
    padding-block: 40px;
}

strong.bottom-text {
    font-size: 34px;
    color: var(--main-secondary);
    line-height: 1.8;
}

span.bottom-text {
    font-size: 26px;
    line-height: 1.8;
}

.bottom {
    padding: 24px;
}

@media screen and (max-width: 768px) {
  * {
      margin: 0;
      padding: 0;
  }

  ul.detail_list {
      margin-left: 0;
      margin-top: 40px;
      font-size: 16px;
  }

  .detail_cost {
      font-size: 20px;
  }

  span.detail_text {
      font-size: 16px;
  }

  figcaption.detail_img {
      font-size: 16px;
  }

  figure.detail_img {
      width: 60%;
  }

  .detail_row {
      flex-direction: column;
      align-items: center;
  }

  span.detail_title {
      font-size: 20px;
  }

  h4.detail_title {
      flex-direction: column;
      align-items: center;
  }

  .detail_table {
      grid-auto-flow: row;
      gap: 42px;
  }

  strong.detail_table {
      font-size: 16px;
  }

  div.detail_table {
      margin-top: 42px;
  }

  p.bottom-text {
    font-size: 16px;
    line-height: 2.2;
  }

  strong.bottom-text {
    font-size: 24px;
    line-height: 1.7;
  }

  span.bottom-text {
    font-size: 20px;
    line-height: 1.7;
  }

}
