/* components/ フォルダ内のCSSを読み込みます */
:root {
  /* フォントサイズ (1rem = 16px 基準) */
  --font-size-xxl: 7.2rem; /* 96px */
  --font-size-xl: 4rem; /* 64px */
  --font-size-l: 3rem; /* 48px */
  --font-size-xm: 2.5rem; /* 40px */
  --font-size-m: 2rem; /* 32px */
  --font-size-s: 1.5rem; /* 24px */
  --font-size-ss: 1.125rem; /* 18px */
  --font-size-xs: 0.9rem; /* 16px */
  --font-size-xxs: 0.75rem; /* 12px */

  /* フォントの太さ */
  --font-weight-normal: normal;
  --font-weight-medium: 500;
  --font-weight-bold: bold;

  /* カラー */
  --color-white: #fff;
  --color-more-light-gray: #737373;
  --color-light-gray: #b1b1b1;
  --color-gray: #606060;
  --color-black: #191d25;
  --color-red: #ff0000;
  --color-g-blue: linear-gradient(to right, #3a7bd5, #00d2ff);
  --color-g-white: linear-gradient(to right, #fff, #fff);
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* 2. Remove default margin */
* {
  margin: 0;
}
/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}
/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}
/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-wrap: break-word;
}
/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  text-wrap: balance;
}
/*
  10. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}
a {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.js-fade-in,
.js-fade-in--last,
.js-fade-blur {
  /* 変化させるプロパティを事前に通知 */
  will-change: opacity, transform, filter;
}
/* 初期状態：透明で20px下に配置 */
.js-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.6s, transform 1.6s;
  /* デフォルトの遅延は0秒 */
  transition-delay: calc(0 * 0.2s);
  transition-delay: calc(var(--delay, 0) * 0.2s);
}
.js-fade-in--last {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 6s, transform 6s;
  /* デフォルトの遅延は0秒 */
  transition-delay: calc(0 * 0.2s);
  transition-delay: calc(var(--delay, 0) * 0.2s);
}
/* 画面に入った時に付与するクラス */
.js-fade-in.is-visible,
.js-fade-in--last.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* 初期状態：10pxほどボケさせて、少し大きくする */
.js-fade-blur {
  opacity: 0;
  filter: blur(2px);
  /* transform: scale(0.8);  */
  transition:
    opacity 2s ease, filter 2s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* 表示状態：ボケを消して、元のサイズへ */
.js-fade-blur.is-visible {
  opacity: 1;
  filter: blur(0);
  /* transform: scale(1); */
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9999;
  background-size: 40px 40px;
  pointer-events: none;
}
header .header-contents__inner {
    position: relative;
    display: flex;
    align-items: center;
    height: inherit;
    justify-content: space-between;
    padding: 24px 24px;
    border-radius: 8px;
  }
header .header-contents__inner .header-contents__nav-logo {
      font-size: 32px;
      font-weight: bold;
      font-weight: var(--font-weight-bold);
      font-family: "Poppins", sans-serif;
      background: linear-gradient(to right, #3a7bd5, #00d2ff);
      background: var(--color-g-blue);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      z-index: 9999;
      pointer-events: auto;
    }
header .header-contents__inner .header-contents__nav {
      position: absolute;
      right: 0;
      top: 0;
      width: 100%;
      height: 100vh;
      /* transform: translateX(200%); */
      transition: ease 0.25s;
      background: rgba(0, 0, 0, 0.7);
      opacity: 0;
      visibility: hidden;
      pointer-events: auto;
    }
header .header-contents__inner .header-contents__nav .header-contents__nav-menus {
        position: absolute;
        right: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(to bottom right, #009ac0, #285698);
        display: flex;
        flex-direction: column;
        gap: 56px;
        padding: 120px 0 0 24px;
        z-index: 9999;
        padding-left: 24px;
      }
@media screen and (min-width: 960px) {
header .header-contents__inner .header-contents__nav .header-contents__nav-menus {
          width: 50%;
          height: 100vh;
      }
        }
header .header-contents__inner .header-contents__nav .header-contents__nav-menus .header-contents__nav-menu__item {
          list-style: none;
        }
header .header-contents__inner .header-contents__nav .header-contents__nav-menus .header-contents__nav-menu__item:not(:last-child) {
          }
header .header-contents__inner .header-contents__nav .header-contents__nav-menus .header-contents__nav-menu__item a {
            position: relative;
            display: block;
            font-size: 14px;
            color: #fff;
            color: var(--color-white);
            font-weight: bold;
            font-weight: var(--font-weight-bold);
          }
header .header-contents__inner .header-contents__nav .header-contents__nav-menus .header-contents__nav-menu__item a::before {
              content: "";
              width: 16px;
              height: 2px;
              background: #fff;
              background: var(--color-white);
              position: absolute;
              bottom: 10px;
            }
@media screen and (min-width: 960px) {
header .header-contents__inner .header-contents__nav .header-contents__nav-menus .header-contents__nav-menu__item a::before {
            }
              }
header .header-contents__inner .header-contents__nav .header-contents__nav-menus .header-contents__nav-menu__item a::after {
              position: absolute;
              content: "";
              width: 24px;
              height: 24px;
              background: url("assets/images/icon/btn-arrow_hw.svg") no-repeat;
              background-size: contain;
              right: 24px;
              bottom: 36%;
            }
@media screen and (min-width: 960px) {
header .header-contents__inner .header-contents__nav .header-contents__nav-menus .header-contents__nav-menu__item a::after {
                bottom: 40%;
            }
              }
header .header-contents__inner .header-contents__nav .header-contents__nav-menus .header-contents__nav-menu__item a span {
              font-size: 3rem;
              font-size: var(--font-size-l);
            }
@media screen and (min-width: 960px) {
header .header-contents__inner .header-contents__nav .header-contents__nav-menus .header-contents__nav-menu__item a span {
                font-size: 4rem;
                font-size: var(--font-size-xl);
            }
              }
header .header-contents__inner .header-contents__nav .header-contents__nav-menus .header-contents__nav-menu__item a span span {
                /* background: var(--color-g-blue);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent; */
              }
header .header-contents__inner .header-contents__nav .header-contents__nav-menus .header-contents__nav-menu__item a span.sub-title {
                margin-bottom: -16px;
                font-size: 14px;
                margin-left: 24px;
              }
header .header-contents__inner .header-contents__nav .header-contents__nav-menus .header-contents__nav-menu__item--copy {
          list-style: none;
          color: #fff;
          color: var(--color-white);
          font-size: 0.9rem;
          font-size: var(--font-size-xs);
          font-weight: bold;
          font-weight: var(--font-weight-bold);
          margin-left: -8px;
        }
/* ハンバーガーメニュー */
header .header-contents__inner .header-contents__hamburger {
      width: 64px;
      height: 64px;
      /* background: linear-gradient(to bottom right, #009ac0, #285698); */
      padding-top: 20px;
      padding-bottom: 20px;
      padding-left: 16px;
      padding-right: 16px;
      border-width: 0px;
      border-style: none;
      border: 2px solid #1577ab;
      border-radius: 99px;
      cursor: pointer;
      pointer-events: auto;
    }
header .header-contents__inner .hamburger {
      background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
      /* border-color: transparent; buttonタグデフォルトスタイルを打ち消し */
      z-index: 9999;
    }
/* ハンバーガーメニューの線 */
header .header-contents__inner .hamburger span {
      width: 100%;
      height: 2px;
      background-color: #1577ab;
      position: relative;
      transition: all ease 0.25s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
      display: block;
      border-radius: 99px;
      color: #1577ab;
      font-size: 10px;
      font-weight: bold;
      font-weight: var(--font-weight-bold);
    }
header .header-contents__inner .hamburger span:nth-child(1) {
      top: 0;
    }
header .header-contents__inner .hamburger span:nth-child(2) {
      margin: 8px 0;
    }
header .header-contents__inner .hamburger span:nth-child(3) {
      top: -6px;
      background-color: transparent;
    }
/* ハンバーガーメニュークリック後のスタイル */
header .header-contents__inner .header-contents__nav.active {
      /* transform: translateX(0); */
      opacity: 1;
      visibility: visible;
    }
header .header-contents__inner .header-contents__hamburger.active {
      background: #fff;
      background: var(--color-white);
    }
header .header-contents__inner .hamburger.active span {
      color: #16b3f0;
    }
header .header-contents__inner .hamburger.active span:nth-child(1) {
      top: 6px;
      transform: rotate(45deg);
      background-color: #16b3f0;
    }
header .header-contents__inner .hamburger.active span:nth-child(2) {
      opacity: 1;
      transform: rotate(-45deg);
      top: -4px;
      background-color: #16b3f0;
    }
header .header-contents__inner .hamburger.active span:nth-child(3) {
      top: -2px;
    }
#header.show {
  transform: translateY(0); /* 画面内に表示 */
}
.footer {
  background: url("assets/images/footer/bg_footer.webp") no-repeat;
  background-size: cover;
}
.footer-contents {
  width: 100%;
  margin: 0 auto;
  padding: 60px 32px;
  color: #fff;
  color: var(--color-white);
}
@media screen and (min-width: 960px) {
.footer-contents {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 0;
    color: #fff;
    color: var(--color-white);
}
  }
.footer-contents .footer-contents__contacts {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
  }
@media screen and (min-width: 960px) {
.footer-contents .footer-contents__contacts {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
  }
    }
.footer-contents .footer-contents__contacts .footer-contents__description {
      font-size: 0.9rem;
      font-size: var(--font-size-xs);
      line-height: 28px;
    }
.footer-contents .section-header {
    margin-bottom: 32px;
  }
.footer-contents .link-btn {
    height: -moz-fit-content;
    height: fit-content;
  }
.footer-contents .footer-contents__nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 40px;
    gap: 40px;
  }
@media screen and (min-width: 960px) {
.footer-contents .footer-contents__nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-direction: row;
      margin-bottom: 40px;
      gap: none;
  }
    }
