/* * {
  outline: 1px solid red;
} */

/* 共通ここから---------------------------- */
/* font */
.en-font {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.num-font {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
/* ボタン */
.btn {
  font-size: 15px;
  background-image: linear-gradient(90deg, #3296fa 0%, #4884ce 80%);
  padding: 12px 40px 12px 20px;
  border-radius: 6px;
  color: var(--color-bg-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
  border: 1px solid transparent;
  transition: 0.6s;
  box-sizing: border-box;
  will-change: transform;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/icon-arrow-hover.svg);
  background-size: cover;
  background-position: center;
  position: absolute;
  right: 30px;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.3s ease;
}
.btn::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-bg-white);
  position: absolute;
  right: 20px;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .btn:hover {
    background-image: none;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-main-blue);
    color: var(--color-main-blue);
  }
  .btn:hover::before {
    opacity: 1;
    transform: translateX(16px);
  }
  .btn:hover::after {
    transform: translateX(12px);
  }
}
/* TOP：h2タイトル */
.title-wrap {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
}
.is-jp {
  font-size: 16px;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.is-jp::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../img/icon-dot-6px.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.is-en {
  font-size: 42px;
  font-weight: normal;
  letter-spacing: 10%;
  color: var(--color-main-blue);
  line-height: 1.4;
}
/* TOP：h3サブタイトル */
.subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 4%;
  padding-bottom: 16px;
}
/* TOP：説明文 */
.section-description {
  line-height: 1.8;
  letter-spacing: 4%;
}
@media (max-width: 1080px) {
  .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .is-jp {
    font-size: 14px;
  }
  .is-en {
    font-size: 32px;
  }
  .subtitle {
    font-size: 17px;
    padding-bottom: 32px;
  }
}

/* 共通ここまで---------------------------- */

/* ヘッダーここから---------------------------- */
.header {
  margin: 32px 0;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-header);
  transition: opacity 0.3s;
}
.header.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.header__logo {
  width: 302px;
}
.header__nav-inner {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 12px 12px 12px 24px;
  border-radius: 8px;
  border: solid 1px var(--color-bg-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__item {
  line-height: 1.4;
  margin-left: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.header__item:first-child {
  margin-left: 0;
}
.header__item:not(:last-child):before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("../img/icon-dot-6px.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (any-hover: hover) {
  .header__item:hover {
    color: var(--color-main-blue);
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .header__nav {
    font-size: 13px;
    white-space: nowrap;
  }
  .header__item {
    margin-left: 16px;
  }
  .header__item:first-child {
    margin-left: 0;
  }
  .header-btn {
    font-size: 13px;
    padding: 10px 34px 10px 16px;
  }
  .header__nav-inner {
    padding: 6px 8px 6px 12px;
  }
}
@media (max-width: 767px) {
  .header {
    display: block;
  }
  .header__logo {
    width: 208px;
  }
  .header__sp {
    width: 300px;
    background-color: rgba(234, 234, 234, 0.8);
    border-radius: 4px;
    border: solid 1px var(--color-bg-gray);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 32px;
    left: 50%;
    translate: -50% 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    z-index: var(--z-header);
  }
  .hamburger-btn {
    width: 50%;
    border-right: solid 0.5px var(--color-line-gray);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }
  .hamburger__line-wrap {
    width: 18px;
    height: 8px;
    position: relative;
  }
  .hamburger__line {
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: var(--color-main-blue);
    transition:
      transform 0.3s ease,
      top 0.3s ease,
      bottom 0.3s ease;
  }
  .hamburger__line--1 {
    top: 0;
  }
  .hamburger__line--2 {
    bottom: 0;
  }
  .is-active .hamburger__line--1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .is-active .hamburger__line--2 {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .hamburger__text-cotact {
    width: 50%;
    font-weight: bold;
    font-size: 14px;
    color: var(--color-main-blue);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
  }
  .hamburger__text-cotact::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon-arrow-blue.svg);
    background-size: cover;
    background-position: center;
  }
  .hamburger__text-wrap {
    position: relative;
    overflow: hidden;
    display: inline-block;
    height: 1em;
    width: 100%;
  }
  .hamburger__text-nav {
    display: block;
    transition: transform 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 8%;
    color: var(--color-main-blue);
    line-height: 1;
  }
  .hamburger__text-menu {
    transform: translateY(0);
  }
  .hamburger__text-close {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(100%);
  }
  .is-active .hamburger__text-menu {
    transform: translateY(-100%);
  }
  .is-active .hamburger__text-close {
    transform: translateY(0);
  }
  /* ハンバーガー中身 */
  .hamburger-menu {
    position: fixed;
    width: 100%;
    height: auto;
    inset: 0;
    background-image: linear-gradient(
      180deg,
      rgba(50, 150, 250, 0.95) 0%,
      rgba(72, 132, 206, 0.95) 80%
    );
    padding: 16px;
    text-align: center;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }
  .hamburger-menu.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  .menu-logo {
    display: block;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.5);
    border: solid 1px var(--color-bg-white);
    border-radius: 4px;
  }
  .menu-logo img {
    width: 208px;
  }
  .hamburge__menu-nav {
    margin-top: 32px;
  }
  .hamburge__nav-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-bg-white);
    padding: 16px 20px;
    border-bottom: solid 0.5px var(--color-bg-white);
  }
  .hamburge__nav-item a::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../img/icon-arrow-blue.svg);
    background-size: cover;
    background-position: center;
  }

  .hamburge__nav-text {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .hamburge__nav-text-en {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 8%;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hamburge__nav-text-en::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url(../img/icon-dot-6px.svg);
    background-size: cover;
    background-position: center;
  }
  .hamburge__nav-text-ja {
    font-size: 10px;
  }
  .hamburge__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    color: var(--color-bg-white);
  }
  .hamburge__tel-label {
    font-size: 22px;
    display: flex;
    align-items: center;
  }
  .hamburge__tel-label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../img/icon-tel.svg);
    background-size: cover;
    background-position: center;
  }
  .hamburge__tel-number {
    font-size: 28px;
    font-weight: 500;
  }
  .hamburge__instagram {
    margin-top: 8px;
    display: inline-block;
  }
}
/* ヘッダーここまで---------------------------- */

