@charset "UTF-8";
/* custom property ------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Barlow:wght@400;500;600;700&display=swap");
:root {
  --contents-inner-padding: max(3vw, 20px);
  --grid-column-guide: repeat(12, 1fr);
  --grid-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);
}

/* 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: "Outfit", "Zen Kaku Gothic New", "メイリオ", "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: 70px;
  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: 60px;
  padding-inline: calc(var(--contents-inner-padding) - 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 a {
  text-decoration: none;
  color: var(--text-color);
}
.l-header-logo {
  display: flex;
}
.l-header-logo a {
  width: 60px;
  display: flex;
  align-items: center;
}
.l-header-logo svg {
  fill: var(--text-color);
  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: 992px) {
  .l-header {
    height: 100px;
    padding-inline: 10px;
  }
  .l-header-wrap {
    height: 80px;
    padding-inline: calc(var(--contents-inner-padding) - 10px);
  }
  .l-header-inner {
    display: flex;
    gap: clamp(40px, 3vw, 80px);
    position: relative;
    z-index: 2;
  }
  .l-header-logo a {
    width: 80px;
  }
  .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: calc(50% - 4px);
    right: 4px;
  }
  .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=company] .l-header-nav a[data-name=company].dropdown:before {
    opacity: 0;
  }
  [data-dropdown-open=ir] .l-header-nav a[data-name=ir].dropdown:before {
    opacity: 0;
  }
  [data-dropdown-open=sustainable] .l-header-nav a[data-name=sustainable].dropdown:before {
    opacity: 0;
  }
  .l-header-other {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    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=company] .l-header-other .item .button,
  [data-dropdown-open=ir] .l-header-other .item .button,
  [data-dropdown-open=sustainable] .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);
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  [data-dropdown-open=group] .l-header-other .c-dropdown[data-name=group] {
    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;
    color: var(--text-color);
    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 img,
  .l-header-other .c-dropdown-list li .image.glc svg {
    width: 80%;
  }
  .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=company] .l-header-dropdown[data-name=company] {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  [data-dropdown-open=ir] .l-header-dropdown[data-name=ir] {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  [data-dropdown-open=sustainable] .l-header-dropdown[data-name=sustainable] {
    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(--grid-gap);
    list-style: none;
  }
  .l-header-dropdown .list a {
    padding-block: 20px;
    padding-inline: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-block-end: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 1rem;
    font-weight: 500;
    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: 30px;
  display: flex;
  align-items: center;
}
.l-footer-group-c li a .logo.glc img,
.l-footer-group-c li a .logo.glc svg, .l-footer-group-c li a .logo.libstore img,
.l-footer-group-c li a .logo.libstore svg {
  height: 36px;
}
.l-footer-group-c li a .logo.glc-c img,
.l-footer-group-c li a .logo.glc-c svg, .l-footer-group-c li a .logo.glc-e img,
.l-footer-group-c li a .logo.glc-e svg {
  height: 20px;
}
.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 a {
  width: 80px;
}
.l-footer-bottom .logo svg {
  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;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.l-footer-bottom-link a {
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
  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.3977272727rem + 0.2840909091vw, 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 {
    display: grid;
    grid-template-columns: 16px auto;
    align-items: center;
    column-gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
  }
  .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;
    row-gap: clamp(20px, 3vw, 30px);
  }
  .l-footer-sitemap .wrap dl {
    display: flex;
    flex-direction: column;
    line-height: 1.8;
  }
  .l-footer-sitemap .wrap dt,
  .l-footer-sitemap .wrap span {
    margin-block-end: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
  }
  .l-footer-sitemap .wrap dd {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.75;
  }
  .l-footer-bottom {
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    gap: var(--grid-gap);
    border-block-start: 1px solid rgba(255, 255, 255, 0.15);
  }
  .l-footer-bottom .logo {
    grid-column: 1/3;
    align-items: start;
  }
  .l-footer-bottom .adress {
    grid-column: 3/7;
    align-items: start;
  }
  .l-footer-bottom-link {
    grid-column: 7/11;
  }
  .l-footer-bottom .jpx {
    grid-column: 11/13;
    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 1px 20px;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
}
.p-nav-list .item.dropdown a {
  grid-area: 1/1/2/2;
}
.p-nav-list .item.dropdown:before {
  content: "";
  width: 1px;
  height: 20px;
  display: block;
  background-color: rgba(0, 0, 0, 0.15);
  grid-area: 1/2/2/3;
}
.p-nav-list .item.dropdown .dw-icon {
  grid-area: 1/3/2/4;
}
.p-nav-list a {
  text-decoration: none;
}
.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.0227272727rem + 0.2840909091vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  grid-area: 1/1/2/2;
}
.p-nav-list .dw-icon {
  transform-origin: center;
  transition: var(--hover-animation-speed);
  grid-area: 1/2/2/3;
}
.p-nav-list .child {
  display: grid;
  grid-template-rows: 0fr;
  transition: var(--hover-animation-speed);
  grid-area: 2/1/3/3;
}
[data-dropdown-open=company] .p-nav-list .child + .dw-icon {
  transform: rotate3d(0, 0, 1, 45deg);
}
[data-dropdown-open=company] .p-nav-list .child[data-child=company] {
  padding-block-end: 20px;
  grid-template-rows: 1fr;
}

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

[data-dropdown-open=sustainable] .p-nav-list .child + .dw-icon {
  transform: rotate3d(0, 0, 1, 45deg);
}
[data-dropdown-open=sustainable] .p-nav-list .child[data-child=sustainable] {
  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 a {
  display: block;
  padding-block: 5px;
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .p-nav {
    display: none;
  }
}

/* layout ---------------------------------- */
.l-wrapper {
  width: 100%;
  position: relative;
}
.l-contents {
  max-width: 1800px;
  margin-inline: auto;
  padding-block-end: var(--space-lg);
  box-sizing: content-box;
}
.l-section {
  margin-block: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.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;
  font-size: clamp(1.5rem, 1.0909090909rem + 1.1363636364vw, 2rem);
  font-weight: 600;
}
.l-section__title a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.l-section__title svg {
  width: 20px;
}
.l-section__title .c-arrow {
  margin-inline-start: 20px;
}
@media screen and (min-width: 992px) {
  .l-section__title {
    grid-column: 1/4;
  }
  .l-section__inner {
    grid-column: 4/13;
  }
}
@media screen and (min-width: 1280px) {
  .l-inner-r {
    grid-column: 4/13;
    order: 2;
  }
}