.footer-contents .footer-contents__nav .footer-contents__nav-logo {
      font-size: 40px;
      font-weight: bold;
      font-weight: var(--font-weight-bold);
      background-image: linear-gradient(to right, #3a7bd5, #00d2ff);
      background-image: var(--color-g-blue);
      font-family: "Poppins", sans-serif;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
.footer-contents .footer-contents__nav .footer-contents__nav-menu {
      display: flex;
      flex-direction: column;
      padding-left: 0px;
      gap: 24px;
    }
@media screen and (min-width: 960px) {
.footer-contents .footer-contents__nav .footer-contents__nav-menu {
        flex-direction: row;
    }
      }
.footer-contents .footer-contents__nav .footer-contents__nav-menu .footer-contents__nav-menu-item {
        list-style: none;
        padding-left: 32px;
      }
.footer-contents .footer-contents__nav .footer-contents__nav-menu .footer-contents__nav-menu-item:not(:last-child) {
          margin-right: 56px;
        }
.footer-contents .footer-contents__nav .footer-contents__nav-menu .footer-contents__nav-menu-item a {
          position: relative;
          font-size: 14px;
          color: #fff;
          color: var(--color-white);
          font-weight: bold;
          font-weight: var(--font-weight-bold);
        }
.footer-contents .footer-contents__nav .footer-contents__nav-menu .footer-contents__nav-menu-item a::before {
            content: "";
            width: 16px;
            height: 2px;
            background: linear-gradient(to right, #3a7bd5, #00d2ff);
            background: var(--color-g-blue);
            position: absolute;
            top: 40%;
            left: -26px;
          }
@media screen and (min-width: 960px) {
.footer-contents .footer-contents__nav .footer-contents__nav-menu .footer-contents__nav-menu-item a::before {
              top: 40%;
              left: -26px;
          }
            }
.footer-contents .footer-contents__recaptcha {
    font-size: 0.75rem;
    font-size: var(--font-size-xxs);
    color: #fff;
    color: var(--color-white);
    margin-bottom: 16px;
  }
.footer-contents .footer-contents__recaptcha a {
      color: #fff;
      color: var(--color-white);
      font-weight: bold;
      font-weight: var(--font-weight-bold);
    }
.footer-contents .footer-contents__copy {
    font-size: 0.9rem;
    font-size: var(--font-size-xs);
    font-weight: bold;
    font-weight: var(--font-weight-bold);
    font-family: "Poppins", sans-serif;
    color: #fff;
    color: var(--color-white);
  }
.main-visual {
  position: relative;
  background-color: #191d25;
  background-color: var(--color-black);
  height: 100vh;
}
.main-visual .swiper {
    height: 100%;
    overflow: hidden;
    padding-top: 40px;
  }
@media screen and (min-width: 960px) {
.main-visual .swiper {
      padding-top: 24px;
  }
    }
.main-visual .swiper .swiper-wrapper {
      height: 100%;
      display: flex;
      transition-timing-function: linear;
    }
.main-visual .swiper .swiper-wrapper .swiper-slide {
        height: 100%;
        width: auto;
        max-width: 440px;
      }
@media screen and (min-width: 960px) {
.main-visual .swiper .swiper-wrapper .swiper-slide {
          max-width: 560px;
      }
        }
.main-visual .swiper .swiper-wrapper .swiper-slide .swiper-slide__item {
          display: inline-block;
          height: auto;
          width: auto;
          overflow: hidden;
          /* border-radius: 16px; */
        }
.main-visual .swiper .swiper-wrapper .swiper-slide .swiper-slide__item .slide-image {
            width: 100%;
            height: 100%;
            max-width: none !important;
            display: block;
          }
.main-visual .swiper .swiper-wrapper .swiper-slide .swiper-slide__item picture {
            display: inline-block;
            vertical-align: top;
          }
.main-visual .main-visual__title {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: -webkit-fill-available;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
    padding: 100px 16px 40px;
    z-index: 2;
    background: linear-gradient(
      to bottom,
      rgba(26, 30, 38, 0) 0%,
      rgba(26, 30, 38, 0.65) 20%,
      rgba(26, 30, 38, 1) 80%
    );
  }
@media screen and (min-width: 960px) {
.main-visual .main-visual__title {
      flex-direction: row;
      align-items: center;
      gap: 64px;
      padding: 100px 24px 40px;
  }
    }
.main-visual .main-visual__title .main-visual__title--main {
      font-size: clamp(2.5rem, 0.69rem + 7.73vw, 6.875rem);
      font-weight: bold;
      font-weight: var(--font-weight-bold);
      font-family: "Poppins", sans-serif;
      color: #fff;
      color: var(--color-white);
      letter-spacing: 0.06em;
      line-height: 1.1;
      width: 100%;
    }
.main-visual .main-visual__title .main-visual__title--main .gradation {
        background-image: linear-gradient(to right, #3a7bd5, #00d2ff);
        background-image: var(--color-g-blue);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
@media screen and (min-width: 960px) {
.main-visual .main-visual__title .main-visual__title--main {
        /* font-size: var(--font-size-xxl); */
    }
      }
.main-visual .main-visual__title .main-visual__title--sub {
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
.main-visual .main-visual__title .main-visual__title--sub .main-visual__title--sub-big {
        /* font-size: var(--font-size-xm); */
        font-size: clamp(2.5rem, 2.29rem + 0.88vw, 3rem);
        font-weight: bold;
        font-weight: var(--font-weight-bold);
        font-family: "Poppins", sans-serif;
        letter-spacing: 0.18em;
        color: transparent;
        -webkit-text-stroke: 1px #fff;
        -webkit-text-stroke: 1px var(--color-white);
        text-stroke: 1px #fff;
        text-stroke: 1px var(--color-white);
        white-space: nowrap;
      }
.main-visual .main-visual__title .main-visual__title--sub .main-visual__title--sub-text {
        font-size: 14px;
        font-weight: normal;
        font-weight: var(--font-weight-normal);
        letter-spacing: 0.06em;
        color: #737373;
        color: var(--color-more-light-gray);
      }
.main-visual .main-visual__title .main-visual__title--sup {
      position: relative;
      color: #fff;
      color: var(--color-white);
      writing-mode: vertical-rl;
    }
.main-visual .main-visual__title .main-visual__title--sup::before {
        animation: scroll 2s infinite;
        background-color: #fff;
        background-color: var(--color-white);
        bottom: -115px;
        content: "";
        height: 100px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        width: 1px;
      }
.main-visual .main-visual__title {
    @keyframes scroll {
      0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
      }
      50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
      }
      51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
      }
      100% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
      }
    }
  }
.repeating-text {
  display: flex;
  width: 100vw;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.repeating-text .repeating-text__container {
    display: flex;
    animation: loop-text 56s linear infinite;
    margin: 16px auto;
  }
@media screen and (min-width: 960px) {
.repeating-text .repeating-text__container {
      margin: 40px auto;
  }
    }
.repeating-text .repeating-text__item {
    display: inline-block;
    font-size: 2.5rem;
    font-size: var(--font-size-xm);
    font-weight: bold;
    font-weight: var(--font-weight-bold);
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.18em;
    color: rgba(0, 0, 0, 0.1);
    -webkit-text-stroke: 1px #a3a3a3;
    text-stroke: 1px #a3a3a3;
    white-space: nowrap;
    margin-right: 32px;
  }
@media screen and (min-width: 960px) {
.repeating-text .repeating-text__item {
      display: inline-block;
      font-size: 4rem;
      font-size: var(--font-size-xl);

      margin-right: 32px;
  }
    }
.repeating-text .repeating-text__item--about {
    display: inline-block;
    font-size: 2.5rem;
    font-size: var(--font-size-xm);
    font-weight: bold;
    font-weight: var(--font-weight-bold);
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.18em;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    -webkit-text-stroke: 1px var(--color-white);
    text-stroke: 1px #fff;
    text-stroke: 1px var(--color-white);
    white-space: nowrap;
    margin-right: 32px;
  }
@media screen and (min-width: 960px) {
.repeating-text .repeating-text__item--about {
      display: inline-block;
      font-size: 4rem;
      font-size: var(--font-size-xl);
      font-weight: bold;
      font-weight: var(--font-weight-bold);
      font-family: "Poppins", sans-serif;
      letter-spacing: 0.18em;
      white-space: nowrap;
      margin-right: 32px;
  }
    }
@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.works-section,
.about-section {
  width: 100%;
  margin: 0 auto;
  z-index: 3;
}
@media screen and (min-width: 960px) {
.works-section,
.about-section {
    max-width: 1000px;
    margin: 0 auto;
    z-index: 3;
}
  }
.about,
.works {
  position: relative;
  padding: 96px 32px 48px;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
    .about .about,.works .about,.about .works,.works .works {
      position: relative;
      padding: 80px 0;
      overflow: hidden;
    }
  }
.works .work-contents {
    text-align: center;
    margin-bottom: 32px;
  }
@media screen and (min-width: 960px) {
.works .work-contents {
      margin-bottom: 0px;
  }
    }
.works::before {
    position: absolute;
    content: "";
    background: #191d25;
    background: var(--color-black);
    height: 60px;
    width: 30%;
    right: 0;
    top: 0;
    border-bottom-left-radius: 48px;
  }
@media screen and (min-width: 960px) {
.works::before {
      position: absolute;
      content: "";
      background: #191d25;
      background: var(--color-black);
      height: 120px;
      width: 50%;
      right: 0;
      top: 0;
      border-bottom-left-radius: 48px;
  }
    }
.works::after {
    position: absolute;
    content: "";
    background: url("assets/images/top/works-header.svg") no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    top: 0;
    right: 29.5%;
  }
@media screen and (min-width: 960px) {
.works::after {
      position: absolute;
      content: "";
      background: url("assets/images/top/works-header.svg") no-repeat;
      background-size: contain;
      width: 60px;
      height: 60px;
      top: 0;
      right: 50%;
  }
    }
.works .works-circle-text {
    position: absolute;
    height: 200px;
    width: 200px;
    z-index: 1;
    right: -5%;
    top: -11%;
  }
@media screen and (min-width: 960px) {
.works .works-circle-text {
      height: 580px;
      width: 580px;
      z-index: 1;
      right: -5%;
      top: -11%;
  }
    }
.works .works-circle-text img {
      height: auto;
      width: 100%;
      animation: rotation 80s linear infinite;
    }
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.about {
  /* 1. background-image: 複数の背景をカンマ区切りで指定 */
  /* - 1つ目（上）: リピートさせる画像 */
  /* - 2つ目（下）: リピートさせないグラデーション */
  background-image: url("assets/images/top/bg_about.jpg");

  /* 2. background-repeat: それぞれの背景のリピート設定をカンマ区切りで指定 */
  background-repeat: no-repeat; /* グラデーションはリピートさせない */

  /* 3. background-size: それぞれの背景のサイズ設定をカンマ区切りで指定 */
  background-size: cover; /* グラデーションを要素全体に広げる */
}
.about::before {
    position: absolute;
    content: "";
    background: url("assets/images/top/bg_main.jpg") no-repeat;
    background-size: cover;
    height: 60px;
    width: 30%;
    right: 0;
    top: 0;
    border-bottom-left-radius: 48px;
  }
@media screen and (min-width: 960px) {
.about::before {
      position: absolute;
      content: "";
      background: url("assets/images/top/bg_main.jpg") no-repeat;
      height: 120px;
      width: 50%;
      right: 0;
      top: 0;
      border-bottom-left-radius: 48px;
  }
    }
.about::after {
    position: absolute;
    content: "";
    background: url("assets/images/top/about-header.svg") no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    top: 0;
    right: 29.5%;
  }
@media screen and (min-width: 960px) {
.about::after {
      position: absolute;
      content: "";
      background: url("assets/images/top/about-header.svg") no-repeat;
      background-size: contain;
      width: 60px;
      height: 60px;
      top: 0;
      right: 50%;
  }
    }
.about-contents {
  margin-bottom: 32px;
}
@media screen and (min-width: 960px) {
.about-contents {
    margin-bottom: 0px;
}
  }
.about-contents .about-contents__introduction {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
    color: #fff;
    color: var(--color-white);
  }
@media screen and (min-width: 960px) {
.about-contents .about-contents__introduction {
      display: flex;
      align-items: center;
      flex-direction: row;
      gap: 32px;
      margin-bottom: 40px;
      color: #fff;
      color: var(--color-white);
  }
    }
.about-contents .about-contents__introduction .about-contents__photo {
      width: 100%;
    }
@media screen and (min-width: 960px) {
.about-contents .about-contents__introduction .about-contents__photo {
        width: 50%;
    }
      }
.about-contents .about-contents__introduction .about-contents__photo .title-image {
        width: 100%;
      }
.about-contents .about-contents__introduction .about-contents__info {
      width: 100%;
    }
@media screen and (min-width: 960px) {
.about-contents .about-contents__introduction .about-contents__info {
        width: 50%;
    }
      }
.about-contents .about-contents__introduction .about-contents__info .about-contents__name {
        font-size: 1.5rem;
        font-size: var(--font-size-s);
        font-weight: bold;
        font-weight: var(--font-weight-bold);
        margin-bottom: 16px;
      }
@media screen and (min-width: 960px) {
.about-contents .about-contents__introduction .about-contents__info .about-contents__name {
          margin-bottom: 32px;
      }
        }
.about-contents .about-contents__introduction .about-contents__info .about-contents__description {
        font-size: 0.9rem;
        font-size: var(--font-size-xs);
        line-height: 28px;
        margin-bottom: 32px;
      }
@media screen and (min-width: 960px) {
.about-contents .about-contents__introduction .about-contents__info .about-contents__description {
          margin-bottom: 42px;
      }
        }
.post-type-archive-work .works::before {
  display: none;
}
.post-type-archive-work .works::after {
  display: none;
}
.post-type-archive-work .works {
  padding: 96px 32px 48px;
}
@media screen and (min-width: 960px) {
.post-type-archive-work .works {
    padding: 120px 0;
}
  }
.single-work-contents .key-visual {
    width: 100%;
    height: auto;
    background-color: rgba(227, 227, 227, 0.8);
  }
@media screen and (min-width: 960px) {
.single-work-contents .key-visual {
      margin-left: auto;
      margin-right: auto;
  }
    }
.single-work-contents .key-visual .key-visual__thumbnail {
      width: 100%;
      height: auto;
      -o-object-fit: cover;
         object-fit: cover;
      aspect-ratio: 1000 / 625;
    }
@media screen and (min-width: 960px) {
.single-work-contents .key-visual .key-visual__thumbnail {
        max-width: 1000px;
        max-height: 625px;
        margin-bottom: 40px;
    }
      }
.single-work-contents .key-visual .key-visual__thumbnail img {
        width: 100%;
        height: auto;
        -o-object-fit: cover;
           object-fit: cover;
        aspect-ratio: 1000 / 625;
      }
.single-work-contents .key-visual .production-information {
      width: 100%;
      max-width: 1000px;
      padding: 60px 0 40px;
      margin-left: auto;
      margin-right: auto;
    }
@media screen and (min-width: 960px) {
.single-work-contents .key-visual .production-information {
        padding: 80px 0 80px;
    }
      }
.single-work-contents .key-visual .production-information .production-contents {
        width: 100%;
        padding: 40px 32px 0;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
@media screen and (min-width: 960px) {
.single-work-contents .key-visual .production-information .production-contents {
          width: 100%;
          max-width: 1000px;
          margin-left: auto;
          margin-right: auto;
          padding: 0px;
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
          gap: 0px;
      }
        }
.single-work-contents .key-visual .production-information .production-contents .production-titie {
          font-size: 1.5rem;
          font-size: var(--font-size-s);
          font-weight: bold;
          font-weight: var(--font-weight-bold);
          color: #191d25;
          color: var(--color-black);
          text-align: left;
        }
@media screen and (min-width: 960px) {
.single-work-contents .key-visual .production-information .production-contents .production-titie {
            font-size: 3rem;
            font-size: var(--font-size-l);
            margin-bottom: 0px;
        }
          }
.single-work-contents .key-visual .production-information .production-contents .production-categories {
          display: flex;
          gap: 8px;
          align-items: center;
          justify-content: flex-start;
        }
.single-work-contents .key-visual .production-information .production-contents .production-categories .production-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-size: var(--font-size-xxs);
            font-weight: 500;
            font-weight: var(--font-weight-medium);
            font-family: "Poppins", sans-serif;
            padding: 4px 16px;
            border-radius: 99px;
            color: #397ed6;
            border: 1px solid #397ed6;
          }
@media screen and (min-width: 960px) {
.single-work-contents .key-visual .production-information .production-contents .production-categories .production-tag {
              font-size: 0.9rem;
              font-size: var(--font-size-xs);
          }
            }
.single-work-contents .key-visual .production-information .production-contents .production-categories .production-category {
            font-size: 0.75rem;
            font-size: var(--font-size-xxs);
            /* color: #b3b3b3; */
            color: #191d25;
            color: var(--color-black);
          }
.single-work-contents .key-visual .production-information .production-contents .production-description {
          font-size: 0.9rem;
          font-size: var(--font-size-xs);
        }
.single-work-contents .key-visual .production-information .production-contents .production-overview {
          font-size: 0.9rem;
          font-size: var(--font-size-xs);
        }
.single-work-contents .single-work-content {
    width: 100%;
    margin: 0 auto;
    padding: 40px 32px;
    text-align: center;
  }
@media screen and (min-width: 960px) {
.single-work-contents .single-work-content {
      max-width: 1000px;
      padding: 160px 0;
  }
    }
.single-work-contents .single-work-content .content-header {
      margin-bottom: 20px;
      text-align: left;
    }
@media screen and (min-width: 960px) {
.single-work-contents .single-work-content .content-header {
        margin-bottom: 40px;
    }
      }
.single-work-contents .single-work-content .content-header .content-header__main {
        font-size: 2rem;
        font-size: var(--font-size-m);
        font-weight: bold;
        font-weight: var(--font-weight-bold);
        font-family: "Poppins", sans-serif;
      }
@media screen and (min-width: 960px) {
.single-work-contents .single-work-content .content-header .content-header__main {
          font-size: 2.5rem;
          font-size: var(--font-size-xm);
      }
        }
.single-work-contents .single-work-content .content-header .content-header__main span {
          background: linear-gradient(to right, #3a7bd5, #00d2ff);
          background: var(--color-g-blue);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }
.single-work-contents .single-work-content .content-header .content-header__sub {
        font-size: 0.75rem;
        font-size: var(--font-size-xxs);
        font-weight: bold;
        font-weight: var(--font-weight-bold);
      }
.single-work-contents .single-work-content .work-information {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      gap: 32px;
      margin-bottom: 56px;
      text-align: left;
    }
@media screen and (min-width: 960px) {
.single-work-contents .single-work-content .work-information {
        flex-direction: row;
        margin-bottom: 100px;
        gap: 40px;
    }
      }
.single-work-contents .single-work-content .work-information--inversion {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      gap: 32px;
      text-align: left;
    }
@media screen and (min-width: 960px) {
.single-work-contents .single-work-content .work-information--inversion {
        flex-direction: row-reverse;
        gap: 40px;
    }
      }
.single-work-contents .single-work-content .work-information__description {
      width: 100%;
    }
@media screen and (min-width: 960px) {
.single-work-contents .single-work-content .work-information__description {
        width: 50%;
    }
      }
.single-work-contents .single-work-content .work-information__description .work-information__header {
        position: relative;
        font-size: 0.9rem;
        font-size: var(--font-size-xs);
        font-weight: 500;
        font-weight: var(--font-weight-medium);
        margin-bottom: 8px;
        background-image: linear-gradient(to right, #3a7bd5, #00d2ff);
        background-image: var(--color-g-blue);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
@media screen and (min-width: 960px) {
.single-work-contents .single-work-content .work-information__description .work-information__header {
          margin-bottom: 16px;
      }
        }
.single-work-contents .single-work-content .work-information__description .work-information__text {
        font-size: 0.9rem;
        font-size: var(--font-size-xs);
        padding-bottom: 16px;
        line-height: 1.6rem;
      }
@media screen and (min-width: 960px) {
.single-work-contents .single-work-content .work-information__description .work-information__text {
      }
        }
.single-work-contents .single-work-content .work-information__description .work-information__text--last {
        font-size: 0.9rem;
        font-size: var(--font-size-xs);
        line-height: 1.6rem;
      }
.single-work-contents .single-work-content .work-information__description .separator-line {
        border-top: 1px solid #d8d8d8;
      }
.single-work-contents .single-work-content .work-information__img {
      width: 100%;
    }
@media screen and (min-width: 960px) {
.single-work-contents .single-work-content .work-information__img {
        width: 50%;
        height: -webkit-fill-available;
        height: -moz-available;
        height: stretch;
    }
      }
.single-work-contents .single-work-content .work-information__img picture {
        height: 100%;
        display: block;
      }
.single-work-contents .single-work-content .work-information__img .work-information__image {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
      }
@media screen and (min-width: 960px) {
.single-work-contents .single-work-content .work-information__img .work-information__image {
          height: 100%;
      }
        }
.single-work-contents .work-scroll-contents {
    padding: 40px 0;
    background-color: rgba(227, 227, 227, 0.4);
  }
@media screen and (min-width: 960px) {
.single-work-contents .work-scroll-contents {
      padding: 160px 0;
  }
    }
.single-work-contents .work-scroll-contents .content-header {
      margin: 0 auto 20px;
      text-align: left;
      max-width: 1100px;
    }
@media screen and (min-width: 960px) {
.single-work-contents .work-scroll-contents .content-header {
        margin-bottom: 40px;
    }
      }
.single-work-contents .work-scroll-contents .content-header .content-header__main {
        font-size: 2rem;
        font-size: var(--font-size-m);
        font-weight: bold;
        font-weight: var(--font-weight-bold);
        font-family: "Poppins", sans-serif;
      }
@media screen and (min-width: 960px) {
.single-work-contents .work-scroll-contents .content-header .content-header__main {
          font-size: 2.5rem;
          font-size: var(--font-size-xm);
      }
        }
.single-work-contents .work-scroll-contents .content-header .content-header__main span {
          background: linear-gradient(to right, #3a7bd5, #00d2ff);
          background: var(--color-g-blue);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }
.single-work-contents .work-scroll-contents .content-header .content-header__sub {
        font-size: 0.75rem;
        font-size: var(--font-size-xxs);
        font-weight: bold;
        font-weight: var(--font-weight-bold);
      }
.single-work-contents .work-scroll-contents .work-scroll-content {
      width: 100%;
      margin: 0 auto;
      padding: 40px 32px;
      text-align: center;
      max-width: 1100px;
      height: auto;
    }
@media screen and (min-width: 960px) {
.single-work-contents .work-scroll-contents .work-scroll-content {
        padding: 0px;
    }
      }
.single-work-contents .work-scroll-contents .work-scroll-content .scroll-content--comment {
        text-align: right;
        color: #b1b1b1;
        margin-bottom: 16px;
        font-size: 0.75rem;
        font-size: var(--font-size-xxs);
      }
@media screen and (min-width: 960px) {
.single-work-contents .work-scroll-contents .work-scroll-content .scroll-content--comment {
          font-size: 0.9rem;
          font-size: var(--font-size-xs);
      }
        }
.single-work-contents .work-scroll-contents .work-scroll-content .scroll-content--img {
        overflow: hidden;
        aspect-ratio: 1440 / 900;
        overflow-y: scroll;
      }
.single-work-contents .work-page-links {
    width: 100%;
    margin: 0 auto;
    padding: 0px 32px 80px;
    text-align: center;
  }
@media screen and (min-width: 960px) {
.single-work-contents .work-page-links {
      max-width: 1000px;
      padding: 80px 0 160px;
  }
    }
.about-page-contents .about-page-content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 96px 0 48px;
  }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content {
      padding: 100px 0;
  }
    }
.about-page-contents .about-page-content .container {
      width: 100%;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
.about-page-contents .about-page-content .section-header {
      padding: 0 32px;
      margin-bottom: 80px;
    }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .section-header {
        padding: 0px;
        margin-bottom: 60px;
    }
      }
.about-page-contents .about-page-content .content-header {
      margin-bottom: 20px;
      text-align: left;
    }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .content-header {
        margin-bottom: 40px;
    }
      }
.about-page-contents .about-page-content .content-header .content-header__main {
        font-size: 2rem;
        font-size: var(--font-size-m);
        font-weight: bold;
        font-weight: var(--font-weight-bold);
        font-family: "Poppins", sans-serif;
      }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .content-header .content-header__main {
          font-size: 2.5rem;
          font-size: var(--font-size-xm);
      }
        }
.about-page-contents .about-page-content .content-header .content-header__main span {
          background: linear-gradient(to right, #3a7bd5, #00d2ff);
          background: var(--color-g-blue);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }
.about-page-contents .about-page-content .content-header .content-header__sub {
        font-size: 0.75rem;
        font-size: var(--font-size-xxs);
        font-weight: bold;
        font-weight: var(--font-weight-bold);
      }
.about-page-contents .about-page-content .about-contents__profile {
      padding: 0 32px 20px;
    }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__profile {
        padding: 40px 0 120px;
    }
      }
.about-page-contents .about-page-content .about-contents__profile .about-contents__introduction {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 32px;
        margin-bottom: 40px;
        color: #191d25;
        color: var(--color-black);
      }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__profile .about-contents__introduction {
          display: flex;
          align-items: center;
          flex-direction: row;
          gap: 32px;
          margin-bottom: 40px;
      }
        }
.about-page-contents .about-page-content .about-contents__profile .about-contents__introduction .about-contents__photo {
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
        }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__profile .about-contents__introduction .about-contents__photo {
            width: 50%;
        }
          }
.about-page-contents .about-page-content .about-contents__profile .about-contents__introduction .about-contents__photo .title-image {
            min-height: none;
            -o-object-fit: cover;
               object-fit: cover;
            width: 100%;
          }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__profile .about-contents__introduction .about-contents__photo .title-image {
              min-height: 480px;
          }
            }
