@charset "UTF-8";
:root {
  --color-text-primary: #333;
  --color-text-secondary: #666;
  --color-text-light: #999;
  --color-text-white: #fff;
  --color-bg-white: #fff;
  --color-bg-light: #fafafa;
  --color-bg-gray: #f5f5f5;
  --color-bg-footer: #f1f1f1;
  --color-bg-gradient-start: #e3f2fd;
  --color-bg-gradient-end: #ffffff;
  --color-overlay-dark: rgba(0, 0, 0, 0.7);
  --color-overlay-medium: rgba(0, 0, 0, 0.6);
  --color-overlay-light: rgba(0, 0, 0, 0.5);
  --color-overlay-hover: rgba(0, 0, 0, 0.8);
  --color-border-light: rgba(255, 255, 255, 0.1);
  --color-border-medium: rgba(255, 255, 255, 0.3);
  --color-shadow: rgba(0, 0, 0, 0.05);
  --color-shadow-medium: rgba(0, 0, 0, 0.1);
  --font-family-base:
    var(--font-noto-sans-jp), -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-2xl: 30px;
  --font-size-3xl: 36px;
  --font-size-4xl: 48px;
  --font-size-5xl: 60px;
  --font-size-6xl: 72px;
  --font-size-7xl: 96px;
  --font-size-8xl: 128px;
  --font-size-9xl: 144px;
  --line-height-tight: 1.3;
  --line-height-base: 1.75;
  --line-height-relaxed: 1.88;
  --line-height-loose: 2;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 20px;
  --spacing-2xl: 24px;
  --spacing-3xl: 32px;
  --spacing-4xl: 40px;
  --spacing-5xl: 48px;
  --spacing-6xl: 64px;
  --spacing-7xl: 80px;
  --spacing-8xl: 96px;
  --spacing-9xl: 112px;
  --spacing-10xl: 128px;
  --spacing-11xl: 144px;
  --spacing-12xl: 160px;
  --spacing-13xl: 176px;
  --spacing-14xl: 192px;
  --container-max-width: 1400px;
  --container-padding-desktop: 80px;
  --container-padding-tablet: 40px;
  --container-padding-mobile: 30px;
  --header-padding-y: 20px;
  --header-logo-width: 300px;
  --header-logo-height: 40px;
  --transition-opacity: opacity 0.3s;
  --transition-transform: transform 0.5s;
  --transition-background: background-color 0.3s;
  --breakpoint-mobile: 640px;
  --breakpoint-tablet: 1024px;
  --breakpoint-laptop: 1025px;
  --breakpoint-desktop: 1500px;
  --backdrop-blur: blur(10px);
  --border-radius-base: 0;
  --box-shadow-sm: 0 2px 10px var(--color-shadow);
  --box-shadow-md: 0 10px 30px var(--color-shadow-medium);
  --font-noto-sans-jp: 'Noto Sans JP', sans-serif;
  --font-quicksand: 'Quicksand', sans-serif;
  --font-roboto: 'Roboto', sans-serif;
}

body,
html {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: var(--font-noto-sans-jp), "Roboto", Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}
@media (max-width: 767px) {
  body,
  html {
    font-size: 4vw;
  }
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}
img.mr20 {
  display: inline-block;
  margin-right: 20px;
}
@media (max-width: 767px) {
  img.mr20 {
    margin-right: 4vw;
  }
}

figure {
  margin: 0;
}

address {
  font-style: normal;
}

p {
  line-height: 2;
}

a.text-link {
  color: #06b2ff;
  text-decoration: underline;
}
a.text-link:hover {
  opacity: 0.7;
}

.page-enter,
.page-leave-to {
  opacity: 0;
  transform: translateY(10px);
}

.page-enter-to,
.page-leave {
  opacity: 1;
  transform: translateY(0);
}

.page-enter-active,
.page-leave-active {
  transition: 0.36s cubic-bezier(0.59, 0.09, 0.75, 0.94);
}

:root {
  --swiper-theme-color: #ff9eb3;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin-right: 5px !important;
  margin-left: 5px !important;
}
@media (max-width: 767px) {
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin-right: 3px !important;
    margin-left: 3px !important;
  }
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #fff !important;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 2vw !important;
    height: 2vw !important;
  }
}

.swiper-pagination-bullet-active {
  background: var(--swiper-theme-color) !important;
  opacity: 0.98;
}

@media (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 12vw;
    height: 12vw;
    margin: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 8vw;
    height: 8vw;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 70px;
    height: 70px;
    margin: 0;
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;
  width: 100%;
  height: 100%;
  background-image: url("../images/staff/SliderNavigation.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  opacity: 0.9;
}

.swiper-button-prev {
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .swiper-button-prev {
    left: 8vw;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .swiper-button-prev {
    width: 10vw;
    left: 10vw;
  }
}
@media (min-width: 1000px) {
  .swiper-button-prev {
    width: 60px;
    left: 50px;
  }
}

.swiper-button-next {
  transform: translateY(-50%) !important;
}
@media (min-width: 768px) and (max-width: 999px) {
  .swiper-button-next {
    width: 10vw;
    right: 5vw;
  }
}
@media (min-width: 1000px) {
  .swiper-button-next {
    width: 60px;
    right: 20px;
  }
}
.swiper-button-next::after {
  transform: rotate(180deg);
}

.swiper-pagination {
  width: 100%;
}
.swiper-pagination .mybullet {
  font-size: 0;
}
.swiper-pagination .mybullet.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 5px;
}
.swiper-pagination .mybullet.swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background-color: #cdcdcd !important;
}

.wrap {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  position: relative;
  flex: 1;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .main {
    padding-bottom: 0;
  }
}

.l-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
.l-container-img {
  max-width: 1200px;
  margin: auto;
}

.l-section {
  margin: 60px 0;
}
.l-section-s {
  margin-bottom: 75px;
}
@media (min-width: 768px) {
  .l-section {
    margin: 120px 0;
  }
}

.row {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .row {
    display: flex;
    justify-content: space-between;
  }
  .row.reverse {
    flex-direction: row-reverse;
  }
  .row .col-1 {
    width: 100%;
  }
  .row .col-2 {
    width: 49%;
  }
  .row .col-3 {
    width: 32%;
  }
  .row .col-3-2 {
    width: 65%;
  }
  .row .col-4 {
    width: 23%;
  }
}
.row img {
  width: 100%;
}
@media (max-width: 767px) {
  .row .col-4 {
    display: inline-block;
    vertical-align: top;
    width: 48%;
    margin-bottom: 1%;
  }
  .row .col-4:nth-child(2n-1) {
    margin-right: 2%;
  }
}

@media (max-width: 767px) {
  .row {
    margin-bottom: 0;
  }
  .row .col-1,
  .row .col-2,
  .row .col-3 {
    margin-bottom: 30px;
  }
}
.headline-A {
  position: relative;
  text-align: center;
  font-size: 6vw;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.08em;
  padding-bottom: 0.35em;
  margin-bottom: 1.5em;
}
@media (min-width: 768px) {
  .headline-A {
    font-size: 48px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.08em;
    padding-bottom: 20px;
    margin-bottom: 1.5em;
  }
}
.headline-A::after {
  content: "";
  position: absolute;
  display: block;
  left: calc(50% - 15px);
  bottom: 0;
  height: 3px;
  width: 30px;
  background: #0c419a;
}
@media (min-width: 768px) {
  .headline-A::after {
    height: 5px;
    width: 50px;
    left: calc(50% - 25px);
  }
}
.headline-B {
  position: relative;
  font-size: 6.2vw;
  font-weight: 400;
  color: #333;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .headline-B {
    font-size: 24px;
  }
}
.headline-B.light-blue {
  color: #56b7ef;
}
.headline-C {
  color: #0c419a;
  letter-spacing: 0.095em;
  font-size: 18px;
  font-weight: 600;
}
.headline-D {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-size: 4.5vw;
  font-weight: 400;
  letter-spacing: 0.14em;
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .headline-D {
    font-size: 40px;
  }
}
.headline-D::before {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #000;
  width: 32%;
  height: 5px;
  transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}
.headline-D::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: currentColor;
  width: 100%;
  height: 3px;
  transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}
@media (min-width: 768px) {
  .headline-D::after {
    height: 5px;
  }
}
.headline-E {
  display: block;
  font-size: 28px;
  color: #000;
  border: 1px solid currentColor;
  width: 100%;
  text-align: center;
  line-height: 1.75;
  font-weight: 400;
}
.headline-F {
  background: #303030;
  color: #fff;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  padding: 0.75em 1em;
}
@media (max-width: 767px) {
  .headline-F {
    padding: 0.25em 1em;
  }
}
.headline-G {
  font-size: 32px;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 5px solid #5c5c5c;
}
@media (max-width: 767px) {
  .headline-G {
    font-size: 6vw;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .headline-G {
    font-size: 3.2vw;
  }
}
.headline-G .line {
  position: absolute;
  display: block;
  left: 0;
  bottom: -5px;
  width: 60px;
  height: 5px;
  background: #0041a0;
}

.c-page-hero {
  position: relative;
  width: 100%;
  height: 25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  background: none;
}
@media (min-width: 768px) {
  .c-page-hero {
    height: 230px;
  }
}
.c-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
}
.c-page-hero > * {
  position: relative;
  z-index: 1;
}

