* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

main {
  overflow: hidden;
  padding-top: 80px;
}

.header {
  background: #f0f0f0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: top 1s ease;
  border-bottom: 1px solid #eb50a0;
}
.header.active {
  top: 0;
}
.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.header-logo {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .header-logo {
    gap: 12px;
  }
}
.header-logo a {
  color: transparent;
}
.header-logo img {
  height: 40px;
  width: auto;
}
@media screen and (max-width: 992px) {
  .header-logo img {
    height: 30px;
  }
}
.header-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
}
.header-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  padding: 15px 20px;
  transition: all 0.3s ease;
}
.header-menu li a:hover {
  color: #eb50a0;
}
.header-menu li .btn {
  text-decoration: none;
  color: #fff;
  padding: 15px 20px;
  background-color: #eb50a0;
  border-radius: 8px;
  transition: 0.3s;
  cursor: pointer;
}
.header-menu li .btn:hover {
  background-color: #bc3081;
  color: #fff;
}

section {
  position: relative;
}

.anchor {
  position: absolute;
  width: 1px;
  height: 0px;
  top: -50px;
  left: 0;
}

header .mb {
  gap: 15px;
  align-items: center;
}
@media screen and (max-width: 992px) {
  header .mb {
    display: flex !important;
  }
  header .mb a {
    text-decoration: none;
    color: #fff;
    padding: 15px 20px;
    background-color: #eb50a0;
    border-radius: 8px;
    transition: 0.3s;
  }
  header .mb a:hover {
    background-color: #bc3081;
    color: #fff;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  width: 18px;
  height: 2px;
  background: #191919;
  margin: 2px 0;
  transition: all 0.3s ease;
}
.hamburger.active span {
  margin: 2px 0;
  height: 3px;
  width: 18px;
  background: #333;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  .header-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #f0f0f0;
    flex-direction: column;
    padding: 100px 0px 30px;
    gap: 0;
    transition: right 0.3s ease;
  }
  .header-menu::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #eb50a0;
  }
  .header-menu.active {
    right: 0;
  }
  .header-menu li {
    width: 100%;
    padding: 0px;
    text-align: left;
    position: relative;
  }
  .header-menu li::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 11px;
    background-image: url("./../image/icon-arrow-b.svg");
  }
  .header-menu li:last-child {
    border-bottom: none;
  }
  .header-menu li + li {
    margin-top: 20px;
  }
  .header-menu li a {
    display: block;
  }
}
footer {
  background-color: #c8c8c8;
  padding: 30px 20px;
  text-align: center;
  width: 100%;
}
footer .container p {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: #fff;
}
footer .container a {
  color: #fff;
  text-underline-offset: 3px;
}

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

.pc-flex {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .pc-flex {
    display: flex !important;
  }
}

.mb {
  display: none !important;
}
@media screen and (max-width: 992px) {
  .mb {
    display: block !important;
  }
}

[data-aos=fade-in] {
  opacity: 0;
  transition: 0.8s ease-in-out;
}

[data-aos=fade-in].aos-animate {
  opacity: 1;
}

h2:not(.title-h2) {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  display: inline-block;
  letter-spacing: 0.1em;
  color: #191919;
  justify-content: center;
  position: relative;
  letter-spacing: 0.055em;
  border-bottom: 2px solid #eb50a0;
}
@media screen and (max-width: 992px) {
  h2:not(.title-h2) {
    padding-bottom: 5px;
  }
}
h2:not(.title-h2) span:not(.pc, .en) {
  font-size: 64px;
  font-style: italic;
  display: inline-block;
  margin: 0 12px 0 8px;
  font-weight: 900;
  color: #eb50a0;
}
h2:not(.title-h2) .en {
  font-size: 24px;
  display: block !important;
  line-height: 1;
  padding: 15px 0 15px;
}
@media screen and (max-width: 992px) {
  h2:not(.title-h2) .en {
    display: block !important;
    padding: 10px 0;
    font-size: 20px;
    line-height: 1.4;
  }
}

