@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

body {
  background-color: #f8f8f8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
}
body.project, body.single-project {
  background-color: #ff5500;
}

body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

button {
  padding: 0;
  color: inherit;
}

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;
}

.c-aboutToggle {
  position: fixed;
  top: 2.1666666667vw;
  right: 3.3333333333vw;
  z-index: 1000;
  width: 1.625rem;
  height: 1.625rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-aboutToggle {
    top: 1.25rem;
    right: 1.5625rem;
  }
}
.c-aboutToggle:focus-visible {
  outline: 2px solid #ff5500;
  outline-offset: 3px;
}

/* アイコン全体：2x2グリッドを45度回転してひし形に */
.c-aboutToggle__icon {
  display: block;
  width: 1.625rem;
  height: 1.625rem;
  position: relative;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}

/* 共通スクエア */
.c-aboutToggle__square {
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  background-color: #ff5500;
  position: absolute;
}
.c-aboutToggle__square:nth-child(1) {
  top: 0;
  inset-inline: 0;
  margin-inline: auto;
}
.c-aboutToggle__square:nth-child(2) {
  right: 0;
  inset-block: 0;
  margin-block: auto;
}
.c-aboutToggle__square:nth-child(3) {
  bottom: 0;
  inset-inline: 0;
  margin-inline: auto;
}
.c-aboutToggle__square:nth-child(4) {
  left: 0;
  inset-block: 0;
  margin-block: auto;
}

/* =========================
   開いた状態（.is-open）
   ========================= */
/* 35度追加回転（45 + 35 = 80度） */
.c-aboutToggle.is-open .c-aboutToggle__icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* 簡易動作設定の尊重 */
@media (prefers-reduced-motion: reduce) {
  .c-aboutToggle__icon,
  .c-aboutToggle__square {
    transition: none;
  }
}
body.project .c-aboutToggle__square,
body.single-project .c-aboutToggle__square {
  background-color: #fff;
}
body.project .c-aboutToggle.is-open .c-aboutToggle__square,
body.single-project .c-aboutToggle.is-open .c-aboutToggle__square {
  background-color: #ff5500;
}

.c-backButton a {
  position: fixed;
  bottom: 1.875rem;
  right: 3.3333333333vw;
  z-index: 10;
  width: 1.625rem;
  height: 1.625rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-backButton a {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
.c-backButton a:focus-visible {
  outline: 2px solid #ff5500;
  outline-offset: 3px;
}

/* アイコン全体 */
.c-backButton__icon {
  display: block;
  width: 1.625rem;
  height: 1.625rem;
  position: relative;
  transition: 0.35s ease;
}

/* 共通スクエア */
.c-backButton__square {
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  background-color: #ff5500;
  position: absolute;
}
.c-backButton__square:nth-child(1) {
  top: 0;
  inset-inline: 0;
  margin-inline: auto;
}
.c-backButton__square:nth-child(2) {
  bottom: 0;
  inset-inline: 0;
  margin-inline: auto;
}
.c-backButton__square:nth-child(3) {
  left: 0;
  inset-block: 0;
  margin-block: auto;
}

/* 簡易動作設定の尊重 */
@media (prefers-reduced-motion: reduce) {
  .c-backButton__icon {
    transition: none;
  }
}
body.project .c-backButton__square,
body.single-project .c-backButton__square {
  background-color: #fff;
}

.c-breadcrumb {
  padding: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 1.5rem;
  }
}

.c-breadcrumb__lists {
  display: flex;
  align-items: center;
  gap: 1.25rem 0.625rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

@media (any-hover: hover) {
  .c-breadcrumb__item a:hover {
    opacity: 0.5;
  }
}
.c-breadcrumb__item a span {
  text-decoration: underline;
}
.c-breadcrumb__item span {
  color: #7a7368;
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.c-breadcrumb__item:not(:first-child) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 1px;
  border-radius: 2px;
}

.c-gridToggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .4);
  background-color: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.c-gridToggle:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.c-gridToggle.is-active {
  background-color: #ff4d00;
  border-color: #ff4d00;
  opacity: 0.95;
}
@media (max-width: 767px) {
  .c-gridToggle {
    display: none;
  }
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: block;
    width: 2.1875rem;
    height: 1.875rem;
    border-radius: 50%;
    padding: 0 0;
    position: fixed;
    top: 1.5625rem;
    right: 1.5625rem;
    z-index: 21;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 0.125rem;
  width: 100%;
  background-color: #2486dd;
  transition: 0.3s ease-in-out;
}
.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .c-hamburger span:nth-child(2) {
    margin: 0.4375rem 0;
  }
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

.c-hamburger.open span:nth-child(1) {
  top: 0.5625rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-hamburger.open span:nth-child(1) {
    top: 0.5rem;
  }
}

.c-hamburger.open span:nth-child(2) {
  background-color: transparent;
  box-shadow: none;
}

.c-hamburger.open span:nth-child(3) {
  top: -0.625rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/* アーカイブページのページ送り */
.c-pagenation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 5.375rem;
  position: relative;
}
.c-pagenation .nav-links a {
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-pagenation .nav-links a:hover {
    opacity: 0.5;
  }
}
.c-pagenation .page-numbers {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.875rem;
  height: 1.875rem;
}
.c-pagenation .page-numbers.current {
  border-color: currentColor;
}
.c-pagenation .page-numbers.dots {
  margin-inline: 0.75rem;
  padding-bottom: 0.4375rem;
  border: 0;
}
.c-pagenation .page-numbers.prev, .c-pagenation .page-numbers.next {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
.c-pagenation .page-numbers.prev {
  left: 0;
}
.c-pagenation .page-numbers.prev::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  flex-shrink: 0;
}
.c-pagenation .page-numbers.next {
  right: 0;
}
.c-pagenation .page-numbers.next::after {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  flex-shrink: 0;
}

.c-single-pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 5.375rem;
  position: relative;
  margin-top: 5rem;
}