/* Project --------------------------------- */
.p-pageheader {
  width: 100%;
  padding-block-start: var(--space-lg);
  padding-block-end: var(--space-md);
  padding-inline: var(--contents-inner-padding);
  line-height: 1;
  position: relative;
}
.p-pageheader:before {
  content: "";
  height: 80%;
  aspect-ratio: 2/3;
  display: block;
  background-image: url(../../assets/images/common/symbol_g_logo.svg);
  background-position: left bottom;
  background-size: 150% auto;
  position: absolute;
  right: 0;
  bottom: 20%;
  z-index: 0;
  opacity: 0.07;
}
.p-pageheader__inner {
  width: 100%;
  max-width: 1800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  row-gap: clamp(10px, 2vw, 30px);
  position: relative;
  z-index: 1;
}
.p-pageheader .jp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1rem, 0.5909090909rem + 1.1363636364vw, 1.5rem);
  font-weight: 600;
}
.p-pageheader .jp svg {
  width: 16px;
}
.p-pageheader .en {
  font-size: clamp(3rem, -1.0909090909rem + 11.3636363636vw, 8rem);
  font-weight: 500;
}
.p-pageheader .c-breadcrumbs {
  margin-block-start: 40px;
}
.p-pageheader.u-header-small {
  padding-block-start: var(--space-lg);
  padding-block-end: var(--space-md);
}
.p-pageheader.u-header-small .p-pageheader__inner {
  row-gap: var(--space-xxs);
}
.p-pageheader.u-header-small .jp {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}
.p-pageheader.u-header-small .en {
  font-size: clamp(1.5rem, 0.6818181818rem + 2.2727272727vw, 2.5rem);
}
.p-pageheader.u-header-small .c-breadcrumbs {
  margin-block-start: 20px;
}
.p-pageheader .c-icon-hex:before {
  width: 10px;
}
@media screen and (min-width: 992px) {
  .p-pageheader:before {
    height: 100%;
    bottom: 0;
  }
  .p-pageheader__inner {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    justify-content: space-between;
    align-items: end;
  }
  .p-pageheader .jp {
    grid-area: 1/1/2/2;
  }
  .p-pageheader .en {
    grid-area: 2/1/3/2;
  }
  .p-pageheader .c-breadcrumbs {
    margin-block-start: 0;
    grid-area: 2/2/3/3;
  }
}
.p-side-menu {
  margin-block-start: clamp(120px, 15vw, 240px);
}
.p-side-menu ul {
  padding: 0;
  list-style: none;
  border-block-start: 1px solid rgba(0, 0, 0, 0.15);
}
.p-side-menu a {
  padding-block: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  font-weight: 500;
  text-decoration: none;
  transition: var(--hover-animation-speed);
}
.p-side-menu a:hover {
  border-block-end-color: rgb(0, 0, 0);
}
.p-side-area .inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--space-xs);
  row-gap: var(--space-xs);
}
.p-side-area .section {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
}
.p-side-area .section:before {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background-color: rgba(0, 0, 0, 0.15);
  order: 1;
}
.p-side-area .section .title {
  font-size: 0.8125rem;
  font-weight: 500;
  order: 0;
  letter-spacing: normal;
}
.p-side-area .section .c-list,
.p-side-area .section .c-select {
  order: 2;
}
.p-side-area .section.u-chenge-list .c-list {
  display: none;
}
.p-side-area .section.category {
  grid-area: 1/1/2/2;
}
.p-side-area .section.category .c-list {
  display: none;
}
.p-side-area .section.archive {
  grid-area: 1/2/2/3;
}
.p-side-area .button {
  grid-area: 2/1/3/3;
}
.p-pagination {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: var(--space-xxs);
  list-style: none;
}
.p-pagination li {
  display: flex;
  overflow: hidden;
}
.p-pagination li a,
.p-pagination li .current {
  width: clamp(36px, 4vw, 48px);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
}
.p-pagination li a {
  text-decoration: none;
  transition: var(--hover-animation-speed);
}
.p-pagination li a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.p-pagination li a.prev, .p-pagination li a.next {
  width: auto;
  height: auto;
  aspect-ratio: inherit;
  border-radius: 0;
}
.p-pagination li a.prev:hover, .p-pagination li a.next:hover {
  background-color: transparent;
}
.p-pagination li a.prev {
  transform: scale(-1, 1);
}
.p-pagination li .current {
  background-color: var(--text-color);
  color: var(--bg-color);
}
.p-pagination .list {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.p-index-menu {
  margin-block-start: clamp(80px, 10vw, 160px);
  padding: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
}
.p-index-menu li {
  display: flex;
}
.p-index-menu li:first-child {
  border-block-start: 1px solid rgba(0, 0, 0, 0.15);
}
.p-index-menu a {
  width: 100%;
  padding-block: clamp(30px, 4vw, 50px);
  padding-inline: clamp(10px, 2vw, 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(60px, 10vw, 120px);
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
  font-weight: 500;
  text-decoration: none;
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
}
.p-index-menu a:hover {
  background-color: rgba(0, 0, 0, 0.02);
  border-block-end-color: rgb(0, 0, 0);
}
.p-index-menu .head {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  justify-content: space-between;
  align-items: center;
  row-gap: var(--space-xxs);
  line-height: 1;
}
.p-index-menu .head .en {
  grid-area: 1/1/2/2;
  font-size: clamp(1.5rem, 1.0909090909rem + 1.1363636364vw, 2rem);
}
.p-index-menu .head .jp {
  grid-area: 2/1/3/2;
  font-size: clamp(0.9375rem, 0.8863636364rem + 0.1420454545vw, 1rem);
  font-weight: 600;
}
.p-index-menu p {
  font-size: clamp(0.8125rem, 0.7102272727rem + 0.2840909091vw, 0.9375rem);
  line-height: 1.6;
}
.p-index-menu p br {
  display: none;
}
@media screen and (min-width: 576px) {
  .p-pageheader:before {
    content: "";
    width: 60%;
    aspect-ratio: auto;
    background-size: 100% auto;
    right: 0;
  }
  .p-index-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--grid-gap);
  }
  .p-index-menu li:nth-child(2) {
    border-block-start: 1px solid rgba(0, 0, 0, 0.15);
  }
  .p-index-menu p br {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .p-pageheader:before {
    width: 40%;
  }
  .p-side {
    padding-block-end: clamp(120px, 15vw, 200px);
  }
  .p-side-menu {
    margin-block-start: 0;
    grid-column: 1/3;
    order: 1;
  }
  .p-side-menu ul {
    max-width: 200px;
    border: 0;
    position: sticky;
    top: 120px;
  }
  .p-side-menu a {
    padding-block: 5px;
    border: 0;
  }
  .p-side-area {
    position: relative;
    grid-column: 1/3;
    order: 1;
  }
  .p-side-area .inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: var(--space-xs);
    position: sticky;
    top: 120px;
  }
  .p-side-area .section.category .c-list {
    display: flex;
  }
  .p-side-area .section.category .c-select {
    display: none;
  }
  .p-side-area .section.u-chenge-list .c-list {
    display: flex;
  }
  .p-side-area .section.u-chenge-list .c-select {
    display: none;
  }
}