section.index img {
  width: 100%;
}
section.foreword {
  background-color: #fff;
  padding: 150px 20px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 992px) {
  section.foreword {
    padding: 100px 20px;
  }
}
@media screen and (max-width: 992px) {
  section.foreword h2 {
    font-size: 32px;
    line-height: 42px;
  }
}
section.foreword h2 span {
  display: inline-block !important;
}
@media screen and (max-width: 992px) {
  section.foreword h2 span {
    display: none !important;
  }
}
section.foreword .container {
  margin: 50px auto 0;
  max-width: 1045px;
}
section.foreword .container .quote {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 992px) {
  section.foreword .container .quote {
    font-size: 16px;
    line-height: 20px;
  }
}
section.foreword .dec-1 {
  position: absolute;
  width: 120px;
  height: 120px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
section.foreword .dec-2 {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 0;
  top: 30%;
}
@media screen and (max-width: 992px) {
  section.foreword .dec-2 {
    width: 40px;
    height: 40px;
    top: 40px;
    left: 0;
  }
}
section.foreword .dec-3 {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 60px;
  bottom: 60px;
  transform: translateY(-50%);
}
@media screen and (max-width: 992px) {
  section.foreword .dec-3 {
    width: 40px;
    height: 40px;
    left: 40px;
    bottom: 0px;
    transform: translate(0, 0);
  }
}
section.spotlight {
  background-color: #eb50a0;
  background-image: url("./../image/spotlight-bg.png");
  padding: 100px 20px 90px;
  text-align: center;
}
section.spotlight h2 {
  color: #fff;
  border-bottom: 2px solid #fff;
}
section.spotlight h2 span {
  color: #fff !important;
}
section.spotlight .container {
  margin: 50px auto 0;
  max-width: 1280px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 992px) {
  section.spotlight .container {
    flex-wrap: wrap;
    gap: 50px;
  }
}
section.spotlight .container .item {
  max-width: calc(33.333% - 20px);
  padding: 50px 60px 60px;
  background-color: #fff;
  position: relative;
}
@media (max-width: 992px) {
  section.spotlight .container .item {
    max-width: 100%;
  }
}
section.spotlight .container .item-1 .dec-1 {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 30px;
  top: 0;
}
section.spotlight .container .item-1 .dec-2 {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0px;
  top: 30px;
}
section.spotlight .container .item-1 .dec-3 {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  bottom: 0px;
}
section.spotlight .container .item-2 .dec-1 {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 30px;
  top: 30px;
}
section.spotlight .container .item-2 .dec-2 {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: 0px;
}
section.spotlight .container .item-2 .dec-3 {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0px;
  bottom: 0px;
}
section.spotlight .container .item-2 .dec-4 {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 30px;
  bottom: 30px;
}
section.spotlight .container .item-3 .dec-1 {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 30px;
  bottom: 30px;
}
section.spotlight .container .item-3 .dec-2 {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0px;
  bottom: 0px;
}
section.spotlight .container .item-3 .dec-3 {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 60px;
  top: 0px;
}
section.spotlight .container .item-3 .dec-4 {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  bottom: 0px;
}
section.spotlight .container h3 {
  font-size: 64px;
  color: #eb50a0;
  font-weight: 900;
  font-style: italic;
}
section.spotlight .container span {
  font-size: 24px;
  font-weight: 600;
  display: block;
  margin-top: 20px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
section.spotlight .container p {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 20px;
  letter-spacing: 0.08em;
}
section.information {
  background-color: #fff;
  padding: 150px 20px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  section.information {
    padding: 100px 20px;
  }
}
section.information .container {
  margin: 50px auto 0;
  max-width: 1240px;
}
section.information .container .item {
  padding: 0 20px;
}
section.information .container .item + .item {
  margin-top: 50px;
}
section.information .container h3 {
  font-size: 24px;
  font-weight: 600;
  display: block;
  margin-top: 30px;
  letter-spacing: 0.02em;
}
section.information .container p {
  font-size: 16px;
  line-height: 1.3;
  margin-top: 20px;
  letter-spacing: 0.04em;
}
section.information .container p + p {
  font-size: 15px;
  margin-top: 3px;
}
section.information .dec-1 {
  position: absolute;
  width: 120px;
  height: 120px;
  left: 120px;
  bottom: 120px;
}
section.information .dec-2 {
  position: absolute;
  width: 120px;
  height: 120px;
  right: 60px;
  top: 60px;
}
section.information .dec-3 {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 60px;
  top: 60px;
}
@media (max-width: 992px) {
  section.information .dec-3 {
    width: 40px;
    height: 40px;
    bottom: 0px;
    top: unset;
    left: 80px;
  }
}
section.information .dec-4 {
  position: absolute;
  width: 120px;
  height: 120px;
  right: 0px;
  bottom: 0px;
}
section.information .dec-5 {
  position: absolute;
  width: 80px;
  height: 80px;
  right: 0;
  top: 0px;
}
section.agenda_morning {
  background-color: #f0f0f0;
  padding: 150px 20px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  section.agenda_morning {
    padding: 100px 20px;
  }
}
section.agenda_morning .title img {
  width: 100%;
  max-width: 246px;
}
section.agenda_morning .title h2 {
  font-size: 30px;
  letter-spacing: 32px;
  text-indent: 32px;
  margin-top: 15px;
  font-weight: 700;
}
section.agenda_morning .container {
  max-width: 835px;
  margin: 50px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 70px;
  position: relative;
}
@media (max-width: 992px) {
  section.agenda_morning .container {
    gap: 50px;
    padding-left: 26px;
  }
}
section.agenda_morning .container::before {
  content: "";
  left: -24px;
  top: 10px;
  height: calc(100% - 50px);
  display: block;
  position: absolute;
  width: 1px;
  background-color: #eb50a0;
}
@media (max-width: 992px) {
  section.agenda_morning .container::before {
    left: 2px;
    height: calc(100% - 100px);
  }
}
section.agenda_morning .container .item {
  display: flex;
  gap: 30px;
  position: relative;
}
@media (max-width: 992px) {
  section.agenda_morning .container .item {
    flex-wrap: wrap;
    gap: 15px;
  }
}
section.agenda_morning .container .item::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #eb50a0;
  border-radius: 50%;
  left: -27px;
  top: 10px;
}
section.agenda_morning .container .item > span {
  font-size: 24px;
  font-weight: 600;
  width: 152px;
  min-width: 152px;
}
@media (max-width: 992px) {
  section.agenda_morning .container .item > span {
    width: 100%;
    line-height: 32px;
  }
}
section.agenda_morning .container .item > div h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
section.agenda_morning .container .item > div h3.en {
  font-size: 17px;
  line-height: 22px;
  margin-top: 3px;
}
section.agenda_morning .container .item > div h3.en span {
  width: 14px;
}
@media (max-width: 992px) {
  section.agenda_morning .container .item > div h3.en span {
    width: 0;
  }
}
section.agenda_morning .container .item > div h3 span {
  width: 14px;
  display: inline-block;
}
@media (max-width: 992px) {
  section.agenda_morning .container .item > div h3 span {
    width: 0;
  }
}
section.agenda_morning .container .item > div p {
  font-size: 16px;
  margin-top: 20px;
  padding-left: 12px;
  line-height: 20px;
}
section.agenda_morning .container .item > div p + p {
  margin-top: 3px;
}
@media (max-width: 992px) {
  section.agenda_morning .container .item > div p {
    padding-left: 0;
    margin-top: 15px;
  }
  section.agenda_morning .container .item > div p + p {
    margin-top: 3px;
  }
}
section.agenda_morning .dec-1 {
  position: absolute;
  width: 180px;
  height: 60px;
  right: 0px;
  top: 0px;
}
section.agenda_morning .dec-2 {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 0px;
  bottom: 0px;
}
@media screen and (max-width: 992px) {
  section.agenda_morning .dec-2 {
    width: 40px;
    height: 40px;
    right: 40px;
  }
}
section.agenda_morning .dec-3 {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 40px;
  top: 0px;
}
section.agenda_afternoon {
  background-color: #fff;
  padding: 150px 20px;
  text-align: center;
  position: relative;
}
section.agenda_afternoon h2.en {
  font-size: 20px;
  border-bottom: unset;
  margin-top: 10px;
  display: block;
}
@media screen and (max-width: 992px) {
  section.agenda_afternoon {
    padding: 100px 20px;
  }
  section.agenda_afternoon h2 {
    font-size: 32px;
    line-height: 42px;
  }
}
section.agenda_afternoon .tabs {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  section.agenda_afternoon .tabs {
    gap: 30px;
  }
}
section.agenda_afternoon .tabs .tab {
  text-decoration: none;
  color: #eb50a0;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 8px;
  transition: 0.3s;
  border: 2px solid #eb50a0;
  cursor: pointer;
}
section.agenda_afternoon .tabs .tab:hover {
  background-color: #f5ecf1;
}
section.agenda_afternoon .tabs .tab.active {
  text-decoration: none;
  color: #fff;
  padding: 15px 20px;
  background-color: #eb50a0;
  border-radius: 8px;
  transition: 0.3s;
  border: 2px solid #eb50a0;
}
section.agenda_afternoon .tabs .tab.active:hover {
  background-color: #bc3081;
  border: 2px solid #bc3081;
  color: #fff;
}
section.agenda_afternoon .wrapper {
  position: relative;
}
section.agenda_afternoon .container-1 {
  max-width: 806px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section.agenda_afternoon .container-1.active {
  position: relative;
  z-index: 1;
}
section.agenda_afternoon .container-2 {
  max-width: 906px;
  margin: auto;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
section.agenda_afternoon .container-2.active {
  position: relative;
  z-index: 1;
}
section.agenda_afternoon .container > div {
  margin: 50px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 70px;
  position: relative;
}
@media (max-width: 992px) {
  section.agenda_afternoon .container > div {
    gap: 50px;
    padding-left: 26px;
  }
}
section.agenda_afternoon .container > div::before {
  content: "";
  left: -24px;
  top: 10px;
  height: calc(100% - 50px);
  display: block;
  position: absolute;
  width: 1px;
  background-color: #eb50a0;
}
@media (max-width: 992px) {
  section.agenda_afternoon .container > div::before {
    left: 2px;
    height: calc(100% - 97px);
  }
}
section.agenda_afternoon .container .subtitle {
  color: #eb50a0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
section.agenda_afternoon .container .subtitle span {
  font-size: 17px;
  line-height: 1.4;
  display: block;
  margin-top: 5px;
}
section.agenda_afternoon .container .item {
  display: flex;
  gap: 30px;
  position: relative;
}
@media (max-width: 992px) {
  section.agenda_afternoon .container .item {
    flex-wrap: wrap;
    gap: 15px;
  }
}
section.agenda_afternoon .container .item::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #eb50a0;
  border-radius: 50%;
  left: -27px;
  top: 10px;
}
section.agenda_afternoon .container .item > span {
  font-size: 24px;
  font-weight: 600;
  width: 152px;
  min-width: 152px;
}
@media (max-width: 992px) {
  section.agenda_afternoon .container .item > span {
    width: 100%;
    line-height: 32px;
  }
}
section.agenda_afternoon .container .item > div h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
section.agenda_afternoon .container .item > div h3.en {
  font-size: 17px;
  line-height: 22px;
  margin-top: 3px;
}
section.agenda_afternoon .container .item > div h3.en span {
  width: 14px;
}
@media (max-width: 992px) {
  section.agenda_afternoon .container .item > div h3.en span {
    width: 0;
  }
}
section.agenda_afternoon .container .item > div h3 span {
  width: 14px;
  display: inline-block;
}
@media (max-width: 992px) {
  section.agenda_afternoon .container .item > div h3 span {
    width: 0;
  }
}
section.agenda_afternoon .container .item > div p {
  font-size: 16px;
  margin-top: 20px;
  padding-left: 12px;
  line-height: 20px;
}
section.agenda_afternoon .container .item > div p + p {
  margin-top: 3px;
}
@media (max-width: 992px) {
  section.agenda_afternoon .container .item > div p {
    padding-left: 0;
    margin-top: 15px;
  }
  section.agenda_afternoon .container .item > div p + p {
    margin-top: 3px;
  }
}
section.agenda_afternoon .dec-1 {
  position: absolute;
  width: 120px;
  height: 180px;
  left: 0px;
  top: 0px;
}
section.agenda_afternoon .dec-2 {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 60px;
  top: 0px;
}
@media screen and (max-width: 992px) {
  section.agenda_afternoon .dec-2 {
    width: 40px;
    height: 40px;
    right: 0px;
  }
}
section.agenda_afternoon .dec-3 {
  position: absolute;
  width: 120px;
  height: 120px;
  right: 60px;
  bottom: 0px;
}
section.agenda_afternoon .dec-4 {
  position: absolute;
  width: 80px;
  height: 80px;
  right: 40px;
  bottom: 0px;
}
section.speakers {
  background-color: #f0f0f0;
  padding: 100px 20px;
  text-align: center;
  border-top: 1px solid #c8c8c8;
}
section.speakers .title img {
  width: 100%;
  max-width: 300px;
}
section.speakers .title h2 {
  font-size: 30px;
  letter-spacing: 32px;
  text-indent: 32px;
  margin-top: 15px;
  font-weight: 600;
}
section.speakers .container {
  margin: 50px auto 0;
  max-width: 1242px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
section.speakers .container .item {
  width: calc(25% - 20px);
}
@media (max-width: 992px) {
  section.speakers .container .item {
    width: calc(50% - 10px);
  }
}
section.speakers .container .item .up {
  position: relative;
}
section.speakers .container .item .up::after {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url("./../image/speaker-dec-1.svg");
  right: 0;
  bottom: 0;
  background-size: contain;
}
@media (max-width: 992px) {
  section.speakers .container .item .up::after {
    width: 40px;
    height: 40px;
  }
}
section.speakers .container .item .up::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url("./../image/icon-line-block.svg");
  background-size: contain;
  left: 0;
  bottom: 0;
}
@media (max-width: 992px) {
  section.speakers .container .item .up::before {
    width: 20px;
    height: 20px;
  }
}
section.speakers .container .item .up img {
  width: 100%;
  vertical-align: middle;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
section.speakers .container .item .down {
  text-align: center;
  padding: 20px;
}
@media (max-width: 992px) {
  section.speakers .container .item .down {
    padding: 15px;
  }
}
section.speakers .container .item .down h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}
section.speakers .container .item .down h3 + h3 {
  font-size: 17px;
}
section.speakers .container .item .down p {
  margin-top: 10px;
  line-height: 20px;
  font-size: 16px;
}
@media (max-width: 992px) {
  section.speakers .container .item .down p {
    margin-top: 10px;
  }
}
section.speakers .container .item .down p + p {
  margin-top: 3px;
  font-size: 14px;
}
section.speakers .container .item .down .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #eb50a0;
  font-size: 16px;
  line-height: 20px;
  margin-top: 15px;
  cursor: pointer;
}
@media (max-width: 992px) {
  section.speakers .container .item .down .btn {
    margin-top: 10px;
  }
}
section.speakers .container .item .down .btn img {
  width: 6px;
  padding-top: 4px;
}
section.speakers .dec-1 {
  position: absolute;
  width: 120px;
  height: 60px;
  right: 120px;
  top: 0px;
}
@media screen and (max-width: 992px) {
  section.speakers .dec-1 {
    width: 80px;
    height: 40px;
    right: 0;
  }
}
section.register {
  background-color: #f0f0f0;
  padding: 100px 20px;
  text-align: center;
  border-top: 1px solid #c8c8c8;
}
section.register .title img {
  width: 100%;
  max-width: 280px;
}
section.register .title h2 {
  font-size: 30px;
  letter-spacing: 32px;
  text-indent: 32px;
  margin-top: 15px;
  font-weight: 600;
}
section.register .container {
  margin: 50px auto 0;
  max-width: 605px;
  text-align: left;
}
section.location {
  background-color: #f0f0f0;
  padding: 100px 20px;
  text-align: center;
  border-top: 1px solid #c8c8c8;
}
section.location .title img {
  width: 100%;
  max-width: 290px;
}
section.location .title h2 {
  font-size: 30px;
  letter-spacing: 32px;
  text-indent: 32px;
  margin-top: 15px;
  font-weight: 600;
}
section.location .container {
  margin: 50px auto 0;
  max-width: 830px;
  text-align: left;
}
section.location .container .item {
  padding: 0 20px;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  section.location .container .item {
    flex-wrap: wrap;
  }
}
section.location .container .item .left {
  width: 50%;
}
@media (max-width: 992px) {
  section.location .container .item .left {
    width: 100%;
  }
}
section.location .container .item .left iframe {
  width: 100%;
}
section.location .container .item .right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 992px) {
  section.location .container .item .right {
    width: 100%;
  }
}
section.location .container h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #191919;
  letter-spacing: 0.04em;
}
section.location .container p {
  font-size: 16px;
  line-height: 20px;
  margin-top: 20px;
  letter-spacing: 0.06em;
  color: #191919;
}
section.location .container .btn {
  text-decoration: none;
  color: #fff;
  padding: 15px 20px;
  background-color: #eb50a0;
  border-radius: 8px;
  transition: 0.3s;
  cursor: pointer;
  margin-top: 15px;
  display: inline-block;
}
section.location .container .btn:hover {
  background-color: #bc3081;
  color: #fff;
}
section.sponsor {
  background-color: #f0f0f0;
  padding: 150px 20px;
  text-align: center;
  border-top: 1px solid #c8c8c8;
}
section.sponsor .title img {
  width: 100%;
  max-width: 284px;
}
section.sponsor .title h2 {
  font-size: 30px;
  letter-spacing: 32px;
  text-indent: 32px;
  margin-top: 15px;
  font-weight: 700;
}
section.sponsor .img1_1 {
  max-width: 200px;
}
section.sponsor .img2_1,
section.sponsor .img2_2 {
  max-width: 240px;
}
section.sponsor .img3_1 {
  max-width: 170px;
}
section.sponsor .h3-1 {
  margin-top: 50px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
section.sponsor .h3-2 {
  margin-top: 80px;
  font-size: 24px;
  letter-spacing: 0.04em;
  font-weight: 600;
}
section.sponsor .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1280px;
  margin: 30px auto 0;
}
@media (max-width: 992px) {
  section.sponsor .container {
    gap: 30px 20px;
  }
}
section.sponsor .container .item {
  width: calc(25% - 23px);
}
@media (max-width: 992px) {
  section.sponsor .container .item {
    width: calc(100% - 10px);
  }
}
section.notice {
  background-color: #f0f0f0;
  padding: 150px 20px;
  text-align: center;
  border-top: 1px solid #c8c8c8;
}
section.notice .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  width: 100%;
  margin: 50px auto 0;
}
@media (max-width: 992px) {
  section.notice .container {
    gap: 30px 20px;
  }
}
section.notice .container .item {
  text-align: left;
}
section.notice .container .item p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #191919;
  letter-spacing: 0.04em;
}
section.notice .container .item ol {
  margin-top: 10px;
  list-style-type: decimal;
  list-style-position: inside;
  line-height: 1.7;
}
section.notice .container .item ul {
  margin-top: 10px;
  list-style-position: inside;
  line-height: 1.7;
}

