@charset "UTF-8";
:root {
  --inner: 1230px;
  --sp-max-width: 540px;
  --padding-pc: 25px;
  --padding-sp: 24px;
  --base-font: "Montserrat", serif;
  --second-font: "kozuka-gothic-pr6n", sans-serif;
  --c-base: #fff;
  --c-primary: #3e3a39;
  --c-text: #fff;
  --z-index-modal: 50;
  --z-index-modal-open: 100;
  --z-index-overlay: 40;
  --z-index-sp-menu: 30;
  --z-index-header: 10;
  --z-index-page-top: 5;
  --z-index-following-banner: 5;
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
  --rounded-xxs: 2px;
  --rounded-xs: 5px;
  --rounded-sm: 7px;
  --rounded-md: 12px;
  --rounded-lg: 15px;
  --rounded-xl: 20px;
  --rounded-full: 99rem;
  --flex-track: minmax(0, 1fr);
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:where(body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd) {
  margin: 0;
}

:where(ul, ol) {
  padding: 0;
  list-style: "";
}

:where(img) {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

:where(a) {
  text-decoration: none;
  color: inherit;
}

:where(button) {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background: none;
  touch-action: manipulation;
}

:where([type=text], [type=email], [type=tel], select, textarea) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  width: 100%;
  background-color: var(--c-base);
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
}

:where(textarea) {
  resize: none;
  field-sizing: content;
}

:where(:-moz-any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(a) {
  transition: opacity 0.3s;
  cursor: pointer;
}

@media (hover: hover) {
  :where(a):hover {
    opacity: 0.7;
  }
}
:focus:not(:focus-visible) {
  outline: none;
}

:lang(en) {
  font-family: var(--base-font);
}

body {
  font-family: var(--second-font);
  font-size: 0.9375rem;
  color: var(--c-text);
  line-height: 1.3;
  background-color: var(--c-primary);
}

.c-icon {
  display: block;
  width: 100%;
}

.c-icon::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: currentcolor;
  display: inline-block;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.c-heading {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-align: center;
  border: 1px solid;
  text-transform: uppercase;
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .c-heading {
    font-size: 1.25rem;
  }
}

.l-header {
  padding-top: 64px;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding-top: 104px;
  }
}

.l-header__logo {
  margin: 0 auto;
  width: 151px;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 249px;
  }
}

.l-footer {
  padding: 64px 0;
}

.l-footer__copy {
  display: block;
  font-family: Montserrat;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.l-inner {
  width: min(var(--sp-max-width), 100%);
  padding: 0 var(--padding-sp);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    width: min(var(--inner) + var(--padding-pc) * 2, 100%);
    padding: 0 var(--padding-pc);
  }
}

@media screen and (min-width: 768px) {
  .l-inner--small {
    width: min(var(--inner-small) + var(--padding-pc) * 2, 100%);
  }
}

.l-wrapper {
  overflow-x: clip;
}

.p-works {
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  .p-works {
    margin-top: 74px;
  }
}

.p-works__list {
  margin-top: 64px;
  display: grid;
  grid-template-columns: var(--flex-track);
  row-gap: 48px;
}
@media screen and (min-width: 768px) {
  .p-works__list {
    margin-top: 73px;
    grid-template-columns: repeat(2, var(--flex-track));
    row-gap: 75px;
    -moz-column-gap: 54px;
         column-gap: 54px;
  }
}

.p-works__note {
  margin-top: 48px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-works__note {
    margin-top: 67px;
  }
}

.p-works__item--window .p-works__item-button {
  position: relative;
}

.p-works__item--window .p-works__item-button::before {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background-image: url(../img/common/icon_window.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-works__item--window .p-works__item-button::before {
    width: 36px;
  }
}

@media (any-hover: hover) {
  .p-modal-button:hover .p-modal-button__img img {
    transform: scale(1.1);
  }
}
.p-modal-button__img {
  overflow: hidden;
  display: block;
}

.p-modal-button__img img {
  transition: transform 0.3s;
}

.p-modal-button__body {
  margin-top: 15px;
  display: block;
  font-size: 0.875rem;
  text-align: left;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: var(--flex-track);
  row-gap: 2px;
}

.p-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 24px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: #333;
}
@media screen and (min-width: 768px) {
  .p-modal {
    padding: 32px 48px;
  }
}

.p-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.p-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.p-modal__content {
  position: relative;
  width: 100%;
  max-width: 367px;
}
@media screen and (min-width: 768px) {
  .p-modal__content {
    max-width: 904px;
  }
}

