@charset "UTF-8";
/* import ---------------------------------- */
/* reset --------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/* init --------------------------------------*/
html,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "IBM Plex Sans JP", "メイリオ", "MS Pゴシック", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0;
  color: var(--text-color);
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: rgb(255, 255, 255);
  font-weight: 400;
  line-height: 2;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.03em;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body.bg2 {
  background-color: var(--background-color2);
}
body.bg3 {
  background-color: var(--background-color3);
}

a {
  color: var(--text-color);
}
a:hover {
  text-decoration: none;
}

input[type=submit],
button {
  border-radius: 0;
  appearance: none;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
}

::-moz-selection {
  background-color: var(--text-color);
  color: var(--bg-color);
}

::selection {
  background-color: var(--text-color);
  color: var(--bg-color);
}

/* Default Options */
/* Media Query */
/* Transform Font Size */
.l-header {
  width: 100%;
  height: 80px;
  padding-inline: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-sizing: border-box;
}
.l-header-wrap {
  width: 100%;
  height: 70px;
  padding-inline: calc(var(--space-xs) - 5px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  transition: var(--hover-animation-speed);
}
.onScroll .l-header-wrap {
  background-color: var(--bg-color);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.nav-opened .l-header-wrap {
  background-color: var(--bg-color);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.15);
}

.l-header-inner {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  column-gap: 10px;
}
.l-header-inner .jpx {
  height: clamp(36px, 3vw, 48px);
  grid-area: 1/2/2/3;
}
.l-header-inner .jpx img {
  height: 100%;
}
.l-header-inner p {
  grid-area: 2/1/3/3;
  font-size: clamp(0.4375rem, 0.3007911392rem + 0.3797468354vw, 0.625rem);
  line-height: 1.3;
}
.l-header-inner p br {
  display: none;
}
.l-header-inner p br.tbr {
  display: block;
}
.l-header a {
  text-decoration: none;
  color: var(--text-color);
}
.l-header-logo {
  display: flex;
  grid-area: 1/1/2/2;
}
.l-header-logo a {
  display: grid;
  grid-template-columns: clamp(56px, 5vw, 80px) auto;
  align-items: center;
  gap: 10px;
}
.l-header-logo a .text {
  display: flex;
  flex-direction: column;
}
.l-header-logo a .text span {
  font-size: clamp(0.75rem, 0.6588607595rem + 0.253164557vw, 0.875rem);
  font-weight: 600;
  line-height: 1.2;
}
.l-header-logo svg {
  transition: var(--hover-animation-speed);
}
[data-dropdown-open] .l-header-logo svg,
.onScroll .l-header-logo svg {
  fill: var(--text-color);
}

.l-header-nav, .l-header-other, .l-header-dropdown {
  display: none;
  pointer-events: none;
}
.l-header-menu {
  height: 32px;
  padding-inline: 10px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 5px !important;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: var(--hover-animation-speed);
}
.l-header-menu:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.l-header-menu .text {
  height: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.l-header-menu .text span {
  min-height: 14px;
  display: flex;
  align-items: center;
  transition: var(--hover-animation-speed);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.navigationOpened .l-header-menu {
  background-color: var(--text-color);
  color: var(--bg-color);
}
.navigationOpened .l-header-menu .text span {
  transform: translateY(-14px);
}
.navigationOpened .l-header-menu.c-icon-hex:before {
  background-color: var(--bg-color);
}

@media screen and (min-width: 1366px) {
  .l-header {
    height: 100px;
    padding-inline: 10px;
  }
  .l-header-wrap {
    height: 80px;
    padding-inline: calc(var(--space-xs) - 10px);
  }
  .l-header-inner {
    display: flex;
    position: relative;
    z-index: 2;
  }
  .l-header-inner p br {
    display: block;
  }
  .l-header-logo {
    margin-inline-end: 10px;
  }
  .l-header-logo a {
    height: 32px;
  }
  .l-header-nav, .l-header-other, .l-header-dropdown {
    pointer-events: auto;
  }
  .l-header-nav {
    padding: 0;
    display: flex;
    gap: clamp(20px, 2vw, 30px);
    list-style: none;
  }
  .l-header-nav li {
    display: flex;
  }
  .l-header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: var(--hover-animation-speed);
  }
  .l-header-nav a.dropdown:before, .l-header-nav a.dropdown:after {
    content: "";
    display: block;
    background-color: var(--text-color);
    transition: var(--hover-animation-speed);
  }
  .l-header-nav a.dropdown:before {
    width: 1px;
    height: 9px;
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
  }
  .l-header-nav a.dropdown:after {
    width: 9px;
    height: 1px;
  }
  [data-dropdown-open] .l-header-nav a {
    color: var(--text-color);
  }
  [data-dropdown-open] .l-header-nav a.dropdown:before, [data-dropdown-open] .l-header-nav a.dropdown:after {
    background-color: var(--text-color);
  }
  [data-dropdown-open=investment] .l-header-nav a[data-name=investment].dropdown:before {
    opacity: 0;
  }
  .l-header-other {
    padding: 0;
    display: flex;
    align-items: center;
    gap: clamp(20px, 2vw, 30px);
    list-style: none;
    position: relative;
    z-index: 1;
  }
  .l-header-other .item {
    height: 48px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .l-header-other .item .button {
    height: 36px;
    padding-inline: 20px 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--text-color);
    border-radius: 18px;
    box-sizing: border-box;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--hover-animation-speed);
  }
  .l-header-other .item .button .icon {
    content: "";
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--text-color);
    border-radius: 50%;
    transition: var(--hover-animation-speed);
  }
  .l-header-other .item .button .icon svg {
    width: 40%;
    transform-origin: center;
    fill: var(--bg-color);
  }
  .l-header-other .item .button:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
  }
  [data-dropdown-open=dropdown] .l-header-other .item .button {
    border-color: var(--text-color);
    color: var(--text-color);
  }
  [data-dropdown-open=group] .l-header-other .item .button {
    background-color: var(--text-color);
    color: var(--bg-color);
  }
  [data-dropdown-open=group] .l-header-other .item .button .icon {
    background-color: var(--bg-color);
  }
  [data-dropdown-open=group] .l-header-other .item .button .icon svg {
    fill: var(--text-color);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  .l-header-other .c-dropdown {
    width: 280px;
    padding: 5px;
    background-color: var(--bg-color);
    border-radius: 5px;
    position: absolute;
    top: 46px;
    right: 0;
    z-index: 5;
    box-sizing: border-box;
    transition: var(--hover-animation-speed);
    pointer-events: none;
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  [data-dropdown-open=group] .l-header-other .c-dropdown[data-name=group] {
    pointer-events: auto;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .l-header-other .c-dropdown-list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .l-header-other .c-dropdown-list li a {
    padding: 5px;
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    box-sizing: border-box;
    transition: var(--hover-animation-speed);
  }
  .l-header-other .c-dropdown-list li a:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .l-header-other .c-dropdown-list li .image {
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    border-radius: 5px;
  }
  .l-header-other .c-dropdown-list li .image.glc svg,
  .l-header-other .c-dropdown-list li .image.glc img {
    width: 70%;
  }
  .l-header-other .c-dropdown-list li .image.glc.recruit {
    background-color: #005be5;
  }
  .l-header-other .c-dropdown-list li .image.glc.recruit svg {
    fill: var(--bg-color);
  }
  .l-header-menu {
    display: none !important;
  }
  .l-header-dropdown {
    width: calc(100% - 20px);
    padding-inline: var(--contents-inner-padding);
    padding-block-start: 80px;
    padding-block-end: 40px;
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    align-items: start;
    gap: var(--grid-gap);
    background-color: var(--bg-color);
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 0;
    box-sizing: border-box;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    transition: var(--hover-animation-speed);
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  [data-dropdown-open=investment] .l-header-dropdown[data-name=investment] {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .l-header-dropdown .title {
    padding-block: 60px;
    display: flex;
    justify-content: start;
    grid-column: 1/7;
  }
  .l-header-dropdown .title a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--text-color);
  }
  .l-header-dropdown .title a:before {
    content: "";
    width: 1px;
    height: 30px;
    display: block;
    background-color: rgba(0, 0, 0, 0.15);
    order: 1;
  }
  .l-header-dropdown .title .jp {
    font-size: 2rem;
    font-weight: 600;
    order: 0;
  }
  .l-header-dropdown .title .en {
    font-size: 0.8125rem;
    font-weight: 500;
    order: 2;
  }
  .l-header-dropdown .title .c-arrow {
    margin-inline-start: 20px;
    order: 3;
  }
  .l-header-dropdown .inner {
    padding-block: 60px;
    grid-column: 7/13;
  }
  .l-header-dropdown .list {
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--space-xxs);
    list-style: none;
  }
  .l-header-dropdown .list a {
    height: 80px;
    padding-inline: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: var(--space-xxs);
    border-block-end: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--hover-animation-speed);
  }
  .l-header-dropdown .list a:hover {
    border-block-end-color: var(--text-color);
  }
}