.popup-1 {
  position: fixed;
  width: 100%;
  z-index: 11112;
  max-width: 937px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 60px 120px;
  display: none;
}
@media screen and (max-width: 992px) {
  .popup-1 {
    width: calc(100% - 40px);
    padding: 80px 40px;
  }
}
@media screen and (max-width: 500px) {
  .popup-1 {
    padding: 100px 40px;
  }
}
.popup-1 .dec-1 {
  position: absolute;
  width: 120px;
  height: 120px;
  left: 0;
  bottom: 0px;
}
@media screen and (max-width: 992px) {
  .popup-1 .dec-1 {
    width: 80px;
    height: 80px;
  }
}
.popup-1 .dec-2 {
  position: absolute;
  width: 120px;
  height: 120px;
  right: 0;
  top: 0px;
  z-index: -1;
}
@media screen and (max-width: 992px) {
  .popup-1 .dec-2 {
    width: 80px;
    height: 80px;
  }
}
.popup-1 .dec-3 {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 60px;
  top: 0px;
}
@media screen and (max-width: 992px) {
  .popup-1 .dec-3 {
    width: 40px;
    height: 40px;
    left: 40px;
    top: 40px;
  }
}
.popup-1 .dec-close {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 0;
  top: 0px;
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .popup-1 .dec-close {
    width: 40px;
    height: 40px;
  }
}
.popup-1 .container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .popup-1 .container {
    flex-direction: column;
    max-height: 60vh;
    overflow: auto;
  }
}
.popup-1 .container .image {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .popup-1 .container .image {
    width: 100%;
  }
}
.popup-1 .container .image img {
  width: 100%;
  display: inline-block;
  max-width: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.popup-1 .container .image p {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
}
.popup-1 .container .content {
  width: 50%;
  padding-left: 30px;
}
@media screen and (max-width: 992px) {
  .popup-1 .container .content {
    width: 100%;
    padding-left: 0px;
    margin-top: 30px;
  }
}
.popup-1 .container .content h3 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.popup-1 .container .content span {
  margin-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.popup-1 .container .content p {
  margin-top: 30px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.05em;
}

.popup-black {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.7;
  z-index: 11111;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */