@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css");
/* 
  ブレークポイントの考え方：
  - モバイルファースト（320px〜がベース）
  - sm: 540px〜  大型スマートフォン（iPhone 14 Pro Max等）
  - md: 768px〜  タブレット縦向き（iPad縦等）
  - lg: 1024px〜 タブレット横向き、小型ノートPC（iPad横等）
  - xl: 1280px〜 一般的なノートPC、デスクトップ
  - xxl: 1600px〜 大型ディスプレイ、4K対応
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  width: 100%;
  background: #262830 url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
body:not(:has(.p-top-about)) > * {
  filter: blur(12px);
  opacity: 0;
}
body.is-page-leaving > * {
  will-change: filter, opacity;
  filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: filter 0.55s ease, opacity 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
}
body.is-page-entering > * {
  will-change: filter, opacity;
  animation: page-blur-in 0.6s ease forwards;
}
body.is-page-entered > * {
  filter: blur(0);
  opacity: 1;
  animation: none;
}
body.is-page-entered.is-page-leaving > * {
  filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  animation: none;
}

@keyframes page-blur-in {
  from {
    filter: blur(12px);
    opacity: 0;
  }
  to {
    filter: blur(0);
    opacity: 1;
  }
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

ul, ol {
  list-style: none;
}

.js-visible {
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.6s ease, filter 0.6s ease;
}
.js-visible.is-active {
  opacity: 1;
  filter: blur(0);
}

.js-fade-in {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.6s ease-out, filter 0.6s ease-out;
}
.js-fade-in.is-active {
  opacity: 1;
  filter: blur(0);
}

.u-md-block {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-md-block {
    display: block;
  }
}

.l-header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background: linear-gradient(rgba(53, 49, 49, 0.2) 20%, rgba(53, 49, 49, 0) 100%);
}
.l-header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5vw 3vw;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 3vw 5vw;
  }
}
.l-header__logo {
  z-index: 999;
}
.l-header__logo-link {
  transition: all 0.3s ease;
}
.l-header__logo-link:hover {
  opacity: 0.6;
}
.l-header__logo-image {
  width: 5vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .l-header__logo-image {
    width: 12vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo-image {
    width: 10vw;
  }
}
@media screen and (max-width: 539px) {
  .l-header__logo-image {
    width: 15vw;
  }
}
.l-header__button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
}
.l-header__hamburger {
  width: 4rem;
  height: 4rem;
  background: none;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  top: 1.5em;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger {
    width: 44px;
    height: 44px;
  }
}
.l-header__hamburger span {
  display: block;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 3px 0;
}
.l-header__hamburger span:nth-child(1) {
  width: 14px;
  transform: translateX(-4px);
}
.l-header__hamburger span:nth-child(2) {
  width: 22px;
  transform: translateX(0px);
}
.l-header__hamburger span:nth-child(3) {
  width: 30px;
  transform: translateX(4px);
}
@media screen and (max-width: 767px) {
  .l-header__hamburger span {
    margin: 2px 0;
  }
  .l-header__hamburger span:nth-child(1) {
    width: 12px;
  }
  .l-header__hamburger span:nth-child(2) {
    width: 18px;
  }
  .l-header__hamburger span:nth-child(3) {
    width: 24px;
  }
}
.l-header__hamburger.is-active span {
  width: 24px !important;
  transform: translateX(0) !important;
}
.l-header__hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg) !important;
}
.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg) !important;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger.is-active span {
    width: 20px !important;
  }
  .l-header__hamburger.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
  }
  .l-header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
  }
}
.l-header__nav {
  position: fixed;
  background-color: #08162F;
  width: 100%;
  height: 100vh;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 500;
}
.l-header__nav::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
  left: 0;
  top: 0;
  z-index: -1;
}
.l-header__nav.is-active {
  visibility: visible;
  opacity: 1;
}
.l-header__nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  height: 100%;
  max-width: 960px;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.l-header__nav-inner::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-inner {
    padding: 15vh 1.5rem;
    justify-content: normal;
  }
}
.l-header__nav-list {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: space-between;
  gap: 3rem;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  width: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    font-size: 1.2rem;
  }
}
.l-header__nav-list--contact {
  display: flex;
  justify-content: center;
  gap: 6rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin: 4rem 0;
  padding: 1.5rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-list--contact {
    justify-content: space-around;
    margin: 2rem 0;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    gap: 1rem;
  }
}
.l-header__nav-list--contact li:nth-child(1) > a::before {
  background-image: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/icon_docs_wh.svg);
}
.l-header__nav-list--contact li:nth-child(2) > a::before {
  background-image: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/icon_recruit_wh.svg);
}
.l-header__nav-list--contact li:nth-child(3) > a::before {
  background-image: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/icon_contact.svg);
}
.l-header__nav-list--contact a {
  position: relative;
  padding-left: 1.8rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav-list--contact a {
    padding-left: 1.2rem;
  }
}
.l-header__nav-list--contact a::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.4rem;
  height: 1.4rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header__nav-list--contact a::before {
    width: 1rem;
    height: 1rem;
  }
}
.l-header__nav-list--social {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-list--social {
    flex-direction: column;
    align-items: baseline;
    gap: 2rem;
  }
}
.l-header__nav-details {
  display: flex;
  gap: 4rem;
  font-size: 0.85rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav-details {
    flex-direction: column;
    gap: 1rem;
  }
}
.l-header__nav-link {
  transition: 0.3s ease;
}
.l-header__nav-link:hover {
  opacity: 0.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.l-footer {
  position: relative;
  width: 100%;
  min-height: 60vh;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/footer_bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-footer {
    min-height: 50vh;
  }
}
.l-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(22.8363636364, 62.8, 134.1636363636, 0.2) 40%, rgba(30.2545454545, 83.2, 177.7454545455, 0.6) 100%);
  z-index: 0;
}
.l-footer__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: end;
  max-width: 85vw;
  min-height: 70vh;
  margin: auto;
  padding: 50vh 0 5vh;
  gap: 5vw;
}
@media screen and (max-width: 1599px) {
  .l-footer__content {
    padding: 50vh 0 5vh;
    max-width: 1200px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    flex-direction: column;
    min-height: 50vh;
    padding: 10vh 5vw 5vh;
    gap: 3rem;
  }
}
.l-footer__social {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__social {
    margin-bottom: 2rem;
  }
}
.l-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #fff;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-footer__social-link {
    width: 50px;
    height: 50px;
  }
}
.l-footer__social-link:hover {
  color: #FF5C00;
}
.l-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
}
.l-footer__nav-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.l-footer__nav-row a {
  transition: color 0.3s ease;
}
.l-footer__nav-row a:hover {
  color: #FF5C00;
}
.l-footer__nav-link {
  font-size: 0.8rem;
}
.l-footer__copyright {
  color: #fff;
  font-size: 0.8rem;
  opacity: 0.8;
  text-align: right;
  max-width: 85vw;
  margin: auto;
  padding-bottom: 3rem;
}
@media screen and (max-width: 1599px) {
  .l-footer__copyright {
    max-width: 1200px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    text-align: center;
    font-size: 0.7rem;
    padding: 0 5vw 2rem;
  }
}

.c-side-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
}
.c-side-contact__button {
  padding-top: 15vh;
}
@media screen and (max-width: 767px) {
  .c-side-contact__button {
    display: none;
  }
}
.c-side-contact li + li {
  border-top: 1px solid #FF6E2F;
}
.c-side-contact__list {
  margin-bottom: 1em;
  padding: 0 1em;
  list-style: none;
  background-color: #fff;
  border-radius: 5px 0 0 5px;
  box-shadow: 5px 5px 10px rgba(53, 49, 49, 0.4);
}
.c-side-contact__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  text-decoration: none;
  padding: 2em 0.5em;
  font-size: 0.85em;
  transition: opacity 0.6s ease;
}
.c-side-contact__link:hover {
  opacity: 0.6;
}
.c-side-contact__text {
  color: #FF6E2F;
}
.c-side-contact__text--mail {
  color: #fff;
}
.c-side-contact__item--orange > a {
  border-radius: 5px 0 0 5px;
  background-color: #FF6E2F;
  box-shadow: 5px 5px 10px rgba(53, 49, 49, 0.4);
  transition: background-color 0.6s ease, opacity 0.6s ease;
}
.c-side-contact__item--orange > a:hover {
  background-color: rgb(255, 145.5528846154, 98);
  opacity: 1;
}

/* ============================================================
   COMMON COMPONENTS - セクション共通スタイル
   ============================================================ */