.about-page-contents .about-page-content .about-contents__profile .about-contents__introduction .about-contents__info {
          width: 100%;
        }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__profile .about-contents__introduction .about-contents__info {
            width: 50%;
        }
          }
.about-page-contents .about-page-content .about-contents__profile .about-contents__introduction .about-contents__info .about-contents__name {
            font-size: 1.5rem;
            font-size: var(--font-size-s);
            font-weight: bold;
            font-weight: var(--font-weight-bold);
          }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__profile .about-contents__introduction .about-contents__info .about-contents__name {
              font-size: 2rem;
              font-size: var(--font-size-m);
          }
            }
.about-page-contents .about-page-content .about-contents__profile .about-contents__introduction .about-contents__info .about-contents__name--en {
            font-size: 0.9rem;
            font-size: var(--font-size-xs);
            margin-bottom: 16px;
          }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__profile .about-contents__introduction .about-contents__info .about-contents__name--en {
              font-size: 0.9rem;
              font-size: var(--font-size-xs);
              margin-bottom: 32px;
          }
            }
.about-page-contents .about-page-content .about-contents__profile .about-contents__introduction .about-contents__info .about-contents__description {
            font-size: 0.9rem;
            font-size: var(--font-size-xs);
            line-height: 28px;
            margin-bottom: 24px;
          }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__profile .about-contents__introduction .about-contents__info .about-contents__description {
              margin-bottom: 32px;
          }
            }
