@charset "UTF-8";
/* reset.css */
/* html 초기화 */
:root {
  --main-color: #003CDC;
  --sub-color: #FFEA00;
  --white-color: #FFFFFF;
  --font-size-15: 1.5rem;
  --font-size-20: 2rem;
  --font-size-24: 2.4rem;
  --font-size-26: 2.6rem;
  --font-size-32: 3.2rem;
  --font-size-36: 3.6rem;
  --font-size-40: 4rem;
  --font-size-50: 5rem;
  --font-size-60: 6rem;
}
@media (max-width: 1440px) {
  :root {
    --font-size-15: 1.3rem;
    --font-size-20: 1.7rem;
    --font-size-24: 2rem;
    --font-size-26: 2.2rem;
    --font-size-32: 2.7rem;
    --font-size-36: 3rem;
    --font-size-40: 3.4rem;
    --font-size-50: 4.2rem;
    --font-size-60: 5rem;
  }
}
@media (max-width: 1024px) {
  :root {
    --font-size-15: 1.1rem;
    --font-size-20: 1.4rem;
    --font-size-24: 1.6rem;
    --font-size-26: 1.8rem;
    --font-size-32: 2.2rem;
    --font-size-36: 2.4rem;
    --font-size-40: 2.7rem;
    --font-size-50: 3.4rem;
    --font-size-60: 4rem;
  }
}
:root {
  --space-2: 0.2rem;
  --space-15: 1.5rem;
  --space-20: 2rem;
  --space-25: 2.5rem;
  --space-30: 3rem;
  --space-40: 4rem;
  --space-50: 5rem;
  --space-60: 6rem;
  --space-80: 8rem;
  --space-90: 9rem;
  --space-100: 10rem;
}
@media (max-width: 1440px) {
  :root {
    --space-2: 0.2rem;
    --space-15: 1.5rem;
    --space-20: 1.5rem;
    --space-25: 2rem;
    --space-30: 2.5rem;
    --space-40: 3.5rem;
    --space-50: 4.5rem;
    --space-60: 5rem;
    --space-80: 7rem;
    --space-90: 7.5rem;
    --space-100: 8.5rem;
  }
}
@media (max-width: 1024px) {
  :root {
    --space-2: 0.2rem;
    --space-15: 1rem;
    --space-20: 1.5rem;
    --space-25: 2rem;
    --space-30: 2rem;
    --space-40: 3rem;
    --space-50: 3.5rem;
    --space-60: 4rem;
    --space-80: 5.5rem;
    --space-90: 6rem;
    --space-100: 7rem;
  }
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button,
input, textarea, select {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Pretendard";
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html, body {
  font-size: 62.5%;
  overflow-x: hidden;
  min-width: 102.4rem;
}

body {
  font-size: var(--font-size-15);
  font-weight: 600;
  color: var(--main-color);
  line-height: 1.6;
  word-break: keep-all;
}

::-moz-selection {
  background-color: var(--sub-color);
}

::selection {
  background-color: var(--sub-color);
}

::-moz-selection {
  background-color: var(--sub-color);
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  display: block;
}

button {
  cursor: pointer;
  background-position: center;
  background-size: auto;
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
}
button:hover {
  background-color: var(--white-color);
}

img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.hidden, legend, caption {
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  height: 0;
  font-size: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

th,
td {
  vertical-align: middle;
  text-align: center;
}

/* class 초기화 */
.pc-hide {
  display: none !important;
}

@media (max-width: 1024px) {
  .pc-hide {
    display: block !important;
  }
  .mo-hide {
    display: none !important;
  }
}
.w10 {
  width: 10% !important;
}

.w20 {
  width: 20% !important;
}

.w30 {
  width: 30% !important;
}

.w40 {
  width: 40% !important;
}

.w50 {
  width: 50% !important;
}

.w60 {
  width: 60% !important;
}

.w70 {
  width: 70% !important;
}

.w80 {
  width: 80% !important;
}

.w90 {
  width: 90% !important;
}

.w100 {
  width: 100% !important;
}

/* --reset.css */
/* layout.css */
/* 헤더 */
@keyframes idleSway1 {
  0%, 100% {
    transform: rotate(-3deg) translateX(-0.7%);
  }
  50% {
    transform: rotate(3deg) translateX(0.7%);
  }
}
@keyframes idleSway2 {
  0%, 100% {
    transform: rotate(-3.5deg) translateX(-1%);
  }
  50% {
    transform: rotate(3.5deg) translateX(1%);
  }
}
header h1 {
  position: fixed;
  top: 0;
  left: var(--space-40);
  z-index: 2;
  width: 10%;
  max-width: 26rem;
  background: url("../img/layout/img-logo-goods-bg.png") left 50% top/50% no-repeat;
}
header h1 span {
  display: block;
}
header h1 span.logo1::before {
  content: "";
  width: 2%;
  height: 4%;
  background: url("../img/layout/img-logo-chain.png") center/contain no-repeat;
  display: block;
  position: absolute;
  left: 52%;
  top: 1%;
  z-index: 1;
}
header h1 span.logo1 img {
  transform-origin: 50% 4%;
  animation: idleSway1 4s cubic-bezier(0.37, 0, 0.63, 1) infinite;
  animation-delay: 0s;
}
header h1 span.logo2 {
  position: relative;
  margin-top: 8%;
}
header h1 span.logo2::before {
  content: "";
  width: 4%;
  height: 8%;
  background: url("../img/layout/img-logo-chain.png") center/contain no-repeat;
  display: block;
  position: absolute;
  left: 28%;
  bottom: 98%;
  z-index: 1;
}
header h1 span.logo2 img {
  max-width: 80%;
  transform-origin: 50% 0%;
  animation: idleSway2 4s cubic-bezier(0.37, 0, 0.63, 1) infinite;
  animation-delay: 0.12s;
}
header h1:hover .logo1 img,
header h1:hover .logo2 img {
  animation-play-state: paused;
}
header .tit {
  display: none;
}
header .menu {
  position: fixed;
  top: 12.5vw;
  left: calc(10% + var(--space-60));
  font-size: var(--font-size-32);
  font-weight: 900;
  line-height: 1.1;
}
header .menu a {
  display: inline-block;
  border-bottom: 0.3rem solid transparent;
  transition: all 0.3s;
}
header .menu a:hover, header .menu a:focus {
  background-color: var(--sub-color);
  border-color: var(--main-color);
}
header .menu li.active a {
  border-color: var(--main-color);
}
header .time {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: var(--font-size-20);
  font-weight: 900;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-20);
  width: 100%;
  min-width: 102.4rem;
  background-color: var(--white-color);
  padding: var(--space-15) var(--space-40);
}
header .time strong {
  font-size: var(--font-size-36);
}
header .date {
  position: fixed;
  top: var(--space-90);
  right: var(--space-40);
  width: 7%;
  max-width: 18rem;
}
@media (max-width: 1024px) {
  header {
    display: flex;
    gap: var(--space-15);
    padding: 10rem var(--space-40) 0;
  }
  header h1 {
    width: 8.5rem;
  }
  header h1 span.logo1::before {
    height: 16%;
  }
  header h1 span.logo2 {
    display: none;
  }
  header .tit {
    display: block;
    max-width: 9rem;
    margin-top: var(--space-15);
  }
  header .menu {
    position: static;
    margin-top: var(--space-15);
  }
  header .menu a {
    border-width: 0.2rem;
  }
  header .time {
    height: 10rem;
    border-bottom: 0.1rem solid var(--main-color);
  }
  header .date {
    position: static;
    margin-left: auto;
    max-width: 11.8rem;
    width: 100%;
  }
}

/* 컨텐츠 */
section {
  margin: 12.5vw calc(7% + var(--space-80)) calc(11.2rem + var(--space-100)) calc(10% + 19.2rem + var(--space-100));
  text-align: center;
}
@media (max-width: 1440px) {
  section {
    margin: 12.5vw calc(7% + var(--space-80)) calc(10.2rem + var(--space-100)) calc(10% + 16.2rem + var(--space-100));
  }
}
@media (max-width: 1024px) {
  section {
    margin: var(--space-60) var(--space-40) calc(8.2rem + var(--space-100));
  }
}

/* 푸터 */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-20) var(--space-40) var(--space-50);
  background-color: var(--white-color);
  min-width: 102.4rem;
}
footer::before {
  content: "";
  width: calc(100% - var(--space-80));
  height: 0.1rem;
  background-color: var(--main-color);
  position: absolute;
  top: 0;
  left: var(--space-40);
}
footer .tit {
  margin: 0;
  max-width: 22rem;
}
footer dl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
footer dl dt {
  font-size: var(--font-size-15);
}
footer dl dd + dt {
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  footer a:first-child img {
    height: 2.7rem;
  }
  footer a:last-child img {
    height: 3.2rem;
  }
  footer .tit {
    display: none;
  }
  footer dl {
    flex-direction: row;
    width: 100%;
  }
  footer dl dd + dt {
    margin: 0 0 0 1rem;
  }
}

