@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

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

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-pink: #de7680;
  --color-brown: #55433a;
  --color-green: #3faa79;
  --color-blue: #538cd3;
  --color-purple: #d180d8;
  --color-orange: #e29454;
  --color-red: #c1626d;
  --color-dark: #5580d1;
  --color-gray: #d9d9d9;
  --color-gray-dark: #97999f;
  --color-white: #fff;
  --color-black: #000;
  --font-jp: YakuHanJP, "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  --font-eng: "Poppins", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 850px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 850px) {
  .is-pc {
    display: none;
  }
}

.l-wrapper {
  position: relative;
  font-family: var(--font-jp);
  overflow: hidden;
}

.l-outer {
  position: relative;
  background: var(--color-white);
}

.l-nav {
  position: fixed;
  top: 43px;
  right: 155px;
  z-index: 2;
  mix-blend-mode: difference;
  opacity: 0;
}
.on-load .l-nav {
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.7s;
}
.on-load[data-slug=top] .l-nav {
  transition-delay: 1.5s;
}
.l-nav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 35px;
}
@media screen and (max-width: 1000px) {
  .l-nav__list {
    margin-right: 15px;
  }
}
.l-nav__list-item {
  position: relative;
  margin-left: 28.5px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .l-nav__list-item {
    margin-left: 12px;
  }
}
.l-nav__list-item::before {
  content: none;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--color-white);
  border-radius: 50%;
}
.l-nav__list-item.is-current::before {
  content: "";
}

.l-nav__link {
  display: block;
  position: relative;
  text-decoration: none;
  font-family: var(--font-eng);
  font-weight: 300;
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 1000px) {
  .l-nav__link {
    font-size: 13px;
  }
}
.is-current .l-nav__link {
  pointer-events: none;
}
@media (hover: hover) {
  .l-nav__link:hover {
    opacity: 0.4;
  }
}

.l-content {
  position: relative;
  min-height: calc(100vh - 86.5px);
  background: var(--color-white);
}
@media screen and (max-width: 850px) {
  .l-content {
    min-height: calc(100vh - 151.5px);
  }
}
.l-content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 23.7%;
  height: 100%;
  background: var(--theme-color);
}
@media screen and (max-width: 850px) {
  .l-content::before {
    width: 26.7%;
  }
}
[data-slug=top] .l-content::before {
  content: none;
}
.l-content::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 23.7%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
}
@media screen and (max-width: 850px) {
  .l-content::after {
    width: 26.7%;
  }
}
[data-slug=top] .l-content::after {
  content: none;
}

.l-inner {
  position: relative;
  z-index: 1;
}

.l-footer {
  position: relative;
}
.l-footer__inner {
  width: 90%;
  margin: 0 auto;
  padding-top: 29px;
  padding-bottom: 29px;
}
@media screen and (max-width: 850px) {
  .l-footer__inner {
    padding-top: 36px;
    padding-bottom: 37px;
  }
}
.l-footer__title {
  text-align: center;
  font-family: var(--font-eng);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.045em;
  opacity: 0.4;
}
@media screen and (max-width: 850px) {
  .l-footer__title {
    margin-top: 24px;
  }
}
.l-footer__copyright {
  margin-top: 6px;
}
.l-footer__copyright-text {
  text-align: center;
  font-family: var(--font-eng);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.045em;
  opacity: 0.4;
}
.l-footer__sns {
  position: relative;
}
.l-footer__sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer__sns-list-item {
  width: 25.5px;
  margin: 0 6px;
}
.l-footer__sns-link {
  display: block;
}