.c-section-header {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4vh;
}
.c-section-header--end {
  align-items: flex-end;
}
@media screen and (max-width: 1023px) {
  .c-section-header {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section-header {
    gap: 1rem;
  }
}
.c-section-header__title {
  writing-mode: vertical-rl;
  color: #fff;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.c-section-header__title--black {
  color: #353131;
}
.c-section-header__title--orange {
  color: #FF5C00;
}
@media screen and (max-width: 1023px) {
  .c-section-header__title {
    writing-mode: horizontal-tb;
    width: auto;
  }
}
.c-section-header__title .ja {
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1279px) {
  .c-section-header__title .ja {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section-header__title .ja {
    font-size: 1.6rem;
  }
}
.c-section-header__title .en {
  font-size: 1.2rem;
  color: #FF5C00;
  opacity: 0.6;
  margin-left: 10px;
  letter-spacing: 0.17rem;
}
.c-section-header__title .en--white {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .c-section-header__title .en {
    font-size: 1rem;
    margin-left: 0;
    margin-right: 10px;
  }
}
.c-section-header__btn {
  position: relative;
  width: 8rem;
  height: 8rem;
  background-color: #FF5C00;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease, color 0.5s ease;
  z-index: 2;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-section-header__btn {
    width: 90px;
    height: 90px;
  }
}
.c-section-header__btn::after {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  border-radius: 50%;
  margin: auto;
  padding-top: 100%;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.3s, transform 0s;
  transition-delay: 0s, 0.2s;
  opacity: 0;
  pointer-events: none;
}
.c-section-header__btn .text {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 5px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .c-section-header__btn .text {
    font-size: 0.9rem;
  }
}
.c-section-header__btn .arrow {
  width: 70px;
  height: 2px;
  background: #fff;
  margin-top: 6px;
  position: relative;
  transform: translateY(-50%);
  transition: background 0.5s ease;
  transition-duration: 0.4s;
}
@media screen and (max-width: 767px) {
  .c-section-header__btn .arrow {
    width: 50px;
    margin-top: 0;
  }
}
.c-section-header__btn .arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -6px;
  width: 30px;
  height: 0;
  border-top: 2px solid #fff;
  transform: rotate(25deg);
  transition: border-color 0.5s ease;
  transition-duration: 0.4s;
}
@media screen and (max-width: 767px) {
  .c-section-header__btn .arrow::after {
    width: 15px;
    top: -3px;
  }
}
.c-section-header__btn:hover {
  color: #FF5C00;
}
.c-section-header__btn:hover::after {
  transform: translateY(-50%) scale(1.1);
  transition: opacity 0.6s, transform 0.3s ease-in-out;
  transition-delay: 0s;
  opacity: 1;
}
.c-section-header__btn:hover .arrow {
  background: #FF5C00;
}
.c-section-header__btn:hover .arrow::after {
  border-top: 2px solid #FF5C00;
}
@media screen and (max-width: 1023px) {
  .c-section-header--with-nav {
    justify-content: flex-start;
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section-header--with-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.c-section-insert {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .c-section-insert {
    height: 35vh;
  }
}
.c-section-insert::before {
  content: "";
  position: absolute;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
  width: 100%;
  height: 100%;
}
.c-section-insert img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-breadcrumb {
  position: relative;
  max-width: 85vw;
  margin: auto;
  font-size: 0.85rem;
}
@media screen and (max-width: 1599px) {
  .c-breadcrumb {
    max-width: 1200px;
  }
}
.c-breadcrumb__list {
  position: absolute;
  display: flex;
  top: 6vw;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__list {
    width: max-content;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
.c-breadcrumb__list li:last-child {
  opacity: 0.6;
}
.c-breadcrumb__list li + li::before {
  content: "/";
  color: #fff;
  padding: 1vw;
}
.c-breadcrumb__link {
  transition: color 0.3s ease;
}
.c-breadcrumb__link:hover {
  color: #FF5C00;
}

.c-page {
  position: relative;
}

.c-page-bg {
  position: absolute;
  filter: blur(10px);
  top: -10%;
  left: -20%;
  z-index: -1;
}
.c-page-bg--right {
  top: -20%;
  left: auto;
  right: -15%;
  transform: scale(1.5);
}

.c-page-hero {
  position: relative;
  padding: 0 10vw;
}
@media screen and (max-width: 1599px) {
  .c-page-hero {
    padding: 0 6vw;
  }
}
.c-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center top !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  -webkit-mask-image: linear-gradient(to bottom, transparent 5%, #000 18%, #000 60%, transparent 75%);
  mask-image: linear-gradient(to bottom, transparent 5%, #000 18%, #000 60%, transparent 75%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.c-page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 47, 0.4);
  mix-blend-mode: multiply;
}
.c-page-hero__title {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 7vw;
  font-weight: 400;
  padding: 12vh 0;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .c-page-hero__title {
    font-size: 12vw;
  }
}
.c-page-hero__inner {
  padding: 0 10vw;
  opacity: 0;
  transition: opacity 0.6s ease;
}
@media screen and (max-width: 1599px) {
  .c-page-hero__inner {
    padding: 0 6vw;
  }
}
.c-page-hero__inner.is-hero-inner-visible {
  opacity: 1;
}
.c-page-hero__copy {
  width: 60vw;
}
@media screen and (max-width: 1023px) {
  .c-page-hero__copy {
    width: 100%;
  }
}
.c-page-hero__copy-header {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  margin-bottom: 6vw;
  padding-top: 2rem;
}
.c-page-hero__label {
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 1023px) {
  .c-page-hero__label {
    font-size: 1.2rem;
  }
}
.c-page-hero__catch {
  font-size: 5vw;
  font-weight: 400;
  letter-spacing: 0.07rem;
}
@media screen and (max-width: 1023px) {
  .c-page-hero__catch {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-page-hero__catch {
    font-size: 8vw;
  }
}
.c-page-hero__lead {
  font-size: 1.2rem;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .c-page-hero__lead {
    font-size: 1.1rem;
  }
}

/* ── Hero ── */
.c-page-hero--fv {
  display: grid;
  gap: 6vw;
  position: relative;
  grid-template-columns: 1fr;
  grid-template-areas: "image vertical";
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  padding: 15vh 6vw;
}
@media screen and (max-width: 1023px) {
  .c-page-hero--fv {
    display: flex;
    flex-direction: column-reverse;
  }
}
.c-page-hero--fv__photo {
  grid-area: image;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -6vw;
}
.c-page-hero--fv__img {
  grid-area: image;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.c-page-main {
  position: relative;
  padding-top: 15vh;
}
@media screen and (max-width: 1023px) {
  .c-page-main {
    padding-top: 10vh;
  }
}
.c-page-main__glow {
  position: absolute;
  filter: blur(10px);
  top: 5%;
  left: -5%;
  transform: scale(1.8);
  z-index: -1;
}
.c-page-main__glow--hero {
  top: 20%;
}

.c-bottom-cta {
  position: relative;
  min-height: 650px;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/recruit_cta.webp) no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 40px 6vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-bottom-cta {
    min-height: 500px;
  }
}
.c-bottom-cta__glow {
  position: absolute;
  filter: blur(10px);
  top: -50%;
  left: -10%;
  transform: scale(2);
}
@media screen and (max-width: 767px) {
  .c-bottom-cta__glow {
    left: auto;
    right: -10%;
    transform: scale(1.2);
  }
}
.c-bottom-cta__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1600px) {
  .c-bottom-cta__inner {
    max-width: 80vw;
  }
}
.c-bottom-cta h2 {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: clamp(2rem, 3.5vw, 4.8rem);
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0.07rem;
}
@media screen and (max-width: 767px) {
  .c-bottom-cta h2 {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 539px) {
  .c-bottom-cta h2 {
    font-size: 7vw;
  }
}
.c-bottom-cta p {
  font-size: 1.2rem;
  margin-bottom: 6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-bottom-cta p {
    font-size: 1rem;
    margin-bottom: 4rem;
  }
}
.c-bottom-cta__button {
  position: relative;
  display: inline-flex;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  min-width: 320px;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: #fff;
  border-radius: 2px;
  color: #FF5C00;
  letter-spacing: 0.17em;
  transition: transform 0.25s ease, color 0.5s ease;
  transition-duration: 0.4s;
  z-index: 2;
  overflow: hidden;
}
.c-bottom-cta__button::after {
  content: "";
  position: absolute;
  display: block;
  background: #FF6E2F;
  margin: auto;
  padding-top: 100%;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
  opacity: 0;
  pointer-events: none;
}
.c-bottom-cta__button:hover {
  color: #fff;
}
.c-bottom-cta__button:hover::after {
  transform: translateY(-50%) scale(1.1);
  transition: opacity 0.8s, transform 0.6s ease-in-out;
  transition-delay: 0s;
  opacity: 1;
}
.c-bottom-cta__button:hover > span {
  background: #fff;
}
.c-bottom-cta__button:hover > span::before {
  border-top: 1px solid #fff;
}
.c-bottom-cta__arrow {
  display: block;
  position: absolute;
  width: 50px;
  height: 1px;
  margin-top: 2px;
  background: #FF5C00;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  transition: background 0.5s ease;
  transition-duration: 0.4s;
}
.c-bottom-cta__arrow::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 0;
  border-top: 1px solid #FF5C00;
  right: 0;
  top: -4px;
  transform: rotate(25deg);
  transition: border-color 0.5s ease;
  transition-duration: 0.4s;
}

/* デフォルトがオレンジの場合 */
.c-bottom-cta--btn {
  position: relative;
  display: inline-block;
  background-color: #FF5C00;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 2px;
  text-align: center;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  transition: background-color 0.3s ease;
  transition-duration: 0.4s;
  align-self: flex-start;
  width: 100%;
  letter-spacing: 0.2rem;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-bottom-cta--btn {
    padding: 0.7rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-bottom-cta--btn {
    padding: 0.7rem 1.5rem;
  }
}
.c-bottom-cta--btn::after {
  content: "";
  position: absolute;
  display: block;
  background: rgb(255, 124.6, 51);
  margin: auto;
  padding-top: 100%;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
  opacity: 0;
  pointer-events: none;
}
.c-bottom-cta--btn-arrow {
  position: absolute;
  width: 50px;
  height: 1px;
  background: #fff;
  top: 55%;
  right: 2vw;
  transform: translateY(-50%);
  transition: background 0.5s ease;
  transition-duration: 0.4s;
}
.c-bottom-cta--btn-arrow::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 0;
  border-top: 1px solid #fff;
  top: -4px;
  right: 0;
  transform: rotate(25deg);
  transition: border-color 0.5s ease;
  transition-duration: 0.4s;
}
.c-bottom-cta--btn:hover::after {
  transform: translateY(-50%) scale(1.1);
  transition: opacity 0.8s, transform 0.6s ease-in-out;
  transition-delay: 0s;
  opacity: 1;
}

.c-table {
  width: 40vw;
}
@media screen and (max-width: 1279px) {
  .c-table {
    width: 60vw;
  }
}
@media screen and (max-width: 1023px) {
  .c-table {
    width: 100%;
  }
}
.c-table__row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dashed #fff;
  padding: 1.2rem 0;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-table__row {
    flex-direction: column;
    gap: 1rem;
    font-size: 1rem;
  }
}
.c-table__label {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .c-table__label {
    width: 100%;
  }
}
.c-table__value {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .c-table__value {
    width: 100%;
  }
}

.c-magazine {
  position: fixed;
  right: 2vw;
  bottom: 2vw;
  z-index: 500;
  transition: 0.3s ease;
}
.c-magazine.is-active {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.c-magazine__btn {
  display: block;
  position: relative;
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(53, 49, 49, 0.4);
  overflow: hidden;
}
.c-magazine__btn::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.c-magazine__btn:hover::before {
  opacity: 1;
}
.c-magazine__image {
  width: 234px;
  height: 60px;
  object-fit: cover;
}
.c-magazine__close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: rgba(53, 49, 49, 0.8);
  border-radius: 50%;
  font-size: 0.85rem;
  width: 1.5rem;
  height: 1.5rem;
  top: 0;
  left: 100%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

/* ============================================================
   CONTACT SECTION (お問い合わせ)
   ============================================================ */
.c-contact {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 15vh 5vw;
  background: #f1f1f1 url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
}
@media screen and (max-width: 767px) {
  .c-contact {
    padding: 10vh 5vw;
    min-height: auto;
  }
}
.c-contact__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 8vw;
  max-width: 1200px;
  margin: 0 5vw;
}
@media screen and (max-width: 1023px) {
  .c-contact__inner {
    flex-direction: column;
    gap: 3rem;
    margin: 0 auto;
  }
}
.c-contact__title-box {
  flex-shrink: 0;
  width: 150px;
}
@media screen and (max-width: 1023px) {
  .c-contact__title-box {
    width: 100%;
  }
}
.c-contact__form-wrap {
  flex-grow: 1;
  max-width: 992px;
  width: 100%;
}
@media screen and (max-width: 1599px) {
  .c-contact__form-wrap {
    max-width: 700px;
  }
}
.c-contact__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-contact__form {
    gap: 1.5rem;
  }
}
.c-contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.c-contact__label {
  display: inline-block;
  font-size: 0.9rem;
  color: #353131;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.2rem;
}
.c-contact__input, .c-contact__textarea {
  padding: 1rem 1.5rem;
  border: 1px solid transparent;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  background-color: #fff;
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-contact__input, .c-contact__textarea {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
}
.c-contact__input::placeholder, .c-contact__textarea::placeholder {
  color: #999;
}
.c-contact__input:focus, .c-contact__textarea:focus {
  outline: none;
  border-color: #FF5C00;
}
.c-contact__textarea {
  resize: vertical;
  min-height: 150px;
}
@media screen and (max-width: 767px) {
  .c-contact__textarea {
    min-height: 120px;
  }
}
.c-contact__submit {
  align-self: flex-start;
  background-color: #FF5C00;
  color: #fff;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  justify-content: center;
  letter-spacing: 0.17rem;
}
@media screen and (max-width: 767px) {
  .c-contact__submit {
    padding: 1rem 2rem;
  }
}
.c-contact__submit .arrow {
  width: 30px;
  height: 1px;
  background: #fff;
  position: relative;
}
.c-contact__submit .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.c-contact__submit:hover {
  background-color: rgb(255, 124.6, 51);
}

.c-faq {
  position: relative;
  padding: 12vw 10vw;
  background: rgba(53, 49, 49, 0.2);
  overflow: hidden;
}
@media screen and (max-width: 1599px) {
  .c-faq {
    padding: 12vw 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .c-faq {
    padding: 14vw 5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-faq {
    padding: 18vw 5vw;
  }
}
.c-faq::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.c-faq--recruit::before {
  background-image: url(http://findvalue.an-yaku.com/wp-content/uploads/2026/03/recruit_faq.webp);
}
.c-faq--contact .ja {
  color: #08162F;
}
.c-faq--contact::before {
  background-image: url(http://findvalue.an-yaku.com/wp-content/uploads/2026/03/contact_qa.webp);
}
.c-faq__glow {
  position: absolute;
  filter: blur(10px);
  top: 5%;
  right: -20%;
  transform: scale(1.5);
  z-index: -1;
}
.c-faq__inner {
  display: flex;
  gap: 4vw;
}
@media screen and (max-width: 1023px) {
  .c-faq__inner {
    flex-direction: column;
    gap: 8vw;
  }
}
.c-faq__list {
  width: 100%;
  border-top: 1px solid #08162F;
  border-bottom: 1px solid #08162F;
}
.c-faq__item + .c-faq__item {
  border-top: 1px solid #08162F;
}
.c-faq__question {
  position: relative;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 2vw 5vw;
  font-size: 1.2rem;
  font-weight: bold;
  color: #08162F;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1599px) {
  .c-faq__question {
    padding: 3vw 5vw;
  }
}
@media screen and (max-width: 1023px) {
  .c-faq__question {
    padding: 4vw 12vw 4vw 14vw;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-faq__question {
    padding: 20px 35px 20px 50px;
  }
}
.c-faq__question:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.c-faq__question::before {
  content: "Q.";
  position: absolute;
  color: #08162F;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 3rem;
  font-weight: 400;
  top: 50%;
  left: 2vw;
  transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
  .c-faq__question::before {
    font-size: 2.2rem;
    left: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .c-faq__question::before {
    font-size: 1.4rem;
    left: 14px;
  }
}
.c-faq__question span {
  display: block;
  padding-left: 2vw;
}
@media screen and (max-width: 1023px) {
  .c-faq__question span {
    padding-left: 0;
  }
}
.c-faq__question::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-right: 4px solid #08162F;
  border-bottom: 4px solid #08162F;
  top: 50%;
  right: 2vw;
  transform: translateY(-50%) rotate(45deg) skew(-2deg, -2deg);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-faq__question::after {
    width: 10px;
    height: 10px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    right: 18px;
  }
}
.c-faq__answer {
  position: relative;
  background-color: rgba(8, 22, 47, 0.6);
  font-size: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .c-faq__answer {
    font-size: 1rem;
  }
}
.c-faq__answer::before {
  content: "A.";
  position: absolute;
  color: #FF5C00;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 3rem;
  font-weight: 400;
  top: 1vw;
  left: 2vw;
}
@media screen and (max-width: 1599px) {
  .c-faq__answer::before {
    top: 2vw;
  }
}
@media screen and (max-width: 1023px) {
  .c-faq__answer::before {
    font-size: 2.2rem;
    top: 3.8vw;
    left: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .c-faq__answer::before {
    font-size: 1.4rem;
    top: 14px;
    left: 16px;
  }
}
.c-faq__answer span {
  display: block;
  padding: 2vw 5vw 2vw 7vw;
}
@media screen and (max-width: 1599px) {
  .c-faq__answer span {
    padding: 3vw 5vw 3vw 7vw;
  }
}
@media screen and (max-width: 1023px) {
  .c-faq__answer span {
    padding: 4vw 8vw 4vw 14vw;
  }
}
@media screen and (max-width: 767px) {
  .c-faq__answer span {
    padding: 16px 25px 16px 50px;
  }
}
.js-enabled .c-faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}
.js-enabled .c-faq__item.is-open .c-faq__answer {
  opacity: 1;
}
.js-enabled .c-faq__item.is-open .c-faq__question::after {
  transform: translateY(-35%) rotate(-135deg) skew(-2deg, -2deg);
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.c-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c-video-modal.is-active {
  display: flex;
  opacity: 1;
}
.c-video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.c-video-modal__content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
}
.c-video-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  line-height: 1;
}
.c-video-modal__close:hover {
  transform: rotate(90deg);
}
.c-video-modal__iframe-wrap {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.c-video-modal__iframe-wrap iframe {
  width: 100%;
  height: 100%;
}

/* ============================================================
   WORK MODAL
   ============================================================ */
.c-work-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.c-work-modal[hidden] {
  display: flex;
}
.c-work-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.c-work-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.c-work-modal.is-active .c-work-modal__overlay {
  opacity: 1;
}
.c-work-modal__content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 960px;
  max-height: 90vh;
  background: #141518;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.c-work-modal.is-active .c-work-modal__content {
  opacity: 1;
  transform: translateY(0);
}
.c-work-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.c-work-modal__close:hover {
  transform: rotate(90deg);
}
.c-work-modal__body {
  flex: 1;
  max-height: 100vh;
  min-height: 0;
  padding: 4vw;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.c-work-modal__inner {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-bottom: 4vw;
}
@media screen and (max-width: 1023px) {
  .c-work-modal__inner {
    display: block;
  }
}
.c-work-modal__slider-wrap {
  position: relative;
  background: #141518;
}
@media screen and (min-width: 1024px) {
  .c-work-modal__slider-wrap {
    min-width: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 1023px) {
  .c-work-modal__slider-wrap {
    margin-bottom: 6vw;
  }
}
.c-work-modal__slider-wrap .swiper {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.c-work-modal__slider-wrap .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.c-work-modal__slider-wrap .swiper-button-prev,
.c-work-modal__slider-wrap .swiper-button-next {
  background-color: rgba(255, 255, 255, 0.4);
  color: #353131;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  transition: background-color 0.3s ease;
}
.c-work-modal__slider-wrap .swiper-button-prev::after,
.c-work-modal__slider-wrap .swiper-button-next::after {
  font-size: 1.2rem;
}
.c-work-modal__slider-wrap .swiper-button-prev:hover,
.c-work-modal__slider-wrap .swiper-button-next:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.c-work-modal__slider-wrap .swiper-pagination-bullet-active {
  background: #FF5C00;
}
.c-work-modal__info {
  overflow-y: auto;
  color: #fff;
}
.c-work-modal__category {
  display: inline-block;
  background: #FF5C00;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.c-work-modal__title {
  position: relative;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5vw;
  padding-bottom: 1.5vw;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1023px) {
  .c-work-modal__title {
    margin-bottom: 2rem;
  }
}
.c-work-modal__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30%;
  height: 1px;
  background-color: #FF5C00;
}
.c-work-modal__text {
  line-height: 2;
  margin-bottom: 4vw;
}
@media screen and (max-width: 1023px) {
  .c-work-modal__text {
    margin-bottom: 2rem;
  }
}
.c-work-modal__member {
  padding-top: 2vw;
}
.c-work-modal__member-heading {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 2.6rem;
  font-weight: 400;
  padding-bottom: 1vw;
}
@media screen and (max-width: 767px) {
  .c-work-modal__member-heading {
    font-size: 1.8rem;
    padding-bottom: 1rem;
  }
}
.c-work-modal__member-list {
  line-height: 2;
  margin: 0;
}

.c-member {
  display: grid;
  gap: 2vw 1vw;
  width: 100%;
}
.c-member__card {
  justify-content: center;
  background-color: rgba(20, 21, 24, 0.4);
  border-radius: 10px;
  padding: 2vw 2.5vw;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-member__card {
    padding: 1.5rem;
  }
}
.c-member__card-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.c-member__post {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  margin-bottom: 0.5vw;
}
.c-member__name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1vw;
  margin-bottom: 0.5vw;
  font-size: 1.6rem;
}
.c-member__name .ja {
  letter-spacing: 0.15rem;
}
.c-member__name .en {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 0.85rem;
  letter-spacing: 0.05rem;
}
.c-member__area {
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
}
.c-member__sns {
  display: flex;
  gap: 2vw;
  margin-top: 2vw;
}
@media screen and (max-width: 767px) {
  .c-member__sns {
    margin-top: 1.5rem;
  }
}
.c-member__sns-icon {
  width: 1.6rem;
  height: 1.6rem;
}

.c-work {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15vh 3vw;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .c-work {
    grid-template-columns: repeat(2, 1fr);
    gap: 10vh 2vw;
  }
}
@media screen and (max-width: 767px) {
  .c-work {
    grid-template-columns: 1fr;
    gap: 10vh 6vw;
  }
}
.c-work__link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.c-work__link:hover .c-work__more::after {
  width: 2rem;
  height: 2rem;
}
.c-work__link:hover .c-work__photo::after {
  opacity: 1;
}
.c-work__link:hover .c-work__title {
  color: #FF5C00;
}
.c-work__link:hover .c-work__title::before {
  width: 100%;
}
.c-work__photo {
  position: relative;
  aspect-ratio: 4/3;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.c-work__photo::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c-work__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-work__category {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: bold;
  background-color: #FF5C00;
  border-radius: 999px;
  padding: 0.25vw 1vw;
}
.c-work__title {
  position: relative;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.8rem;
  margin-bottom: 3vw;
  border-bottom: 1px solid #fff;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  min-height: 14vh;
}
@media screen and (max-width: 1023px) {
  .c-work__title {
    min-height: auto;
    font-size: 1.4rem;
    padding: 1rem 0;
  }
}
.c-work__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30%;
  height: 1px;
  background-color: #FF5C00;
  transition: width 0.3s ease;
}
.c-work__text {
  line-height: 1.8;
}
.c-work__more {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 2vw;
  padding-right: 1vw;
  font-size: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .c-work__more {
    font-size: 1rem;
  }
}
.c-work__more::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 1px;
  background-color: #fff;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
}
.c-work__more::after {
  content: "";
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #FF5C00;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0.8;
  z-index: -1;
  transition: width 0.3s ease, height 0.3s ease;
}

.c-single {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 15vh;
  padding: 0 6vw;
}
.c-single__inner {
  background-color: #fff;
  border-radius: 20px;
  padding: 8vw 4vw;
}
@media screen and (max-width: 767px) {
  .c-single__inner {
    border-radius: 1rem;
  }
}
.c-single__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-single__title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #353131;
}
@media screen and (max-width: 1023px) {
  .c-single__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 539px) {
  .c-single__title {
    font-size: 1.4rem;
  }
}
.c-single__thumbnail {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 4rem;
}
.c-single__content {
  margin-bottom: 4rem;
  line-height: 1.8;
  color: #353131;
}
.c-single__content h2 {
  margin: 2rem 0 1rem;
}
.c-single__content h3 {
  margin: 1rem 0;
}
.c-single__content p + p {
  margin-top: 1.5rem;
}
.c-single__content figure {
  margin-bottom: 2rem;
}
.c-single__content a {
  color: #FF5C00;
  text-decoration: underline;
  transition: all 0.3s;
}
.c-single__content a:hover {
  color: rgb(204, 73.6, 0);
}
.c-single__content .wp-block-separator {
  margin: 2rem auto;
}
.c-single__btn {
  margin: 4rem auto 0;
}
@media screen and (min-width: 1024px) {
  .c-single__btn {
    width: 50vw;
  }
}
@media screen and (min-width: 1280px) {
  .c-single__btn {
    width: 30vw;
  }
}

.c-category__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
}
.c-category__item--news {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .c-category__item--news {
    width: stretch;
    max-width: 15rem;
  }
}
.c-category__link {
  display: inline-block;
  font-size: 0.85rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid #FF5C00;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #FF5C00;
  width: 100%;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .c-category__link {
    padding: 0.2rem 1rem;
  }
}
.c-category__link.is-active, .c-category__link:hover {
  background-color: #FF5C00;
  color: #fff;
}

.c-pagination ul.page-numbers {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
}
.c-pagination li > .page-numbers {
  padding: 0.5rem 0.75rem;
  border-radius: 50%;
  border: 1px solid #FF5C00;
  background-color: rgba(255, 255, 255, 0.8);
  color: #FF5C00;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.c-pagination li > .page-numbers:hover, .c-pagination li > .page-numbers.current {
  background-color: #FF5C00;
  color: #fff;
}

/* ============================================================
   FIRST VIEW (FV) & PHOTO GRID
   ============================================================ */
.p-background-layers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.p-fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  overflow: visible;
}

.p-fv__glow-wrap {
  width: 100vw;
  height: 100%;
}

.p-fv__glow-item {
  position: absolute;
  top: 50%;
  left: 12%;
  width: 30vw;
  height: 30vw;
  border-radius: 50%;
  background-image: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/bk_orange.png);
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(0.6);
}
@media screen and (max-width: 767px) {
  .p-fv__glow-item {
    width: 40vw;
    height: 40vw;
  }
}

.p-album {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.p-album.is-safari-pinned {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.p-album.is-safari-flow {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: 100vh;
}
.p-album__list {
  position: relative;
  will-change: filter;
}
.p-album__list::before {
  content: "";
  position: absolute;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.p-album__item {
  position: relative;
  opacity: 0;
}
.p-album__item::before {
  content: "";
  position: absolute;
  background: rgba(53, 49, 49, 0.2);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-album__item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  border-radius: 2px;
}
.p-album__item:nth-child(3n+1) {
  grid-column: span 2;
  grid-row: span 2;
}
.p-album__item:nth-child(5n+2) {
  grid-column: span 1;
  grid-row: span 3;
}
.p-album__item:nth-child(7n+3) {
  grid-column: span 3;
  grid-row: span 1;
}

.p-fv-text-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 200;
}

.p-fv__text {
  color: #fff;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 10vw;
  font-weight: 400;
  line-height: 1.6;
  padding-left: 10vw !important;
  opacity: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1599px) {
  .p-fv__text {
    padding-left: 6vw !important;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__text {
    font-size: 12vw;
    padding-left: 6vw !important;
    font-weight: 600;
  }
}
@media screen and (max-width: 539px) {
  .p-fv__text {
    font-size: 14vw;
    line-height: 1.5;
  }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.p-top-lead {
  position: relative;
  z-index: 200;
  padding: 0 10vw 15vh !important;
}
@media screen and (max-width: 1599px) {
  .p-top-lead {
    padding: 0 6vw 5vh !important;
  }
}
@media screen and (max-width: 767px) {
  .p-top-lead {
    padding: 0 6vw 5vh !important;
  }
}
.p-top-lead__inner {
  max-width: 1000px;
}
.p-top-lead__text {
  color: #353131;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2.2;
  letter-spacing: 0.1em;
  transition: color 0.5s ease;
}
@media screen and (max-width: 767px) {
  .p-top-lead__text {
    font-size: 1.2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 539px) {
  .p-top-lead__text {
    font-size: 1.1rem;
    line-height: 1.9;
  }
}
.p-top-lead__text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
}

/* ============================================================
   CULTURE SECTION (CARD STACK)
   ============================================================ */
.p-top-about {
  position: relative;
  z-index: 300;
  min-height: 100vh;
  margin-bottom: 10vh;
  padding: 0 0 15vh;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top-about {
    padding: 0 0 5vh;
  }
}
.p-top-about__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: 90%;
  padding: 15vh 0 15vh 10vw;
  align-items: stretch;
  gap: 5%;
  padding-top: 5vh;
}
@media screen and (max-width: 1599px) {
  .p-top-about__inner {
    padding: 15vh 0 15vh 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-about__inner {
    flex-direction: column;
    gap: 3rem;
    padding-top: 10vh;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__inner {
    width: 100%;
    padding: 8vh 6vw 15vh;
  }
}
.p-top-about__title {
  width: auto;
}
.p-top-about__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .p-top-about__nav-list {
    display: flex;
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__nav-list {
    width: 100%;
    justify-content: space-between;
  }
}
.p-top-about__nav-list li {
  position: relative;
  font-size: 1.2rem;
  margin-bottom: 0.1em;
  padding: 0.5em 0 0.5em 1.2em;
  color: #fff;
  letter-spacing: 0.2rem;
  transition: 0.4s;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .p-top-about__nav-list li {
    margin-bottom: 0;
    padding: 0.5em 1.2em;
    border-bottom: 3px solid transparent;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__nav-list li {
    font-size: 1rem;
    padding: 0.5em 1em;
  }
}
@media screen and (max-width: 539px) {
  .p-top-about__nav-list li {
    font-size: 1rem;
    padding: 0.5em 0;
  }
}
.p-top-about__nav-list li::before {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 6px;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .p-top-about__nav-list li::before {
    display: none;
  }
}
.p-top-about__nav-list li.is-active, .p-top-about__nav-list li:hover {
  opacity: 1;
  color: #FF5C00;
}
.p-top-about__nav-list li.is-active::before, .p-top-about__nav-list li:hover::before {
  background-color: #FF5C00;
}
@media screen and (max-width: 1023px) {
  .p-top-about__nav-list li.is-active, .p-top-about__nav-list li:hover {
    border-bottom-color: #FF5C00;
  }
}
.p-top-about__stack {
  width: 80%;
  position: relative;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 1023px) {
  .p-top-about__stack {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__stack {
    aspect-ratio: 4/3;
  }
}
.p-top-about__card {
  position: absolute;
  inset: 0;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  background-color: #1a1a1a;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 767px) {
  .p-top-about__card {
    border-radius: 15px 15px 0 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }
}
.p-top-about__card:nth-child(1) {
  z-index: 10;
}
.p-top-about__card:nth-child(2) {
  z-index: 20;
  transform: translateY(110vh);
}
.p-top-about__card:nth-child(3) {
  z-index: 30;
  transform: translateY(110vh);
}
.p-top-about__card::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.p-top-about__card:hover::before {
  opacity: 1;
}
.p-top-about__card-bg {
  height: 100%;
}
.p-top-about__card-bg img {
  filter: blur(3px);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-about__card-content {
  padding: 1% 5% 5%;
  color: #fff;
  position: absolute;
  z-index: 2;
  height: 100%;
  top: 0;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-top-about__card-content {
    width: 85%;
    padding: 4%;
  }
}
.p-top-about__card-content-bottom {
  position: absolute;
  bottom: 3em;
}
@media screen and (max-width: 767px) {
  .p-top-about__card-content-bottom {
    bottom: 2em;
  }
}
.p-top-about__card-title-en {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 7vw;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.2rem;
}
.p-top-about__card-subtitle {
  font-size: 1.5vw;
  letter-spacing: 0.1rem;
}
.p-top-about__card-catch {
  display: inline-block;
  background-color: #FF5C00;
  color: #fff;
  font-size: 4vw;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1;
  margin: 2vw 0 1.5vw;
  padding: 0.15em;
}
@media screen and (max-width: 767px) {
  .p-top-about__card-catch {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 539px) {
  .p-top-about__card-catch {
    font-size: 2em;
  }
}
.p-top-about__card-text {
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__card-text {
    font-size: 0.85rem;
  }
}
.p-top-about__card-footer {
  position: absolute;
  background-color: #FF5C00;
  right: 0;
  bottom: 0;
  width: 8em;
  height: 5em;
  clip-path: polygon(100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .p-top-about__card-footer {
    width: 6em;
    height: 4em;
  }
}
.p-top-about__card-footer .arrow {
  position: absolute;
  width: 4em;
  height: 2px;
  background-color: #fff;
  right: 1rem;
  bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__card-footer .arrow {
    width: 3em;
  }
}
.p-top-about__card-footer .arrow::before {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  border-top: 2px solid #fff;
  top: -6px;
  right: 2px;
  transform: rotate(25deg);
}

/* ============================================================
   TOP PAGE: MOVIE SECTION (SLIDER)
   ============================================================ */
.p-top-movie {
  position: relative;
  width: 100%;
  padding: 15vh 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-movie {
    padding: 10vh 0;
    min-height: auto;
  }
}
.p-top-movie::before {
  content: "";
  position: absolute;
  background: #fff url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.p-top-movie__glow {
  position: absolute;
  left: -20vw;
  filter: blur(10px);
  transform: scale(2);
}
@media screen and (max-width: 539px) {
  .p-top-movie__glow {
    transform: scale(1.2);
    top: -20vh;
    left: -100%;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-movie__header {
    padding: 0 5vw;
  }
}
.p-top-movie__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 4vw;
  margin: 0 10vw;
}
@media screen and (max-width: 1599px) {
  .p-top-movie__inner {
    margin: 0 10vw 0 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-movie__inner {
    flex-direction: column;
    margin: 0;
    gap: 3rem;
  }
}
.p-top-movie__thumbnail {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-top-movie__thumbnail {
    padding: 0 6vw;
  }
}
.p-top-movie__item {
  position: relative;
  cursor: pointer;
}
.p-top-movie__item::before {
  content: "";
  position: absolute;
  background-color: rgba(53, 49, 49, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-top-movie__item:hover::before {
  opacity: 1;
}
.p-top-movie__item:hover .p-top-movie__play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.p-top-movie__item--soon {
  cursor: not-allowed;
}
.p-top-movie__item--soon::before {
  background-color: rgba(53, 49, 49, 0.8);
  opacity: 1;
}
.p-top-movie__item--soon-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 2.2rem;
  letter-spacing: 0.17rem;
  opacity: 0.8;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-top-movie__item--soon-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 539px) {
  .p-top-movie__item--soon-text {
    font-size: 1.2rem;
  }
}
.p-top-movie__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top-movie__play-btn {
    width: 50px;
    height: 50px;
  }
}
.p-top-movie__play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-left: 15px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
@media screen and (max-width: 767px) {
  .p-top-movie__play-btn::after {
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
}
.p-top-movie__caption {
  position: absolute;
  display: inline-block;
  color: #fff;
  font-size: 4vw;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  left: 1.5rem;
  bottom: 2rem;
}
@media screen and (max-width: 539px) {
  .p-top-movie__caption {
    left: 1rem;
    bottom: 1rem;
  }
}
.p-top-movie__caption span {
  background-color: #FF5C00;
  padding: 0.15em;
}

/* ============================================================
   COMPANY SECTION (事業内容)
   ============================================================ */
.p-top-company {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 15vh 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-company {
    padding: 10vh 0;
    min-height: auto;
  }
}
.p-top-company__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  margin: 0 10vw;
  gap: 5vw;
}
@media screen and (max-width: 1599px) {
  .p-top-company__inner {
    margin: 0 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-company__inner {
    flex-direction: column;
    margin: 0 5vw;
    gap: 3rem;
  }
}
.p-top-company__content {
  position: relative;
  margin-right: -10vw;
  width: 100%;
}
@media screen and (max-width: 1599px) {
  .p-top-company__content {
    margin-right: -6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-company__content {
    margin-right: -5vw;
  }
}
.p-top-company__number {
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-size: 12rem;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  z-index: 1;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-top-company__number {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-company__number {
    font-size: 10rem;
    left: 1rem;
  }
}
@media screen and (max-width: 539px) {
  .p-top-company__number {
    font-size: 20vw;
    left: 0.5rem;
  }
}
.p-top-company__main-card {
  grid-column: 1/2;
  grid-row: 1/3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%), url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
  height: 60vh;
}
.p-top-company__main-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.p-top-company__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.p-top-company__main-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 21rem 3rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__main-info {
    padding: 15rem 1rem 2rem;
  }
}
.p-top-company__main-category {
  display: block;
  letter-spacing: 0.15em;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.p-top-company__main-title {
  font-size: 2.8rem;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  transition: opacity 0.3s ease;
  letter-spacing: 0.07rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__main-title {
    font-size: 2rem;
  }
}
.p-top-company__main-text {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top-company__main-text {
    font-size: 0.85rem;
  }
}
.p-top-company__grid {
  grid-column: 2/3;
  grid-row: 1/3;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .p-top-company__grid {
    grid-template-columns: 1fr;
  }
}
.p-top-company__card {
  position: relative;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 15vw;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-top-company__card {
    height: 20vh;
  }
}
.p-top-company__card::before {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%), url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.p-top-company__card.is-active::before {
  background-color: rgba(53, 49, 49, 0.6);
}
.p-top-company__card-image {
  inset: 0;
  height: 100%;
}
.p-top-company__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-company__card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0 1rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top-company__card-content {
    padding: 1rem;
  }
}
.p-top-company__card-number {
  font-size: 7vw;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1;
  opacity: 0.6;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top-company__card-number {
    font-size: 12vw;
  }
}
.p-top-company__card-category {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}
.p-top-company__card-title {
  font-size: 1.2rem;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  margin-bottom: 0.5rem;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__card-title {
    font-size: 1.3rem;
  }
}
.p-top-company__card-footer {
  position: absolute;
  background-color: #FF5C00;
  right: 0;
  bottom: 0;
  width: 8em;
  height: 5em;
  clip-path: polygon(100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .p-top-company__card-footer {
    width: 6em;
    height: 3em;
  }
}
.p-top-company__card-footer .arrow {
  position: absolute;
  width: 4em;
  height: 2px;
  background-color: #fff;
  right: 1rem;
  bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__card-footer .arrow {
    width: 2em;
  }
}
.p-top-company__card-footer .arrow::before {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  border-top: 2px solid #fff;
  top: -6px;
  right: 2px;
  transform: rotate(25deg);
}
@media screen and (max-width: 767px) {
  .p-top-company__card-footer .arrow::before {
    width: 1em;
    top: -4px;
  }
}

/* ============================================================
   WORKS SECTION (共創の事例)
   ============================================================ */
.p-top-works {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 15vh 0;
  background: rgba(8, 22, 47, 0.8) url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
  overflow: hidden;
}
.p-top-works::before {
  content: "";
  position: absolute;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/blur_bg.webp) no-repeat;
  background-size: cover;
  filter: blur(10px);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-works {
    padding: 10vh 0;
    min-height: auto;
  }
}
.p-top-works__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  margin: 0 10vw;
  gap: 5vw;
}
@media screen and (max-width: 1599px) {
  .p-top-works__inner {
    margin: 0 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-works__inner {
    flex-direction: column;
    margin: 0 5vw;
    gap: 3rem;
  }
}
.p-top-works__title-box {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 4vh;
}
@media screen and (max-width: 1023px) {
  .p-top-works__title-box {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-works__title-box {
    gap: 1rem;
  }
}
.p-top-works__grid {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6vw;
}
@media screen and (max-width: 1023px) {
  .p-top-works__grid {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-works__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.p-top-works__card {
  position: relative;
  background: #141518 url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
.p-top-works__card::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.p-top-works__card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.p-top-works__card:hover::before {
  opacity: 1;
}
.p-top-works__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 5px;
}
.p-top-works__card-image::before {
  content: "";
  position: absolute;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
  width: 100%;
  height: 100%;
}
.p-top-works__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-works__card-content {
  padding: 1.2rem 1.2rem 3rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top-works__card-content {
    padding: 1rem 1rem 2rem;
  }
}
.p-top-works__card-title {
  font-size: 1.6rem;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  margin-bottom: 1rem;
  letter-spacing: 0.17rem;
}
@media screen and (max-width: 767px) {
  .p-top-works__card-title {
    font-size: 1.2rem;
  }
}
.p-top-works__card-text {
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.15rem;
  opacity: 0.8;
}

/* ============================================================
   RECRUIT SECTION (採用情報)
   ============================================================ */
.p-top-recruit {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 15vh 0;
  overflow: hidden;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
}
@media screen and (max-width: 767px) {
  .p-top-recruit {
    padding: 10vh 0;
    min-height: auto;
  }
}
.p-top-recruit::before {
  content: "";
  position: absolute;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/front/recruit_bg.webp) no-repeat;
  background-size: cover;
  background-position: right;
  filter: brightness(70%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-top-recruit__glow {
  position: absolute;
  filter: blur(10px);
  right: -20%;
  transform: scale(1.5);
}
.p-top-recruit__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  margin: 0 10vw;
}
@media screen and (max-width: 1599px) {
  .p-top-recruit__inner {
    margin: 0 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-recruit__inner {
    flex-direction: column;
    margin: 0 5vw;
    gap: 3rem;
  }
}
.p-top-recruit__title-box {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 4vh;
}
@media screen and (max-width: 1023px) {
  .p-top-recruit__title-box {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit__title-box {
    gap: 1rem;
  }
}
.p-top-recruit__content {
  flex-grow: 1;
  display: flex;
  gap: 3vw;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-top-recruit__content {
    flex-direction: column;
    gap: 3rem;
    width: 100%;
  }
}
.p-top-recruit__image {
  flex-shrink: 0;
  width: 35%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1023px) {
  .p-top-recruit__image {
    width: 100%;
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit__image {
    border-radius: 15px;
  }
}
.p-top-recruit__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-recruit__cards {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 2vh;
  width: auto;
}
@media screen and (max-width: 1023px) {
  .p-top-recruit__cards {
    align-items: stretch;
    padding-right: 0;
    width: 100%;
  }
}
.p-top-recruit__card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2.2rem 1.8rem;
  width: 70%;
  overflow: hidden;
  display: flex;
  gap: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .p-top-recruit__card {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit__card {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }
}
.p-top-recruit__card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.p-top-recruit__card-image {
  flex-shrink: 0;
  width: 30%;
  height: 220px;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__card-image {
    width: 100%;
    height: 200px;
  }
}
.p-top-recruit__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-recruit__card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-top-recruit__card-category {
  font-size: 0.85rem;
  color: #999;
  letter-spacing: 0.5em;
  margin-bottom: 0.5rem;
}
.p-top-recruit__card-header {
  display: flex;
  align-items: end;
  gap: 0.4rem;
}
.p-top-recruit__card-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FF5C00;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__card-number {
    font-size: 1.5rem;
  }
}
.p-top-recruit__card-title {
  font-size: 1.8rem;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #333;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__card-title {
    font-size: 1.5rem;
  }
}
.p-top-recruit__card-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1rem;
}
.p-top-recruit__card-btn {
  display: inline-block;
  background-color: #FF5C00;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 2px;
  text-align: center;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  width: 100%;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__card-btn {
    padding: 0.7rem 1.5rem;
  }
}
.p-top-recruit__card-btn:hover {
  background-color: rgb(204, 73.6, 0);
}

/* ============================================================
   NEWS SECTION (お知らせ/ブログ情報)
   ============================================================ */
.p-top-news {
  position: relative;
  width: 100%;
  padding: 15vh 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding: 10vh 0;
    min-height: auto;
  }
}
.p-top-news__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  padding-left: 10vw;
  gap: 5vw;
}
@media screen and (max-width: 1599px) {
  .p-top-news__inner {
    padding-left: 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-news__inner {
    flex-direction: column;
    padding-left: 5vw;
    padding-right: 5vw;
    gap: 3rem;
  }
}
.p-top-news__title-box {
  flex-shrink: 0;
  width: 200px;
}
@media screen and (max-width: 1023px) {
  .p-top-news__title-box {
    width: 100%;
  }
}
.p-top-news__scroll-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
@media screen and (max-width: 1023px) {
  .p-top-news__scroll-wrapper {
    width: calc(100% + 5vw);
  }
}
.p-top-news__scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 1rem;
  padding-right: 5vw;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1023px) {
  .p-top-news__scroll-container {
    padding-right: 0;
  }
}
.p-top-news__scroll-container.is-dragging {
  cursor: grabbing;
}
.p-top-news__scroll-container {
  /* WebKit ブラウザのスクロールバーを完全に消す */
}
.p-top-news__scroll-container::-webkit-scrollbar {
  display: none;
}
.p-top-news__scrollbar {
  flex-grow: 1;
  position: relative;
  width: calc(100% - 10vw);
  height: 5px;
  border-radius: 999px;
  background: #08162F;
  border: 1px solid rgba(8, 22, 47, 0.22);
  overflow: hidden;
  touch-action: none;
  user-select: none;
}
@media screen and (max-width: 1599px) {
  .p-top-news__scrollbar {
    width: calc(100% - 6vw);
  }
}
@media screen and (max-width: 1023px) {
  .p-top-news__scrollbar {
    width: calc(100% - 5vw);
  }
}
.p-top-news__scrollbar.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.p-top-news__scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 80px;
  border-radius: 999px;
  background: #FF5C00;
  box-shadow: 0 2px 10px rgba(255, 92, 0, 0.35);
  touch-action: none;
  user-select: none;
  cursor: grab;
}
.p-top-news__scrollbar-thumb:active {
  cursor: grabbing;
}
.p-top-news .is-news-dragging {
  user-select: none;
}
.p-top-news__cards {
  display: flex;
  gap: 2vw;
  min-width: min-content;
}
@media screen and (max-width: 1023px) {
  .p-top-news__cards {
    margin-right: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news__cards {
    gap: 1rem;
  }
}
.p-top-news__card {
  position: relative;
  flex-shrink: 0;
  width: 350px;
  background-color: #fff;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-top-news__card {
    width: 280px;
  }
}
@media screen and (max-width: 539px) {
  .p-top-news__card {
    width: 250px;
  }
}
.p-top-news__card::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-top-news__card:hover::before {
  opacity: 1;
}
.p-top-news__card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #FF9966 0%, #FF6633 50%, #FF9966 100%);
  margin-bottom: 1rem;
}
.p-top-news__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-news__card-content {
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__card-content {
    padding: 1.2rem;
  }
}
.p-top-news__card-date {
  display: block;
  font-size: 0.7rem;
  color: #FF5C00;
  margin-bottom: 0.5rem;
  letter-spacing: 0.2rem;
}
.p-top-news__card-title {
  font-size: 1.1rem;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #333;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top-news__card-title {
    font-size: 1rem;
  }
}

/* ============================================================
   ABOUT PAGE (contact sectionより前)
   ============================================================ */
.p-about-page {
  position: relative;
  overflow: hidden;
}

.p-about-mv {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15vh;
  padding-bottom: 15vh;
}
@media screen and (max-width: 1023px) {
  .p-about-mv {
    gap: 8vh;
    padding-bottom: 8vh;
  }
}
.p-about-mv__glow {
  position: absolute;
  filter: blur(10px);
  right: -20%;
  bottom: -10%;
  z-index: -1;
}
.p-about-mv__block {
  display: grid;
  gap: 2vw;
  padding: 0 10vw;
}
@media screen and (max-width: 1599px) {
  .p-about-mv__block {
    padding: 0 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-about-mv__block {
    display: flex;
    flex-direction: column;
    gap: 4vw;
  }
}
.p-about-mv__block--left {
  grid-template-columns: 1fr;
  grid-template-areas: "vertical image" "vertical text";
}
.p-about-mv__block--left > .p-about-mv__photo {
  margin-right: -10vw;
}
@media screen and (max-width: 1599px) {
  .p-about-mv__block--left > .p-about-mv__photo {
    margin-right: -6vw;
  }
}
.p-about-mv__block--right {
  grid-template-columns: 1fr;
  grid-template-areas: "image vertical" "text vertical";
}
.p-about-mv__block--right > .p-about-mv__photo {
  margin-left: -10vw;
}
@media screen and (max-width: 1599px) {
  .p-about-mv__block--right > .p-about-mv__photo {
    margin-left: -6vw;
  }
}
.p-about-mv__photo {
  grid-area: image;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (min-width: 1600px) {
  .p-about-mv__photo {
    min-height: 260px;
  }
}
.p-about-mv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-about-mv__text {
  grid-area: text;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.82);
  padding-right: 8vw;
}
@media screen and (max-width: 1599px) {
  .p-about-mv__text {
    padding-right: 6vw;
  }
}

.p-about-values {
  position: relative;
  padding: 6vw 10vw 15vh 10vw;
}
@media screen and (max-width: 1599px) {
  .p-about-values {
    padding: 6vw 10vw 15vh 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-about-values {
    padding: 6vw 6vw 10vh;
  }
}
.p-about-values__glow {
  position: absolute;
  filter: blur(10px);
  left: -20%;
  top: -20%;
  z-index: -1;
}
.p-about-values__inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 4vw;
}
@media screen and (max-width: 1023px) {
  .p-about-values__inner {
    flex-direction: column;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1599px) {
  .p-about-values__inner {
    gap: 0;
  }
}
.p-about-values__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .p-about-values__list {
    grid-template-columns: 1fr;
  }
}
.p-about-values__card {
  background-color: #141518;
  border-radius: 10px;
  padding: 1vw;
  display: grid;
  grid-template-columns: auto;
  gap: 2vw;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-about-values__card {
    grid-template-columns: 1fr 1fr;
    padding: 4vw 4vw 6vw;
  }
}
.p-about-values__thumb {
  background-color: #27282F;
  width: 100%;
  min-height: 250px;
  border-radius: 5px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .p-about-values__thumb {
    min-height: 150px;
  }
}
.p-about-values__thumb-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-about-values__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1vw;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 767px) {
  .p-about-values__content {
    padding-right: 0;
  }
}
.p-about-values__content-title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 1023px) {
  .p-about-values__content-title {
    font-size: 1.2rem;
  }
}
.p-about-values__content-text {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-about-values__content-text {
    line-height: 1.6;
  }
}

/* ── Produce sections ── */
.p-service-produce {
  margin: 0 10vw 15vh 10vw;
  border-radius: 10px;
}
@media screen and (max-width: 1599px) {
  .p-service-produce {
    margin: 0 10vw 15vh 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-service-produce {
    margin: 0 6vw 15vh;
  }
}
.p-service-produce__inner {
  margin: 0 auto;
  display: flex;
  gap: 4vw;
}
@media screen and (min-width: 1024px) and (max-width: 1599px) {
  .p-service-produce__inner {
    gap: 0;
  }
}
@media screen and (max-width: 1023px) {
  .p-service-produce__inner {
    gap: 6vw;
    flex-direction: column;
  }
}
.p-service-produce__contents {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.p-service-produce__content {
  display: flex;
  align-items: center;
  gap: 3vw;
  background-color: #141518;
  border-radius: 10px;
  padding: 1.5vw;
}
@media screen and (max-width: 767px) {
  .p-service-produce__content {
    flex-direction: column;
    gap: 4vw;
    padding: 3vw;
  }
}
.p-service-produce {
  /* Images */
}
.p-service-produce__images {
  width: 30vw;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-service-produce__images {
    width: 100%;
  }
}
.p-service-produce__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-service-produce__img {
    aspect-ratio: 4/3;
  }
}
.p-service-produce {
  /* Body text */
}
.p-service-produce__body {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  padding-right: 3vw;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-service-produce__body {
    padding-right: 0;
  }
}
.p-service-produce__subtitle {
  display: inline-block;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 2.2rem;
  font-weight: 400;
  border-bottom: 1px dashed #fff;
  padding-bottom: 0.5rem;
  margin-bottom: 2vw;
  letter-spacing: 0.17rem;
}
@media screen and (max-width: 1279px) {
  .p-service-produce__subtitle {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-service-produce__subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.p-service-produce__text {
  line-height: 2;
  margin-bottom: 1rem;
}

.p-service-works {
  position: relative;
  background-color: rgba(8, 22, 47, 0.8);
  padding: 15vh 6vw;
  position: relative;
  overflow: hidden;
}
.p-service-works::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/blur_bg.webp) no-repeat;
  filter: blur(34px);
  top: 0;
  left: 0;
  width: calc(100% + 34px);
  height: calc(100% + 34px);
  z-index: -1;
}
.p-service-works__title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .p-service-works__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-service-works__title {
    font-size: 2rem;
  }
}

.p-service-partner {
  padding: 15vh 0;
}
.p-service-partner__inner {
  display: flex;
  gap: 2vw;
  padding: 0 10vw;
}
@media screen and (max-width: 1599px) {
  .p-service-partner__inner {
    padding: 0 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-service-partner__inner {
    flex-direction: column;
    gap: 4vw;
    padding: 0 5vw;
  }
}
.p-service-partner__blockquote {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  width: 100%;
}
.p-service-partner__blockquote--none {
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-service-partner__blockquote--none {
    align-items: baseline;
  }
}
.p-service-partner__card {
  background-color: #fff;
  border-radius: 10px;
  padding: 4vw;
  display: flex;
  align-items: center;
  gap: 4vw;
  letter-spacing: 0.17rem;
}
@media screen and (max-width: 767px) {
  .p-service-partner__card {
    flex-direction: column;
  }
}
.p-service-partner__card-l {
  display: flex;
  align-items: center;
  width: 15vw;
}
@media screen and (max-width: 767px) {
  .p-service-partner__card-l {
    width: 100%;
    min-height: 12vh;
  }
}
.p-service-partner__logo {
  margin: auto;
}
.p-service-partner__comment {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #FF5C00;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-service-partner__comment {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 539px) {
  .p-service-partner__comment {
    font-size: 1rem;
  }
}
.p-service-partner__profile {
  display: flex;
  align-items: center;
  gap: 1.5vw;
}
.p-service-partner__profile-name {
  color: #353131;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-service-partner__profile-name {
    font-size: 0.85rem;
  }
}
.p-service-partner__soon {
  font-size: 2.4rem;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  opacity: 0.8;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1023px) {
  .p-service-partner__soon {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-partner__soon {
    font-size: 1.8rem;
  }
}

.p-company-info {
  padding: 10vh 10vw;
}
@media screen and (max-width: 1599px) {
  .p-company-info {
    padding: 10vh 6vw;
  }
}
@media screen and (max-width: 767px) {
  .p-company-info {
    padding: 5vh 6vw 10vh;
  }
}

.p-company-history {
  padding: 15vh 0 15vh 10vw;
}
@media screen and (max-width: 1599px) {
  .p-company-history {
    padding: 15vh 0 15vh 6vw;
  }
}
@media screen and (max-width: 767px) {
  .p-company-history {
    padding: 10vh 0 10vh 6vw;
  }
}
.p-company-history__inner {
  display: flex;
  gap: 6vw;
}
@media screen and (max-width: 1023px) {
  .p-company-history__inner {
    flex-direction: column;
  }
}
.p-company-history__container {
  display: flex;
  gap: 4vw;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.p-company-history__container::-webkit-scrollbar {
  display: none;
}
.p-company-history__cards {
  position: relative;
  display: flex;
  gap: 4vw;
}
.p-company-history__cards::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 5%;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, #fff, #fff 4px, transparent 4px, transparent 8px);
  background-position: left 25% top;
  background-repeat: repeat-x;
  background-size: 100% 2px;
}
.p-company-history__card {
  width: 25rem;
}
@media screen and (max-width: 1023px) {
  .p-company-history__card {
    width: 20rem;
  }
}
.p-company-history__card-content {
  position: relative;
}
.p-company-history__card-content::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  background-color: #FF5C00;
  border-radius: 50%;
  left: 25%;
  transform: translateX(-50%);
}
.p-company-history__card-year {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-company-history__card-year {
    font-size: 4rem;
  }
}
.p-company-history__card-title {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .p-company-history__card-title {
    font-size: 1.2rem;
  }
}

.p-company-book {
  position: relative;
  padding: 15vh 10vw 30vh 10vw;
}
@media screen and (max-width: 1599px) {
  .p-company-book {
    padding: 15vh 10vw 30vh 6vw;
  }
}
@media screen and (max-width: 767px) {
  .p-company-book {
    padding: 10vh 6vw 15vh 6vw;
  }
}
.p-company-book__title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 2.4rem;
  background-color: #FF5C00;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.8;
  padding: 0.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .p-company-book__title {
    font-size: 1.8rem;
    white-space: normal;
  }
}
@media screen and (max-width: 539px) {
  .p-company-book__title {
    font-size: 1.6rem;
  }
}
.p-company-book__inner {
  display: flex;
  align-items: center;
  gap: 6vw;
}
@media screen and (max-width: 1023px) {
  .p-company-book__inner {
    flex-direction: column-reverse;
    align-items: baseline;
    gap: 0;
    margin-top: 3rem;
  }
}
.p-company-book__content {
  max-width: 60%;
}
@media screen and (max-width: 1023px) {
  .p-company-book__content {
    max-width: 100%;
    margin-bottom: 3rem;
  }
}
.p-company-book__text {
  margin-top: 3rem;
  margin-bottom: 4rem;
  line-height: 2;
}
.p-company-book__text p + p {
  margin-top: 1.5rem;
}
.p-company-book__thumbnail {
  position: absolute;
  max-width: 500px;
  top: 5vh;
  right: 10vw;
  z-index: -1;
}
@media screen and (max-width: 1279px) {
  .p-company-book__thumbnail {
    max-width: 300px;
    top: auto;
  }
}
@media screen and (max-width: 1023px) {
  .p-company-book__thumbnail {
    position: relative;
    right: auto;
  }
}

/* ── 福島セクション ── */
.p-message-fukushima {
  background-repeat: no-repeat;
  background-position: center;
  padding: 15vh 0;
  position: relative;
  overflow: hidden;
}
.p-message-fukushima__background {
  content: "";
  position: absolute;
  filter: blur(10px);
  left: -30%;
  bottom: -10%;
  z-index: 0;
  transform: scale(2);
}
.p-message-fukushima__inner {
  position: relative;
  padding: 0 6vw;
  width: 70vw;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-message-fukushima__inner {
    width: 100%;
  }
}
.p-message-fukushima__content {
  padding-bottom: 80px;
}
.p-message-fukushima__title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  line-height: 1.3;
}
.p-message-fukushima__text {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-message-fukushima__text {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-message-fukushima__lead {
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  max-width: 560px;
}
.p-message-fukushima__profile {
  background-color: #fff;
  color: #353131;
  padding: 0 3vw;
  margin-top: 0;
  border-radius: 10px;
}
@media screen and (max-width: 1023px) {
  .p-message-fukushima__profile {
    padding: 0 6vw;
  }
}
.p-message-fukushima__profile-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 4vw 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6vw;
  border-bottom: 1px dashed #08162F;
}
.p-message-fukushima__profile-inner:last-child {
  border-bottom: none;
}
@media screen and (max-width: 1023px) {
  .p-message-fukushima__profile-inner {
    display: block;
    padding: 6vw 0;
  }
}
.p-message-fukushima__col-title {
  color: #FF5C00;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}
@media screen and (max-width: 1023px) {
  .p-message-fukushima__col-title {
    writing-mode: lr;
    font-size: 1.2rem;
  }
}
.p-message-fukushima__col-list {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.85rem;
  line-height: 2;
  list-style: disc;
  padding-left: 1rem;
}
@media screen and (min-width: 1024px) {
  .p-message-fukushima__col-list {
    width: calc(100% - 10vw);
    font-size: 1rem;
  }
}
.p-message-fukushima__media {
  object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .p-message-fukushima__media {
    width: calc(100% - 10vw);
  }
}

/* ── Hero ── */
.p-member-wrap {
  padding: 6vw 10vw 30vh;
}
@media screen and (max-width: 1599px) {
  .p-member-wrap {
    padding: 6vw 6vw 15vh;
  }
}
.p-member-wrap__inner {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .p-member-wrap__inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-member-wrap__row {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1023px) {
  .p-member-wrap__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-member-wrap__row {
    grid-template-columns: 1fr;
  }
}

.p-member-modal__sub {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  margin-bottom: 1rem;
}
.p-member-modal__name {
  display: flex;
  align-items: baseline;
  gap: 2vw;
  margin-bottom: 2rem;
}
.p-member-modal__title {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.15rem;
}
.p-member-modal__kana {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
.p-member-modal__fields {
  display: flex;
  gap: 2vw;
  margin-top: 2rem;
}
.p-member-modal__fields > li {
  width: 3rem;
  height: 3rem;
}
.p-member-modal__fields a {
  transition: opacity 0.3s ease;
}
.p-member-modal__fields a:hover {
  opacity: 0.6;
}
.p-member-modal__footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #fff;
}
.p-member-modal__footer-heading {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ── Hero ── */
.p-news {
  padding: 0;
}

.p-news-wrap {
  margin-bottom: 30vh;
  padding: 0 10vw;
}
@media screen and (max-width: 1599px) {
  .p-news-wrap {
    padding: 0 10vw 0 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-news-wrap {
    padding: 0 6vw;
  }
}
.p-news-wrap__inner {
  display: flex;
  gap: 6vw;
}
@media screen and (max-width: 1023px) {
  .p-news-wrap__inner {
    flex-direction: column;
    gap: 4rem;
  }
}
.p-news-wrap__row {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.p-news-wrap__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4vw;
  background-color: #fff;
  border-radius: 10px;
  padding: 2vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-news-wrap__card {
    flex-direction: column;
    padding: 4vw 4vw 6vw;
  }
}
.p-news-wrap__card::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-news-wrap__card:hover::before {
  opacity: 1;
}
.p-news-wrap__image {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}
.p-news-wrap__image img {
  object-fit: cover;
  width: 100vw;
  height: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .p-news-wrap__image img {
    width: 100%;
    height: auto;
  }
}
.p-news-wrap__contents {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  color: #353131;
  padding-bottom: 3vw;
  width: 100%;
}
.p-news-wrap__head {
  display: flex;
  gap: 2vw;
}
.p-news-wrap__date {
  color: #FF5C00;
  font-size: 0.9rem;
}
.p-news-wrap__category {
  display: inline-flex;
  align-items: center;
  background-color: #353131;
  color: #fff;
  border-radius: 5px;
  font-size: 0.6rem;
  font-weight: bold;
  padding: 0.2vw 0.8vw;
}
.p-news-wrap__title {
  font-size: 1.4rem;
  font-weight: bold;
}
.p-news-wrap__text {
  line-height: 1.8;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .p-news-wrap__text {
    width: 100%;
  }
}
.p-news-wrap__arrow {
  position: absolute;
  background-color: #FF5C00;
  right: 0;
  bottom: 0;
  width: 8em;
  height: 4em;
  clip-path: polygon(100% 0, 100% 100%, 0% 100%);
}
.p-news-wrap__arrow-icon {
  position: absolute;
  width: 4em;
  height: 2px;
  background-color: #fff;
  right: 1rem;
  bottom: 1rem;
}
.p-news-wrap__arrow-icon::before {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  border-top: 2px solid #fff;
  top: -6px;
  right: 2px;
  transform: rotate(25deg);
}

/* ── Hero ── */
.p-work-wrap {
  padding: 0 10vw;
  margin-bottom: 15vh;
}
@media screen and (max-width: 1599px) {
  .p-work-wrap {
    padding: 0 6vw;
  }
}
.p-work-wrap__inner {
  display: flex;
  width: 100%;
}

.p-pickup-nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  gap: 4vw;
  margin-bottom: 4rem;
  padding: 0 10vw;
}
@media screen and (max-width: 1599px) {
  .p-pickup-nav {
    padding: 0 6vw;
  }
}
@media screen and (max-width: 1279px) {
  .p-pickup-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1023px) {
  .p-pickup-nav {
    gap: 2vw;
    padding: 0 4vw;
  }
}
.p-pickup-nav__item {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2vw;
}
@media screen and (min-width: 1280px) {
  .p-pickup-nav__item {
    flex-direction: column;
    width: 20vw;
  }
}
.p-pickup-nav__item-photo {
  position: relative;
  border: 10px solid transparent;
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .p-pickup-nav__item-photo {
    border: 5px solid transparent;
  }
}
.p-pickup-nav__item-photo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-pickup-nav__item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-pickup-nav__item-link:hover > div {
  border: 10px solid #fff;
}
.p-pickup-nav__item-link:hover > div::before {
  opacity: 1;
}
.p-pickup-nav__item-link.is-active > div {
  border: 10px solid #fff;
}
@media screen and (max-width: 1023px) {
  .p-pickup-nav__item-link.is-active > div {
    border: 5px solid #fff;
  }
}
.p-pickup-nav__item-label {
  display: block;
  font-size: 0.85rem;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .p-pickup-nav__item-label {
    font-size: 1.4rem;
  }
}
.p-pickup-nav__item:hover::after {
  transform: scaleX(1);
}

.p-pickup-hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  aspect-ratio: 5/2;
  margin: 0 10vw;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 1599px) {
  .p-pickup-hero {
    margin: 0 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-pickup-hero {
    aspect-ratio: 16/9;
  }
}
.p-pickup-hero::before {
  content: "";
  position: absolute;
  background: linear-gradient(45deg, rgba(53, 49, 49, 0.8), rgba(53, 49, 49, 0));
  width: 100%;
  height: 100%;
}
.p-pickup-hero__inner {
  padding: 2vw;
  position: absolute;
  bottom: 0;
}
.p-pickup-hero__catch {
  line-height: 1.8;
  margin-bottom: 1vw;
}
.p-pickup-hero__title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.p-pickup-intro {
  position: relative;
  padding: 15vh 10vw;
}
@media screen and (max-width: 1599px) {
  .p-pickup-intro {
    padding: 15vh 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-pickup-intro {
    padding: 10vh 6vw;
  }
}
.p-pickup-intro__glow {
  position: absolute;
  filter: blur(10px);
  top: -10%;
  left: -10%;
  transform: scale(1.5);
  z-index: -1;
}
.p-pickup-intro__catch {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 2.8rem;
  margin-bottom: 4vw;
}
@media screen and (max-width: 767px) {
  .p-pickup-intro__catch {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 539px) {
  .p-pickup-intro__catch {
    font-size: 6vw;
  }
}
.p-pickup-intro__lead {
  max-width: 500px;
  line-height: 2;
}

.p-pickup-overview {
  position: relative;
  padding: 0 10vw;
}
@media screen and (max-width: 1599px) {
  .p-pickup-overview {
    padding: 0 6vw;
  }
}
.p-pickup-overview__glow {
  position: absolute;
  filter: blur(10px);
  right: -20%;
  z-index: -1;
}
.p-pickup-overview__photo {
  margin-bottom: 15vh;
}
@media screen and (max-width: 767px) {
  .p-pickup-overview__photo {
    margin-bottom: 5vh;
  }
}
.p-pickup-overview__photo-image {
  border-radius: 25px;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.p-pickup-overview__photo-caption {
  margin-top: 4vw;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-pickup-overview__photo-caption {
    font-size: 1rem;
  }
}
.p-pickup-overview__inner {
  display: flex;
  gap: 4vw;
  padding: 0 6vw;
}
@media screen and (max-width: 1023px) {
  .p-pickup-overview__inner {
    flex-direction: column;
    gap: 2rem;
    padding: 0;
  }
}
.p-pickup-overview__text {
  line-height: 2;
}
.p-pickup-overview__details {
  position: relative;
  margin-top: 6vw;
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
@media screen and (max-width: 1023px) {
  .p-pickup-overview__details {
    margin-top: 5vh;
    gap: 12vw;
  }
}
.p-pickup-overview__detail {
  display: flex;
  align-items: center;
  gap: 2vw;
  border-radius: 10px;
  padding: 4vw;
}
@media screen and (max-width: 1023px) {
  .p-pickup-overview__detail {
    flex-direction: column;
    gap: 4vw;
  }
}
.p-pickup-overview__detail.--consultation {
  position: relative;
  background-color: #141518;
}
.p-pickup-overview__detail.--consultation::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateX(-50%) rotate(45deg) skew(-20deg, -20deg);
}
.p-pickup-overview__detail.--suggestion {
  background-color: #fff;
  color: #353131;
}
.p-pickup-overview__detail-image {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 40vw;
}
@media screen and (max-width: 1023px) {
  .p-pickup-overview__detail-image {
    width: 100%;
  }
}
.p-pickup-overview__detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-pickup-overview__detail-content {
  width: 100%;
}
.p-pickup-overview__detail-title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  color: #FF5C00;
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 1023px) {
  .p-pickup-overview__detail-title {
    font-size: 1.2rem;
  }
}
.p-pickup-overview__detail-list {
  list-style: disc;
  line-height: 2;
}

.p-pickup-process {
  position: relative;
  padding: 10vw;
}
@media screen and (max-width: 1599px) {
  .p-pickup-process {
    padding: 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-pickup-process {
    padding: 10vh 6vw;
  }
}
.p-pickup-process__glow {
  position: absolute;
  filter: blur(10px);
  top: 10%;
  left: -20%;
  transform: scale(1.5);
  z-index: -1;
}
.p-pickup-process__inner {
  display: flex;
  gap: 4vw;
}
@media screen and (max-width: 1023px) {
  .p-pickup-process__inner {
    flex-direction: column;
    gap: 8vw;
  }
}
.p-pickup-process__flow {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  width: 100%;
}
.p-pickup-process__flow-step {
  display: flex;
  align-items: center;
  gap: 4rem;
  background-color: #141518;
  border-radius: 10px;
  padding: 2vw;
}
@media screen and (max-width: 767px) {
  .p-pickup-process__flow-step {
    gap: 2rem;
    padding: 4vw 2vw;
  }
}
.p-pickup-process__flow-number {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 1023px) {
  .p-pickup-process__flow-number {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup-process__flow-number {
    font-size: 2rem;
  }
}
.p-pickup-process__flow-text {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 1279px) {
  .p-pickup-process__flow-text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup-process__flow-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.p-pickup-process__card {
  background-color: #fff;
  border-radius: 10px;
  margin-top: 6vw;
  padding: 2vw;
}
@media screen and (max-width: 1023px) {
  .p-pickup-process__card {
    padding: 6vw 4vw;
  }
}
.p-pickup-process__card-result {
  display: flex;
  gap: 2vw;
}
@media screen and (max-width: 1023px) {
  .p-pickup-process__card-result {
    flex-direction: column;
    gap: 4vw;
  }
}
.p-pickup-process__card-title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  color: #FF5C00;
  padding: 0 2vw;
}
@media screen and (min-width: 1024px) {
  .p-pickup-process__card-title {
    writing-mode: vertical-rl;
  }
}
.p-pickup-process__card-content {
  display: flex;
  gap: 4vw;
}
@media screen and (max-width: 1023px) {
  .p-pickup-process__card-content {
    flex-direction: column;
  }
}
.p-pickup-process__card-image {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-pickup-process__card-image {
    width: 25rem;
  }
}
.p-pickup-process__card-image img {
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
}
.p-pickup-process__card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #353131;
  line-height: 2;
}
.p-pickup-process__card-text p + p {
  margin-top: 2vw;
}

.p-pickup-member {
  background: linear-gradient(rgba(8, 22, 47, 0.4) 40%, #262830 100%);
  padding: 15vh 10vw;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1599px) {
  .p-pickup-member {
    padding: 15vh 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-pickup-member {
    padding: 10vh 6vw;
  }
}
.p-pickup-member__background {
  position: absolute;
  inset: 0;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/blur_bg.webp) no-repeat;
  background-size: cover;
  filter: blur(34px);
  top: 0;
  left: 0;
  width: calc(100% + 34px);
  height: calc(100% + 34px);
  z-index: -1;
}
.p-pickup-member__title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 4rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1023px) {
  .p-pickup-member__title {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}
.p-pickup-member__text {
  font-size: 1.2rem;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .p-pickup-member__text {
    font-size: 1rem;
  }
}

.p-pickup-archive {
  position: relative;
  padding: 12vw 6vw 10vw;
}
.p-pickup-archive::before {
  content: "";
  position: absolute;
  background: url(http://findvalue.an-yaku.com/wp-content/uploads/2026/03/pickup_archive.webp) no-repeat;
  background-size: cover;
  background-position: center;
  mask-image: linear-gradient(to bottom, transparent 8%, #000 35%, #000 66%, transparent 100%);
  mask-size: 100% 100%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1599px) {
  .p-pickup-archive {
    padding: 12vw 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-pickup-archive {
    padding: 10vh 6vw;
  }
}
.p-pickup-archive__inner {
  display: flex;
  gap: 4vw;
}
@media screen and (max-width: 1279px) {
  .p-pickup-archive__inner {
    gap: 0;
  }
}
@media screen and (max-width: 1023px) {
  .p-pickup-archive__inner {
    gap: 2rem;
    flex-direction: column;
  }
}
.p-pickup-archive__blockquote {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: max-content;
  gap: 2vw;
  width: 100%;
}
.p-pickup-archive__item {
  display: flex;
  flex-direction: column;
  gap: 3vw;
  width: 100%;
  height: fit-content;
  background-color: #fff;
  color: #FF5C00;
  border-radius: 10px;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  padding: 6vw 1vw;
}
@media screen and (max-width: 1023px) {
  .p-pickup-archive__item {
    align-items: center;
  }
}
@media screen and (min-width: 1280px) {
  .p-pickup-archive__item:nth-child(2) {
    margin-top: 6vw;
  }
  .p-pickup-archive__item:nth-child(3) {
    margin-top: 12vw;
  }
}
.p-pickup-archive__item-title {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-pickup-archive__item-title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 539px) {
  .p-pickup-archive__item-title {
    font-size: 0.85rem;
  }
}
.p-pickup-archive__item-detail {
  position: relative;
  display: flex;
  align-items: end;
}
.p-pickup-archive__item-detail::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 92, 0, 0.4);
  width: 100%;
  height: 3rem;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1023px) {
  .p-pickup-archive__item-detail::after {
    height: 2rem;
    bottom: -3vw;
  }
}
.p-pickup-archive__item-number {
  font-size: 12vw;
  line-height: 1;
  padding: 0 1vw;
}
@media screen and (max-width: 1599px) {
  .p-pickup-archive__item-number {
    font-size: 10rem;
  }
}
@media screen and (max-width: 1279px) {
  .p-pickup-archive__item-number {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup-archive__item-number {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup-archive__item-number {
    font-size: 4rem;
  }
}
@media screen and (max-width: 539px) {
  .p-pickup-archive__item-number {
    font-size: 2.5rem;
  }
}
.p-pickup-archive__item-unit {
  display: block;
  font-size: 3.5vw;
  line-height: 1.2;
}
@media screen and (max-width: 1599px) {
  .p-pickup-archive__item-unit {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-pickup-archive__item-unit {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup-archive__item-unit {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 539px) {
  .p-pickup-archive__item-unit {
    font-size: 1rem;
  }
}
.p-pickup-archive__item-text {
  display: block;
  font-size: 2vw;
  white-space: nowrap;
  letter-spacing: 0.17rem;
}
@media screen and (max-width: 1599px) {
  .p-pickup-archive__item-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-pickup-archive__item-text {
    font-size: 1.4rem;
    letter-spacing: normal;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup-archive__item-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 539px) {
  .p-pickup-archive__item-text {
    font-size: 0.85rem;
  }
}

.p-recruit__glow {
  top: 0;
  left: -30%;
  z-index: 0;
}
@media screen and (max-width: 1023px) {
  .p-recruit__glow {
    display: none;
  }
}
.p-recruit__glow--right {
  top: -5%;
  right: -30%;
  z-index: 0;
}

.p-recruit-hero {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.p-recruit-hero::before {
  content: "";
  position: absolute;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
  width: 100%;
  height: 100%;
}
.p-recruit-hero__top {
  position: relative;
  height: 90vh;
}
@media screen and (max-width: 1023px) {
  .p-recruit-hero__top {
    height: 72vh;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-hero__top {
    height: 100vh;
  }
}
.p-recruit-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  position: absolute;
  bottom: 0;
  padding: 6vw 10vw;
  width: 70vw;
}
@media screen and (max-width: 1599px) {
  .p-recruit-hero__inner {
    padding: 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-recruit-hero__inner {
    width: 100%;
    gap: 4vw;
    padding: 10vw 6vw;
  }
}
.p-recruit-hero__title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-recruit-hero__title {
    font-size: 7vw;
    line-height: 1.55;
  }
}
.p-recruit-hero__text {
  font-size: 1.2rem;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .p-recruit-hero__text {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-hero__text {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.p-recruit-declaration {
  position: relative;
  background-color: rgba(8, 22, 47, 0.8);
}
.p-recruit-declaration::before {
  content: "";
  position: absolute;
  background: url(http://findvalue.an-yaku.com/wp-content/uploads/2026/03/company_bk.webp) no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}
.p-recruit-declaration__glow {
  position: absolute;
  filter: blur(10px);
  right: 0;
  z-index: 0;
}
.p-recruit-declaration__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  padding: 30vh 10vw 15vh;
  z-index: 1;
}
@media screen and (max-width: 1279px) {
  .p-recruit-declaration__inner {
    padding: 30vh 6vw 15vh;
  }
}
@media screen and (max-width: 1023px) {
  .p-recruit-declaration__inner {
    gap: 4vw;
    padding: 15vh 6vw;
  }
}
.p-recruit-declaration__title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.p-recruit-declaration__text {
  font-size: 1.2rem;
  line-height: 2.5;
  max-width: 60vw;
}
@media screen and (max-width: 1023px) {
  .p-recruit-declaration__text {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-declaration__text {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.p-recruit-affiliation__inner {
  display: flex;
  gap: 4vw;
  padding: 0 10vw 15vh;
}
@media screen and (max-width: 1599px) {
  .p-recruit-affiliation__inner {
    padding: 0 10vw 15vh 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-recruit-affiliation__inner {
    flex-direction: column;
    gap: 8vw;
    padding: 0 6vw 15vh;
  }
}
.p-recruit-affiliation__row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4vh;
  background-color: rgba(20, 21, 24, 0.8);
  border-radius: 10px;
  padding: 8vw;
}
@media screen and (min-width: 1024px) {
  .p-recruit-affiliation__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
    padding: 4vw;
  }
  .p-recruit-affiliation__row::before, .p-recruit-affiliation__row::after {
    content: "";
    position: absolute;
    background-color: #fff;
  }
  .p-recruit-affiliation__row::before {
    width: 1px;
    height: calc(100% - 8vw);
    top: 4vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .p-recruit-affiliation__row::after {
    width: calc(100% - 8vw);
    height: 1px;
    top: 50%;
    left: 4vw;
    transform: translateY(-50%);
  }
}
.p-recruit-affiliation__item {
  position: relative;
  padding: 1rem 0;
}
@media screen and (max-width: 1023px) {
  .p-recruit-affiliation__item {
    padding-bottom: 2rem;
  }
  .p-recruit-affiliation__item:not(:last-child)::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    top: 100%;
    left: 0;
    transform: translateY(-50%);
  }
}
.p-recruit-affiliation__item-title {
  display: inline-block;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  background-color: #FF5C00;
  padding: 0 0.5rem;
  letter-spacing: 0.17rem;
}

.p-recruit-treatment {
  padding: 12vw 10vw 12vw;
}
@media screen and (max-width: 1599px) {
  .p-recruit-treatment {
    padding: 12vw 10vw 12vw 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-recruit-treatment {
    padding: 15vh 6vw;
  }
}
.p-recruit-treatment__inner {
  display: flex;
  gap: 4vw;
}
@media screen and (max-width: 1023px) {
  .p-recruit-treatment__inner {
    flex-direction: column;
    gap: 8vw;
  }
}
.p-recruit-treatment__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-recruit-treatment__row {
    grid-template-columns: 1fr;
    gap: 4vw;
  }
}
.p-recruit-treatment__item {
  background-color: #141518;
  border-radius: 15px;
  padding: 4vw;
}
@media screen and (max-width: 1023px) {
  .p-recruit-treatment__item {
    padding: 8vw 6vw;
  }
}
.p-recruit-treatment__item-title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  margin-bottom: 2vw;
  color: #FF5C00;
}
@media screen and (max-width: 1023px) {
  .p-recruit-treatment__item-title {
    margin-bottom: 3vw;
  }
}
.p-recruit-treatment__item-text {
  line-height: 2;
}
.p-recruit-treatment__item-inner p {
  font-size: 0.85rem;
}
.p-recruit-treatment__item-inner + .p-recruit-treatment__item-inner {
  margin-top: 2vw;
}
.p-recruit-treatment__item-subtitle {
  font-weight: bold;
  color: #FF5C00;
}

.p-recruit-voice {
  position: relative;
  padding: 10vw;
  overflow: hidden;
}
@media screen and (max-width: 1599px) {
  .p-recruit-voice {
    padding: 10vw 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-recruit-voice {
    padding: 14vw 6vw;
  }
}
.p-recruit-voice::before {
  content: "";
  position: absolute;
  background: url(http://findvalue.an-yaku.com/wp-content/uploads/2026/03/recruit_bk02.webp) no-repeat;
  background-size: cover;
  background-position: top;
  mask-image: linear-gradient(to bottom, #000 18%, #000 16%, transparent 66%);
  mask-size: 100% 100%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}
.p-recruit-voice__glow {
  position: absolute;
  filter: blur(10px);
  top: 0;
  left: -20%;
  transform: scale(2);
  z-index: -1;
}
.p-recruit-voice__lead {
  position: relative;
  margin-bottom: 8vw;
  z-index: 1;
}
.p-recruit-voice__lead-title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 2vw;
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__lead-title {
    margin-bottom: 4vh;
  }
}
.p-recruit-voice__inner {
  display: flex;
  gap: 4vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-recruit-voice__inner {
    flex-direction: column;
    gap: 8vw;
  }
}
.p-recruit-voice__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4vw;
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__row {
    grid-template-columns: 1fr;
    gap: 6vw;
  }
}
.p-recruit-voice__item {
  background-color: #fff;
  border-radius: 10px;
  padding: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6vw;
}
@media screen and (max-width: 1023px) {
  .p-recruit-voice__item {
    padding: 1.5rem;
    gap: 4vw;
  }
}
.p-recruit-voice__item-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.p-recruit-voice__item-link-inner {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.p-recruit-voice__item-text {
  color: #FF5C00;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.2rem;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .p-recruit-voice__item-text {
    font-size: 1rem;
  }
}
.p-recruit-voice__item-info {
  display: flex;
  gap: 1vw;
  align-items: center;
}
.p-recruit-voice__item-name {
  color: #353131;
  line-height: 1.6;
}

.p-recruit-value {
  margin-top: 6vw;
  padding: 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2vw;
}
@media screen and (max-width: 1023px) {
  .p-recruit-value {
    padding: 10vh 0;
    gap: 5vw;
  }
}
.p-recruit-value__title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.p-recruit-value__block {
  display: flex;
  gap: 2vw;
}
@media screen and (max-width: 767px) {
  .p-recruit-value__block {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 4vw;
  }
}
.p-recruit-value__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  background-color: rgba(20, 21, 24, 0.8);
  border-radius: 50%;
  padding: 4vw;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1599px) {
  .p-recruit-value__item {
    padding: 8vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-recruit-value__item {
    width: min(82vw, 360px);
    padding: 0;
    aspect-ratio: 1/1;
    gap: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-value__item {
    width: 60vw;
    max-width: 280px;
  }
}
.p-recruit-value__item-title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 4vw;
}
@media screen and (max-width: 1599px) {
  .p-recruit-value__item-title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-recruit-value__item-title {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-value__item-title {
    font-size: 1.6rem;
  }
}
.p-recruit-value__item-text {
  font-size: 2rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 1599px) {
  .p-recruit-value__item-text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-value__item-text {
    font-size: 0.86rem;
    line-height: 1.8;
  }
}

.p-recruit-job {
  position: relative;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/noise.png) center;
  padding: 12vw 10vw;
  overflow: hidden;
}
@media screen and (max-width: 1599px) {
  .p-recruit-job {
    padding: 12vw 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-recruit-job {
    padding: 15vh 6vw;
  }
}
.p-recruit-job::before {
  content: "";
  position: absolute;
  background: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/front/recruit_bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
  mask-image: linear-gradient(to left, #000 60%, transparent 100%);
  mask-size: 100% 100%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}
@media screen and (max-width: 1023px) {
  .p-recruit-job::before {
    background-position: left;
  }
}
.p-recruit-job__glow {
  position: absolute;
  filter: blur(10px);
  right: -20%;
  bottom: -20%;
  transform: scale(2);
  z-index: -1;
}
.p-recruit-job__inner {
  display: flex;
  gap: 2vw;
}
@media screen and (max-width: 1023px) {
  .p-recruit-job__inner {
    flex-direction: column;
    gap: 8vw;
  }
}
.p-recruit-job__content {
  flex-grow: 1;
  display: flex;
  gap: 3vw;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-recruit-job__content {
    flex-direction: column;
    gap: 3rem;
    width: 100%;
  }
}
.p-recruit-job__cards {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: end;
  gap: 2vh;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-recruit-job__cards {
    grid-template-columns: auto;
    align-items: stretch;
    padding-right: 0;
    width: 100%;
  }
}
.p-recruit-job__card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem 3rem;
  width: 100%;
  height: stretch;
  overflow: hidden;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1279px) {
  .p-recruit-job__card {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-recruit-job__card {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-job__card {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-recruit-job__card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.p-recruit-job__card-category {
  font-size: 0.85rem;
  color: #9d9595;
  letter-spacing: 0.17rem;
  margin-bottom: 0.5rem;
}
.p-recruit-job__card-header {
  display: flex;
  align-items: end;
  gap: 0.4rem;
}
.p-recruit-job__card-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FF5C00;
  text-align: center;
  line-height: 1.2;
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-job__card-number {
    font-size: 1.5rem;
  }
}
.p-recruit-job__card-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}
.p-recruit-job__card-title {
  font-size: 1.8rem;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  color: #353131;
  letter-spacing: 0.17rem;
}
@media screen and (max-width: 1279px) {
  .p-recruit-job__card-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-job__card-title {
    font-size: 1.2rem;
  }
}
.p-recruit-job__card-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #353131;
  margin-bottom: 1rem;
  letter-spacing: 0.17rem;
}
.p-recruit-job__modal {
  font-size: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .p-recruit-job__modal {
    font-size: 1rem;
  }
}
.p-recruit-job__modal-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  line-height: 2;
}
.p-recruit-job__title {
  position: relative;
}
.p-recruit-job__title::before {
  content: "■";
  margin-right: 0.5rem;
}
.p-recruit-job__flow {
  background-color: rgba(53, 49, 49, 0.4);
  border-radius: 10px;
  padding: 4vw 2vw 2vw;
  margin-top: 6vw;
}
@media screen and (max-width: 1023px) {
  .p-recruit-job__flow {
    padding: 7vw 4vw 4vw;
    margin-top: 10vh;
  }
}
.p-recruit-job__flow-title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.8rem;
  margin-bottom: 2vw;
}
@media screen and (max-width: 1023px) {
  .p-recruit-job__flow-title {
    font-size: 1.4rem;
    margin-bottom: 6vw;
  }
}
.p-recruit-job__flow-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media screen and (max-width: 1023px) {
  .p-recruit-job__flow-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-job__flow-row {
    grid-template-columns: 1fr;
  }
}
.p-recruit-job__flow-item {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #141518;
  border-radius: 10px;
  padding: 3vw 2vw;
  font-size: 1.4rem;
  min-height: max-content;
}
@media screen and (max-width: 1023px) {
  .p-recruit-job__flow-item {
    padding: 5vw 4vw;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-job__flow-item {
    min-height: 100px;
    font-size: 1rem;
  }
}
.p-recruit-job__flow-item-number {
  position: absolute;
  color: #FF5C00;
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1023px) {
  .p-recruit-job__flow-item-number {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-job__flow-item-number {
    font-size: 4rem;
  }
}

.p-contact-hero__title-wrap {
  position: relative;
}

.p-contact-form {
  padding: 6vw 10vw;
}
@media screen and (max-width: 1023px) {
  .p-contact-form {
    padding: 6vw 5vw;
  }
}
.p-contact-form__inner {
  display: flex;
  gap: 4vw;
}
@media screen and (max-width: 1023px) {
  .p-contact-form__inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-contact-form__rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
@media screen and (max-width: 1023px) {
  .p-contact-form__rows {
    gap: 1.5rem;
  }
}
.p-contact-form__title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.17em;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .p-contact-form__title {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}
.p-contact-form__card {
  background-color: #141518;
  border-radius: 10px;
  padding: 4vw 6vw;
}
@media screen and (max-width: 1023px) {
  .p-contact-form__card {
    padding: 6vw;
  }
}
.p-contact-form__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2vw;
}
@media screen and (max-width: 767px) {
  .p-contact-form__info {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-contact-form__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}
.p-contact-form__info-item-title {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.85rem;
}
.p-contact-form__info-item-title::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.4rem;
  height: 1.4rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-contact-form__info-item-title.--mail::before {
  background-image: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/icon_mail.png);
}
.p-contact-form__info-item-title.--tel::before {
  background-image: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/icon_phone.png);
}
.p-contact-form__info-item-title.--address::before {
  background-image: url(http://findvalue.an-yaku.com/wp-content/themes/findvalue/assets/images/icon_map.png);
}
.p-contact-form__info-item-content {
  font-size: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .p-contact-form__info-item-content {
    font-size: 1rem;
  }
}
.p-contact-form__wrap {
  margin: auto;
}
.p-contact-form__wrap label {
  color: #fff;
}

.p-policy__inner {
  max-width: 80vw;
  margin-bottom: 15vh;
  padding: 0 10vw;
}
@media screen and (max-width: 1599px) {
  .p-policy__inner {
    max-width: 1100px;
    padding: 0 6vw;
  }
}
.p-policy__inner-title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-policy__inner-title {
    font-size: 1.2rem;
  }
}
.p-policy__inner div + div {
  margin-top: 4rem;
}
.p-policy__inner p {
  line-height: 1.8;
  margin-bottom: 1rem;
}
.p-policy__inner ol {
  list-style: auto;
  padding-left: 1.5rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.p-terms__inner {
  max-width: 80vw;
  margin-bottom: 15vh;
  padding: 0 10vw;
}
@media screen and (max-width: 1599px) {
  .p-terms__inner {
    max-width: 1100px;
    padding: 0 6vw;
  }
}
.p-terms__inner ul {
  list-style: disc;
  padding-left: 1.5rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.p-terms__inner h3 {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  margin: 4rem 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-terms__inner h3 {
    font-size: 1.2rem;
  }
}
.p-terms__inner p {
  line-height: 1.8;
  margin-bottom: 1rem;
}
.p-terms__table {
  width: 60vw;
}
@media screen and (max-width: 1023px) {
  .p-terms__table {
    width: 100%;
  }
}
.p-terms__table-caption {
  margin-top: 2rem;
}

.p-404 {
  margin-bottom: 15vh;
  padding: 0 0 6vw;
}
.p-404__button {
  margin-top: 4vw;
}/*# sourceMappingURL=style.css.map */