@charset "UTF-8";
@font-face {
  font-family: "Noto Sans CJK JP";
  src: url("fonts/NotoSansJP[wght].ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.hidden {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.6427104723vw;
  }
}
@media (min-width: 974px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans CJK JP", sans-serif;
  color: #120B58;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.9" /><feFuncG type="linear" slope="0.9" /><feFuncB type="linear" slope="0.9" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(90%);
            filter: brightness(90%);
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li,
ol {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol,
li {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 974px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.c-head {
  text-align: center;
}

.c-head h2 {
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  padding-bottom: 0.5rem;
  letter-spacing: 6.4px;
  text-transform: uppercase;
}
@media screen and (max-width: 424px) {
  .c-head h2 {
    font-size: 6.7vw;
  }
}
@media screen and (min-width: 768px) {
  .c-head h2 {
    font-size: 2rem;
    padding-bottom: 0.625rem;
  }
}

.c-head p {
  font-weight: 500;
  font-size: 1rem;
  padding-top: 0.625rem;
  line-height: 30px;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 424px) {
  .c-head p {
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  .c-head p {
    padding-top: 0.9375rem;
  }
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

.c-modal-scroll {
  max-height: 65vh;
  margin-top: 1.125rem;
  overflow-y: scroll;
  /* IE, Edge 対応 */
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
}
@media screen and (min-width: 768px) {
  .c-modal-scroll {
    max-height: 77vh;
  }
}

/* Chrome, Safari 対応 */
.c-modal-scroll::-webkit-scrollbar {
  display: none;
}

.c-modal-works,
.c-modal-profile {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #F8F8F8;
  border: 1px solid #D9D9D9;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(18, 11, 88, .2);
          box-shadow: 0px 0px 30px 0px rgba(18, 11, 88, .2);
  border-radius: 50px 20px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-modal-works,
  .c-modal-profile {
    width: 44.1875rem;
    border-radius: 70px 40px;
  }
}

.c-modal-close {
  position: absolute;
  width: 3.125rem;
  top: -0.625rem;
  right: -0.8125rem;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 16.667px 0px rgba(0, 0, 0, .1);
          box-shadow: 0px 0px 16.667px 0px rgba(0, 0, 0, .1);
  border-radius: 100px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-modal-close:hover {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.9" /><feFuncG type="linear" slope="0.9" /><feFuncB type="linear" slope="0.9" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

@media screen and (min-width: 768px) {
  .c-modal-works .c-modal-close {
    width: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .c-modal-profile .c-modal-close {
    width: 4.375rem;
  }
}

.c-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(52, 52, 52, .6)), to(rgba(0, 0, 0, .6)));
  background: linear-gradient(180deg, rgba(52, 52, 52, .6) 0%, rgba(0, 0, 0, .6) 100%);
}

/* 実績
-----------------------------------------------------*/
.c-modal-works {
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-modal-works {
    padding: 2.625rem;
  }
}

.c-modal-works__head-title {
  font-weight: 700;
  font-size: 1.125rem;
}

.c-modal-works__head-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.25rem;
}

.c-modal-works__head-flex p {
  font-weight: 500;
  font-size: 0.6875rem;
  color: rgba(18, 11, 88, .5);
}

.c-modal-works__head-flex p:nth-child(1) {
  padding-right: 0.53125rem;
}

.c-modal-works__head-flex p:nth-child(2) {
  position: relative;
  padding-left: 0.53125rem;
  text-transform: uppercase;
}

.c-modal-works__head-flex p:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 0.625rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(0, 0, 0, .5);
}

.c-modal-works__img {
  border: 1px solid #120B58;
  border-radius: 24.874px;
  aspect-ratio: 620/350;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-modal-works__bottom {
  margin-top: 1.125rem;
}

.c-modal-works__bottom-head p:nth-child(1) {
  font-weight: 700;
  font-size: 1rem;
}

.c-modal-works__bottom-head p:nth-child(2) {
  font-weight: 400;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}

.c-modal-works__bottom-item {
  margin-top: 1.25rem;
}

.c-modal-works__bottom-item-title {
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1;
}

.c-modal-works__bottom-item a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}

.c-modal-works__bottom-item a p {
  display: inline-block;
  font-weight: 400;
  font-size: 0.6875rem;
  color: rgba(18, 11, 88, .5);
  word-break: break-all;
}

.c-modal-works__bottom-item a p::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.0625rem;
  bottom: -0.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #120B58;
  opacity: 0;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.c-modal-works__bottom-item a:hover p::after {
  opacity: 1;
}

.c-modal-works__bottom-item a img {
  width: 0.8125rem;
  margin-left: 0.25rem;
}

.c-modal-works__bottom-item-text p {
  font-weight: 400;
  font-size: 0.6875rem;
}

.c-modal-works__bottom-item-text p:nth-child(1) {
  margin-bottom: 0.25rem;
}

.c-modal-works__bottom-item-text p:nth-child(2) {
  color: rgba(18, 11, 88, .5);
}

/* 会社概要
-----------------------------------------------------*/
.c-modal-profile {
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-modal-profile {
    width: 51.875rem;
    padding: 3.125rem;
  }
}

.c-modal-profile__title {
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.375rem;
  letter-spacing: 3.6px;
}
@media screen and (min-width: 768px) {
  .c-modal-profile__title {
    font-size: 2rem;
    letter-spacing: 4.8px;
  }
}

.c-modal-profile__items {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-modal-profile__items {
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .c-modal-profile__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-modal-profile__item p {
  font-weight: 500;
  font-size: 0.875rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: #fff;
  border-top: 1px solid rgba(18, 11, 88, .5);
  border-left: 1px solid rgba(18, 11, 88, .5);
  border-right: 1px solid rgba(18, 11, 88, .5);
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .c-modal-profile__item p {
    font-size: 1rem;
    padding: 0.8125rem 1.125rem;
    border-right: 0;
    border-right: initial;
  }
}

.c-modal-profile__item p:nth-child(1) {
  background-color: #efeaf7;
}
@media screen and (min-width: 768px) {
  .c-modal-profile__item p:nth-child(1) {
    width: 6.6875rem;
    background-color: #fff;
  }
}

.c-modal-profile__item p:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .c-modal-profile__item p:nth-child(2) {
    width: calc(100% - 6.6875rem);
    border-right: 1px solid rgba(18, 11, 88, .5);
  }
}

@media screen and (min-width: 768px) {
  .c-modal-profile__item:last-child p {
    border-bottom: 1px solid rgba(18, 11, 88, .5);
  }
}

.c-modal-profile__item:last-child p:nth-child(2) {
  border-bottom: 1px solid rgba(18, 11, 88, .5);
}

.c-modal-profile__item:first-child p:first-child {
  border-radius: 2px 2px 0 0;
}
@media screen and (min-width: 768px) {
  .c-modal-profile__item:first-child p:first-child {
    border-radius: 2px 0 0 0;
  }
}

@media screen and (min-width: 768px) {
  .c-modal-profile__item:first-child p:last-child {
    border-radius: 0 2px 0 0;
  }
}

@media screen and (min-width: 768px) {
  .c-modal-profile__item:last-child p:first-child {
    border-radius: 0 0 0 2px;
  }
}

.c-modal-profile__item:last-child p:last-child {
  border-radius: 0 0 2px 2px;
}
@media screen and (min-width: 768px) {
  .c-modal-profile__item:last-child p:last-child {
    border-radius: 0 0 2px 0;
  }
}

.c-modal-profile__item p img {
  width: 0.75rem;
  cursor: pointer;
}

.c-modal-profile__bottom {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(18, 11, 88, .5);
}

.c-modal-profile__bottom a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-modal-profile__bottom a img {
  width: 1.0625rem;
}

.c-modal-profile__bottom a p {
  font-weight: 500;
  font-size: 0.875rem;
  margin-left: 0.5rem;
  text-decoration: underline;
}

.c-modal-profile__bottom-text {
  margin-top: 0.625rem;
}

.c-modal-profile__bottom-text p {
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, .7);
}
@media screen and (min-width: 768px) {
  .c-modal-profile__bottom-text p {
    font-size: 0.875rem;
  }
}

.p-drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  z-index: 8888;
  pointer-events: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.p-drawer-menu__content {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 7.25rem;
  background: url(../images/img_drawer-bg.jpg) no-repeat center center/cover;
}

.p-drawer-menu__content::before,
.p-drawer-menu__content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}

.p-drawer-menu__content::before {
  background-color: #fff;
  mix-blend-mode: overlay;
  opacity: 0.3;
}

.p-drawer-menu__content::after {
  background: radial-gradient(101.45% 36.57% at 53.94% 62.06%, #4D42B4 0%, #967AC4 46%, #836CC2 68.5%, #574CBE 100%);
  mix-blend-mode: color;
  opacity: 0.5;
}

.p-drawer-menu__logo {
  position: relative;
  width: 12.0625rem;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.p-drawer-menu__head {
  position: relative;
  max-width: 15.6875rem;
  margin-top: 4.375rem;
  margin-left: auto;
  margin-right: auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: rgba(37, 37, 37, .5);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  z-index: 1;
}

.p-drawer-menu__head::after {
  position: absolute;
  content: "";
  width: 10.75rem;
  height: 0.0625rem;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #252525;
  opacity: 0.5;
}

.p-drawer-menu__nav {
  position: relative;
  width: 17.5rem;
  margin-top: 1.4375rem;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.p-drawer-menu__nav li + li {
  margin-top: 1.25rem;
}

.p-drawer-menu__nav li a {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
  color: #252525;
  background-color: rgba(255, 255, 255, .2);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .15);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .15);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  border-radius: 20px 10px;
}

.p-drawer-menu__copy {
  position: absolute;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  width: 16.875rem;
  bottom: 0.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  letter-spacing: 1.2px;
}

.p-drawer .is-open {
  opacity: 1;
  pointer-events: initial;
}

/* ハンバーガーメニュー
-----------------------------------------------------*/
.p-drawer-hamburger {
  position: fixed;
  width: 4.03125rem;
  height: 0.625rem;
  top: 1.875rem;
  right: 1.65625rem;
  cursor: pointer;
  z-index: 9998;
}

.p-drawer-hamburger span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 0.125rem;
  right: 0;
  background-color: #120B58;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.p-drawer-hamburger span:nth-of-type(1) {
  top: 0;
}

.p-drawer-hamburger span:nth-of-type(2) {
  bottom: 0;
}

/* クリック時
------------------------------------*/
.p-drawer-hamburger.is-open span:nth-of-type(1) {
  top: 0.1875rem;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

.p-drawer-hamburger.is-open span:nth-of-type(2) {
  top: 0.1875rem;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

.p-footer {
  position: relative;
  height: 17.8125rem;
  margin-top: -4.375rem;
  background: url(../images/img_bg-footer.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-footer {
    height: 55rem;
    margin-top: -37.1875rem;
    background: #F6F6FD url(../images/img_bg-footer.png) no-repeat center center/cover;
  }
}

.p-footer-copy {
  position: absolute;
  width: 100%;
  font-size: 0.75rem;
  bottom: 0;
  padding-top: 0.4375rem;
  padding-bottom: 0.4375rem;
  color: #fff;
  background: linear-gradient(91deg, #2435CD 5.74%, #3526AA 16.03%, #2F1E7E 45.52%, #2B1965 74.04%, #A55CBA 99.34%);
  letter-spacing: 1.2px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer-copy {
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
    letter-spacing: 1.6px;
  }
}

.p-fv {
  position: relative;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .p-fv {
    height: 67.3vw;
  }
}

.p-fv::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.3125rem;
  bottom: -0.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  z-index: 0;
}

.p-fv h1 img {
  position: absolute;
  width: 15rem;
  top: 11.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 200;
}
@media screen and (min-width: 768px) {
  .p-fv h1 img {
    width: 36.3vw;
    top: 19.1vw;
  }
}
@media screen and (min-width: 1281px) {
  .p-fv h1 img {
    width: 29.0625rem;
    top: 15.3125rem;
  }
}

.p-fv p img {
  position: absolute;
  width: 8.75rem;
  bottom: 13.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 200;
}
@media screen and (min-width: 768px) {
  .p-fv p img {
    width: 18.5vw;
    top: 29vw;
    bottom: auto;
    bottom: initial;
    left: auto;
    left: initial;
    right: 7vw;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}
@media screen and (min-width: 1281px) {
  .p-fv p img {
    width: 14.875rem;
    top: 23.125rem;
    right: 5.625rem;
  }
}

.p-fv-box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
}

.p-fv-box::before,
.p-fv-box::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 199;
}

.p-fv-box::before {
  background-color: #fff;
  mix-blend-mode: overlay;
  opacity: 0.3;
}

.p-fv-box::after {
  background-color: #574CBE;
  opacity: 0.5;
  mix-blend-mode: overlay;
}
@media screen and (min-width: 768px) {
  .p-fv-box::after {
    mix-blend-mode: color;
  }
}

.p-fv-box img {
  position: absolute;
}

.p-fv-box img:nth-child(1) {
  width: 100%;
  height: 20.3vw;
  bottom: 0;
  z-index: 200;
}

.p-fv-box img:nth-child(2) {
  width: 100%;
  height: 57.5vw;
  bottom: -22.5vw;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .p-fv-box img:nth-child(2) {
    bottom: -27.5vw;
  }
}

.p-fv-box img:nth-child(3),
.p-fv-box img:nth-child(4) {
  width: 30vw;
  height: 15.5vw;
  bottom: 7.5vw;
  left: 16vw;
  z-index: 98;
}
@media screen and (min-width: 768px) {
  .p-fv-box img:nth-child(3),
  .p-fv-box img:nth-child(4) {
    bottom: 3.5vw;
  }
}

.p-fv-box img:nth-child(4) {
  z-index: 97;
}

.p-fv-box img:nth-child(5),
.p-fv-box img:nth-child(18) {
  width: 100%;
  height: 36.375rem;
  bottom: -5.3125rem;
  z-index: 96;
}
@media screen and (min-width: 768px) {
  .p-fv-box img:nth-child(5),
  .p-fv-box img:nth-child(18) {
    height: 58vw;
    bottom: 9.3vw;
  }
}

.p-fv-box img:nth-child(6) {
  width: 100%;
  height: 31.8vw;
  bottom: 6.3vw;
  z-index: 95;
}
@media screen and (min-width: 768px) {
  .p-fv-box img:nth-child(6) {
    bottom: 2.3vw;
  }
}

.p-fv-box img:nth-child(7) {
  width: 100%;
  height: 23.8vw;
  bottom: 0;
  z-index: 94;
}
@media screen and (min-width: 768px) {
  .p-fv-box img:nth-child(7) {
    bottom: 5.8vw;
  }
}

.p-fv-box img:nth-child(8) {
  width: 100%;
  height: 43.8vw;
  bottom: 6vw;
  z-index: 93;
}
@media screen and (min-width: 768px) {
  .p-fv-box img:nth-child(8) {
    bottom: 2.2vw;
  }
}

.p-fv-box img:nth-child(9) {
  width: calc(100% - 1.5vw);
  height: 21.2vw;
  bottom: 5.5vw;
  right: 1.5vw;
  z-index: 92;
}

.p-fv-box img:nth-child(10) {
  width: 100%;
  height: 32.5vw;
  bottom: 10vw;
  z-index: 91;
}
@media screen and (min-width: 768px) {
  .p-fv-box img:nth-child(10) {
    bottom: 3.8vw;
  }
}

.p-fv-box img:nth-child(11) {
  width: 100%;
  height: 51.2vw;
  bottom: 15.5vw;
  z-index: 90;
}
@media screen and (min-width: 768px) {
  .p-fv-box img:nth-child(11) {
    bottom: 2.3vw;
  }
}

.p-fv-box img:nth-child(12) {
  width: 100%;
  height: 9.375rem;
  bottom: 10rem;
  z-index: 89;
}
@media screen and (min-width: 768px) {
  .p-fv-box img:nth-child(12) {
    height: 36.3vw;
    bottom: 0;
  }
}

.p-fv-box img:nth-child(13) {
  width: 100%;
  height: 10.9375rem;
  bottom: 11.5625rem;
  z-index: 88;
}
@media screen and (min-width: 768px) {
  .p-fv-box img:nth-child(13) {
    height: 45vw;
    bottom: -3.8vw;
  }
}

.p-fv-box img:nth-child(14) {
  width: 54.3vw;
  height: 34.2vw;
  bottom: 14.6875rem;
  left: -0.6875rem;
  z-index: 87;
}
@media screen and (min-width: 768px) {
  .p-fv-box img:nth-child(14) {
    bottom: 14vw;
    left: 13vw;
  }
}

.p-fv-box img:nth-child(15) {
  width: 42.8vw;
  height: 27vw;
  bottom: 14.5625rem;
  left: -1.0625rem;
  z-index: 86;
}
@media screen and (min-width: 768px) {
  .p-fv-box img:nth-child(15) {
    bottom: 23.8vw;
    left: -7vw;
  }
}

.p-fv-box img:nth-child(16) {
  width: 25.8vw;
  height: 25.3vw;
  bottom: 16.5625rem;
  right: -0.6875rem;
  z-index: 85;
}
@media screen and (min-width: 768px) {
  .p-fv-box img:nth-child(16) {
    bottom: 21.7vw;
    right: 0;
  }
}

.p-fv-box img:nth-child(17) {
  width: 100%;
  height: 100%;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-fv-box img:nth-child(17) {
    height: 67vw;
  }
}

.parallax {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0); /* GPUアクセラレーションを有効にする */
}

@media screen and (min-width: 768px) {
  .p-header {
    position: fixed;
    width: 100%;
    height: 6.25rem;
    top: 0;
    left: 0;
    right: 0;
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    z-index: 8888;
  }
}

@media screen and (min-width: 768px) {
  .p-header-inner {
    position: absolute;
    width: 29.1875rem;
    height: 1.25rem;
    top: 4.0625rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (min-width: 768px) {
  .p-header-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-header-nav li {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-header-nav li a {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    font-size: 0.875rem;
    letter-spacing: 2.1px;
    text-transform: uppercase;
  }
}

@media screen and (min-width: 768px) {
  .p-header-nav li:not(:first-child)::before {
    position: absolute;
    content: "";
    width: 1.3125rem;
    height: 0.0625rem;
    top: 50%;
    left: -3.75rem;
    -webkit-transform: translateY(-50%) rotate(-65deg);
            transform: translateY(-50%) rotate(-65deg);
    background-color: #120B58;
    opacity: 0.3;
  }
}

.p-link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-link {
    position: relative;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    background-color: #F6F6FD;
  }
}

@media screen and (min-width: 768px) {
  .p-link::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 85%;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #F6F6FD;
    z-index: -1;
  }
}
@media screen and (min-width: 1480px) {
  .p-link::before {
    height: 38%;
  }
}
@media screen and (min-width: 2100px) {
  .p-link::before {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .p-link-bg {
    position: absolute;
    width: 100%;
    top: -18.75rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -2;
  }
}

.p-link .c-head h2 {
  border-bottom: 1px solid #161821;
}

@media screen and (min-width: 768px) {
  .p-link-content {
    padding: 3.75rem;
    background-color: #FCFCFC;
    -webkit-box-shadow: 0px 0px 100px 0px rgba(165, 165, 167, .15);
            box-shadow: 0px 0px 100px 0px rgba(165, 165, 167, .15);
    border-radius: 70px 40px;
  }
}

.p-link-items {
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-link-items {
    margin-top: 1.875rem;
  }
}

.p-link-item {
  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;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  border: 0.776px solid #000;
  -webkit-box-shadow: 0px 0px 23.267px 0px rgba(0, 0, 0, .1);
          box-shadow: 0px 0px 23.267px 0px rgba(0, 0, 0, .1);
  border-radius: 15.511px 7.756px;
}
@media screen and (min-width: 768px) {
  .p-link-item {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.p-link-item:nth-child(1) {
  background-color: #0C0628;
  border: 0.776px solid #000;
  -webkit-box-shadow: 0px 0px 23.267px 0px rgba(0, 0, 0, .1);
          box-shadow: 0px 0px 23.267px 0px rgba(0, 0, 0, .1);
  border-radius: 15.511px 7.756px;
}

.p-link-item:nth-child(2) {
  margin-top: 0.9375rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-link-item:nth-child(2) {
    margin-top: 1.25rem;
  }
}

.p-link-item::after {
  position: absolute;
  content: "";
  width: 0.9375rem;
  height: 0.625rem;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .p-link-item::after {
    width: 1.5625rem;
    height: 0.9375rem;
    right: 1.875rem;
  }
}

.p-link-item:nth-child(1):after {
  background: url(../images/icon_arrow-white.png) no-repeat center center/contain;
}

.p-link-item:nth-child(2):after {
  background: url(../images/icon_arrow-blue.png) no-repeat center center/contain;
}

.p-link-item:hover::after {
  right: 1.5625rem;
}

.p-link-item:nth-child(1) img {
  width: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-link-item:nth-child(1) img {
    width: 1.5rem;
    height: 1.5625rem;
  }
}

.p-link-item:nth-child(2) img {
  width: 1.25rem;
  height: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-link-item:nth-child(2) img {
    width: 2.3125rem;
    height: 1.75rem;
  }
}

.p-link-item p {
  font-weight: 700;
  font-size: 1rem;
  margin-left: 0.625rem;
  line-height: 23.267px;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .p-link-item p {
    font-size: 1.25rem;
    line-height: 30px;
    letter-spacing: 2px;
  }
}

.p-link-item:nth-child(1) p {
  margin-left: 0.625rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-link-item:nth-child(1) p {
    margin-left: 1.5625rem;
  }
}

.p-link-item:nth-child(2) p {
  margin-left: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-link-item:nth-child(2) p {
    margin-left: 1.25rem;
  }
}

.p-profile {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-profile {
    margin-top: 3.75rem;
  }
}

.p-profile-content {
  position: relative;
  padding: 1.25rem 1.25rem 12.375rem 1.25rem;
  background-color: #FCFCFC;
  -webkit-box-shadow: 0px 0px 100px 0px rgba(165, 165, 167, .15);
          box-shadow: 0px 0px 100px 0px rgba(165, 165, 167, .15);
  border-radius: 70px 40px;
  overflow: hidden;
}
@media screen and (max-width: 424px) {
  .p-profile-content {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-profile-content {
    padding: 3.75rem;
  }
}

.p-profile .c-head h2 {
  position: relative;
}

.p-profile .c-head h2::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.25rem;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #161821;
}
@media screen and (min-width: 768px) {
  .p-profile .c-head h2::after {
    background: -webkit-gradient(linear, left top, right top, from(#161821), color-stop(55%, #161821), to(rgba(90, 98, 135, 0)));
    background: linear-gradient(90deg, #161821 0%, #161821 55%, rgba(90, 98, 135, 0) 100%);
  }
}

.p-profile-info {
  margin-top: 1.875rem;
}

.p-profile-info p:nth-child(1) {
  font-weight: 700;
  font-size: 1rem;
  line-height: 30px;
  letter-spacing: 2px;
}
@media screen and (max-width: 424px) {
  .p-profile-info p:nth-child(1) {
    font-size: 3.8vw;
  }
}
@media screen and (min-width: 768px) {
  .p-profile-info p:nth-child(1) {
    font-size: 1.25rem;
  }
}

.p-profile-info p:nth-child(2) {
  font-size: 0.79rem;
  margin-top: 0.625rem;
  line-height: 24px;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 424px) {
  .p-profile-info p:nth-child(2) {
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  .p-profile-info p:nth-child(2) {
    font-weight: 500;
    font-size: 1rem;
    line-height: 30px;
  }
}

.p-profile-btn {
  font-size: 0.79rem;
  margin-top: 1.875rem;
  line-height: 30px;
  letter-spacing: 3.2px;
}
@media screen and (max-width: 424px) {
  .p-profile-btn {
    font-size: 3vw;
  }
}
@media screen and (max-width: 424px) {
  .p-profile-btn {
    line-height: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-profile-btn {
    font-weight: 700;
    font-size: 1rem;
  }
}

.p-profile-btn a {
  position: relative;
  display: inline-block;
  width: 5.3125rem;
}
@media screen and (max-width: 424px) {
  .p-profile-btn a {
    width: 20vw;
  }
}
@media screen and (min-width: 768px) {
  .p-profile-btn a {
    width: 6.5rem;
  }
}

.p-profile-btn a::after {
  position: absolute;
  content: "";
  width: 0.9375rem;
  height: 0.625rem;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/icon_arrow-blue.png) no-repeat center center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 424px) {
  .p-profile-btn a::after {
    width: 3.5vw;
    height: 3vw;
  }
}
@media screen and (min-width: 768px) {
  .p-profile-btn a::after {
    width: 1.25rem;
    height: 0.8125rem;
  }
}

.p-profile-btn a:hover::after {
  right: -0.3125rem;
}

.p-profile-content img {
  position: absolute;
  width: 19.0625rem;
  right: -2.8125rem;
  bottom: -2.0625rem;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-profile-content img {
    width: 29.4375rem;
    right: -4.375rem;
    bottom: -2.8125rem;
  }
}

.p-shop {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-shop {
    background-color: #F6F6FD;
  }
}

@media screen and (min-width: 768px) {
  .p-shop .l-inner {
    max-width: 53.375rem;
  }
}

.p-shop .c-head h2 {
  border-bottom: 1px solid #161821;
}

.p-shop-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6875rem 0.9375rem;
  margin-top: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .p-shop-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.p-shop-item {
  border-radius: 27.324px 13.662px;
  text-align: center;
}

.p-shop-item__img {
  overflow: hidden;
  border-radius: 27.324px 13.662px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, .1);
          box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, .1);
}

.p-shop-item__img img {
  border-radius: 27.324px 13.662px;
  aspect-ratio: 345/345;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-shop-item:hover .p-shop-item__img img {
  -webkit-transform: scale(110%);
          transform: scale(110%);
}

.p-shop-item__text p:nth-child(1) {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.75rem;
  letter-spacing: 1.995px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-shop-item__text p:nth-child(1) {
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.625rem;
    letter-spacing: 1.6px;
    line-height: 1.5;
  }
}

.p-shop-item__text p:nth-child(2) {
  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;
  font-size: 0.6875rem;
  margin-top: 0.3125rem;
  color: rgba(18, 11, 88, .5);
  letter-spacing: 0.748px;
}
@media screen and (max-width: 424px) {
  .p-shop-item__text p:nth-child(2) {
    font-size: 2.6vw;
  }
}
@media screen and (min-width: 768px) {
  .p-shop-item__text p:nth-child(2) {
    font-weight: 500;
    font-size: 0.75rem;
    margin-top: 0;
    letter-spacing: 0.6px;
  }
}

.p-shop-item__text p img {
  width: 0.75rem;
  margin-left: 0.375rem;
}
@media screen and (max-width: 424px) {
  .p-shop-item__text p img {
    width: 3vw;
  }
}
@media screen and (min-width: 768px) {
  .p-shop-item__text p img {
    width: 0.8125rem;
    margin-left: 0.3125rem;
  }
}

.p-works {
  margin-top: -0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-works {
    margin-top: -7.5rem;
    background: -webkit-gradient(linear, left bottom, left top, from(#F6F6FD), to(#fff));
    background: linear-gradient(to top, #F6F6FD 0%, #fff 100%);
  }
}

@media screen and (min-width: 768px) {
  .p-works .l-inner {
    max-width: 72.25rem;
  }
}

.p-works-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-works-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
  }
}

.p-works-item {
  position: relative;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(18, 11, 88, .2);
          box-shadow: 0px 0px 20px 0px rgba(18, 11, 88, .2);
  border-radius: 20px 10px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .p-works-item:hover .p-works-item__hover {
    opacity: 1;
  }
}

.p-works-item img {
  border-radius: 20px 10px;
  aspect-ratio: 348/196;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-works-item__hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 1.625rem 1.0625rem 1.375rem 2rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(52, 52, 52, .6)), to(rgba(0, 0, 0, .6)));
  background: linear-gradient(180deg, rgba(52, 52, 52, .6) 0%, rgba(0, 0, 0, .6) 100%);
  border-radius: 20px 10px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-works-item__hover h2,
.p-works-item__hover p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #fff;
  text-shadow: 0px 0px 6.024px rgba(0, 0, 0, .3);
}

.p-works-item__hover h2 {
  font-weight: 700;
  font-size: 1rem;
}

.p-works-item__hover p {
  font-weight: 500;
  font-size: 0.53125rem;
}

.p-works-item__hover-btn {
  position: absolute;
  right: 1.0625rem;
  bottom: 1.375rem;
  text-align: center;
}

.p-works-item__hover-btn a {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 0.78125rem;
  width: 8.4375rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-right: 0.8125rem;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 2.972px 0px rgba(0, 0, 0, .25);
          box-shadow: 0px 0px 2.972px 0px rgba(0, 0, 0, .25);
  border-radius: 15px 10px;
  letter-spacing: 1.266px;
  text-transform: uppercase;
  opacity: 0.9;
}

.p-works-item__hover-btn a::after {
  position: absolute;
  content: "";
  width: 0.4375rem;
  height: 0.3125rem;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/icon_arrow-blue.png) no-repeat center center/contain;
}

.p-works-filter {
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-works-filter {
    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;
    margin-top: 2.1875rem;
  }
}

.p-works-filter__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1.875rem;
  padding-right: 0.875rem;
}
@media screen and (max-width: 389px) {
  .p-works-filter__flex {
    padding-left: 1.0625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-works-filter__flex {
    padding: 0.4375rem 0.5rem 0.4375rem 1.5625rem;
    background-color: #fff;
    border-radius: 46.25px;
    opacity: 0.9;
  }
}

.p-works-filter__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-works-filter__text img {
  width: 1.25rem;
}

.p-works-filter__text p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-left: 0.25rem;
  line-height: 25.9px;
}

.p-works-filter__kind {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6875rem;
  margin-left: 0.875rem;
}

.p-works-filter__kind-item {
  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;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #F5F5F5;
  -webkit-box-shadow: 0px 0px 3.7px 0px rgba(0, 0, 0, .05);
          box-shadow: 0px 0px 3.7px 0px rgba(0, 0, 0, .05);
  border-radius: 100px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-works-filter__kind-item.is-active,
.p-works-filter__kind-item:hover {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 8.366px 0px rgba(0, 0, 0, .25);
          box-shadow: 0px 0px 8.366px 0px rgba(0, 0, 0, .25);
}

.p-works-filter__kind-item p {
  font-weight: 500;
  font-size: 0.625rem;
  color: #2F2298;
  letter-spacing: 1.189px;
  text-transform: uppercase;
}

.p-works-filter__kind-item:nth-child(2) p span,
.p-works-filter__kind-item:nth-child(3) p span {
  font-size: 0.5rem;
}

.p-works-filter__kind-item p span {
  font-weight: 900;
}

.p-works-filter__btn {
  margin-top: 1.6875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-works-filter__btn {
    margin-top: 0;
    margin-left: 3.125rem;
  }
}

.p-works-filter__btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  background: linear-gradient(91deg, #2435CD 5.74%, #3526AA 16.03%, #2F1E7E 45.52%, #2B1965 74.04%, #A55CBA 99.34%);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(18, 11, 88, .25);
          box-shadow: 0px 0px 20px 0px rgba(18, 11, 88, .25);
  -webkit-text-stroke-width: 0.26015082;
  -webkit-text-stroke-color: #000;
  border-radius: 20px 10px;
  letter-spacing: 1.8px;
  opacity: 0.9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .p-works-filter__btn a {
    width: 21.875rem;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    padding-right: 0.875rem;
  }
}

.p-works-filter__btn a.is-active img {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.p-works-filter__btn a p {
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  text-transform: uppercase;
}

.p-works-filter__btn a img {
  width: 0.5625rem;
  height: 0.9375rem;
  margin-left: 1.25rem;
  padding-top: 0.125rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .p-works-filter__btn a img {
    padding-top: 0;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