/* 메인 */
body:has(#main) {
  background-color: var(--sub-color);
}
body:has(#main) header {
  min-width: 102.4rem;
}
body:has(#main) header h1 {
  background: none;
  width: 10.5%;
  max-width: 22rem;
  top: var(--space-30);
}
body:has(#main) header .menu {
  top: var(--space-30);
  left: calc(10.5% + var(--space-60));
  z-index: 2;
}
body:has(#main) header .time {
  background-color: transparent;
}
body:has(#main) header .date {
  width: 10.5%;
  max-width: 22rem;
}
@media (max-width: 1024px) {
  body:has(#main) header {
    padding-top: var(--space-30);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
  }
  body:has(#main) header h1 {
    position: static;
    max-width: 9rem;
    width: 100%;
  }
  body:has(#main) header .menu {
    margin-top: 0;
  }
  body:has(#main) header .time {
    height: auto;
    border-bottom: none;
    top: auto;
    bottom: calc(6.2rem + var(--space-30));
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: var(--font-size-40);
    line-height: 1.1;
  }
  body:has(#main) header .time strong {
    font-size: 6.4rem;
  }
  body:has(#main) header .date {
    max-width: 11.8rem;
    width: 100%;
  }
}
@keyframes swingMain {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(-2.5deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(2.5deg);
  }
}
@keyframes swingKeyring {
  0%, 100% {
    transform: rotate(-6deg);
  }
  50% {
    transform: rotate(6deg);
  }
}
@keyframes ropeCounter {
  0%, 100% {
    transform: translate(-50%, -92%) rotate(2.5deg);
  }
  50% {
    transform: translate(-50%, -92%) rotate(-2.5deg);
  }
}
body:has(#main) section {
  color: var(--white-color);
  position: fixed;
  left: calc(10.5% + var(--space-100));
  right: calc(10.5% + var(--space-80));
  top: 0;
  bottom: 0;
  margin: 0;
  z-index: -1;
}
body:has(#main) section .img {
  position: relative;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  max-width: calc(95vh * var(--img-ratio, 1));
  max-height: 95%;
  aspect-ratio: var(--img-ratio, 1);
  transform-origin: top center;
  animation: swingMain 4.5s ease-in-out infinite;
}
body:has(#main) section .img::before {
  content: "";
  position: absolute;
  left: 55%;
  top: 14%;
  transform: translate(-50%, -50%);
  width: 70%;
  aspect-ratio: var(--rope-ratio, 4.4/1);
  background: url("../img/contents/main/img-main-bg.png") center/contain no-repeat;
  animation: ropeCounter 4.5s ease-in-out infinite;
}
body:has(#main) section .img img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body:has(#main) section .img img:not(:first-child) {
  position: absolute;
  width: var(--kr-w, 14%);
  height: auto;
  top: var(--kr-top, auto);
  left: var(--kr-left, auto);
  right: var(--kr-right, auto);
  bottom: var(--kr-bottom, auto);
  transform-origin: top center;
}
body:has(#main) section .img {
  /* 우측 상단 키링 */
}
body:has(#main) section .img img:nth-child(2) {
  --kr-w: 20%;
  --kr-top: 15%;
  --kr-right: 2%;
  animation: swingKeyring 3s ease-in-out infinite;
  animation-delay: 0.15s;
}
body:has(#main) section .img {
  /* 좌측 하단 키링 */
}
body:has(#main) section .img img:nth-child(3) {
  --kr-w: 28%;
  --kr-bottom: 5%;
  --kr-left: -5%;
  animation: swingKeyring 3.3s ease-in-out infinite;
  animation-delay: 0.3s;
}
body:has(#main) section .img {
  /* 우측 하단 키링 */
}
body:has(#main) section .img img:nth-child(4) {
  --kr-w: 24%;
  --kr-bottom: 2%;
  --kr-right: -5%;
  animation: swingKeyring 3.6s ease-in-out infinite;
  animation-delay: 0.45s;
}
body:has(#main) section .text {
  font-size: 1.3rem;
  position: absolute;
  left: 62%;
  top: 42%;
  transform: translateY(-50%);
  max-height: 62%;
  overflow-y: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  body:has(#main) section {
    left: var(--space-40);
    right: var(--space-40);
    top: 29rem;
    bottom: calc(6.2rem + var(--space-30) + 13rem + var(--space-30));
    min-width: 98.4rem;
  }
  body:has(#main) section .img {
    top: 25%;
    width: 100%;
    max-width: calc(70vh * var(--img-ratio, 1));
    max-height: 150%;
  }
  body:has(#main) section .img::before {
    max-width: 44rem;
  }
  body:has(#main) section .img {
    /* 좌측 하단 키링 */
  }
  body:has(#main) section .img img:nth-child(3) {
    --kr-bottom: -8%;
    --kr-left: 4%;
  }
  body:has(#main) section .img {
    /* 우측 하단 키링 */
  }
  body:has(#main) section .img img:nth-child(4) {
    --kr-w: 28%;
    --kr-bottom: -8%;
    --kr-right: -4%;
  }
  body:has(#main) section .text {
    font-size: 1.1rem;
    left: 60%;
  }
}
body:has(#main) footer {
  background-color: transparent;
  padding: var(--space-20) var(--space-40) var(--space-30);
  align-items: flex-end;
}
body:has(#main) footer::before {
  display: none;
}
@media (max-width: 1024px) {
  body:has(#main) footer {
    padding: var(--space-20) 0 var(--space-30);
  }
  body:has(#main) footer dl dd:first-of-type img {
    height: 2.7rem;
  }
  body:has(#main) footer dl dd:last-of-type img {
    height: 2rem;
  }
}

