/* 基本設定 */
html {
  font-size: 0.8333333333vw;
  line-height: 1.6;
}

body {
  font-family: "Marcellus", "Zen Kaku Gothic New", sans-serif;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

/* リンク */
a {
  color: #0066cc;
  text-decoration: none;
  transition: opacity 0.2s;
}


/* 画像 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.inner {
    max-width: 78.125vw;
    margin: 0 auto;
    padding: 0 2.6041666667vw;
}

/* ヘッダー */
header {
    height: 5.2083333333vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3020833333vw 8.3333333333vw 1.3020833333vw 3.6458333333vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

header.is-hidden {
    transform: translateY(-100%);
}

h1 {
    height: 1.8229166667vw;
    display: flex;
    align-items: center;
}

h1 a {
    height: 100%;
    display: flex;
    align-items: center;
}

h1 img {
    height: 100%;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 3.6458333333vw;
}

/* ハンバーガーメニュー */
.hamburger {
    width: 2.0833333333vw;
    height: 1.3020833333vw;
    background: none;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 1.9791666667vw;
    right: 3.6458333333vw;
    padding: 0;
    z-index: 1003;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.hamburger.is-hidden {
    transform: translateY(-5.2083333333vw);
}

.hamburger span {
    display: block;
    width: 2.0833333333vw;
    height: 0.2083333333vw;
    background-color: #1ea86d;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger span {
    transition: all 0.35s ease;
}

.hamburger.is-open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: #fff;
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background-color: #fff;
}

/* モバイルメニュー */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    height: 100vh;
    background: #545454;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.125vw;
    transform: translateX(100%);
    transition: transform 0.45s ease;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6666666667vw;
}

.mobile-menu__list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3125vw;
}

.mobile-menu__list li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 0.9375vw;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.mobile-menu__list li a:hover {
    opacity: 0.7;
}

.mobile-menu__icon {
    position: absolute;
    top: -0.7291666667vw;
    left: -0.8333333333vw;
    width: 0.5208333333vw;
    height: 0.5208333333vw;
    opacity: 0;
    transform: rotate(0deg) scale(0.8);
    transition: all 0.5s ease;
    pointer-events: none;
}

.mobile-menu__list li a:hover .mobile-menu__icon,
.mobile-menu__list li a.is-active .mobile-menu__icon {
    opacity: 1;
    transform: rotate(180deg) scale(1);
}

.mobile-menu__en {
    font-size: 0.625vw;
    opacity: 0.7;
    letter-spacing: 0.0520833333vw;
    color: #fff;
    transition: color 0.3s ease;
}

.mobile-menu__list li a:hover ~ .mobile-menu__en,
.mobile-menu__list li a.is-active ~ .mobile-menu__en {
    color: #1ea86d;
}

.mobile-menu__btn {
    background: #0f8b59;
    color: #fff;
    padding: 0.9375vw 2.5vw;
    border-radius: 40px;
    font-size: 0.8333333333vw;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

.mobile-menu__btn:hover {
    background: #0d7a4f;
}

body.is-menu-open {
    overflow: hidden;
}

.btn {
    font-size: 0.7291666667vw;
    padding: 0.78125vw 3.6458333333vw 0.78125vw 1.8229166667vw;
    background-color: #1ea86d;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    position: relative;
    letter-spacing: 0.1em;
    width: 16.625vw;
    display: inline-block;
    text-align: center;
    transition: letter-spacing 0.3s ease;

}
.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.0416666667vw;
    transform: translateY(-50%);
    width: 1.8229166667vw;
    height: 1.8229166667vw;
    background: url(../images/btn-plus.svg) no-repeat center center / 0.625vw 0.625vw;
    background-color: #fff;
    border: #1ea86d 1px solid;
    border-radius: 50%;
    transition: transform 0.5s;
}
.btn:hover {
    letter-spacing: .15em;
}
.btn:hover::after {
    transform: translateY(-50%) rotate(180deg) scale(1.1);
    transition: transform 0.5s;
}

.fv {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    padding-right: 5.2083333333vw;
    margin-top: 6.7708333333vw;
}
.back-catch {
    position: absolute;
    font-size: 6.7708333333vw;
    color: #fcf9f7;
    top: 25%;
    left: 2%;
    line-height: 1.2;
}
.catch {
    font-size: 3.125vw;
    color: #1ea86d;
    position: absolute;
    top: 35%;
    left: 10%;
    z-index: 10;
    font-weight: 700;
    letter-spacing: .2em;
}
.catch::before {
    content: "";
    position: absolute;
    top: -1.2vw;
    right: 0.5vw;
    width: 1.0416666667vw;
    height: 1.0416666667vw;
    background: url(../images/plus-b.svg) no-repeat center center / 1.0416666667vw 1.0416666667vw;
    z-index: -1;
    animation: pulse 1s ease-in-out infinite;
}
.catch::after {
    content: "";
    position: absolute;
    top: -0.6vw;
    right: 1.8vw;
    width: 0.5208333333vw;
    height: 0.5208333333vw;
    background: url(../images/plus-b.svg) no-repeat center center / 0.5208333333vw 0.5208333333vw;
    z-index: -1;
    animation: pulse 1s ease-in-out infinite;
    animation-delay: 0.3s;
}

.catch ruby rt {
    font-size: 0.6770833333vw;
    letter-spacing: 0;
}
.right-fv {
    width: 52.0833333333vw;
}
.right-fv img {
    border-radius: 20px;
}

/* catch下の縦棒（スクロール促進アニメーション） */
.catch-line {
    --line-position: 22.9166666667vw; /* 水平位置を調整 */
    --line-margin-top: 0vw; /* 垂直位置を調整（増やすと下に） */
    position: relative;
    width: 0.0520833333vw;
    height: 10.4166666667vw;
    margin-left: var(--line-position);
    margin-top: var(--line-margin-top);
    background-color: rgba(30, 168, 109, 0.3);
    overflow: hidden;
}