/* component ------------------------------- */
.c-icon-hex {
  display: flex;
  align-items: center;
  gap: clamp(5px, 1vw, 10px);
}
.c-icon-hex:before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  display: block;
  clip-path: polygon(8% 25%, 50% 0, 92% 25%, 92% 75%, 50% 100%, 8% 75%);
  background-color: var(--text-color);
  transition: var(--hover-animation-speed);
}
.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.u-black {
  background-color: var(--text-color);
  border: 0;
}
.c-icon-arrow.u-black .clone svg {
  fill: var(--bg-color);
}
.c-icon-arrow.u-white {
  background-color: var(--bg-color);
  border: 0;
}
.c-icon-arrow.u-white .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-arrow {
  width: 40px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--text-color);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: var(--hover-animation-speed);
}
.c-arrow svg {
  width: 16px;
  transition: var(--hover-animation-speed);
}
.c-arrow-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
.c-arrow-inner:first-child {
  transform: translateX(-100%);
}
.c-arrow-inner:last-child {
  transform: translateX(0);
}
a:hover .c-arrow-inner {
  transition: var(--hover-animation-speed);
}
a:hover .c-arrow-inner:first-child {
  transform: translateX(0);
}
a:hover .c-arrow-inner:last-child {
  transform: translateX(100%);
}