.p-modal_inner {
  margin: 0 auto;
  padding: 38px 28px;
  position: relative;
  max-height: 95dvh;
  overflow-y: scroll;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}
@media screen and (min-width: 768px) {
  .p-modal_inner {
    padding: 46px 56px;
  }
}

.p-modal_inner::-webkit-scrollbar {
  display: none;
}

.p-modal__body {
  margin-top: 33px;
  font-size: 0.875rem;
  text-align: left;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: var(--flex-track);
  row-gap: 2px;
  background-color: #333;
}
@media screen and (min-width: 768px) {
  .p-modal__body {
    margin-top: 49px;
  }
}

.p-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 20;
  transition: opacity 0.3s;
  width: 25px;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-modal__close {
    width: 36px;
  }
}

.p-modal__close:hover {
  opacity: 0.8;
}

.p-modal__close button {
  display: block;
  width: 100%;
}

.p-modal__close button::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: currentcolor;
  display: inline-block;
  aspect-ratio: 25/15;
  -webkit-mask-image: url(../img/common/icon_close.svg);
          mask-image: url(../img/common/icon_close.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.p-modal__slide {
  width: 312px;
}
@media screen and (min-width: 768px) {
  .p-modal__slide {
    width: 792px;
  }
}

.p-modal__slider {
  background-color: #333;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  display: flex;
  width: 18px;
  height: initial;
  aspect-ratio: 15/10;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 25px;
  }
}

@media (any-hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: 0.7;
  }
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  width: 100%;
  aspect-ratio: 15/10;
  margin: auto;
  background-repeat: no-repeat;
  background-size: contain;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../img/common/icon_arrow_to_prev.svg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../img/common/icon_arrow_to_next.svg);
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 24px;
  height: 1px;
  border-radius: 0;
  background-color: #666;
  opacity: 0.75;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 64px;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 1.5px;
}
@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2.5px;
  }
}

.swiper-pagination-bullet-active {
  background-color: var(--c-base);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  justify-content: center;
  bottom: auto;
  top: 277px;
}
@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    top: 628px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  margin-top: 0;
  --_x: 3px;
  top: 150px;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    --_x: 0;
    top: min(326px, 41.5286624204vw);
  }
}

.swiper-button-prev {
  left: var(--_x);
}

.swiper-button-next {
  left: auto;
  right: var(--_x);
}

.p-about {
  margin-top: 64px;
}

@media screen and (min-width: 768px) {
  .p-about__inner {
    width: min(587px + var(--padding-pc) * 2, 100%);
  }
}

.p-about__blocks {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-about__blocks {
    margin-top: 55px;
  }
}

.p-about__block + .p-about__block {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-about__block + .p-about__block {
    margin-top: 55px;
  }
}

.p-about__block-title {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.p-about__block-body {
  margin-top: 31px;
}

.p-about__profile + .p-about__profile {
  margin-top: 7px;
}

.p-about__profile {
  font-size: 0.9375rem;
}

.p-about__cols + .p-about__cols {
  margin-top: 7px;
}

.p-about__cols {
  display: grid;
  grid-template-columns: 64px var(--flex-track);
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.p-about__term--wide {
  letter-spacing: 1em;
}

.p-about__text p + p {
  margin-top: 7px;
}

.p-about__text ul {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
@media screen and (min-width: 768px) {
  .p-about__text ul {
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 9px;
         column-gap: 9px;
  }
}

.p-about__text li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-about__text li::before {
  margin-right: 4px;
  display: inline-block;
  content: "";
  width: 13px;
  aspect-ratio: 1;
  background-color: currentColor;
  transform: translateY(1px);
}

.u-hidden {
  display: none;
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  visibility: hidden;
  opacity: 0;
  outline: none;
  overflow: hidden;
  pointer-events: none;
}

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

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

.u-di {
  display: inline;
}

.u-db {
  display: block;
}

.u-dib {
  display: inline-block;
}

.u-font-en {
  font-family: var(--second-font);
}

.u-font-bold {
  font-weight: 700;
}

.u-font-semibold {
  font-weight: 600;
}

.u-font-medium {
  font-weight: 500;
}

.u-tracking-widest {
  letter-spacing: 0.1em;
}

.u-tracking-wider {
  letter-spacing: 0.05em;
}

.u-tracking-wide {
  letter-spacing: 0.02em;
}

.u-leading-loose {
  line-height: 2;
}

.u-leading-relaxed {
  line-height: 1.7;
}

.u-leading-none {
  line-height: 1;
}

.u-text-primary {
  color: var(--c-primary);
}

.u-text-accent {
  color: var(--c-accent);
}