.catch-line::before {
    content: "";
    position: absolute;
    top: -0.5208333333vw;
    left: 50%;
    transform: translateX(-50%);
    width: 0.3125vw;
    height: 0.3125vw;
    background-color: #1ea86d;
    border-radius: 50%;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        top: -0.5208333333vw;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.t-en {
    font-size: 2.0833333333vw;
    color: #303030;
    font-weight: 300;
    position: relative;
    padding-left: 1.5625vw;
}

.t-en__text {
    display: inline-block;
}

.t-en__char {
    display: inline-block;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.t-en.is-visible .t-en__char {
    opacity: 1;
    transform: translateX(0);
}

.text-slide-target.is-visible .t-en__char {
    opacity: 1;
    transform: translateX(0);
}

.t-en::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.78125vw;
    height: 0.78125vw;
    background: url(../images/plus-o.svg) no-repeat center center / 0.78125vw 0.78125vw;
    transform: rotate(0deg) scale(0.5);
    transition: transform 0.6s ease;
}

.t-en.is-visible::after {
    transform: rotate(180deg) scale(1);
}

section {
    padding: 10.4166666667vw 0;
}
h2 {
    font-size: 2.6041666667vw;
    font-weight: 400;
    letter-spacing: .1em;
    margin-top: 2.0833333333vw;
}
.mini-h2 {
    font-size: 1.25vw;
    font-weight: 400;
    letter-spacing: .1em;
    margin-top: 2.0833333333vw;
}
.message,.ceo-message {
    background: url(../images/plus-back.png)repeat center center;
    padding: 0;
}
.message .inner,
.ceo-message .inner {
    padding: 10.4166666667vw;
    background: #fff;
}
.message h2 {
    margin-top: 5.2083333333vw;
}
/* ワクワクフォント切り替え */
.wakuwaku {
    transition: font-family 0.3s ease;
    font-size: 4.1666666667vw;
    letter-spacing: .2em;
    position: relative;
    display: inline-block;
    padding: 0 2.6041666667vw 0 1.0416666667vw;
}

/* プラス記号 */
.waku-plus {
    position: absolute;
}
.waku-plus-1 {
    top: 0.5208333333vw;
    left: -3.125vw;
    width: 1.5625vw;
    height: 1.5625vw;
    width: 1.0416666667vw;
}
.waku-plus-2 {
    top: 2.6041666667vw;
    left: -1.8229166667vw;
    width: 0.78125vw;
    height: 0.78125vw;
    width: 0.5208333333vw;
}
.waku-plus-3 {
    top: 3.125vw;
    right: 0.5208333333vw;
    width: 1.5625vw;
    height: 1.5625vw;
    width: 1.0416666667vw;
}
.waku-plus-4 {
    bottom: 0.2604166667vw;
    right: 2.0833333333vw;
    width: 0.78125vw;
    height: 0.78125vw;
    width: 0.5208333333vw;
}

/* ゆっくり大小アニメーション */
.pulse {
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
.anime-delay {
    animation-delay: 0.3s;
}
.highlight,
.green-highlight,
.pink-highlight,
.blue-highlight {
    line-height: 1.6em;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.highlight::before,
.green-highlight::before,
.pink-highlight::before,
.blue-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease;
    z-index: -1;
}

.highlight.is-visible::before,
.green-highlight.is-visible::before,
.pink-highlight.is-visible::before,
.blue-highlight.is-visible::before {
    transform: scaleX(1);
}

.highlight::before {
    background: linear-gradient(
      100deg,
      #ffffaf00 1%,
      #ffffaf 2.5%,
      #ffffaf80 5.7%,
      #ffffaf1a 93%,
      #ffffafb4 95%,
      #ffffaf00 98%
    ),
    linear-gradient(182deg, #ffffaf00, #ffffaf4d 8%, #ffffaf00 15%);
}

.green-highlight::before {
    background: linear-gradient(
      100deg,
      #b8ffaf00 1%,
      #b8ffaf 2.5%,
      #b8ffaf80 5.7%,
      #b8ffaf1a 93%,
      #b8ffafb4 95%,
      #b8ffaf00 98%
    ),
    linear-gradient(182deg, #b8ffaf00, #b8ffaf4d 8%, #b8ffaf00 15%);
}

.pink-highlight::before {
    background: linear-gradient(
      100deg,
      #ffafd400 1%,
      #ffafd4 2.5%,
      #ffafd480 5.7%,
      #ffafd41a 93%,
      #ffafd4b4 95%,
      #ffafd400 98%
    ),
    linear-gradient(182deg, #ffafd400, #ffafd44d 8%, #ffafd400 15%);
}

.blue-highlight::before {
    background: linear-gradient(
      100deg,
      #afd7ff00 1%,
      #afd7ff 2.5%,
      #afd7ff80 5.7%,
      #afd7ff1a 93%,
      #afd7ffb4 95%,
      #afd7ff00 98%
    ),
    linear-gradient(182deg, #afd7ff00, #afd7ff4d 8%, #afd7ff00 15%);
}
.bigp {
    font-size: 1.5625vw;
    line-height: 3;
    margin-top: 5.2083333333vw;
    position: relative;
    overflow: hidden;


}

.slide-in .char {
    display: inline-block;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--char-delay, 0s), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--char-delay, 0s);
    letter-spacing: 0.1em;
}
.slide-in.is-visible .char {
    opacity: 1;
    transform: translateX(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1.2s ease-out;
}
.fade-in.is-visible {
    opacity: 1;
}


.fade-in.delay-04 {
    transition-delay: 0.4s;
}
.fade-in.delay-08 {
    transition-delay: 0.8s;
}
.fade-in.delay-12 {
    transition-delay: 1.2s;
}
.slide-in.delay-04 .char {
    transition-delay: calc(var(--char-delay, 0s) + 0.4s);
}
.slide-in.delay-08 .char {
    transition-delay: calc(var(--char-delay, 0s) + 0.8s);
}
.slide-in.delay-12 .char {
    transition-delay: calc(var(--char-delay, 0s) + 1.2s);
}

.middlep {
    font-size: 1.0416666667vw;
    line-height: 2;
}
.mainp {
    font-size: 0.8333333333vw;
    line-height: 2;
}
.catch-en {
    margin-top: 2.6041666667vw;
    width: 26.0416666667vw;
    margin-top: 5.2083333333vw;
}
.bigp .waku-plus-3 {
    top: 5.7291666667vw;
    left: 30.7291666667vw;
    width: 1.5625vw;
    height: 1.5625vw;
    width: 1.0416666667vw;
}
.bigp .waku-plus-4 {
    bottom: 1.0416666667vw;
    left: 30.2083333333vw;
    width: 0.78125vw;
    height: 0.78125vw;
    width: 0.5208333333vw;
}
.message .btn {
    margin-top: 5.2083333333vw;
}

/* 横に流れる無限スライダー */
.top-slide {
    --slide-width: 45.8333333333vw;
    --slide-height: 31.25vw;
    --slide-gap: 3.125vw;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: fit-content;
    animation: slideFlow 20s linear infinite;
}

.slide-item {
    flex-shrink: 0;
    width: var(--slide-width);
    height: var(--slide-height);
    margin-right: var(--slide-gap);
}

.slide-item:last-child {
    margin-right: 0;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slideFlow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc((var(--slide-width) + var(--slide-gap)) * -2));
    }
}

/* スライドボタン */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.0833333333vw;
    height: 2.0833333333vw;
    background: rgba(30, 168, 109, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.slide-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.5208333333vw;
    height: 0.5208333333vw;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.slide-prev {
    left: 1.0416666667vw;
}

.slide-prev::before {
    transform: translate(-30%, -50%) rotate(-135deg);
}

.slide-next {
    right: 1.0416666667vw;
}

.slide-next::before {
    transform: translate(-70%, -50%) rotate(45deg);
}

/* ドットインジケーター */
.slide-dots {
    position: absolute;
    bottom: 1.0416666667vw;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5208333333vw;
    z-index: 10;
}

.slide-dots .dot {
    width: 0.625vw;
    height: 0.625vw;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slide-dots .dot.active {
    background: #1ea86d;
}


.ourwork {
    background: #fcf9f7;
}
.title-flex {
    display: flex;
    justify-content: left;
    align-items: end;
}
.title-left {
    width: 50%;
}
.title-right {
    width: 50%;
    padding-left: 2.6041666667vw;
}
.title-right .middlep {
    position: relative;
    display: inline;
}
.title-right .waku-plus-3 {
    top: 3.90625vw;
    right: -2.0833333333vw;
}
.title-right .waku-plus-4 {
    bottom: -0.5208333333vw;
    right: -0.5208333333vw;
}

/* Workセクション - スクロール切り替え式 */
.work-scroll-box {
    position: relative;
    /* 高さはJSで動的設定: 4スライド分 */
}
.work-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.work-item {
    background: #fcf9f7;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.125vw;
    padding: 0 2.6041666667vw;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    will-change: opacity;
    pointer-events: none;
}

.work-item.active {
    pointer-events: auto;
}

/* アクティブ時：コンテナを表示 */
.work-item.active {
    opacity: 1;
}

/* 非アクティブ時：画像は角度なし、背景は角度つき */
.work-item .work-img-wrap {
    transform: rotate(0deg);
    opacity: 0;
}

.work-item .work-bg {
    transform: rotate(-8deg) translate(1.5625vw, -1.0416666667vw);
    opacity: 0;
}

/* アクティブ時：画像は角度つき、背景は重なって見える位置 */
.work-item.active .work-img-wrap {
    transform: rotate(-5deg);
    opacity: 1;
}

.work-item.active .work-bg {
    transform: rotate(0deg) translate(1.0416666667vw, -0.5208333333vw);
    opacity: 1;
}

/* 左カラム（画像エリア） */
.work-left {
    position: relative;
    width: 45%;
    max-width: 29.1666666667vw;
    height: 39.5833333333vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-bg {
    position: absolute;
    width: 30.2083333333vw;
    height: 40.625vw;
    background: #2EBD6E;
    border-radius: 8px;
    z-index: 1;
    transform: rotate(0deg) translate(1.0416666667vw, -0.5208333333vw);
    transition: transform 0.6s ease-out, opacity 0.4s ease-out;
}

.work-img-wrap {
    position: relative;
    z-index: 2;
    width: 29.1666666667vw;
    height: 39.5833333333vw;
    transform: rotate(-5deg);
    box-shadow: 0 1.0416666667vw 2.0833333333vw rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.6s ease-out, opacity 0.4s ease-out;
}

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-overlay-text {
    position: absolute;
    z-index: 3;
    bottom: 0;
    right: -8.0729166667vw;
    pointer-events: none;
}

.work-overlay-text img {
    width: 19.7916666667vw;
    height: auto;
    filter: drop-shadow(0 0.1041666667vw 0.5208333333vw rgba(0, 0, 0, 0.2));
}

/* 右カラム（テキストエリア） */
.work-right {
    width: 55%;
    max-width: 31.25vw;
    padding-left: 4.1666666667vw;
    position: relative;
    z-index: 4;
}

/* ページネーション */
.work-pagination {
    position: relative;
    width: 3.125vw;
    height: 3.125vw;
    font-family: 'Marcellus', serif;
    color: #2EBD6E;
    margin-bottom: 1.0416666667vw;
}

.work-current {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.8333333333vw;
    font-weight: 500;
}

.work-slash {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.0520833333vw;
    height: 2.6041666667vw;
    background: #2EBD6E;
    transform: translate(-50%, -50%) rotate(45deg);
}

.work-total {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 0.625vw;
    opacity: 0.7;
}

/* タイトル */
.work-title {
    font-size: 2.5vw;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.78125vw;
    line-height: 1.3;
}

/* 区切り線 */
.work-divider {
    display: flex;
    align-items: center;
    margin-bottom: 1.3020833333vw;
    width: 100%;
}

.work-line {
    flex: 1;
    height: 0.0520833333vw;
    background: #707070;
    margin-left: -10.4166666667vw;
}

.work-plus {
    width: 1.0416666667vw;
    height: 1.0416666667vw;
    margin-left: 0.5208333333vw;
    flex-shrink: 0;
}

/* 説明文 */
.work-desc {
    font-size: 0.78125vw;
    line-height: 2;
    color: #333;
    margin-bottom: 2.0833333333vw;
}

/* CTAボタン */
.work-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625vw;
    padding: 0.78125vw 1.5625vw;
    background: linear-gradient(135deg, #2EBD6E 0%, #1ea86d 100%);
    color: #fff;
    font-size: 0.78125vw;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.05em;
}

.work-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0.5208333333vw 1.5625vw rgba(46, 189, 110, 0.3);
}

.work-btn-icon {
    width: 1.25vw;
    height: 1.25vw;
    background: #fff;
    color: #2EBD6E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7291666667vw;
    font-weight: 700;
}
.work-item .btn {
    margin-top: 2.0833333333vw;
}

/* Meetセクション -  */
.meet {
    position: relative;
    background: #efefef url(../images/plus-back.png) repeat center center;
    background-size: auto;
    border-radius: 200px 0 200px 0;
}

.meet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #fcf9f7 50%, #ffffff 50%);
    z-index: -2;
}

/* p-top-interview__list 構造 */
.p-top-interview__list {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 3.125vw 0;
}

.p-top-interview__list .swiper-wrapper {
    display: flex;
    align-items: center;
    margin-left: 0.5208333333vw;
}

.p-top-interview__list .swiper-slide {
    flex: 0 0 auto;
    width: 70%;
    max-width: 46.875vw;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    transform: scale(0.75);
    opacity: 0.6;
}

.p-top-interview__list .swiper-slide.active {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.list-item {
    display: flex;
    gap: 2.0833333333vw;
    padding: 0 1.5625vw;
    align-items: center;
    justify-content: center;
}

/* 画像エリア */
.list-item__img {
    flex: 0 0 27.0833333333vw;
    height: 36.4583333333vw;
    border-radius: 30px;
    overflow: visible;
    box-shadow: 0 1.0416666667vw 2.0833333333vw rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-out;
    position: relative;
}
.meet-slide {
    border-radius: 20px;
}
/* Slick Slider: centerMode対応 */
/* アクティブ（中央）: -5度、scale 1 */
.meet-slider .slick-center .list-item__img {
    transform: rotate(-5deg) scale(1);
}

/* サイドスライド: 非アクティブ */
.meet-slider .slick-slide:not(.slick-center) .list-item__img {
    transform: rotate(5deg) scale(0.35);
}

/* サイドスライドはテキスト非表示、中央のみ表示（フェード切り替え） */
.meet-slider .slick-slide .list-item__txt {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}

.meet-slider .slick-center .list-item__txt {
    opacity: 1;
    visibility: visible;
}

/* Slickベーススタイル */
.meet-slider {
    overflow: hidden;
}

.meet-slider .slick-list {
    overflow: visible;
    max-width: 62.5vw;
    margin: 0 auto;
    margin-left: 10.4166666667vw;
    padding: 0!important;
    min-height: 39.0625vw;
}

.meet-slider .slick-track {
    display: flex;
    align-items: center;
}

.meet-slider .slick-slide {
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    transform: scale(0.75);
    opacity: 0.6;
    height: auto;
}

.meet-slider .slick-slide > div {
    display: flex;
    justify-content: left;
    align-items: center;
}

.meet-slider .slick-center {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.list-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-item__img picture {
    display: block;
    width: 100%;
    height: 100%;
}

/* 画像に重なる装飾（plus-o-o.svg） */
.meet-plus-overlay {
    position: absolute;
    bottom: -2.0833333333vw;
    right: -2.0833333333vw;
    width: 15.625vw !important;
    height: 15.625vw !important;
    object-fit: contain !important;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease-out;
    transform: rotate(10deg);
}

/* アクティブ時のみ表示 */
.meet-slider .slick-center .meet-plus-overlay {
    opacity: 1;
}

/* タイトル左の装飾（chobo.svg） */
.meet-title-wrap {
    position: relative;
    margin-bottom: 0.78125vw;
}

.meet-chobo {
    position: absolute;
    left: -2.0833333333vw;
    top: -1.3020833333vw;
    width: 1.5625vw;
    height: auto;
}

.meet-title-wrap .work-title {
    margin: 0;
}

/* メンバー情報（イニシャル + 部署/入社年） */
.meet-member-info {
    display: flex;
    align-items: center;
    gap: 1.0416666667vw;
    margin: 1.0416666667vw 0;
    padding-left: 0;
}

.meet-initial {
    font-family: 'Marcellus', serif;
    font-size: 2.5vw;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.meet-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2083333333vw;
}

.meet-dept,
.meet-year {
    font-size: 0.7291666667vw;
    color: #666;
    line-height: 1.4;
}

/* テキストエリア */
.list-item__txt {
    flex: 1;
    max-width: 31.25vw;
}

.list-item__txt .title {
    display: block;
    font-size: 1.6666666667vw;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 1.0416666667vw;
}

.list-item__txt .name-ja {
    font-size: 1.25vw;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.2604166667vw;
}

.list-item__txt .name-en {
    font-size: 0.7291666667vw;
    color: #666;
    margin-bottom: 0.5208333333vw;
}

.list-item__txt .join {
    font-size: 0.6770833333vw;
    color: #666;
    margin-bottom: 0.2604166667vw;
}

.list-item__txt .position {
    font-size: 0.6770833333vw;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5625vw;
}

/* ボタン */
.meet-pause {
    position: static;
    transform: none;
    width: 2.6041666667vw;
    height: 2.6041666667vw;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    box-shadow: 0 0.1041666667vw 0.4166666667vw rgba(0,0,0,0.1);
    font-size: 0.8333333333vw;
    color: #333;
}

/* ナビゲーションラップ - 横一列配置 */
.meet-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.78125vw;
    margin-top: -4.1666666667vw;
    padding: 1.0416666667vw 0;
}

/* Slick ナビゲーションボタン */
.meet-nav-wrap .slick-prev,
.meet-nav-wrap .slick-next {
    position: static !important;
    transform: none !important;
    width: 2.6041666667vw;
    height: 2.6041666667vw;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    box-shadow: 0 0.1041666667vw 0.4166666667vw rgba(0,0,0,0.1);
}

.meet-nav-wrap .slick-prev::before,
.meet-nav-wrap .slick-next::before {
    content: '';
    width: 0.5208333333vw;
    height: 0.5208333333vw;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    display: block;
    opacity: 1;
}

.meet-nav-wrap .slick-prev::before {
    transform: rotate(-135deg);
    margin-left: 0.2083333333vw;
}

.meet-nav-wrap .slick-next::before {
    transform: rotate(45deg);
    margin-right: 0.2083333333vw;
}

.meet-nav-wrap .slick-prev:hover,
.meet-nav-wrap .slick-next:hover {
    background: #2EBD6E;
}

.meet-nav-wrap .slick-prev:hover::before,
.meet-nav-wrap .slick-next:hover::before {
    border-color: #fff;
}

/* Slick ドット */
.meet-dots {
    display: flex;
    align-items: center;
    gap: 0.5208333333vw;
}

.meet-dots .slick-dots {
    position: static;
    display: flex !important;
    gap: 0.5208333333vw;
    list-style: none;
    margin: 0;
    padding: 0;
}

.meet-dots .slick-dots li {
    margin: 0;
    padding: 0;
}

.meet-dots .slick-dots li button {
    width: 0.5208333333vw;
    height: 0.5208333333vw;
    background: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
    text-indent: -520.78125vw;
    overflow: hidden;
}

.meet-dots .slick-dots li.slick-active button {
    background: #2EBD6E;
}
.list-item a {
    margin-top: 1.0416666667vw;
}


.requirement .waku-plus-3 {
    top: 0;
}

.requirement {
    overflow: visible;
    padding: 10.4166666667vw 0 ;
}

.requirement-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5vw;
    margin-top: 4.1666666667vw;
    overflow: visible;
}

.requirement-card {
    display: block;
    width: 34.375vw;
    height: 34.375vw;
    text-decoration: none;
    color: #fff;
    overflow: visible;
    transition: transform 0.45s ease;
}

.requirement-card__inner {
    position: relative;
    width: 34.375vw;
    height: 34.375vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    padding: 0 2.5vw;
    transform-origin: center;
    will-change: transform;
}

.requirement-card__inner::before {
    content: '';
    position: absolute;
    top: 2.0833333333vw;
    left: 50%;
    width: 34.375vw;
    height: 30.2083333333vw;
    margin-left: -17.1875vw;
    background: #1ea86d;
    border-radius: 40px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 100% 100%, 0 100%, 0 100%, 0 100%, 0 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 100% 100%, 0 100%, 0 100%, 0 100%, 0 0, 0 0);
    transition: width 0.55s ease, height 0.55s ease, top 0.55s ease, margin-left 0.55s ease, border-radius 0.55s ease, -webkit-clip-path 0.55s ease, clip-path 0.55s ease;
    z-index: 0;
}

.requirement-card:hover {
    transform: translateY(-0.5208333333vw);
}

.requirement-card:hover .requirement-card__inner::before {
    top: 1.5625vw;
    width: 31.25vw;
    height: 31.25vw;
    margin-left: -15.625vw;
    border-radius: 0;
    -webkit-clip-path: polygon(7.2916666667vw 0, calc(100% - 7.2916666667vw) 0, calc(100% - 7.2916666667vw) 7.2916666667vw, 100% 7.2916666667vw, 100% calc(100% - 7.2916666667vw), calc(100% - 7.2916666667vw) calc(100% - 7.2916666667vw), calc(100% - 7.2916666667vw) 100%, 7.2916666667vw 100%, 7.2916666667vw calc(100% - 7.2916666667vw), 0 calc(100% - 7.2916666667vw), 0 7.2916666667vw, 7.2916666667vw 7.2916666667vw);
    clip-path: polygon(7.2916666667vw 0, calc(100% - 7.2916666667vw) 0, calc(100% - 7.2916666667vw) 7.2916666667vw, 100% 7.2916666667vw, 100% calc(100% - 7.2916666667vw), calc(100% - 7.2916666667vw) calc(100% - 7.2916666667vw), calc(100% - 7.2916666667vw) 100%, 7.2916666667vw 100%, 7.2916666667vw calc(100% - 7.2916666667vw), 0 calc(100% - 7.2916666667vw), 0 7.2916666667vw, 7.2916666667vw 7.2916666667vw);
}

.requirement-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 22.3958333333vw;
    margin: 2.0833333333vw auto 0;
}

.requirement-card__title {
    font-size: 1.4583333333vw;
    font-weight: 700;
    line-height: 1.2;
}

.requirement-card__sub {
    margin-top: 0.4166666667vw;
    font-size: 1.0416666667vw;
    line-height: 1.2;
}

.requirement-card__text {
    margin-top: 2.9166666667vw;
    max-width: 100%;
    font-size: 0.8333333333vw;
    line-height: 2.2;
}

.requirement-card__plus {
    position: relative;
    left: auto;
    bottom: auto;
    width: 1.6666666667vw;
    height: 1.6666666667vw;
    margin-top: 2.9166666667vw;
    border-radius: 50%;
    background: #0f8b59;
}

.requirement-card__plus::before,
.requirement-card__plus::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center;
    transition: transform 0.55s ease;
}

.requirement-card__plus::before {
    width: 0.625vw;
    height: 0.1041666667vw;
}

.requirement-card__plus::after {
    width: 0.1041666667vw;
    height: 0.625vw;
}

.requirement-card:hover .requirement-card__plus::before,
.requirement-card:hover .requirement-card__plus::after {
    transform: translate(-50%, -50%) rotate(180deg);
}

.entry-flex {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 1.5625vw;
}
.entry-left {
    width: 33.8541666667vw;
    position: relative;
}
.entry-right {
    width: 35.4166666667vw;
}
.entry-right .work-line {
    margin-left: 0;
}
.entry-right h3 {
    padding-left: 3.125vw;
    font-size: 2.5vw;
    margin-bottom: 1.0416666667vw;
}
.entry-right p {
    font-size: 1.0416666667vw;
    line-height: 3;
    padding-left: 3.125vw;
}
.o-font {
    color: #ff8c42;
}
.entry .btn {
    padding: 0.2604166667vw 3.125vw 0.2604166667vw 2.0833333333vw;
    width: 31.25vw;
    font-size: 2.0833333333vw;
    display: block;
    margin: 7.8125vw auto 0;
    border-radius: 40px;
}
.entry .waku-plus-1 {
    top: 6.7708333333vw;
    left: 2.6041666667vw;
}
.entry .waku-plus-2 {
    top: 8.3333333333vw;
    left: 1.8229166667vw;
}
.entry .waku-plus-3 {
    top: auto;
    bottom: 7.8125vw;
    right: 4.6875vw;
}
.entry .waku-plus-4 {
    bottom: auto;
    top: 3.6458333333vw;
    right: 13.0208333333vw;
}

.entry-box {
    padding: 6.25vw 0 8.3333333333vw;
}

.entry-form {
    width: min(100%, 1000px);
    margin: 0 auto;
}

.entry-form__group + .entry-form__group {
    margin-top: 3.90625vw;
}

.entry-form__label {
    display: inline-flex;
    align-items: center;
    gap: 0.9375vw;
}

.entry-form__label-text {
    display: inline-flex;
    align-items: center;
    gap: 0.7291666667vw;
    font-size: 1.25vw;
    font-weight: 700;
    line-height: 1.5;
    color: #222;
}

.entry-form__label-text::before {
    content: '';
    width: 0.2604166667vw;
    height: 1.25vw;
    background: #1ea86d;
    flex-shrink: 0;
}

.entry-form__required {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.3854166667vw;
    padding: 0.2604166667vw 0.8333333333vw;
    border: 1px solid #ff8c42;
    color: #ff8c42;
    font-size: 0.7291666667vw;
    font-weight: 700;
    line-height: 1;
}

.entry-form__example,
.entry-form__file-note {
    margin-top: 0.8333333333vw;
    margin-left: 1.25vw;
    font-size: 0.7291666667vw;
    line-height: 1.8;
    color: #333;
}

.entry-form__control {
    margin-top: 0.9375vw;
}

.entry-form__control input,
.entry-form__control textarea,
.entry-form__control select {
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 0.625vw;
    background-color: #fff;
    font-size: 1.0416666667vw;
    line-height: 1.8;
    color: #222;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.entry-form__control input,
.entry-form__control select {
    height: 4.1666666667vw;
    padding: 0 1.3020833333vw;
}

.entry-form__control textarea {
    min-height: 8.3333333333vw;
    padding: 1.1458333333vw 1.3020833333vw;
    resize: vertical;
}

.entry-form__control select {
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #999 50%), linear-gradient(135deg, #999 50%, transparent 50%);
    background-position: calc(100% - 1.8229166667vw) calc(50% - 0.15625vw), calc(100% - 1.40625vw) calc(50% - 0.15625vw);
    background-size: 0.4166666667vw 0.4166666667vw, 0.4166666667vw 0.4166666667vw;
    background-repeat: no-repeat;
    padding-right: 3.6458333333vw;
}

.entry-form__control input:focus,
.entry-form__control textarea:focus,
.entry-form__control select:focus,
.entry-form__file-input:focus {
    outline: none;
    border-color: #1ea86d;
    box-shadow: 0 0 0 0.2083333333vw rgba(30, 168, 109, 0.12);
}

.entry-form__file-input {
    width: auto;
    max-width: 100%;
    border: none;
    padding: 0;
    background: transparent;
    height: auto;
    line-height: 1.6;
    font-size: 0.9375vw;
    color: #222;
}

.entry-form__file-input::file-selector-button {
    margin-right: 1.0416666667vw;
    padding: 0.7291666667vw 1.5625vw;
    border: 1px solid #222;
    border-radius: 0.5208333333vw;
    background: #fff;
    color: #222;
    font-size: 0.7291666667vw;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.entry-form__file-input:hover::file-selector-button {
    background: #222;
    color: #fff;
}

.entry-form__checkboxes {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.1458333333vw 1.5625vw;
    margin-top: 1.5625vw;
}

.entry-form__checkbox {
    display: inline-flex;
    align-items: center;
    gap: 0.625vw;
    font-size: 0.8333333333vw;
    line-height: 1.8;
    color: #222;
}

.entry-form__checkbox input {
    width: 1.0416666667vw;
    height: 1.0416666667vw;
    margin: 0;
    accent-color: #1ea86d;
    flex-shrink: 0;
}

.entry-form__checkbox--wide {
    grid-column: 1 / -1;
}

.entry-form__agreement {
    margin-top: 3.125vw;
}

.entry-form__checkbox--agreement {
    justify-content: center;
}

.entry-form__submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 3.90625vw;
}

.entry-form__submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 11.4583333333vw;
    padding: 0.8854166667vw 3.3854166667vw 0.8854166667vw 2.8125vw;
    border: none;
    border-radius: 999px;
    background: #1ea86d;
    color: #fff;
    font-size: 0.9375vw;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.entry-form__submit::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1.0416666667vw;
    transform: translateY(-50%);
    width: 1.8229166667vw;
    height: 1.8229166667vw;
    border-radius: 50%;
    background: #fff url(../images/btn-plus.svg) no-repeat center center / 0.625vw 0.625vw;
}

.entry-form__submit:hover::after {
    transform: translateY(-50%) rotate(180deg) scale(1.1);
    transition: transform 0.5s;
}

footer {
    background: #545454;
    color: #fff;
    padding: 3.125vw 0 2.0833333333vw;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2.0833333333vw;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625vw;
    font-size: 0.9375vw;
    font-weight: 500;
}

.footer-logo__divider {
    opacity: 0.6;
}

.footer-logo__sub {
    font-size: 0.7291666667vw;
    opacity: 0.9;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.0833333333vw;
    list-style: none;
}

.footer-nav li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2083333333vw;
}