.about-page-contents .about-page-content .about-contents__skill {
      background-color: rgba(227, 227, 227, 0.4);
      padding: 40px 32px;
    }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__skill {
        padding: 160px 0;
    }
      }
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
      }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container {
          gap: 80px;
      }
        }
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 16px;
        }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body {
            flex-direction: row;
            align-items: center;
            gap: 40px;
        }
          }
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-img {
            width: 100%;
            height: 100%;
          }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-img {
              width: 40%;
              height: 100%;
          }
            }
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-img img {
              width: 100%;
              max-height: 300px;
              -o-object-fit: contain;
                 object-fit: contain;
            }
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-info {
            width: 100%;
          }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-info {
              width: 60%;
          }
            }
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-info .about-contents__skill-title {
              font-size: 1.5rem;
              font-size: var(--font-size-s);
              font-weight: bold;
              font-weight: var(--font-weight-bold);
              color: #3a7bd5;
              margin-bottom: 24px;
            }
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-info .about-contents__skill-description {
              font-size: 0.9rem;
              font-size: var(--font-size-xs);
              line-height: 26px;
              padding-bottom: 24px;
            }
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-info .separator-line {
              border-top: 1px solid rgba(0, 0, 0, 0.3);
              padding-bottom: 24px;
            }
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-item,.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-item--first {
            display: flex;
            align-items: center;
          }
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-item .about-contents__skill-item-head,.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-item--first .about-contents__skill-item-head {
              white-space: nowrap;
              font-size: 0.9rem;
              font-size: var(--font-size-xs);
              color: #3a7bd5;
              margin-right: 16px;
              min-width: 71px;
            }
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-item .about-contents__skill-item-text,.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-item--first .about-contents__skill-item-text {
              font-size: 0.9rem;
              font-size: var(--font-size-xs);
            }
.about-page-contents .about-page-content .about-contents__skill .about-contents__skill-body-container .about-contents__skill-body .about-contents__skill-item--first {
            margin-bottom: 16px;
          }
.about-page-contents .about-page-content .about-contents__reason {
      padding: 40px 32px;
    }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__reason {
        padding: 160px 0;
    }
      }
.about-page-contents .about-page-content .about-contents__reason .contents-reason__header {
        font-size: 1.5rem;
        font-size: var(--font-size-s);
        font-weight: bold;
        font-weight: var(--font-weight-bold);
        margin-bottom: 32px;
      }
.about-page-contents .about-page-content .about-contents__reason .contents-reason__story .contents-reason__paragraph {
          font-size: 0.9rem;
          font-size: var(--font-size-xs);
          line-height: 28px;
          padding-bottom: 24px;
        }
.about-page-contents .about-page-content .about-contents__reason .contents-reason__story .contents-reason__paragraph:last-child {
            margin-bottom: 0px;
          }
.about-page-contents .about-page-content .about-contents__strength {
      background-image: linear-gradient(
        to right,
        rgba(0, 210, 255, 0.3),
        rgba(58, 123, 213, 0.3)
      );
      padding: 40px 32px;
    }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__strength {
        padding: 160px 0;
    }
      }