.c-page-hero__h1 {
  text-align: center;
  color: #000;
  font-weight: 400;
  display: block;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.c-page-hero__en {
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 6.2vw;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1vw;
  margin-bottom: 1vw;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .c-page-hero__en {
    font-weight: 300;
    font-size: 50px;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    padding-bottom: 10px;
    margin-bottom: 10px;
    letter-spacing: 0.14em;
  }
}

.c-page-hero__ja {
  display: block;
  font-size: 3.2vw;
  letter-spacing: normal;
}
@media (min-width: 768px) {
  .c-page-hero__ja {
    font-size: 18px;
    letter-spacing: 0.14em;
  }
}

.c-sub-navi {
  margin: 25px 0 30px;
}
@media (max-width: 767px) {
  .c-sub-navi {
    display: none;
  }
}
.c-sub-navi ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .c-sub-navi ul {
    margin-right: 20px;
  }
}
.c-sub-navi ul li {
  display: inline-block;
  position: relative;
}
.c-sub-navi ul li::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 15px;
  width: 1px;
  height: 20px;
  background: #aaa;
  transform: rotate(30deg);
}
.c-sub-navi ul li:last-child::after {
  content: none;
}
.c-sub-navi ul li a {
  color: #000;
  font-size: 15px;
  display: block;
  padding: 12px 18px;
  position: relative;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .c-sub-navi ul li a {
    font-size: 1.5vw;
    line-height: 1.5;
    padding: 12px 1.2vw;
  }
}
.c-sub-navi ul li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #0c419a;
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(3px);
}
.c-sub-navi ul li a.is-current, .c-sub-navi ul li a:hover {
  text-decoration: none;
}
.c-sub-navi ul li a.is-current::after, .c-sub-navi ul li a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.c-works-navi ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.c-works-navi ul li {
  width: 100%;
  text-align: center;
  border: 1px solid #fff;
  position: relative;
}
.c-works-navi ul li a {
  position: relative;
  color: #626262;
  display: block;
  background: #e4e4e4;
  font-size: 16px;
  padding: 14px;
  letter-spacing: 0.12em;
  transition: 0.3s ease;
  text-decoration: none;
}
@media (max-width: 767px) {
  .c-works-navi ul li a {
    -webkit-font-smoothing: antialiased;
    font-size: 3.2vw;
    padding: 16px;
  }
}
.c-works-navi ul li a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 12px;
  background: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjkiIHZpZXdCb3g9IjAgMCA2IDkiIHdpZHRoPSI2IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Im0zNzYuMjkxIDU3Ni0xLjI5MS0xLjIzNSAzLjQxNi0zLjI2My0zLjQxNi0zLjI2OCAxLjI5Mi0xLjIzNCA0LjcxIDQuNXoiIGZpbGw9IiM2MjYyNjIiIGZpbGwtcnVsZT0iZXZlbm9kZCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM3NSAtNTY3KSIvPjwvc3ZnPgo=") center/cover no-repeat;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .c-works-navi ul li a::after {
    width: 1.8vw;
    height: 2.6vw;
  }
}

.c-works-navi__is-current {
  color: #fff !important;
}
.c-works-navi__is-current::after {
  background: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjkiIHZpZXdCb3g9IjAgMCA2IDkiIHdpZHRoPSI2IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Im0zNzYuMjkxIDU3Ni0xLjI5MS0xLjIzNSAzLjQxNi0zLjI2My0zLjQxNi0zLjI2OCAxLjI5Mi0xLjIzNCA0LjcxIDQuNXoiIGZpbGw9IiNmZmYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM3NSAtNTY3KSIvPjwvc3ZnPgo=") center/cover no-repeat !important;
}

.c-section-frame {
  margin: 60px 0;
}
@media (min-width: 768px) {
  .c-section-frame {
    margin: 120px 0;
  }
}

.c-section-frame__container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.c-section-frame__headline {
  font-size: 24px;
  font-weight: 500;
  color: #0c419a;
  border-bottom: 3px solid #0c419a;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .c-section-frame__headline {
    font-size: 5vw;
  }
}

.c-more-button {
  display: block;
  background: #333;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .c-more-button {
    width: 200px;
  }
}
.c-more-button:hover {
  background: #555;
  transition: 0.1s linear;
}
.c-more-button a {
  display: block;
  color: #fff;
  padding: 3.6vw 4vw;
  text-decoration: none;
  position: relative;
  font-size: 4.2vw;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) {
  .c-more-button a {
    padding: 14px 20px;
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .c-more-button a {
    padding: 18px 20px;
    font-size: 18px;
  }
}
.c-more-button a:hover {
  cursor: pointer;
}
.c-more-button a:hover::after {
  animation: c-more-button-hover-arrow-a 0.5s cubic-bezier(0.73, 0.01, 0.77, 1) 0s;
}
.c-more-button a:hover::before {
  animation: c-more-button-hover-arrow-b 0.95s linear 0s;
  opacity: 1;
}
.c-more-button a::before {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% + 3px);
  display: block;
  width: 10px;
  height: 1px;
  background: #fff;
  transform: rotate(30deg);
  transform-origin: right;
  opacity: 1;
}
.c-more-button a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% + 3px);
  display: block;
  width: 50px;
  height: 1px;
  background: #fff;
  transform-origin: left;
}

@keyframes c-more-button-hover-arrow-a {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes c-more-button-hover-arrow-b {
  0% {
    transform: rotate(0);
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    transform: rotate(30deg);
    opacity: 1;
  }
}
.c-link-button {
  display: block;
  padding-bottom: 5px;
}
.c-link-button--white a {
  background: #fff;
  color: #000;
}
.c-link-button--white a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}
.c-link-button a {
  position: relative;
  display: block;
  text-align: center;
  background: #333;
  transition: 0.3s ease;
  color: #fff;
  padding: 30px 16px;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
}
@media (max-width: 767px) {
  .c-link-button a {
    padding: 1.5rem 1rem;
  }
}
.c-link-button a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 5px;
  width: 100%;
  background: #0041a0;
  transform: scaleX(0.15);
  transition: 0.35s cubic-bezier(0.62, 0, 0.77, 0.99);
}
@media (max-width: 767px) {
  .c-link-button a::after {
    transform: scaleX(0.3);
  }
}
.c-link-button a:hover {
  background: #404040;
  transition: 0.1s linear;
  color: #fff;
}
.c-link-button a:hover::after {
  transform: scaleX(1);
  transition: 0.5s cubic-bezier(0.62, 0, 0.77, 0.99);
}

.c-link-button__en {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.07em;
}
@media (max-width: 767px) {
  .c-link-button__en {
    font-size: 2.8vw;
    -webkit-font-smoothing: antialiased;
  }
}

.c-link-button__ja {
  display: block;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
}
@media (max-width: 767px) {
  .c-link-button__ja {
    font-size: 4.2vw;
    -webkit-font-smoothing: antialiased;
  }
}

.c-partner-table {
  table-layout: fixed;
  width: 100%;
  border: 1px solid rgba(212, 212, 212, 0.831372549);
  border-collapse: collapse;
  margin-bottom: 80px;
  color: #444;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 641px) {
  .c-partner-table {
    table-layout: auto;
  }
}
.c-partner-table th,
.c-partner-table td {
  padding: 10px 16px;
  border: 1px solid rgba(212, 212, 212, 0.831372549);
}
.c-partner-table th a,
.c-partner-table td a {
  color: #0972ce;
  text-decoration: underline;
}
.c-partner-table th a:hover,
.c-partner-table td a:hover {
  color: #0d47a1;
  text-decoration: none;
}
@media screen and (min-width: 641px) {
  .c-partner-table td:nth-child(1) {
    width: 40%;
  }
  .c-partner-table td:nth-child(2) {
    width: 40%;
  }
  .c-partner-table td:nth-child(3) {
    width: 20%;
  }
}

.c-link-section {
  position: relative;
  width: 100%;
  min-height: 30vw;
  color: #fff;
  padding: 10px 0;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .c-link-section {
    margin-bottom: 5px;
  }
}

.c-link-section__container {
  max-width: 600px;
  margin: auto;
}
@media (max-width: 767px) {
  .c-link-section__container {
    width: 80%;
    padding: 10vw 0;
  }
}
.c-link-section__container h2 {
  text-align: center;
  font-size: 4vw;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 1vw;
  border-bottom: 5px solid #fff;
  margin-bottom: 2vw;
}
@media (max-width: 767px) {
  .c-link-section__container h2 {
    font-size: 8.5vw;
    letter-spacing: 0.15em;
    border-bottom: 3px solid #fff;
  }
}

.c-link-section__text {
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.c-link-section__link-button {
  position: relative;
  display: block;
  color: #fff;
  padding: 18px 20px;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  border: 1px solid;
  max-width: 240px;
  margin: 20px auto;
}
.c-link-section__link-button span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.3s ease;
  opacity: 0;
  transform: scale(0.7);
}
@media (max-width: 767px) {
  .c-link-section__link-button {
    width: 60%;
    font-size: 4.2vw;
    -webkit-font-smoothing: antialiased;
  }
}
.c-link-section__link-button:hover {
  cursor: pointer;
}
.c-link-section__link-button:hover span {
  opacity: 1;
  transform: scale(1);
}
.c-link-section__link-button:hover::after {
  animation: c-link-section-hover-arrow-a 0.5s cubic-bezier(0.73, 0.01, 0.77, 1) 0s;
}
.c-link-section__link-button:hover::before {
  animation: c-link-section-hover-arrow-b 0.95s linear 0s;
  opacity: 1;
}
.c-link-section__link-button::before {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% + 3px);
  display: block;
  width: 10px;
  height: 1px;
  background: #fff;
  transform: rotate(30deg);
  transform-origin: right;
  opacity: 1;
}
.c-link-section__link-button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% + 3px);
  display: block;
  width: 50px;
  height: 1px;
  background: #fff;
  transform-origin: left;
}

.c-link-section__colorbar {
  position: absolute;
  bottom: -10px;
  width: 100%;
  height: 10px;
}
@media (max-width: 767px) {
  .c-link-section__colorbar {
    bottom: -5px;
    height: 5px;
  }
}
.c-link-section__colorbar:hover .c-link-section__colorbar-point {
  transform: translateX(100vw);
}

.c-link-section__colorbar-point {
  width: 30%;
  height: 100%;
  transition: 3s ease;
  transform: translateX(0);
}