.c-arrow.wt {
  background-color: var(--bg-color);
}
.c-arrow.wt svg {
  fill: var(--text-color);
}
.c-arrow svg {
  fill: var(--bg-color);
}
.c-arrow.invert {
  background-color: var(--bg-color);
}
.c-arrow.invert svg {
  fill: var(--text-color);
}
.c-arrow.naked {
  width: 24px;
  background-color: transparent;
}
.c-arrow.naked svg {
  fill: var(--text-color);
}
.c-arrow.reverse {
  transform: scale(-1, 1);
}
.c-button {
  height: clamp(48px, 5vw, 60px);
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: clamp(24px, 2.5vw, 30px);
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: var(--hover-animation-speed);
}
.c-button:hover {
  background-color: var(--text-color);
  color: var(--bg-color);
}
.c-button:hover .c-arrow {
  background-color: var(--bg-color);
}
.c-button:hover .c-arrow svg {
  fill: var(--text-color);
}
.c-button.wt {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--bg-color);
}
.c-button.wt .c-arrow {
  background-color: var(--bg-color);
}
.c-button.wt .c-arrow svg {
  fill: var(--text-color);
}
.c-button.wt:hover {
  background-color: var(--bg-color);
  color: var(--text-color);
}
.c-button.wt:hover .c-arrow {
  background-color: var(--text-color);
}
.c-button.wt:hover .c-arrow svg {
  fill: var(--bg-color);
}
.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-breadcrumbs {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.c-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
}
.c-breadcrumbs li .icon {
  width: 16px;
}
.c-breadcrumbs li a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.c-breadcrumbs li:after {
  content: "";
  width: 8px;
  height: 1px;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}