.c-single-pagenation__prev a,
.c-single-pagenation__next a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-single-pagenation__prev a:hover,
  .c-single-pagenation__next a:hover {
    opacity: 0.5;
  }
}

.c-single-pagenation__prev a {
  left: 0;
}
.c-single-pagenation__prev a::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  flex-shrink: 0;
}

.c-single-pagenation__next a {
  right: 0;
}
.c-single-pagenation__next a::after {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  flex-shrink: 0;
}

.c-single-pagenation__back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
  transition: 0.3s;
}
.c-single-pagenation__back a::before {
  content: "(";
  display: block;
}
.c-single-pagenation__back a::after {
  content: ")";
  display: block;
}
@media (any-hover: hover) {
  .c-single-pagenation__back a:hover {
    opacity: 0.5;
  }
}
.c-single-pagenation__back span {
  text-decoration: underline;
}

.l-inner {
  width: 100%;
  max-width: 1250px;
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 640px;
    padding-inline: 20px;
  }
}

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/* スライドの動き等速 */
/* 前ページ、次ページボタン共通のスタイル */
.p-about {
  --cols: 5;
  --grid-width: 83.33333vw;
  --cell-h: calc(var(--grid-width) / var(--cols) / 2);
  padding-block: 4.1666666667vw 12.5vw;
  overflow-y: auto;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100%;
  z-index: 20;
  transition: all 0.3s;
  backdrop-filter: blur(36px);
  background-color: rgba(255, 255, 255, .7);
}
@media (max-aspect-ratio: 3/4) {
  .p-about {
    --cell-h: calc(var(--grid-width) / var(--cols) / 2 * 2);
  }
}
@media screen and (max-width: 767px) {
  .p-about {
    --grid-width: 88vw;
    --cell-h: calc(var(--grid-width) / var(--cols) * 1.77273);
    padding-block: 4.375rem 12.5rem;
    background-color: rgba(255, 255, 255, .4);
  }
}

.p-about__grid {
  width: var(--grid-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  grid-auto-rows: var(--cell-h);
}

.p-about__left {
  grid-column: 1/span 2;
  grid-row: 1/-1;
  position: sticky;
  top: 4.1666666667vw;
  align-self: start;
}
@media screen and (max-width: 767px) {
  .p-about__left {
    grid-column: 1/2;
    top: 3.75rem;
  }
}

.p-about__left-inner {
  min-height: calc(var(--cell-h) * 2 + var(--gap));
}

.p-about__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-in-out;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, var(--cell-h));
}

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