.l-sns {
  position: fixed;
  left: 29px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 23px;
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  .l-sns {
    left: 10px;
  }
}
.on-load .l-sns {
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.7s;
}
.on-load[data-slug=top] .l-sns {
  transition-delay: 1.5s;
}
.l-sns__list-item {
  margin: 8px 0;
}
.l-sns__link {
  display: block;
  position: relative;
  width: 100%;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .l-sns__link:hover {
    opacity: 0.4;
  }
}
.l-sns__link img {
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.is-white .l-sns__link img {
  opacity: 0;
}
.l-sns__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.is-white .l-sns__link::after {
  opacity: 1;
}
.--x .l-sns__link::after {
  background: url(../img/sns/icon_x_white.svg);
}
.--insta .l-sns__link::after {
  background: url(../img/sns/icon_insta_white.svg);
}
.--youtube .l-sns__link::after {
  background: url(../img/sns/icon_youtube_white.svg);
}
.--tiktok .l-sns__link::after {
  background: url(../img/sns/icon_tt_white.svg);
}
.--spotify .l-sns__link::after {
  background: url(../img/sns/icon_spotify_white.svg);
}
.--apple .l-sns__link::after {
  background: url(../img/sns/icon_apple_music_white.svg);
}

.l-menu {
  position: fixed;
  top: 40px;
  right: 51px;
  z-index: 2;
  opacity: 0;
}
@media screen and (max-width: 850px) {
  .l-menu {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    overflow-y: auto;
    pointer-events: none;
    opacity: 0;
  }
}
.on-load .l-menu {
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.7s;
}
@media screen and (max-width: 850px) {
  .on-load .l-menu {
    opacity: 0;
    transition-duration: 0.6s;
    transition-delay: 0s;
  }
}
.on-load[data-slug=top] .l-menu {
  transition-delay: 1.5s;
}
@media screen and (max-width: 850px) {
  .on-load[data-slug=top] .l-menu {
    transition-delay: 0s;
  }
}
@media screen and (max-width: 850px) {
  .on-load.menu-open .l-menu {
    pointer-events: auto;
    opacity: 1;
  }
}
@media screen and (max-width: 850px) {
  .l-menu__wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    position: relative;
    width: 100%;
    min-height: 100%;
    padding-top: 80px;
    padding-bottom: 58px;
  }
}
.l-menu__inner {
  position: relative;
  width: 81%;
  margin: 0 auto;
}
.l-menu__nav {
  margin-bottom: 47px;
}
.l-menu__nav-list {
  width: 98%;
  margin: 0 auto;
}
.l-menu__nav-list-item:nth-child(n+2) {
  margin-top: 31px;
}
.l-menu__nav-link {
  display: block;
  box-sizing: content-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  color: var(--color-black);
  font-family: var(--font-eng);
  font-size: 19px;
  letter-spacing: 0.13em;
}
.l-menu__sns {
  position: relative;
  margin-bottom: 36px;
  padding-top: 45px;
  border-top: 1px solid var(--color-gray);
}
.l-menu__sns-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.l-menu__sns-list-item {
  width: 8.5%;
  max-width: 28px;
}
.l-menu__sns-list-item:nth-child(n+2) {
  margin-left: 12px;
}
.l-menu__translation {
  position: relative;
  width: 116px;
}
.l-menu__translation #google_translate_element .goog-te-gadget span {
  display: inline-block;
}
.l-menu__translation #google_translate_element .goog-te-gadget span a img {
  display: inline-block;
}
.l-menu__translation #google_translate_element .goog-te-combo {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin-top: 0;
  background: var(--color-white);
}
@media screen and (max-width: 850px) {
  .l-menu__translation #google_translate_element .goog-te-combo {
    margin-bottom: 7px;
  }
}

.l-ham {
  position: fixed;
  top: 27px;
  right: 0;
  z-index: 2;
  width: 50px;
  height: 13px;
  opacity: 0;
}
.on-load .l-ham {
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.7s;
}
.on-load[data-slug=top] .l-ham {
  transition-delay: 1.5s;
}
.l-ham span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background: var(--color-black);
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.menu-open .l-ham span {
  opacity: 0;
}
.l-ham::before {
  content: "";
  display: block;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 5px));
  width: 100%;
  height: 1px;
  background: var(--color-black);
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.menu-open .l-ham::before {
  transform: translate(-50%, -50%) rotate(15deg);
}
.l-ham::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 5px));
  width: 100%;
  height: 1px;
  background: var(--color-black);
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.menu-open .l-ham::after {
  transform: translate(-50%, -50%) rotate(-15deg);
}