.l-footer {
  padding-inline: var(--contents-inner-padding);
  background-color: var(--text-color);
  overflow: hidden;
  font-weight: 500;
}
.l-footer a {
  text-decoration: none;
  color: var(--bg-color);
}
.l-footer-group-c {
  padding-block: clamp(40px, 4vw, 60px);
  display: flex;
  justify-content: center;
  border-block-end: 1px solid rgba(255, 255, 255, 0.15);
}
.l-footer-group-c ul {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  list-style: none;
  justify-content: center;
}
.l-footer-group-c li a {
  width: 240px;
  height: clamp(100px, 6vw, 120px);
  padding-inline: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  background-color: var(--bg-color);
  border-radius: 5px;
  box-sizing: border-box;
  color: var(--text-color);
  transition: var(--hover-animation-speed);
}
.l-footer-group-c li a:hover {
  opacity: 0.85;
}
.l-footer-group-c li a .logo {
  height: 32px;
  display: flex;
  align-items: center;
}
.l-footer-group-c li a.recruit {
  background-color: rgb(0, 91, 229);
  color: var(--bg-color);
}
.l-footer-group-c li a.recruit svg {
  fill: var(--bg-color);
}
.l-footer-group-c li a.group .logo {
  height: 40px;
}
.l-footer-group-c li a.group img {
  height: 100%;
}
.l-footer-group-c li svg {
  width: 124px;
}
.l-footer-group-c li p {
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}
.l-footer-sitemap {
  display: none;
}
.l-footer-bottom {
  padding-block: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  color: var(--bg-color);
}
.l-footer-bottom .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.l-footer-bottom .logo svg {
  width: 90px;
  fill: var(--bg-color);
}
.l-footer-bottom .adress {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8125rem;
  line-height: 1.6;
}
.l-footer-bottom-link {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.l-footer-bottom-link a {
  font-size: 0.8125rem;
  line-height: 1.4;
}
.l-footer-bottom-link a:hover {
  text-decoration: underline;
}
.l-footer-bottom .copyright {
  font-size: 0.75rem;
}
.l-footer-bottom .jpx {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.l-footer-bottom .jpx div {
  width: 48px;
  background-color: var(--bg-color);
}
.l-footer-bottom .jpx p {
  font-size: clamp(0.5rem, 0.4088607595rem + 0.253164557vw, 0.625rem);
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer-group-c ul {
    max-width: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: var(--space-xxs);
  }
  .l-footer-sitemap {
    padding-block: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: var(--grid-gap);
    color: var(--bg-color);
  }
  .l-footer-sitemap a:hover {
    text-decoration: underline;
  }
  .l-footer-sitemap__title {
    font-size: 0.9375rem;
    font-weight: 500;
    display: grid;
    grid-template-columns: 16px auto;
    align-items: center;
    column-gap: 10px;
  }
  .l-footer-sitemap__title .logo svg {
    fill: var(--bg-color);
  }
  .l-footer-sitemap .inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
  }
  .l-footer-sitemap .wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .l-footer-sitemap .wrap dl {
    display: flex;
    flex-direction: column;
    line-height: 1.8;
  }
  .l-footer-sitemap .wrap dt {
    margin-block-end: 10px;
    font-size: 1.125rem;
    font-weight: 600;
  }
  .l-footer-sitemap .wrap dd {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.75;
  }
  .l-footer-bottom {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: var(--space-sm);
    border-block-start: 1px solid rgba(255, 255, 255, 0.15);
  }
  .l-footer-bottom .logo {
    align-items: start;
  }
  .l-footer-bottom-link {
    justify-content: start;
  }
  .l-footer-bottom .jpx {
    display: grid;
    grid-template-columns: 48px auto;
    align-items: center;
    column-gap: 10px;
  }
  .l-footer-bottom .jpx div {
    margin-inline-start: auto;
  }
  .l-footer-bottom .jpx p {
    text-align: start;
  }
}

/* ----------------------------------------- */
body.navigationOpened {
  overflow: hidden;
}
body.navigationOpened .l-header-wrap {
  transition: all 0ms ease;
  box-shadow: 0 0 0 !important;
}

/* navigation ------------------------------ */
.p-nav {
  width: 100%;
  max-height: 100svh;
  padding: 5px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  box-sizing: border-box;
  pointer-events: none;
}
.p-nav-main {
  width: 100%;
  max-height: calc(100svh - 10px);
  padding-inline: var(--contents-inner-padding);
  background-color: var(--bg-color);
  border-radius: 5px;
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
  overflow-y: scroll;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}
.navigationOpened .p-nav {
  pointer-events: auto;
}
.navigationOpened .p-nav-main {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.p-nav-inner {
  padding-block-start: 80px;
  padding-block-end: 20px;
}
.p-nav-list {
  padding: 0;
  list-style: none;
}
.p-nav-list .item {
  border-block-end: 1px solid rgba(0, 0, 0, 0.1);
}
.p-nav-list .item:last-child {
  border-block-end: 0;
}
.p-nav-list .item.dropdown {
  display: grid;
  grid-template-columns: 1fr 20px;
  align-items: center;
  column-gap: 15px;
  cursor: pointer;
}
.p-nav-list .anchor {
  padding-block: 15px;
  display: grid;
  grid-template-columns: 1fr clamp(32px, 3vw, 40px);
  align-items: center;
  column-gap: 15px;
  font-size: clamp(1.125rem, 1.0338607595rem + 0.253164557vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  grid-area: 1/1/2/2;
  transition: var(--hover-animation-speed);
}
.p-nav-list .anchor:hover {
  opacity: 0.75;
}
.p-nav-list .dw-icon {
  transform-origin: center;
  transition: var(--hover-animation-speed);
  border-radius: 50%;
  transition: var(--hover-animation-speed);
}
.p-nav-list .dw-icon svg {
  transition: var(--hover-animation-speed);
}
.p-nav-list .dw-icon:hover {
  background-color: var(--text-color);
}
.p-nav-list .dw-icon:hover svg {
  fill: var(--bg-color);
}
.p-nav-list .child {
  display: grid;
  grid-template-rows: 0fr;
  transition: var(--hover-animation-speed);
  grid-area: 2/1/3/3;
}
[data-dropdown-open=investment] .p-nav-list .child + .dw-icon {
  transform: rotate3d(0, 0, 1, 45deg);
}
[data-dropdown-open=investment] .p-nav-list .child[data-child=investment] {
  padding-block-end: 20px;
  grid-template-rows: 1fr;
}

[data-dropdown-open=contact] .p-nav-list .child + .dw-icon {
  transform: rotate3d(0, 0, 1, 45deg);
}
[data-dropdown-open=contact] .p-nav-list .child[data-child=contact] {
  padding-block-end: 20px;
  grid-template-rows: 1fr;
}

.p-nav-list .list {
  padding: 0;
  padding-inline: 20px;
  list-style: none;
  overflow: hidden;
}
.p-nav-list .list li {
  display: grid;
  grid-template-columns: 8px auto;
  column-gap: 8px;
  align-items: center;
}
.p-nav-list .list li:before {
  content: "";
  width: 8px;
  height: 1px;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
}
.p-nav-list .list a {
  display: block;
  padding-block: 5px;
  font-size: clamp(0.875rem, 0.7838607595rem + 0.253164557vw, 1rem);
  font-weight: 500;
  text-decoration: none;
  transition: var(--hover-animation-speed);
}
.p-nav-list .list a:hover {
  opacity: 0.75;
}
@media screen and (min-width: 1080px) {
  .p-nav {
    display: none;
  }
}

/* custom property ------------------------ */
:root {
  --contents-block-padding: max(5vw, 40px);
  --contents-inner-padding: max(5vw, 20px);
  --grid-column-guide: repeat(12, 1fr);
  --column-gap: max(2vw, 10px);
  --space-lg: clamp(120px, 15vw, 240px);
  --space-md: clamp(80px, 10vw, 160px);
  --space-sm: clamp(40px, 5vw, 80px);
  --space-xs: clamp(20px, 3vw, 40px);
  --space-xxs: clamp(10px, 1vw, 20px);
  --bg-color: rgba(255, 255, 255, 1);
  --text-color: rgba(0, 0, 0, 1);
  --accent-color: rgba(81, 69, 239, 1);
  --hover-animation-speed: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

/* layout ---------------------------------- */
.l-main {
  background-color: var(--text-color);
}
.l-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}
.l-contents {
  padding-block-start: clamp(60px, 8vw, 120px);
  padding-block-end: var(--space-lg);
  padding-inline: var(--contents-inner-padding);
  background-color: var(--bg-color);
  border-radius: 0 0 clamp(30px, 3vw, 40px) clamp(30px, 3vw, 40px);
  box-sizing: content-box;
}
.l-section {
  margin-block: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 40px);
}
.l-section:first-child {
  margin-block-start: 0;
}
.l-section:last-child {
  margin-block-end: 0;
}
.l-section__title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-article {
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.l-article-header {
  padding-block-end: var(--space-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(2, auto);
  gap: var(--space-xxs);
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
}
.l-article-header .date {
  grid-area: 1/1/2/2;
  font-size: clamp(0.875rem, 0.7838607595rem + 0.253164557vw, 1rem);
}
.l-article-header .category {
  grid-area: 1/2/2/3;
  font-size: clamp(0.8125rem, 0.7669303797rem + 0.1265822785vw, 0.875rem);
}
.l-article-header .title {
  grid-area: 2/1/3/3;
  font-size: clamp(1.5rem, 0.7708860759rem + 2.0253164557vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
}
.l-article-footer {
  padding-block-start: var(--space-sm);
  border-block-start: 1px solid rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 1080px) {
  .l-section__title {
    grid-column: 1/4;
  }
  .l-section__inner {
    grid-column: 4/13;
  }
}
@media screen and (min-width: 1600px) {
  .l-article {
    max-width: none;
    margin-inline: 0;
    grid-column: 4/10;
  }
}

/* Project --------------------------------- */
.p-pageheader {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
  padding-block-start: var(--space-lg);
  padding-inline: var(--contents-inner-padding);
  background-color: var(--bg-color);
}
.p-pageheader .en {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  line-height: 1;
}
.p-pageheader .en svg {
  width: 14px;
}
.p-pageheader .jp {
  font-size: clamp(2.25rem, 0.2449367089rem + 5.5696202532vw, 5rem);
  font-weight: 600;
  line-height: 1.2;
}
.p-pageheader .jp span {
  display: inline-block;
}
.p-pageheader.detail-header {
  padding-block-start: clamp(120px, 15vw, 200px);
}
.p-pageheader.detail-header .jp {
  font-size: clamp(2rem, 1.2708860759rem + 2.0253164557vw, 3rem);
}
.p-projectlist {
  padding: 0;
  list-style: none;
}
.p-projectlist a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.p-projectlist a .header {
  padding-block: var(--space-xxs);
  padding-inline: 5px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  align-items: center;
  border-block-start: 1px dotted rgba(0, 0, 0, 0.5);
  line-height: 1.4;
}
.p-projectlist a .header .jp {
  grid-area: 1/1/2/2;
  font-size: clamp(1.25rem, 1.067721519rem + 0.5063291139vw, 1.5rem);
}
.p-projectlist a .header .en {
  grid-area: 2/1/3/2;
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.6);
}
.p-projectlist a .header .number {
  grid-area: 1/2/3/3;
  font-size: clamp(1rem, 0.817721519rem + 0.5063291139vw, 1.25rem);
  text-align: end;
  color: rgba(0, 0, 0, 0.5);
}
.p-projectlist a .header .type {
  display: flex;
  justify-content: end;
  grid-area: 1/2/3/3;
}
.p-projectlist a .header .type span {
  height: 24px;
  padding-inline: 10px;
  display: flex;
  align-items: center;
  border: 1px solid #004cd0;
  border-radius: 3px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  color: #004cd0;
  box-sizing: border-box;
}
.p-projectlist a .main {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  align-items: center;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: var(--hover-animation-speed);
}
.p-projectlist a .main .image {
  width: 100%;
  padding: max(10%, 20px);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  grid-area: 1/1/2/3;
}
.p-projectlist a .main .image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 5px;
}
.p-projectlist a .main .image svg {
  opacity: 0.1;
}
.p-projectlist a .main .area {
  display: flex;
  justify-content: start;
  grid-area: 2/1/3/2;
}
.p-projectlist a .main .area .icon {
  height: clamp(28px, 2vw, 32px);
  padding-inline: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--accent-color);
  border-radius: 3px;
  font-size: clamp(0.8125rem, 0.7213607595rem + 0.253164557vw, 0.9375rem);
  font-weight: 500;
  line-height: 1;
  color: var(--bg-color);
}
.p-projectlist a .data {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}
.p-projectlist a .data li {
  padding-block: 10px;
  padding-inline-end: var(--space-xxs);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-block-end: 1px dotted rgba(0, 0, 0, 0.5);
}
.p-projectlist a .data li:nth-child(2n) {
  padding-inline-start: var(--space-xxs);
  padding-inline-end: 0;
  position: relative;
}
.p-projectlist a .data li:nth-child(2n):before {
  content: "";
  width: 1px;
  height: 60%;
  display: block;
  border-inline-start: 1px dotted rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 20%;
}
.p-projectlist a .data li:last-child {
  grid-column: 1/3;
  padding-inline: 0;
  border-block-end: 0;
}
.p-projectlist a .data li .title {
  font-size: clamp(0.75rem, 0.6588607595rem + 0.253164557vw, 0.875rem);
  font-weight: 500;
}
.p-projectlist a .data li .number {
  font-size: clamp(0.875rem, 0.8294303797rem + 0.1265822785vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.2;
}
.p-projectlist a .data li .number b {
  font-size: clamp(1.5rem, 0.7708860759rem + 2.0253164557vw, 2.5rem);
  font-weight: 500;
}
.p-projectlist a .data li .text {
  font-size: clamp(0.875rem, 0.8294303797rem + 0.1265822785vw, 0.9375rem);
}
.p-projectlist a .data li .text a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.p-projectlist a .data li .text a svg {
  width: 12px;
}
.p-projectlist a:hover .main {
  background-color: rgba(0, 0, 0, 0.2);
}
.p-projectlist .sold a .header .type {
  opacity: 0.4;
}
.p-projectlist .sold a .header .type span {
  border-color: var(--text-color);
  color: var(--text-color);
}
.p-projectlist .sold a .main .image {
  position: relative;
}
.p-projectlist .sold a .main .image:before {
  content: "SOLD OUT";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  font-size: clamp(1.25rem, 1.067721519rem + 0.5063291139vw, 1.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--bg-color);
  transform: translate3d(-50%, -50%, 0);
}
.p-projectlist .sold a .main .image img {
  filter: brightness(30%) saturate(0%);
  position: relative;
  z-index: 0;
}
.p-footnav {
  padding-block: var(--space-md);
  padding-inline: var(--contents-inner-padding);
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
  background-color: #ccd1c9;
  border-radius: 0 0 clamp(30px, 3vw, 40px) clamp(30px, 3vw, 40px);
  position: relative;
  z-index: 0;
}
.p-footnav:before {
  content: "";
  width: 100%;
  height: clamp(30px, 3vw, 40px);
  display: block;
  background-color: #ccd1c9;
  position: absolute;
  top: calc(clamp(30px, 3vw, 40px) * -1);
  left: 0;
}
.p-footnav .item a {
  width: 100%;
  padding-block: var(--space-sm);
  padding-inline: var(--space-xs);
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: var(--bg-color);
  border-radius: 10px;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.p-footnav .item a:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.p-footnav .item a:hover .icon {
  background-color: var(--accent-color);
}
.p-footnav .item a:hover .icon svg {
  fill: var(--bg-color);
}
.p-footnav .item .icon {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(81, 69, 239, 0.15);
  border-radius: 5px;
  transition: var(--hover-animation-speed);
}
.p-footnav .item .icon svg {
  width: 16px;
  fill: var(--accent-color);
  transition: var(--hover-animation-speed);
}
.p-footnav .item .title {
  font-size: clamp(1.25rem, 1.067721519rem + 0.5063291139vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
}
.p-footnav .item .title span {
  display: inline-block;
}
.p-footnav .item p {
  font-size: clamp(0.8125rem, 0.7213607595rem + 0.253164557vw, 0.9375rem);
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 768px) {
  .p-projectlist a .main .image {
    padding: max(15%, 20px);
  }
  .p-footnav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-footnav .item:first-child {
    grid-column: 1/3;
  }
  .p-footnav .item:first-child .title {
    font-size: clamp(1.5rem, 1.135443038rem + 1.0126582278vw, 2rem);
  }
  .p-footnav .item a {
    display: grid;
    grid-template-columns: 36px 1fr clamp(40px, 2vw, 48px);
    grid-template-rows: repeat(2, auto);
    align-items: center;
  }
  .p-footnav .item .icon {
    grid-area: 1/1/2/2;
  }
  .p-footnav .item .title {
    grid-area: 1/2/2/3;
  }
  .p-footnav .item p {
    grid-area: 2/2/3/3;
  }
  .p-footnav .item .c-icon-arrow {
    grid-area: 1/3/3/4;
  }
}

/* component ------------------------------- */
.c-icon-hex {
  display: flex;
  align-items: center;
  gap: clamp(5px, 1vw, 10px);
}
.c-icon-hex:before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  clip-path: polygon(8% 25%, 50% 0, 92% 25%, 92% 75%, 50% 100%, 8% 75%);
  background-color: var(--text-color);
}
.c-icon-arrow {
  width: clamp(36px, 3vw, 48px);
  height: clamp(12px, 1vw, 16px);
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: clamp(6px, 0.5vw, 8px);
  overflow: hidden;
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
}
.c-icon-arrow svg {
  height: 55%;
}
.c-icon-arrow.u-small {
  width: clamp(32px, 3vw, 40px);
  height: clamp(14px, 2vw, 16px);
  border-radius: clamp(7px, 1vw, 8px);
}
.c-icon-arrow.u-large {
  width: clamp(48px, 6vw, 64px);
  height: clamp(20px, 2vw, 24px);
  border-radius: clamp(10px, 1vw, 12px);
}
.c-icon-arrow.u-large svg {
  height: 45%;
}
.c-icon-arrow .clone {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--hover-animation-speed);
}
.c-icon-arrow .clone:first-child {
  transform: translateX(-100%);
}
.c-icon-arrow .clone:last-child {
  transform: translateX(-100%);
}
.c-icon-arrow.bg-bk {
  background-color: var(--text-color);
  border: 0;
}
.c-icon-arrow.bg-bk .clone svg {
  fill: var(--bg-color);
}
.c-icon-arrow.bg-wt {
  background-color: var(--bg-color);
  border: 0;
}
.c-icon-arrow.bg-wt .clone svg {
  fill: var(--text-color);
}
a:hover .c-icon-arrow {
  border-color: var(--text-color);
}
a:hover .c-icon-arrow .clone:first-child {
  transform: translateX(0);
}
a:hover .c-icon-arrow .clone:last-child {
  transform: translateX(0);
}

.c-icon-arrow:hover {
  border-color: var(--text-color);
}
.c-icon-arrow:hover .clone:first-child {
  transform: translateX(0);
}
.c-icon-arrow:hover .clone:last-child {
  transform: translateX(0);
}
.c-icon-return {
  width: clamp(60px, 5vw, 80px);
  height: clamp(32px, 2vw, 36px);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: clamp(16px, 1vw, 18px);
  overflow: hidden;
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
}
.c-icon-return svg {
  width: 16px;
}
.c-icon-return:hover {
  border-color: var(--text-color);
}
a:hover .c-icon-return {
  border-color: var(--text-color);
}

.c-button {
  min-width: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-xs);
  background-color: var(--accent-color);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  color: var(--bg-color);
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
}
.c-button:hover {
  border-color: var(--text-color);
  filter: brightness(1.3);
}
.c-button.u-xlarge {
  height: clamp(64px, 8vw, 96px);
  padding-inline: clamp(20px, 3vw, 40px);
  border-radius: clamp(32px, 4vw, 48px);
  font-size: clamp(1rem, 0.817721519rem + 0.5063291139vw, 1.25rem);
}
.c-button.u-large {
  height: clamp(48px, 5vw, 64px);
  padding-inline: clamp(20px, 3vw, 30px);
  border-radius: clamp(24px, 2.5vw, 32px);
  font-size: clamp(1rem, 0.9088607595rem + 0.253164557vw, 1.125rem);
}
.c-button.u-middle {
  height: clamp(40px, 4vw, 48px);
  padding-inline: clamp(15px, 2vw, 20px);
  border-radius: clamp(20px, 2vw, 24px);
  font-size: clamp(0.875rem, 0.7838607595rem + 0.253164557vw, 1rem);
}
.c-button.u-small {
  height: clamp(36px, 3vw, 40px);
  padding-inline: clamp(10px, 1.5vw, 15px);
  border-radius: clamp(18px, 1.5vw, 20px);
  font-size: clamp(0.8125rem, 0.7669303797rem + 0.1265822785vw, 0.875rem);
}
.c-button.u-transparent {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--text-color);
}
.c-button.u-transparent:hover {
  border-color: var(--text-color);
}
.c-select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  transition: var(--hover-animation-speed);
}
.c-select:hover {
  border-color: var(--text-color);
}
.c-select select {
  width: 100%;
  height: 40px;
  padding-inline-start: 20px;
  padding-inline-end: 40px;
  background-color: transparent;
  border: 0;
  position: relative;
  z-index: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;
}
.c-select:after {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  border-block-end: 1px solid var(--text-color);
  border-inline-end: 1px solid var(--text-color);
  box-sizing: border-box;
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  z-index: 1;
  transform-origin: center;
  transform: rotate3d(0, 0, 1, 45deg);
}
.c-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  backdrop-filter: blur(20px);
  pointer-events: none;
  opacity: 0;
  transition: var(--hover-animation-speed);
}
.navigationOpened .c-overlay,
[data-dropdown-open] .c-overlay {
  pointer-events: visible;
  opacity: 1;
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 30px);
}
.c-pagination .prev a,
.c-pagination .next a {
  height: clamp(36px, 3vw, 40px);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: clamp(18px, 1.5vw, 20px);
  line-height: 1;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
}
.c-pagination .prev a span,
.c-pagination .next a span {
  display: none;
}
.c-pagination .prev a svg,
.c-pagination .next a svg {
  width: 12px;
  transition: var(--hover-animation-speed);
}
.c-pagination .prev a:hover,
.c-pagination .next a:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--bg-color);
}
.c-pagination .prev a:hover svg,
.c-pagination .next a:hover svg {
  fill: var(--bg-color);
}
.c-pagination .prev svg {
  transform: scale(-1, 1);
}
.c-pagination .list {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 30px);
  list-style: none;
}
.c-pagination .list a,
.c-pagination .list .page-numbers.current {
  width: clamp(36px, 3vw, 40px);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  font-size: clamp(0.875rem, 0.7838607595rem + 0.253164557vw, 1rem);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
}
.c-pagination .list a {
  transition: var(--hover-animation-speed);
}
.c-pagination .list a:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--bg-color);
}
.c-pagination .list .page-numbers.current {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--bg-color);
}
.c-notice {
  padding-inline: var(--inner-padding);
  list-style: none;
  text-decoration: none;
}
.c-notice li {
  padding-inline-start: 1em;
  text-indent: -1em;
  font-size: clamp(0.6875rem, 0.5963607595rem + 0.253164557vw, 0.8125rem);
}
.c-notice li:before {
  content: "※";
}
@media screen and (min-width: 1080px) {
  .c-select {
    width: auto;
  }
  .c-pagination .prev a,
  .c-pagination .next a {
    padding-inline: 25px;
    gap: 15px;
    aspect-ratio: auto;
  }
  .c-pagination .prev a span,
  .c-pagination .next a span {
    display: block;
  }
}

