@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);
  --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(0, 133, 101, 1);
  --hover-animation-speed: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  --vh-stable: 100lvh; /* 変動しない基準。好みで 100svh でもOK */
}

/* 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,
body {
  height: 100dvh;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(60px, 5vw, 100px);
}

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: 60px;
  padding-inline: var(--contents-inner-padding);
  display: flex;
  justify-content: space-between;
  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;
  position: relative;
  z-index: 2;
}
.l-header-logo a {
  height: clamp(20px, 2vw, 24px);
  display: flex;
  align-items: center;
}
.l-header-logo a svg,
.l-header-logo a img {
  width: auto;
  height: 100%;
  transition: var(--hover-animation-speed);
}
.l-header-logo a svg .color,
.l-header-logo a img .color {
  fill: #005242;
}
.white .l-header-logo a svg, .white .l-header-logo a img {
  fill: var(--bg-color);
}
.white .l-header-logo a svg .color, .white .l-header-logo a img .color {
  fill: var(--bg-color);
}

.l-header-nav, .l-header-group, .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: var(--accent-color);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  color: var(--bg-color);
  cursor: pointer;
  transition: var(--hover-animation-speed);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.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;
}
.l-header-menu.c-icon-hex:before {
  background-color: var(--bg-color);
  transition: var(--hover-animation-speed);
}
.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;
  }
  .l-header-wrap {
    height: 80px;
    padding-inline: calc(var(--contents-inner-padding) - 10px);
  }
  .l-header-logo a {
    height: 24px;
  }
  .l-header-nav, .l-header-group, .l-header-dropdown {
    pointer-events: auto;
  }
  .l-header-nav {
    height: 48px;
    padding-inline: 4px;
    display: flex;
    align-items: center;
    list-style: none;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
  }
  .l-header-nav a,
  .l-header-nav span {
    height: 40px;
    padding-inline: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    position: relative;
    font-size: clamp(0.875rem, 0.8238636364rem + 0.1420454545vw, 0.9375rem);
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: var(--hover-animation-speed);
  }
  .l-header-nav a:hover, .l-header-nav a.current,
  .l-header-nav span:hover,
  .l-header-nav span.current {
    background-color: var(--accent-color);
    color: var(--bg-color);
  }
  .l-header-nav a.dropdown:before, .l-header-nav a.dropdown:after,
  .l-header-nav span.dropdown:before,
  .l-header-nav span.dropdown:after {
    content: "";
    display: block;
    background-color: var(--text-color);
    transition: var(--hover-animation-speed);
  }
  .l-header-nav a.dropdown:before,
  .l-header-nav span.dropdown:before {
    width: 1px;
    height: 9px;
    position: absolute;
    top: calc(50% - 4px);
    right: 19px;
  }
  .l-header-nav a.dropdown:after,
  .l-header-nav span.dropdown:after {
    width: 9px;
    height: 1px;
  }
  .l-header-nav a.current:before, .l-header-nav a.current:after,
  .l-header-nav span.current:before,
  .l-header-nav span.current:after {
    background-color: var(--bg-color);
  }
  [data-dropdown-open=recruit] .l-header-nav a[data-name=recruit], [data-dropdown-open=recruit] .l-header-nav span[data-name=recruit] {
    background-color: var(--accent-color);
    color: var(--bg-color);
  }
  [data-dropdown-open=recruit] .l-header-nav a[data-name=recruit]:before, [data-dropdown-open=recruit] .l-header-nav a[data-name=recruit]:after, [data-dropdown-open=recruit] .l-header-nav span[data-name=recruit]:before, [data-dropdown-open=recruit] .l-header-nav span[data-name=recruit]:after {
    background-color: var(--bg-color);
  }
  [data-dropdown-open=recruit] .l-header-nav a[data-name=recruit]:before, [data-dropdown-open=recruit] .l-header-nav span[data-name=recruit]:before {
    opacity: 0;
  }
  .l-header-group {
    padding-block: 5px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .l-header-group .button {
    height: 48px;
    padding-inline: 20px 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-sizing: border-box;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--hover-animation-speed);
  }
  .l-header-group .button .icon {
    content: "";
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    border-radius: 50%;
    transition: var(--hover-animation-speed);
  }
  .l-header-group .button .icon svg {
    width: 40%;
    transform-origin: center;
    fill: var(--bg-color);
  }
  .l-header-group .button:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
  }
  [data-dropdown-open=dropdown] .l-header-group .button {
    border-color: var(--text-color);
    color: var(--text-color);
  }
  [data-dropdown-open=group] .l-header-group .button {
    background-color: var(--text-color);
    color: var(--bg-color);
  }
  [data-dropdown-open=group] .l-header-group .button .icon {
    background-color: var(--bg-color);
  }
  [data-dropdown-open=group] .l-header-group .button .icon svg {
    fill: var(--text-color);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  .l-header-group .c-dropdown {
    width: 280px;
    padding: 5px;
    background-color: var(--bg-color);
    border-radius: 5px;
    position: absolute;
    top: 58px;
    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-group .c-dropdown[data-name=group] {
    pointer-events: auto;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .l-header-group .c-dropdown-list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .l-header-group .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-group .c-dropdown-list li a:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .l-header-group .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-group .c-dropdown-list li .image.glc svg {
    width: 80%;
  }
  .l-header-group .c-dropdown-list li .image.recruit {
    background-color: #005be5;
  }
  .l-header-group .c-dropdown-list li .image.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: flex;
    flex-direction: column;
    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=recruit] .l-header-dropdown[data-name=recruit] {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .l-header-dropdown .title {
    padding-block: var(--space-xs);
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--text-color);
  }
  .l-header-dropdown .title: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: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
    font-weight: 600;
    order: 2;
  }
  .l-header-dropdown .title .en {
    font-size: clamp(1.5rem, 1.0909090909rem + 1.1363636364vw, 2rem);
    font-weight: 600;
    color: var(--accent-color);
    order: 0;
  }
  .l-header-dropdown .list {
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: var(--space-xs);
    row-gap: var(--space-xs);
    list-style: none;
  }
  .l-header-dropdown .list a {
    display: grid;
    grid-template-columns: auto 36px;
    grid-template-rows: repeat(2, auto);
    row-gap: 15px;
    text-decoration: none;
    transition: var(--hover-animation-speed);
  }
  .l-header-dropdown .list a:hover {
    border-block-end-color: var(--text-color);
  }
  .l-header-dropdown .list a:hover .text {
    color: var(--accent-color);
  }
  .l-header-dropdown .list a:hover svg {
    transform: translateX(6px);
  }
  .l-header-dropdown .list a:hover .image picture,
  .l-header-dropdown .list a:hover .image img {
    opacity: 0.9;
    transform: scale3d(1.05, 1.05, 1.05);
  }
  .l-header-dropdown .list a .image {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    overflow: hidden;
    grid-area: 1/1/2/3;
  }
  .l-header-dropdown .list a .image picture,
  .l-header-dropdown .list a .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform-origin: center;
    transition: var(--hover-animation-speed);
  }
  .l-header-dropdown .list a .text {
    grid-area: 2/1/3/2;
    font-size: clamp(0.875rem, 0.6704545455rem + 0.5681818182vw, 1.125rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-color);
    transition: var(--hover-animation-speed);
  }
  .l-header-dropdown .list a svg {
    grid-area: 2/2/3/3;
    fill: var(--accent-color);
    transition: var(--hover-animation-speed);
  }
}

.l-footer {
  padding-inline: var(--contents-inner-padding);
  background-color: var(--text-color);
  overflow: hidden;
  font-weight: 500;
}
.l-footer-inner {
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .l-footer-inner {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
  }
}
.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.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 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 .image {
  width: 90px;
}
.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;
  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;
}
@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(--space-xxs);
    color: var(--bg-color);
  }
  .l-footer-sitemap a:hover {
    text-decoration: underline;
  }
  .l-footer-sitemap__title {
    font-size: 0.9375rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .l-footer-sitemap__title .logo svg {
    width: 12px;
    fill: var(--bg-color);
  }
  .l-footer-sitemap .inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xxs);
  }
  .l-footer-sitemap .wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxs);
  }
  .l-footer-sitemap .wrap span {
    font-size: 1rem;
    font-weight: 600;
  }
  .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: 1rem;
    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: var(--grid-column-guide);
    gap: var(--space-xxs);
    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;
    justify-content: start;
  }
  .l-footer-bottom .copyright {
    grid-column: 11/13;
    text-align: end;
  }
}

/* ----------------------------------------- */
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 24px;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 20px;
  cursor: pointer;
}
.p-nav-list a {
  text-decoration: none;
}
.p-nav-list .anchor,
.p-nav-list .dropdown-target {
  padding-block: 15px;
  display: block;
  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 {
  display: flex;
  justify-content: center;
  grid-area: 1/2/2/3;
}
.p-nav-list .dw-icon svg {
  width: 12px;
  transform-origin: center;
  transition: var(--hover-animation-speed);
}
.p-nav-list .child {
  display: grid;
  grid-template-rows: 0fr;
  transition: var(--hover-animation-speed);
  grid-area: 2/1/3/3;
}
[data-dropdown-open=recruit] .p-nav-list .child + .dw-icon svg {
  transform: rotate3d(0, 0, 1, 45deg);
}
[data-dropdown-open=recruit] .p-nav-list .child[data-child=recruit] {
  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 {
  padding-block-start: var(--space-md);
  padding-block-end: var(--space-lg);
  padding-inline: var(--contents-inner-padding);
  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.7727272727rem + 0.2840909091vw, 1rem);
}
.l-article-header .category {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-area: 1/2/2/3;
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
}
.l-article-header .title {
  grid-area: 2/1/3/3;
  font-size: clamp(1.5rem, 0.6818181818rem + 2.2727272727vw, 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: 992px) {
  .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 {
  padding-block-start: var(--space-lg);
  padding-inline: var(--contents-inner-padding);
}
.p-pageheader .inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.p-pageheader .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
}
.p-pageheader .en {
  font-size: clamp(3rem, -0.6818181818rem + 10.2272727273vw, 7.5rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent-color);
}
.p-pageheader .jp {
  font-size: clamp(1.125rem, 0.8181818182rem + 0.8522727273vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
}
.p-pageheader .wrap {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xxs);
}
.p-pageheader .wrap .copy {
  font-size: clamp(1.25rem, 0.6363636364rem + 1.7045454545vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
}
.p-pageheader .wrap .copy br {
  display: none;
}
.p-pageheader p {
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  font-weight: 500;
}
.p-pageheader p br {
  display: none;
}
.p-pageheader .image {
  width: 100%;
  height: max(360px, 40vw);
  margin-block-start: var(--space-xs);
  border-radius: 5px;
  overflow: hidden;
}
.p-pageheader .image picture,
.p-pageheader .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-pageheader.career {
  display: flex;
  flex-direction: column-reverse;
  align-items: end;
  row-gap: var(--space-xxs);
}
.p-pageheader.career .subtitle {
  font-size: clamp(1.25rem, 0.6363636364rem + 1.7045454545vw, 2rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent-color);
}
.p-child-header {
  padding-block-start: var(--space-lg);
  padding-inline: var(--contents-inner-padding);
}
.p-child-header .inner {
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: end;
}
.p-child-header .title {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 5px;
}
.p-child-header .title .en {
  font-size: clamp(1.875rem, 1.7727272727rem + 0.2840909091vw, 2rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent-color);
}
.p-child-header .title .jp {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  font-weight: 600;
  line-height: 1.4;
}
.p-child-header .button a {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  text-decoration: none;
}
.p-slider {
  width: 100%;
  margin-block: var(--space-lg);
  padding-inline: var(--contents-inner-padding);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.p-slider-list {
  padding: 0;
  list-style: none;
}
.p-slider-list .item a {
  display: block;
  position: relative;
}
.p-slider-list .item a:hover picture,
.p-slider-list .item a:hover img {
  filter: brightness(0.9);
  transform: scale3d(1.05, 1.05, 1.05);
}
.p-slider-head {
  width: 100%;
  padding: var(--space-xxs);
  display: grid;
  grid-template-columns: 36px auto;
  grid-template-rows: repeat(2, auto);
  align-items: center;
  column-gap: 10px;
  row-gap: 3px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  line-height: 1;
  box-sizing: border-box;
}
.p-slider-head .number {
  grid-area: 1/1/3/2;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--text-color);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  color: var(--bg-color);
}
.p-slider-head .department {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bg-color);
}
.p-slider-head .area {
  font-size: 0.75rem;
  color: var(--bg-color);
}
.p-slider-image {
  border-radius: 5px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-slider-image:before, .p-slider-image:after {
  content: "";
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  opacity: 0.5;
}
.p-slider-image:before {
  background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0));
  top: 0;
  z-index: 1;
}
.p-slider-image:after {
  background: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0));
  bottom: 0;
  z-index: 2;
}
.p-slider-image picture,
.p-slider-image img {
  position: relative;
  z-index: 0;
  transform-origin: center;
  transition: var(--hover-animation-speed);
}
.p-slider-foot {
  width: 100%;
  padding: var(--space-xxs);
  display: grid;
  grid-template-columns: auto 32px;
  grid-template-rows: repeat(2, auto);
  column-gap: var(--space-xxs);
  row-gap: 5px;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  color: var(--bg-color);
  box-sizing: border-box;
}
.p-slider-foot .name {
  grid-area: 1/1/2/2;
  font-size: clamp(1.5rem, 1.0909090909rem + 1.1363636364vw, 2rem);
  font-weight: 600;
  line-height: 1;
}
.p-slider-foot .text {
  grid-area: 2/1/3/2;
  font-size: clamp(0.75rem, 0.6988636364rem + 0.1420454545vw, 0.8125rem);
  line-height: 1.4;
  text-align: start;
}
.p-slider-foot .c-icon-arrow {
  grid-area: 1/2/3/3;
}
@media screen and (min-width: 992px) {
  .p-pageheader .wrap .copy br {
    display: block;
  }
  .p-pageheader p br {
    display: block;
  }
  .p-pageheader.career {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: start;
  }
  .p-pageheader.career .subtitle {
    padding-block: var(--space-xxs);
  }
}
@media screen and (min-width: 1600px) {
  .p-child-header {
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    gap: var(--space-xxs);
  }
  .p-child-header .inner {
    max-width: none;
    margin-inline: 0;
    grid-column: 4/10;
  }
}