.l-logo {
  position: fixed;
  top: 32px;
  left: 40px;
  z-index: 2;
}
@media screen and (max-width: 850px) {
  .l-logo {
    top: 16px;
    left: 5.5%;
    width: 32%;
    max-width: 140px;
  }
}
.l-logo__img {
  width: 180px;
  padding-top: 4px;
  -webkit-mask-image: linear-gradient(to right, #000 33.3333333333%, transparent 66.6666666667%);
  mask-image: linear-gradient(to right, #000 33.3333333333%, transparent 66.6666666667%);
  -webkit-mask-size: 300% 100%;
  mask-size: 300% 100%;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 850px) {
  .l-logo__img {
    width: 100%;
  }
}
.on-load .l-logo__img {
  transition: -webkit-mask-position 1.3s cubic-bezier(0.33, 1, 0.68, 1);
  transition: mask-position 1.3s cubic-bezier(0.33, 1, 0.68, 1);
  transition: mask-position 1.3s cubic-bezier(0.33, 1, 0.68, 1), -webkit-mask-position 1.3s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}
.on-load[data-slug=top] .l-logo__img {
  transition-delay: 0.8s;
}
.l-logo__img-link {
  display: block;
}

.l-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 118px;
}
@media screen and (max-width: 850px) {
  .l-section {
    padding-top: 89px;
    padding-bottom: 59px;
  }
}
.l-section__title {
  box-sizing: content-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 49px;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(to right, #000 33.3333333333%, transparent 66.6666666667%);
  mask-image: linear-gradient(to right, #000 33.3333333333%, transparent 66.6666666667%);
  -webkit-mask-size: 300% 100%;
  mask-size: 300% 100%;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 850px) {
  .l-section__title {
    height: 7.4vw;
  }
}
.on-load .l-section__title {
  transition: -webkit-mask-position 1.3s cubic-bezier(0.33, 1, 0.68, 1) 1s;
  transition: mask-position 1.3s cubic-bezier(0.33, 1, 0.68, 1) 1s;
  transition: mask-position 1.3s cubic-bezier(0.33, 1, 0.68, 1) 1s, -webkit-mask-position 1.3s cubic-bezier(0.33, 1, 0.68, 1) 1s;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}
.l-section__title svg {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
}

.c-more {
  position: relative;
}
.c-more__link {
  display: block;
  position: relative;
  box-sizing: content-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 45px;
  text-decoration: none;
}
@media screen and (max-width: 850px) {
  .c-more__link {
    padding-right: 38px;
  }
}
.--back .c-more__link {
  margin: 0 auto;
  padding-right: 0;
  padding-left: 45px;
}
@media screen and (max-width: 850px) {
  .--back .c-more__link {
    padding-left: 38px;
  }
}
.c-more__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(42%, -48%);
  width: 49px;
  padding-top: 41.0808080808px;
  background: url(../img/btn_frame.png) no-repeat center center/100% auto;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.--back .c-more__link::before {
  right: auto;
  left: 0;
  transform: translate(-30%, -48%);
}
@media (hover: hover) {
  .c-more__link:hover::before {
    transform: translate(38%, -53%);
  }
}

@media (hover: hover) {
  .--back .c-more__link:hover::before {
    transform: translate(-34%, -53%);
  }
}

@media screen and (max-width: 850px) {
  .c-more__link::before {
    transform: translate(37%, -47%);
    width: 40px;
    padding-top: 33.5353535354px;
  }
}
.c-more__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(34%, -58%);
  width: 49px;
  padding-top: 41.0808080808px;
  background: url(../img/btn_frame.png) no-repeat center center/100% auto;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.--back .c-more__link::after {
  right: auto;
  left: 0;
  transform: translate(-38%, -58%);
}
@media (hover: hover) {
  .c-more__link:hover::after {
    transform: translate(38%, -53%);
  }
}

@media (hover: hover) {
  .--back .c-more__link:hover::after {
    transform: translate(-34%, -53%);
  }
}

@media screen and (max-width: 850px) {
  .c-more__link::after {
    transform: translate(29%, -57%);
    width: 40px;
    padding-top: 33.5353535354px;
  }
}
.c-more__text {
  display: block;
  color: var(--color-black);
  font-family: var(--font-eng);
  font-size: 16.5px;
  font-weight: 300;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 850px) {
  .c-more__text {
    font-size: 13px;
  }
}
.c-more__arrow {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-75%);
  width: 15px;
}
.--back .c-more__arrow {
  right: auto;
  left: 0;
  transform: translateY(-75%) scaleX(-1);
}
@media screen and (max-width: 850px) {
  .--back .c-more__arrow {
    width: 12px;
  }
}

.c-category__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 850px) {
  .c-category__list {
    border-top: 1px solid var(--color-gray);
  }
}
.c-category__list-item {
  position: relative;
  padding: 0 39.5px 10px;
}
@media screen and (max-width: 850px) {
  .c-category__list-item {
    width: 33.3333333333%;
    padding: 0;
    border-bottom: 1px solid var(--color-gray);
  }
}
.c-category__list-item::before {
  content: none;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--color-pink);
  border-radius: 50%;
  pointer-events: none;
}
@media screen and (max-width: 850px) {
  .c-category__list-item::before {
    bottom: 11px;
  }
}
.c-category__list-item.is-current::before {
  content: "";
}

