/* =========================
   MIXIN
========================= */
/* =========================
   COLORS
========================= */
/* =========================
   GRID COLUMN
========================= */
.col-1 {
  width: calc(calc((100% - var(--col-gap) * 11) / 12) * 1 + var(--col-gap) * 0);
}

.col-2 {
  width: calc(calc((100% - var(--col-gap) * 11) / 12) * 2 + var(--col-gap) * 1);
}

.col-3 {
  width: calc(calc((100% - var(--col-gap) * 11) / 12) * 3 + var(--col-gap) * 2);
}

.col-4 {
  width: calc(calc((100% - var(--col-gap) * 11) / 12) * 4 + var(--col-gap) * 3);
}

.col-5 {
  width: calc(calc((100% - var(--col-gap) * 11) / 12) * 5 + var(--col-gap) * 4);
}

.col-6 {
  width: calc(calc((100% - var(--col-gap) * 11) / 12) * 6 + var(--col-gap) * 5);
}

.col-7 {
  width: calc(calc((100% - var(--col-gap) * 11) / 12) * 7 + var(--col-gap) * 6);
}

.col-8 {
  width: calc(calc((100% - var(--col-gap) * 11) / 12) * 8 + var(--col-gap) * 7);
}

.col-9 {
  width: calc(calc((100% - var(--col-gap) * 11) / 12) * 9 + var(--col-gap) * 8);
}

.col-10 {
  width: calc(calc((100% - var(--col-gap) * 11) / 12) * 10 + var(--col-gap) * 9);
}

.col-11 {
  width: calc(calc((100% - var(--col-gap) * 11) / 12) * 11 + var(--col-gap) * 10);
}

.col-12 {
  width: calc(calc((100% - var(--col-gap) * 11) / 12) * 12 + var(--col-gap) * 11);
}