/* utility --------------------------------- */
.u-width-max {
  max-width: 2000px;
  margin-inline: auto;
}
.u-mg-block-xs {
  margin-block: var(--space-xs);
}
.u-mg-block-sm {
  margin-block: var(--space-sm);
}
.u-mg-block-md {
  margin-block: var(--space-md);
}
.u-mg-block-lg {
  margin-block: var(--space-md);
}
.u-pd-inline {
  padding-inline: var(--contents-inner-padding);
}
.u-pd-block-end {
  padding-block-end: clamp(160px, 20vw, 300px);
}
.u-pd-block-end-side {
  padding-block-end: 60px;
}
.u-txt-size-xxs {
  font-size: clamp(0.625rem, 0.5338607595rem + 0.253164557vw, 0.75rem);
}
.u-txt-size-xs {
  font-size: clamp(0.75rem, 0.6588607595rem + 0.253164557vw, 0.875rem);
}
.u-txt-size-sm {
  font-size: clamp(0.875rem, 0.7838607595rem + 0.253164557vw, 1rem);
}
.u-txt-size-md {
  font-size: clamp(1rem, 0.817721519rem + 0.5063291139vw, 1.25rem);
}
.u-txt-size-lg {
  font-size: clamp(1.25rem, 1.067721519rem + 0.5063291139vw, 1.5rem);
}
.u-txt-size-xl {
  font-size: clamp(1.5rem, 1.135443038rem + 1.0126582278vw, 2rem);
}
.u-txt-size-xxl {
  font-size: clamp(2rem, 1.817721519rem + 0.5063291139vw, 2.25rem);
}
.u-txt-size-3xl {
  font-size: clamp(2.25rem, 2.067721519rem + 0.5063291139vw, 2.5rem);
}
.u-txt-size-4xl {
  font-size: clamp(2.5rem, 2.135443038rem + 1.0126582278vw, 3rem);
}
.u-txt-w-500 {
  font-weight: 500;
}
.u-txt-w-600 {
  font-weight: 600;
}
.u-txt-font-en {
  font-family: "Poppins", sans-serif;
  letter-spacing: normal;
}
.u-txt-font-number {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.1em;
}
.u-txt-up {
  text-transform: uppercase;
}
@media screen and (min-width: 1080px) {
  .u-pd-block-end-side {
    padding-block-end: clamp(160px, 20vw, 300px);
  }
}

/* --------------------------------- */
/* --------------------------------- */