@media screen and (max-width: 767px) {
  .p-about__panel-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: sideways;
    white-space: nowrap;
  }
}

.p-about__eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.p-about__title {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8333333333;
}
.p-about__title.--philosophy {
  font-family: "univers-next-pro", sans-serif;
  color: #ff5500;
  font-size: 1.6875rem;
  font-weight: 400;
  line-height: 1.2272727273;
}
@media screen and (max-width: 767px) {
  .p-about__title.--philosophy {
    font-size: 1.375rem;
    line-height: 1;
  }
}
.p-about__title.--profile span {
  display: block;
}
.p-about__title.--profile span:nth-child(2) {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .p-about__title.--profile span:nth-child(1), .p-about__title.--profile span:nth-child(3) {
    display: inline-block;
  }
  .p-about__title.--profile span:nth-child(2) {
    display: inline-block !important;
  }
}
.p-about__title.--company span {
  display: block;
}
.p-about__title span {
  display: block;
}

.p-about__text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8333333333;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    margin-top: 0;
  }
}

.p-about__panel.--philosophy .p-about__panel-body {
  grid-column: 1/span 2;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .p-about__panel.--philosophy .p-about__panel-body {
    grid-row: 1/4;
  }
}

.p-about__panel.--profile .p-about__panel-body {
  grid-column: 1/span 2;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .p-about__panel.--profile .p-about__panel-body {
    grid-row: 1/4;
  }
}

.p-about__panel.--company .p-about__panel-body {
  grid-column: 1/span 2;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .p-about__panel.--company .p-about__panel-body {
    grid-row: 1/3;
  }
}

.p-about__panel.--profile-secondary .p-about__panel-body {
  grid-column: 1/span 2;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .p-about__panel.--profile-secondary .p-about__panel-body {
    grid-row: 1/3;
  }
}

.p-about__section {
  grid-column: 3/span 3;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-about__section {
    display: block;
    grid-column: 2/span 4;
    position: relative;
  }
}

.p-about__dl-wrap {
  display: flex;
  gap: 0.875rem;
  font-size: 0.75rem;
  line-height: 1.8333333333;
}
@media screen and (max-width: 767px) {
  .p-about__dl-wrap {
    position: relative;
  }
}

.p-about__section-sns-list li a {
  display: inline-block;
  position: relative;
  font-family: "univers-next-pro", sans-serif;
  color: #ff5500;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
  padding-right: 0.375rem;
  text-decoration: none;
  border-bottom: none;
}
.p-about__section-sns-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-about__section-sns-list li a:hover::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.p-about__section.--philosophy {
  grid-row: 4/span 5;
}
@media screen and (max-width: 767px) {
  .p-about__section.--philosophy {
    grid-row: 2/span 5;
  }
}