.footer-nav a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 0.8333333333vw;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-nav__en {
    font-size: 0.5208333333vw;
    opacity: 0.7;
    letter-spacing: 0.0260416667vw;
    transition: color 0.3s ease;
}

.footer-nav a:hover ~ .footer-nav__en,
.footer-nav a.is-active ~ .footer-nav__en {
    color: #1ea86d;
}

.footer-nav__icon {
    position: absolute;
    top: -0.7291666667vw;
    left: -0.8333333333vw;
    width: 0.5208333333vw;
    height: 0.5208333333vw;
    opacity: 0;
    transform: rotate(0deg) scale(0.8);
    transition: all 0.5s ease;
    pointer-events: none;
}

.footer-nav a:hover .footer-nav__icon,
.footer-nav a.is-active .footer-nav__icon {
    opacity: 1;
    transform: rotate(180deg) scale(1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1.5625vw;
}

.footer-bottom__left {
    display: flex;
    flex-direction: column;
    gap: 0.625vw;
}

.footer-company {
    display: flex;
    align-items: center;
    gap: 0.3125vw;
    color: #fff;
    text-decoration: none;
    font-size: 0.5729166667vw;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-company:hover {
    opacity: 1;
}

.footer-link-icon {
    width: 0.625vw;
    height: 0.625vw;
}

.footer-copyright {
    font-size: 0.5208333333vw;
    opacity: 0.6;
}

.footer-bottom__right {
    text-align: right;
}

.footer-address,
.footer-phone {
    font-size: 0.625vw;
    opacity: 0.8;
    line-height: 1.8;
}
.pcnone {
    display: none;
}

@media screen and (max-width: 767px) {
    html {
        font-size: 3.81vw;
    }

    .inner {
        max-width: 100%;
        padding: 0 4vw;
    }

    header {
        height: 14.286vw;
        padding: 0 4vw;
    }

    h1 {
        height: 4.286vw;
    }

    .header-right {
        display: none;
    }

    .hamburger {
        width: 6.667vw;
        height: 4.762vw;
        top: 4.762vw;
        right: 4vw;
    }

    .hamburger span {
        width: 6.667vw;
        height: 0.476vw;
    }

    .hamburger.is-hidden {
        transform: translateY(-19.048vw);
    }

    .mobile-menu {
        width: 80%;
        gap: 7.619vw;
    }

    .mobile-menu__list {
        gap: 5.714vw;
    }

    .mobile-menu__list li {
        gap: 1.429vw;
    }

    .mobile-menu__list li a {
        font-size: 4.286vw;
    }

    .mobile-menu__icon {
        width: 3.333vw;
        height: 3.333vw;
        top: -2.381vw;
        left: -3.333vw;
    }

    .mobile-menu__en {
        font-size: 2.857vw;
    }

    .mobile-menu__btn {
        padding: 2.857vw 7.619vw;
        font-size: 3.333vw;
    }

    .spnone {
        display: none;
    }

    .pcnone {
        display: block;
    }

    .btn {
        padding: 2.857vw 5.714vw 2.875vw 2vw;
        font-size: 3.333vw;
    }

    .bigp {
        font-size: 3.81vw;
        line-height: 3;
        margin-top: 7.143vw;
    }

    .middlep {
        font-size: 3.333vw;
        line-height: 1.8;
    }

    .mainp {
        font-size: 3.333vw;
    }

    .highlight,
    .green-highlight,
    .pink-highlight,
    .blue-highlight {
        line-height: 1.5;
    }

    .highlight::before,
    .green-highlight::before,
    .pink-highlight::before,
    .blue-highlight::before {
        height: 1.5em;
    }

    .message .inner {
        padding: 23.81vw 7.143vw;
    }

    .catch-en {
        margin-top: 2.6041666667vw;
        width: 47.619vw;
        margin-top: 4.762vw;
    }

    .message h2 {
        margin-top: 4.762vw;
    }

    .wakuwaku {
        font-size: 11.905vw;
        padding: 0 7.143vw;
    }

    h2 {
        font-size: 5.714vw;
        margin-top: 3.571vw;
    }

    .mini-h2 {
        font-size: 2.857vw;
        margin-top: 3.571vw;
    }

    .t-en {
        font-size: 4.762vw;
        padding-left: 3.571vw;
    }

    .t-en::after {
        width: 2.381vw;
        height: 2.381vw;
        background: url(../images/plus-o.svg) no-repeat center center / 2.381vw 2.381vw;
    }

    .waku-plus-1 {
        top: 0.476vw;
        left: -2.857vw;
        height: 3.571vw;
        width: 3.571vw;
    }

    .waku-plus-2 {
        top: 4.762vw;
        left: 1.19vw;
        width: 2.381vw;
        height: 2.381vw;
    }

    .waku-plus-3 {
        top: auto;
        bottom: 4.286vw;
        right: 0;
        height: 3.571vw;
        width: 3.571vw;
    }

    .waku-plus-4 {
        bottom: 1.19vw;
        right: 4.762vw;
        width: 2.381vw;
        height: 2.381vw;
    }

    .btn {
        width: 59.524vw;
    }

    .btn::after {
        right: 3.571vw;
        width: 4.762vw;
        height: 4.762vw;
        background: url(../images/btn-plus.svg) no-repeat center center / 1.905vw 1.905vw;
        background-color: #fff;
    }

    .message .btn {
        margin-top: 4.762vw;
    }

    section {
        padding: 23.81vw 0;
    }

    .title-flex {
        flex-direction: column;
        gap: 7.143vw;
    }

    .title-left {
        width: 100%;
    }

    .title-right {
        width: 100%;
        padding-left: 0;
    }

    .title-right .waku-plus-3 {
        top: auto;
        bottom: 1.429vw;
        right: -16.667vw;
    }

    .title-right .waku-plus-4 {
        bottom: -1.19vw;
        right: -11.905vw;
    }

    .work-scroll-box {
        height: 400vh;
        margin-top: 9.524vw;
    }

    .work-container {
        position: sticky;
        top: 0;
        height: 100svh;
        overflow: hidden;
        display: flex;
        background: #FFFFFF;
    }

    .work-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 5.714vw;
        padding: 20.952vw 4.762vw 7.619vw;
        margin-top: 0;
        opacity: 0;
        background: #fcf9f7;
        border-radius: 0;
        pointer-events: none;
        transition: opacity 0.5s ease-out;
    }

    .work-item.active {
        opacity: 1;
        pointer-events: auto;
    }

    .work-item .work-img-wrap,
    .work-item.active .work-img-wrap {
        opacity: 0;
        transform: rotate(-3deg);
    }

    .work-item .work-bg,
    .work-item.active .work-bg {
        opacity: 0;
        transform: rotate(0deg) translate(1.905vw, 1.905vw);
    }

    .work-item.active .work-img-wrap {
        opacity: 1;
    }

    .work-item.active .work-bg {
        opacity: 1;
    }

    .work-left {
        width: 100%;
        max-width: none;
        height: 52svh;
        max-height: none;
        min-height: 71.429vw;
    }

    .work-bg {
        width: calc(100% - 2.857vw);
        height: 100%;
        border-radius: 4.762vw;
    }

    .work-img-wrap {
        width: calc(100% - 2.857vw);
        height: 100%;
        border-radius: 4.762vw;
        box-shadow: 0 3.81vw 7.619vw rgba(0, 0, 0, 0.12);
    }

    .work-overlay-text {
        right: -2.857vw;
        bottom: 1.905vw;
    }

    .work-overlay-text img {
        width: 28.571vw;
        filter: drop-shadow(0 0.476vw 2.381vw rgba(0, 0, 0, 0.18));
    }

    .work-right {
        width: 100%;
        max-width: none;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .work-pagination {
        width: 11.429vw;
        height: 11.429vw;
        margin-bottom: 2.857vw;
    }

    .work-current {
        font-size: 3.81vw;
    }

    .work-slash {
        width: 0.238vw;
        height: 9.048vw;
    }

    .work-total {
        font-size: 2.857vw;
    }

    .work-title {
        font-size: 6.667vw;
        margin-bottom: 2.857vw;
    }

    .work-divider {
        margin-bottom: 3.81vw;
    }

    .work-line {
        height: 0.238vw;
        margin-left: 0;
    }

    .work-plus {
        width: 3.81vw;
        height: 3.81vw;
        margin-left: 1.905vw;
    }

    .work-item .mainp {
        font-size: 3.333vw;
        line-height: 1.9;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .work-item .btn {
        width: 100%;
        max-width: 57.143vw;
        margin-top: 4.762vw;
        justify-content: center;
        margin-top: 4.762vw;
    }

    .meet {
        border-radius: 19.048vw 0 19.048vw 0;
    }

    .p-top-interview__list {
        padding: 5.714vw 0 0;
    }

    .meet-slider .slick-list {
        max-width: 100%;
        min-height: auto;
        margin: 0 auto;
        padding: 0 !important;
    }

    .meet-slider .slick-slide > div {
        justify-content: center;
    }

    .meet-slider .slick-center .list-item__img {
        transform: rotate(-4deg) scale(1);
    }

    .meet-slider .slick-slide:not(.slick-center) .list-item__img {
        transform: rotate(4deg) scale(0.82);
    }

    .list-item {
        flex-direction: column;
        align-items: stretch;
        gap: 11.905vw;
        padding: 0 3.81vw;
    }

    .list-item__img {
        flex: 0 0 auto;
        width: min(72vw, 76.19vw);
        height: min(96vw, 102.381vw);
        margin: 0 auto;
        border-radius: 4.762vw;
        box-shadow: 0 3.81vw 7.619vw rgba(0, 0, 0, 0.12);
    }

    .list-item__txt,
    .list-item__txt.work-right {
        width: 100%;
        max-width: none;
        padding-left: 0;
        display: block;
        flex: none;
    }

    .meet-plus-overlay {
        width: 20.952vw !important;
        height: 20.952vw !important;
        bottom: -3.333vw;
        right: -3.333vw;
    }

    .meet-title-wrap {
        margin-bottom: 2.857vw;
    }

    .meet-chobo {
        left: 0;
        top: -2.381vw;
        width: 4.286vw;
    }

    .meet-title-wrap .work-title {
        font-size: 5.714vw;
        margin-bottom: 0;
        padding-left: 5.952vw;
    }

    .meet-member-info {
        gap: 2.857vw;
        margin: 2.857vw 0 3.81vw;
    }

    .meet-initial {
        font-size: 7.619vw;
    }

    .meet-dept,
    .meet-year {
        font-size: 2.857vw;
    }

    .meet-slider .mainp {
        font-size: 3.333vw;
        line-height: 2;
    }

    .meet-slider .btn {
        width: 100%;
        max-width: 57.143vw;
        margin-top: 4.762vw;
    }

    .meet-nav-wrap {
        gap: 2.857vw;
        margin-top: 4.762vw;
        padding: 3.81vw 0 0;
        flex-wrap: wrap;
    }

    .meet-nav-wrap .slick-prev,
    .meet-nav-wrap .slick-next,
    .meet-pause {
        width: 9.524vw;
        height: 9.524vw;
        font-size: 3.333vw;
        box-shadow: 0 0.476vw 1.905vw rgba(0, 0, 0, 0.1);
    }

    .meet-nav-wrap .slick-prev::before,
    .meet-nav-wrap .slick-next::before {
        width: 1.905vw;
        height: 1.905vw;
    }

    .meet-dots,
    .meet-dots .slick-dots {
        gap: 1.905vw;
    }

    .meet-dots .slick-dots li button {
        width: 1.905vw;
        height: 1.905vw;
        text-indent: -2380.714vw;
    }

    .requirement {
        overflow: visible;
        padding: 23.81vw 0 11.905vw;
    }

    .entry {
        padding: 11.905vw 0 23.81vw;
    }

    .requirement-links {
        display: block;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3.81vw;
        margin-top: 11.905vw;
        align-items: stretch;
    }

    .requirement-card {
        width: 100%;
        height: auto;
    }

    .requirement-card__inner {
        width: 100%;
        height: 100%;
        min-height: 66.667vw;
        padding: 4.762vw 3.333vw;
    }

    .requirement-card__inner::before,
    .requirement-card:hover .requirement-card__inner::before {
        top: 2.381vw;
        left: 0;
        width: 100%;
        height: calc(100% - 4.762vw);
        margin-left: 0;
        border-radius: 5.714vw;
        -webkit-clip-path: none;
        clip-path: none;
    }

    .requirement-card:hover {
        transform: none;
    }

    .requirement-card__content {
        max-width: none;
        margin: 2.381vw auto 0;
    }

    .requirement-card__title {
        font-size: 4.286vw;
    }

    .requirement-card__sub {
        margin-top: 1.429vw;
        font-size: 2.857vw;
    }

    .requirement-card__text {
        margin-top: 4.762vw;
        font-size: 2.619vw;
        line-height: 1.9;
    }

    .requirement-card__plus {
        width: 6.667vw;
        height: 6.667vw;
        margin-top: 4.762vw;
    }

    .requirement-card__plus::before {
        width: 2.381vw;
        height: 0.476vw;
    }

    .requirement-card__plus::after {
        width: 0.476vw;
        height: 2.381vw;
    }

    .entry-flex {
        flex-direction: column;
        gap: 11.905vw;
    }

    .entry-left {
        width: 80%;
        margin-right: auto;
    }

    .entry-right {
        width: 90%;
    }

    .entry .btn {
        padding: 2.381vw 4.762vw 2.381vw 2.381vw;
        width: 59.524vw;
        font-size: 4.286vw;
    }

    .entry-right h3 {
        padding-left: 2.381vw;
        font-size: 6.667vw;
        margin-bottom: 4.762vw;
    }

    .entry-right p {
        font-size: 3.333vw;
        line-height: 3;
        padding-left: 2.381vw;
    }

    .entry .waku-plus-1 {
        top: 7.143vw;
        left: 4.762vw;
    }

    .entry .waku-plus-2 {
        top: 11.905vw;
        left: 2.381vw;
    }

    .entry .waku-plus-3 {
        top: auto;
        bottom: 1.19vw;
        right: 2.381vw;
    }

    .entry .waku-plus-4 {
        bottom: auto;
        top: 2.381vw;
        right: 26.19vw;
    }

    .entry-box {
        padding: 14.286vw 0 19.048vw;
    }

    .entry-form {
        width: 100%;
    }

    .entry-form__group + .entry-form__group {
        margin-top: 11.905vw;
    }

    .entry-form__label {
        gap: 2.857vw;
    }

    .entry-form__label-text {
        gap: 1.905vw;
        font-size: 5vw;
    }

    .entry-form__label-text::before {
        width: 0.952vw;
        height: 4.762vw;
    }

    .entry-form__required {
        min-width: 11.905vw;
        padding: 0.952vw 2.857vw;
        font-size: 2.857vw;
    }

    .entry-form__example,
    .entry-form__file-note {
        margin-top: 2.857vw;
        margin-left: 4.762vw;
        font-size: 2.619vw;
    }

    .entry-form__control {
        margin-top: 3.81vw;
    }

    .entry-form__control input,
    .entry-form__control textarea,
    .entry-form__control select {
        border-radius: 2.381vw;
        font-size: 3.333vw;
    }

    .entry-form__control input,
    .entry-form__control select {
        height: 14.286vw;
        padding: 0 4.762vw;
    }

    .entry-form__control textarea {
        min-height: 24vw;
        padding: 4.286vw 4.762vw;
    }

    .entry-form__control select {
        background-position: calc(100% - 6.19vw) calc(50% - 0.476vw), calc(100% - 4.762vw) calc(50% - 0.476vw);
        background-size: 1.429vw 1.429vw, 1.429vw 1.429vw;
        padding-right: 11.905vw;
    }

    .entry-form__control input:focus,
    .entry-form__control textarea:focus,
    .entry-form__control select:focus,
    .entry-form__file-input:focus {
        box-shadow: 0 0 0 0.952vw rgba(30, 168, 109, 0.12);
    }

    .entry-form__file-input {
        height: auto;
        font-size: 3.095vw;
    }

    .entry-form__file-input::file-selector-button {
        display: block;
        margin-right: 0;
        margin-bottom: 2.857vw;
        padding: 2.857vw 5.714vw;
        border-radius: 1.905vw;
        font-size: 2.857vw;
    }

    .entry-form__checkboxes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3.333vw 4.286vw;
        margin-top: 4.762vw;
    }

    .entry-form__checkbox {
        gap: 1.905vw;
        font-size: 2.857vw;
        align-items: flex-start;
    }

    .entry-form__checkbox input {
        width: 3.81vw;
        height: 3.81vw;
        margin-top: 0.476vw;
    }

    .entry-form__checkbox--wide {
        grid-column: 1 / -1;
    }

    .entry-form__agreement {
        margin-top: 10.476vw;
    }

    .entry-form__checkbox--agreement {
        justify-content: flex-start;
    }

    .entry-form__submit-wrap {
        width: 100%;
        margin-top: 11.905vw;
    }

    .entry-form__submit {
        width: 100%;
        min-width: 0;
        padding: 3.333vw 11.905vw 3.333vw 9.524vw;
        font-size: 3.333vw;
    }

    .entry-form__submit::after {
        right: 3.81vw;
        width: 5.714vw;
        height: 5.714vw;
        background-size: 1.905vw 1.905vw;
    }

    footer {
        padding: 9.524vw 0 5.714vw;
    }

    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 5.714vw;
        padding-bottom: 5.714vw;
    }

    .footer-logo {
        font-size: 3.333vw;
        gap: 1.905vw;
    }

    .footer-logo__sub {
        font-size: 2.619vw;
    }

    .footer-nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.857vw 4.762vw;
        justify-items: center;
    }

    .footer-nav li {
        gap: 0.952vw;
    }

    .footer-nav a {
        font-size: 3.095vw;
        padding: 0.952vw 0;
    }

    .footer-nav__en {
        font-size: 2.143vw;
    }

    .footer-nav__icon {
        width: 2.381vw;
        height: 2.381vw;
        top: -1.905vw;
        left: -2.381vw;
    }

    .footer-main .btn {
        width: 100%;
        max-width: 66.667vw;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 3.81vw;
        padding-top: 4.762vw;
        text-align: center;
    }

    .footer-bottom__left {
        align-items: center;
        gap: 1.905vw;
    }

    .footer-bottom__right {
        text-align: center;
    }

    .footer-company {
        font-size: 2.857vw;
    }

    .footer-link-icon {
        width: 3.333vw;
        height: 3.333vw;
    }

    .footer-copyright {
        font-size: 2.619vw;
    }

    .footer-address,
    .footer-phone {
        font-size: 2.857vw;
        line-height: 1.8;
    }

    .fv {
        flex-direction: column;
        align-items: center;
        padding-right: 0;
        margin-top: 19.048vw;
        gap: 5.714vw;
    }

    .left-fv {
        order: 2;
        width: 100%;
        padding: 0 4.762vw;
        text-align: center;
    }

    .back-catch {
        position: static;
        font-size: 7.619vw;
        color: #f0ebe7;
        line-height: 1.3;
        margin-bottom: 3.81vw;
    }

    .catch {
        position: relative;
        left: 0;
        font-size: 4.762vw;
        display: inline-block;
        margin-top: 1.905vw;
    }

    .catch::before {
        top: -1.905vw;
        right: 2.381vw;
        width: 2.381vw;
        height: 2.381vw;
        background-size: 2.381vw 2.381vw;
    }

    .catch::after {
        top: 1.19vw;
        right: 5.952vw;
        width: 1.429vw;
        height: 1.429vw;
        background-size: 1.429vw 1.429vw;
    }

    .catch ruby rt {
        font-size: 2.381vw;
    }

    .catch-line {
        --line-position: 50%;
        --line-margin-top: 3.81vw;
        width: 0.476vw;
        height: 14.286vw;
        margin-left: auto;
        margin-right: auto;
    }

    .right-fv {
        order: 1;
        width: 100%;
        padding: 0 3.81vw;
    }

    .right-fv img {
        border-radius: 2.857vw;
        width: 100%;
        height: auto;
    }

    .lw-fv__top {
        padding: 33.333vw 0 14.286vw;
        gap: 2.857vw;
    }

    .lw-fv__title-wrap {
        gap: 1.905vw;
    }

    .lw-fv__plus {
        width: 14.286vw;
        height: 14.286vw;
    }

    .lw-fv__title {
        font-size: 45.238vw;
    }

    .lw-fv__subtitle {
        font-size: 7.619vw;
    }

    .lw-fv__bottom {
        padding: 19.048vw 0 28.571vw;
    }

    .lw-fv__lead--large {
        font-size: 11.429vw;
        margin-bottom: 9.524vw;
    }

    .lw-fv__lead--small {
        font-size: 5.714vw;
    }
}