/* =========================
   ETC
========================= */
@keyframes introBgFade {
  50% {
    opacity: 1;
    z-index: 2;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes introFade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes swiperArrows-left {
  0% {
    transform: translateX(0px);
    opacity: 1;
  }
  50% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes swiperArrows-right {
  0% {
    transform: translateX(0px);
    opacity: 1;
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
/* =========================
	 FONTS
========================= */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, button, 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  text-decoration: unset;
  background: unset;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: none;
  font: inherit;
  font-family: "Switzer", sans-serif;
  color: #F2F2F2;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

a, button {
  cursor: pointer;
  color: #F2F2F2;
  font-size: unset;
  text-align: unset;
  font-family: "Switzer", sans-serif;
}

img {
  display: block;
}

/* =========================
	 CUSTOM
========================= */
html.wide-mode header, html.wide-mode main, html.wide-mode footer {
  max-width: 1512px !important;
  margin: 0 auto;
}
html.wide-mode footer {
  margin-top: 250px;
}
@media (max-width: 768px) {
  html.wide-mode footer {
    margin-top: 150px;
  }
}
html.wide-mode .grid-guide {
  max-width: 1512px;
}

.grid-guide {
  position: fixed;
  top: 122px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  padding: var(--col-pd);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.1;
  z-index: -1;
}
.grid-guide > div {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 1214px) {
  .grid-guide > div {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-guide > div {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid-guide > div {
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}
.grid-guide > div > div {
  height: 80px;
  background-color: #c6fff2;
  width: 100%;
}
.grid-guide > div > div.col-12 {
  grid-column: span 12;
}
@media (max-width: 1214px) {
  .grid-guide > div > div.col-12 {
    grid-column: span 8;
  }
}
@media (max-width: 768px) {
  .grid-guide > div > div.col-12 {
    grid-column: span 4;
  }
}
.grid-guide > div > div.col-8 {
  grid-column: span 8;
}
@media (max-width: 1214px) {
  .grid-guide > div > div.col-8 {
    grid-column: span 6;
  }
}
@media (max-width: 768px) {
  .grid-guide > div > div.col-8 {
    grid-column: span 2;
  }
}
.grid-guide > div > div.col-3 {
  grid-column: span 3;
}
@media (max-width: 1214px) {
  .grid-guide > div > div.col-3 {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .grid-guide > div > div.col-3 {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .grid-guide > div > div.col-1 {
    display: none;
  }
}

/* =========================
   FONT FACE
========================= */
@font-face {
  font-family: "Switzer";
  src: url("/assets/fonts/Switzer/Switzer-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Switzer";
  src: url("/assets/fonts/Switzer/Switzer-VariableItalic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Kaisei Decol";
  src: url("/assets/fonts/Kaisei_Decol/KaiseiDecol-Medium.woff2") format("woff2"), url("/assets/fonts/Kaisei_Decol/KaiseiDecol-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kaisei Decol";
  src: url("/assets/fonts/Kaisei_Decol/KaiseiDecol-Bold.woff2") format("woff2"), url("/assets/fonts/Kaisei_Decol/KaiseiDecol-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kaisei Decol";
  src: url("/assets/fonts/Kaisei_Decol/KaiseiDecol-Regular.woff2") format("woff2"), url("/assets/fonts/Kaisei_Decol/KaiseiDecol-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --col-pd: 30px;
  --col-gap: 12px;
  --header-height: 104px;
}
@media (max-width: 768px) {
  :root {
    --col-pd: 18px;
    --col-gap: 12px;
    --header-height: 66px;
  }
}
:root {
  --h2-margin_bottom: calc(50px - var(--col-gap));
}

* {
  box-sizing: border-box !important;
  outline: none;
  border-radius: 0;
}
*[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
}
html *::-webkit-scrollbar, html::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
html *::-webkit-scrollbar-track, html::-webkit-scrollbar-track {
  background-color: #303033;
  border-radius: 999px;
}
html *::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb {
  background-color: #7a7a7a;
  border-radius: 999px;
}
html *::-webkit-scrollbar-thumb:hover, html::-webkit-scrollbar-thumb:hover {
  background-color: #646464;
}
html *::-webkit-scrollbar-button, html::-webkit-scrollbar-button {
  display: none;
}
html *::-webkit-scrollbar-corner, html::-webkit-scrollbar-corner {
  background-color: #303033;
}
@supports not selector(::-webkit-scrollbar) {
  html {
    scrollbar-width: thin;
    scrollbar-color: #7a7a7a #303033;
  }
}
html {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.015em;
}
html[lang=en] {
  font-family: "Switzer", sans-serif;
}
html[lang=ko] h3, html[lang=ko] h5 {
  font-family: "Switzer", sans-serif;
}

body header, body main, body footer {
  width: 100%;
  max-width: none;
}
body.scrollLock {
  overflow: hidden;
  touch-action: none;
}
body {
  background: #000000;
  position: relative;
  color: #F2F2F2;
}

main {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--header-height) - 132px - 200px);
  container-type: inline-size;
}
main h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.015em;
  font-family: "Kaisei Decol", "Pretendard", sans-serif;
}
main h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.015em;
}
main strong {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.015em;
}
@media (max-width: 768px) {
  main h3 {
    font-size: 18px;
    font-weight: 500;
  }
  main strong {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.01em;
  }
}
main:not(.no-gap) {
  gap: calc(280px - var(--col-pd) * 2);
}
@media (max-width: 768px) {
  main:not(.no-gap) {
    gap: calc(120px - var(--col-pd) * 2);
  }
}

section:not(.npd) {
  padding: var(--col-pd);
}
section.npd h2 {
  padding: var(--col-pd) var(--col-pd) 0;
}
section h2 {
  display: block;
  grid-column: 1/-1;
  margin-bottom: calc(50px - var(--col-gap));
}
section:not(.Productions, .Shop) {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 1214px) {
  section:not(.Productions, .Shop) {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 768px) {
  section:not(.Productions, .Shop) {
    grid-template-columns: repeat(4, 1fr);
  }
}
section:not(.Productions, .Shop) {
  gap: var(--col-gap);
  position: relative;
}
section:not(.Productions, .Shop) > div.column8 {
  grid-column: 4/-2;
}
section:not(.Productions, .Shop) > div.column8.extra1 {
  grid-column: 4/-1;
}
@media (max-width: 1214px) {
  section:not(.Productions, .Shop) > div.column8, section:not(.Productions, .Shop) > div.column8.extra1 {
    grid-column: 3/-1;
  }
}
@media (max-width: 768px) {
  section:not(.Productions, .Shop) > div.column8, section:not(.Productions, .Shop) > div.column8.extra1 {
    grid-column: 2/-1;
  }
}
@media (max-width: 1214px) {
  section:not(.Productions, .Shop) > div.mobile-wide {
    grid-column: 3/-1;
  }
}
@media (max-width: 768px) {
  section:not(.Productions, .Shop) > div.mobile-wide {
    grid-column: 1/-1;
  }
}
section:not(.Productions, .Shop):first-child:not(.main__visual) {
  margin-top: 20px;
}
section.section__center {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--col-gap);
  flex-direction: column;
}
section.section__center > div {
  width: calc(calc((100% - var(--col-gap) * 11) / 12) * 9 + var(--col-gap) * 8 - var(--col-pd));
  margin: 0 auto;
}

.swiper {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}
.swiper .slide-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper .slide-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.25);
}
.swiper .swiper-slide-active img {
  transform: scale(1);
}

.swiper-button-prev:not(.no-margin) {
  margin-left: -32px !important;
}
.swiper-button-prev:not(.no-margin).animate img {
  animation: swiperArrows-left 0.6s ease-out;
}
@media (max-width: 1214px) {
  .swiper-button-prev:not(.no-margin) {
    margin: 0 !important;
    left: auto !important;
    right: 10px !important;
    top: 100% !important;
    right: 70px !important;
  }
}

.swiper-button-next:not(.no-margin) {
  margin-right: -32px !important;
}
.swiper-button-next:not(.no-margin).animate img {
  animation: swiperArrows-right 0.6s ease-out;
}
@media (max-width: 1214px) {
  .swiper-button-next:not(.no-margin) {
    margin: 0 !important;
    left: auto !important;
    right: 10px !important;
    top: 100% !important;
    top: calc(100% + 1px) !important;
  }
}

.header {
  font-family: "Switzer", sans-serif;
  width: 100%;
  padding: 14px var(--col-pd);
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--col-gap);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header.shopPageHeader {
  background: transparent;
}
@media (max-width: 768px) {
  .header.shopPageHeader {
    position: fixed;
  }
  .header.shopPageHeader .header--left, .header.shopPageHeader .btn__mobile:not(.active) {
    filter: brightness(0);
  }
}
.header--left {
  padding: 10px 0;
}
.header--left img {
  max-height: 56px;
  mix-blend-mode: difference;
}
.header--right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.header--right__div a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--col-gap);
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.015em;
  color: #ffffff;
  padding: 10px;
  height: 30px;
}
.header--right__div a:hover {
  color: #F2F2F2 !important;
}
.header--right__div a.active {
  color: #ffffff;
}
.header--right__div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.header .gnb {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 7px;
}
.header .gnb > li:hover .gnb--sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  height: auto;
}
.header .gnb--sub {
  position: absolute;
  transform: translateY(-10px);
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: 0;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.header .gnb--sub a {
  height: 20px;
  color: #77797F;
}
.header .lang {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--col-gap);
  text-transform: uppercase;
}
.header .lang--btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px;
  line-height: 10px;
  color: #ffffff;
}
.header--cart {
  position: relative;
  justify-content: center !important;
  padding: 8px 4px 15px !important;
  margin-top: -2px;
}
.header--cart .cart--count {
  display: block;
  width: 12px;
  height: 9px;
  font-size: 10px;
  text-align: center;
}
.header--cart::after {
  content: "";
  display: block;
  width: 16px;
  height: 9px;
  border: 1px solid #F2F2F2;
  border-top: 0;
  position: absolute;
  left: 1px;
  bottom: 8px;
}
.header .btn__mobile {
  position: relative;
  width: 20px;
  height: 20px;
  border: 0;
  z-index: 99;
  display: none;
}
.header .btn__mobile span {
  width: 20px;
  height: 1px;
  background: #F2F2F2;
  position: absolute;
  transition: 0.3s;
}
.header .btn__mobile span:nth-child(1) {
  top: 2px;
}
.header .btn__mobile span:nth-child(2) {
  top: 9px;
}
.header .btn__mobile span:nth-child(3) {
  top: 16px;
}
.header .btn__mobile.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.header .btn__mobile.active span:nth-child(2) {
  opacity: 0;
}
.header .btn__mobile.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}
@media (max-width: 1214px) {
  .header--left {
    padding: 0;
    z-index: 99;
  }
  .header--left img {
    max-height: 38px;
  }
  .header--right__div {
    position: fixed;
    top: 0;
    right: -100%;
    background: #000000;
    width: 45%;
    height: 100dvh;
    padding: calc(var(--col-pd) - 10px);
    padding-top: 30px;
    transition: right 0.35s ease;
    flex-direction: column-reverse;
  }
  .header--right__mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .header--right a {
    height: 40px;
  }
  .header--right {
    justify-content: flex-end;
  }
  .header .gnb, .header li, .header a {
    width: 100%;
  }
  .header .gnb {
    flex-direction: column;
  }
  .header .gnb--sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    height: auto;
    position: relative;
    margin-left: 10px;
  }
  .header .gnb--sub a {
    height: 30px;
  }
  .header .lang {
    width: 100%;
    justify-content: flex-start;
  }
  .header .lang--btn {
    justify-content: flex-start;
  }
  .header.menu-open .header--right__div {
    right: 0;
  }
  .header .btn__mobile {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}
@media (max-width: 768px) {
  .header--right__div {
    width: 100%;
  }
}

.footer {
  margin-top: 250px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.02em;
  font-family: "Switzer", sans-serif;
  color: #77797F;
  width: 100%;
  padding: var(--col-pd);
}
@media (max-width: 768px) {
  .footer {
    padding: 50px var(--col-pd);
    margin-top: 150px;
  }
}
.footer a, .footer button {
  color: #77797F;
  line-height: 20px;
}
.footer__logo {
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .footer__logo {
    max-width: calc(100% - 4px);
    margin: 0 auto 28px;
  }
}
.footer__logo img {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.footer__etc {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--col-gap);
}
@media (max-width: 768px) {
  .footer__etc {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }
}
.footer__etc a, .footer__etc button {
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.02em;
}
.footer__etc--left {
  line-height: 20px;
}
.footer__etc--left .socials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  margin-bottom: 10px;
}
.footer__etc--left .socials a, .footer__etc--left .socials button {
  color: #F2F2F2;
}
.footer__etc--left .socials a:hover, .footer__etc--left .socials button:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 0.5px;
  text-decoration-color: #F2F2F2;
}
@media (max-width: 768px) {
  .footer__etc--left .socials {
    justify-content: center;
  }
}
.footer__etc--left .copyright {
  display: flex;
  gap: 5px;
  font-size: 12px;
  font-weight: 300;
  line-height: auto;
  letter-spacing: 0.02em;
}
.footer__etc--left .copyright img {
  height: 20px;
}
.footer__etc--left .copyright .btn--accordion {
  display: none;
}
.footer__etc--right .btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__etc--right .btns {
    justify-content: center;
    gap: 15px;
  }
}
.footer__etc--right .btns a:hover {
  color: #F2F2F2;
}
.footer__info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .footer__info {
    gap: 4px;
  }
}
.footer__info {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s;
}
.footer__info.active {
  margin-top: 16px;
}
@media (max-width: 1214px) {
  .footer__info.active {
    margin-top: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__info span::after {
  content: "";
  display: inline-flex;
  width: 1px;
  height: 8px;
  background-color: #77797F;
  margin: 0 3px;
}

.input--check {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 15px;
  height: 15px;
  margin: 0;
  border: 1px solid #9BA1AC;
  border-radius: unset;
  position: relative;
  cursor: pointer;
  background-color: #000000;
}
.input--check:checked {
  background-color: #F2F2F2;
}
.input--radio {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  display: inline-grid;
  place-content: center;
  margin: 0;
  flex-shrink: 0;
  transition: border-color 0.15s ease;
}
.input--radio::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffffff;
  transform: scale(0);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.input--radio:checked {
  border-color: #ffffff;
}
.input--radio:checked::before {
  transform: scale(1);
}
.input--radio:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.input--radio:disabled + span {
  opacity: 0.3;
  cursor: not-allowed;
}
.input--box::-moz-placeholder {
  color: #77797F;
}
.input--box::placeholder, .input--box option[disabled], .input--box:invalid {
  color: #77797F;
}
.input--box:focus {
  border-color: #F2F2F2;
}
.input--box.half {
  width: calc(50% - 8px);
}
.input--box.half + .half {
  margin-left: 12px;
}
.input--box[type=tel] {
  flex: 2.5;
}
.input--box.country-code-wrap {
  width: calc(100% + 4px);
  max-width: 130px;
}
.input--box {
  font-size: 13px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.015em;
  width: 100%;
  height: 100%;
  min-height: 52px;
  padding: 17px 0;
  border-bottom: 1px solid #3C3C43;
}

select {
  width: 100%;
  height: 100%;
  min-height: 52px;
  border: 0;
  color: #F2F2F2;
  background: url("/images/common/arrow-toggle_down-gray.svg") right 0 center/16px no-repeat;
  cursor: pointer;
  margin: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
select option {
  background-color: transparent;
  color: #F2F2F2;
}

.information h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.015em;
  margin-bottom: 26px;
}
.information label.check-all {
  margin-bottom: 12px;
}
.information .agreement--group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.information .agreement--group label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  cursor: pointer;
}
.information .agreement--group label:not(.check-all) button {
  text-decoration: underline;
}
.information .agreement .acc {
  width: 100%;
  max-height: 220px;
  overflow-y: auto;
  white-space: pre-line;
  font-size: 10px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.015em;
}
.information .agreement .acc.active {
  padding: 10px;
  border: 1px solid #3C3C43;
  margin-top: 12px;
  margin-bottom: 8px;
}
.information__inner--box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #3C3C43;
}
.information__inner--box:focus-within {
  border-color: #F2F2F2;
}
.information__inner--box input {
  width: 75%;
}
.information__inner--box input, .information__inner--box select {
  border: 0;
}
.information__inner--start > div:not(:first-child) {
  margin-top: 90px;
}
.information__lineText.single {
  border-bottom: 1px solid #3C3C43;
}
.information__lineText.single .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--col-gap);
  border-top: 1px solid #3C3C43;
  padding: 14px 0;
}
.information__lineText.single .total p:first-child {
  font-size: 13px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.01em;
}
.information__lineText.single .total p:last-child {
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.015em;
}
.information__lineText.multi {
  bottom: 0;
}
.information__lineText.multi li {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--col-gap);
  font-size: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #3C3C43;
}
.information__lineText.multi li:first-child {
  border-top: 1px solid #3C3C43;
}
.information__lineText.multi li p:first-child {
  font-size: 12px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.01em;
  grid-column: 1/span 2;
}
.information__lineText.multi li p:last-child {
  font-size: 12px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.015em;
  grid-column: 4/-1;
  text-align: right;
}
.information__lineText.multi .total {
  border-top: 0;
}
.information__lineText.multi .total p:first-child {
  font-size: 13px;
  font-weight: 400;
}
.information__lineText.multi .total p:last-child {
  font-size: 14px;
  font-weight: 400;
}
.information .btn--white {
  margin-top: 44px;
}