/* mvここから----------------------------  */
.mv {
  position: relative;
}
.mv-img {
  width: 90%;
  margin-left: auto;
  border-radius: 0 0 0 20px;
}
.mv-layer {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.line-animation--mv {
  position: absolute;
  bottom: -23%;
}
.mv-copy {
  position: absolute;
  width: 45%;
  top: 28%;
  left: 16%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mv-copy__item {
  display: block;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: copyFade 1.2s forwards;
}
.mv-copy__item--1 {
  width: 100%;
  margin-bottom: 12px;
}
.mv-copy__item--1 img {
  width: 100%;
}
.mv-copy__item--2 {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-main-blue);
  letter-spacing: 4%;
  text-align: right;
  animation-delay: 1s;
  white-space: nowrap;
}
.mv-copy__item--2 span {
  color: var(--color-main-blue);
  animation: spanColorChange 0.8s forwards;
}

.mv-copy__item--2 span:nth-of-type(1) {
  animation-delay: 2s;
}

.mv-copy__item--2 span:nth-of-type(2) {
  animation-delay: 2.8s;
}

.mv-copy__item--2 span:nth-of-type(3) {
  animation-delay: 3.6s;
}

@keyframes copyFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spanColorChange {
  from {
    color: var(--color-main-blue);
  }
  to {
    color: var(--color-accent-orange);
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .mv {
    height: 100vh;
  }
  .mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mv-copy {
    width: 56%;
    top: 26%;
    left: 6%;
  }
  .line-animation--mv {
    bottom: 0;
  }
  .mv-copy__item--2 {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .mv {
    height: 100vh;
  }
  .mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: unset;
  }
  .mv-copy {
    width: 100%;
    top: 18%;
    left: 0;
  }
  .line-animation {
    animation: draw 2s ease forwards;
    bottom: -13%;
  }
  .mv-copy__item--1 {
    width: 70%;
    margin-inline: auto;
  }
  .mv-copy__item--2 {
    margin-top: 6%;
    margin-left: 8%;
    width: 35%;
    line-height: 2.6;
    text-align: left;
  }
}
@media (max-width: 460px) {
  .mv-copy__item--1 {
    width: 86%;
    margin-inline: auto;
  }
  .mv-copy__item--2 {
    font-size: 14px;
    margin-top: 32px;
    margin-left: 6%;
    width: 60%;
    line-height: 2;
    text-align: left;
  }
  .line-animation {
    bottom: 5%;
  }
}
/* mvここまで----------------------------  */

/* introここから----------------------------  */
.intro {
  padding-top: 120px;
}
.message-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  padding-left: 18%;
}
.copy-en {
  font-size: 16px;
  letter-spacing: 7%;
  color: var(--color-main-blue);
}
.intro__content {
  margin-top: 40px;
  display: grid;
  grid-template-columns:
    32%
    1fr
    25%;
  gap: clamp(24px, 4vw, 80px);
}
.intro__img img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.intro__img-main {
  padding-top: 120px;
}
.intro__img-main img {
  border-radius: 0 10px 10px 0;
}
.into__text {
  padding-top: 160px;
}
.into__text p {
  line-height: 2.1;
  letter-spacing: 8%;
  padding-bottom: 1.6em;
}
.btn--company {
  margin-top: 32px;
}
.intro__gallery {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 80px;
  margin-right: 10%;
}
.intro__img-sub--1 {
  translate: -50% 0;
}
.intro__img-sub--3 {
  margin-top: 90px;
  translate: -40% 0;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .intro__content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 0;
    padding: 0 8%;
  }
  .intro__img-main {
    order: 3;
    width: 100%;
  }
  .intro__gallery {
    order: 2;
    width: 45%;
    gap: 64px 0;
    margin-top: 64px;
    margin-right: 0;
  }
  .into__text {
    order: 1;
    width: 55%;
  }
  .intro__img-sub--1 {
    translate: -15% 0;
  }
  .intro__img-main .pc-only {
    display: none;
  }
  .intro__img-main .sd-only {
    display: block;
    border-radius: 4px;
    margin-top: -40px;
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .intro {
    padding-top: 64px;
    text-align: center;
  }
  .message-copy {
    padding: 24px 8%;
  }
  .intro__content {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 56px;
    position: relative;
  }
  .img-sub--1 {
    margin-inline: auto;
  }
  .intro__gallery {
    gap: 320px;
    margin-right: 0;
  }
  .intro__img-sub--1 {
    translate: unset;
  }
  .intro__img-sub--3 {
    /* margin-top: unset; */
    translate: unset;
  }

  .into__text {
    text-align: left;
    margin: 0 24px;
    padding-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .intro__text-sp-top {
    position: absolute;
    padding: 0 7%;
    top: 256px;
  }
  .intro__gallery-sp-bottom {
    display: flex;
    gap: 26px;
    margin-inline: auto;
    width: 90%;
    justify-content: center;
  }
  .intro__text-sp-bottom {
    width: 100%;
    padding: 0 2%;
    max-width: 570px;
    /* margin-left: auto; */
  }
  .intro__img-main {
    max-width: 80%;
    padding-top: 32px;
  }
}
/* introここまで----------------------------  */

/* workここから----------------------------  */
.works {
  margin: 152px 4.5%;
  background-color: var(--color-bg-gray);
  padding: 6.7%;
  border-radius: 20px;
  border: solid 1px #eeeeee;
}
.works__content-wrap {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 56px;
  padding-bottom: 64px;
}
.work-text p {
  padding-bottom: 1.6em;
}
.works__body {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 56px;
}
.works__body.is--sp {
  display: none;
}
.works__list {
  width: 100%;
}
.works__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: solid 1px var(--color-line-gray);
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 8%;
  pointer-events: visible;
  margin-right: 52px;
  transition: 0.3s;
}
.btn-icon {
  width: 24px;
  height: 24px;
  background-color: var(--color-main-blue);
  border: solid 1px var(--color-main-blue);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-icon::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../img/icon-arrow.svg);
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.3s ease;
}
.btn-icon::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../img/icon-arrow-hover.svg);
  background-size: cover;
  position: absolute;
  top: 50%;
  left: calc(50% - 20px);
  translate: -50% -50%;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.3s ease;
}
.btn-icon img {
  width: 14px;
  height: 14px;
}
@media (any-hover: hover) {
  .works__item a:hover {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--color-main-blue);
  }
  .works__item a:hover .btn-icon {
    background-color: var(--color-bg-white);
  }
  .works__item a:hover .btn-icon::after {
    transform: translateX(18px);
  }
  .works__item a:hover .btn-icon::before {
    opacity: 1;
    transform: translateX(20px);
  }
}
.works__images-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.works__images {
  position: relative;
  aspect-ratio: 544/460;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.works__image {
  position: absolute;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
  border: solid 4px var(--color-bg-white);
}
.works__image.is-active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1080px) {
  .works__body {
    grid-template-columns: 42% 1fr;
    gap: 32px;
  }
  .works__content-wrap {
    display: block;
  }
  .subtitle-wrap--works {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .work-text {
    margin-top: 32px;
  }
  .works__item a {
    font-size: 16px;
    padding: 12px 6px;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .works {
    margin: 72px 0;
    padding: 64px 6%;
  }
  .works__content-wrap {
    position: relative;
  }
  .btn--works {
    position: absolute;
    bottom: 0;
  }
  .works__body.is--pc {
    display: none;
  }
  .works__body.is--sp {
    display: block;
  }
  .works__list--sp {
    margin-top: 40px;
  }
  .works-card--sp {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 32px 0;
    border-bottom: solid 1px var(--color-line-gray);
  }
  .works-card__content--sp {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .works-card__title--sp {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .works-card__subtitle--sp {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 4%;
    color: var(--color-main-blue);
  }

  .works-card__btn--sp {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .works-card__btn--sp::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../img/icon-arrow-blue.svg);
    background-size: cover;
    background-position: center;
  }
  .works-card__image--sp {
    width: 38%;
  }
  .works-card__image--sp img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
}
/* workここまで----------------------------  */
/* recruitここから----------------------------  */
.recruit {
  margin-bottom: 160px;
}
.recruit__inner {
  display: flex;
  justify-content: space-between;
}
.recruit__image-wrap {
  width: 53.3%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.recruit__image {
  width: 100%;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.recruit__content-wrap {
  width: 42.2%;
  padding-right: 64px;
}
.recruit-text {
  padding-top: 40px;
}
.recruit-text p {
  padding-bottom: 1.6em;
}
.recruit__gallery {
  position: relative;
  padding-top: 156px;
}
.line-animation--recruit {
  position: absolute;
  top: -14%;
  stroke-dashoffset: -2500;
}
.recruit__slider {
  overflow: hidden;
  z-index: 10;
}
.recruit__track {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  animation: recruit-flow 60s linear infinite;
  width: max-content;
}
.recruit__group {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}
.recruit__track img {
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.recruit-image01 {
  aspect-ratio: 408/266;
}
.recruit-image02 {
  aspect-ratio: 288/246;
}
.recruit-image03 {
  aspect-ratio: 426/276;
}
.recruit-image04 {
  aspect-ratio: 246/246;
}
.recruit-image05 {
  aspect-ratio: 406/276;
}
.recruit-image06 {
  aspect-ratio: 256/256;
}
@keyframes recruit-flow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50%));
  }
}
.recruit-image01,
.recruit-image04 {
  margin-top: 24px;
}
.recruit-image03,
.recruit-image05 {
  margin-top: 64px;
}
@media (max-width: 1080px) {
  .recruit__inner {
    display: block;
  }
  .recruit__image-wrap {
    width: 80%;
  }
  .recruit__content-wrap {
    width: 100%;
    padding: 0 6%;
  }
}
@media (max-width: 767px) {
  .recruit {
    margin-bottom: 32px;
  }
  .recruit__inner {
    display: block;
    padding: 0 6%;
    position: relative;
  }
  .subtitle-wrap--recruit {
    padding-top: 32px;
  }
  .recruit__image-wrap {
    padding-top: 72px;
    width: 100%;
  }
  .recruit__image {
    border-radius: 10px;
  }
  .recruit-text {
    padding-top: 0;
    order: 1;
  }
  .recruit__content-wrap {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .title-wrap--recruit {
    position: absolute;
    top: 0;
  }
  .btn--recruit {
    order: 2;
  }
  .recruit__gallery {
    padding-top: 64px;
  }
  .recruit__track {
    animation: recruit-flow 50s linear infinite;
  }
  .recruit-image01 {
    width: 326px;
  }
  .recruit-image02 {
    width: 230px;
  }
  .recruit-image03 {
    width: 340px;
  }
  .recruit-image04 {
    width: 196px;
  }
  .recruit-image05 {
    width: 324px;
  }
  .recruit-image06 {
    width: 204px;
  }
}
/* recruitここまで----------------------------  */
/* newsここから----------------------------  */
.news {
  background: linear-gradient(
    to bottom,
    rgba(152, 198, 231, 0.2) 0%,
    rgba(222, 233, 240, 0.3) 20%,
    rgba(252, 226, 161, 0.5) 100%
  );
  position: relative;
  margin-bottom: 160px;
}
.news::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  aspect-ratio: 1692/218;
  bottom: 0;
  background-image: url("../img/news-bg.svg");
  background-size: contain;
  background-position: center;
}
.news__inner {
  padding: 112px 32px 232px;
  max-width: 980px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.news__list {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
}
.news-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  align-items: center;
  gap: 36px;
  border-bottom: solid 1px var(--color-line-gray);
  transition: 0.3s;
  pointer-events: visible;
}
.news-item a {
  display: grid;
  grid-template-columns: subgrid;
  padding: 32px 20px;
  grid-column: 1/-1;
  align-items: center;
  gap: 36px;
  transition: 0.3s;
}
.news-date {
  color: var(--color-keyword);
}
.news-category {
  padding: 2px 12px;
  font-size: 12px;
  background-color: var(--color-bg-white);
  border-radius: 2px;
  border: solid 1px var(--color-main-blue);
  text-align: center;
  color: var(--color-main-blue);
  transition: 0.3s;
}
.news-title {
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 6%;
}
@media (any-hover: hover) {
  .news-item:hover {
    background-color: rgba(255, 255, 255, 0.7);
  }
  .news-item:hover .news-title {
    color: var(--color-main-blue);
  }
  .news-item a:hover .btn-icon {
    background-color: var(--color-bg-white);
  }
  .news-item a:hover .btn-icon::after {
    transform: translateX(18px);
  }
  .news-item a:hover .btn-icon::before {
    opacity: 1;
    transform: translateX(20px);
  }
}

@media (max-width: 767px) {
  .news {
    margin-bottom: 64px;
  }
  .news__inner {
    display: block;
    padding: 56px 6% 172px 6%;
    position: relative;
  }
  .btn--news {
    position: absolute;
    bottom: 80px;
    z-index: 10;
  }
  .news-item {
    padding: 24px 20px;
  }
  .news-item a {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
  }
  .news-category {
    width: 76px;
  }
  .news-title {
    width: calc(100% - 48px);
  }
  .news::after {
    aspect-ratio: 390/120;
    background-size: cover;
    background-position: 580px center;
  }
}

/* newsここまで----------------------------  */
/* instagramここから----------------------------  */
.instagram {
  padding: 0 64px;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 64px;
}
.instagram__header {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.title-wrap--instagram {
  width: 20%;
}
.instagram__list {
  width: 69.45%;
}
.insta-btn {
  background-image: linear-gradient(90deg, #3296fa 0%, #4884ce 80%);
  padding: 12px 20px;
  border-radius: 6px;
  color: var(--color-bg-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
  border: 1px solid transparent;
  transition: 0.6s;
  box-sizing: border-box;
  will-change: transform;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.insta-btn::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("../img/icon-instagram-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
.insta-btn::after {
  display: none;
}

@media (any-hover: hover) {
  .insta-btn:hover {
    background-image: none;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-main-blue);
    color: var(--color-main-blue);
  }
  .insta-btn:hover::before {
    background-image: url("../img/icon-instagram-blue.svg");
  }
}

@media (max-width: 1080px) {
  .instagram {
    padding: 0 6%;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 64px;
  }
  .instagram__header {
    align-items: center;
    display: contents;
  }
  .title-wrap--instagram {
    width: 100%;
    text-align: center;
    padding-bottom: 0;
  }
  .instagram__header {
    width: 100%;
  }
  .insta-btn {
    order: 1;
  }
  .instagram__list {
    width: 100%;
  }
}
/* instagramここまで----------------------------  */

/* SDGsここから----------------------------  */
.sdgs-banner {
  max-width: 640px;
  width: 40%;
  margin-inline: auto;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .sdgs-banner {
    width: 80%;
  }
  .sdgs-banner img {
    margin-inline: auto;
  }
}
/* SDGsここまで----------------------------  */
/* logoスライダーここから-------------------- */
.logo__slider {
  overflow: hidden;
  z-index: 10;
  padding: 112px 0 96px 0;
}
.logo__slider-track {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  animation: logo-slider 60s linear infinite;
}
.logo__slider-track img {
  flex-shrink: 0;
}
@keyframes logo-slider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50%));
  }
}

@media (max-width: 767px) {
  .logo__slider {
    padding: 10% 0;
  }
  .logo__slider-track img {
    max-width: 200%;
    animation: logo-slider 30s linear infinite;
  }
}
/* logoスライダーここまで-------------------- */
/* footerここから----------------------------  */
.footer {
  background-color: var(--color-bg-gray);
  padding-bottom: 32px;
}
.cta__outer {
  background-image: linear-gradient(
    var(--color-bg-white) 50%,
    var(--color-bg-gray) 50%
  );
  position: relative;
}
.cta {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
  background-color: var(--color-main-blue);
  border-radius: 10px;
  margin-bottom: 112px;
}
.cta__inner {
  display: flex;
}
.cta__image {
  border-radius: 10px 0px 0px 10px;
  width: 50%;
  object-fit: cover;
}
.cta__body {
  padding: 64px 0;
  color: var(--color-bg-white);
  display: block;
  width: 50%;
  text-align: center;
}
.title-wrap--contact {
  text-align: center;
  margin-inline: auto;
  padding-bottom: 32px;
}
.title-wrap--contact .is-jp {
  display: block;
}
.title-wrap--contact .is-en {
  display: block;
  color: var(--color-bg-white);
  font-size: 36px;
}
.cta-contact-wrap {
  padding-top: 32px;
  border-top: solid 1px var(--color-bg-white);
}
.cta__content-wrap {
  display: inline-flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  padding-top: 32px;
  border-top: solid 1px var(--color-bg-white);
  margin-inline: auto;
}
.cta-tel-wrap {
  text-align: right;
}
.cta-contact {
  display: flex;
  align-items: center;
}
.contact-tel::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(../img/icon-tel.svg);
  background-size: cover;
  background-position: center;
}
.contact-label {
  font-size: 22px;
  letter-spacing: 10%;
  padding: 0 16px 0 8px;
}
.contact-number {
  font-size: 32px;
  letter-spacing: 4%;
  line-height: 1.3;
}
.contact-hours {
  font-size: 15px;
  letter-spacing: 4%;
}
.contact-closed {
  font-size: 12px;
  letter-spacing: 4%;
}
.contact-fax::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(../img/icon-fax.svg);
  background-size: cover;
  background-position: center;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 100vh;
  background-color: var(--color-bg-white);
  color: var(--color-main-blue);
  border: solid 1px var(--color-bg-white);
  transition: 0.3s;
  z-index: 30;
}
.cta-btn::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url(../img/icon-mail.svg);
  background-size: cover;
  background-position: center;
}
.line-animation--footer {
  position: absolute;
  width: 80%;
  bottom: -25%;
}
.footer__inner {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-list {
  display: flex;
  gap: 32px;
}
.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.footer-item:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../img/icon-dot-6px.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer-body {
  margin-top: 40px;
  border-top: solid 1px var(--color-line-gray);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
}
.footer-info {
  display: flex;
  gap: 72px;
}
.footer-office-title {
  font-size: 16px;
  font-weight: bold;
}
.footer-address {
  font-style: normal;
}
.footer-sdg {
  width: 196px;
  height: 80px;
  border-radius: 8px;
}
.footer-aside {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
  color: #6f6d6d;
}
.fotter-privacypolicy {
  font-size: 14px;
}
@media (any-hover: hover) {
  .cta-btn:hover {
    background-color: var(--color-main-blue);
    color: var(--color-bg-white);
    transition-delay: 0.1s;
  }
  .cta-btn:hover::before {
    background-image: url(../img/icon-mail-hover.svg);
    transition-delay: 0.1s;
  }
  .footer-item:hover {
    color: var(--color-main-blue);
  }
}
@media (max-width: 1080px) {
  .title-wrap--contact .is-en {
    font-size: 30px;
  }
  .contact-number {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .cta {
    width: 100%;
    margin-bottom: 56px;
  }
  .cta__inner {
    flex-direction: column;
  }
  .cta__image {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
  .cta__body {
    width: 80%;
    margin-inline: auto;
  }
  .title-wrap--contact .is-en {
    font-size: 28px;
    font-weight: normal;
  }
  .contact-tel::before {
    width: 18px;
    height: 18px;
  }
  .contact-fax::before {
    width: 18px;
    height: 18px;
  }
  .contact-label {
    font-size: 16px;
  }
  .contact-number {
    font-size: 24px;
  }
  .footer__inner {
    width: 100%;
    padding: 0 32px;
  }
  .footer-nav {
    display: block;
  }
  .footer-nav img {
    width: 208px;
  }
  .footer-list {
    margin-top: 32px;
    flex-direction: column;
    gap: 12px;
  }
  .footer-body {
    display: block;
  }
  .footer-info {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
  }
  .footer-sdg {
    margin-top: 24px;
  }
  .footer-aside {
    flex-wrap: wrap;
    gap: 16px;
  }
  .fotter-privacypolicy {
    font-size: 13px;
  }
  .footer-copyright {
    font-size: 13px;
  }
  .line-animation--footer.sp-only {
    width: 60%;
    right: 0;
  }
}

/* footerここまで----------------------------  */

/* 下層ページ共通ここから-----------------------  */
/* fv */
.page__fv {
  padding-top: 160px;
  background-color: var(--color-bg-gray);
  position: relative;
}
.page__title-wrap {
  width: 78%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  z-index: 10;
  position: relative;
}
.page__title--jp {
  font-size: 16px;
  letter-spacing: 6%;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 4px;
}
.page__title--jp::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-dot-6px.svg);
  background-size: cover;
  background-position: center;
}
.page__title--en {
  font-size: 42px;
  color: var(--color-main-blue);
  line-height: 1;
  letter-spacing: 10%;
}
.page__fv-image-wrap {
  padding-top: 24px;
  position: relative;
  background-image: linear-gradient(
    rgba(244, 244, 244, 0.7) 50%,
    var(--color-bg-white) 50%
  );
  overflow: hidden;
}
.page__fv-image {
  width: 78%;
  margin-inline: auto;
  border-radius: 20px;
  aspect-ratio: 1120/454;
  object-fit: cover;
  z-index: 15;
  position: relative;
}
.page__fv-image.is--recruit {
  object-position: center -48px;
}
.logo__slider.is--page {
  background-color: var(--color-bg-white);
}
.page__intro {
  padding: 64px 2% 80px 2%;
  text-align: center;
  background-color: var(--color-bg-white);
  display: grid;
  grid-template-columns: 18% 1fr 18%;
}
.page_intro-copy {
  margin-inline: auto;
}
.message-copy--company,
.message-copy--recruit {
  padding-left: 0;
}
.message-copy--works {
  padding-left: 0;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.message-copy--works .copy-en {
  margin-top: 4px;
}
.page__intro-text {
  line-height: 2.1;
  letter-spacing: 7%;
  margin-top: 32px;
}
.page__intro-gallery {
  position: relative;
}
.page__intro-gallery img {
  border-radius: 4px;
}
.gallery-image-left {
  position: absolute;
  bottom: -30%;
  right: 0;
}
.gallery-image-right {
  position: absolute;
  top: 0;
  right: 32px;
}
.line-animation--page-intro {
  position: absolute;
  top: 3%;
}

/* h2タイトル */
.page__section-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.page__section-title.is--center {
  align-items: center;
}
.page__section-title--en {
  font-size: 16px;
  font-weight: 100;
  color: var(--color-main-blue);
  letter-spacing: 8%;
  line-height: 1;
}
.page__section-title--jp {
  font-size: 26px;
  font-weight: 500;
  color: var(--color-keyword);
  line-height: 1;
  letter-spacing: 4%;
}
/* container */
.page__container {
  width: 90%;
  max-width: 1120px;
  margin-inline: auto;
  margin-bottom: 80px;
}
.page__container--s {
  width: 80%;
  max-width: 928px;
  margin-inline: auto;
}
@media (max-width: 1080px) {
  .page__intro {
    display: flex;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 0;
    justify-content: space-between;
    gap: 3%;
  }
  .message-copy--works {
    display: block;
  }
  .page__intro-contet {
    text-align: left;
    padding-right: 5%;
  }
  .page__intro-gallery.is-left {
    order: 1;
  }
  .gallery-image-left {
    position: relative;
  }
  .page__intro-gallery.is-right {
    order: 2;
  }
  .gallery-image-right {
    position: relative;
    right: 0;
  }
}
@media (max-width: 820px) {
  .page__intro-gallery.is-left {
    order: 1;
  }
  .gallery-image-left {
    position: relative;
  }
  .page__intro-gallery.is-right {
    order: 2;
  }
  .gallery-image-right {
    position: relative;
    margin-left: auto;
    right: unset;
    margin-top: -160px;
  }
  .page__intro {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 10%;
  }
  .page__intro-contet {
    margin-inline: auto;
  }
  .message-copy--works {
    display: inline-flex;
    align-items: center;
  }
  .page__intro-text .pc-only {
    display: none;
  }
  .page__intro-gallery img {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .page__fv {
    padding-top: 112px;
  }
  .page__container,
  .page__container--s {
    width: 100%;
    padding: 0 6%;
  }
  .page__intro {
    padding-bottom: 0;
  }
  .page__title-wrap {
    width: 100%;
    padding: 0 6%;
  }
  .page__title--jp {
    font-size: 15px;
  }
  .page__title--jp::before {
    width: 20px;
    height: 20px;
  }
  .page__title--en {
    font-size: 28px;
  }
  .page__fv-image-wrap {
    padding-bottom: 40px;
  }
  .page__fv-image {
    width: 88%;
    aspect-ratio: 342/216;
  }
  .page__fv-image.is--recruit {
    object-position: -7px center;
  }
  .page__intro-contet {
    padding-right: 0;
    margin-inline: auto;
  }
  .message-copy--company {
    width: 100%;
  }
  .message-copy--works img {
    width: 50%;
  }
  .logo__slider.is--page {
    padding: 14% 0;
  }
  .logo__slider.is--page img {
    width: 860px;
  }
  .line-animation--page-intro {
    top: 9%;
  }
  .page__section-title--en {
    font-size: 15px;
  }
  .page__section-title--jp {
    font-size: 22px;
  }
}
@media (max-width: 580px) {
  .gallery-image-right {
    margin-top: unset;
  }
  .page__intro-gallery img {
    width: 60%;
  }
}

/* 下層ページ共通ここまで-----------------------  */

/* 会社概要ここから-----------------------  */
/* 社長挨拶 */
.page__company-message {
  margin-bottom: 88px;
}
.company-message__inner {
  display: flex;
  gap: 6%;
}
.company-message__imaage {
  width: 42%;
  min-width: 264px;
}
.company-message__imaage img {
  border-radius: 10px;
  aspect-ratio: 352/384;
  object-fit: cover;
}
.company-message__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.company-message__text p {
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}
.company-message__profile {
  margin-top: 16px;
}
.company-message__position {
  font-size: 15px;
  color: var(--color-keyword);
  letter-spacing: 4%;
}
.company-message__name {
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.company-message__name--jp {
  font-size: 18px;
  font-weight: 500;
}
.company-message__name--en {
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 8%;
  color: #18447b;
}

/* 会社概要 */
.page__company-profile {
  background-color: var(--color-bg-gray);
  padding: 132px 0;
  position: relative;
}
.page__company-profile::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  aspect-ratio: 1692/218;
  bottom: 0;
  background-image: url("../img/contact-profile-bg.svg");
  background-size: contain;
  background-position: center;
}
.page__company-prohile-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page__company-date-wrap {
  width: 74%;
  min-width: 640px;
  max-width: 832px;
  margin-inline: auto;
  background-color: rgba(255, 255, 255, 0.7);
  border: solid 2px var(--color-bg-white);
  padding: 56px 7%;
  border-radius: 20px;
  z-index: 10;
}
.date-row {
  display: grid;
  grid-template-columns: 136px 1fr;
}
.date-dt,
.date-dd {
  padding: 24px 0;
}
.date-dt {
  border-bottom: solid 1px var(--color-main-blue);
  color: var(--color-main-blue);
}
.date-dd {
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: solid 1px var(--color-line-gray);
}
.date-dd span {
  display: block;
}
.dd-address {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.map-link {
  display: flex;
  align-items: center;
  text-decoration: underline;
  transition: 0.3s;
}
.map-link::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../img/company-icon-mappin.svg);
  background-size: cover;
  background-position: center;
}
@media (any-hover: hover) {
  .map-link:hover {
    opacity: 0.5;
  }
}
/* 標識 */
.page__company-sign {
  margin: 88px 0 132px 0;
}
.page__company-sign-inner {
  margin-inline: auto;
}
.page__section-title--sign {
  text-align: center;
}
.sign-image {
  width: 640px;
  display: block;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .company-message__inner {
    display: block;
  }
  .company-message__imaage {
    width: 100%;
    max-width: 464px;
    margin-inline: auto;
  }
  .company-message__imaage img {
    aspect-ratio: 342/240;

    margin-inline: auto;
    object-position: top center;
  }
  .company-message__content {
    margin-top: 20px;
  }
  .page__company-profile {
    padding: 64px 0 40px 0;
  }
  .page__company-date-wrap {
    min-width: unset;
    width: 100%;
    padding: 0 6% 32px 6%;
  }
  .date-row {
    display: block;
  }
  .date-dt {
    padding: 10px 0;
  }
  .date-dd {
    border-bottom: none;
    padding: 10px 0 24px 0;
  }
  .dd-address {
    flex-wrap: wrap;
  }
  .page__company-profile::after {
    aspect-ratio: 390 / 120;
    background-size: cover;
    background-position: 580px center;
  }
  .page__company-sign {
    margin: 48px 0;
  }
}
/* 会社概要ここまで----------------------- */

/* 仕事内容ここから----------------------- */
.works-work__block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 120px 0;
  border-bottom: solid 1px var(--color-line-gray);
}
.works-work__block:first-child {
  padding-top: 0;
}
.works-work__block:last-child {
  border: unset;
}
.works-work__block.is--reverse {
  flex-direction: row-reverse;
}
.works-work__card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 60%;
}
.works-wrok__card-header {
  display: flex;
  align-items: center;
}
.works-work__title-wrap {
  display: flex;
  flex-direction: column;
}
.works-work__title-jp {
  font-size: 30px;
  letter-spacing: 8%;
  color: var(--color-keyword);
  line-height: 1;
}
.works-work__title-en {
  font-size: 16px;
  letter-spacing: 7%;
  color: var(--color-main-blue);
}
.works-work__number {
  font-size: 96px;
  font-weight: 500;
  color: var(--color-line-gray);
  opacity: 0.2;
  margin-left: -20px;
  line-height: 1;
}
.works-work__description {
  padding: 0 20px;
  border-left: solid 4px #d8eaff;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 4%;
}
.works-work__description span {
  font-weight: bold;
  color: #18447b;
}
.works-work__list {
  min-height: 188px;
  background-color: #f3fbff;
  border-radius: 10px;
  border: solid 1px #e9f8ff;
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  letter-spacing: 4%;
}
.works-work__list.is--small {
  height: 163px;
  min-height: auto;
}
.works-work__list::after {
  content: "";
  display: block;
  width: 14%;
  aspect-ratio: 91/100;
  background-image: url(../img/works-list-icon.svg);
  background-size: cover;
  background-position: center;
  position: absolute;
  background-repeat: no-repeat;
  bottom: 8px;
  right: 8px;
}
.works-work__list-item {
  position: relative;
  padding-left: 16px;
}
.works-work__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-main-blue);
}
.workscard-image {
  height: 100%;
}
.workscard-image img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.workscard-image.is--05 img {
  object-position: calc(50% - 10px) center;
}
@media (max-width: 767px) {
  .works-work__block {
    display: block;
    padding: 60px 0;
  }
  .works-work__block:last-child {
    padding-bottom: 0;
  }
  .works-work__card-content {
    width: 100%;
  }
  .works-wrok__card-header {
    justify-content: space-between;
  }
  .works-work__title-jp {
    font-size: 22px;
    white-space: nowrap;
  }
  .works-work__number {
    font-size: 72px;
  }
  .works-work__list,
  .works-work__list.is--small {
    height: auto;
    min-height: 120px;
  }
  .workscard-image {
    margin-top: 16px;
  }
  .workscard-image img {
    width: 100%;
    aspect-ratio: 342/240;
  }
  .workscard-image.is--05 img {
    object-position: unset;
  }
}
/* 仕事内容ここまで----------------------- */