/* 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(--accent-color);
}
.c-icon-arrow {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: var(--space-xxs);
}
.c-icon-arrow .icon {
  width: 32px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
}
.c-icon-arrow .icon svg {
  width: 80%;
  fill: var(--accent-color);
  transition: var(--hover-animation-speed);
}
.c-icon-arrow.reverse {
  flex-direction: row-reverse;
}
.c-icon-arrow.reverse .icon {
  transform: scale(-1, 1);
}
.c-icon-arrow.solid .icon {
  background-color: var(--accent-color);
}
.c-icon-arrow.solid .icon svg {
  fill: var(--bg-color);
}
.c-icon-arrow.solid:hover .icon {
  background-color: var(--bg-color);
}
.c-icon-arrow.solid:hover .icon svg {
  fill: var(--accent-color);
}
.c-icon-arrow:hover .icon {
  background-color: var(--accent-color);
}
.c-icon-arrow:hover .icon svg {
  fill: var(--bg-color);
  transform: translateX(5px);
}
.c-button {
  width: 100%;
  min-width: 200px;
  height: clamp(48px, 5vw, 64px);
  padding-inline: clamp(30px, 3vw, 50px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 2vw, 30px);
  border: 2px solid var(--accent-color);
  border-radius: clamp(24px, 2.5vw, 32px);
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  color: var(--accent-color);
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
}
.c-button svg {
  width: 36px;
  fill: var(--accent-color);
  transition: var(--hover-animation-speed);
}
.c-button:hover {
  background-color: var(--accent-color);
  color: var(--bg-color);
}
.c-button:hover svg {
  fill: var(--bg-color);
  transform: translateX(5px);
}
.c-button.white {
  border-color: var(--bg-color);
  color: var(--bg-color);
}
.c-button.white svg {
  fill: var(--bg-color);
}
.c-button.white:hover {
  background-color: var(--bg-color);
  color: var(--accent-color);
}
.c-button.white:hover svg {
  fill: var(--accent-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-pagination {
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
}
.c-pagination a,
.c-pagination span {
  width: clamp(32px, 3vw, 40px);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  box-sizing: border-box;
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
}
.c-pagination a:hover, .c-pagination a.current,
.c-pagination span:hover,
.c-pagination span.current {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: var(--bg-color);
}
.c-pagination a:hover svg, .c-pagination a.current svg,
.c-pagination span:hover svg,
.c-pagination span.current svg {
  fill: var(--bg-color);
}
.c-pagination a.prev svg, .c-pagination a.next svg,
.c-pagination span.prev svg,
.c-pagination span.next svg {
  width: 80%;
  transform-origin: center;
  transition: var(--hover-animation-speed);
}
.c-pagination a.prev svg,
.c-pagination span.prev svg {
  transform: scale(-1, 1);
}
.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.5852272727rem + 0.2840909091vw, 0.8125rem);
}
.c-notice li:before {
  content: "※";
}

/* 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-txt-size-xxs {
  font-size: clamp(0.6875rem, 0.6363636364rem + 0.1420454545vw, 0.75rem);
}
.u-txt-size-xs {
  font-size: clamp(0.75rem, 0.6477272727rem + 0.2840909091vw, 0.875rem);
}
.u-txt-size-sm {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}
.u-txt-size-md {
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
}
.u-txt-size-lg {
  font-size: clamp(1.125rem, 0.8181818182rem + 0.8522727273vw, 1.5rem);
}
.u-txt-size-xl {
  font-size: clamp(1.5rem, 0.8863636364rem + 1.7045454545vw, 2.25rem);
  line-height: 1.6;
}
.u-txt-size-xxl {
  font-size: clamp(2rem, 1.1818181818rem + 2.2727272727vw, 3rem);
  line-height: 1.6;
}
.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);
  }
}

/* --------------------------------- */
.page-overlay {
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  opacity: 1;
  pointer-events: visible;
  transition: opacity 600ms cubic-bezier(0.65, 0, 0.35, 1);
}
.onLoadComplete .page-overlay {
  opacity: 0;
  pointer-events: none;
}

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