.btn--white {
  width: 100%;
  background-color: #F2F2F2;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.015em;
  padding: 10px;
}
.btn--white:hover {
  opacity: 0.8;
}
.btn--black {
  width: 100%;
  background-color: #000000;
  border: 1px solid #3C3C43;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.015em;
  text-align: center;
  padding: 15px;
}
.btn--black:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .btn--black {
    padding: 9px;
  }
}
.btn--200-100 {
  color: #9BA1AC;
}
.btn--200-100:hover {
  color: #F2F2F2;
}
.btn--payment__wrap {
  display: grid;
  gap: 10px;
}
.btn--payment__wrap button, .btn--payment__wrap label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  min-height: 30px;
  padding: 6px;
  text-align: center;
  border: 1px solid #3C3C43;
  font-size: 13px;
  font-weight: 300;
  cursor: pointer;
}
.btn--payment__wrap button.active, .btn--payment__wrap label.active {
  background: #F2F2F2;
  border: 1px solid #F2F2F2;
  color: #000000;
  font-weight: 400;
}
.btn--payment__wrap.two {
  grid-template-columns: repeat(2, 1fr);
}
.btn--payment__wrap.three {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .btn--payment__wrap {
    align-items: flex-start;
  }
  .btn--payment__wrap button {
    width: 100%;
  }
}
.btn--accordion::-webkit-details-marker {
  display: none;
}
.btn--accordion {
  list-style: none;
  position: relative;
}
.btn--accordion.i-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 14px;
  width: 24px;
  height: 24px;
  transform: rotate(0deg);
  background: url("/images/common/arrow-toggle_down-gray.svg") center/contain no-repeat;
  transition: transform 0.25s ease;
}
.btn--accordion.i-arrow::after.active {
  transform: rotate(180deg);
}
.btn--accordion.agreement {
  text-decoration: underline;
}
.btn--readMore {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.btn--readMore a, .btn--readMore button {
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0;
  color: #9BA1AC;
  padding-bottom: 4px;
  border-bottom: 1px solid #9BA1AC;
  transition: all 0.25s;
}
.btn--readMore a:hover, .btn--readMore button:hover {
  color: #F2F2F2;
  box-shadow: 0 2px 0 #F2F2F2;
}

.readMore__content {
  display: -webkit-box;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.readMore__content p {
  display: contents;
  white-space: pre-wrap;
}
.readMore__content p + p::before {
  content: "\a";
  display: block;
  height: 10px;
}

.imgCover {
  width: 100%;
}
.imgCover img {
  width: 100%;
}

.sticky-sentinel {
  width: 100%;
  height: 1px;
  visibility: hidden;
  pointer-events: none;
}

.mobile {
  display: none;
}
@media (max-width: 768px) {
  .mobile {
    display: contents;
  }
}

.cart::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.cart {
  background-color: #000000;
  width: max(620px, 33dvi);
  height: 100dvh;
  max-height: 100dvh;
  padding: 0;
  border: 0;
  color: #F2F2F2;
}
.cart[open] {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.cart__header {
  position: sticky;
  top: 0;
  padding: 20px;
  text-align: right;
}
@media (max-width: 768px) {
  .cart__header {
    padding: var(--col-pd);
  }
}
.cart__body {
  height: 100dvh;
  padding: 80px 80px 20px;
}
.cart__body li.cart__item + li {
  margin-top: 50px;
}
.cart__body li.cart__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .cart__body {
    padding: var(--col-pd);
  }
}
.cart__empty {
  text-align: center;
}
.cart__footer {
  display: grid;
  grid-template: auto/1fr 1fr;
  row-gap: 28px;
  position: sticky;
  bottom: 0;
  padding: 20px 80px;
  background-color: #000000;
}
.cart__footer strong {
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.015em;
}
.cart__footer .Subtotal {
  text-align: right;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.015em;
}
@media (max-width: 768px) {
  .cart__footer {
    padding: var(--col-pd);
  }
}
.cart__btn-close {
  width: -moz-fit-content;
  width: fit-content;
}
.cart__btn-checkout {
  grid-column: 1/-1;
}
.cart .item__body {
  flex: 1;
}
.cart .item__title {
  margin-bottom: 16px;
}
.cart .item__title h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.015em;
  margin-bottom: 4px;
}
.cart .item__title p {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.015em;
}
.cart .item__option {
  display: grid;
  grid-template-columns: 3fr 1fr;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.015em;
}
.cart .item__option strong {
  grid-column: 1;
  font-weight: 400;
}
.cart .item__option p {
  grid-column: 2;
  text-align: center;
}
.cart .item__option + div {
  margin-top: 4px;
}
.cart .item__btn-remove {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03em;
  color: #9BA1AC;
  text-decoration: underline;
  margin-top: 20px;
}
.cart .item__img {
  max-height: 128px;
}
@media (max-width: 1214px) {
  .cart {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .cart {
    width: 100%;
    margin: 0;
    max-width: initial;
  }
  .cart--body, .cart--footer {
    padding: 20px;
  }
}

.payment__wrap > div {
  display: none;
}
.payment__wrap > div.active {
  display: block;
}
.payment__wrap > div > *:first-child {
  margin-top: 15px;
}
.payment__wrap .notice {
  font-size: 11px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.015em;
  margin-top: 10px;
  margin-bottom: 40px;
}
.payment__wrap label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
}
.payment .account__etc .receipt_type,
.payment .account__etc .input--box {
  display: none;
}
.payment .account__etc.show {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment .account__etc.show .receipt_type {
  display: flex;
  gap: 40px;
  margin-top: 10px;
}
.payment .account__etc.show--income .input--box, .payment .account__etc.show--proof .input--box {
  display: block;
}

.mini-calendar__wrapper {
  position: relative;
  display: inline-block;
}
.mini-calendar__wrapper.clickable .mini-calendar__grid span[data-date] {
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.mini-calendar__wrapper.clickable .mini-calendar__grid span[data-date]:hover {
  background-color: #3C3C43;
}
.mini-calendar__wrapper.clickable .mini-calendar__popover {
  left: 0;
}
.mini-calendar__popover {
  display: none;
  position: absolute;
  bottom: calc(100% + 14px);
  background: #000000;
  color: #F2F2F2;
  padding: var(--col-pd);
  border: 1px solid #202020;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 98;
  top: calc(100% + 5px);
  left: -170%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.mini-calendar__popover.is-open {
  display: block;
}
.mini-calendar__popover .btn-close {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #9BA1AC;
  cursor: pointer;
}
.mini-calendar__popover .btn-close:hover {
  color: #F2F2F2;
}
@media (max-width: 768px) {
  .mini-calendar__popover .btn-close {
    top: 4px;
    right: 4px;
  }
}
.mini-calendar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--col-gap);
  margin: 2px 2px 11px 2px;
}
.mini-calendar__header .month-title {
  font-size: 11px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 0.03em;
}
.mini-calendar__header button {
  padding: 0 4px;
}
.mini-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  line-height: auto;
  letter-spacing: 0.01em;
}
.mini-calendar__grid .day-head {
  color: #9BA1AC;
  margin-bottom: 6px;
}
.mini-calendar__grid span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--col-gap);
  width: 22px;
  height: 22px;
  color: #ffffff;
}
.mini-calendar__grid span.hasWorkshop {
  background-color: #1C1B1D;
  border: 1px solid #46474B;
  color: #F2F2F2;
  position: relative;
}
.mini-calendar__grid span.hasWorkshop > span {
  font-size: 10px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.015em;
  display: none;
  position: absolute;
  top: -1px;
  left: 100%;
  width: -moz-max-content;
  width: max-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 22px;
  background-color: #1C1B1D;
  border: 1px solid #46474B;
  align-items: flex-start;
  padding: 0 12px;
  z-index: 99;
}
.mini-calendar__grid span.hasWorkshop:hover > span {
  display: flex;
}
.mini-calendar__grid span.disabled {
  opacity: 0.2;
  pointer-events: none;
}
.mini-calendar__grid span.today {
  background-color: #66646A;
  border: 1px solid #46474B;
  color: #F2F2F2;
  font-weight: bold;
}/*# sourceMappingURL=common.min.css.map */