@keyframes c-link-section-hover-arrow-a {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes c-link-section-hover-arrow-b {
  0% {
    transform: rotate(0);
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    transform: rotate(30deg);
    opacity: 1;
  }
}
.c-fade-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.c-fade-slider__swiper {
  width: 100%;
  height: 100%;
}

.c-fade-slider__slide img {
  width: 100%;
  object-fit: cover;
  transition: 3s ease;
  transform: scale(1);
}

.c-front-hero {
  position: relative;
  width: 100%;
  height: 100vw;
}
@media (min-width: 768px) {
  .c-front-hero {
    height: 63.65vw;
  }
}

.c-staff-index {
  margin: 30px 0;
}
@media (min-width: 768px) {
  .c-staff-index {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 60px 0 40px;
  }
}
@media (min-width: 1200px) {
  .c-staff-index {
    margin: 70px 0;
  }
}

.c-staff-index__staff {
  width: 100%;
  height: 40vw;
  position: relative;
  background: #f2f2f2;
  margin: 1%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .c-staff-index__staff {
    width: 48%;
    height: 33.2615384615vw;
    max-width: 520px;
    max-height: 376px;
  }
}

.c-staff-index__figure {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .c-staff-index__figure {
    left: auto;
    right: 0;
    width: auto;
    height: 100%;
  }
}

.c-staff-index__data {
  position: absolute;
  width: 40%;
  left: 15%;
  top: calc(50% - 60px);
}
@media (max-width: 767px) {
  .c-staff-index__data {
    width: 50%;
    left: 12%;
    top: 20%;
  }
}

.c-staff-index__join {
  display: inline-block;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  padding: 2px 12px;
  letter-spacing: 0.07em;
}
@media (max-width: 767px) {
  .c-staff-index__join {
    font-size: 3.4vw;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .c-staff-index__join {
    font-size: 13px;
  }
}

.c-staff-index__ini {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 767px) {
  .c-staff-index__ini {
    font-size: 7.8vw;
    margin-bottom: 0.1em;
  }
}

.c-staff-index__belongs {
  font-weight: 600;
  font-size: 13px;
}
@media (max-width: 767px) {
  .c-staff-index__belongs {
    font-size: 3.4vw;
  }
}
@media (min-width: 1200px) {
  .c-staff-index__belongs {
    font-size: 16px;
  }
}

.c-staff-index__colorbar {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
}

.c-staff-index__more {
  position: absolute;
  bottom: -5%;
  left: calc(50% - 100px);
}
@media (max-width: 767px) {
  .c-staff-index__more {
    bottom: -15%;
    width: 40%;
    left: 30%;
  }
}

.c-staff-detail__hero {
  position: relative;
  display: block;
}
@media (max-width: 767px) {
  .c-staff-detail__hero {
    width: 100%;
    height: 68vw;
    margin-top: 30px;
    margin-bottom: 68vw;
    background: url("../images/recruit/staff/introduction-hero-bg_sp.jpg") center bottom/100% no-repeat;
  }
}
@media (min-width: 768px) {
  .c-staff-detail__hero {
    background: url("../images/recruit/staff/introduction-hero-bg.jpg") center bottom/100% no-repeat;
    height: 48vw;
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .c-staff-detail__hero {
    background: url("../images/recruit/staff/introduction-hero-bg.jpg") center bottom/100% no-repeat;
    height: 500px;
    margin-top: 70px;
    margin-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .c-staff-detail__hero-img {
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .c-staff-detail__hero-img {
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 36%;
  }
}
@media (min-width: 1200px) {
  .c-staff-detail__hero-img {
    position: absolute;
    bottom: 0;
    left: calc(50% - 650px);
    width: 420px;
  }
}

@media (max-width: 767px) {
  .c-staff-detail__card {
    position: relative;
    top: 68vw;
    background-color: #f6f6f6;
    padding: 5vw 5vw;
  }
}
@media (min-width: 768px) {
  .c-staff-detail__card {
    position: absolute;
    left: 40%;
    top: 10vw;
    padding: 3vw 3vw;
    width: 50%;
    height: 30vw;
    background: rgba(255, 255, 255, 0.7);
  }
}
@media (min-width: 1200px) {
  .c-staff-detail__card {
    position: absolute;
    left: calc(50% - 160px);
    top: calc(50% - 152px);
    padding: 20px 25px;
    width: 600px;
    height: 297px;
    background: rgba(255, 255, 255, 0.7);
  }
}

.c-staff-detail__copy {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 600;
  display: flex;
  align-items: flex-end;
  height: 5em;
}
@media (max-width: 767px) {
  .c-staff-detail__copy {
    font-size: 5.6vw;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .c-staff-detail__copy {
    font-size: 3vw;
  }
}

.c-staff-detail__belongs {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .c-staff-detail__belongs {
    font-size: 3.6vw;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .c-staff-detail__belongs {
    font-size: 13px;
  }
}

.c-staff-detail__ini {
  font-size: 30px;
  vertical-align: middle;
}

.c-staff-detail__join {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1.75;
  margin-left: 10px;
  padding: 0 7px;
}
@media (max-width: 767px) {
  .c-staff-detail__join {
    font-size: 4vw;
    -webkit-font-smoothing: antialiased;
  }
}

.c-staff-detail__row {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .c-staff-detail__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c-staff-detail__row:nth-child(2n) {
    flex-direction: row-reverse;
  }
}

@media (max-width: 767px) {
  .c-staff-detail__col {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .c-staff-detail__col {
    margin: 10px;
    width: 50%;
  }
}
.c-staff-detail__col img {
  width: 100%;
}

.c-staff-detail__textarea {
  line-height: 2.2;
  font-size: 15px;
}

.c-staff-detail__row7 {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .c-staff-detail__row7 {
    margin-bottom: 70px;
  }
}

.c-staff-detail__headline-g {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}
@media (max-width: 767px) {
  .c-staff-detail__headline-g {
    font-size: 5vw;
  }
}

.c-staff-detail__headline-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
}

.c-staff-detail__section-schedule h2 {
  font-weight: 600;
  font-size: 30px;
  padding: 0.75em 0;
  text-align: center;
}
@media (max-width: 767px) {
  .c-staff-detail__section-schedule h2 {
    font-size: 5.2vw;
    padding: 0.5em 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .c-staff-detail__section-schedule h2 {
    font-size: 3vw;
    padding: 0.5em 0;
  }
}

.c-staff-detail__schedule {
  padding-left: 50px;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .c-staff-detail__schedule {
    padding-left: 5vw;
  }
}
.c-staff-detail__schedule table {
  border-collapse: collapse;
  width: 100%;
}

.c-staff-detail__schedule-list th,
.c-staff-detail__schedule-list td {
  padding: 20px 12px;
  vertical-align: top;
}
.c-staff-detail__schedule-list th {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  padding-left: 24px;
  white-space: nowrap;
}

.c-staff-detail__circle {
  position: absolute;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  left: -14px;
}
@media (max-width: 767px) {
  .c-staff-detail__circle {
    width: 5vw;
    height: 5vw;
    left: calc(-1px - 2.5vw);
  }
}

.c-staff-detail__ttl {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 767px) {
  .c-staff-detail__other-staff-link {
    margin-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .c-staff-detail__other-staff-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.c-staff-detail__staff {
  width: 100%;
  height: 40vw;
  position: relative;
  background: #f2f2f2;
  margin: 1%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .c-staff-detail__staff {
    width: 32%;
    height: 22.1381901529vw;
    max-width: 344px;
    max-height: 244px;
  }
}

.c-staff-detail__staff-figure {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .c-staff-detail__staff-figure {
    left: auto;
    right: 0;
    width: auto;
    height: 100%;
  }
}

.c-staff-detail__staff-data {
  position: absolute;
  width: 50%;
  left: 12%;
  top: calc(50% - 60px);
}
@media (max-width: 767px) {
  .c-staff-detail__staff-data {
    width: 50%;
    left: 12%;
    top: 20%;
  }
}

.c-staff-detail__staff-join {
  display: inline-block;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  padding: 2px 12px;
  letter-spacing: 0.07em;
}
@media (max-width: 767px) {
  .c-staff-detail__staff-join {
    font-size: 3.4vw;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .c-staff-detail__staff-join {
    font-size: 1.5vw;
  }
}

.c-staff-detail__staff-ini {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 767px) {
  .c-staff-detail__staff-ini {
    font-size: 7.8vw;
    margin-bottom: 0.1em;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .c-staff-detail__staff-ini {
    font-size: 4vw;
    margin-bottom: 3px;
  }
}

@media (max-width: 767px) {
  .c-staff-detail__staff-belongs {
    font-size: 3.4vw;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .c-staff-detail__staff-belongs {
    font-size: 1.2vw;
  }
}

.c-staff-detail__colorbar {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
}

.c-staff-detail__more {
  position: absolute;
  bottom: -10%;
  left: calc(50% - 100px);
}
@media (max-width: 767px) {
  .c-staff-detail__more {
    bottom: -15%;
    width: 40%;
    left: 30%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .c-staff-detail__more {
    width: 60%;
    left: 20%;
  }
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(255, 255, 255);
  z-index: 1000;
}
.c-header--blue {
  background: #0c419a;
  box-shadow: none;
}

.c-header__container {
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .c-header__container {
    padding: 20px 40px;
  }
}
@media (max-width: 640px) {
  .c-header__container {
    padding: 15px 20px;
  }
}

.c-header__h1 {
  margin: 0;
}
.c-header__h1 a {
  display: block;
}

.c-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-header__logo img {
  width: 300px;
  height: 40px;
}
@media (max-width: 1024px) {
  .c-header__logo img {
    width: 240px;
    height: 32px;
  }
}
@media (max-width: 640px) {
  .c-header__logo img {
    width: 180px;
    height: 24px;
  }
}

.c-header__nav {
  display: flex;
  gap: 50px;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .c-header__nav {
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .c-header__nav {
    display: none;
  }
}
.c-header__nav--blue .c-header__parent-link-list > .c-header__parent-link-item {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.c-header__nav--blue .c-header__parent-link-list > .c-header__parent-link-item:last-child {
  border-right: none;
}
.c-header__nav--blue .c-header__parent-link-list > .c-header__parent-link-item .c-header__parent-link {
  background: transparent;
}
.c-header__nav--blue .c-header__parent-link-list > .c-header__parent-link-item .c-header__parent-link .c-header__en,
.c-header__nav--blue .c-header__parent-link-list > .c-header__parent-link-item .c-header__parent-link .c-header__ja {
  color: #fff;
}
.c-header__nav--blue .c-header__parent-link-list > .c-header__parent-link-item:hover .c-header__parent-link {
  background: rgba(255, 255, 255, 0.1);
}

.c-header__parent-link-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  height: 100%;
  gap: 0;
}

.c-header__parent-link-item {
  border-right: 1px solid #666;
  height: 100%;
  position: relative;
}
.c-header__parent-link-item:last-child {
  border-right: none;
}
.c-header__parent-link-item:hover .c-header__parent-link, .c-header__parent-link-item:hover .c-header__parent-link--blue {
  background: #2595dd;
}
.c-header__parent-link-item:hover .c-header__parent-link .c-header__en,
.c-header__parent-link-item:hover .c-header__parent-link .c-header__ja, .c-header__parent-link-item:hover .c-header__parent-link--blue .c-header__en,
.c-header__parent-link-item:hover .c-header__parent-link--blue .c-header__ja {
  color: #fff;
}
.c-header__parent-link-item:hover .c-header__parent-link .c-header__en img, .c-header__parent-link-item:hover .c-header__parent-link--blue .c-header__en img {
  filter: brightness(0) invert(1);
}
.c-header__parent-link-item.is-hover .c-header__subnavi {
  display: block;
}
.c-header__parent-link-item.is-active .c-header__subnavi .c-header__subnavi-li {
  transform: translateY(0) !important;
  opacity: 1;
}

.c-header__parent-link {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: 100%;
  text-align: center;
  background: transparent;
  text-decoration: none;
  padding: 8px 20px;
  width: 160px;
  transition: background-color 0.3s;
}
@media (max-width: 1024px) {
  .c-header__parent-link {
    padding: 6px 14px;
    width: 130px;
  }
}
@media (max-width: 768px) {
  .c-header__parent-link {
    padding: 4px 10px;
    width: 110px;
  }
}
.c-header__parent-link--blue {
  background: transparent;
}
.c-header__parent-link:hover {
  text-decoration: none;
}
.c-header__parent-link span {
  display: block;
}

.c-header__en img {
  display: block;
  height: 1.1rem;
  width: 100%;
  margin-top: 5px;
}

.c-header__ja {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}
@media (max-width: 640px) {
  .c-header__ja {
    font-size: 12px;
  }
}

.c-header__subnavi {
  display: none;
  position: absolute;
  z-index: 1;
  width: 100%;
  min-width: 180px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-header__subnavi-li {
  background: rgba(0, 0, 0, 0.85);
  border-left: 0;
  border-right: 0;
  padding: 0 12px;
  transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}
.c-header__subnavi-li:nth-of-type(1) {
  transform: translateY(-50px);
}
.c-header__subnavi-li:nth-of-type(2) {
  transform: translateY(-100px);
}
.c-header__subnavi-li:nth-of-type(3) {
  transform: translateY(-150px);
}
.c-header__subnavi-li:nth-of-type(4) {
  transform: translateY(-200px);
}
.c-header__subnavi-li:nth-of-type(5) {
  transform: translateY(-250px);
}
.c-header__subnavi-li:nth-of-type(6) {
  transform: translateY(-300px);
}
.c-header__subnavi-li:nth-of-type(7) {
  transform: translateY(-350px);
}
.c-header__subnavi-li:nth-of-type(8) {
  transform: translateY(-400px);
}
.c-header__subnavi-li:nth-of-type(9) {
  transform: translateY(-450px);
}
.c-header__subnavi-li:nth-of-type(10) {
  transform: translateY(-500px);
}
.c-header__subnavi-li:nth-of-type(11) {
  transform: translateY(-550px);
}
.c-header__subnavi-li:nth-of-type(12) {
  transform: translateY(-600px);
}
.c-header__subnavi-li:nth-of-type(13) {
  transform: translateY(-650px);
}
.c-header__subnavi-li:nth-of-type(14) {
  transform: translateY(-700px);
}
.c-header__subnavi-li:nth-of-type(15) {
  transform: translateY(-750px);
}
.c-header__subnavi-li:nth-of-type(16) {
  transform: translateY(-800px);
}
.c-header__subnavi-li:nth-of-type(17) {
  transform: translateY(-850px);
}
.c-header__subnavi-li:nth-of-type(18) {
  transform: translateY(-900px);
}
.c-header__subnavi-li:nth-of-type(19) {
  transform: translateY(-950px);
}
.c-header__subnavi-li:nth-of-type(20) {
  transform: translateY(-1000px);
}
.c-header__subnavi-li:nth-of-type(21) {
  transform: translateY(-1050px);
}
.c-header__subnavi-li:nth-of-type(22) {
  transform: translateY(-1100px);
}
.c-header__subnavi-li:nth-of-type(23) {
  transform: translateY(-1150px);
}
.c-header__subnavi-li:nth-of-type(24) {
  transform: translateY(-1200px);
}
.c-header__subnavi-li:last-child a {
  border-bottom: 0;
}
.c-header__subnavi-li a {
  color: #fff;
  background: transparent;
  font-size: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #0041a0;
  position: relative;
  display: block;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .c-header__subnavi-li a {
    font-size: 1.4vw;
  }
}
.c-header__subnavi-li a:hover {
  color: #36d2ff;
}

.c-header__subnavi-ttl {
  padding-left: 16px;
}
.c-header__subnavi-ttl::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
  display: block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 8px solid #fff;
  border-bottom: 5px solid transparent;
  margin-right: auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .c-header__subnavi-ttl::before {
    border-top: 3px solid transparent;
    border-left: 4px solid #fff;
    border-bottom: 3px solid transparent;
  }
}

.c-header__sp-nav-button {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: url("../images/nav_line.svg") center/50% no-repeat, #0041a0;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 4px;
}
.c-header__sp-nav-button:focus {
  outline: none;
}
.c-header__sp-nav-button:hover {
  cursor: pointer;
}
.c-header__sp-nav-button--blue {
  background: url("../images/nav_line_blue.svg") center/50% no-repeat, #fff;
}
@media (max-width: 640px) {
  .c-header__sp-nav-button {
    width: 10vw;
    height: 10vw;
    max-width: 44px;
    max-height: 44px;
  }
}

.c-footer {
  position: relative;
  background: #f1f1f1;
  color: #333;
  padding: 64px 0 32px;
  z-index: 1;
}
@media (max-width: 640px) {
  .c-footer {
    padding: 40px 0 24px;
  }
}

.c-footer__container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  gap: 64px;
}
@media (max-width: 999px) {
  .c-footer__container {
    flex-direction: column;
    padding: 0 40px 40px;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .c-footer__container {
    padding: 0 30px 32px;
  }
}

.c-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3.6rem;
}
.c-footer__logo img {
  width: 300px;
  height: 40px;
}
@media (max-width: 640px) {
  .c-footer__logo {
    padding: 0;
    margin-bottom: 32px;
  }
}

.c-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 1024px) {
  .c-footer__nav {
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .c-footer__nav {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
  }
}

.c-footer__nav-section {
  flex: 1;
}

.c-footer__title {
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
  display: block;
}
.c-footer__title img {
  height: 1.1rem;
  width: auto;
}
@media (max-width: 640px) {
  .c-footer__title {
    margin-bottom: 16px;
  }
}

.c-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-footer__list li {
  margin-bottom: 8px;
}
.c-footer__list li:last-child {
  margin-bottom: 0;
}
.c-footer__list a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.c-footer__list a:hover {
  opacity: 1;
}
@media (max-width: 640px) {
  .c-footer__list a {
    font-size: 14px;
  }
}

.c-footer__copyright {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 80px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 12px;
  opacity: 0.6;
}
.c-footer__copyright p {
  margin: 0;
}
@media (max-width: 1024px) {
  .c-footer__copyright {
    padding: 24px 40px 0;
  }
}
@media (max-width: 640px) {
  .c-footer__copyright {
    padding: 24px 30px 0;
    justify-content: center;
    text-align: center;
  }
}

.c-sp-navi__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
}

.c-sp-navi__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: 1010ms ease;
}
.c-sp-navi__overlay.is-active {
  background: rgba(0, 0, 0, 0.9);
}

.c-sp-navi {
  position: relative;
  z-index: 2;
  background: #0041a0;
  width: 80%;
  min-height: 100%;
  margin-left: auto;
  padding: 20px 0;
  transition: 0.5s cubic-bezier(0.43, 0.01, 0.66, 1);
  transform: translateX(100%);
}
.c-sp-navi.is-active {
  transition: 0.4s cubic-bezier(0.43, 0.01, 0.66, 1);
  transform: translateX(0);
}
.c-sp-navi ul {
  list-style: none;
  padding: 10vw 8vw;
  margin: 0;
}
.c-sp-navi ul li {
  border-bottom: 1px solid #fff;
}
.c-sp-navi ul li:first-child {
  border-top: 1px solid #fff;
}
.c-sp-navi ul li a,
.c-sp-navi ul li .c-sp-navi__sublink {
  display: block;
  padding: 1em 0;
  color: #fff;
  position: relative;
  text-decoration: none;
}

.c-sp-navi__en {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Quicksand", sans-serif;
  font-size: 4.8vw;
  letter-spacing: 0.16em;
}

.c-sp-navi__ja {
  display: block;
  -webkit-font-smoothing: antialiased;
  opacity: 0.7;
  font-size: 2.8vw;
}

.c-sp-navi__sublink {
  cursor: pointer;
}
.c-sp-navi__sublink::after {
  content: "";
  position: absolute;
  top: calc(50% - 2vw);
  right: 5vw;
  width: 4vw;
  height: 4vw;
  background: url("../images/plus.svg") center/contain no-repeat;
}

.c-sp-navi-sub {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  background: #080808;
  width: 75%;
  min-height: 100%;
  margin-left: auto;
  padding: 20px 0;
  transition: 0.5s cubic-bezier(0.43, 0.01, 0.66, 1);
  transform: translateX(100%);
}
.c-sp-navi-sub.is-active {
  transition: 0.4s cubic-bezier(0.43, 0.01, 0.66, 1);
  transform: translateX(0);
}
.c-sp-navi-sub ul {
  list-style: none;
  padding: 10vw 8vw;
  margin: 0;
}
.c-sp-navi-sub ul li {
  border-bottom: 1px solid #0041a0;
}
.c-sp-navi-sub ul li:first-child {
  border-top: 1px solid #0041a0;
}
.c-sp-navi-sub ul li a {
  display: block;
  padding: 0.8em 0;
  color: #fff;
  text-decoration: none;
}
.c-sp-navi-sub ul li a::before {
  content: "";
  display: inline-block;
  border-left: 2vw solid #fff;
  border-top: 1.6vw solid transparent;
  border-bottom: 1.6vw solid transparent;
  margin-right: 2.5vw;
}
.c-sp-navi-sub ul li a .c-sp-navi__ja {
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-size: 3.8vw;
  opacity: 1;
}

.c-sp-navi__close-button {
  position: absolute;
  top: 20px;
  right: 25px;
  background: url("../images/x.svg") center no-repeat;
  width: 20px;
  height: 20px;
  border: none;
}
.c-sp-navi__close-button:focus {
  outline: none;
}
.c-sp-navi__close-button:hover {
  cursor: pointer;
}

.c-back-top {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: #26a1e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(200px);
  opacity: 0;
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 50;
}
@media (max-width: 767px) {
  .c-back-top {
    bottom: 3vh;
    right: 3vw;
    width: 10.2vw;
    height: 10.2vw;
  }
}
.c-back-top--active {
  transform: translateY(0);
  opacity: 0.75;
}
.c-back-top:hover {
  cursor: pointer;
  opacity: 0.85;
  box-shadow: 0 3px 5px rgba(120, 120, 120, 0.5);
}
.c-back-top:hover .c-back-top__arrow {
  animation: c-back-top-arrow-up 0.75s linear 0s infinite normal none running;
}

.c-back-top__arrow {
  display: block;
  background: url("../images/backtop.png") center/contain no-repeat;
  width: 50%;
  height: 50%;
}

@keyframes c-back-top-arrow-up {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-10px);
    opacity: 0;
  }
}
.headline-A.no-after::after {
  content: none;
}
.headline-A.no-after span {
  position: absolute;
  display: block;
  left: calc(50% - 25px);
  bottom: 0;
  height: 5px;
  width: 50px;
}

.imagecover {
  color: #fff;
  padding: 70px 20px;
}
@media (max-width: 767px) {
  .imagecover {
    padding: 30px 2vw;
  }
}
.imagecover h3 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin: 1.5em 0;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 767px) {
  .imagecover h3 {
    font-size: 6.4vw;
  }
}
.imagecover p {
  line-height: 2.25;
}
@media (max-width: 767px) {
  .imagecover p {
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-size: 3.8vw;
  }
}

h3.sub {
  margin: 0.75em 0;
  font-size: 23px;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 767px) {
  h3.sub {
    font-size: 4.2vw;
    margin: 1em 0;
  }
}

.work-headline {
  border: 1px solid currentColor;
  text-align: center;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .work-headline {
    padding: 1rem 0;
    font-size: 4.8vw;
    letter-spacing: 0.15vw;
    margin: 2.5em 0;
  }
}

#projects {
  background: url("../images/works/bg02.jpg") center/cover no-repeat;
  padding: 50px 20px;
}
@media (min-width: 768px) {
  #projects {
    padding: 70px 20px;
  }
}
#projects h3 {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  color: #0c419a;
  margin-top: 0;
}
@media (max-width: 767px) {
  #projects h3 {
    font-size: 6vw;
  }
}
#projects nav {
  margin: 30px 0;
}
#projects ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  #projects ul {
    display: flex;
    justify-content: space-between;
  }
}
#projects ul li {
  position: relative;
  display: flex;
  border: 1px solid #0c419a;
}
@media (max-width: 767px) {
  #projects ul li {
    margin-bottom: 25px;
  }
  #projects ul li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  #projects ul li {
    width: 48%;
  }
}
#projects ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #000;
  padding: 20px 30px 20px 10px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
  font-weight: 600;
}
@media (max-width: 767px) {
  #projects ul li a {
    font-size: 4vw;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #projects ul li a {
    font-size: 15px;
  }
}
#projects ul li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
  display: block;
  width: 7px;
  height: 12px;
  background: url("../images/arrow-black.svg") center/cover no-repeat;
}
#projects ul li a:hover {
  background: rgba(255, 255, 255, 0.95);
}

