@charset "UTF-8";
@media screen and (min-width: 1100px) {
  html,
  body {
    overflow: visible;
  }
}

.contents-nav {
  margin-top: 0;
}

.global-footer {
  background-color: #fff;
}

.bg {
  position: fixed;
  top: 120px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/bg_shadow.webp) no-repeat center top/cover;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .bg {
    top: 0;
  }
}

.main-contents {
  width: 100%;
  position: relative;
  z-index: 1;
}
.main-contents.top-page {
  background-color: rgba(161, 184, 129, 0.7);
}
.main-contents.outer-page {
  background-color: rgba(149, 175, 220, 0.7);
}
.main-contents.into-page {
  background-color: rgba(140, 202, 206, 0.7);
}
.main-contents.sense-page {
  background-color: rgba(222, 208, 138, 0.7);
}

.bg_wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}
.bg_wrapper.top-page {
  background: url(../img/bg_top-img.webp) center top/cover repeat;
}
.bg_wrapper.outer-page {
  background: url(../img/bg_outer-img.webp) center top/cover repeat;
}
.bg_wrapper.into-page {
  background: url(../img/bg_into-img.webp) center top/cover repeat;
}
.bg_wrapper.sense-page {
  background: url(../img/bg_sense-img.webp) center top/cover repeat;
}

.fv_area {
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1100px) {
  .fv_area {
    height: 100vh;
  }
  .fv_area.fv-end-hidden, .fv_area.fv-area-hidden-by-caution {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0.3s, opacity 0.3s;
    transition: visibility 0.3s, opacity 0.3s;
    pointer-events: none;
  }
}