.p-about__section.--profile {
  grid-row: 7/span 5;
  display: block;
}
.p-about__section.--profile .p-about__section-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-about__section.--profile .p-about__section-wrap {
    display: block;
    position: relative;
  }
}
.p-about__section.--profile .p-about__section-wrap + .p-about__section-wrap {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-about__section.--profile .p-about__section-wrap.--sns .p-about__section-title {
    margin-top: 0.8em;
  }
}
.p-about__section.--profile .p-about__section-wrap.--sns .p-about__section-title span {
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__section.--profile .p-about__section-wrap.--sns .p-about__section-title span {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .p-about__section.--profile .p-about__section-wrap.--sns .p-about__section-title span + span {
    margin-top: 0.8em;
  }
}

.p-about__section.--company {
  grid-row: 12/span 2;
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-about__section.--company {
    grid-row: 12/span 3;
    margin-top: 6.25rem;
    padding-top: 0;
  }
}
@media (min-width: 1512px) {
  .p-about__section.--company {
    grid-row: 12/span 4;
  }
}
@media (max-aspect-ratio: 3/4) {
  .p-about__section.--company {
    grid-row: 12/span 5;
  }
}
.p-about__section.--company .p-about__dl-wrap {
  gap: 0.75rem;
}
.p-about__section.--company .p-about__dl-wrap dt {
  min-width: 2.5rem;
}

.p-about__section.--profile-secondary {
  grid-row: 12/span 3;
  display: block;
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-about__section.--profile-secondary {
    grid-row: 12/span 3;
    margin-top: 6.25rem;
  }
}
@media (min-width: 1512px) {
  .p-about__section.--profile-secondary {
    grid-row: 12/span 4;
  }
}
@media (max-aspect-ratio: 3/4) {
  .p-about__section.--profile-secondary {
    grid-row: 12/span 5;
  }
}
.p-about__section.--profile-secondary .p-about__section-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-about__section.--profile-secondary .p-about__section-wrap {
    display: block;
    position: relative;
  }
}
.p-about__section.--profile-secondary .p-about__section-wrap + .p-about__section-wrap {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-about__section.--profile-secondary .p-about__section-wrap.--sns .p-about__section-title {
    margin-top: 0.8em;
  }
}
.p-about__section.--profile-secondary .p-about__section-wrap.--sns .p-about__section-title span {
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__section.--profile-secondary .p-about__section-wrap.--sns .p-about__section-title span {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .p-about__section.--profile-secondary .p-about__section-wrap.--sns .p-about__section-title span + span {
    margin-top: 0.8em;
  }
}

.p-about__section-title {
  font-family: "univers-next-pro", sans-serif;
  color: #aaa;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-about__section-title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: sideways;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.p-about__section-text {
  line-height: 1.8333333333;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-about__section-text {
    white-space: nowrap;
  }
}

#about-panel.p-about {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#about-panel.p-about.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-about__grid {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

#about-panel.p-about.is-open .p-about__grid {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body {
  overflow-y: scroll;
}

body.is-about-open {
  position: fixed;
  left: 0;
  width: 100%;
}

body.project .p-about__title,
body.single-project .p-about__title {
  color: #fff;
}
body.project .p-about__text,
body.single-project .p-about__text {
  color: #ff5500;
}
body.project .p-about__section-title,
body.single-project .p-about__section-title {
  color: #fff;
}
body.project .p-about__section-text,
body.single-project .p-about__section-text {
  color: #ff5500;
}
body.project .p-about__dl-wrap,
body.single-project .p-about__dl-wrap {
  color: #ff5500;
}
body.project .p-about__section-sns-list li a,
body.single-project .p-about__section-sns-list li a {
  color: #fff;
}

.p-footer__mail {
  position: fixed;
  bottom: 2.6666666667vw;
  left: 3.3333333333vw;
  z-index: 21;
  display: flex;
  align-items: center;
  gap: 1.5vw;
  font-family: "univers-next-pro", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-footer__mail {
    bottom: 1.25rem;
    left: 1.5625rem;
  }
}
.p-footer__mail span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #999;
}
.p-footer__mail a {
  color: #ff5500;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-footer__mail a:hover {
    color: #000;
  }
}

.p-footer__project {
  position: fixed;
  bottom: 1.6666666667vw;
  right: 3.3333333333vw;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-footer__project {
    bottom: 0.75rem;
    right: 1.5625rem;
  }
}
.p-footer__project.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-footer__project.--home a {
  color: #fff;
}
.p-footer__project a {
  display: block;
  font-family: "univers-next-pro", sans-serif;
  color: #ff5500;
  font-size: 2.125rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-footer__project a:hover {
    color: #000;
  }
}

body.project .p-footer__mail span,
body.single-project .p-footer__mail span {
  color: #fff;
}
body.project .p-footer__mail a,
body.single-project .p-footer__mail a {
  color: #fff;
}
@media (any-hover: hover) {
  body.project .p-footer__mail a:hover,
  body.single-project .p-footer__mail a:hover {
    color: #000;
  }
}

@media (any-hover: hover) {
  body.is-about-open .p-footer__mail a:hover {
    color: #000;
  }
}
body.is-about-open .p-footer__project a {
  color: #ff5500;
}
@media (any-hover: hover) {
  body.is-about-open .p-footer__project a:hover {
    color: #000;
  }
}