.p-home-hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--spacing-5xl);
}
@media (max-width: 1024px) {
  .p-home-hero {
    min-height: 600px;
    margin-top: 60px;
  }
}
@media (max-width: 640px) {
  .p-home-hero {
    height: auto;
    min-height: auto;
    margin-top: 10vw;
    flex-direction: column;
  }
}

.p-home-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 130%;
  z-index: 1;
  clip-path: inset(0 0 0 50%);
}
.p-home-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .p-home-hero__image {
    clip-path: inset(0 0 0 45%);
  }
}
@media (max-width: 640px) {
  .p-home-hero__image {
    position: relative;
    width: 100%;
    height: 60vw;
    min-height: 250px;
    order: 1;
    clip-path: none;
  }
}

.p-home-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
}

.p-home-hero__content {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  place-content: center;
  width: 50%;
  height: 100%;
  background: #fff;
  padding: 0 var(--container-padding-desktop);
}
@media (max-width: 1024px) {
  .p-home-hero__content {
    width: 45%;
    padding: 0 var(--container-padding-tablet);
  }
}
@media (max-width: 640px) {
  .p-home-hero__content {
    position: relative;
    width: 100%;
    height: auto;
    padding: 8vw 0 10vw;
    order: 2;
  }
}

.p-home-hero__title {
  font-family: var(--font-noto-sans-jp), sans-serif;
  font-weight: 100;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1.25;
  margin-bottom: var(--spacing-2xl);
  color: var(--color-text-primary);
}
@media (max-width: 1024px) {
  .p-home-hero__title {
    font-size: clamp(40px, 5vw, 72px);
  }
}
@media (max-width: 640px) {
  .p-home-hero__title {
    font-size: 8.5vw;
    margin-bottom: 4vw;
  }
}