/* Lower page FV */
.lw-fv {
    width: 100%;
    min-height: 54.6875vw;
    background: linear-gradient(to bottom, #efefef 18.2291666667vw, #fff 18.2291666667vw);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 15.625vw;
}

.lw-fv__top {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 0.625vw;
    padding: 13.28125vw 0 0;
    width: fit-content;
    margin: 0 auto;
}

@keyframes lwFvTitleRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.lw-fv__title-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2.0833333333vw;
}

.lw-fv__plus {
    width: 3.125vw;
    height: 3.125vw;
    transform-origin: center center;
    animation: lwFvTitleRotate 10s linear infinite;
}

.lw-fv__title {
    font-size: 9.8958333333vw;
    font-weight: 400;
    color: #303030;
    line-height: 1;
    font-family: "Marcellus", serif;
}

.lw-fv__subtitle {
    font-size: 1.6666666667vw;
    color: #303030;
    font-weight: 500;
    line-height: 1;
    display: block;
    text-align: left;
    padding-left: 5.2083333333vw;
}

.lw-fv__bottom {
    flex: 1;
    padding: 6.7708333333vw 0 7.2916666667vw;
}

.lw-fv__lead {
    color: #303030;
    line-height: 1.8;
}

.lw-fv__lead--large {
    font-size: 2.5vw;
    font-weight: 500;
    margin-bottom: 2.0833333333vw;
}