.c-category__list-item.is-current.--all::before {
  background-color: var(--color-pink);
}

.c-category__list-item.is-current.--info::before,
.c-category__list-item.is-current.--streaming::before {
  background-color: var(--color-green);
}

.c-category__list-item.is-current.--live::before,
.c-category__list-item.is-current.--event::before,
.c-category__list-item.is-current.--single::before {
  background-color: var(--color-blue);
}

.l-section--live .c-category__list-item.is-current.--live::before {
  background-color: var(--color-green);
}

.c-category__list-item.is-current.--media::before,
.c-category__list-item.is-current.--album::before {
  background-color: var(--color-purple);
}

.c-category__list-item.is-current.--release::before,
.c-category__list-item.is-current.--bluray::before {
  background-color: var(--color-orange);
}

.c-category__list-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 1px;
  height: 10px;
  background: var(--color-gray);
}
@media screen and (max-width: 850px) {
  .c-category__list-item::after {
    top: 0;
    height: 100%;
  }
}
.c-category__list-item:first-child::after {
  content: none;
}

@media screen and (max-width: 850px) {
  .c-category__list-item:nth-child(3n-2)::after {
    content: none;
  }
}

@media screen and (max-width: 850px) {
  .c-category__list-item:last-child::after {
    content: "";
  }
}

@media screen and (max-width: 850px) {
  .c-category__list-item:nth-last-child(2)::after {
    content: "";
  }
}