.about-page-contents .about-page-content .about-contents__strength .contents-strength__unity {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 32px;
        margin-bottom: 32px;
      }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__strength .contents-strength__unity {
          flex-direction: row;
          justify-content: space-between;
          gap: 56px;
          margin-bottom: 56px;
      }
        }
.about-page-contents .about-page-content .about-contents__strength .contents-strength__unity:last-child {
          margin-bottom: 0px;
        }
.about-page-contents .about-page-content .about-contents__strength .contents-strength__unity .contents-strength__header {
          white-space: nowrap;
          font-size: 1.5rem;
          font-size: var(--font-size-s);
          font-weight: bold;
          font-weight: var(--font-weight-bold);
          min-width: 216px;
        }
.about-page-contents .about-page-content .about-contents__strength .contents-strength__unity .contents-strength__header span {
            background: linear-gradient(to right, #3a7bd5, #00d2ff);
            background: var(--color-g-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-right: 16px;
          }
.about-page-contents .about-page-content .about-contents__strength .contents-strength__unity .contents-strength__paragraph {
          font-size: 0.9rem;
          font-size: var(--font-size-xs);
          line-height: 26px;
        }
.about-page-contents .about-page-content .about-contents__strength .separator-line {
        border-top: 1px solid rgba(0, 0, 0, 0.3);
        padding-bottom: 32px;
      }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__strength .separator-line {
          padding-bottom: 56px;
      }
        }
.about-page-contents .about-page-content .about-contents__like {
      padding: 40px 32px 0;
    }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__like {
        padding: 160px 0 60px;
    }
      }
.about-page-contents .about-page-content .about-contents__like .contents-like__gallery {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 32px;
        gap: 32px;
      }
@media screen and (min-width: 960px) {
.about-page-contents .about-page-content .about-contents__like .contents-like__gallery {
          grid-template-columns: 1fr 1fr 1fr;
          grid-template-rows: auto auto;
          gap: 40px;
      }
        }
.about-page-contents .about-page-content .about-contents__like .contents-like__gallery .contents-like__img {
          position: relative;
          width: 100%;
          height: 240px;
        }
.about-page-contents .about-page-content .about-contents__like .contents-like__gallery .contents-like__img .contents-like__introduction:hover {
            opacity: 1;
          }
.about-page-contents .about-page-content .about-contents__like .contents-like__gallery .contents-like__img picture {
            display: block;
            width: 100%;
            height: 100%;
          }
.about-page-contents .about-page-content .about-contents__like .contents-like__gallery .contents-like__img .title-image {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
               object-fit: cover;
          }
.about-page-contents .about-page-content .about-contents__like .contents-like__gallery .contents-like__img .contents-like__introduction {
            width: 100%;
            height: 100%;
            font-size: 14px;
            color: #fff;
            color: var(--color-white);
            line-height: 24px;
            position: absolute;
            left: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
          }
.contact-page-contents .contact-page-content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 96px 32px 48px;
  }
@media screen and (min-width: 960px) {
.contact-page-contents .contact-page-content {
      padding: 100px 0;
  }
    }