.lw-fv__lead--small {
    font-size: 1.25vw;
    font-weight: 400;
}
.lw-fv__bottom.inner {
    max-width: 62.5vw;
}

.lw-fv-img {
    width: 52.0833333333vw;
    margin-left: auto;
    position: relative;
}
.lw-fv-img img {
    border-radius: 2.6041666667vw 0 0 2.6041666667vw;
}
.lw-fv-img .waku-plus-3 {
    top: -1.0416666667vw;
    right: 5.2083333333vw;
}
.lw-fv-img .waku-plus-4 {
    bottom: auto;
    right: 6.25vw;
    top: 0.5208333333vw;
}
.lw-fv-ashirai {
    width: 52.0833333333vw;
    height: 46.875vw;
    background: url(../images/plus-back.png) repeat center center;
    position: absolute;
    bottom: -15.625vw;
    left: 0;
}
.whatsplus {
    position: relative;
    overflow: visible;
    padding: 0;
    background: #fff;
}

.about-plus-scroll-box {
    position: relative;
}

.about-plus-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-plus-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    will-change: opacity;
    pointer-events: none;
}

.about-plus-item.active {
    opacity: 1;
    pointer-events: auto;
}

.about-plus-stage {
    position: relative;
    width: 36.4583333333vw;
    height: 36.4583333333vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-plus-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #2ebd6e;
    border-radius: 1.25vw;
    z-index: 1;
    opacity: 0;
    transform: rotate(0deg) translate(0, 0);
    transition: transform 0.6s ease-out, opacity 0.4s ease-out;
}

.about-plus-card {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #fcf9f7;
    border-radius: 1.25vw;
    box-shadow: 0 0.8333333333vw 2.0833333333vw rgba(0, 0, 0, 0.08);
    padding: 5.2083333333vw 0;
    opacity: 0;
    transform: rotate(0deg);
    transition: transform 0.6s ease-out, opacity 0.4s ease-out;
    display: flex;
    flex-direction: column;
}

.about-plus-item.active .about-plus-bg {
    opacity: 1;
    transform: rotate(5deg) translate(1.1458333333vw, -0.4166666667vw);
}

.about-plus-item.active .about-plus-card {
    opacity: 1;
    transform: rotate(0deg);
}

.about-plus-heading {
    position: absolute;
    top: 2.03125vw;
    left: 2.5vw;
    width: 18.75vw;
    max-width: calc(100% - 4.1666666667vw);
    padding-left: 0.8333333333vw;
    z-index: 3;
    pointer-events: none;
}

.about-plus-heading--shared {
    top: 10.4166666667vw;
    left: 9.375vw;
    z-index: 5;
}

.about-plus-heading-main {
    display: block;
}

.about-plus-heading-plus {
    position: absolute;
    top: -0.15625vw;
    left: 0;
    width: 0.5208333333vw;
    height: 0.5208333333vw;
    transform: rotate(0deg) scale(0.5);
    transform-origin: center;
    transition: transform 0.6s ease;
}

.about-plus-heading-en {
    font-size: 1.25vw;
    font-family: "Marcellus", serif;
    line-height: 1.25;
    color: #333;
}

.about-plus-heading--shared.is-visible .about-plus-heading-plus {
    transform: rotate(180deg) scale(1);
}

.about-plus-heading-sub {
    margin-top: 0.3645833333vw;
    margin-left: 0;
    font-size: 0.9375vw;
    font-weight: 500;
    color: #333;
}

.about-plus-heading-divider {
    margin-top: 0.78125vw;
    display: flex;
    align-items: center;
    margin-left: -0.8333333333vw;
    width: 12.2916666667vw;
}

.about-plus-heading-line {
    display: block;
    flex: 1;
    height: 0.1041666667vw;
    background: #707070;
}

.about-plus-heading-icon {
    width: 0.625vw;
    height: 0.625vw;
    margin-left: 0.5208333333vw;
}

.about-plus-number {
    position: absolute;
    top: 2.03125vw;
    right: 2.5vw;
    z-index: 3;
    font-size: 2.1875vw;
    color: #ff8a3d;
    font-weight: 500;
    line-height: 1;
    padding-top: 0;
    padding-right: 0;
    font-family: "Marcellus", serif;
}

.about-plus-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2.0833333333vw;
}

.about-plus-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1.25vw;
    line-height: 1.45;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #333;
}

.about-plus-vertical span {
    color: #1ea86d;
}

.about-plus-copy {
    font-size: 0.78125vw;
    line-height: 1.9;
    text-align: center;
    font-weight: 500;
    color: #333;
    margin-top: auto;
    padding-bottom: 0.5208333333vw;
}
.lw-title {
    position: relative;
}
.ceo-message .bigp {
    width: 52.0833333333vw;
    margin: 7.8125vw auto 0;
}
.ceo-message .bigp .ceo-name {
    text-align: right;
    display: block;
}

@media screen and (max-width: 767px) {
    .whatsplus {
        padding: 23.81vw 0;
    }

    .about-plus-scroll-box {
        height: auto;
    }

    .about-plus-container {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-plus-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        margin-bottom: 0;
    }

    .about-plus-item:last-child {
        margin-bottom: 0;
    }

    .about-plus-stage {
        width: calc(100% - 12vw);
        height: 108vw;
        min-height: 108vw;
    }

    .about-plus-bg {
        width: 100%;
        height: 100%;
        min-height: 0;
        border-radius: 5.714vw;
        transform: rotate(0deg) translate(0, 0);
        opacity: 0;
    }

    .about-plus-card {
        width: 100%;
        height: 100%;
        min-height: 0;
        border-radius: 5.714vw;
        box-sizing: border-box;
        padding: 9.524vw 6.19vw 8.571vw;
        box-shadow: 0 3.81vw 7.619vw rgba(0, 0, 0, 0.08);
    }

    .about-plus-item.active {
        opacity: 1;
        pointer-events: auto;
    }

    .about-plus-item.active .about-plus-bg {
        transform: rotate(4deg) translate(2.2vw, -1.2vw);
        opacity: 1;
    }

    .about-plus-item.active .about-plus-card {
        opacity: 1;
    }

    .about-plus-heading {
        position: absolute;
        top: 9.524vw;
        left: 6.19vw;
        width: calc(100% - 18vw);
        max-width: none;
        padding-left: 6.19vw;
        z-index: 3;
        pointer-events: none;
    }

    .about-plus-heading--shared {
        position: absolute;
        top: 9.524vw;
        left: 6.19vw;
        width: calc(100% - 18vw);
        max-width: none;
        margin: 0;
        z-index: 5;
    }

    .about-plus-heading-main {
        display: block;
    }

    .about-plus-heading-plus {
        top: 0.476vw;
        left: 0;
        width: 3.333vw;
        height: 3.333vw;
    }

    .about-plus-heading-en {
        font-size: 4.286vw;
    }

    .about-plus-heading-sub {
        margin-top: 2.381vw;
        margin-left: 0;
        font-size: 3.333vw;
    }

    .about-plus-heading-divider {
        margin-top: 4.286vw;
        margin-left: -6.19vw;
        width: calc(100% + 6.19vw);
    }

    .about-plus-heading-line {
        flex: 1;
    }

    .about-plus-heading-icon {
        width: 3.81vw;
        height: 3.81vw;
        margin-left: 1.905vw;
    }

    .about-plus-number {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 3;
        font-size: 20px;
        padding-top: 0;
        padding-right: 0;
    }

    .about-plus-card-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        height: 100%;
        padding-top: 0;
    }

    .about-plus-vertical {
        min-height: 52vw;
        font-size: 18px;
        line-height: 1.4;
        margin-left: 0;
    }

    .about-plus-copy {
        font-size: 12px;
        line-height: 2;
        display: inline-block;
        width: fit-content;
        max-width: 100%;
        margin-inline: auto;
        padding-bottom: 0;
        margin-top: auto;
    }
}

/* cutin parallax section */
.cut-text {
    color: #efefef;
    text-align: center;
    font-size: 6.25vw;
    margin-bottom: -4.1666666667vw;
    position: relative;
    z-index: 1;
}
.cutin {
    position: relative;
    height: 26.0416666667vw;
    overflow: hidden;
}
.cutin__inner {
    position: absolute;
    top: -2.6041666667vw;
    left: 0;
    width: 100%;
    height: calc(100% + 5.2083333333vw);
    will-change: transform;
}

.cutin__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .cutin {
        height: 300px;
    }

    .cutin__inner {
        top: -30px;
        height: calc(100% + 60px);
    }
}

/* lw-title - about-plus-heading と同じ見た目 */
.lw-title {
    position: relative;
    padding-left: 1.3020833333vw;
}

.lw-title-main {
    display: block;
}

.lw-title-plus {
    position: absolute;
    top: -0.2604166667vw;
    left: 0;
    width: 0.7291666667vw;
    height: 0.7291666667vw;
    transform: rotate(0deg) scale(0.5);
    transform-origin: center;
    transition: transform 0.6s ease;
}

.lw-title.is-visible .lw-title-plus {
    transform: rotate(180deg) scale(1);
}

.lw-title-en {
    font-size: 1.6666666667vw;
    font-family: "Marcellus", serif;
    line-height: 1.25;
    color: #333;
}

.lw-title-sub {
    margin-top: 0.5208333333vw;
    margin-left: 0;
    font-size: 1.25vw;
    font-weight: 500;
    color: #333;
}

.lw-title-divider {
    margin-top: 1.1458333333vw;
    display: flex;
    align-items: center;
    margin-left: -1.3020833333vw;
    width: calc(17.1875vw + 1.3020833333vw);
}

.lw-title-line {
    display: block;
    flex: 1;
    height: 0.1041666667vw;
    background: #707070;
}

.lw-title-icon {
    width: 0.8333333333vw;
    height: 0.8333333333vw;
    margin-left: 0.7291666667vw;
}

.service {
    padding: 0 0 8.3333333333vw;
}

.service-slider {
    margin-top: 4.6875vw;
    padding: 0 0 0 13.0208333333vw;
    overflow: hidden;
}

.service-slider__track {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-slider__track.slick-initialized {
    opacity: 1;
}

.service-slider__track .slick-list {
    overflow: visible;
    padding: 0 18.2291666667vw 0 0 !important;
}

.service-slider__track .slick-track {
    display: flex;
}

.service-slider__item {
    width: 34.8958333333vw;
    margin-right: 1.6666666667vw;
    height: auto;
}

.service-slider__card {
    width: 34.8958333333vw;
    height: 36.4583333333vw;
    padding: 2.9166666667vw 2.8125vw 2.6041666667vw;
    background: #fff;
    border: 1px solid rgba(51, 51, 51, 0.28);
    border-radius: 2.0833333333vw;
    box-shadow: 0 0.8333333333vw 1.875vw rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.service-slider__head {
    display: flex;
    align-items: flex-start;
    gap: 1.1458333333vw;
}

.service-slider__number {
    font-family: "Marcellus", serif;
    font-size: 2.6041666667vw;
    line-height: 1;
    color: #1ea86d;
}

.service-slider__eyebrow {
    padding-top: 0.5208333333vw;
    font-family: "Marcellus", serif;
    font-size: 0.6770833333vw;
    line-height: 1.4;
    letter-spacing: 0.08em;
    color: #1ea86d;
}

.service-slider__title {
    margin-top: 2.2916666667vw;
    font-size: 1.40625vw;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
}

.service-slider__text {
    margin-top: 2.7083333333vw;
    flex: 1;
}

.service-slider__text p {
    font-size: 0.78125vw;
    line-height: 2.5;
    color: #333;
}

.service-slider__text p + p {
    margin-top: 1.3541666667vw;
}

.service-slider__link,
.service-slider__card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 8.5416666667vw;
    min-height: 2.03125vw;
    margin-top: 2.0833333333vw;
    padding: 0.3645833333vw 1.3541666667vw;
    border-radius: 999px;
    background: #1ea86d;
    color: #fff;
    font-size: 0.625vw;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    position: relative;
    box-sizing: border-box;
    width: auto;
    letter-spacing: 0.05em;
}

.service-slider__link::after,
.service-slider__card .btn::after {
    content: '';
    position: static;
    top: auto;
    right: auto;
    transform: none;
    width: 1.1979166667vw;
    height: 1.1979166667vw;
    margin-left: 0.625vw;
    border-radius: 50%;
    background: #fff url(../images/btn-plus.svg) no-repeat center center / 0.4166666667vw 0.4166666667vw;
    border: none;
    flex-shrink: 0;
}

.service-slider__card .btn:hover::after {
    transform: rotate(180deg) scale(1.1);
}

.service-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1458333333vw;
    margin-top: 2.8125vw;
}