.fv {
  z-index: 2;
}
@media screen and (min-width: 1100px) {
  .fv {
    position: fixed;
    will-change: width;
  }
  .fv.active {
    width: calc(100% - 30vw - 466px);
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .fv.active .fv_inner {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.fv_inner {
  position: relative;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  min-height: 100%;
  padding: 2rem 0;
  aspect-ratio: 466/708;
  padding: 0 20px;
}
@media screen and (min-width: 1100px) {
  .fv_inner {
    padding: 0;
    margin: 0 auto;
    height: 100%;
    aspect-ratio: 340/521;
  }
}

.fv-img {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1100px) {
  .fv-img {
    width: 100%;
    height: 100%;
  }
}
.fv-img .fv-img-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  min-height: 436px;
  aspect-ratio: 284/436;
}
.fv-img .fv_img-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 340/521;
  opacity: 0;
  z-index: 1;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.fv-img .fv_img-item.active {
  opacity: 1;
  z-index: 2;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.fv-img .fv_img-item.behind {
  opacity: 1;
  z-index: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: none;
  transition: none;
}
.fv-img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.fv_text {
  position: absolute;
  bottom: -11%;
  left: -17%;
  width: 100%;
  max-width: 234px;
  z-index: 4;
}
@media screen and (min-width: 1100px) {
  .fv_text {
    max-width: 82.5%;
    bottom: -18%;
  }
}

#spring2026 {
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
  background-color: transparent;
  line-height: 1.4;
  z-index: 3;
}
@media screen and (min-width: 1100px) {
  #spring2026 {
    font-size: 15px;
  }
}
#spring2026 a {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
#spring2026 a:hover {
  opacity: 0.9;
}
#spring2026 video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
#spring2026 .poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#spring2026 .yumin {
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-weight: normal;
  font-style: normal;
}
#spring2026 img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}
#spring2026 .col_bg_fixed {
  display: none;
}
#spring2026 .inner-menu {
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#spring2026 .inner-menu.show {
  opacity: 1;
  visibility: visible;
}
#spring2026 .category_thumb {
  display: inline-block;
  width: 54px;
  margin-right: 10px;
}
#spring2026 .category_num {
  display: inline-block;
  width: 26px;
  vertical-align: middle;
  margin-right: 5px;
  background: #000;
  border-radius: 50%;
}
#spring2026 .current .category_num {
  background: #fff;
}
#spring2026 .category_txt {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 1100px) {
  #spring2026 .category_txt {
    font-size: 12px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1100px) {
  #spring2026 .gmenu-box {
    max-width: 320px;
  }
}
#spring2026 .menu {
  display: block;
  position: fixed;
  right: 11px;
  top: 11px;
  z-index: 999;
  width: 52px;
  height: 42px;
  border-radius: 50%;
  border: none;
  padding: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 1100px) {
  #spring2026 .menu {
    display: none;
    right: auto;
    top: auto;
    right: calc(30vw + 11px);
  }
}
#spring2026 .menu.top-nav {
  background-color: #A1B881;
}
#spring2026 .menu.top-nav.active::before, .menu.active #spring2026 .menu.top-nav::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #A1B881;
}
#spring2026 .menu.top-nav.active::after, .menu.active #spring2026 .menu.top-nav::after {
  opacity: 0;
}
#spring2026 .menu.top-nav.active span::before, .menu.active #spring2026 .menu.top-nav span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #A1B881;
}
#spring2026 .menu.into-nav {
  background-color: #8CCACE;
}
#spring2026 .menu.into-nav .icon.active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #95AFDC;
}
#spring2026 .menu.into-nav .icon.active::after {
  opacity: 0;
}
#spring2026 .menu.into-nav .icon.active span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #95AFDC;
}
#spring2026 .menu.outer-nav {
  background-color: #95AFDC;
}
#spring2026 .menu.outer-nav .icon.active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #95AFDC;
}
#spring2026 .menu.outer-nav .icon.active::after {
  opacity: 0;
}
#spring2026 .menu.outer-nav .icon.active span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #95AFDC;
}
#spring2026 .menu.sense-nav {
  background-color: #E7DA7F;
}
#spring2026 .menu.sense-nav .icon.active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #E7DA7F;
}
#spring2026 .menu.sense-nav .icon.active::after {
  opacity: 0;
}
#spring2026 .menu.sense-nav .icon.active span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #E7DA7F;
}
#spring2026 .menu.active {
  background-color: #fff !important;
}
#spring2026 .menu .icon {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 1100px) {
  #spring2026 .menu .icon {
    width: 26px;
    height: 12px;
  }
}
#spring2026 .menu .icon::before, #spring2026 .menu .icon::after,
#spring2026 .menu .icon span::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 1px;
  left: 12px;
  background-color: #fff;
  -webkit-transition: opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 1100px) {
  #spring2026 .menu .icon::before, #spring2026 .menu .icon::after,
  #spring2026 .menu .icon span::before {
    left: 0;
  }
}
#spring2026 .menu .icon::before {
  top: 0;
}
#spring2026 .menu .icon::after {
  top: 20px;
}
@media screen and (min-width: 1100px) {
  #spring2026 .menu .icon::after {
    top: 6px;
  }
}
#spring2026 .menu .icon::before {
  top: 27px;
}
@media screen and (min-width: 1100px) {
  #spring2026 .menu .icon::before {
    top: 12px;
  }
}
#spring2026 .menu .icon span::before {
  top: 13px;
}
@media screen and (min-width: 1100px) {
  #spring2026 .menu .icon span::before {
    top: 0;
  }
}
#spring2026 .menu .icon.active::before, .menu.active #spring2026 .menu .icon::before {
  top: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #A1B881;
}
@media screen and (min-width: 1100px) {
  #spring2026 .menu .icon.active::before, .menu.active #spring2026 .menu .icon::before {
    top: 7px;
  }
}
#spring2026 .menu .icon.active::after, .menu.active #spring2026 .menu .icon::after {
  opacity: 0;
}
#spring2026 .menu .icon.active span::before, .menu.active #spring2026 .menu .icon span::before {
  top: 20px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #A1B881;
}
@media screen and (min-width: 1100px) {
  #spring2026 .menu .icon.active span::before, .menu.active #spring2026 .menu .icon span::before {
    top: 7px;
  }
}
@media screen and (min-width: 1100px) {
  #spring2026 .menu .icon.active::before {
    color: #fff;
  }
}
#spring2026 #gnav {
  display: block !important;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  float: none;
  width: 100%;
  height: 100vh;
  padding-top: 114px;
  margin: 0;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 998;
  overflow: auto;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media screen and (min-width: 1100px) {
  #spring2026 #gnav {
    max-width: 466px;
    left: calc(100% - (30vw + 466px));
    padding-top: 134px;
  }
}
#spring2026 #gnav.open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#spring2026 #gnav.top_bg {
  background: url(../img/bg_top-img.webp) center top/cover repeat;
}
#spring2026 #gnav.outer_bg {
  background: url(../img/bg_outer-img.webp) center top/cover repeat;
}
#spring2026 #gnav.into_bg {
  background: url(../img/bg_into-img.webp) center top/cover repeat;
}
#spring2026 #gnav.sense_bg {
  background: url(../img/bg_sense-img.webp) center top/cover repeat;
}
#spring2026 #gnav .nav li {
  position: relative;
}
#spring2026 #gnav .nav li .category_thumb {
  display: inline-block;
  width: 54px;
  margin-right: 10px;
}
#spring2026 #gnav .nav li .category_num {
  display: inline-block;
  width: 26px;
  vertical-align: middle;
  margin-right: 5px;
  border-radius: 50%;
}
#spring2026 #gnav .nav li .category_txt {
  display: inline-block;
  vertical-align: middle;
}
#spring2026 #gnav .nav-logo {
  max-width: 140px;
  margin: 20px auto 0 32px;
}
#spring2026 .contents_wrap {
  background: #fff;
}
@media screen and (min-width: 1100px) {
  #spring2026 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #spring2026 .col_bg_fixed {
    display: block;
  }
  #spring2026 .contents_wrap {
    width: 100%;
    max-width: 466px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    overflow: hidden;
    z-index: 1;
  }
  #spring2026 .col_left {
    position: sticky;
    top: 0;
    left: 0;
    width: calc(100% - (30vw + 466px));
    height: 100vh;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #spring2026 .col_right {
    position: sticky;
    top: 0;
    right: 0;
    width: 30vw;
    height: 100vh;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