/* --layout.css */
/* contents.css */
/* 공통 */
h2 {
  font-size: var(--font-size-60);
  font-weight: 900;
  line-height: 1.1;
}
h2 span {
  background-color: var(--sub-color);
  font-size: var(--font-size-50);
}

.sub {
  font-size: var(--font-size-36);
  font-weight: 900;
  margin-top: 0.5rem;
}

.desc {
  font-size: var(--font-size-26);
  margin: var(--space-20) auto 0;
  max-width: 86rem;
}

.list {
  font-size: var(--font-size-32);
  font-weight: 900;
  margin-top: var(--space-30);
}

.sns {
  text-indent: -9999px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 3.2rem;
  height: 3.2rem;
  transition: all 0.3s;
}
.sns.instagram {
  background-image: url("../img/contents/ico-sns-instagram.png");
}
.sns.instagram:hover {
  background-image: url("../img/contents/ico-sns-instagram-on.png");
}
.sns.blog {
  background-image: url("../img/contents/ico-sns-blog.png");
}
.sns.blog:hover {
  background-image: url("../img/contents/ico-sns-blog-on.png");
}
.sns.youtube {
  background-image: url("../img/contents/ico-sns-youtube.png");
}
.sns.youtube:hover {
  background-image: url("../img/contents/ico-sns-youtube-on.png");
}
.sns.threads {
  background-image: url("../img/contents/ico-sns-threads.png");
}
.sns.threads:hover {
  background-image: url("../img/contents/ico-sns-threads-on.png");
}