.p-home-hero__subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 10em;
}
@media (max-width: 1024px) {
  .p-home-hero__subtitle {
    margin-bottom: 6em;
  }
}
@media (max-width: 640px) {
  .p-home-hero__subtitle {
    font-size: 3.8vw;
    margin-bottom: 0;
  }
}

.p-home-gradient-decoration {
  position: absolute;
  top: 600px;
  right: 0;
  width: 100px;
  height: 730px;
  background: radial-gradient(circle at center, #fff 0%, #7cc6ed 100%);
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 1024px) {
  .p-home-gradient-decoration {
    top: 500px;
    width: 80px;
    height: 500px;
  }
}
@media (max-width: 640px) {
  .p-home-gradient-decoration {
    display: none;
  }
}

.p-home-vision {
  position: relative;
  z-index: 1;
  padding: var(--spacing-6xl) 0;
  background: var(--color-bg-light);
}
@media (max-width: 1024px) {
  .p-home-vision {
    padding: var(--spacing-5xl) 0;
  }
}
@media (max-width: 640px) {
  .p-home-vision {
    padding: 8vw 0;
  }
}

.p-home-vision__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1024px) {
  .p-home-vision__container {
    padding: 0 var(--container-padding-tablet);
  }
}
@media (max-width: 640px) {
  .p-home-vision__container {
    display: flex;
    flex-direction: column;
    padding: 0 6vw;
    gap: 6vw;
  }
}

.p-home-vision__image {
  position: absolute;
  top: -260px;
  z-index: 2;
  max-width: 720px;
}
.p-home-vision__image img {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .p-home-vision__image {
    top: -180px;
    max-width: 55%;
  }
}
@media (max-width: 640px) {
  .p-home-vision__image {
    position: relative;
    top: 0;
    max-width: 80%;
    order: 1;
  }
}

.p-home-vision__overlay {
  position: absolute;
  bottom: var(--spacing-3xl);
  left: var(--spacing-3xl);
  right: var(--spacing-3xl);
  padding: var(--spacing-2xl);
  color: var(--color-text-white);
  width: 65%;
}
@media (max-width: 1024px) {
  .p-home-vision__overlay {
    bottom: var(--spacing-2xl);
    left: var(--spacing-2xl);
    width: 70%;
    padding: var(--spacing-lg);
  }
}
@media (max-width: 640px) {
  .p-home-vision__overlay {
    bottom: 4vw;
    left: 4vw;
    width: 75%;
    padding: 3vw;
  }
  .p-home-vision__overlay img {
    width: 100%;
    height: auto;
  }
}

.p-home-vision__content {
  position: relative;
  z-index: 3;
  left: 50%;
  width: 50%;
  display: grid;
  place-content: center;
  padding: 0 50px;
}
@media (max-width: 1024px) {
  .p-home-vision__content {
    left: 45%;
    width: 55%;
    padding: 0 30px;
  }
}
@media (max-width: 640px) {
  .p-home-vision__content {
    position: relative;
    left: 0;
    width: 100%;
    padding: 0;
    order: 2;
  }
}

.p-home-vision__text {
  display: grid;
  width: fit-content;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
}
@media (max-width: 1024px) {
  .p-home-vision__text {
    font-size: clamp(14px, 1.8vw, 18px);
  }
}
@media (max-width: 640px) {
  .p-home-vision__text {
    font-size: 3.8vw;
    width: 100%;
    line-height: 2;
  }
}

.p-home-network {
  position: relative;
  z-index: 1;
  background: #fff;
  min-height: 800px;
}
@media (max-width: 1024px) {
  .p-home-network {
    min-height: 600px;
  }
}
@media (max-width: 640px) {
  .p-home-network {
    min-height: auto;
    padding: 8vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.p-home-gradbox02 {
  position: absolute;
  top: 1460px;
  left: 0;
  width: 30%;
  z-index: 2;
  mix-blend-mode: darken;
}
@media (max-width: 1024px) {
  .p-home-gradbox02 {
    top: 1100px;
    width: 50%;
  }
}
@media (max-width: 640px) {
  .p-home-gradbox02 {
    display: none;
  }
}

.p-home-network__map {
  position: absolute;
  top: 0;
  left: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-4xl);
  z-index: 2;
}
.p-home-network__map img {
  width: 100%;
  height: auto;
  aspect-ratio: 998/716;
  object-fit: contain;
  max-width: 800px;
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .p-home-network__map {
    left: 5%;
    padding: var(--spacing-3xl);
  }
  .p-home-network__map img {
    max-width: 600px;
  }
}
@media (max-width: 640px) {
  .p-home-network__map {
    position: relative;
    left: 0;
    padding: 4vw 6vw;
    width: 100%;
  }
  .p-home-network__map img {
    max-width: 100%;
    opacity: 0.6;
    position: absolute;
  }
}

.p-home-network__images {
  position: relative;
}
@media (max-width: 640px) {
  .p-home-network__images {
    display: flex;
    gap: 4vw;
    padding: 0 6vw;
    width: 100%;
    flex-direction: row-reverse;
  }
}

.p-home-network__image {
  position: absolute;
  width: 300px;
}
.p-home-network__image img {
  width: 100%;
  height: auto;
  box-shadow: var(--box-shadow-md);
}
@media (max-width: 1024px) {
  .p-home-network__image {
    width: 220px;
  }
}
@media (max-width: 640px) {
  .p-home-network__image {
    position: relative;
    width: calc(50% - 2vw);
    top: auto !important;
    left: auto !important;
  }
}

.p-home-network__image--1 {
  top: 48px;
  left: calc(50% + 300px);
}
@media (max-width: 1024px) {
  .p-home-network__image--1 {
    left: calc(50% + 180px);
  }
}
@media (max-width: 640px) {
  .p-home-network__image--1 {
    margin-top: -4vw;
  }
}

.p-home-network__image--2 {
  top: 180px;
  left: calc(50% - 50px);
}
@media (max-width: 1024px) {
  .p-home-network__image--2 {
    left: calc(50% - 80px);
  }
}
@media (max-width: 640px) {
  .p-home-network__image--2 {
    margin-top: 8vw;
  }
}

.p-home-about {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
  height: 100%;
  aspect-ratio: 2/1;
  margin-bottom: -20%;
}
.p-home-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 80%;
  background: rgb(255, 255, 255);
  user-select: none;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .p-home-about {
    max-width: 90%;
    margin-bottom: -15%;
  }
}
@media (max-width: 640px) {
  .p-home-about {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 15vw;
    padding: 0 0 10vw;
  }
  .p-home-about::before {
    height: 100%;
  }
}

.p-home-about__title {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 640px) {
  .p-home-about__title {
    aspect-ratio: 2/1;
  }
}