#spring2026 .lp_header {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 50;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 80%;
}
#spring2026 .lp_header .title {
  max-width: 33rem;
  margin: 0 auto 5rem;
}
#spring2026 .lp_header .gmenu-box .gmenu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
#spring2026 .lp_header .gmenu-box .gmenu-nav li {
  width: 100%;
}
#spring2026 .page-ttl {
  margin: 0 50px;
  text-align: center;
  position: relative;
}
#spring2026 .section .sec_inner {
  margin: 0 20px;
  max-width: 1000px;
}
#spring2026.outer .top-logo, #spring2026.fashiongoods .top-logo {
  background-color: #fff;
}
#spring2026.present .top-logo, #spring2026.giftforme .top-logo {
  background-color: #000;
}
#spring2026 .top-logo {
  padding: 12px;
  text-align: center;
}
#spring2026 .top-logo img {
  max-width: 202px;
  width: 100%;
  margin: 0 auto;
}
#spring2026 .category-ttl {
  text-align: center;
  width: 71px;
  margin: 0 auto 18px;
  padding: 0;
}
#spring2026 .category_list {
  margin-bottom: 40px;
  padding-top: 28px;
}
#spring2026 .nav li {
  width: 100%;
  position: relative;
}
#spring2026 .nav li::before {
  color: #fff;
  width: 80px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-bottom-right-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#spring2026 .nav li a {
  width: 100%;
  height: 77px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  position: relative;
  line-height: 1;
  background-color: transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#spring2026 .nav li a::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/category_arrow.svg) center/contain no-repeat;
  width: 15px;
  height: 9px;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#spring2026 .nav li a.current .category_num {
  background: #fff;
}
#spring2026 .nav li a.current .category_num img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
#spring2026 #caution {
  padding: 2.4rem 0;
  color: #000;
}
#spring2026 #caution .caution_txt_list li {
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.8;
  font-size: 10px;
}
#spring2026 #caution .caution_txt_list li::before {
  content: "※";
  margin-right: 2px;
}

.footer_nav_wrap {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5019607843);
  backdrop-filter: blur(3px);
  z-index: 1000;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
.footer_nav_wrap .footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 0;
}
.footer_nav_wrap .footer_nav_list {
  width: 25%;
}
.footer_nav_wrap .footer_nav_list a {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.2;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_nav_wrap .footer_nav_list a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer_nav_wrap .footer_nav_list:not(:last-child) a {
  border-right: dotted 1px #dcdcdc;
}
.footer_nav_wrap.is_show {
  display: block;
}

.fade_up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.75s, -webkit-transform 0.75s;
  transition: opacity 0.75s, -webkit-transform 0.75s;
  transition: opacity 0.75s, transform 0.75s;
  transition: opacity 0.75s, transform 0.75s, -webkit-transform 0.75s;
}

.pop_up {
  opacity: 1;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.js_anime.inview {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.fade_up_delay.inview {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}

.mv_area {
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1100px) {
  .mv_area {
    height: 100vh;
  }
}

.mv {
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1100px) {
  .mv {
    max-width: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    will-change: width;
    -webkit-transition: width 1.5s ease;
    transition: width 1.5s ease;
  }
  .mv.active {
    width: calc((100% - max(25vw, 446px)) / 2);
    height: 100%;
  }
  .mv.active .mv_inner {
    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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 65px 0 100px;
    width: 100%;
    height: 100%;
  }
  .mv.active .mv_inner .mv_wrap .item {
    background-image: url(../img/fashion/fv_top-img.webp);
  }
  .mv.active .pc_nav {
    margin-top: 50px;
  }
}
.mv_inner {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 34px 0 62px;
  height: auto;
  min-height: 100%;
}
@media screen and (min-width: 1100px) {
  .mv_inner {
    padding: 20px 10px 50px;
    margin: 0 auto;
  }
}
.mv .ttl_wrap {
  margin: 0 auto 20px;
}
.mv .ttl_wrap .vol {
  width: 43.3px;
  height: 21.8px;
  margin-bottom: 6px;
  font-size: 10px;
}
.mv .ttl_wrap .ttl {
  font-size: 36px;
}
.mv .ttl_wrap .ttl span {
  font-size: 21px;
}
.mv .pc_nav {
  display: none;
}
@media screen and (min-width: 1100px) {
  .mv .pc_nav li:not(:last-child) {
    margin-bottom: 29px;
  }
  .mv .pc_nav li.current a {
    opacity: 1;
  }
  .mv .pc_nav li.current a span {
    opacity: 1;
  }
  .mv .pc_nav li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 24px;
    font-weight: 500;
    opacity: 0.5;
    line-height: 1.3;
  }
  .mv .pc_nav li a span {
    opacity: 0;
    width: 68px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 10px;
    font-family: "DM Sans", sans-serif;
    font-weight: normal;
    position: relative;
    top: 10px;
  }
  .mv .pc_nav li a span::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.5px 0 3.5px 6px;
    border-color: transparent transparent transparent #fff;
    margin-right: 10px;
  }
  .mv .pc_nav li a:hover {
    opacity: 1;
  }
  .mv .pc_nav li a:hover span {
    opacity: 1;
  }
}