/* 採用情報ここまで----------------------- */
/* 私たちのお仕事について */
.page__recruit-ourwork {
  margin-bottom: 120px;
}
.recruit-ourwork__block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.recruit-ourwork__content {
  width: 47%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.recruit-ourwork__image {
  width: 37%;
}
.recruit-ourwork__image img {
  margin-inline: auto;
  aspect-ratio: 384/296;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.recruit-ourwork__title {
  display: inline-flex;
  flex-direction: column;
  align-items: self-start;
  font-size: 20px;
  font-weight: 500;
  gap: 18px;
  position: relative;
}
.recruit-ourwork__title::after {
  content: "";
  position: absolute;
  width: 30%;
  aspect-ratio: 160/144;
  background-image: url(../img/recruit-ourworks-icon.svg);
  background-size: contain;
  background-position: center;
  top: -10%;
  right: 0;
  z-index: 0;
}
.recruit-ourwork__title span {
  display: inline-block;
  color: var(--color-bg-white);
  letter-spacing: 8%;
  padding: 12px 18px;
  border-radius: 2px;
  line-height: 1;
  background-image: url("../img/recruit-ourworks-title-noise.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}
.recruit-ourwork__description {
  z-index: 1;
  letter-spacing: 4%;
}
.recruit-why__description {
  letter-spacing: 4%;
}

/* 勝見通信工業で働く魅力 */
.recruit-why {
  margin: 120px 0;
}
.recruit-why__card {
  display: grid;
  grid-template-columns: 1fr 188px;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
  border-bottom: solid 1px var(--color-line-gray);
}
.recruit-why__title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.recruit-why__title-number {
  background-image: linear-gradient(90deg, #ff8446 0%, #f9c17d 100%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--color-bg-white);
  border-radius: 50%;
}
.recruit-why__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 4%;
}
.recruit-why__title span {
  color: var(--color-accent-orange);
}
.recruit-why__description {
  margin: 16px 0 0 62px;
  border-left: solid 3px #ffdcaa;
  padding-left: 16px;
}
.recruit-why__image {
  width: 100%;
  aspect-ratio: 188/136;
  background-color: #fdf7e7;
  display: grid;
  place-items: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
/* 待遇・福利厚生 */
.recruit-benefits {
  background: var(--color-bg-gray);
  padding: 80px 0;
  margin-bottom: 80px;
}
.recruit-benefits__note-text {
  letter-spacing: 4%;
  text-align: center;
}
.recruit-benefits__card {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.recruit-benefits__card-item {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 16px;
  border-radius: 8px;
  border: solid 1px var(--color-bg-white);
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 185px;
  justify-content: center;
}
.recruit-benefits__image {
  width: 96px;
  height: 96px;
  background-color: #f3fbff;
  border: solid 1px #c6e0ff;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.recruit-benefits__card-content {
  width: 56%;
}
.recruit-benefits__card-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-main-blue);
  letter-spacing: 4%;
  margin-bottom: 8px;
}
.recruit-benefits__card-list {
}
.recruit-benefits__card-list-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.recruit-benefits__card-list-item.is--baseline {
  align-items: baseline;
  line-height: 1.4;
}
.recruit-benefits__card-list-item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-main-blue) ¥;
}
/* 募集要項 */
.recruit-job {
  margin-bottom: 80px;
}
.recruit-job__header {
  width: 100%;
  /* background-color: var(--color-main-blue); */
  border-radius: 10px;
  padding: 52px 42px;
  background-image: url("../img/recruit-jobdescription-tab-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.recruit-job__header::before {
  content: "";
  position: absolute;
  aspect-ratio: 2/1;
  height: 100%;
  max-width: 100%;
  background-image: url(../img/recruit-jobdescription-tab-bg2.svg);
  background-size: cover;
  background-position: left;
  top: 0;
  z-index: 1;
  left: 0;
}
.recruit-job__header::after {
  content: "";
  position: absolute;
  width: 20%;
  aspect-ratio: 184/118;
  background-image: url(../img/recruit-jobdescription-icon.svg);
  background-size: contain;
  background-position: left;
  top: -10%;
  right: -5%;
  z-index: 0;
}
.page__section-title.is--job .page__section-title--en,
.page__section-title.is--job .page__section-title--jp {
  color: var(--color-bg-white);
}
.recruit-job__tab-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.recruit-job__list-item {
  min-width: 196px;
  background-color: var(--color-bg-white);
  text-align: center;
  padding: 16px 0;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.recruit-job__list-item.selected {
  background-color: #2a5d9b;
  color: var(--color-bg-white);
}
.tab-content {
  display: none;
}
.tab-content.selected {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tab-content-inner {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border: solid 2px var(--color-bg-white);
  padding: 40px 3% 0 3%;
  border-radius: 20px;
  z-index: 10;
}
.tab-content-text-bold {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 32px;
}
.tab-content-inner li {
  position: relative;
  padding-left: 16px;
}
.tab-content-inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-main-blue);
}
/* 応募の流れ */
.recruit-flow {
  margin: 120px 0;
}
.recruit-flow__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.recruit-flow__card {
  display: grid;
  grid-template-columns: 152px 1fr auto;
  align-items: center;
  background-color: #f3fbff;
  border: solid 1px #e9f8ff;
  gap: 16px;
  border-radius: 10px;
  padding: 32px 5%;
  position: relative;
}
.recruit-flow__card:not(:last-child):after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  translate: -50% 0;
  width: 32px;
  height: 16px;
  background-image: url(../img/recruit-flow-arrow-icon.svg);
  background-size: cover;
  background-position: center;
}
.recruit-flow__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.recruit-flow__card-meta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.recruit-flow__card-step {
  letter-spacing: 8%;
  color: var(--color-main-blue);
  line-height: 1;
}
.recruit-flow__card-title {
  font-weight: 500;
}
.recruit-flow__card-body {
  padding-left: 16px;
  border-left: 2px solid var(--color-line-gray);
}
.recruit-flow__card-action {
  letter-spacing: 4%;
}
.recruit-flow-card__tel-wrap {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.recruit-flow-card__tel {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  font-size: 18px;
  letter-spacing: 2%;
}
.recruit-flow-card__tel::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../img/recruit-flow-tel-icon.svg);
  background-size: cover;
  background-position: center;
}
.recruit-flow-card__tel-wrap span {
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 1080px) {
  .recruit-ourwork__image {
    width: 45%;
  }
  .recruit-ourwork__title {
    font-size: 18px;
  }
  .recruit-ourwork__title::after {
    right: -10%;
  }
}
@media (max-width: 767px) {
  .recruit-ourwork__block {
    display: block;
  }
  .recruit-ourwork__content {
    width: 100%;
    gap: 18px;
  }
  .recruit-ourwork__title::after {
    right: -3%;
  }
  .recruit-ourwork__image {
    width: 100%;
    margin-top: 18px;
  }
  .recruit-why {
    margin: 64px 0;
  }
  .page__recruit-ourwork {
    margin-bottom: 0;
  }
  .recruit-why__card {
    display: block;
    padding-top: 16px;
  }
  .recruit-why__title {
    font-size: 18px;
  }
  .recruit-why__description {
    margin: 8px 0 0 16px;
  }
  .recruit-why__image {
    width: 50%;
    margin-inline: auto;
    margin-top: 16px;
  }
  .recruit-benefits__note-text {
    text-align: left;
  }
  .recruit-benefits__card {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .recruit-benefits__card-item {
    gap: 20px;
  }
  .recruit-benefits__card-content {
    width: 60%;
  }
  .recruit-job__header {
    padding: 32px 24px;
  }
  .recruit-job__header::after {
    width: 132px;
  }
  .tab-content-inner {
    padding-top: 16px;
  }
  .recruit-job__tab-list {
    gap: 12px;
  }
  .recruit-job__list-item {
    min-width: auto;
    padding: 8px 12px;
  }
  .recruit-job {
    margin-bottom: 64px;
  }
  .recruit-flow {
    margin: 64px 0;
  }
  .recruit-flow__card {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .recruit-flow__card-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
  }
  .recruit-flow-card__tel-wrap {
    gap: 6px;
  }
  .recruit-flow-card__tel {
    margin-top: 6px;
    font-size: 20px;
  }
  .recruit-flow-card__tel-wrap span {
    font-size: 14px;
  }
  .recruit-flow-card__tel::before {
    width: 16px;
    height: 16px;
  }
}
/* 採用情報ここまで----------------------- */
/* お知らせ・お問い合わせ・プライバシーポリシーのfvここから--------- */
.sub-page__fv {
  width: 100%;
  aspect-ratio: 1440/480;
  position: relative;
  background: linear-gradient(
    to bottom right,
    rgba(152, 198, 231, 0.2) 0%,
    rgba(222, 233, 240, 0.3) 18%,
    rgba(252, 226, 161, 0.5) 100%
  );
}
.sub-page__fv::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  aspect-ratio: 1692/218;
  bottom: 0;
  background-image: url("../img/news-bg.svg");
  background-size: contain;
  background-position: center;
}
.page__title-wrap.is--sub-page {
  padding-top: 10%;
}

@media (max-width: 767px) {
  .sub-page__fv {
    aspect-ratio: 820/480;
  }
  .sub-page__fv::after {
    aspect-ratio: 390 / 120;
    background-size: cover;
    background-position: 530px center;
  }
  .sub-page__fv .page__title-wrap {
    padding-top: 25%;
  }
}

/* お知らせ・お問い合わせ・プライバシーポリシーのfvここまで--------- */

/* ニュース（home.php/single.php）ここから---------------------------- */
/* ニュース一覧ページ（ home.php/archive.php）*/
.page__news {
  margin-top: 96px;
  margin-bottom: 156px;
}
.news__nav {
  display: flex;
  align-items: center;
  gap: 48px;
}
.news__nav-title {
  letter-spacing: 8%;
  color: var(--color-main-blue);
  font-size: 18px;
}
.news__nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news__nav-item a {
  display: inline-block;
  min-width: 104px;
  font-weight: 500;
  letter-spacing: 4%;
  padding: 6px 12px;
  color: var(--color-keyword);
  border: solid 1px var(--color-line-gray);
  border-radius: 4px;
  display: grid;
  place-items: center;
  transition: 0.3s;
}
.news__nav-item.is-active a {
  background-color: var(--color-main-blue);
  border: solid 1px var(--color-main-blue);
  color: var(--color-bg-white);
}
.news__content {
  margin-top: 64px;
  margin-bottom: 64px;
}
.news__content-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.news__title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news__content-item a {
  display: block;
  padding: 24px 20px;
  border-bottom: solid 1px var(--color-line-gray);
}
.news__content-item:first-child a {
  padding-top: 0;
}
.news__content-item .news-date {
  font-size: 18px;
  transition: 0.3s;
}
.news__content-item .news-category {
  background-color: var(--color-bg-gray);
  border: solid 1px var(--color-line-gray);
  font-weight: 500;
}
.news__content-item .news-title {
  font-size: 18px;
  transition: 0.3s;
}
/* （single.php）---------------------------- */
.page__single {
  margin-top: 96px;
  margin-bottom: 156px;
}
.single__content-header {
  padding-bottom: 24px;
  border-bottom: solid 1px var(--color-line-gray);
}
.page__single .news-date {
  font-size: 18px;
  transition: 0.3s;
}
.page__single .news-category {
  background-color: var(--color-bg-gray);
  border: solid 1px var(--color-line-gray);
  font-weight: 500;
}
.page__single .news-title {
  font-size: 28px;
  font-weight: 500;
}
.single__content {
  padding: 80px 0;
}
/*  pagenation（記事/投稿一覧共通） */
.pagenation {
  width: 80%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 152px 1fr 152px;
  align-items: center;
  justify-content: center;
}
.pagenation-control {
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 28px;
}
.pagenation-control::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/news-icon-arrow.svg);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  transition: all 0.3s ease;
}
.pagenation-control::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/news-icon-arrow.svg);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 28px;
  translate: 0 -50%;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.3s ease;
}
.pagenation-control.next::before {
  background-image: url(../img/news-icon-arrow-next.svg);
  right: 0;
  left: unset;
}
.pagenation-control.next::after {
  background-image: url(../img/news-icon-arrow-next.svg);
  right: 28px;
  left: unset;
}
.index-btn {
  width: fit-content;
  margin-inline: auto;
}
.pagenation-number.current {
  background-color: var(--color-main-blue);
  border: solid 1px var(--color-main-blue);
  color: var(--color-bg-white);
  transition-delay: 0.1s;
}
.pagenation-number {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  border: solid 1px var(--color-line-gray);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-keyword);
  line-height: 1;
  transition: 0.3s;
}
.paging-wrap {
  display: flex;
  gap: 12px;
  margin-inline: auto;
}
@media (any-hover: hover) {
  .pagenation-control:hover::before {
    transform: translateX(-20px);
  }
  .pagenation-control:hover::after {
    transform: translateX(-28px);
    opacity: 1;
  }
  .pagenation-control.next:hover::before {
    transform: translateX(20px);
  }
  .pagenation-control:hover.next::after {
    transform: translateX(28px);
    opacity: 1;
  }
  .pagenation-number:hover {
    background-color: var(--color-main-blue);
    border: solid 1px var(--color-main-blue);
    color: var(--color-bg-white);
    transition-delay: 0.1s;
  }
}