.p-home-about__title-title {
  position: relative;
  display: grid;
  place-content: center;
  place-items: center;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media (max-width: 640px) {
  .p-home-about__title-title img {
    width: 30vw;
    height: auto;
  }
}

.p-home-about__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.p-home-about__content {
  position: relative;
  background: rgb(35, 35, 35);
  z-index: 2;
}
@media (max-width: 640px) {
  .p-home-about__content {
    padding: 8vw 0;
  }
}

.p-home-about__list-wrapper {
  display: grid;
  place-content: center;
  place-items: center;
  width: 100%;
  height: 100%;
}

.p-home-about__list {
  list-style: none;
  padding: 0;
}

.p-home-about__item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.p-home-about__item a {
  color: #fff;
  font-weight: 100;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.8;
  text-decoration: none;
  padding: 10px 1.5rem;
  border-radius: 5px;
}
.p-home-about__item a:hover {
  opacity: 0.6;
}
@media (max-width: 640px) {
  .p-home-about__item a {
    font-size: 4vw;
    padding: 2vw 4vw;
  }
}
@media (max-width: 640px) {
  .p-home-about__item {
    padding-bottom: 2vw;
    margin-bottom: 2vw;
  }
}

.p-home-works {
  position: relative;
  padding: 500px 0 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .p-home-works {
    padding: 350px 0 0;
  }
}
@media (max-width: 640px) {
  .p-home-works {
    padding: 10vw 0 0;
  }
}

.p-home-works__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.p-home-works__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(255, 255, 255, 0.7) 0%, rgba(38, 161, 225, 0.7) 100%);
  z-index: 1;
}
.p-home-works__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-home-works__container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding-desktop);
}
@media (max-width: 1024px) {
  .p-home-works__container {
    padding: 0 var(--container-padding-tablet);
  }
}
@media (max-width: 640px) {
  .p-home-works__container {
    padding: 0 var(--container-padding-mobile);
  }
}

.p-home-works__title {
  display: grid;
  place-content: center;
  height: 100%;
  font-size: var(--font-size-9xl);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-white);
}
.p-home-works__title img {
  width: auto;
  height: auto;
}
@media (max-width: 1024px) {
  .p-home-works__title {
    font-size: var(--font-size-8xl);
  }
  .p-home-works__title img {
    width: 250px;
  }
}
@media (max-width: 640px) {
  .p-home-works__title {
    font-size: var(--font-size-7xl);
  }
  .p-home-works__title img {
    width: 50vw;
    max-width: 200px;
  }
}

.p-home-works__subtitle {
  font-size: var(--font-size-lg);
  text-align: center;
  margin-bottom: var(--spacing-5xl);
  color: var(--color-text-white);
  margin-top: 0;
}
@media (max-width: 640px) {
  .p-home-works__subtitle {
    font-size: 3.5vw;
    margin-bottom: 6vw;
  }
}

.p-home-works__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
@media (max-width: 1024px) {
  .p-home-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .p-home-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-home-works__link {
  display: block;
  cursor: pointer;
  text-decoration: none;
}
.p-home-works__link:hover {
  opacity: 1;
}

.p-home-works__item {
  position: relative;
}

.p-home-works__item-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.p-home-works__item-image:hover img {
  transform: scale(1.05);
}
.p-home-works__item-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: var(--transition-transform);
}

.p-home-works__overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgb(35, 35, 35);
  color: var(--color-text-white);
  padding: var(--spacing-md);
}

.p-home-works__item-title {
  margin: 0;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 640px) {
  .p-home-works__item-title {
    font-size: 4vw;
  }
}

.p-home-recruitment {
  position: relative;
  z-index: 1;
  padding: var(--spacing-14xl) 0;
  background: var(--color-bg-gray);
}
@media (max-width: 1024px) {
  .p-home-recruitment {
    padding: var(--spacing-12xl) 0;
  }
}
@media (max-width: 640px) {
  .p-home-recruitment {
    padding: 12vw 0;
  }
}

.p-home-recruitment__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding-desktop);
}
@media (max-width: 1024px) {
  .p-home-recruitment__container {
    padding: 0 var(--container-padding-tablet);
  }
}
@media (max-width: 640px) {
  .p-home-recruitment__container {
    padding: 0 var(--container-padding-mobile);
  }
}

.p-home-recruitment__title {
  display: grid;
  place-content: center;
  margin-bottom: var(--spacing-6xl);
}
.p-home-recruitment__title img {
  width: auto;
  height: auto;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .p-home-recruitment__title {
    margin-bottom: var(--spacing-5xl);
  }
  .p-home-recruitment__title img {
    width: 500px;
  }
}
@media (max-width: 640px) {
  .p-home-recruitment__title {
    margin-bottom: 8vw;
  }
  .p-home-recruitment__title img {
    width: 80vw;
    max-width: 320px;
  }
}

.p-home-recruitment__grid {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 1024px) {
  .p-home-recruitment__grid {
    gap: 8px;
  }
}
@media (max-width: 640px) {
  .p-home-recruitment__grid {
    display: flex;
    align-items: center;
    gap: 4vw;
  }
}
.p-home-recruitment__grid:has(.p-home-recruitment__link:hover) .p-home-recruitment__link:not(:hover) .p-home-recruitment__card img {
  filter: brightness(0.5);
}

.p-home-recruitment__link {
  text-decoration: none;
}
.p-home-recruitment__link .p-home-recruitment__card img {
  transition: var(--transition-transform), filter 0.3s ease;
}
@media (max-width: 1024px) {
  .p-home-recruitment__link {
    width: calc(50% - 4px);
  }
}
@media (max-width: 640px) {
  .p-home-recruitment__link {
    width: 100%;
  }
}

.p-home-recruitment__card {
  position: relative;
  aspect-ratio: 800/780;
  overflow: hidden;
  display: block;
  cursor: pointer;
  max-width: 400px;
}
.p-home-recruitment__card img {
  transition: var(--transition-transform);
  width: 100%;
  height: auto;
}
.p-home-recruitment__card:hover img {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .p-home-recruitment__card {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .p-home-recruitment__card {
    max-width: 100%;
    width: 100%;
  }
}

.p-home-recruitment__overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: black;
  color: var(--color-text-white);
  transition: var(--transition-background);
  padding: var(--spacing-2xl);
}
@media (max-width: 640px) {
  .p-home-recruitment__overlay {
    padding: 3vw;
  }
}

.p-home-recruitment__card-en {
  margin: 0;
  text-align: center;
}

.p-home-recruitment__card-en-img {
  height: 2rem;
  width: auto;
  aspect-ratio: auto;
}
@media (max-width: 1024px) {
  .p-home-recruitment__card-en-img {
    height: 1.6rem;
  }
}
@media (max-width: 768px) {
  .p-home-recruitment__card-en-img {
    height: 2.5vw;
  }
}
@media (max-width: 640px) {
  .p-home-recruitment__card-en-img {
    height: 4vw;
  }
}

