#skipToContent a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 1px;
  height: 1px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
#skipToContent a:where(:focus, :active) {
  width: 220px;
  height: 54px;
  background: #010101;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: bold;
  line-height: 54px;
  text-align: center;
  text-decoration: none;
}

/*** HEADER ***/
.header {
  --blur-height: 170px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  /* mobile */
}
.header:before, .header:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  height: var(--blur-height);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.header:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.7)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(8px);
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgb(0, 0, 0)), color-stop(110%, rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(180deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0) 110%);
  mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgb(0, 0, 0)), color-stop(110%, rgba(0, 0, 0, 0)));
  mask-image: linear-gradient(180deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0) 110%);
}
.header:after {
  backdrop-filter: blur(12px);
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(180deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%);
  mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  mask-image: linear-gradient(180deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%);
}
.header .contain,
.header .contain-wide {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .logo {
  position: absolute;
  top: var(--wrapper-padding-x);
  left: var(--wrapper-padding-x);
  z-index: 2;
  line-height: 0;
}
.header .logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--header-height);
}
.header .logo img {
  max-height: 100%;
  vertical-align: middle;
}
.header .logo-bk {
  display: block;
}
.header .logo-wh {
  display: none;
}
.header .head-nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.header .head-nav a:empty {
  display: none;
}
.header .gnb {
  --button-size: 2rem;
  --icon-size: 1.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.375rem;
  padding: var(--wrapper-padding-x);
  height: inherit;
  font-size: 1.5rem;
  line-height: 1.25em;
}
.header .gnb > li {
  position: relative;
  height: inherit;
  color: #010101;
  text-align: right;
}
.header .gnb > li > a,
.header .gnb > li > button {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  font-weight: 700;
  white-space: nowrap;
}
.header .gnb > li > a:before,
.header .gnb > li > button:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-color: #000;
  -webkit-transform: translateX(-110%);
  transform: translateX(-110%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header .gnb > li:where(:hover, :focus) > a, .header .gnb > li:where(:hover, :focus) > button {
  color: #000;
}
.header .gnb > li:where(:hover, :focus) > a:before, .header .gnb > li:where(:hover, :focus) > button:before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.header .gnb > li.active {
  color: #000;
}
.header .gnb > li.active > a {
  opacity: 1;
}
.header .gnb .submenu {
  z-index: 2;
  display: none;
  overflow: hidden;
  color: #010101;
  font-size: 0.6667em;
  font-weight: 600;
  line-height: 1.1875em;
  letter-spacing: -0.02em;
  text-align: right;
}
.header .gnb .submenu ul {
  padding-block: 0.375rem;
}
.header .gnb .submenu li a {
  opacity: 0.2;
  display: block;
  padding-block: 0.25rem;
}
.header .gnb .submenu li a:where(:hover, :focus) {
  opacity: 1;
}
.header .all-menu-wrap {
  display: none;
}
.header .mo-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: var(--wrapper-padding-x);
  width: 100%;
  height: var(--header-height);
  line-height: 0;
  vertical-align: middle;
}
.header .mo-logo a {
  display: inline-block;
}
.header .mo-logo a img {
  vertical-align: middle;
}
.header .mo-gnb {
  margin-top: 1rem;
  font-size: 0;
  line-height: 0;
}
.header .mo-gnb > li {
  padding-block: 0.75rem;
}
.header .mo-gnb > li > a {
  position: relative;
  display: block;
  padding: 1rem 1.375rem;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: -0.02em;
}
.header .mo-gnb > li:has(.submenu) > a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.375rem;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #ddd;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header .mo-gnb > li:has(.submenu).on > a:before {
  background: #FFCD47;
}
.header .mo-gnb .submenu {
  display: none;
  margin-inline: 0.75rem;
  padding: 1.25rem;
  border-radius: 8px;
  background: #FFCD47;
}
.header .mo-gnb .submenu li a {
  display: block;
  padding-block: 0.375rem;
  padding-left: 0.25rem;
  color: #000;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: -0.02em;
}
.header .mo-gnb .submenu li.on a {
  text-decoration: underline;
}
.header .mo-user {
  --icon-size: 16px;
  margin-block: 1rem 1.5rem;
  padding-inline: var(--wrapper-padding-x);
  text-align: center;
}
.header .mo-user .name {
  display: inline-block;
  padding-left: calc(var(--icon-size) + 0.5rem);
  color: #010101;
  font-size: 1.125rem;
  line-height: 20px;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: var(--icon-size);
  background-image: url(../images/common/ico_head_user.png);
}
.header .mo-user .name span {
  vertical-align: 0;
}
.header .mo-user ~ .buttons {
  margin-top: -12px;
}
.header .mo-user .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-block: 24px;
}
.header .mo-user .buttons a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 0;
  border: 1px solid #07131C;
  border-radius: 4px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  text-align: center;
}
.header .mo-user .buttons a.solid {
  background-color: #07131C;
  color: #fff;
}
.header .all-menu-mask {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.header .all-menu-btn {
  --menu-btn-size: 32px;
  --menu-btn-color: #000;
  position: absolute;
  top: calc((var(--header-height) - var(--menu-btn-size)) / 2);
  right: var(--wrapper-padding-x);
  z-index: 11;
  width: var(--menu-btn-size);
  height: var(--menu-btn-size);
  -webkit-transition: none;
  transition: none;
  cursor: pointer;
}
.header .all-menu-btn .icon {
  position: absolute;
  inset-inline: 4px;
  top: 50%;
  z-index: 50;
  opacity: 1;
  display: block;
  width: auto;
  height: 2px;
  background-color: var(--menu-btn-color);
  -webkit-transition: background-color 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, background-color 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, background-color 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.header .all-menu-btn .icon:before, .header .all-menu-btn .icon:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: inherit;
  background: var(--menu-btn-color);
  -webkit-transition: margin 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: margin 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, margin 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, margin 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
.header .all-menu-btn .icon:before {
  margin-top: -7px;
}
.header .all-menu-btn .icon:after {
  margin-top: 7px;
}
.header .all-menu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: none;
  width: 100%;
  height: 100vh;
  background: #fff;
  -webkit-transform: translateX(101%);
          transform: translateX(101%);
}
.header .all-menu-wrap.is-open .all-menu-mask {
  display: block;
}
.header .all-menu-wrap.is-open .all-menu-btn {
  position: fixed;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header .all-menu-wrap.is-open .all-menu-btn .icon {
  background-color: transparent;
}
.header .all-menu-wrap.is-open .all-menu-btn .icon:before, .header .all-menu-wrap.is-open .all-menu-btn .icon:after {
  margin-top: 0;
  width: calc(var(--menu-btn-size) - 4px);
}
.header .all-menu-wrap.is-open .all-menu-btn .icon:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header .all-menu-wrap.is-open .all-menu-btn .icon:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header .all-menu-wrap.is-open .all-menu {
  display: block;
  overflow-y: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

body.scroll-down .header:before {
  opacity: 1;
}
body.scroll-down .header:after {
  opacity: 1;
}
body.scroll-down .header .gnb {
  font-size: 1.125rem;
}

body:has(.sub-cont) .header .gnb > li > a {
  opacity: 0.2;
}
body:has(.sub-cont) .header .gnb > li.active > a {
  opacity: 1;
}

.toggle-head-search {
  position: relative;
}

.head-search-wrap {
  --button-size: 3rem;
  --icon-size: 24px;
  --search-height: 600px;
  position: relative;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.head-search-wrap .inner-cont {
  margin: 0 auto;
  padding-inline: var(--wrapper-padding-x);
  max-width: calc(var(--contents-width) + var(--wrapper-padding-x) * 2);
}
.head-search-wrap .inner-cont:after {
  content: "";
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: 100%;
  max-height: var(--search-height);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.2);
          transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.2);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  backdrop-filter: blur(5px);
}

.head-search {
  position: fixed;
  inset: 0;
  z-index: 102;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5rem;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  max-height: var(--search-height);
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-transition-delay: initial;
          transition-delay: initial;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.head-search .search-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-block: 2rem;
}
.head-search .text-field {
  position: relative;
  margin-inline: auto;
  border: 2px solid transparent;
  border-bottom: 2px solid #000;
  max-width: var(--contents-width);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.head-search .text-field:has(.form-control:focus, :focus-within) {
  border-top-color: #000;
  border-inline-color: #000;
}
.head-search .form-control-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 3.5rem;
  border: 0;
  height: var(--button-size);
  background-position: 1rem 50%;
  background-repeat: no-repeat;
  background-size: var(--icon-size);
  background-image: url(../images/common/ico_search_bk.svg);
}
.head-search .form-control-wrap .form-control {
  margin-top: 0;
  border: 1.5px solid transparent;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.head-search .form-control-wrap .form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.head-search .form-control-wrap .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.head-search .form-control-wrap .form-control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.head-search .form-control-wrap .form-control::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.head-search .form-control-wrap .form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.head-search .form-control-wrap .form-control:focus {
  border: 1.5px solid transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}
.head-search .form-control-wrap .form-control:focus::-webkit-input-placeholder {
  color: var(--gray-500, #1F1F3A);
}
.head-search .form-control-wrap .form-control:focus::-moz-placeholder {
  color: var(--gray-500, #1F1F3A);
}
.head-search .form-control-wrap .form-control:focus:-ms-input-placeholder {
  color: var(--gray-500, #1F1F3A);
}
.head-search .form-control-wrap .form-control:focus::-ms-input-placeholder {
  color: var(--gray-500, #1F1F3A);
}
.head-search .form-control-wrap .form-control:focus::placeholder {
  color: var(--gray-500, #1F1F3A);
}
.head-search .btn-search {
  position: absolute;
  top: 0;
  right: var(--button-size);
  width: var(--button-size);
  height: var(--button-size);
  overflow: hidden;
  color: transparent;
  font-size: 0;
  text-indent: -9999px;
  white-space: nowrap;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: var(--icon-size);
}
.head-search .btn-search-close {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  width: var(--button-size);
  height: var(--button-size);
  overflow: hidden;
  color: transparent;
  font-size: 0;
  text-indent: -9999px;
  white-space: nowrap;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 18px;
  background-image: url(../images/common/ico_search_close.svg);
}
.head-search .keywords {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  margin-inline: auto;
  margin-top: 1rem;
  width: 100%;
  max-width: var(--contents-width);
  line-height: 0;
}
.head-search .keywords a {
  padding-block: 0.25rem;
  padding-inline: 0.5rem;
  border: 1px solid #000;
  border-radius: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.125rem;
  cursor: pointer;
}
.head-search .keywords a:where(:hover, :focus) {
  background-color: #000;
  color: #FFF;
}

body.search-open .head-search-wrap {
  visibility: inherit;
  opacity: 1;
  -webkit-transition-delay: initial;
          transition-delay: initial;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}
body.search-open .head-search-wrap .inner-cont:after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transition-delay: initial;
          transition-delay: initial;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}
body.search-open .head-search {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}