@media (any-hover: hover) {
  .news__nav-item a:hover {
    background-color: var(--color-main-blue);
    border: solid 1px var(--color-main-blue);
    color: var(--color-bg-white);
    transition-delay: 0.1s;
  }
  .news__content-item a:hover .news-date {
    color: var(--color-main-blue);
  }
  .news__content-item a:hover .news-title {
    color: var(--color-main-blue);
  }

  .news__content-item a:hover .btn-icon {
    background-color: var(--color-bg-white);
  }
  .news__content-item a:hover .btn-icon::after {
    transform: translateX(18px);
  }
  .news__content-item a:hover .btn-icon::before {
    opacity: 1;
    transform: translateX(20px);
  }
}
@media (max-width: 767px) {
  .page__news {
    margin-top: 64px;
    margin-bottom: 80px;
  }
  .news__nav {
    display: block;
  }
  .news__nav-list {
    gap: 8px;
    flex-wrap: wrap;
  }
  .news__nav-title {
    margin-bottom: 6px;
  }
  .news__content {
    margin-top: 40px;
  }
  .news__content-info {
    margin-bottom: 4px;
  }
  .news__content-item a {
    padding: 20px 20px;
  }
  .news__content-item .news-title {
    font-size: 16px;
  }
  .page__single {
    margin-top: 64px;
    margin-bottom: 80px;
  }
  .page__single .news-title {
    font-size: 20px;
  }
  .single__content-header {
    padding-bottom: 20px;
  }
  .single__content {
    padding-top: 40px;
    padding-bottom: 64px;
  }
  .pagenation {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .pagenation-control {
    width: 50%;
  }
  .pagenation-control.next {
    text-align: right;
  }
  .paging-wrap,
  .index-btn {
    order: 1;
    margin-top: 20px;
  }
}
/* ニュース（home.php/archive.php）ここまで）---------------------------- */
/* プライバシーポリシーここから---------------------------- */
.page__privacy {
  margin-top: 96px;
  margin-bottom: 156px;
  counter-reset: item-counter;
  text-align: justify;
}
.privacy-policy__header {
  margin-bottom: 40px;
}
.privacy-policy__item {
  margin-bottom: 40px;
}
.privacy-policy__title {
  font-size: 20px;
  font-weight: 500;
  padding: 0 16px;
  border-left: solid 4px var(--color-main-blue);
  margin-bottom: 16px;
  counter-increment: item-counter;
}
.privacy-policy__title::before {
  content: counter(item-counter) ".";
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.privacy-policy__body {
  padding: 0 16px;
}
.privacy-policy__body-list-item {
  position: relative;
  padding-left: 16px;
}
.privacy-policy__body-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-main-blue);
}
.privacy-policy__contact {
  font-style: normal;
}