.p-home-recruitment__card-ja {
  font-size: 1rem;
  margin: 0.5em 0 0;
  opacity: 0.9;
  line-height: 1;
}
@media (max-width: 1024px) {
  .p-home-recruitment__card-ja {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .p-home-recruitment__card-ja {
    font-size: 1.8vw;
  }
}
@media (max-width: 640px) {
  .p-home-recruitment__card-ja {
    font-size: 2.8vw;
  }
}

.p-about-index {
  max-width: 1100px;
  margin: 30px auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .p-about-index {
    padding: 0 20px;
  }
}
@media (min-width: 1200px) {
  .p-about-index {
    margin: 120px auto 70px;
  }
}

@media (max-width: 767px) {
  .p-about-index__banner-wrapper {
    padding: 0 5%;
  }
}

.p-about-index__banner {
  position: relative;
  font-size: 0;
  margin-bottom: 15px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
@media (max-width: 767px) {
  .p-about-index__banner {
    display: flex;
    align-items: center;
  }
}
.p-about-index__banner:hover img {
  transform: scale(1.05);
  cursor: pointer;
}
@media (min-width: 768px) {
  .p-about-index__banner {
    display: inline-block;
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .p-about-index__banner:first-child {
    width: 100%;
  }
  .p-about-index__banner:nth-child(2n) {
    margin-right: 20px;
  }
}
.p-about-index__banner img {
  position: relative;
  z-index: 1;
  transform: scale(1);
  transition: 0.75s ease;
  width: 100%;
  height: auto;
}

.p-about-index__bnr-title {
  position: absolute;
  left: 10%;
  z-index: 3;
  color: #fff;
  padding-left: 15vw;
  margin: 0;
}
@media (min-width: 768px) {
  .p-about-index__bnr-title {
    top: calc(50% - 30px);
    padding-left: 70px;
  }
}
@media (min-width: 1200px) {
  .p-about-index__bnr-title {
    top: calc(50% - 30px);
    left: 80px;
    padding-left: 70px;
  }
}
.p-about-index__bnr-title:hover {
  cursor: pointer;
}
.p-about-index__bnr-title::before {
  content: "";
  position: absolute;
  left: 0;
  width: 50px;
  height: 50px;
  background: url("../images/circle-arrow.svg") center/contain no-repeat;
}
@media (max-width: 767px) {
  .p-about-index__bnr-title::before {
    width: 10vw;
    height: 10vw;
  }
}

.p-about-index__en {
  display: block;
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .p-about-index__en {
    -webkit-font-smoothing: antialiased;
    font-size: 4.8vw;
    margin-bottom: 0;
  }
}

.p-about-index__ja {
  display: block;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .p-about-index__ja {
    -webkit-font-smoothing: antialiased;
    font-size: 3.6vw;
    margin-bottom: 0;
  }
}

.p-about-message__top-image {
  position: relative;
  width: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  .p-about-message__top-image {
    margin-top: 50px;
  }
}
.p-about-message__top-image img {
  width: 100%;
  height: auto;
}

.p-about-message__namecard {
  background: rgba(12, 64, 154, 0.9);
  position: absolute;
  right: 30px;
  bottom: -24px;
  color: #fff;
  font-size: 28px;
  padding: 10px 26px;
}
@media (max-width: 767px) {
  .p-about-message__namecard {
    -webkit-font-smoothing: antialiased;
    font-size: 4vw;
    padding: 1vw 2.5vw;
    bottom: -2vw;
    right: 3vw;
  }
}
.p-about-message__namecard span {
  vertical-align: middle;
  display: inline-block;
}
.p-about-message__namecard span:first-child {
  margin-right: 10px;
}

.p-about-message__small {
  font-size: 16px;
}
@media (max-width: 767px) {
  .p-about-message__small {
    font-size: 2.6vw;
  }
}

.p-about-message__box-flex {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-about-message__box-flex {
    gap: 2rem;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .p-about-message__box-flex {
    flex-direction: row-reverse;
    gap: 2rem;
  }
}

.p-about-message__image {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-about-message__image {
    width: 300px;
    flex-shrink: 0;
  }
}
.p-about-message__image img {
  width: 100%;
  height: auto;
}

.p-about-message__sign {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-end;
}

.p-about-message__date {
  margin-bottom: 20px;
}

.p-about-message__name {
  display: block;
}
.p-about-message__name img {
  display: inline-block;
  width: 130px;
  vertical-align: baseline;
  margin-left: 16px;
}

.p-about-philosophy__section {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .p-about-philosophy__section {
    margin-top: 50px 0;
  }
}

.p-about-profile__table-a {
  width: 100%;
  border-collapse: collapse;
}
@media (min-width: 768px) {
  .p-about-profile__table-a {
    width: 50%;
  }
}
.p-about-profile__table-a tr {
  border-bottom: 2px solid #dedede;
}
.p-about-profile__table-a tr:first-child {
  border-top: 2px solid #dedede;
}
.p-about-profile__table-a th,
.p-about-profile__table-a td {
  padding: 14px 24px;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .p-about-profile__table-a th,
  .p-about-profile__table-a td {
    padding: 0.5rem 1rem;
  }
}
.p-about-profile__table-a th {
  font-weight: 400;
  width: 25%;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 768px) {
  .p-about-profile__table-b {
    display: flex;
    justify-content: center;
  }
}
.p-about-profile__table-b tbody {
  display: table;
  width: 100%;
}
@media (min-width: 768px) {
  .p-about-profile__table-b tbody {
    width: 50%;
  }
}
.p-about-profile__table-b tbody {
  table-layout: fixed;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .p-about-profile__table-b tbody:first-child tr:last-child {
    border-bottom: 0;
  }
}
@media (min-width: 768px) {
  .p-about-profile__table-b tbody:first-child tr {
    border-left: 2px solid #dedede;
    border-right: 2px solid #dedede;
  }
}
@media (min-width: 768px) {
  .p-about-profile__table-b tbody:last-child tr {
    border-right: 2px solid #dedede;
  }
}
.p-about-profile__table-b tr {
  border-bottom: 2px solid #dedede;
}
.p-about-profile__table-b tr:first-child {
  border-top: 2px solid #dedede;
}
.p-about-profile__table-b th,
.p-about-profile__table-b td {
  padding: 14px 24px;
  line-height: 1.75;
}
.p-about-profile__table-b th {
  font-weight: 400;
  width: 70%;
  text-align: left;
  vertical-align: top;
}
.p-about-profile__table-b td {
  color: #0c419a;
  font-weight: 700;
  text-align: right;
}

.p-about-profile__img {
  margin: 0 20px;
  display: block;
  width: 50%;
}
.p-about-profile__img img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .p-about-profile__img {
    margin: 20px 0;
    width: 100%;
  }
}

.p-about-profile__d-flex {
  display: flex;
}
@media (max-width: 767px) {
  .p-about-profile__d-flex {
    display: block;
  }
}

@media (min-width: 768px) {
  .p-about-profile__customer-list {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .p-about-profile__customer-list ul {
    padding-left: 1.5rem;
    margin: 0;
  }
}
.p-about-profile__customer-list ul li {
  line-height: 2;
}
@media (min-width: 768px) {
  .p-about-profile__customer-list ul li {
    line-height: 1.75;
  }
}

.p-about-profile__section-last {
  margin-bottom: 0;
}

.p-about-profile__pdf-link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: fit-content;
  margin: 3rem auto;
  color: #333;
  border: 2px solid currentColor;
  line-height: 0;
  padding: 1rem 2.5rem;
  text-decoration: none;
}
.p-about-profile__pdf-link-button:hover {
  opacity: 0.7;
}

.p-about-profile__align-right {
  text-align: right;
}

.p-about-profile__text-small {
  font-size: 14px;
}

.p-about-history__section {
  margin-top: 60px;
}

.p-about-history__headline {
  background: url("../images/about/history-section-bg.jpg") center/cover no-repeat;
  color: #fff;
  padding: 30px 0;
  margin-top: 60px;
}
.p-about-history__headline h2 {
  font-weight: 600;
  margin-bottom: 0.95em;
}
.p-about-history__headline p {
  font-size: 14px;
}

.p-about-history__table {
  border-collapse: collapse;
  width: 100%;
  margin: 70px 0;
}
@media (max-width: 767px) {
  .p-about-history__table {
    display: block;
    margin: 40px 0 70px;
  }
}
.p-about-history__table tr {
  border-bottom: 2px solid #dedede;
}
@media (max-width: 767px) {
  .p-about-history__table tr {
    display: block;
  }
}
.p-about-history__table tr:nth-child(odd) {
  background: #f7f7f7;
}
.p-about-history__table tr:first-child {
  border-top: 2px solid #dedede;
}
.p-about-history__table th,
.p-about-history__table td {
  padding: 14px 24px;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .p-about-history__table th,
  .p-about-history__table td {
    display: block;
    padding: 10px 4vw;
  }
}
.p-about-history__table th {
  color: #0c419a;
  font-weight: 400;
  width: 25%;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 767px) {
  .p-about-history__table th {
    width: 100%;
    padding-bottom: 0;
  }
}
.p-about-history__table .u-mt10 {
  margin-top: 10px;
}
.p-about-history__table .mr20 {
  margin-right: 20px;
}
.p-about-history__table td img {
  max-width: 100%;
  height: auto;
}

.p-about-chart__section {
  text-align: center;
  padding: 50px 1vw;
}

.p-about-chart__content img {
  max-width: 100%;
  height: auto;
}

.p-about-quality__section {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .p-about-quality__section {
    margin-bottom: 0px;
  }
}

.p-about-quality__h3 {
  color: #0c419a;
  font-size: 22px;
  text-align: center;
  font-weight: 500;
}

.p-about-quality__h3--text-left {
  color: #0c419a;
  font-size: 22px;
  text-align: left;
  font-weight: 500;
}

.p-about-quality__h4 {
  color: #0c419a;
  font-size: 18px;
  margin: 1.5rem 0;
  font-weight: 500;
}

.p-about-quality__border {
  border: 1px solid #bebebe;
  padding: 20px 30px 50px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-about-quality__border {
    margin-bottom: 50px;
  }
}

.p-about-quality__data-list {
  margin-bottom: 50px;
}
.p-about-quality__data-list dt {
  display: inline-block;
  padding: 4px 18px;
  border: 1px solid #0c419a;
  vertical-align: top;
  color: #0c419a;
  font-weight: 600;
}
.p-about-quality__data-list dd {
  display: inline-block;
  padding: 5px 10px;
  vertical-align: top;
  margin: 0;
}
@media (min-width: 768px) {
  .p-about-quality__data-list dd {
    margin-left: 20px;
  }
}

.p-about-quality__ol {
  padding-left: 20px;
}
.p-about-quality__ol li {
  margin-bottom: 0.7rem;
}

.p-about-quality__ul {
  padding-left: 30px;
  margin: 0;
}
.p-about-quality__ul li {
  margin-bottom: 0.7rem;
}

.p-about-quality__center-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .p-about-quality__row {
    display: flex;
  }
}

.p-about-quality__frame {
  border-top: 1px solid #0c419a;
}

.p-about-quality__col2 {
  margin: 20px 0;
  padding: 0 2%;
}
@media (min-width: 768px) {
  .p-about-quality__col2:first-child {
    border-right: 1px solid #bebebe;
  }
}
@media (min-width: 768px) {
  .p-about-quality__col2 {
    width: 50%;
  }
}

.p-about-quality__text {
  line-height: 1.8;
}

.p-about-access__h2 {
  color: #0c419a;
  font-size: 24px;
  font-weight: 400;
}

.p-about-access__telnum {
  color: #000;
}

.p-about-access__section address {
  font-style: normal;
  line-height: 1.8;
}

.p-about-access__layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .p-about-access__layout {
    flex-direction: column;
    gap: 24px;
  }
}

.p-about-access__info {
  flex: 1;
}
@media (max-width: 767px) {
  .p-about-access__info {
    flex: none;
  }
}

.p-about-access__gmap {
  flex: 1;
  min-height: 400px;
}
@media (max-width: 767px) {
  .p-about-access__gmap {
    flex: none;
    min-height: 280px;
  }
}
.p-about-access__gmap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}
@media (max-width: 767px) {
  .p-about-access__gmap iframe {
    min-height: 280px;
  }
}

.p-about-access__access {
  display: flex;
  gap: 16px;
  margin-top: 1.2rem;
}
@media screen and (max-width: 640px) {
  .p-about-access__access {
    flex-direction: column;
  }
}

.p-about-access__access-title {
  font-weight: 700;
}

.p-about-access__inquiry {
  margin-top: 40px;
  margin-bottom: 16px;
}

.p-about-access__inquiry-text {
  margin-top: 8px;
  line-height: 1.8;
}

.p-about-access__external-link-button {
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .p-about-access__external-link-button {
    margin-top: 30px;
    text-align: left;
  }
}
.p-about-access__external-link-button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 2px solid #4a9eff;
  background: #fff;
  color: #0c419a;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .p-about-access__external-link-button a {
    padding: 14px 48px;
    font-size: 16px;
    width: fit-content;
    margin: 0;
  }
}
.p-about-access__external-link-button a:hover {
  background: #f0f8ff;
  border-color: #0066cc;
}

.p-about-access__link-text {
  margin-right: 8px;
  font-weight: 700;
}

.p-about-access__link-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 6px;
  vertical-align: middle;
  position: absolute;
  right: 5px;
  bottom: 5px;
}

.p-works-index__wide {
  max-width: 1280px;
}

.p-works-index__container {
  padding: 30px 20px 70px;
  background: url("../images/works/works_top_bg.jpg") center/cover no-repeat;
}
@media (max-width: 767px) {
  .p-works-index__container {
    padding: 30px 0;
  }
}

.p-works-index__text-area {
  margin: 30px auto;
  width: 90%;
  max-width: 820px;
}
@media (min-width: 768px) {
  .p-works-index__text-area {
    padding: 30px 0;
  }
}
.p-works-index__text-area p {
  line-height: 2;
}
@media (min-width: 768px) {
  .p-works-index__text-area p {
    font-size: 15px;
    line-height: 2.5;
  }
}

@media (max-width: 767px) {
  .p-works-index__col3 {
    margin-bottom: 30px;
    position: relative;
  }
}
@media (min-width: 768px) {
  .p-works-index__col3 {
    width: 30%;
  }
}
.p-works-index__col3 picture {
  display: block;
}
.p-works-index__col3 picture img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .p-works-index__sl:nth-child(2) {
    margin-top: 60px;
  }
}

.p-works-index__link-ttl {
  margin: 15px 0;
}
@media (max-width: 767px) {
  .p-works-index__link-ttl {
    margin: 3px 0;
  }
}

.p-works-index__link-ttl-s {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
}