.c-category__link {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
  text-align: center;
  color: var(--color-pink);
  font-size: 14px;
  letter-spacing: 0.07em;
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 850px) {
  .c-category__link {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.04em;
  }
}
@media (hover: hover) {
  .c-category__link:hover {
    opacity: 0.5;
  }
}
.is-current .c-category__link {
  pointer-events: none;
}
.--all .c-category__link {
  color: var(--color-pink);
}
.--info .c-category__link, .--streaming .c-category__link {
  color: var(--color-green);
}
.--live .c-category__link {
  color: var(--color-blue);
}
.l-section--live .--live .c-category__link {
  color: var(--color-green);
}
.--event .c-category__link, .--single .c-category__link {
  color: var(--color-blue);
}
.--media .c-category__link, .--album .c-category__link {
  color: var(--color-purple);
}
.--release .c-category__link, .--bluray .c-category__link {
  color: var(--color-orange);
}
.c-category__link::before {
  content: none;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--color-gray);
}
@media screen and (max-width: 850px) {
  .c-category__list-item:last-child .c-category__link::before {
    content: "";
  }
}
@media screen and (max-width: 850px) {
  .c-category__list-item:nth-child(3n) .c-category__link::before {
    content: none;
  }
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 850px) {
  .c-pagination {
    justify-content: space-between;
  }
}
.c-pagination__prev {
  display: block;
  transform: scaleX(-1);
  width: 20px;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 850px) {
  .c-pagination__prev {
    width: 16px;
  }
}
.c-pagination__prev.disabled {
  opacity: 0;
  pointer-events: none;
}
@media (hover: hover) {
  .c-pagination__prev:hover {
    transform: translateX(-5px) scaleX(-1);
  }
}
.c-pagination__next {
  display: block;
  width: 19.5px;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 850px) {
  .c-pagination__next {
    width: 16px;
  }
}
.c-pagination__next.disabled {
  opacity: 0;
  pointer-events: none;
}
@media (hover: hover) {
  .c-pagination__next:hover {
    transform: translateX(5px);
  }
}
.c-pagination__num {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 25px;
}
@media screen and (max-width: 850px) {
  .c-pagination__num {
    margin: 0 20px;
  }
}
.c-pagination__first {
  position: relative;
  padding-right: 22px;
}
@media screen and (max-width: 850px) {
  .c-pagination__first {
    padding-right: 18px;
  }
}
.c-pagination__first.disabled {
  opacity: 0;
  pointer-events: none;
}
.c-pagination__first::after {
  content: "...";
  display: block;
  position: absolute;
  bottom: 0;
  right: -4px;
  color: var(--color-black);
  font-family: var(--font-eng);
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 850px) {
  .c-pagination__first::after {
    right: -2px;
    font-size: 15px;
  }
}
.c-pagination__first-link {
  display: block;
  text-decoration: none;
  text-align: center;
  color: var(--color-black);
  font-family: var(--font-eng);
  font-size: 18px;
  letter-spacing: 0.05em;
  transition: color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 850px) {
  .c-pagination__first-link {
    font-size: 15px;
  }
}
@media (hover: hover) {
  .c-pagination__first-link:hover {
    color: var(--color-pink);
  }
}
.c-pagination__last {
  position: relative;
  padding-left: 22px;
}
.c-pagination__last.disabled {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 850px) {
  .c-pagination__last {
    padding-left: 18px;
  }
}
.c-pagination__last::after {
  content: "...";
  display: block;
  position: absolute;
  bottom: 0;
  left: -1px;
  color: var(--color-black);
  font-family: var(--font-eng);
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 850px) {
  .c-pagination__last::after {
    left: -2px;
    font-size: 15px;
  }
}
.c-pagination__last-link {
  display: block;
  text-decoration: none;
  text-align: center;
  color: var(--color-black);
  font-family: var(--font-eng);
  font-size: 18px;
  letter-spacing: 0.05em;
  transition: color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 850px) {
  .c-pagination__last-link {
    font-size: 15px;
  }
}
@media (hover: hover) {
  .c-pagination__last-link:hover {
    color: var(--color-pink);
  }
}
.c-pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-pagination__list-item {
  margin: 0 16px;
}
@media screen and (max-width: 850px) {
  .c-pagination__list-item {
    margin: 0 10px;
  }
}
.c-pagination__link {
  display: block;
  text-decoration: none;
  text-align: center;
  color: var(--color-black);
  font-family: var(--font-eng);
  font-size: 18px;
  transition: color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 850px) {
  .c-pagination__link {
    font-size: 15px;
  }
}
@media (hover: hover) {
  .c-pagination__link:hover {
    color: var(--color-pink);
  }
}
.is-current .c-pagination__link {
  pointer-events: none;
  color: var(--color-pink);
}

.c-btn {
  position: relative;
}
.c-btn__link {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  border: 1px solid var(--color-black);
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 850px) {
  .c-btn__link {
    padding-top: 13px;
    padding-bottom: 11px;
  }
}
@media (hover: hover) {
  .c-btn__link:hover {
    opacity: 0.5;
  }
}
.c-btn__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 5%;
  width: 5%;
  height: 100%;
  background: url(../img/arrow.png) no-repeat center center/100% auto;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .c-btn__link:hover::after {
    transform: translateX(20%);
  }
}

.c-btn__text {
  display: block;
  color: var(--color-black);
  font-family: var(--font-eng);
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 850px) {
  .c-btn__text {
    font-size: 13px;
  }
}

[data-modal] {
  cursor: pointer;
}

.m-modal.m-modal-custom .m-modal__bg {
  background: rgba(255, 255, 255, 0.8);
  cursor: auto;
}
.is-modal-overflow-prep .m-modal.m-modal-custom .m-modal__content {
  margin: 100px auto;
}
@media screen and (max-width: 850px) {
  .is-modal-overflow-prep .m-modal.m-modal-custom .m-modal__content {
    margin: 60px auto;
  }
}
.m-modal.m-modal-custom .m-modal__close-btn {
  top: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 850px) {
  .m-modal.m-modal-custom .m-modal__close-btn {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
.m-modal.m-modal-custom .m-modal__close-btn::before, .m-modal.m-modal-custom .m-modal__close-btn::after {
  height: 100%;
  background: var(--color-brown);
}