@media (max-width: 767px) {
  .privacy-policy__title {
    font-size: 18px;
  }
  .page__privacy {
    margin-top: 64px;
    margin-bottom: 80px;
  }
}
/* プライバシーポリシーここまで---------------------------- */
/* お問い合わせここから---------------------------- */
.page__contact {
  margin-top: 96px;
  margin-bottom: 156px;
  letter-spacing: 4%;
}
.contact__type-wrap {
  margin-top: 64px;
}
.contact__type-text {
  color: var(--color-main-blue);
  font-weight: 500;
}
.wpcf7-list-item {
  margin: 0;
}
.wpcf7-radio .wpcf7-list-item input {
  display: none;
}
.wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-bg-white);
  padding: 12px;
  border-radius: 4px;
  border: solid 1px var(--color-line-gray);
  transition: 0.3s;
  cursor: pointer;
}
.wpcf7-form-control.wpcf7-radio {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.wpcf7-radio .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.wpcf7-radio .wpcf7-list-item-label::before {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  color: inherit;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--color-keyword);
  border-radius: 50%;
  transition: 0.3s;
}
.wpcf7-radio .wpcf7-list-item-label::after {
  position: absolute;
  top: 8.5px;
  left: 4px;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: var(--color-bg-white);
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s;
}
.contact__form-item {
  display: grid;
  grid-template-columns: 232px 1fr;
}
.wpcf7-select {
  margin-top: 0;
  appearance: none;
  position: relative;
}
.contact__form-item.category-wrap {
  position: relative;
  width: 628px !important;
}
.contact__form-item.category-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
}
.form-dt,
.form-dd {
  padding: 40px 20px;
}
.form-dt {
  border-bottom: solid 1px var(--color-main-blue);
  color: var(--color-main-blue);
  font-weight: 500;
}
.form-dt p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-dd {
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: solid 1px var(--color-line-gray);
}
.form-dt span {
  color: var(--color-accent-orange);
  font-size: 12px;
  padding: 4px 8px;
  border: solid 1px var(--color-accent-orange);
  border-radius: 100vh;
  line-height: 1;
}
.contact__submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 64px;
}
.contact__agreement-label a {
  color: var(--color-main-blue);
  padding-bottom: 2px;
  border-bottom: solid 1px var(--color-main-blue);
}
.contact-btn {
  display: inline-block;
}
.form-dd input,
.form-dd textarea,
.form-dd select {
  width: 100%;
  border: none;
  background-color: #f5f5f5;
  padding: 16px;
  font-size: 16px;
  border-radius: 4px;
  box-sizing: border-box;
}
.form-dd input::placeholder,
.form-dd textarea::placeholder {
  color: #919191;
}
.contact__submit-wrap a {
  color: var(--color-main-blue);
  border-bottom: solid 1px var(--color-main-blue);
}
.contact__btn-wrap {
  display: inline-flex;
  align-items: center;
  position: relative;
  background-color: var(--color-main-blue);
  color: var(--color-bg-white);
  padding: 16px 32px 16px 20px;
  border-radius: 100vh;
  position: relative;
  transition: all 0.3s ease;
}
.wpcf7-submit.contact-btn {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: block;
}
.contact__btn-wrap::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/icon-arrow-hover.svg);
  background-size: cover;
  background-position: center;
  position: absolute;
  right: 30px;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.3s ease;
}
.contact__btn-wrap::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-bg-white);
  position: absolute;
  right: 20px;
  transition: all 0.3s ease;
}
.wpcf7-spinner {
  position: absolute;
}
.wpcf7-radio .wpcf7-list-item label.is-active {
  background-color: var(--color-main-blue);
  border: 1px solid var(--color-main-blue);
  color: var(--color-bg-white);
}