.c-breadcrumbs li:last-child:after {
  display: none;
}
.c-notice {
  padding-inline: var(--inner-padding);
  text-decoration: none;
}
.c-notice li {
  padding-inline-start: 1em;
  text-indent: -1em;
  font-size: clamp(0.6875rem, 0.5852272727rem + 0.2840909091vw, 0.8125rem);
}
.c-notice li:before {
  content: "※";
}
.c-image {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  position: relative;
}
.c-image-title {
  position: absolute;
  top: var(--space-xxs);
  left: var(--space-xxs);
  font-size: clamp(0.625rem, 0.5227272727rem + 0.2840909091vw, 0.75rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.c-list {
  padding: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 10px;
}
.c-list a {
  display: block;
  font-size: clamp(1rem, 0.8977272727rem + 0.2840909091vw, 1.125rem);
  font-weight: 500;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: var(--hover-animation-speed);
}
.c-list a:hover, .c-list a.select {
  color: var(--text-color);
}
.c-select {
  position: relative;
}
.c-select:before {
  content: "";
  width: 6px;
  height: 6px;
  border-inline-end: 1px solid var(--text-color);
  border-block-end: 1px solid var(--text-color);
  position: absolute;
  top: calc(50% - 3px);
  right: 15px;
  transform: rotate3d(0, 0, 1, 45deg);
  transform-origin: center;
}
.c-select select {
  width: 100%;
  height: 48px;
  padding-inline: 15px;
  background-color: rgba(0, 0, 0, 0.05);
  border: 0;
  border-radius: 5px;
  position: relative;
  z-index: 0;
  font-size: 1rem;
  transition: var(--hover-animation-speed);
  box-sizing: border-box;
  appearance: none;
}

/* utility --------------------------------- */
.u-grid {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-md);
}
.u-wrap {
  display: inline-block;
}
.u-form-select {
  position: relative;
}
.u-form-select:before {
  content: "";
  width: 6px;
  height: 6px;
  border-inline-end: 1px solid var(--text-color);
  border-block-end: 1px solid var(--text-color);
  position: absolute;
  top: calc(50% - 3px);
  right: 15px;
  transform: rotate3d(0, 0, 1, 45deg);
  transform-origin: center;
}
.u-form-select select {
  width: 100%;
  height: 48px;
  padding-inline: 15px;
  background-color: rgba(0, 0, 0, 0.05);
  border: 0;
  border-radius: 5px;
  position: relative;
  z-index: 0;
  font-size: 1rem;
  transition: var(--hover-animation-speed);
  box-sizing: border-box;
  appearance: none;
}
.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-s-14 {
  font-size: clamp(0.75rem, 0.6477272727rem + 0.2840909091vw, 0.875rem);
}
.u-txt-s-16 {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}
.u-txt-s-20 {
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
}
.u-txt-s-24 {
  font-size: clamp(1.125rem, 0.8181818182rem + 0.8522727273vw, 1.5rem);
}
.u-txt-s-40 {
  font-size: clamp(1.5rem, 0.6818181818rem + 2.2727272727vw, 2.5rem);
  line-height: 1.6;
}
.u-txt-s-48 {
  font-size: clamp(1.875rem, 0.9545454545rem + 2.5568181818vw, 3rem);
  line-height: 1.6;
}
.u-txt-s-64 {
  font-size: clamp(2rem, 0.3636363636rem + 4.5454545455vw, 4rem);
  line-height: 1.6;
}
.u-txt-s-96 {
  font-size: clamp(2.25rem, -0.8181818182rem + 8.5227272727vw, 6rem);
  line-height: 1.6;
}
.u-txt-s-128 {
  font-size: clamp(4rem, 0.7272727273rem + 9.0909090909vw, 8rem);
  line-height: 1.6;
}
.u-txt-w-500 {
  font-weight: 500;
}
.u-txt-w-600 {
  font-weight: 600;
}
.u-txt-f-number {
  font-family: "Barlow", sans-serif;
}
.u-txt-up {
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  .u-pd-block-end-side {
    padding-block-end: clamp(160px, 20vw, 300px);
  }
}
@media screen and (min-width: 1280px) {
  .u-grid {
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    column-gap: var(--grid-gap);
  }
}

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