.p-works-index__link-ttl-l {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.14em;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 767px) {
  .p-works-index__link-ttl-l {
    font-size: 7.5vw;
    font-weight: 600;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .p-works-index__link-ttl-l {
    font-size: 36px;
    font-weight: 600;
  }
}

@media (max-width: 767px) {
  .p-works-index__more-button-wrapper {
    width: 40vw;
    margin-left: auto;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.p-works-index__link-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: url("../images/works/selector_bg_sp.jpg") center/cover no-repeat;
}
@media (min-width: 768px) {
  .p-works-index__link-wrapper {
    background: url("../images/works/selector_bg.jpg") center/cover no-repeat;
    height: 180px;
  }
}
.p-works-index__link-wrapper ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 767px) {
  .p-works-index__link-wrapper ul {
    padding: 30px 0;
  }
}
.p-works-index__link-wrapper ul li {
  position: relative;
  display: block;
  width: 30%;
  margin: 0 1%;
}
@media (max-width: 767px) {
  .p-works-index__link-wrapper ul li {
    width: 80%;
    margin: 30px auto;
  }
}

.p-works-detail__section {
  margin: 60px 0;
}
@media (max-width: 767px) {
  .p-works-detail__section {
    margin: 30px 0;
  }
}

.p-works-detail__headline-a-no-after {
  position: relative;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #0c419a;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .p-works-detail__headline-a-no-after {
    font-size: 6.4vw;
  }
}
.p-works-detail__headline-a-no-after span {
  position: absolute;
  display: block;
  left: calc(50% - 25px);
  bottom: 0;
  height: 5px;
  width: 50px;
}

.p-works-detail__imagecover {
  color: #fff;
  padding: 70px 20px;
}
@media (max-width: 767px) {
  .p-works-detail__imagecover {
    padding: 30px 2vw;
  }
}
.p-works-detail__imagecover h3 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin: 1.5em 0;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 767px) {
  .p-works-detail__imagecover h3 {
    font-size: 6.4vw;
  }
}
.p-works-detail__imagecover p {
  line-height: 2.25;
}
@media (max-width: 767px) {
  .p-works-detail__imagecover p {
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-size: 3.8vw;
  }
}

.p-works-detail__imagecover--bg01 {
  background: url("../images/works/works01_coverbg.jpg") center/cover no-repeat;
}

.p-works-detail__imagecover--bg02 {
  background: url("../images/works/works02_coverbg.jpg") center/cover no-repeat;
}

.p-works-detail__imagecover--bg03 {
  background: url("../images/works/works03_coverbg.jpg") center/cover no-repeat;
}

.p-works-detail__sub {
  margin: 0.75em 0;
  font-size: 23px;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 767px) {
  .p-works-detail__sub {
    font-size: 4.2vw;
    margin: 1em 0;
  }
}

.p-works-detail__work-headline {
  border: 1px solid currentColor;
  text-align: center;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 1.5em;
  padding: 1rem 0;
  font-size: 20px;
}
@media (max-width: 767px) {
  .p-works-detail__work-headline {
    padding: 1rem 0;
    font-size: 4.8vw;
    letter-spacing: 0.15vw;
    margin: 2.5em 0;
  }
}

.p-works-detail__headline-d {
  display: block;
  letter-spacing: normal;
  margin: 0.25em 0;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .p-works-detail__headline-d {
    font-size: 7.4vw;
  }
}

.p-works-detail__num {
  display: inline-block;
  margin-right: 0.5rem;
  font-weight: 700;
}

.p-works-detail__content {
  font-weight: 600;
}

.p-works-detail__text {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .p-works-detail__row {
    margin-bottom: 30px;
  }
}
.p-works-detail__row h4 {
  margin: 0.5em 0;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 600;
}

.p-works-detail__col1 {
  margin-top: 30px;
}
.p-works-detail__col1 img {
  width: 100%;
  height: auto;
}

.p-works-detail__img img {
  width: 100%;
  height: auto;
}

.p-works-detail__caption {
  font-size: 14px;
  margin-top: 0.5em;
}

.p-works-detail__projects {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: url("../images/works/bg02.jpg") center/cover no-repeat;
  padding: 50px 20px;
}
@media (min-width: 768px) {
  .p-works-detail__projects {
    padding: 70px 20px;
  }
}
.p-works-detail__projects h3 {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  color: #0c419a;
  margin-top: 0;
}
@media (max-width: 767px) {
  .p-works-detail__projects h3 {
    font-size: 6vw;
  }
}
.p-works-detail__projects ul {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
@media (min-width: 768px) {
  .p-works-detail__projects ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.p-works-detail__projects ul li {
  position: relative;
  display: flex;
  border: 1px solid #0c419a;
}
@media (max-width: 767px) {
  .p-works-detail__projects ul li {
    margin-bottom: 25px;
  }
  .p-works-detail__projects ul li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .p-works-detail__projects ul li {
    width: 31%;
  }
}
.p-works-detail__projects ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #000;
  padding: 20px 30px 20px 10px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
  font-weight: 600;
}
@media (max-width: 767px) {
  .p-works-detail__projects ul li a {
    font-size: 4vw;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .p-works-detail__projects ul li a {
    font-size: 13px;
  }
}
.p-works-detail__projects ul li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
  display: block;
  width: 7px;
  height: 12px;
  background: url("../images/arrow-black.svg") center/cover no-repeat;
}
.p-works-detail__projects ul li a:hover {
  background: rgba(255, 255, 255, 0.95);
}

.p-works-project__smoothscrollnav {
  list-style: none;
  display: block;
  border-top: 2px solid #0c419a;
  border-bottom: 2px solid #0c419a;
  padding: 10px 0;
}
.p-works-project__smoothscrollnav li {
  display: inline-block;
  margin: 0.5rem 1rem;
}
.p-works-project__smoothscrollnav li::before {
  content: "";
  display: inline-block;
  background: url("../images/arrow_02.png") center no-repeat;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.p-works-project__smoothscrollnav li a {
  color: #000;
  text-decoration: none;
}
.p-works-project__smoothscrollnav li a:focus {
  color: #000;
}
.p-works-project__smoothscrollnav li a:hover {
  text-decoration: underline;
}

.p-works-project__article {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .p-works-project__article {
    padding-top: 80px;
  }
}
.p-works-project__article h1 {
  font-size: 24px;
  margin-top: 0;
}
.p-works-project__article h2 {
  font-size: 20px;
  color: #0c419a;
  margin: 1.5rem 0 1rem;
}
.p-works-project__article img {
  max-width: 100%;
  height: auto;
}

.p-works-project__tag {
  display: block;
  text-align: right;
  margin-bottom: 30px;
  min-height: 30px;
}
.p-works-project__tag span {
  display: inline-block;
  color: #fff;
  background: #6e85e4;
  border: 1px solid currentColor;
  padding: 4px 15px;
  font-size: 15px;
  text-align: center;
}
@media (min-width: 1200px) {
  .p-works-project__tag span {
    min-width: 100px;
  }
}

.p-works-project__reference {
  margin: 50px 0;
  line-height: 2.25;
  font-size: 14px;
  border: 2px dotted #c7c7c7;
  padding: 16px 20px;
}
.p-works-project__reference::before {
  content: "参考";
  display: block;
  color: #da7fce;
  font-size: 15px;
}

.p-works-safety__headline-d {
  font-size: 34px;
  letter-spacing: 0;
  display: block;
  color: #0c419a;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .p-works-safety__headline-d {
    font-size: 7.4vw;
  }
}

.p-works-safety__num {
  font-weight: 700;
  font-size: 190%;
  display: inline-block;
  margin-right: 15px;
}

.p-works-safety__content {
  color: #000;
  font-weight: 600;
}

.p-works-safety__section-headline {
  background: url("../images/works/safety-section-bg.jpg") center/cover no-repeat;
  color: #fff;
  padding: 70px 0;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .p-works-safety__section-headline {
    margin-top: 30px;
    padding: 30px 0;
  }
}
.p-works-safety__section-headline h2 {
  margin: 30px 0;
  font-size: 26px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .p-works-safety__section-headline h2 {
    font-size: 5.8vw;
  }
}
.p-works-safety__section-headline p {
  line-height: 2.5;
}
@media (max-width: 767px) {
  .p-works-safety__section-headline p {
    line-height: 2;
    -webkit-font-smoothing: antialiased;
    font-size: 3.8vw;
  }
}

.p-works-safety__row {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .p-works-safety__row {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .p-works-safety__reverse {
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .p-works-safety__col2-cnt {
    width: 59%;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .p-works-safety__reverse .p-works-safety__col2-cnt {
    padding-right: 0;
    padding-left: 20px;
  }
}

@media (min-width: 768px) {
  .p-works-safety__col2-img {
    width: 38%;
  }
}
@media (max-width: 767px) {
  .p-works-safety__col2-img {
    margin-top: 20px;
  }
}
.p-works-safety__col2-img img {
  width: 100%;
  height: auto;
}

.p-works-technology__tag {
  display: block;
  text-align: right;
  margin-bottom: 30px;
}
.p-works-technology__tag span {
  display: inline-block;
  color: #6e85e4;
  border: 1px solid currentColor;
  padding: 4px 15px;
  font-size: 15px;
  text-align: center;
}
@media (min-width: 1200px) {
  .p-works-technology__tag span {
    min-width: 100px;
  }
}

.p-works-technology__article {
  margin-bottom: 50px;
}
.p-works-technology__article img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .p-works-technology__article .row {
    margin-bottom: 0;
  }
  .p-works-technology__article .row .col-2 {
    margin-bottom: 30px;
  }
}

.p-works-technology__headline-c {
  position: relative;
  font-size: 18px;
  color: #0c419a;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.p-works-technology__text-link {
  color: #0c419a;
  text-decoration: underline;
}
.p-works-technology__text-link:hover {
  text-decoration: none;
}

.u-mt10 {
  margin-top: 10px;
}

.c-text-area p {
  line-height: 2.25;
  margin: 0 0 1rem;
}

.u-d-flex {
  display: flex;
}

.u-block {
  display: block;
}

.u-align-center {
  text-align: center;
}

.u-align-right {
  text-align: right;
}

.u-align-left {
  text-align: left;
}

.u-text-small {
  font-size: 80%;
}

.u-mincho {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.u-sp-only {
  display: none;
}
@media (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}

.u-pc-only {
  display: none;
}
@media (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
}

.date {
  display: block;
  text-align: right;
}
.date span {
  display: inline-block;
  background: #6e85e4;
  color: #fff;
  padding: 4px 15px;
  font-size: 15px;
  text-align: center;
}
@media (min-width: 1200px) {
  .date span {
    min-width: 100px;
  }
}

article h1.headline-B {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 24px;
}
article .date {
  margin-bottom: 30px;
}
article .text-area {
  margin-bottom: 50px;
}
article .text-area p {
  line-height: 2;
  margin-top: 0;
}
article .text-area p:last-child {
  margin-bottom: 0;
}
article .caption {
  font-size: 13px;
  color: #444;
}

.col-2 .text-area {
  margin-bottom: 0;
}