.p-header__copy {
  position: fixed;
  top: 3.1666666667vw;
  left: 3.3333333333vw;
  z-index: 21;
  font-family: "univers-next-pro", sans-serif;
  color: #999;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-header__copy {
    top: 1.875rem;
    left: 1.5625rem;
  }
}

body.project .p-header__copy,
body.single-project .p-header__copy {
  color: #fff;
}

.p-project {
  --cols: 5;
  --grid-width: 83.33333vw;
  --gap: 16px;
  position: relative;
  padding-block: 4.1666666667vw 12.5vw;
}
@media screen and (max-width: 767px) {
  .p-project {
    --grid-width: 88vw;
    --cell-h: calc(var(--grid-width) / var(--cols) * 1.77273);
    padding-block: 4.375rem 12.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-project.--single {
    --grid-width: 100%;
    padding-block: 4.375rem 8.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-project.--single .p-project__left {
    width: 88vw;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-project.--single .p-project__title span {
    margin-top: 0.25rem;
  }
}

.p-project__section {
  width: min(100%, var(--grid-width));
  margin-inline: auto;
}
@media (any-hover: hover) {
  .p-project__section a:hover .p-project__title {
    color: #000;
  }
  .p-project__section a:hover .p-project__figure img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.p-project__section:first-child {
  margin-top: 6.25rem;
}
.p-project__section:nth-child(2) {
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-project__section.--project-list .p-project__right {
    margin-right: calc(-1 * (100vw - var(--grid-width)) / 2);
  }
  .p-project__section.--project-list .p-project__title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: sideways;
    margin-left: -1.5em;
    line-height: 1.25;
  }
}
.p-project__section + .p-project__section {
  margin-top: 1.875rem;
}

.p-project__section-wrap {
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  -webkit-column-gap: var(--gap);
     -moz-column-gap: var(--gap);
          column-gap: var(--gap);
  row-gap: var(--gap);
}

.p-project__left {
  grid-column: 1/span 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-project__left {
    grid-column: 1/2;
  }
}
.p-project__left.--sticky {
  position: sticky;
  top: calc(4.16667vw + 6.25rem);
  align-self: start;
}
.p-project__left.--sticky .p-project__panel {
  position: static;
  inset: auto;
}

.p-project__left-inner {
  min-height: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-project__left-inner {
    min-height: 0;
  }
}

.p-project__panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, auto));
}

.p-project__panel-body {
  grid-column: 1/span 2;
}
@media screen and (max-width: 767px) {
  .p-project__panel-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: sideways;
    white-space: nowrap;
  }
}

.p-project__eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.p-project__title {
  font-family: "univers-next-pro", sans-serif;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8333333333;
  letter-spacing: 0.03em;
  transition: 0.3s;
}
.p-project__title span {
  font-size: 0.625rem;
  line-height: 1.5;
  display: block;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-project__title span {
    margin-top: 0;
  }
}
.p-project__title.--strong {
  font-family: "univers-next-pro", sans-serif;
  font-size: 1.6875rem;
  font-weight: 400;
  line-height: 1.2272727273;
}
@media screen and (max-width: 767px) {
  .p-project__title.--strong {
    font-size: 1.375rem;
    line-height: 1;
  }
}