@media (max-width: 1440px) {
  .desc {
    max-width: 73rem;
  }
}
@media (max-width: 1024px) {
  .desc {
    max-width: 60rem;
  }
}
/* ABOUT */
#about h2 {
  margin-top: var(--space-50);
}
#about .sns-wrap {
  display: flex;
  justify-content: center;
  gap: var(--space-20);
}
#about .sns {
  width: var(--space-80);
  height: var(--space-80);
  margin: var(--space-50) 0 0;
}
#about .sns.instagram {
  background-image: url("../img/contents/ico-instagram-about.png");
}
#about .sns.instagram:hover {
  background-image: url("../img/contents/ico-instagram-about-on.png");
}

/* EXHIBITORS */
.toggle-wrap {
  position: relative;
  padding-right: var(--space-40);
}
.toggle-wrap .toggle-guide {
  font-size: var(--font-size-20);
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: top right;
  transform: rotate(90deg) translateX(100%);
}

.toggle-list {
  border-top: 0.1rem solid var(--main-color);
  margin-top: var(--space-50);
}
.toggle-list:has(.label) {
  margin-left: var(--space-60);
}
.toggle-list .label {
  position: absolute;
  left: calc(var(--space-60) * -1);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--font-size-15);
  font-weight: 900;
  color: var(--white-color);
  background-color: var(--main-color);
  width: var(--space-40);
  line-height: var(--space-40);
  border-radius: 50%;
}
.toggle-list .toggle-item {
  border-bottom: 0.1rem solid var(--main-color);
}
.toggle-list .toggle-item.active .toggle-btn::after {
  transform: translateY(-50%) rotate(-90deg) !important;
}
.toggle-list .toggle-item.active .toggle-hide {
  min-height: 25.5rem;
  height: 100%;
  border-top: 0.1rem solid var(--main-color);
  padding-top: var(--space-25) !important;
  padding-bottom: var(--space-25) !important;
}
.toggle-list .toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem var(--space-15);
  width: 100%;
  min-height: var(--space-60);
  padding: 0.5rem var(--space-100) 0.5rem var(--space-40);
  position: relative;
  font-size: var(--font-size-26);
  font-weight: 900;
  transition: all 0.3s;
}
.toggle-list .toggle-btn::after {
  content: "";
  width: 2.7rem;
  height: 2.7rem;
  background: url("../img/contents/ico-toggle-list-arr.png") center/contain no-repeat;
  position: absolute;
  right: var(--space-40);
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.toggle-list .toggle-btn > span {
  font-weight: 600;
  line-height: 1.1;
}
.toggle-list .toggle-btn > span:nth-of-type(1) {
  font-size: var(--font-size-32);
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem var(--space-15);
}
.toggle-list .toggle-btn > span:nth-of-type(1) span {
  font-size: var(--font-size-24);
}
.toggle-list .toggle-btn > span:nth-of-type(1) span:last-child {
  font-size: var(--font-size-15);
}
.toggle-list .toggle-btn > span:nth-of-type(2) {
  font-size: var(--font-size-20);
  text-align: right;
  margin-left: auto;
}
.toggle-list .toggle-btn:hover {
  background-color: var(--sub-color);
}
.toggle-list .toggle-hide {
  height: 0;
  overflow: hidden;
  background-color: var(--sub-color);
  padding: 0 calc(30% + var(--space-60)) 0 var(--space-40);
  position: relative;
}
.toggle-list .toggle-hide .slide {
  position: absolute;
  top: var(--space-25);
  right: var(--space-25);
  width: 30%;
  max-width: 27rem;
  margin: 0 auto;
}
.toggle-list .toggle-hide .cont {
  font-size: var(--font-size-20);
  text-align: left;
}
.toggle-list .toggle-hide .link {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-15);
}
.toggle-list .toggle-hide .link a:not(.sns) {
  font-size: var(--space-15);
  line-height: 3rem;
  border: 0.1rem solid var(--main-color);
  border-radius: 1.6rem;
  padding: 0 var(--space-15);
  transition: all 0.3s;
}
.toggle-list .toggle-hide .link a:not(.sns):hover {
  background-color: var(--main-color);
  color: var(--sub-color);
}
@media (max-width: 1024px) {
  .toggle-list .toggle-item.active .toggle-hide {
    min-height: 17.7rem;
  }
  .toggle-list .toggle-btn::after {
    width: 1.9rem;
    height: 1.9rem;
  }
  .toggle-list .toggle-hide .slide {
    max-width: 18rem;
  }
}