.service-slider__arrow {
    width: 1.5625vw;
    height: 1.5625vw;
    border: none;
    border-radius: 50%;
    background: #f28d3d;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.service-slider__arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.3125vw;
    height: 0.3125vw;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.service-slider__prev::before {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.service-slider__next::before {
    transform: translate(-60%, -50%) rotate(45deg);
}

.service-slider__dots .slick-dots {
    position: static;
    display: flex !important;
    align-items: center;
    gap: 0.5208333333vw;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-slider__dots .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.service-slider__dots .slick-dots li button {
    width: 0.4166666667vw;
    height: 0.4166666667vw;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #b9b9b9;
    text-indent: -520.8333333333vw;
    overflow: hidden;
    cursor: pointer;
}

.service-slider__dots .slick-dots li button::before {
    display: none;
}

.service-slider__dots .slick-dots li.slick-active button {
    background: #f28d3d;
}

.w-message {
    position: relative;
    background: linear-gradient(to bottom, #fcf9f7 0%, #ffffff 100%);
    overflow: hidden;
}
.w-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 26.0416666667vw;
    background: #fff;
}
.w-message::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 67.7083333333vw;
    height: 67.7083333333vw;
    background: url(../images/plus-back.png) repeat center center;
    background-size: cover;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 0;
    pointer-events: none;
}
.w-message .inner {
    position: relative;
    z-index: 1;
}
.w-message-img {
    width: 60.15625vw;
    margin: 0 auto;
    position: relative;
}
.w-message-img img {
    border-radius: 1.5625vw;
}
.w-message-text {
    position: relative;
    background: #fff;
    padding: 5.7291666667vw 4.1666666667vw;
    width: fit-content;
    margin: -5.2083333333vw auto 0;
    z-index: 2;
    border-radius: 2.6041666667vw;
}
.w-message-text h3 {
    font-size: 1.25vw;
    margin-top: 2.6041666667vw;
    margin-bottom: 2.6041666667vw;
}


.ceo {
    position: relative;
    width: 32.2916666667vw;
    height: 42.7083333333vw;
    margin: 0 auto;
}

.ceo img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 29.1666666667vw;
    height: 39.5833333333vw;
    object-fit: cover;
    border-radius: 2.6041666667vw;
    z-index: 2;
}

.ceo::before {
    position: absolute;
    background: #333;
    content: '';
    width: 29.1666666667vw;
    height: 39.5833333333vw;
    top: 3.125vw;
    left: 3.125vw;
    border-radius: 2.6041666667vw;
    z-index: 0;
}

/* inner幅内で流れるマーキーアニメーション */
.ceo-voice {
    margin-top: 7.8125vw;
    position: relative;
    width: 100%;
    min-height: 42.7083333333vw;
    overflow: hidden;
}

.ceo-marquee {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.0208333333vw;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.ceo-marquee-content {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: max-content;
    will-change: transform, left;
}

.ceo-marquee-content span {
    display: block;
    font-size: 2.5vw;
    font-weight: 600;
    color: #ff8a3d;
    line-height: 1.2;
    white-space: nowrap;
}

.ceo-marquee-1 {
    top: 5.7291666667vw;
}

.ceo-marquee-1 .ceo-marquee-content {
    animation: marqueeRight 6s linear infinite;
}

.ceo-marquee-2 {
    top: 14.5833333333vw;
}

.ceo-marquee-2 .ceo-marquee-content {
    animation: marqueeLeft 5s linear infinite;
}

.ceo-marquee-3 {
    top: 26.0416666667vw;
}

.ceo-marquee-3 .ceo-marquee-content {
    animation: marqueeRight 4s linear infinite;
}

.ceo-marquee-4 {
    top: 34.8958333333vw;
}

.ceo-marquee-4 .ceo-marquee-content {
    animation: marqueeLeft 7s linear infinite;
}
.ceo-message .inner {
    padding: 10.4166666667vw 0;
}
.ceo-message .lw-title {
    margin-left: 7.8125vw;
}

.culture {
    background: #efefef;
    border-radius: 10.4166666667vw 0 10.4166666667vw 0;
    position: relative;
    z-index: 0;
}
.culture::before {
    position: absolute;
    background: url(../images/plus-w-o.svg) no-repeat center center / 36.4583333333vw 36.4583333333vw;
    content: '';
    width: 36.4583333333vw;
    height: 36.4583333333vw;
    transform: rotate(5deg);
    bottom: 3.125vw;
    right: -5.2083333333vw;
    border-radius: 2.6041666667vw;
    z-index: -1;
}
.culture-card {
    position: relative;
    color: #333;
}
.culture-card .waku-plus-3 {
    top: 3.125vw;
    right: auto;
    left: -1.0416666667vw;
}
.culture-card .waku-plus-4 {
    left: 0;
    bottom: auto;
    top: 5.2083333333vw;
    right: auto;
}

.culture .lw-title {
    width: 17.1875vw;
}

.culture-grid {
    margin-top: 5.7291666667vw;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3.6458333333vw;
    row-gap: 0;
}

.culture-card-media {
    position: relative;
    border-radius: 1.5625vw;
    overflow: hidden;
}

.culture-card-media img {
    display: block;
    width: 100%;
    height: auto;
}

.culture-card-media--left::before {
    position: absolute;
    content: '+';
    left: -0.9375vw;
    bottom: 1.4583333333vw;
    font-size: 2.2916666667vw;
    line-height: 1;
    color: #2ebd6e;
    z-index: 1;
}

.culture-card-title {
    margin-top: 1.6666666667vw;
    font-size: 1.6666666667vw;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
}

.culture-card-copy {
    margin-top: 1.3541666667vw;
    font-size: 0.8333333333vw;
    font-weight: 500;
    line-height: 2;
    color: #333;
}

.culture-card--text {
    padding-right: 1.0416666667vw;
}

.future .middlep {
    margin-top: 2.6041666667vw;
}

.future-links {
    margin: 4.6875vw auto 0;
    display: flex;
    justify-content: center;
    gap: 4.1666666667vw;
    width: 80.7291666667vw;
}

.future-link {
    position: relative;
    display: block;
    width: calc((100% - 8.3333333334vw) / 3);
    height: 21.875vw;
    border-radius: 1.25vw;
    background: #1ea86d;
    color: #fff;
    overflow: hidden;
    transition: background-color 0.35s ease;
}

.future-link-number {
    position: absolute;
    top: 0.8333333333vw;
    right: 0.8333333333vw;
    font-size: 1.5625vw;
    font-weight: 600;
    line-height: 1;
    color: #ff8a3d;
    z-index: 2;
}

.future-link-main,
.future-link-detail {
    position: absolute;
    inset: 0;
    padding: 2.7083333333vw 2.3958333333vw 2.2916666667vw;
}

.future-link-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.future-link-icon {
    display: block;
    width: 4.7916666667vw;
    height: 4.7916666667vw;
    object-fit: contain;
}

.future-link-title {
    margin-top: 2.0833333333vw;
    font-size: 1.0416666667vw;
    font-weight: 600;
    line-height: 1.6;
    color: #fff;
}

.future-link-more {
    margin-top: 2.1875vw;
    font-size: 0.9375vw;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.08em;
}

.future-link-detail {
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(0.625vw);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.future-link-detail p {
    font-size: 0.9375vw;
    font-weight: 500;
    line-height: 2.2;
    color: #fff;
}

.future-link:hover,
.future-link:focus-visible {
    background: #545454;
}

.future-link:hover .future-link-main,
.future-link:focus-visible .future-link-main {
    opacity: 0;
    transform: translateY(-0.625vw);
}

.future-link:hover .future-link-detail,
.future-link:focus-visible .future-link-detail {
    opacity: 1;
    transform: translateY(0);
}

.future h2 {
    margin-top: 10.4166666667vw;
    text-align: center;
}
.future-text .middlep {
    text-align: left;
    font-size: 1.4583333333vw;
    width: 61.4583333333vw;
    margin: 2.6041666667vw auto 0;
    line-height: 2;
}
.future-text .btn {
    margin: 2.6041666667vw auto 0;
    display: block;
    padding: 0.2604166667vw 3.125vw 0.2604166667vw 2.0833333333vw;
    width: 31.25vw;
    font-size: 2.0833333333vw;
    display: block;
    margin: 5.2083333333vw auto 0;
    border-radius: 2.0833333333vw;
}

.access {
    padding-top: 0;
}
.access .inner {
    max-width: 93.75vw;
    margin: 0 auto;
    border-radius: 2.6041666667vw;
    background: #fcf9f7;
    padding: 10.4166666667vw 0 5.2083333333vw;
}
.access .access-img {
    width: 72.9166666667vw;
    margin: 0 auto;
}

.access-offices {
    position: relative;
    width: fit-content;
    margin: 7.8125vw auto 0;
    padding: 2.5vw 0 2.2916666667vw;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.access-offices::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0.1041666667vw;
    background: #707070;
    content: '';
    transform: translateX(-50%);
}

.access-office {
    padding: 0 4.1666666667vw;
    color: #333;
    width: fit-content;
}

.access-office-title {
    font-size: 1.25vw;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
}

.access-office-postal,
.access-office-address {
    font-size: 0.7291666667vw;
    font-weight: 500;
    line-height: 2;
    color: #333;
}

.access-office-postal {
    margin-top: 1.1458333333vw;
}

.access-office-meta {
    margin-top: 1.1458333333vw;
    display: grid;
    gap: 0.5208333333vw;
}

.access-office-line {
    display: flex;
    align-items: center;
    gap: 0.625vw;
    font-size: 0.7291666667vw;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
}

.access-meta-note {
    font-size: 0.625vw;
}

.access-meta-icon {
    flex: 0 0 0.9375vw;
    width: 0.9375vw;
    height: 0.9375vw;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.access-meta-icon--tel::before {
    content: none;
}

.access-meta-icon--time::before {
    content: none;
}

.access-meta-icon--time::after {
    content: none;
}

.access-meta-icon--tel {
    background-image: url(../images/tel-circle.svg);
}

.access-meta-icon--time {
    background-image: url(../images/time-circle.svg);
}
.access .btn {
    margin: 2.6041666667vw auto 0;
    display: block;
}
.voice-jobs {
    padding: 7.8125vw 0 0;
}

.voice-jobs__inner {
    width: min(100%, 93.75vw);
    margin: 0 auto;
    padding: 0 2.5vw 10.4166666667vw;
    background: #fcf9f7;
    border-radius: 2.0833333333vw;
    box-sizing: border-box;
}

.voice-jobs__tabs {
    display: flex;
    gap: 1.0416666667vw;
    padding: 0 2.0833333333vw;
    transform: translateY(-2.3958333333vw);
}

.voice-jobs__tab {
    min-width: 12.5vw;
    padding: 1.1458333333vw 2.0833333333vw 1.0416666667vw;
    border: 0;
    border-radius: 1.25vw 1.25vw 0 0;
    background: #ece9e6;
    color: #333;
    font-size: 1.1458333333vw;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.voice-jobs__tab.is-active {
    background: #fff;
}

.voice-jobs__panels {
    padding: 0 2.0833333333vw;
}

.voice-jobs__panel {
    position: relative;
    min-height: 46.875vw;
    padding: 7.8125vw 3.90625vw 0;
    border-radius: 2.0833333333vw;
    overflow: hidden;
    box-sizing: border-box;
}

.voice-jobs__panel.is-active {
    animation: voiceJobsPanelFadeIn 0.6s ease-out;
}

@keyframes voiceJobsPanelFadeIn {
    0% {
        opacity: 0;
        transform: translateY(1.0416666667vw);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.voice-jobs__panel::before,
.voice-jobs__panel::after {
    content: '+';
    position: absolute;
    color: rgba(0, 0, 0, 0.05);
    font-family: "Marcellus", serif;
    line-height: 1;
}

.voice-jobs__panel::before {
    top: 2.0833333333vw;
    left: 2.3958333333vw;
    font-size: 2.0833333333vw;
}

.voice-jobs__panel::after {
    top: 2.6041666667vw;
    right: 2.6041666667vw;
    font-size: 1.5625vw;
}

.voice-jobs__hero {
    display: grid;
    grid-template-columns: 22.3958333333vw minmax(0, 1fr);
    align-items: center;
    gap: 7.2916666667vw;
    padding: 0 5.2083333333vw;
}

.voice-jobs__photo-wrap {
    position: relative;
    width: 21.3541666667vw;
    height: 28.6458333333vw;
    padding-top: 117%;
}

.voice-jobs__photo-bg,
.voice-jobs__photo {
    position: absolute;
    border-radius: 1.25vw;
}

.voice-jobs__photo-bg {
    inset: 1.1458333333vw -1.25vw -1.1458333333vw 1.25vw;
    background: #1ea86d;
}

.voice-jobs__photo {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-jobs__meta {
    position: relative;
    z-index: 1;
    max-width: 34.375vw;
}

.voice-jobs__heading {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.voice-jobs__name {
    display: inline-block;
    padding: 0.625vw 1.0416666667vw;
    background: #6b6766;
    color: #fff;
    font-family: "Marcellus", serif;
    font-size: 1.3541666667vw;
    letter-spacing: 0.08em;
    line-height: 1;
}

.voice-jobs__label {
    display: inline-block;
    margin-top: 0.8333333333vw;
    padding: 0.3645833333vw 0.8333333333vw;
    background: #fff;
    color: #666;
    font-size: 0.8333333333vw;
    font-weight: 500;
    line-height: 1;
}

.voice-jobs__info {
    margin-top: 2.2916666667vw;
    font-size: 1.3541666667vw;
    font-weight: 700;
    line-height: 1.8;
}

.voice-jobs__details {
    margin-top: 1.5625vw;
    padding: 0;
    list-style: none;
}

.voice-jobs__details li {
    position: relative;
    padding-left: 1.4583333333vw;
    font-size: 1.0416666667vw;
    line-height: 2;
}

.voice-jobs__details li::before {
    content: '';
    position: absolute;
    top: 0.9375vw;
    left: 0;
    width: 0.4166666667vw;
    height: 0.4166666667vw;
    border-radius: 50%;
    background: #1ea86d;
}

.voice-jobs__divider {
    display: flex;
    align-items: center;
    gap: 1.0416666667vw;
    margin-top: 7.8125vw;
}

.voice-jobs__line {
    flex: 1;
    height: 1px;
    background: rgba(51, 51, 51, 0.65);
}

.voice-jobs__plus {
    width: 1.25vw;
    height: 1.25vw;
}

.voice-jobs__content {
    display: block;
    padding: 0 5.2083333333vw;
}

.voice-jobs__content-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4.1666666667vw;
    width: 100%;
    margin-top: 5.2083333333vw;
}

.voice-jobs__copy {
    flex: 0 0 19.7916666667vw;
}

.voice-jobs__text {
    flex: 1 1 auto;
    min-width: 0;
}

.voice-jobs__copy-label {
    font-size: 0.9375vw;
    font-weight: 700;
    line-height: 1.8;
}

.voice-jobs__copy-title {
    width: fit-content;
    margin-top: 0.2604166667vw;
    font-size: 1.6666666667vw;
    font-weight: 700;
    line-height: 1.6;
    padding-top: 0.2604166667vw;
    padding-left: 0.5208333333vw;
    padding-right: 0.5208333333vw;
    color: #fff;
    background: #545454;
}

.voice-jobs__copy-title--reveal {
    position: relative;
    background: transparent;
    overflow: hidden;
    color: transparent;
    transition: color 0.2s ease 0.45s;
    z-index: 1;
}

.voice-jobs__copy-title--reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #545454;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease;
    z-index: -1;
}

.voice-jobs__copy-title--reveal.is-visible {
    color: #fff;
}

.voice-jobs__copy-title--reveal.is-visible::before {
    transform: scaleX(1);
}

.voice-jobs-img {
    margin: 5.2083333333vw auto 0;
    text-align: center;
}

.voice-jobs-img img {
    border-radius: 2.6041666667vw;
}

.voice-jobs-schedule {
    position: relative;
    width: min(100%, 49.4791666667vw);
    margin: 7.8125vw auto 0;
    padding-top: 3.90625vw;
    opacity: 0;
    transform: translateY(-1.5625vw) rotate(5deg);
    transform-origin: top center;
}

.voice-jobs-schedule.is-visible {
    opacity: 1;
    animation: voiceJobsScheduleSwingIn 1.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes voiceJobsScheduleSwingIn {
    0% {
        opacity: 0;
        transform: translateY(-1.5625vw) rotate(5deg);
    }
    22% {
        opacity: 1;
        transform: translateY(0) rotate(-4deg);
    }
    42% {
        transform: translateY(0) rotate(3deg);
    }
    60% {
        transform: translateY(0) rotate(-2deg);
    }
    78% {
        transform: translateY(0) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

.voice-jobs-schedule__pin {
    position: absolute;
    top: 1.8229166667vw;
    left: 50%;
    width: 1.8229166667vw;
    transform: translateX(-50%);
    z-index: 2;
}

.voice-jobs-schedule__card {
    position: relative;
    padding: 4.6875vw 7.2916666667vw 5.2083333333vw;
    background: #fff;
    border-radius: 2.0833333333vw;
    box-shadow: 0 0.8333333333vw 2.0833333333vw rgba(0, 0, 0, 0.08);
}

.voice-jobs-schedule__head {
    text-align: center;
}

.voice-jobs-schedule__en {
    position: relative;
    display: inline-block;
    font-family: "Marcellus", serif;
    font-size: 1.6666666667vw;
    color: #444;
    line-height: 1.2;
}

.voice-jobs-schedule__en span {
    position: absolute;
    top: 18%;
    left: -0.78125vw;
    width: 0.5208333333vw;
    height: 0.5208333333vw;
    background: url(../images/plus-o.svg) no-repeat center center / 0.5208333333vw 0.5208333333vw;
    transform: translateY(-50%);
}

.voice-jobs-schedule__title {
    font-size: 1.25vw;
    font-weight: 700;
    line-height: 1.4;
}

.voice-jobs-schedule__list {
    position: relative;
    margin-top: 2.6041666667vw;
}

.voice-jobs-schedule__list::before {
    content: '';
    position: absolute;
    top: 0.5208333333vw;
    bottom: 0.5208333333vw;
    left: 10.5208333333vw;
    width: 0.2083333333vw;
    background: #1ea86d;
}

.voice-jobs-schedule__item {
    display: grid;
    grid-template-columns: 8.3333333333vw 4.375vw minmax(0, 1fr);
    align-items: start;
    column-gap: 0;
}

.voice-jobs-schedule__item + .voice-jobs-schedule__item {
    margin-top: 1.9270833333vw;
}

.voice-jobs-schedule__time {
    font-size: 1.0416666667vw;
    font-weight: 700;
    line-height: 2;
}

.voice-jobs-schedule__dot {
    position: relative;
    height: 100%;
}

.voice-jobs-schedule__dot::before {
    content: '';
    position: absolute;
    top: 0.5208333333vw;
    left: 2.1875vw;
    width: 0.9375vw;
    height: 0.9375vw;
    border-radius: 50%;
    background: #1ea86d;
    transform: translateX(-50%);
}

.voice-jobs-schedule__body {
    padding-left: 1.0416666667vw;
}

.voice-jobs-schedule__label {
    font-size: 0.9375vw;
    font-weight: 700;
    line-height: 2;
    margin-top: 0.15625vw;
}

.voice-jobs-schedule__desc {
    margin-top: 0;
    font-size: 0.8333333333vw;
    font-weight: 500;
    line-height: 2;
}

.voice-jobs__text p {
    font-size: 1.0416666667vw;
    line-height: 2.6;
}

.voice-jobs__text p + p {
    margin-top: 1.0416666667vw;
}

.in-two-word {
    margin-top: 5.2083333333vw;
    margin-bottom: 5.2083333333vw;
}

.main-word {
    font-size: 8.8541666667vw;
    width: fit-content;
    margin: 0 auto;
    font-weight: 600;
}

.main-word--scroll-gradient {
    --main-word-progress: 0%;
    --main-word-base: #8d8d8d;
    --main-word-green-start: #157a50;
    --main-word-green-end: #1ea86d;
    color: transparent;
    background: linear-gradient(
        to top,
        var(--main-word-green-start) 0%,
        var(--main-word-green-end) var(--main-word-progress),
        var(--main-word-base) var(--main-word-progress),
        var(--main-word-base) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    transition: background 0.12s linear;
}

.recruitment-requirements {
    padding: 7.8125vw 0 0;
}

.recruitment-requirements__inner {
    width: min(100%, 93.75vw);
    margin: 0 auto;
    padding: 0 2.5vw 10.4166666667vw;
    background: #f7f3ed;
    border-radius: 2.0833333333vw;
    box-sizing: border-box;
}

.recruitment-requirements__tabs {
    display: flex;
    gap: 1.0416666667vw;
    padding: 0 2.0833333333vw;
    transform: translateY(-2.3958333333vw);
}

.recruitment-requirements__tab {
    min-width: 12.5vw;
    padding: 1.1458333333vw 2.0833333333vw 1.0416666667vw;
    border: 0;
    border-radius: 1.25vw 1.25vw 0 0;
    background: #e7e4df;
    color: #333;
    font-size: 1.1458333333vw;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.recruitment-requirements__tab.is-active {
    background: #f7f3ed;
}

.recruitment-requirements__panels {
    padding: 0 2.0833333333vw;
}

.recruitment-requirements__panel {
    position: relative;
    padding: 3.90625vw 3.125vw;
    border-radius: 2.0833333333vw;
    background: #f7f3ed;
    box-sizing: border-box;
}

.recruitment-requirements__panel.is-active {
    animation: voiceJobsPanelFadeIn 0.6s ease-out;
}

.recruitment-requirements__panel::before,
.recruitment-requirements__panel::after {
    content: '+';
    position: absolute;
    color: rgba(0, 0, 0, 0.04);
    font-family: "Marcellus", serif;
    line-height: 1;
}

.recruitment-requirements__panel::before {
    top: 1.5625vw;
    left: 2.0833333333vw;
    font-size: 1.875vw;
}

.recruitment-requirements__panel::after {
    top: 1.9791666667vw;
    right: 2.0833333333vw;
    font-size: 1.4583333333vw;
}

.recruitment-requirements__card {
    background: #fff;
    border-radius: 1.875vw;
    padding: 3.6458333333vw 5.2083333333vw;
    box-shadow: 0 0.8333333333vw 2.0833333333vw rgba(0, 0, 0, 0.05);
}

.recruitment-requirements__row {
    display: grid;
    grid-template-columns: 8.3333333333vw minmax(0, 1fr);
    gap: 3.125vw;
    align-items: start;
    padding: 2.6041666667vw 0;
}

.recruitment-requirements__row + .recruitment-requirements__row {
    border-top: 1px solid rgba(51, 51, 51, 0.3);
}

.recruitment-requirements__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.7083333333vw;
    padding: 0.5208333333vw 0.8333333333vw;
    border: 1px solid #8ad4b2;
    color: #333;
    font-size: 1.0416666667vw;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
    box-sizing: border-box;
}

.recruitment-requirements__body {
    min-width: 0;
}

.recruitment-requirements__lead {
    font-size: 1.0416666667vw;
    font-weight: 500;
    line-height: 1.8;
}

.recruitment-requirements__body .mainp,
.recruitment-requirements__meta {
    font-size: 0.8333333333vw;
    line-height: 2.4;
}

.recruitment-requirements__meta + .recruitment-requirements__meta,
.recruitment-requirements__body .mainp + .mainp {
    margin-top: 1.0416666667vw;
}

.recruitment-requirements__flow {
    margin-top: 2.0833333333vw;
}

.recruitment-requirements__subheading {
    font-size: 0.9375vw;
    font-weight: 700;
    line-height: 1.8;
}

.recruitment-requirements__flow-item {
    margin-top: 1.5625vw;
}

.recruitment-requirements__flow-title {
    font-size: 0.8333333333vw;
    font-weight: 700;
    line-height: 2;
}

.recruitment-requirements__flow-item .mainp {
    margin-top: 0.5208333333vw;
}

@keyframes marqueeLeft {
    0% {
        left: 100%;
        transform: translateX(0);
    }
    100% {
        left: 0;
        transform: translateX(-100%);
    }
}

@keyframes marqueeRight {
    0% {
        left: 0;
        transform: translateX(-100%);
    }
    100% {
        left: 100%;
        transform: translateX(0);
    }
}

@media screen and (max-width: 767px) {
  .lw-fv {
    background: linear-gradient(to bottom, #efefef 0, #efefef 35.714vw, #fff 35.714vw, #fff 100%);
    padding-bottom: 23.81vw;
}
.lw-fv__title {
    font-size: 16.667vw;
}
.mini-lw-fv {
    font-size: 11.667vw;
}
.lw-fv__plus {
    width: 4.762vw;
    height: 4.762vw;
}
.lw-fv__subtitle {
    font-size: 2.857vw;
    padding-left: 5.952vw;
}
.lw-fv__lead--large {
    font-size: 3.81vw;
    margin-bottom: 4.762vw;
    margin-top: 11.905vw;
}
.lw-fv__bottom.inner {
    max-width: 100%;
    padding: 0 4vw;
}
.lw-fv__lead--small {
    font-size: 3.333vw;
}
.lw-fv__top {
    gap: 1.19vw;
    padding: 27.381vw 0 0;
}
.lw-fv-img {
    width: 80%;
    margin-top: 9.524vw;
}
.lw-fv-ashirai {
    width: 80%;
    height: 23.81vw;
    background: url(../images/plus-back.png) repeat center center / 190.476vw;
    bottom: 0;
}
.lw-title {
    padding-left: 3.571vw;
}

.lw-title-plus {
    top: 0;
    left: 0;
    width: 2.381vw;
    height: 2.381vw;
}

.lw-title-en {
    font-size: 4.762vw;
}

.lw-title-sub {
    margin-top: 2.381vw;
    margin-left: 0;
    font-size: 3.333vw;
}

.lw-title-divider {
    margin-top: 4.286vw;
    margin-left: -6.19vw;
    width: calc(100% + 6.19vw);
}

.lw-title-line {
    flex: 1;
}

.lw-title-icon {
    width: 3.81vw;
    height: 3.81vw;
    margin-left: 1.905vw;
}

    .service {
        padding: 19.048vw 0 16.667vw;
        background-size: 61.905vw;
    }

    .service-slider {
        margin-top: 9.524vw;
        padding: 0 0 0 4.762vw;
    }

    .service-slider__track .slick-list {
        padding: 0 14.286vw 0 0 !important;
    }

    .service-slider__item {
        width: 84.762vw;
        margin-right: 3.81vw;
    }

    .service-slider__card {
        width: 84.762vw;
        min-height: 132vw;
        height: auto;
        padding: 7.143vw 5.714vw 7.619vw;
        border-radius: 5.714vw;
        box-shadow: 0 2.381vw 5.714vw rgba(0, 0, 0, 0.08);
    }

    .service-slider__head {
        align-items: flex-start;
        gap: 2.857vw;
    }

    .service-slider__number {
        font-size: 9.524vw;
    }

    .service-slider__eyebrow {
        padding-top: 1.905vw;
        font-size: 2.619vw;
        line-height: 1.5;
    }

    .service-slider__title {
        margin-top: 6.19vw;
        font-size: 4.286vw;
        line-height: 1.7;
    }

    .service-slider__text {
        margin-top: 5.714vw;
    }

    .service-slider__text p {
        font-size: 3.095vw;
        line-height: 2;
        word-break: break-word;
    }

    .service-slider__text p + p {
        margin-top: 3.81vw;
    }

    .service-slider__link,
    .service-slider__card .btn {
        min-width: 35.714vw;
        min-height: 9.524vw;
        margin-top: 5.714vw;
        padding: 2.381vw 5.714vw 2.381vw 5.714vw;
        font-size: 2.857vw;
        width: auto;
    }

    .service-slider__link::after,
    .service-slider__card .btn::after {
        width: 4.762vw;
        height: 4.762vw;
        margin-left: 2.381vw;
        background-size: 1.667vw 1.667vw;
    }

    .service-slider__nav {
        gap: 3.333vw;
        margin-top: 7.143vw;
    }

    .service-slider__arrow {
        width: 5.238vw;
        height: 5.238vw;
    }

    .service-slider__arrow::before {
        width: 1.19vw;
        height: 1.19vw;
    }

    .service-slider__dots .slick-dots {
        gap: 1.905vw;
    }

    .service-slider__dots .slick-dots li button {
        width: 1.429vw;
        height: 1.429vw;
        text-indent: -2380.9523809524vw;
    }

    .w-message {
        background: linear-gradient(to bottom, #fcf9f7 0, #fcf9f7 44vw, #fff 44vw, #fff 100%);
        padding: 0 0 16.667vw;
    }

    .w-message::before {
        content: none;
    }

    .w-message::after {
        right: -16.667vw;
        bottom: -7.143vw;
        width: 95.238vw;
        height: 95.238vw;
        opacity: 0.6;
    }

    .w-message .inner {
        padding: 0 4.762vw;
    }

    .w-message-img {
        width: 100%;
    }

    .w-message-img > img:first-child {
        display: block;
        width: 100%;
        border-radius: 4.762vw;
    }

    .w-message .waku-plus-1 {
        top: 2.381vw;
        left: -2.857vw;
    }

    .w-message .waku-plus-2 {
        top: 7.143vw;
        left: 1.905vw;
    }

    .w-message-text {
        width: calc(100% - 9.524vw);
        padding: 9.524vw 7.143vw;
        margin: -10.476vw auto 0;
        border-radius: 6.19vw;
    }

    .w-message-text h3 {
        font-size: 5vw;
        line-height: 1.7;
        margin-top: 6.667vw;
        margin-bottom: 5.238vw;
    }

    .w-message-text .middlep {
        font-size: 3.333vw;
        line-height: 2.1;
    }

.ceo-voice {
    min-height: 116.572vw;
}

.ceo {
    width: 59.524vw;
    height: 88.333vw;
}

.ceo::before {
    width: 59.524vw;
    height: 83.333vw;
    top: 4.762vw;
    left: 4.762vw;
}

.ceo img {
    width: 59.524vw;
    height: 83.333vw;
}

.ceo-marquee {
    height: 5vw;
}

.ceo-marquee-1 {
    top: 15vw;
}

.ceo-marquee-2 {
    top: 40vw;
}

.ceo-marquee-3 {
    top: 70vw;
}

.ceo-marquee-4 {
    top: 95vw;
}

.ceo-marquee-content span {
    font-size: 4vw;
}

.ceo-message .inner {
    padding: 16.667vw 6.19vw 14.286vw;
}

.ceo-message .lw-title {
    margin-left: 0;
}

.ceo-voice {
    margin-top: 10vw;
    min-height: auto;
}

.ceo-message .bigp {
    width: 100%;
    margin: 12vw auto 0;
    line-height: 2.2;
}

.ceo-message .bigp .ceo-name {
    margin-top: 4.286vw;
}

.culture {
    border-radius: 23.81vw 0 23.81vw 0;
    overflow-x: hidden;
}

.culture .inner {
    padding: 0 4vw;
}

.culture::before {
    width: 52vw;
    height: 52vw;
    background-size: contain;
    bottom: 6vw;
    right: -8vw;
}

.culture .lw-title {
    width: calc(100% - 4.762vw);
}

.culture-grid {
    margin-top: 10vw;
    grid-template-columns: 1fr;
    row-gap: 7.143vw;
}

.culture-card-media {
    border-radius: 7.143vw;
}

.culture-card-media--left::before {
    left: -2.381vw;
    bottom: 3.333vw;
    font-size: 8.571vw;
}

.culture-card-title {
    margin-top: 4.286vw;
    font-size: 5.238vw;
    line-height: 1.5;
}

.culture-card-copy {
    margin-top: 4.286vw;
    font-size: 3.333vw;
    line-height: 2;
}

.culture-card--text {
    padding-right: 0;
}

.culture-card .waku-plus-3 {
    top: 4vw;
    left: -2vw;
    width: 3.81vw;
    height: 3.81vw;
}

.culture-card .waku-plus-4 {
    top: 9vw;
    left: 1vw;
    width: 3.81vw;
    height: 3.81vw;
}

.future .middlep {
    margin-top: 7.143vw;
    width: 100%;
}

.future .inner {
    width: calc(100% - 12.381vw);
}
.future .wakuwaku {
    font-size: 4.762vw;
}

.future-links {
    width: calc(100% - 12.381vw);
    margin: 10vw auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6.667vw;
}

.future-link {
    width: 100%;
    max-width: none;
    height: 73.333vw;
    border-radius: 5.714vw;
}

.future-link-number {
    top: 3.81vw;
    right: 3.81vw;
    font-size: 6.19vw;
}

.future-link-main,
.future-link-detail {
    padding: 10vw 8.095vw 8.571vw;
}

.future-link-icon {
    width: 16.19vw;
    height: 16.19vw;
}

.future-link-title {
    margin-top: 6.19vw;
    font-size: 4.286vw;
}

.future-link-more {
    margin-top: 6.667vw;
    font-size: 4.286vw;
}

.future-link-detail p {
    font-size: 3.333vw;
    line-height: 2.1;
}

.future-link.is-open {
    background: #545454;
}

.future-link.is-open .future-link-main {
    opacity: 0;
    transform: translateY(-2.857vw);
}

.future-link.is-open .future-link-detail {
    opacity: 1;
    transform: translateY(0);
}

.future h2 {
    margin-top: 20vw;
}

.future-text {
    width: calc(100% - 12.381vw);
    margin: 0 auto;
}

.future-text .middlep {
    width: 100%;
    margin: 7.143vw auto 0;
    font-size: 3.81vw;
    line-height: 2;
}

.future-text .btn {
    width: auto;
    max-width: 78vw;
    margin: 12vw auto 0;
    padding: 2.381vw 10vw;
    font-size: 4.286vw;
    border-radius: 9.524vw;
}

.access .inner {
    width: calc(100% - 9.524vw);
    padding: 14.286vw 0 10vw;
    border-radius: 7.143vw;
}

.access .access-img {
    width: calc(100% - 12.381vw);
}

.access .access-img img {
    display: block;
    width: 100%;
    height: auto;
}

.access-offices {
    width: calc(100% - 12.381vw);
    margin-top: 8.571vw;
    padding: 7.143vw 0 8.095vw;
    grid-template-columns: 1fr;
    gap: 8.571vw;
}

.access-offices::before {
    top: 50%;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 0.238vw;
    transform: translateY(-50%);
}

.access-office {
    width: 100%;
    padding: 0;
}

.access-office-title {
    font-size: 5.238vw;
}

.access-office-postal,
.access-office-address,
.access-office-line {
    font-size: 3.333vw;
}

.access-office-postal,
.access-office-meta {
    margin-top: 2.381vw;
}

.access-meta-icon {
    flex: 0 0 3.333vw;
    width: 3.333vw;
    height: 3.333vw;
    margin-top: 0.238vw;
}

.access-meta-note {
    font-size: 2.381vw;
}

.access .btn {
    width: auto;
    max-width: 46vw;
    margin: 5vw auto 0;
}

.voice-jobs {
    padding: 22.857vw 0 11.429vw;
}

.voice-jobs__inner {
    width: calc(100% - 5.714vw);
    padding: 0 0 11.429vw;
    border-radius: 5.714vw;
}

.voice-jobs__tabs {
    gap: 1.905vw;
    padding: 0 3.81vw;
    transform: translateY(-4.762vw);
    overflow-x: auto;
}

.voice-jobs__tab {
    min-width: 29.524vw;
    padding: 3.333vw 4.286vw 3.81vw;
    border-radius: 4.286vw 4.286vw 0 0;
    font-size: 3.81vw;
    white-space: nowrap;
}

.voice-jobs__panels {
    padding: 0 4vw;
}

.voice-jobs__panel {
    min-height: auto;
    padding: 9.524vw 4vw 8.571vw;
    border-radius: 5.714vw;
}

.voice-jobs__panel::before {
    top: 4.762vw;
    left: 4.762vw;
    font-size: 4.762vw;
}

.voice-jobs__panel::after {
    top: 5.714vw;
    right: 5.714vw;
    font-size: 4.286vw;
}

.voice-jobs__hero {
    grid-template-columns: 1fr;
    gap: 8.571vw;
    padding: 0 4.762vw;
}

.voice-jobs__photo-wrap {
    width: min(76.19vw, 100%);
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding-top: 110%;
}

.voice-jobs__photo-bg,
.voice-jobs__photo {
    border-radius: 4.286vw;
}

.voice-jobs__photo-bg {
    inset: 2.381vw -2.857vw -2.381vw 2.857vw;
}

.voice-jobs__meta {
    max-width: none;
}

.voice-jobs__name {
    padding: 2.381vw 3.333vw;
    font-size: 5.238vw;
}

.voice-jobs__label {
    margin-top: 2.857vw;
    padding: 1.429vw 2.857vw;
    font-size: 3.333vw;
}

.voice-jobs__info {
    margin-top: 5.714vw;
    font-size: 4.286vw;
    line-height: 1.8;
}

.voice-jobs__details {
    margin-top: 4.286vw;
}

.voice-jobs__details li {
    padding-left: 4.762vw;
    font-size: 3.333vw;
    line-height: 2;
}

.voice-jobs__details li::before {
    top: 2.619vw;
    width: 1.429vw;
    height: 1.429vw;
}

.voice-jobs__divider {
    gap: 2.857vw;
    margin-top: 8.571vw;
}

.voice-jobs__plus {
    width: 3.81vw;
    height: 3.81vw;
}

.voice-jobs__content {
    display: block;
    padding: 0;
}

.voice-jobs__content-flex {
    flex-direction: column;
    gap: 5.714vw;
    margin-top: 9.524vw;
}

.voice-jobs__copy {
    flex: none;
    width: 100%;
}

.voice-jobs__text {
    width: 100%;
}

.voice-jobs__copy-label {
    font-size: 3.333vw;
}

.voice-jobs__copy-title {
    margin-top: 2.381vw;
    font-size: 6.19vw;
    padding-top: 0.952vw;
    padding-left: 1.905vw;
    padding-right: 1.905vw;
}

.voice-jobs-schedule {
    width: 100%;
    margin-top: 14.286vw;
    padding-top: 11.905vw;
    transform: translateY(-4.762vw) rotate(10deg);
}

.voice-jobs-schedule__pin {
    top: 3.333vw;
    width: 9.524vw;
}

.voice-jobs-schedule__card {
    padding: 11.905vw 5.714vw 9.524vw;
    border-radius: 5.714vw;
    box-shadow: 0 2.381vw 5.714vw rgba(0, 0, 0, 0.08);
}

.voice-jobs-schedule__en {
    padding-left: 3.333vw;
    font-size: 5.714vw;
}

.voice-jobs-schedule__en span {
    width: 2.381vw;
    height: 2.381vw;
    background: url(../images/plus-o.svg) no-repeat center center / 2.381vw 2.381vw;
}

.voice-jobs-schedule__title {
    margin-top: 2.381vw;
    font-size: 4.762vw;
}

.voice-jobs-schedule__list {
    margin-top: 9.524vw;
}

.voice-jobs-schedule__list::before {
    top: 1.905vw;
    bottom: 1.905vw;
    left: 17.143vw;
    width: 0.714vw;
}

.voice-jobs-schedule__item {
    grid-template-columns: 13.333vw 7.619vw minmax(0, 1fr);
}

.voice-jobs-schedule__item + .voice-jobs-schedule__item {
    margin-top: 5.714vw;
}

.voice-jobs-schedule__time {
    padding-top: 0.476vw;
    font-size: 3.333vw;
}

.voice-jobs-schedule__dot::before {
    top: 1.667vw;
    left: 3.81vw;
    width: 2.857vw;
    height: 2.857vw;
}

.voice-jobs-schedule__body {
    padding-left: 1.905vw;
}

.voice-jobs-schedule__label {
    font-size: 3.333vw;
    line-height: 1.8;
}

.voice-jobs-schedule__desc {
    margin-top: 2.857vw;
    font-size: 2.857vw;
    line-height: 1.9;
}

.voice-jobs__text p {
    font-size: 3.333vw;
    line-height: 2.4;
}

.voice-jobs__text p + p {
    margin-top: 4.286vw;
}

.recruitment-requirements {
    padding: 22.857vw 0 11.429vw;
}

.recruitment-requirements__inner {
    width: calc(100% - 5.714vw);
    padding: 0 0 11.429vw;
    border-radius: 5.714vw;
}

.recruitment-requirements__tabs {
    gap: 1.905vw;
    padding: 0 3.81vw;
    transform: translateY(-4.762vw);
    overflow-x: auto;
}

.recruitment-requirements__tab {
    min-width: 29.524vw;
    padding: 3.333vw 4.286vw 3.81vw;
    border-radius: 4.286vw 4.286vw 0 0;
    font-size: 3.81vw;
    white-space: nowrap;
}

.recruitment-requirements__panels {
    padding: 0 4vw;
}

.recruitment-requirements__panel {
    padding: 8.571vw 4vw 7.619vw;
    border-radius: 5.714vw;
}

.recruitment-requirements__panel::before {
    top: 4.286vw;
    left: 4.762vw;
    font-size: 4.286vw;
}

.recruitment-requirements__panel::after {
    top: 5vw;
    right: 5vw;
    font-size: 3.81vw;
}

.recruitment-requirements__card {
    border-radius: 5.238vw;
    padding: 8.571vw 5.714vw;
    box-shadow: 0 2.381vw 5.714vw rgba(0, 0, 0, 0.05);
}

.recruitment-requirements__row {
    grid-template-columns: 1fr;
    gap: 4.286vw;
    padding: 6.19vw 0;
}

.recruitment-requirements__label {
    min-height: 10.476vw;
    padding: 2.381vw 3.333vw;
    font-size: 4.286vw;
    justify-self: start;
}

.recruitment-requirements__lead {
    font-size: 4.286vw;
}

.recruitment-requirements__body .mainp,
.recruitment-requirements__meta {
    font-size: 3.095vw;
    line-height: 2.1;
}

.recruitment-requirements__meta + .recruitment-requirements__meta,
.recruitment-requirements__body .mainp + .mainp {
    margin-top: 3.333vw;
}

.recruitment-requirements__flow {
    margin-top: 5.714vw;
}

.recruitment-requirements__subheading {
    font-size: 3.333vw;
}

.recruitment-requirements__flow-item {
    margin-top: 5.238vw;
}

.recruitment-requirements__flow-title {
    font-size: 3.095vw;
}

.recruitment-requirements__flow-item .mainp {
    margin-top: 1.905vw;
}

.main-word {
    font-size: 9.524vw;
}
    .entry-flow__button {
        width: 100%;
        min-width: 0;
        padding: 16px 0px;
        font-size: 14px;
    }
}