.contact-page-contents .contact-page-content .container {
      width: 100%;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
.contact-page-contents .contact-page-content .container .contact-form__flow {
        display: flex;
        align-items: center;
        margin-bottom: 48px;
      }
.contact-page-contents .contact-page-content .container .contact-form__flow .form-flow__step,.contact-page-contents .contact-page-content .container .contact-form__flow .form-flow__step--current {
          font-size: 0.75rem;
          font-size: var(--font-size-xxs);
          font-weight: bold;
          font-weight: var(--font-weight-bold);
          color: #606060;
          background: #e9e9e9;
          padding: 8px 16px;
          border-radius: 4px;
          width: 100%;
          max-width: 300px;
          text-align: center;
        }
@media screen and (min-width: 960px) {
.contact-page-contents .contact-page-content .container .contact-form__flow .form-flow__step,.contact-page-contents .contact-page-content .container .contact-form__flow .form-flow__step--current {
            font-size: 0.9rem;
            font-size: var(--font-size-xs);
        }
          }
.contact-page-contents .contact-page-content .container .contact-form__flow .form-flow__step--current {
          color: #fff;
          color: var(--color-white);
          background: linear-gradient(to right, #3a7bd5, #00d2ff);
          background: var(--color-g-blue);
        }
.contact-page-contents .contact-page-content .container .contact-form__flow .form-flow__arrow,.contact-page-contents .contact-page-content .container .contact-form__flow .form-flow__arrow--completion {
          width: 100%;
          max-width: 25px;
          border: none;
          border-top: 3px dashed #e9e9e9;
        }
@media screen and (min-width: 960px) {
.contact-page-contents .contact-page-content .container .contact-form__flow .form-flow__arrow,.contact-page-contents .contact-page-content .container .contact-form__flow .form-flow__arrow--completion {
            max-width: 50px;
        }
          }
.contact-page-contents .contact-page-content .container .contact-form__flow .form-flow__arrow--completion {
          border-top: 3px dashed #3a7bd5;
        }
.contact-page-contents .contact-page-content .container .contact-form__description {
        font-size: 0.9rem;
        font-size: var(--font-size-xs);
        line-height: 28px;
        margin-bottom: 48px;
      }
.contact-page-contents .contact-page-content .container .contact-form__description span {
          color: #ff0000;
          color: var(--color-red);
        }
.contact-page-contents .contact-page-content .container .contact-form__separator {
        margin-bottom: 48px;
      }
.contact-page-contents .contact-page-content .container .contact-form__item {
        margin-bottom: 48px;
      }
.contact-page-contents .contact-page-content .container .contact-form__item .contact-form__title {
          font-size: 0.9rem;
          font-size: var(--font-size-xs);
          font-weight: bold;
          font-weight: var(--font-weight-bold);
          margin-bottom: 16px;
        }
.contact-page-contents .contact-page-content .container .contact-form__item .contact-form__title span {
            padding-left: 4px;
            color: #ff0000;
            color: var(--color-red);
          }
.contact-page-contents .contact-page-content .container .contact-form__item input[type="text"],.contact-page-contents .contact-page-content .container .contact-form__item textarea,.contact-page-contents .contact-page-content .container .contact-form__item [type="email"] {
          padding: 12px;
          font-size: 0.9rem;
          font-size: var(--font-size-xs);
          background-color: #f4f4f4;
          border: 1px solid #cbcbcc;
          border-radius: 4px;
          width: 100%;
        }
.contact-page-contents .contact-page-content .container .contact-form__item input[type="radio"] {
          opacity: 0; /* デフォルトのボタンを非表示 */
          position: absolute;
        }
.contact-page-contents .contact-page-content .container .contact-form__item .wpcf7-list-item-label::before {
          background: transparent;
          border: 2px solid #000;
          border-radius: 100%; /* ラジオボタンっぽく丸くする */
          content: "";
          height: 1.2em;
          margin-bottom: auto;
          margin-right: 4px;
          margin-top: auto;
          width: 1.2em;
        }
/* チェック後のボタン */
.contact-page-contents .contact-page-content .container .contact-form__item input[type="radio"]:checked + .wpcf7-list-item-label::before {
          background-color: #000; /* チェック後の中心の色 */
          box-shadow: inset 0 0 0 3px #fff; /* 中心の色のスタイル */
        }
.contact-page-contents .contact-page-content .container .contact-form__item .wpcf7-list-item.first {
          margin: 0;
        }
.contact-page-contents .contact-page-content .container .contact-form__item .wpcf7-list-item-label {
          cursor: pointer;
          display: flex;
        }
.contact-page-contents .contact-page-content .container .contact-form__item .wpcf7-list-item {
          margin-left: 24px;
        }
.contact-page-contents .contact-page-content .container .contact-form__item .link-btn {
          background: none;
        }
.contact-page-contents .contact-page-content .container .contact-form__link {
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
        justify-content: center;
        align-items: center;
      }
@media screen and (min-width: 960px) {
.contact-page-contents .contact-page-content .container .contact-form__link {
          flex-direction: row;
          gap: 48px;
      }
        }
.contact-page-contents .contact-page-content .container .contact-form__thanks {
        text-align: center;
        width: 100%;
        max-width: 610px;
        padding-top: 32px;
        margin-left: auto;
        margin-right: auto;
      }
.contact-page-contents .contact-page-content .container .contact-form__thanks .form-thanks__sub-title {
          font-size: 0.9rem;
          font-size: var(--font-size-xs);
          font-weight: bold;
          font-weight: var(--font-weight-bold);
          color: #7c7c7c;
        }
.contact-page-contents .contact-page-content .container .contact-form__thanks .form-thanks__title {
          display: inline-block;
          font-size: 2.5rem;
          font-size: var(--font-size-xm);
          font-weight: bold;
          font-weight: var(--font-weight-bold);
          font-family: "Poppins", sans-serif;
          letter-spacing: 0.18em;
          color: #a0d9ff;
          text-shadow:
            1px 1px 0 rgba(0, 0, 0, 0.36),
            -1px 1px 0 rgba(0, 0, 0, 0.36),
            1px -1px 0 rgba(0, 0, 0, 0.36),
            -1px -1px 0 rgba(0, 0, 0, 0.36);
          white-space: nowrap;
          margin-bottom: 24px;
        }
@media screen and (min-width: 960px) {
.contact-page-contents .contact-page-content .container .contact-form__thanks .form-thanks__title {
            font-size: 4rem;
            font-size: var(--font-size-xl);
        }
          }
.contact-page-contents .contact-page-content .container .contact-form__thanks .form-thanks__attention {
          font-size: 14px;
          margin-bottom: 80px;
        }
span.wpcf7-spinner {
  display: none;
}
input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 0.9rem;
  font-size: var(--font-size-xs);
  font-weight: bold;
  font-weight: var(--font-weight-bold);
  border: none;
  color: #191d25;
  color: var(--color-black);
  letter-spacing: 0.18em;
  background-color: transparent;
  cursor: pointer;
}
.wpcf7-previous {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 0.9rem;
  font-size: var(--font-size-xs);
  font-weight: bold;
  font-weight: var(--font-weight-bold);
  border: none;
  color: #191d25;
  color: var(--color-black);
  background-color: transparent;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.link-btn--blue:hover input[type="submit"] {
    }
.back-btn:hover .wpcf7-previous {
      color: #707070;
      background: #fff;
      background: var(--color-white);
    }
.error-page-contents {
  background: url("assets/images/top/bg_works.webp") repeat;
  background-size: 40px 40px;
}
.error-page-contents .error-page-content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 96px 16px 48px;
  }
@media screen and (min-width: 960px) {
.error-page-contents .error-page-content {
      padding: 180px 0;
  }
    }
.error-page-contents .error-page-content .container {
      width: 100%;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
.error-page-contents .error-page-content .container .section-header {
        margin-bottom: 24px;
        text-align: center;
      }
.error-page-contents .error-page-content .container .section-header .section-header__main {
          font-size: 120px;
          margin-bottom: 16px;
        }
@media screen and (min-width: 960px) {
.error-page-contents .error-page-content .container .section-header .section-header__main {
            font-size: 160px;
        }
          }
.error-page-contents .error-page-content .container .section-header .section-header__sub--second {
          font-size: 0.9rem;
          font-size: var(--font-size-xs);
          font-weight: bold;
          font-weight: var(--font-weight-bold);
          color: #7c7c7c;
        }
.error-page-contents .error-page-content .container .error-form__description {
        font-size: 0.9rem;
        font-size: var(--font-size-xs);
        line-height: 28px;
        margin-bottom: 48px;
      }
.error-page-contents .error-page-content .container .error-form__description span {
          color: #ff0000;
          color: var(--color-red);
        }
.error-page-contents .error-page-content .container .error-form__separator {
        margin-bottom: 48px;
      }
.error-page-contents .error-page-content .container .error-form__item {
        margin-bottom: 48px;
      }
.error-page-contents .error-page-content .container .error-form__item .error-form__title {
          font-size: 0.9rem;
          font-size: var(--font-size-xs);
          font-weight: bold;
          font-weight: var(--font-weight-bold);
          margin-bottom: 16px;
        }
.error-page-contents .error-page-content .container .error-form__item .error-form__title span {
            padding-left: 4px;
            color: #ff0000;
            color: var(--color-red);
          }
.error-page-contents .error-page-content .container .error-form__item .link-btn {
          background: none;
        }
.error-page-contents .error-page-content .container .error-form__link {
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
        justify-content: center;
        align-items: center;
      }
@media screen and (min-width: 960px) {
.error-page-contents .error-page-content .container .error-form__link {
          flex-direction: row;
          gap: 48px;
      }
        }
.error-page-contents .error-page-content .container .error-form__thanks {
        text-align: center;
        width: 100%;
        max-width: 610px;
        padding-top: 32px;
        margin-left: auto;
        margin-right: auto;
      }
.error-page-contents .error-page-content .container .error-form__thanks .form-thanks__sub-title {
          font-size: 0.9rem;
          font-size: var(--font-size-xs);
          font-weight: bold;
          font-weight: var(--font-weight-bold);
          color: #7c7c7c;
        }
.error-page-contents .error-page-content .container .error-form__thanks .form-thanks__title {
          display: inline-block;
          font-size: 4rem;
          font-size: var(--font-size-xl);
          font-weight: bold;
          font-weight: var(--font-weight-bold);
          font-family: "Poppins", sans-serif;
          letter-spacing: 0.18em;
          color: #a0d9ff;
          text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.36),
            -1px 1px 0 rgba(0, 0, 0, 0.36), 1px -1px 0 rgba(0, 0, 0, 0.36),
            -1px -1px 0 rgba(0, 0, 0, 0.36);
          white-space: nowrap;
          margin-bottom: 24px;
        }
.error-page-contents .error-page-content .container .error-form__thanks .form-thanks__attention {
          font-size: 14px;
          margin-bottom: 80px;
        }
.section-header {
  margin-bottom: 40px;
}
@media screen and (min-width: 960px) {
.section-header {
    margin-bottom: 56px;
}
  }
.section-header .section-header__main {
    font-size: 3rem;
    font-size: var(--font-size-l);
    font-weight: bold;
    font-weight: var(--font-weight-bold);
    font-family: "Poppins", sans-serif;
    margin-bottom: 8px;
  }
.section-header .section-header__main span {
      background: linear-gradient(to right, #3a7bd5, #00d2ff);
      background: var(--color-g-blue);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
.section-header .section-header__main.white {
      color: #fff;
      color: var(--color-white);
    }
.section-header .section-header__sub {
    position: relative;
    font-size: 0.75rem;
    font-size: var(--font-size-xxs);
    font-weight: 500;
    font-weight: var(--font-weight-medium);
    font-family: "Noto Sans JP", sans-serif;
    padding-left: 20px;
  }
@media screen and (min-width: 960px) {
.section-header .section-header__sub {
      padding-left: 24px;
  }
    }
.section-header .section-header__sub::before {
      content: "";
      width: 16px;
      height: 2px;
      background: linear-gradient(to right, #3a7bd5, #00d2ff);
      background: var(--color-g-blue);
      position: absolute;
      top: 44%;
      left: 0;
    }
@media screen and (min-width: 960px) {
.section-header .section-header__sub::before {
        content: "";
        background: linear-gradient(to right, #3a7bd5, #00d2ff);
        background: var(--color-g-blue);
        position: absolute;
        top: 46%;
        left: 0;
    }
      }
.section-header .section-header__sub.white {
      color: #fff;
      color: var(--color-white);
    }
.separator-line {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0;
  padding-bottom: 32px;
}
.contents-link-btn {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 960px) {
.contents-link-btn {
    flex-direction: row;
    gap: 24px;
}
  }
.contents-link-btn .contents-link-btn__item {
    position: relative;
    /* border-radius: 16px; */
    display: block;
    width: 100%;
    height: auto;
    padding: 24px 48px 24px 24px;
    box-sizing: border-box;
  }
@media screen and (min-width: 960px) {
.contents-link-btn .contents-link-btn__item {
      width: 50%;
      max-height: none;
  }
    }
.contents-link-btn .contents-link-btn__item.gallery {
      background: url("assets/images/top/about-link-btn_gallery.webp") no-repeat;
      background-size: 200%;
      background-position: center;
      transition: background-size 0.4s ease-in-out;
    }
.contents-link-btn .contents-link-btn__item.gallery:hover {
      background-size: 220%;
    }
.contents-link-btn .contents-link-btn__item.philosophy {
      background: url("assets/images/top/about-link-btn_philosophy.webp")
        no-repeat;
      background-size: 200%;
      background-position: center;
      transition: background-size 0.4s ease-in-out;
    }
.contents-link-btn .contents-link-btn__item.philosophy:hover {
      background-size: 220%;
    }
.contents-link-btn .contents-link-btn__item::before {
      position: absolute;
      content: "";
      width: 24px;
      height: 24px;
      background: url("assets/images/icon/btn-arrow_w.svg") no-repeat;
      background-size: contain;
      right: 24px;
      bottom: 24px;
      z-index: 2;
      opacity: 1;
      transition: opacity 0.15s ease-in-out;
    }
.contents-link-btn .contents-link-btn__item:hover::before {
      opacity: 0;
    }
.contents-link-btn .contents-link-btn__item::after {
      position: absolute;
      content: "";
      width: 24px;
      height: 24px;
      background: url("assets/images/icon/btn-arrow_b.svg") no-repeat;
      background-size: contain;
      right: 24px;
      bottom: 24px;
      z-index: 1;
      opacity: 0;
      transition: opacity 0.15s ease-in-out;
    }
.contents-link-btn .contents-link-btn__item:hover::after {
      opacity: 1;
    }
.contents-link-btn .contents-link-btn__item .contents-link-btn__inner {
      width: 100%;
      height: auto;
      color: #fff;
      color: var(--color-white);
    }
.contents-link-btn .contents-link-btn__item .contents-link-btn__inner .contents-link-btn__title-en {
        position: relative;
        font-size: 0.75rem;
        font-size: var(--font-size-xxs);
        font-weight: bold;
        font-weight: var(--font-weight-bold);
        padding-left: 24px;
        margin-bottom: 4px;
      }
.contents-link-btn .contents-link-btn__item .contents-link-btn__inner .contents-link-btn__title-en::before {
          content: "";
          width: 16px;
          height: 2px;
          background: linear-gradient(to right, #3a7bd5, #00d2ff);
          background: var(--color-g-blue);
          position: absolute;
          top: 44%;
          left: 0;
        }
@media screen and (min-width: 960px) {
.contents-link-btn .contents-link-btn__item .contents-link-btn__inner .contents-link-btn__title-en::before {
            content: "";
            background: linear-gradient(to right, #3a7bd5, #00d2ff);
            background: var(--color-g-blue);
            position: absolute;
            top: 46%;
            left: 0;
        }
          }
.contents-link-btn .contents-link-btn__item .contents-link-btn__inner .contents-link-btn__title-ja {
        font-size: 1.125rem;
        font-size: var(--font-size-ss);
        font-weight: bold;
        font-weight: var(--font-weight-bold);
        margin-bottom: 24px;
      }
.contents-link-btn .contents-link-btn__item .contents-link-btn__inner .contents-link-btn__title-ja span {
          background: linear-gradient(to right, #3a7bd5, #00d2ff);
          background: var(--color-g-blue);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }
.contents-link-btn .contents-link-btn__item .contents-link-btn__inner .contents-link-btn__description {
        font-size: 14px;
      }
.link-btn {
  position: relative;
  background: linear-gradient(to right, #fff, #fff);
  background: var(--color-g-white);
  display: inline-block;
  padding: 16px 48px 16px 24px;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
}
.link-btn:hover {
    background: linear-gradient(to right, #3a7bd5, #00d2ff);
    background: var(--color-g-blue);
  }
.link-btn::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background: url("assets/images/icon/btn-arrow_w.svg") no-repeat;
    background-size: contain;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
  }
.link-btn:hover::before {
    opacity: 0;
  }
.link-btn::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background: url("assets/images/icon/btn-arrow_b.svg") no-repeat;
    background-size: contain;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }
.link-btn:hover::after {
    opacity: 1;
  }
.link-btn .stretched-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
.link-btn .link-btn__text {
    font-size: 0.9rem;
    font-size: var(--font-size-xs);
    font-weight: bold;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(to right, #3a7bd5, #00d2ff);
    background: var(--color-g-blue);
    letter-spacing: 0.18em;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background 0.2s ease-in-out;
  }
.link-btn:hover .link-btn__text {
    background: #fff;
    background: var(--color-white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
.link-btn--blue {
  position: relative;
  background: linear-gradient(to right, #3a7bd5, #00d2ff);
  background: var(--color-g-blue);
  display: inline-block;
  padding: 16px 48px 16px 24px;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
}
.link-btn--blue:hover {
    background: #fff;
    background: var(--color-white);
  }
.link-btn--blue::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background: url("assets/images/icon/btn-arrow_b.svg") no-repeat;
    background-size: contain;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.15s ease-in-out;
  }
.link-btn--blue:hover::before {
    opacity: 0;
  }
.link-btn--blue::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background: url("assets/images/icon/btn-arrow_w.svg") no-repeat;
    background-size: contain;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
  }
.link-btn--blue:hover::after {
    opacity: 1;
  }
.link-btn--blue .stretched-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
.link-btn--blue .link-btn__text--blue {
    font-size: 0.9rem;
    font-size: var(--font-size-xs);
    font-weight: bold;
    font-weight: var(--font-weight-bold);
    color: #fff;
    color: var(--color-white);
    letter-spacing: 0.18em;
    transition: background 0.2s ease-in-out;
  }
.link-btn--blue:hover .link-btn__text--blue {
    background: linear-gradient(to right, #3a7bd5, #00d2ff);
    background: var(--color-g-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
.back-btn {
  position: relative;
  background-color: #707070;
  display: inline-block;
  padding: 16px 24px 16px 48px;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.1s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
}
.back-btn:hover {
    background-color: #fff;
    background-color: var(--color-white);
  }
.back-btn::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background: url("assets/images/icon/btn-arrow_g.svg") no-repeat;
    background-size: contain;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.1s ease-in-out;
  }
.back-btn:hover::before {
    opacity: 0;
  }
.back-btn::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background: url("assets/images/icon/btn-arrow_bg.svg") no-repeat;
    background-size: contain;
    left: 16px;
    bottom: 16px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
  }
.back-btn:hover::after {
    opacity: 1;
  }
.back-btn .stretched-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
.post-navigation {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 80px auto;
  gap: 16px;
}
@media screen and (min-width: 960px) {
.post-navigation {
    justify-content: space-between;
    flex-direction: row;
    gap: 0px;
}
  }
.post-navigation a {
    color: #191d25;
    color: var(--color-black);
  }
.post-navigation .prev-post,.post-navigation .next-post {
    position: relative;
    padding: 16px;
    height: 100%;
    width: 100%;
    text-align: left;
  }
@media screen and (min-width: 960px) {
.post-navigation .prev-post,.post-navigation .next-post {
      width: calc((100% - 32px) / 2);
  }
    }
.post-navigation .prev-post::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%; /* 線の長さ */
      height: 1px; /* 線の太さ */
      background-color: #c7c7c7; /* 線の色 */

      /* アニメーションの設定 */
      transition: transform 0.6s ease;
      transform-origin: center; /* 中心に向かって縮むように設定 */
      transform: scaleX(1); /* 最初は表示（等倍） */
    }
.post-navigation .next-post::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%; /* 線の長さ */
      height: 1px; /* 線の太さ */
      background-color: #c7c7c7; /* 線の色 */

      /* アニメーションの設定 */
      transition: transform 0.6s ease;
      transform-origin: center; /* 中心に向かって縮むように設定 */
      transform: scaleX(1); /* 最初は表示（等倍） */
    }
.post-navigation .prev-post:hover::after {
      transform: scaleX(0);
    }
.post-navigation .next-post:hover::after {
      transform: scaleX(0);
    }
.post-navigation .prev-post .prev-post-content,.post-navigation .next-post .prev-post-content,.post-navigation .prev-post .next-post-content,.post-navigation .next-post .next-post-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
@media screen and (min-width: 960px) {
.post-navigation .prev-post .prev-post-content,.post-navigation .next-post .prev-post-content,.post-navigation .prev-post .next-post-content,.post-navigation .next-post .next-post-content {
        align-items: center;
        justify-content: space-between;
    }
      }
.post-navigation .prev-post .prev-post-content .prev-post__thumbnail,.post-navigation .next-post .prev-post-content .prev-post__thumbnail,.post-navigation .prev-post .next-post-content .prev-post__thumbnail,.post-navigation .next-post .next-post-content .prev-post__thumbnail,.post-navigation .prev-post .prev-post-content .next-post__thumbnail,.post-navigation .next-post .prev-post-content .next-post__thumbnail,.post-navigation .prev-post .next-post-content .next-post__thumbnail,.post-navigation .next-post .next-post-content .next-post__thumbnail {
        overflow: hidden;
        border-radius: 8px;
      }
.post-navigation .prev-post .prev-post-content .prev-post__thumbnail img,.post-navigation .next-post .prev-post-content .prev-post__thumbnail img,.post-navigation .prev-post .next-post-content .prev-post__thumbnail img,.post-navigation .next-post .next-post-content .prev-post__thumbnail img,.post-navigation .prev-post .prev-post-content .next-post__thumbnail img,.post-navigation .next-post .prev-post-content .next-post__thumbnail img,.post-navigation .prev-post .next-post-content .next-post__thumbnail img,.post-navigation .next-post .next-post-content .next-post__thumbnail img {
        display: block;
        border-radius: 8px;
        max-height: -moz-fit-content;
        max-height: fit-content;
        width: 160px;
        aspect-ratio: 320 / 198;
        -o-object-fit: contain;
           object-fit: contain;
        height: auto;
        transition: transform 0.6s ease;
      }
.post-navigation .prev-post .prev-post-content .next-post__title--sub,.post-navigation .next-post .prev-post-content .next-post__title--sub,.post-navigation .prev-post .next-post-content .next-post__title--sub,.post-navigation .next-post .next-post-content .next-post__title--sub,.post-navigation .prev-post .prev-post-content .prev-post__title--sub,.post-navigation .next-post .prev-post-content .prev-post__title--sub,.post-navigation .prev-post .next-post-content .prev-post__title--sub,.post-navigation .next-post .next-post-content .prev-post__title--sub {
        font-size: 14px;
        color: #606060;
        color: var(--color-gray);
        margin-bottom: 4px;
      }
.post-navigation .prev-post .prev-post-content .prev-post__title--main,.post-navigation .next-post .prev-post-content .prev-post__title--main,.post-navigation .prev-post .next-post-content .prev-post__title--main,.post-navigation .next-post .next-post-content .prev-post__title--main,.post-navigation .prev-post .prev-post-content .next-post__title--main,.post-navigation .next-post .prev-post-content .next-post__title--main,.post-navigation .prev-post .next-post-content .next-post__title--main,.post-navigation .next-post .next-post-content .next-post__title--main {
        font-weight: bold;
        font-weight: var(--font-weight-bold);
        font-size: 0.9rem;
        font-size: var(--font-size-xs);
      }
.post-navigation .prev-post .prev-post-content,.post-navigation .next-post .prev-post-content {
      flex-direction: row-reverse;
      gap: 16px;
    }
.post-navigation .prev-post .prev-post-content::before {
        position: absolute;
        content: "";
        width: 24px;
        height: 24px;
        background: url("assets/images/icon/btn-arrow_w.svg") no-repeat;
        background-size: contain;
        left: 8px;
        bottom: 42%;
        z-index: 2;
        opacity: 1;
        transition: opacity 0.2s ease-in-out;
        transform: rotate(180deg);
      }
.post-navigation .next-post .prev-post-content::before {
        position: absolute;
        content: "";
        width: 24px;
        height: 24px;
        background: url("assets/images/icon/btn-arrow_w.svg") no-repeat;
        background-size: contain;
        left: 8px;
        bottom: 42%;
        z-index: 2;
        opacity: 1;
        transition: opacity 0.2s ease-in-out;
        transform: rotate(180deg);
      }
.post-navigation .prev-post .prev-post-content:hover::before {
        opacity: 0;
      }
.post-navigation .next-post .prev-post-content:hover::before {
        opacity: 0;
      }
.post-navigation .prev-post .prev-post-content::after {
        position: absolute;
        content: "";
        width: 24px;
        height: 24px;
        background: url("assets/images/icon/btn-arrow_b.svg") no-repeat;
        background-size: contain;
        left: 8px;
        bottom: 42%;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
        transform: rotate(180deg);
      }
.post-navigation .next-post .prev-post-content::after {
        position: absolute;
        content: "";
        width: 24px;
        height: 24px;
        background: url("assets/images/icon/btn-arrow_b.svg") no-repeat;
        background-size: contain;
        left: 8px;
        bottom: 42%;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
        transform: rotate(180deg);
      }
.post-navigation .prev-post .prev-post-content:hover::after {
        opacity: 1;
      }
.post-navigation .next-post .prev-post-content:hover::after {
        opacity: 1;
      }
.post-navigation .prev-post .next-post-content::before {
        position: absolute;
        content: "";
        width: 24px;
        height: 24px;
        background: url("assets/images/icon/btn-arrow_w.svg") no-repeat;
        background-size: contain;
        right: 8px;
        bottom: 42%;
        z-index: 2;
        opacity: 1;
        transition: opacity 0.2s ease-in-out;
      }
.post-navigation .next-post .next-post-content::before {
        position: absolute;
        content: "";
        width: 24px;
        height: 24px;
        background: url("assets/images/icon/btn-arrow_w.svg") no-repeat;
        background-size: contain;
        right: 8px;
        bottom: 42%;
        z-index: 2;
        opacity: 1;
        transition: opacity 0.2s ease-in-out;
      }
.post-navigation .prev-post .next-post-content:hover::before {
        opacity: 0;
      }
.post-navigation .next-post .next-post-content:hover::before {
        opacity: 0;
      }
.post-navigation .prev-post .next-post-content::after {
        position: absolute;
        content: "";
        width: 24px;
        height: 24px;
        background: url("assets/images/icon/btn-arrow_b.svg") no-repeat;
        background-size: contain;
        right: 8px;
        bottom: 42%;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
      }
.post-navigation .next-post .next-post-content::after {
        position: absolute;
        content: "";
        width: 24px;
        height: 24px;
        background: url("assets/images/icon/btn-arrow_b.svg") no-repeat;
        background-size: contain;
        right: 8px;
        bottom: 42%;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
      }
.post-navigation .prev-post .next-post-content:hover::after {
        opacity: 1;
      }
.post-navigation .next-post .next-post-content:hover::after {
        opacity: 1;
      }
.post-navigation .prev-post:hover .prev-post__thumbnail img,.post-navigation .next-post:hover .next-post__thumbnail img {
    transform: scale(1.1);
  }
.post-navigation .prev-post {
    padding: 16px 16px 16px 48px;
  }
.post-navigation .next-post {
    padding: 16px 48px 16px 16px;
  }
.c-link-btn {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-family: sans-serif;
}
.c-link-btn .text {
    margin-right: 16px;
    letter-spacing: 0.18em;
  }
/* 円の部分 */
.c-link-btn .arrow-circle {
    position: relative;
    width: 80px;
    height: 80px;
    border: 1px solid #aeaeae;
    border-radius: 50%;
    overflow: hidden;
    transition: border-color 0.3s ease;
  }
/* 矢印を2つ横に並べるコンテナ */
.c-link-btn .arrow-wrapper {
    display: flex;
    position: absolute;
    top: 0;
    /* 初期状態で1つ分左に隠しておく */
    left: -80px;
    width: 160px;
    height: 80px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
/* 矢印の個別設定 */
.c-link-btn .arrow {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;

    /* 矢印の「直線（棒）」部分 */
  }
.c-link-btn .arrow::before {
      content: "";
      width: 24px;
      height: 2px;
      background-color: #4a86e8;
      position: absolute;
      top: 50%;
      left: 26px;
      transform: translateY(-50%);
    }
/* 矢印の「くの字」部分 */
.c-link-btn .arrow::after {
      content: "";
      width: 12px;
      height: 12px;
      border-top: 2px solid #4a86e8;
      border-right: 2px solid #4a86e8;
      position: absolute;
      top: 50%;
      left: 38px;
      transform: translateY(-50%) rotate(45deg);
    }
/* --- ホバー時の挙動 --- */
/* & は親セレクタ（.c-link-btn）を指します */
.c-link-btn:hover .arrow-wrapper {
      /* 右に80px動かして、隠れていた左側の矢印を中央へ */
      transform: translateX(80px);
    }
.c-link-btn:hover .arrow-circle {
      border-color: #888;
    }
.c-link-btn--back {
  display: inline-flex;
  /* 左右を逆転させる */
  flex-direction: row-reverse;
  gap: 24px;
  align-items: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-family: sans-serif;
}
.c-link-btn--back .text {
    /* 左右逆転に伴いマージンを調整 */
    margin-left: 16px;
    margin-right: 0;
    letter-spacing: 0.18em;
  }
/* 円の部分 */
.c-link-btn--back .arrow-circle {
    position: relative;
    width: 80px;
    height: 80px;
    border: 1px solid #aeaeae;
    border-radius: 50%;
    overflow: hidden;
    transition: border-color 0.3s ease;
  }
/* 矢印を2つ横に並べるコンテナ */
.c-link-btn--back .arrow-wrapper {
    display: flex;
    position: absolute;
    top: 0;
    /* 右側に1つ分隠しておく */
    left: 0;
    width: 160px;
    height: 80px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
/* 矢印の個別設定 */
.c-link-btn--back .arrow {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;

    /* 矢印の「直線（棒）」部分 */
  }
.c-link-btn--back .arrow::before {
      content: "";
      width: 24px;
      height: 2px;
      background-color: #4a86e8;
      position: absolute;
      top: 50%;
      /* 位置を微調整 */
      left: 30px;
      transform: translateY(-50%);
    }
/* 矢印の「くの字」部分（左向き） */
.c-link-btn--back .arrow::after {
      content: "";
      width: 12px;
      height: 12px;
      border-top: 2px solid #4a86e8;
      border-right: 2px solid #4a86e8;
      position: absolute;
      top: 50%;
      left: 30px;
      /* -135度回転で左向きにする */
      transform: translateY(-50%) rotate(-135deg);
    }
/* --- ホバー時の挙動 --- */
.c-link-btn--back:hover .arrow-wrapper {
      /* 左に80px動かして、右に隠れていた矢印を中央へ */
      transform: translateX(-80px);
    }
.c-link-btn--back:hover .arrow-circle {
      border-color: #888;
    }
.c-link-btn--w {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-family: sans-serif;
}
.c-link-btn--w .text {
    margin-right: 16px;
    letter-spacing: 0.18em;
  }
/* 円の部分 */
.c-link-btn--w .arrow-circle {
    position: relative;
    width: 80px;
    height: 80px;
    border: 1px solid #aeaeae;
    border-radius: 50%;
    overflow: hidden;
    transition: border-color 0.3s ease;
  }
/* 矢印を2つ横に並べるコンテナ */
.c-link-btn--w .arrow-wrapper {
    display: flex;
    position: absolute;
    top: 0;
    /* 初期状態で1つ分左に隠しておく */
    left: -80px;
    width: 160px;
    height: 80px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
/* 矢印の個別設定 */
.c-link-btn--w .arrow {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;

    /* 矢印の「直線（棒）」部分 */
  }
.c-link-btn--w .arrow::before {
      content: "";
      width: 24px;
      height: 2px;
      background-color: #4a86e8;
      position: absolute;
      top: 50%;
      left: 26px;
      transform: translateY(-50%);
    }
/* 矢印の「くの字」部分 */
.c-link-btn--w .arrow::after {
      content: "";
      width: 12px;
      height: 12px;
      border-top: 2px solid #4a86e8;
      border-right: 2px solid #4a86e8;
      position: absolute;
      top: 50%;
      left: 38px;
      transform: translateY(-50%) rotate(45deg);
    }
/* --- ホバー時の挙動 --- */
/* & は親セレクタ（.c-link-btn）を指します */
.c-link-btn--w:hover .arrow-wrapper {
      /* 右に80px動かして、隠れていた左側の矢印を中央へ */
      transform: translateX(80px);
    }
.c-link-btn--w:hover .arrow-circle {
      border-color: #888;
    }
.c-link-btn--c {
  text-align: center;
}
@media screen and (min-width: 960px) {
.c-link-btn--c {
    text-align: left;
}
  }
.work-contents {
  width: 100%;
}
.work-contents .work-content {
    z-index: 3;
    display: grid;
    grid-gap: 40px;
    gap: 40px;
    grid-template-columns: 1fr;
    padding-left: 0px;
    margin-bottom: 40px;
    text-align: left;
  }
@media screen and (min-width: 768px) {
.work-contents .work-content {
      z-index: 3;
      display: grid;
      grid-gap: 40px;
      gap: 40px;
      grid-template-columns: 1fr 1fr;
      padding-left: 0px;
      margin-bottom: 40px;
      text-align: left;
  }
    }
.work-contents .work-content .work-content__unity {
      list-style: none;
      z-index: 3;
    }
.work-contents .work-content .work-content__unity .work-content__thumbnail {
        margin-bottom: 16px;
        overflow: hidden;
        width: 100%;
        height: 320px;
      }
.work-contents .work-content .work-content__unity .work-content__thumbnail img {
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          max-height: 320px;
          transition: transform 0.6s ease;
        }
.work-content__unity:hover :is(.work-contents .work-content .work-content__unity .work-content__thumbnail) img {
          transform: scale(1.1);
        }
.work-contents .work-content .work-content__unity .work-content__info {
        position: relative;
        padding-right: 32px;
      }
.work-contents .work-content .work-content__unity .work-content__info::before {
          position: absolute;
          content: "";
          width: 24px;
          height: 24px;
          background: url("assets/images/icon/btn-arrow_w.svg") no-repeat;
          background-size: contain;
          right: 0;
          bottom: 20%;
          z-index: 2;
          opacity: 1;
          transition: opacity 0.2s ease-in-out;
        }
.work-content__unity:hover :is(.work-contents .work-content .work-content__unity .work-content__info)::before {
          opacity: 0;
        }
.work-contents .work-content .work-content__unity .work-content__info::after {
          position: absolute;
          content: "";
          width: 24px;
          height: 24px;
          background: url("assets/images/icon/btn-arrow_b.svg") no-repeat;
          background-size: contain;
          right: 0;
          bottom: 20%;
          z-index: 1;
          opacity: 0;
          transition: opacity 0.2s ease-in-out;
        }
.work-content__unity:hover :is(.work-contents .work-content .work-content__unity .work-content__info)::after {
          opacity: 1;
        }
.work-contents .work-content .work-content__unity .work-content__info .work-content__categories {
          display: flex;
          gap: 8px;
          align-items: center;
          margin-bottom: 8px;
        }
.work-contents .work-content .work-content__unity .work-content__info .work-content__categories .work-content__category {
            display: inline-block;
            font-size: 0.9rem;
            font-size: var(--font-size-xs);
            font-weight: 400;
            font-family: "Poppins", sans-serif;
            color: #397ed6;
            padding: 4px 16px;
            border-radius: 99px;
            border: 1px solid #397ed6;
          }
.work-contents .work-content .work-content__unity .work-content__info .work-content__categories .work-content__sub-category {
            font-size: 0.9rem;
            font-size: var(--font-size-xs);
            color: #b3b3b3;
          }
.work-contents .work-content .work-content__unity .work-content__info .work-content__title {
          font-size: 1.125rem;
          font-size: var(--font-size-ss);
          font-weight: bold;
          font-weight: var(--font-weight-bold);
          font-family: "Poppins", "Noto Sans JP", sans-serif;
          color: #191d25;
          color: var(--color-black);
          margin-bottom: 8px;
        }
.work-contents .work-content .work-content__unity .work-content__info .work-content__overview {
          font-size: 0.9rem;
          font-size: var(--font-size-xs);
          color: #191d25;
          color: var(--color-black);
        }
/* エントリーファイル自体のスタイル */
body {
  margin: 0;
  background-color: #fff;
  background-color: var(--color-white);
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}
.bg_imgfull {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  /* 背景画像の設定 */
  background-image: url("assets/images/top/bg_main.jpg");
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.grecaptcha-badge {
  visibility: hidden;
}