/* EVENTS */
.events-wrap {
  margin-top: var(--space-50);
}
.events-wrap > div {
  padding-left: calc(var(--space-90) + 1rem);
  position: relative;
}
.events-wrap > div:not(:first-child) {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: var(--space-2) solid var(--main-color);
}
.events-wrap > div:not(:first-child) dt {
  top: 1rem;
}
.events-wrap > div:not(:first-child) dd:nth-of-type(1) {
  border-top: none;
}
.events-wrap > div:last-child dd:last-child {
  border-bottom: var(--space-2) solid var(--main-color);
}
.events-wrap dt {
  background-color: var(--sub-color);
  border-left: var(--space-2) solid var(--main-color);
  border-right: var(--space-2) solid var(--main-color);
  width: var(--space-90);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  font-size: var(--font-size-32);
  font-weight: 900;
}
.events-wrap dt span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: top left;
  transform: rotate(90deg) translate(-50%, -50%);
}
.events-wrap dd {
  border-top: var(--space-2) solid var(--main-color);
  display: flex;
  align-items: center;
  padding: var(--space-20) 0;
}
.events-wrap dd .time {
  font-size: var(--font-size-24);
  font-weight: 900;
  padding: 0 var(--space-20);
  width: 20%;
}
.events-wrap dd .lineup {
  flex: 1;
}
.events-wrap dd .lineup li {
  text-align: left;
  padding-left: calc(17.5rem + var(--space-20));
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 17.5rem;
  position: relative;
}
.events-wrap dd .lineup li:not(:first-child) {
  margin-top: calc(var(--space-15) * -1);
}
.events-wrap dd .lineup li img {
  position: absolute;
  left: 0;
  top: 0;
}
.events-wrap dd .lineup li .tit {
  font-size: var(--font-size-20);
  font-weight: 900;
}
.events-wrap dd .lineup li .desc {
  font-size: var(--font-size-15);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  margin-top: 1rem;
  max-width: 32rem;
}
.events-wrap dd .btn-apply {
  background-color: var(--main-color);
  border: var(--space-2) solid var(--main-color);
  color: var(--white-color);
  align-self: stretch;
  margin-left: var(--space-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-15);
  font-weight: 900;
  width: 15%;
  transition: all 0.3s;
}
.events-wrap dd .btn-apply span {
  padding-bottom: var(--space-25);
  background: url("../img/contents/ico-btn-apply.png") bottom center/var(--space-30) auto no-repeat;
  transition: all 0.3s;
}
.events-wrap dd .btn-apply:hover {
  background-color: var(--sub-color);
  color: var(--main-color);
}
.events-wrap dd .btn-apply:hover span {
  background-image: url("../img/contents/ico-btn-apply-on.png");
}
@media (max-width: 1024px) {
  .events-wrap dd .lineup li {
    padding-left: calc(12rem + var(--space-20));
    min-height: 12rem;
  }
  .events-wrap dd .lineup li img {
    width: 12rem;
  }
}

/* MAP */
.map-wrap {
  background-color: var(--sub-color);
  min-height: 100vh;
  margin-top: var(--space-50);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-32);
  font-weight: 900;
}

/* FAQ */
#faq .toggle-list .toggle-btn::after {
  transform: translateY(-50%) rotate(90deg);
}
#faq .toggle-list .toggle-hide {
  padding: 0 var(--space-40) 0 calc(var(--space-60) + var(--space-20) + var(--space-20));
  min-height: auto;
  background: url("../img/contents/ico-toggle-list-arr-a.png") left var(--space-60) center/var(--space-20) var(--sub-color) no-repeat;
}

/* --contents.css *//*# sourceMappingURL=style.css.map */