.p-project__text {
  font-size: 0.75rem;
  line-height: 1.8333333333;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-project__text {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.p-project__credit {
  font-family: "univers-next-pro", sans-serif;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8333333333;
  letter-spacing: 0.03em;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-project__credit {
    width: 88vw;
    margin-inline: auto;
    margin-top: 3.75rem;
  }
}

.p-project__credit-title {
  font-weight: 400;
}

.p-project__right {
  grid-column: 3/span 3;
}
@media screen and (max-width: 767px) {
  .p-project__right {
    grid-column: 2/span 4;
    position: relative;
  }
}
.p-project__right.--row {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  font-size: 0.75rem;
}

.p-project__section-title {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-project__section-title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: sideways;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.p-project__section-text {
  line-height: 1.8333333333;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-project__section-text {
    white-space: nowrap;
  }
}

.p-project__figure {
  overflow: hidden;
}
.p-project__figure img {
  transition: 0.3s;
}
.p-project__figure + .p-project__figure {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-project__figure + .p-project__figure {
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-project__section.--single .p-project__section-wrap {
    display: block;
  }
  .p-project__section.--single .p-project__left {
    position: static;
  }
  .p-project__section.--single .p-project__panel-body {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
  }
  .p-project__section.--single .p-project__title {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
    margin-left: 0;
    white-space: normal;
  }
  .p-project__section.--single .p-project__right {
    margin-top: 4.375rem;
    margin-right: 0;
  }
}

/* -----------------------------------------------------------------
  タブ切り替え
----------------------------------------------------------------- */
.p-tabContents {
  position: relative;
}

.p-tabContents__tabButton[aria-selected=true] {
  color: red;
}

.p-tabContents__panelWrap {
  position: relative;
  width: 100%;
  height: 30vh;
}

.p-tabContents__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.8s;
}
@media screen and (max-width: 767px) {
  .p-tabContents__panel {
    width: 100%;
  }
}

.p-tabContents__panel[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
}

.p-tabContents__panel[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

.p-works {
  --cols: 5;
  --grid-width: 83.33333vw;
  --gap: 16px;
  position: relative;
  padding-block: 4.1666666667vw 12.5vw;
}
@media screen and (max-width: 767px) {
  .p-works {
    --grid-width: 88vw;
    padding-block: 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-works.--single {
    --grid-width: 100%;
    padding-block: 4.375rem 8.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-works.--single .p-works__left {
    width: 88vw;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-works.--single .p-works__title span {
    margin-top: 0.25rem;
  }
}

.p-works__section {
  width: min(100%, var(--grid-width));
  margin-inline: auto;
}
@media (any-hover: hover) {
  .p-works__section a:hover .p-works__title {
    color: #ff5500;
  }
  .p-works__section a:hover .p-works__figure img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.p-works__section:first-child {
  margin-top: 6.25rem;
}
.p-works__section + .p-works__section {
  margin-top: 1.875rem;
}

.p-works__section-wrap {
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  -webkit-column-gap: var(--gap);
     -moz-column-gap: var(--gap);
          column-gap: var(--gap);
  row-gap: var(--gap);
}

.p-works__left {
  grid-column: 1/span 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-works__left {
    grid-column: 1/2;
  }
}
.p-works__left.--sticky {
  position: sticky;
  top: calc(4.16667vw + 6.25rem);
  align-self: start;
}
.p-works__left.--sticky .p-works__panel {
  position: static;
  inset: auto;
}

.p-works__left-inner {
  min-height: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-works__left-inner {
    min-height: 0;
  }
}

.p-works__panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, auto));
}

.p-works__eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.p-works__title {
  font-family: "univers-next-pro", sans-serif;
  color: #999;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8333333333;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-works__title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: sideways;
    margin-left: -1.5em;
    line-height: 1.25;
  }
}
.p-works__title span {
  font-size: 0.625rem;
  line-height: 1.5;
  display: block;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-works__title span {
    margin-top: 0;
  }
}

.p-works__credit {
  font-family: "univers-next-pro", sans-serif;
  color: #999;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8333333333;
  letter-spacing: 0.03em;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-works__credit {
    width: 88vw;
    margin-inline: auto;
    margin-top: 3.75rem;
  }
}

.p-works__credit-title {
  font-weight: 400;
}

.p-works__right {
  grid-column: 3/span 3;
}
@media screen and (max-width: 767px) {
  .p-works__right {
    grid-column: 2/span 4;
    margin-right: calc(-1 * (100vw - var(--grid-width)) / 2);
  }
}

.p-works__figure {
  overflow: hidden;
}
.p-works__figure img {
  transition: 0.3s;
}
.p-works__figure + .p-works__figure {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-works__figure + .p-works__figure {
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-works__section.--single .p-works__section-wrap {
    display: block;
  }
  .p-works__section.--single .p-works__left {
    position: static;
  }
  .p-works__section.--single .p-works__title {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
    margin-left: 0;
    white-space: normal;
  }
  .p-works__section.--single .p-works__right {
    margin-top: 4.375rem;
    margin-right: 0;
  }
}
/*# sourceMappingURL=style.css.map */