.wpcf7-radio .wpcf7-list-item label.is-active .wpcf7-list-item-label::before {
  border: 1px solid var(--color-bg-white);
}

.wpcf7-radio .wpcf7-list-item label.is-active .wpcf7-list-item-label::after {
  opacity: 1;
}
@media (any-hover: hover) {
  .wpcf7-radio .wpcf7-list-item label:hover {
    background-color: var(--color-main-blue);
    border: 1px solid var(--color-main-blue);
    color: var(--color-bg-white);
  }
  .wpcf7-radio .wpcf7-list-item label:hover .wpcf7-list-item-label::before {
    border: 1px solid var(--color-bg-white);
  }
  .wpcf7-radio .wpcf7-list-item label:hover .wpcf7-list-item-label::after {
    opacity: 1;
  }
  .contact__btn-wrap:hover {
    background-image: none;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-main-blue);
    color: var(--color-main-blue);
  }
  .contact__btn-wrap:hover::before {
    opacity: 1;
    transform: translateX(16px);
  }
  .contact__btn-wrap:hover::after {
    transform: translateX(12px);
  }
}
@media (max-width: 767px) {
  .page__contact {
    margin-top: 64px;
    margin-bottom: 80px;
  }
  .contact__type-wrap {
    margin-top: 24px;
  }
  .wpcf7-form-control.wpcf7-radio {
    flex-direction: column;
    align-items: stretch;
  }
  .wpcf7-radio .wpcf7-list-item-label::after {
    top: unset;
  }
  .contact__form-item.category-wrap {
    width: 100% !important;
  }
  .contact__form-item {
    display: block;
    margin-bottom: 32px;
  }
  .form-dt {
    padding: 16px 0;
  }
  .form-dd {
    padding: 16px 0;
    border-bottom: none;
  }
  .contact__form-item.category-wrap::after {
    top: 68%;
    right: 20px;
  }
  .contact__submit-wrap {
    margin-top: 0;
  }
}
/* お問い合わせここまで---------------------------- */
/* アニメーションここから-------------------------- */
.fade-up-img {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(12px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease,
    filter 1.2s ease;
}
.fade-up-img.is-show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.fade-title {
  opacity: 0;
  filter: blur(6px);
  transition:
    opacity 1s ease,
    filter 1s ease;
}
.fade-title.is-show {
  opacity: 1;
  filter: blur(0);
}
.fade-text {
  opacity: 0;
  transition: opacity 1s ease;
}
.fade-text.is-show {
  opacity: 1;
}
.fade-section {
  opacity: 0;
  transition: opacity 1.4s ease;
}
.fade-section.is-show {
  opacity: 1;
}
.fade-up-section {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}
.fade-up-section.is-show {
  opacity: 1;
  transform: translateY(0);
}
.line-animation {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.line-animation path {
  clip-path: inset(0 100% 0 0);
}
.line-animation.is-show path {
  animation: draw 4.2s ease forwards;
  /* animation-delay: 1s; */
}
@keyframes draw {
  to {
    clip-path: inset(0 0 0 0);
  }
}

.fade-delay-1 {
  transition-delay: 0.2s;
}
.fade-delay-2 {
  transition-delay: 0.4s;
}
.fade-delay-3 {
  transition-delay: 0.6s;
}
.fade-delay-4 {
  transition-delay: 0.8s;
}
/* アニメーションここまで-------------------------- */
/* パンくずリストここから-------------------------- */
.breadcrumb {
  width: 78%;
  margin-inline: auto;
  margin-top: 8px;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.breadcrumb li {
  font-size: 14px;
  color: #6a6a6a;
  display: flex;
  align-items: center;
}
.breadcrumb li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  background-image: url(../img/breadcrumb-icon.svg);
  background-size: cover;
  background-position: center;
}
.breadcrumb a {
  color: #9f9f9f;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.7;
}
/* パンくずリストここまで-------------------------- */

/* recaptchaの表示設定 */
.grecaptcha-badge {
  visibility: hidden;
}

.page-id-82 .grecaptcha-badge {
  visibility: visible;
}

/* 404ページ */
.container-404 {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}
.text-404 {
  line-height: 1.8;
}
.btn-404 {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .container-404 {
    margin-top: 64px;
  }
  .text-404 {
    text-align: left;
  }
}
