:root {
    --primary-blue: #0076C0;
    --accent-orange: #FF8C00;
    --text-black: #1A1A1A;
    --bg-light: #F8F9FA;
    --bg-orange-light: #FFF5E6;
    --font-title: 'Zen Kaku Gothic New', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --font-en: 'Rubik', sans-serif;
    --max-width: 1200px;

    --color-black01: #1A1A1A;
    --color-blue-gradation01: linear-gradient(#0DA3FF, #00588F);
    --color-icon1: linear-gradient(#08A0FF, #0069AA);
    --color-bg-gradation02: linear-gradient(#FBFDFF, #EDF3F7);
    --color-blue01: #0076C0;
    --color-blue02: #0086D9;
    --color-bg-gradation02: linear-gradient(#FBFDFF, #EDF3F7);
    --color-bg-gradation03: linear-gradient(to right, #E3F1F6 0%, #E9F4F7 80%, #E4F2F5 100%);
    --color-title-deco: linear-gradient(#C4E8FF, #69C6FF);
    --color-orange01: #EF8400;
    --color-orange02: #F9A600;
    --color-orange03: #EF5F0B;
    --color-orange04: #E45909;
}

html {
    scroll-behavior: smooth;
}

/* Response Font Size Rules */






body {
    font-family: var(--font-body);
    color: var(--text-black);
    font-size: 1.6rem;
    line-height: 1.8;
    background-color: #fff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    font-weight: 700;
}

.en {
    font-family: var(--font-en);
}

/* Button */
[class^="btn_"] a {
    width: 32.0rem;
    height: 6.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    border-radius: 6.4rem;
    background-color: var(--color-orange01);
    font-size: 1.7rem;
}

[class^="btn_"] a:after {
    content: '→';
    width: 3.0rem;
    height: 3.0rem;
    display: block;
    border-radius: 50%;
    background-size: contain;
    position: absolute;
    right: 1.6rem;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-indent: -125%;
    transition: 0.3s all;
}

[class^="btn_"] a:before {
    content: '→';
    width: 3.0rem;
    height: 3.0rem;
    display: block;
    border-radius: 50%;
    background-size: contain;
    position: absolute;
    right: 1.6rem;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-indent: 0;
    transition: 0.3s all;
}

[class^="btn_"] a:hover:after {
    text-indent: 0;
}

[class^="btn_"] a:hover:before {
    text-indent: 130%;
}



.label_wrap {
    position: relative;
    overflow: hidden;
}

.label_wrap i {
    transition: 0.1s all;
    transition: 0.5s all;
    display: block;
}

.label_wrap i:nth-child(2) {
    transform: translateY(100%);
    position: absolute;
    left: 0;
    top: 0;
}

a:hover .label_wrap i:nth-child(2) {
    transform: translateY(0);
}

a:hover .label_wrap i:nth-child(1) {
    transform: translateY(-100%);
}

button:hover .label_wrap i:nth-child(2) {
    transform: translateY(0);
}

button:hover .label_wrap i:nth-child(1) {
    transform: translateY(-100%);
}



/* Layout */
.inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4rem;
}



/* Reveal Animation */
[data-js="reveal"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

[data-js="reveal"].is-active {
    opacity: 1;
    transform: translateY(0);
}

/* Sections */
section {
    padding: 10rem 0;
}



/* Header */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0);
    transition: 0.5s all;
}

header.bg-white {
    background-color: rgba(255, 255, 255, 0.75);
}

header .blue {
    display: none;
}

header.bg-white .blue {
    display: block;
}

header.bg-white .white {
    display: none;
}

header.bg-white .inner h1 strong {
    color: var(--color-blue01);
}

header .inner {
    max-width: 1320px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .inner h1 {
    width: 21rem;
}

header .inner h1 strong {
    font-size: 1.1rem;
    color: #ffffff;
    display: block;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

header .inner ul {
    padding: 3.2rem 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.6rem
}

header .inner a,
header .inner label {
    gap: 0.4rem;
    display: flex;
    align-items: center;
    border-radius: 4.5rem;
    padding: 0 2.4rem;
    width: fit-content;
    height: 4.5rem;
    font-size: 1.7rem;
    font-weight: 600;
    justify-content: center;
}


header .inner .btn-contact {
    position: relative;
}

header .inner .btn-recruit {
    position: relative;
}

header .inner .btn-contact a {
    background-color: #ffffff;
    color: var(--color-blue01);
    overflow: hidden;
}

header .inner .btn-recruit a {
    background-color: var(--color-orange01);
    color: #ffffff;
    overflow: hidden;
}




header .inner label {
    background-color: var(--color-black01);
    padding: 0 1.6rem;
    color: #ffffff;
    flex-direction: column;
    gap: 0.4rem;
}

header .inner label i {
    font-size: 1.1rem;
    font-weight: 600;
    order: 1
}

header .inner label:before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    display: block;
    order: 2;
}

header .inner label:after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    display: block;
    order: 3;
}

header .inner label input {
    display: none;
}

header .inner label:has(input:checked):before {
    transform: rotate(11deg);
    transform-origin: left;
}

header .inner label:has(input:checked):after {
    transform: rotate(-11deg);
    transform-origin: left;
}

header:has(input:checked) h1 {
    visibility: hidden;
}

header:has(label input:checked) .btn-contact a,
header:has(label input:checked) .btn-recruit a {
    visibility: hidden;
    opacity: 0;
}

/* Header Scrolled */
.header.scrolled {
    height: 6rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Hamburger */
.menu {
    width: 100vw;
    height: 100vh;
    background: var(--color-blue-gradation01);
    position: fixed;
    top: 0;
    right: -100vw;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
    overflow: scroll;
}

body:has(header label input:checked) .menu {
    right: 0
}

.menu figure {
    width: 28.0rem;
    margin-bottom: 2.4rem;
}

.menu figcaption {
    margin-bottom: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.menu ul {
    margin-bottom: 2.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4%
}

.menu li {
    width: 48%
}

.menu li a {
    font-size: 2.0rem;
    color: #ffffff;
    padding: 1.2rem 0;
    display: block;
    border-bottom: 1px solid #ffffff
}

.menu .tel {
    width: fit-content;
    padding: 1.6rem;
    background-color: #ffffff;
    border-radius: 1.6rem;
    margin: 0 auto;
}

.menu .tel dt {
    font-size: 2.0rem;
    font-weight: 500;
}

.menu .tel dd a {
    font-size: 4.4rem;
    color: var(--color-blue02);
    font-weight: 600;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-num);
    letter-spacing: 0.2rem;
}

.menu .tel dd a:before {
    content: '';
    width: 4.0rem;
    height: 4.0rem;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(0.4rem);
}

.menu .tel dd small {
    font-size: 1.7rem;
    display: block;
}




.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    transform: scale(1.1);
    opacity: 0;
    transition: transform 1.5s ease-out, opacity 1s ease-out;
}

body.is-loaded .hero-bg img {
    transform: scale(1);
    opacity: 1;
}

.hero-bg figcaption {
    position: absolute;
    bottom: 10%;
    right: 10%;
    color: #fff;
    line-height: 1;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
    transition-delay: 0.8s;
}

body.is-loaded .hero-bg figcaption {
    transform: translateY(0);
    opacity: 1;
}

.hero-bg figcaption i {
    display: block;
    text-align: right;
    font-size: 2.4rem;
    font-weight: 700;
}

.hero-bg figcaption .en {
    display: block;
    text-align: right;
    font-size: 12rem;
    font-weight: 700;
}



.hero-content {
    position: absolute;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: var(--max-width);
    width: 95%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
    transition-delay: 0.8s;
}

body.is-loaded .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-title {
    font-size: 7.6rem;
    line-height: 1.2;
    margin-bottom: 2rem;

}

.hero-title .sub {
    font-size: 6rem;
}

.hero-text {
    font-size: 2.2rem;
    line-height: 2;
}



/* Section Shared */
.section-title-wrap {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title-wrap .en {
    display: block;
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
}

.section-title-wrap .section-title {
    font-size: 3.2rem;
    position: relative;
    padding-bottom: 2rem;
}

.section-title-wrap .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.3rem;
    background: var(--accent-orange);
}

/* Reason */
.reason {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding: 12rem 0 0 0;
}

.reason .bg-after,
.career .bg-after {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    z-index: 1;
    aspect-ratio: 628 / 375;
}

.reason .bg-before,
.career .bg-before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    z-index: 1;
    aspect-ratio: 628 / 375;
}

.reason .inner {
    position: relative;
    z-index: 2;
}

.reason .section-title-wrap {
    margin-bottom: 8rem;
}

.title-label {
    font-family: var(--font-title);
    background: var(--primary-blue);
    color: #fff;
    width: fit-content;
    margin: 0 auto 2rem;
    padding: 1.5rem 4rem;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    border-radius: 0.5rem;
    position: relative;
}

.title-label .sub {
    font-size: 2.2rem;
}

.title-label::after {
    content: "";
    position: absolute;
    bottom: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 1.2rem 1.2rem 0 1.2rem;
    border-color: var(--primary-blue) transparent transparent transparent;
}

.reason .main-copy {
    color: var(--accent-orange);
    font-size: 5.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.reason-list {
    display: flex;
    gap: 4rem;
}

.reason-item {
    flex: 1;
    padding: 4rem 0;
    border-radius: 2rem;
    position: relative;
    text-align: left;
}

.reason-item .num {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-en);
    font-size: 6rem;
    font-weight: 700;
    color: var(--accent-orange);
    opacity: 1;
    z-index: 2;
}

.reason-item .pic {
    margin: 0 0 3rem;
    border-radius: 1.5rem;
    overflow: hidden;
}

.reason-item .pic img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 720 / 632;
}

.reason-item .pic video {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 90 / 79;
}

.reason-item .item-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #333;
}

.check-list {
    padding-left: 0;
}

.check-list li {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 0.4rem;
    font-size: 1.6rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 2.1rem;
    height: 2.1rem;
    background: url("images/icon_check_orange.png") center / contain no-repeat;
}

.item-desc {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #444;
}

.video-label {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.4rem;
}

.reason-footer {
    display: flex;
    justify-content: flex-start;
}

.reason-footer .person {
    position: relative;
    width: 40rem;
    overflow: hidden;
}

.reason-footer .person img {
    width: 100%;
    aspect-ratio: 40 / 22;
    object-fit: cover;
    object-position: top;
}

.reason-footer .bubble {
    position: absolute;
    top: -4rem;
    right: -15rem;
    width: 22rem;
    padding: 3rem;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    background: #fff;
    text-align: center;
}

.reason-footer .bubble p {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--font-title);
}

.reason-footer .bubble::before,
.reason-footer .bubble::after {
    content: "";
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    border-style: solid;
    border-width: 0 2rem 2rem 0;
    border-color: transparent var(--primary-blue) transparent transparent;
}

.reason-footer .bubble::after {
    left: -1.5rem;
    border-color: transparent #fff transparent transparent;
}





/* Work */
.work {
    background-color: var(--primary-blue);
    padding: 10rem 0;
    color: #fff;
}

.work-header {
    text-align: center;
    margin-bottom: 6rem;
}

.work .title-label {
    display: inline-block;
    background: #fff;
    color: var(--accent-orange);
    padding: 1rem 4rem;
    font-size: 2.2rem;
    font-weight: 700;
    border-radius: 1rem;
    margin-bottom: 3rem;
    border: 3px solid var(--accent-orange);
    position: relative;
}

.work .title-label::after {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 1.5rem 1.2rem 0 1.2rem;
    border-color: var(--accent-orange) transparent transparent transparent;
}

.work .title-label::before {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 1.1rem 0.9rem 0 0.9rem;
    border-color: #fff transparent transparent transparent;
    z-index: 1;
}

.work .motto {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.work-visual {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.main-visual {
    position: relative;
    width: fit-content;
}

.main-visual img {
    width: 72rem;
    height: auto;
    aspect-ratio: 1426 / 657;
}

@media (max-width: 599px) {
    .main-visual img {
        aspect-ratio: 1140 / 874;
    }
}

.main-visual .balloon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(20px) scale(0.9);
    width: 100%;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
    transition-delay: 0.25s;
    pointer-events: none;
}

.main-visual.is-active .balloon {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.main-visual .balloon img {
    width: 100%;
}

.main-visual figcaption {
    text-align: right;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 0;
    right: 2.4rem;
    bottom: 0;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 3rem;
}

.work-card {
    background: #fff;
    padding: 2.4rem;
    border-radius: 4rem;
    color: #333;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 3px solid var(--accent-orange);
    text-align: center;
}

.card-label {
    font-family: var(--font-title);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: #fff;
    padding: 1.2rem 4rem;
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
    border-radius: 0 0 4rem 4rem;
}

.work-card .pic {
    margin: 0 auto 2.5rem;
    border-radius: 2rem;
    overflow: hidden;
    height: 20rem;
    width: 100%;
}

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

.work-card .card-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
}

.work-card .card-title span {
    color: var(--accent-orange);
    display: inline-block;
}

.work-card .card-text {
    font-size: 1.6rem;
    line-height: 1.7;
    text-align: left;
}

.work-card .record {
    margin-top: auto;
    font-size: 1.3rem;
    background: #f9f9f9;
    padding: 1.2rem 0 0 0;
    border-radius: 1rem;
    line-height: 1.5;
    text-align: left;
}





/* Personality */
.personality {
    padding: 12rem 0 0 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.personality .bg-after {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    z-index: 1;
    aspect-ratio: 628 / 375;
}

.personality .bg-before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    z-index: 1;
    aspect-ratio: 628 / 375;
}

.personality .inner {
    position: relative;
    padding: 0;
    width: 66%;
    margin: 0 auto;
    z-index: 2;
}

.personality-top {
    margin-bottom: 4rem;
}

.personality .main-copy {
    font-family: var(--font-title);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.5;
    letter-spacing: 0.1em;
    white-space: nowrap;
    z-index: 2;
    position: relative;
}

.personality-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.personality-box {
    background-color: var(--bg-orange-light);
    width: 48%;
    padding: 4rem;
    border-radius: 4rem;
}

.personality-box .box-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3.2rem;
    color: #333;
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.personality-box .search-icon {
    width: 3.6rem;
    vertical-align: middle;
}

.personality-box .check-list li {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #444;
    line-height: 1.4;
}

.personality-box .check-list li:last-child {
    margin-bottom: 0;
}

.personality-box .check-list li::before {
    content: "";
    position: absolute;
    left: 0;
}

.personality-visual {
    position: relative;
    width: 48%
}

.pic-group {
    position: relative;
    width: 100%;
    height: 100%;
}



.personality-visual .pic img {
    width: 100%;
    height: auto;
    display: block;
}

.pic01 {
    position: absolute;
    top: -16rem;
    right: -8rem;
    width: 20rem;
    aspect-ratio: 446 / 472;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.pic02 {
    top: 18rem;
    left: 5rem;
    width: 100%;
    aspect-ratio: 956 / 620;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.pic03 {
    width: 30rem;
    aspect-ratio: 604 / 456;
    border-radius: 0 !important;
    overflow: visible !important;
    z-index: 3;
    margin: 1.2rem -6rem 0 auto;
}

.pic03 img {
    border-radius: 0;
}



.personality-copy {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    line-height: 1.4;
}

.personality-list {
    font-size: 1.8rem;
}

.personality-list li {
    margin-bottom: 1rem;
    font-weight: 500;
}

/* CTA */
.cta {
    background: repeating-linear-gradient(-60deg,
            #ffe3ad,
            #ffe3ad 1.6rem,
            #fee9c2 1.6rem,
            #fee9c2 3.2rem);
    padding: 10rem 0;
}

.cta-box {
    background: #fff;
    border-radius: 1.5rem;
    padding: 4rem 6.4rem;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.05);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-message {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1.5;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 38rem;
}

.btn-cta-entry,
.btn-cta-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7rem;
    border-radius: 3.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-entry {
    background: #fff;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-cta-entry img {
    width: 2.8rem;
    margin-right: 1.2rem;
}

.btn-cta-contact {
    background: var(--accent-orange);
    color: #fff;
}

/*
.btn-cta-entry:hover {
    background: var(--primary-blue);
    color: #fff;
}

.btn-cta-entry:hover img {
    filter: brightness(0) invert(1);
}

.btn-cta-contact:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

*/


/* Support */
.support {
    background: url('images/bg_support.jpg') center/cover no-repeat;
    padding: 10rem 0;
    color: #fff;
}

.support .inner {
    padding: 0;
    width: 95%;
}

.support-header {
    margin-bottom: 6rem;
}

.support-header .title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.support-header .en {
    font-family: var(--font-en);
    font-size: 1.6rem;
    font-weight: 700;
    padding-left: 1.6rem;
    position: relative;
}

.support-header .en::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;

}

.support-header .section-title {
    font-size: 4.2rem;
    font-weight: 700;
    font-family: var(--font-title);
}

.support-header .sub-message {
    font-size: 2.2rem;
    font-weight: 500;
    font-family: var(--font-title);
}

.support-cards {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.support-card {
    width: 65%;
}

.card-left {
    align-self: flex-start;
}

.card-right {
    align-self: flex-end;
}

.card-inner {
    background: #fff;
    border-radius: 2rem;
    padding: 3.2rem;
    color: #333;
    position: relative;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.card-tag {
    font-family: var(--font-title);
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2.4rem;
}

.card-tag.orange {
    color: var(--accent-orange);
}

.card-tag.blue {
    color: var(--primary-blue);
}

.card-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.support-card .person {
    flex-shrink: 0;
    width: 18rem;
}

.support-card .person img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.text-box {
    padding: 3rem;
    border-radius: 1.5rem;
    position: relative;
}

.blue-bg {
    background-color: #e9f5ff;
}

.beige-bg {
    background-color: #fff4e5;
}

/* Tails for text boxes */
.blue-bg::before {
    content: "";
    position: absolute;
    left: -2.4rem;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 2rem 3rem 2rem 0;
    border-color: transparent #e9f5ff transparent transparent;
}

.beige-bg::before {
    content: "";
    position: absolute;
    right: -2.4rem;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 2rem 0 2rem 3rem;
    border-color: transparent transparent transparent #fff4e5;
}

.box-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.box-desc {
    font-size: 1.5rem;
    line-height: 1.6;
}

.qualifications {
    margin-top: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.4rem;
    background: #f8f9fa;
    padding: 1.6rem;
}

.qual-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    white-space: nowrap;
}

.qual-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    border-radius: 1rem;
}

.qual-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.qual-list li img {
    width: 2.4rem;
    height: auto;
}





/* Career */
.career {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding: 10rem 0;
}

.career .inner {
    position: relative;
    padding: 0;
    width: 95%;
    margin: 0 auto;
    z-index: 2;
}

.title-label-career {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.title-label-career .dot {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
}

.title-label-career .en {
    font-family: var(--font-en);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #1A1A1A;
    margin-bottom: 0;
}

.career .section-title {
    font-size: 5.6rem;
    font-weight: 700;
    margin-bottom: 3.2rem;
    padding: 0;
    border: none;
    text-align: left;
    line-height: 1;
}

.career .section-title::after {
    display: none;
}

.career .section-subtitle {
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 700;
    color: #0E3483;
    margin-bottom: -4rem;
    text-align: center;
}

.career-flow-container {
    background: linear-gradient(to right, #FFFFFF, #F2F8FB);
    border-radius: 2rem;
    padding: 3.2rem 0;
    margin-bottom: 1.6rem;
}

.career-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.6rem;
    width: 95%;
    margin: 0 auto
}

.career-item {
    background: #fff;
    border: 1px solid #D1E1E9;
    border-radius: 1.2rem;
    width: 20.2%;
    max-width: 20.2rem;
    padding: 1.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.career-item .step-num {
    font-family: var(--font-en);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1.6rem;
}

.career-item .step-num span {
    font-size: 2.2rem;
}

.career-item .step-label {
    font-size: 2.0rem;
    font-weight: 700;
    color: #0E3483;
    line-height: 1.3;
    height: 5.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-item .icon-wrap {
    width: 10rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2.4rem
}

.career-item .icon-wrap img {
    height: auto;
}

.flow-arrow {
    width: 0;
    height: 0;
    border-top: 1.2rem solid transparent;
    border-bottom: 1.2rem solid transparent;
    border-left: 1.8rem solid #84B7D9;
    flex-shrink: 0;
}

.career-message-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.4rem;
}

.large-arrow-down {
    width: 0;
    height: 0;
    border-left: 1.6rem solid transparent;
    border-right: 1.6rem solid transparent;
    border-top: 2.4rem solid var(--accent-orange);
    margin: 2.4rem 0;
}

.career-message-box {
    border: 3px solid var(--accent-orange);
    border-radius: 1rem;
    padding: 1.6rem 3.2rem;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-orange03);
    text-align: center;
    max-width: 90rem;
    width: 100%;
}

.career-visual {
    position: relative;
    overflow: hidden;
}

.career-visual img {
    width: 100%;
    display: block;
}

.career-visual figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12rem 4rem 4rem;
    color: #fff;
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.4;
}

.career-visual figcaption span {
    color: var(--accent-orange);
}

/* Voice */
/* Voice */
.voice {
    background-color: #FFF0D9;
    padding: 10rem 0;
}

.voice-header {
    text-align: center;
    margin-bottom: 6rem;
}

.voice-header .title-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.voice-header .title-label::after {
    display: none;
}

.voice-header .dot {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
}

.voice-header .en {
    font-family: var(--font-en);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-black);
}

.voice-header .section-title {
    font-family: var(--font-title);
    font-size: 5.6rem;
    font-weight: 700;
    margin-bottom: 2.4rem;
    line-height: 1.2;
}

.voice-header .section-subtitle {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 700;
    color: #4D4D4D;
}

.voice-slider-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6rem;
    height: fit-content;
}

.voice-slide {
    padding: 2rem 1.5rem 4rem;
    cursor: pointer;
}

.voice-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 52rem;

}

.voice-card .ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0076C0;
    color: #fff;
    padding: 1.2rem 2.4rem;
    font-size: 1.4rem;
    font-weight: 700;
    z-index: 2;
    border-bottom-left-radius: 1.5rem;
}

.voice-card .pic {
    width: 100%;
    aspect-ratio: 1.1 / 1;
    overflow: hidden;
}

.voice-card .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-card .card-content {
    flex-direction: column;
    padding: 3.2rem 2.8rem 6rem;
    flex-grow: 1;
    gap: 0.8rem;
    align-items: flex-start;
}

.voice-card .card-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1A1A1A;
    font-family: var(--font-body);
}

.voice-card .card-desc {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
}

.voice-card .btn-more {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 5.4rem;
    height: 5.4rem;
    background-color: var(--color-orange03);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    transition: background-color 0.3s;
}

.voice-card .btn-more span {
    width: 1.2rem;
    height: 1.2rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-right: 1.2rem;
    margin-bottom: 1.2rem;
}

/* Slick Customization */
.voice-slider .slick-prev,
.voice-slider .slick-next {
    width: 6rem;
    height: 6rem;
    z-index: 10;
}

.voice-slider .slick-prev {
    left: -2rem;
}

.voice-slider .slick-next {
    right: -5rem;
}

.voice-slider .slick-prev::before,
.voice-slider .slick-next::before {
    content: "";
    display: block;
    width: 3rem;
    height: 3rem;
    border-top: 5px solid var(--accent-orange);
    border-right: 5px solid var(--accent-orange);
}

.voice-slider .slick-prev::before {
    transform: rotate(-135deg);
}

.voice-slider .slick-next::before {
    transform: rotate(45deg);
}

.voice-slider .slick-dots {
    bottom: -2rem;
}

.voice-slider .slick-dots li button:before {
    color: var(--accent-orange);
    font-size: 1.2rem;
    opacity: 0.3;
}

.voice-slider .slick-dots li.slick-active button:before {
    color: var(--accent-orange);
    opacity: 1;
}

/* Requirements */
.requirements {
    position: relative;
    overflow: hidden;
    padding: 10rem 0;
}

.requirements .bg-after {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    z-index: 1;
    aspect-ratio: 628 / 375;
}

.requirements .bg-before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    z-index: 1;
    aspect-ratio: 628 / 375;
}

.requirements .inner {
    position: relative;
    z-index: 2;
}

.requirements-header {
    text-align: center;
    margin-bottom: 6rem;
}

.requirements-header .title-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    background: transparent;
    padding: 0;
}

.requirements-header .title-label::after {
    display: none;
}

.requirements-header .dot.orange {
    width: 1.2rem;
    height: 1.2rem;
    border: 3px solid var(--accent-orange);
    border-radius: 50%;
}

.requirements-header .en {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #333;
}

.requirements-header .section-title {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.2;
}

.requirements-table {
    max-width: 100rem;
    margin: 0 auto;
}

.requirements-table table {
    width: 100%;
    border-collapse: collapse;
}

.requirements-table tr {
    border-bottom: 1px solid #ddd;
}

.requirements-table th,
.requirements-table td {
    padding: 3.2rem 2rem 1.2rem 2rem;
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.6;
}

.requirements-table th {
    width: 25rem;
    font-weight: 700;
    color: #1A1A1A;
    background: transparent;
    border-bottom: 2px solid var(--accent-orange);
}

.requirements-table td {
    color: #333;
    font-weight: 500;
}

/* FAQ */
.faq {
    background-color: #FDF6E9;
    padding: 10rem 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 6rem;
}

.faq-header .title-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    background: transparent;
    padding: 0;
}

.faq-header .title-label::after {
    display: none;
}

.faq-header .dot.orange {
    width: 1.2rem;
    height: 1.2rem;
    border: 3px solid var(--accent-orange);
    border-radius: 50%;
}

.faq-header .en {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #333;
}

.faq-header .section-title {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.2;
}

.faq-list {
    max-width: 90rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 4rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
}

.faq-q {
    padding: 2rem 3rem;
    background-color: var(--accent-orange);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: background 0.3s;
    position: relative;
    border-radius: 1rem;
}

.faq-item.active .faq-q {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-q .icon-q {
    font-family: var(--font-en);
    width: 3.6rem;
    height: 3.6rem;
    background: #fff;
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.faq-q .text {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    flex-grow: 1;
}

.faq-q .plus {
    position: relative;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.faq-q .plus::before,
.faq-q .plus::after {
    content: "";
    position: absolute;
    background: #fff;
    transition: transform 0.3s;
}

.faq-q .plus::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    margin-top: -1px;
}

.faq-q .plus::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -1px;
}

.faq-item.active .faq-q .plus::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-a {
    padding: 0;
    background: #fff;
    display: none;
}

.faq-a-inner {
    padding: 2.5rem 3rem 4rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.faq-a .icon-a {
    font-family: var(--font-en);
    width: 3.6rem;
    height: 3.6rem;
    background: var(--accent-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.faq-a .text {
    font-size: 1.6rem;
    color: #333;
    line-height: 1.7;
    padding-top: 0.5rem;
    font-family: var(--font-title);
}

/* Entry Form */
.entry {
    background-color: #F4F8FA;
    padding: 10rem 0;
}

.entry-header {
    text-align: center;
    margin-bottom: 4rem;
}

.entry-header .title-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    background: transparent;
    padding: 0;
}

.entry-header .title-label::after {
    display: none;
}

.entry-header .dot.orange {
    width: 1.2rem;
    height: 1.2rem;
    border: 3px solid var(--accent-orange);
    border-radius: 50%;
}

.entry-header .en {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #333;
}

.entry-header .section-title {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.2;
}

.entry-sub-header {
    text-align: center;
    margin-bottom: 6rem;
}

.entry-sub-header .text {
    font-family: var(--font-title);
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

.entry-sub-header .caution {
    color: var(--accent-orange);
    display: block;
    margin-top: 1rem;
    font-weight: 700;
}

.entry-form-wrap {
    max-width: 100rem;
    margin: 0 auto;
}

.form-item {
    display: flex;
    align-items: center;
    margin-bottom: 2.4rem;
    gap: 4rem;
}

.form-item.align-top {
    align-items: flex-start;
}

.form-item label {
    flex: 0 0 24rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-item label .required {
    background: var(--accent-orange);
    color: #fff;
    font-size: 1.2rem;
    padding: 0.2rem 1rem;
    border-radius: 0.4rem;
    font-weight: 700;
}
.form-item label .free {
    background: #9aa6b2;
    color: #fff;
    font-size: 1.2rem;
    padding: 0.2rem 1rem;
    border-radius: 0.4rem;
    font-weight: 700;
}

.input-wrap {
    flex: 1;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.8rem;
    padding: 1.6rem 2rem;
    font-size: 1.8rem;
    color: #333;
    font-family: inherit;
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
    color: #AAA;
}

.input-wrap textarea {
    height: 20rem;
    resize: vertical;
}

.select-wrap {
    position: relative;
}

.select-wrap::after {
    content: "";
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
    height: 1rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath d='M1 1l7 7 7-7' fill='none' stroke='%230076C0' stroke-width='2'/%3E%3C/svg%3E") no-repeat center/contain;
    pointer-events: none;
}

.select-wrap select {
    appearance: none;
    cursor: pointer;
    padding-right: 5rem;
    background-image: none;
}

.privacy-policy-section {
    margin: 6rem auto 4rem;
    max-width: 80rem;
}

.privacy-box {
    background: #fff;
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.privacy-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.4rem;
}

.privacy-content {
    height: 20rem;
    overflow-y: auto;
    font-size: 1.4rem;
    color: #444;
    line-height: 1.8;
}

.privacy-content p {
    margin-bottom: 1.6rem;
}

.privacy-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-top: 2.4rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.4rem;
}

.privacy-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.6rem;
}

.privacy-content ul ul {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}

.privacy-content li {
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

.consent-check {
    text-align: center;
}

.consent-check label {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 700;
}

.consent-check input[type="checkbox"] {
    width: 2.4rem;
    height: 2.4rem;
    cursor: pointer;
}

.consent-check .wpcf7-acceptance input[type="checkbox"] {
    width: 2.4rem !important;
    height: 2.4rem !important;
    cursor: pointer;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    display: inline-block !important;
    opacity: 1 !important;
    position: static !important;
}

.form-submit {
    text-align: center;
    margin-top: 4rem;
}

.c-button {
    width: 32.0rem;
    height: 6.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    border-radius: 6.4rem;
    background-color: var(--color-orange01);
    font-size: 2.0rem;
    box-shadow: 0 1rem 3rem rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto
}

.c-button:after {
    content: '→';
    width: 3.0rem;
    height: 3.0rem;
    display: block;
    border-radius: 50%;
    background-size: contain;
    position: absolute;
    right: 1.6rem;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-indent: -250%;
    transition: 0.3s all;
}

.c-button:before {
    content: '→';
    width: 3.0rem;
    height: 3.0rem;
    display: block;
    border-radius: 50%;
    background-size: contain;
    position: absolute;
    right: 1.6rem;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-indent: 0;
    transition: 0.3s all;
}

.c-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 1.5rem 4rem rgba(255, 140, 0, 0.4);
}

.c-button:hover:after {
    text-indent: 0;
}

.c-button:hover:before {
    text-indent: 250%;
}









/* Footer */
footer {
    background-color: var(--color-blue02);
    padding: 7.2rem 0
}

footer .inner {
    max-width: 1320px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

footer h2 i {
    display: block;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 1.6rem
}

footer h2 {
    margin-bottom: 3.2rem;
}

footer h2 figure {
    width: 100%;
}

footer h2 figure img {
    width: 100%;
}


footer dl {
    color: #ffffff;
}

footer dt {
    margin-bottom: 1.6rem;
}

footer dd {
    font-weight: 400;
    font-size: 1.4rem
}

footer .footer-sitemap__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem 2.4rem
}

footer .footer-sitemap__list li {
    width: fit-content;
}

footer .footer-sitemap__list li:nth-child(3n) {
    padding-left: 2.4rem;
}

footer .footer-sitemap__list a {
    color: #ffffff;
    font-size: 1.6rem;
}

footer .copyright {
    padding: 3.2rem 0 0 0;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
}


/* Modal */
/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 82, 181, 0.7);
}

.modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 100rem;
    padding: 6rem 0;
    border-radius: 3rem;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6rem;
    height: 6rem;
    cursor: pointer;
    z-index: 20;
    transition: opacity 0.3s;
    margin: 0 auto;
}

.modal-nav:hover {
    opacity: 0.7;
}

.modal-nav.prev {
    left: 0;
}

.modal-nav.next {
    right: 0;
}

.modal-nav::before {
    content: "";
    display: block;
    width: 4rem;
    height: 4rem;
    border-top: 8px solid var(--accent-orange);
    border-right: 8px solid var(--accent-orange);
}

.modal-nav.prev::before {
    transform: rotate(-135deg);
    margin-left: 1.5rem;
}

.modal-nav.next::before {
    transform: rotate(45deg);
    margin-right: 1.5rem;
}

.modal-slider {
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-slider.is-ready {
    opacity: 1;
}

.modal-slider .slick-list {
    overflow: visible;
}

/* Modal Inner Layout Adjustment for slider */
.modal-slide {
    outline: none;
    padding: 0 3.2rem;
    max-height: 80vh;
    overflow-y: scroll;
}

.modal-close-btn {
    position: absolute;
    top: -2.4rem;
    right: 4.8rem;
    width: 6rem;
    height: 6rem;
    background: #333;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    z-index: 10;
    padding-top: 0.5rem;
}

.modal-close-btn:hover {
    transform: scale(1.1);
}

.modal-close-btn span {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-en);
    margin-bottom: 1.6rem;
    letter-spacing: 0.05em;
}

.modal-close-btn::before,
.modal-close-btn::after {
    content: "";
    position: absolute;
    top: 60%;
    width: 3.6rem;
    height: 2px;
    background: #fff;
}

.modal-close-btn::before {
    transform: rotate(15deg);
}

.modal-close-btn::after {
    transform: rotate(-15deg);
}

/* Modal Internal Layout */
.modal-inner-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.modal-left {
    flex: 0 0 36%;
}

.modal-left img {
    width: 100%;
    border-radius: 2rem;
    display: block;
    transform: rotate(-6deg);
    margin: 1.8rem -1.8rem 1.8rem auto;
}

.modal-right {
    flex: 0 0 57%;
}

.modal-interview-header {
    margin-bottom: 3rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.8;
}

.modal-interview-header dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1.6rem;
}

.modal-interview-header dt {
    color: var(--primary-blue);
}

.modal-interview-header dd {
    color: var(--primary-blue);
}

.modal-interview-section {
    margin-bottom: 3rem;
}

.modal-interview-section:last-child {
    margin-bottom: 0;
}


.modal-interview-section .section-label {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1A1A1A;
}

.modal-interview-section p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #444;
}

.sp {
    display: none;
}

.pc {
    display: block;
}




/* Responsive Overrides */

/* Media Queries */

@media screen and (min-width: 1000px) {

    html {
        font-size: 62.5%;
    }

    /* 1rem = 10px */

}

@media screen and (max-width: 999px) {

    html {
        font-size: 1vw;
    }

    .reason .main-copy {
        font-size: 5vw;
    }

    .work .motto {
        font-size: 4vw;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .personality .main-copy {
        font-size: 5vw;
        white-space: wrap;
    }

    .personality-main {
        flex-direction: column;
        gap: 8rem;
    }

    .personality-box {
        width: 100%;
        padding: 4rem;
    }

    .personality-visual {
        width: 100%;
        height: auto;
    }



    .cta-message {
        font-size: 4vw;
        white-space: nowrap;
    }

    .support-card {
        width: 100%;
    }

    .form-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .form-item label {
        flex: auto;
        width: 100%;
    }

    .reason-list {
        flex-wrap: wrap;
    }

    .reason-item {
        flex: 1 1 45%;
    }

    .pic01 {
        right: -2rem
    }

    .pic03 {
        margin-right: 0;
    }

    .requirements-table th {
        width: fit-content;
        white-space: nowrap;
    }

    .form-item label {
        justify-content: flex-start;
        gap: 0.4rem
    }

    .input-wrap {
        flex: none;
        width: 100%
    }




}

@media screen and (max-width: 900px) {

    .modal-inner-layout {
        flex-direction: column;
        align-items: center;
    }

    .modal-left {
        flex: 0 0 auto;
        width: 100%;
        max-width: 40rem;
        margin-bottom: 2.4rem;
    }

    .modal-content {
        padding: 4rem 0;
        width: 80%;
    }

    .modal-close-btn {
        top: -2rem;
        right: -1rem;
        width: 6rem;
        height: 6rem;
    }

}

@media screen and (max-width: 759px) {

    html {
        font-size: 2vw;
    }

    .inner {
        padding: 0 5vw;
    }

    section {
        padding: 12vw 0;
    }

    .hamburger {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav-list {
        flex-direction: column;
        align-items: center;
        gap: 4rem;
    }

    .header-nav-list a {
        font-size: 2rem;
    }


    .hero-title {
        font-size: 7.2vw;
    }

    .hero-title .sub {
        font-size: 6.4vw;
    }

    .reason {
        padding: 8rem 0 0 0;
    }

    .bg-after,
    .bg-before {
        width: 15rem;
    }

    .reason-list {
        flex-direction: column;
        gap: 6rem;
    }

    .reason-item .num {
        font-size: 10vw;
        top: -4vw;
    }

    .reason-footer .bubble {
        right: 0;
        top: -10rem;
        width: 18rem;
    }

    .work {
        padding: 6rem 0;
    }

    .main-visual figcaption {
        position: relative;
    }

    .work .motto {
        font-size: 6vw;
    }

    .main-visual img {
        width: 100%;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .cta {
        padding: 6rem 0;
    }

    .cta-box {
        padding: 5rem 3rem;
    }

    .cta-content {
        flex-direction: column;
        gap: 4rem;
        text-align: center;
    }

    .cta-message {
        font-size: 6vw;
    }

    .cta-btns {
        width: 100%;
    }


    .card-tag {
        font-size: 4.5vw;
    }

    .card-content {
        flex-direction: column;
        gap: 0
    }

    .card-right .card-content {
        flex-direction: column-reverse;
    }

    .blue-bg::before,
    .beige-bg::before {
        display: none;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    header {
        background-color: var(--accent-orange)
    }

    header:has(input:checked) {
        background-color: transparent
    }


    header .inner ul {
        padding: 0;
        height: 70px;
        background-color: #000000;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1 / 1;
    }

    header .inner {
        width: 100%;
        padding: 0;
    }

    header .inner h1 {
        margin-left: 2.5%;
        white-space: nowrap;
    }

    header .inner h1 strong {
        font-size: 1.6rem
    }

    header .inner label {
        padding: 0;
        transform: scale(1.5);
    }

    .btn-contact {
        display: none;
    }

    .btn-recruit {
        display: none;
    }


    header .inner {
        width: 100%;
    }

    header .inner h1 {
        margin-left: 2.5%;
    }

    header .inner label {
        padding: 0;
        transform: scale(1.5);
    }

    .hero {
        align-items: flex-start;
        height: 80vh;
    }

    .hero-content {
        width: 100%var(--bg-light);
        width: 100%;
        height: 100%;
    }

    .hero-bg {
        padding-top: 70px;
        height: 100%;
    }

    .hero-bg figcaption {
        bottom: 4%;
        right: 4%;
    }

    .hero-bg figure {
        height: 100%;
    }

    .hero-bg figure img {
        height: 100%;
    }


    .hero-bg figcaption .en {
        font-size: 8rem;
    }


    .reason-list,
    .work-items,
    .support-content,
    .career-flow {
        flex-direction: column;
        gap: 3.2rem;
    }

    .support .card-tag.orange.narrow {
        letter-spacing: -0.2rem;
    }

    .hero-bg figcaption {
        bottom: 4%;
        right: 4%;
    }

    .pic-group {
        display: flex;
        height: auto;
        padding-bottom: 16rem;
        gap: 2rem;

    }

    .pic01 {
        position: unset;
        box-shadow: none;
        height: 16rem;
    }

    .pic01 img {
        height: 100% !important;
        object-fit: cover;
    }

    .pic02 {
        position: unset;
        box-shadow: none;
        height: 16rem;
    }

    .pic02 img {
        height: 100% !important;
        object-fit: cover;
    }

    .pic03 {
        position: absolute;
        box-shadow: none;
        height: 16rem;
        bottom: 0rem;
        right: 0rem;
        margin: 0
    }

    .pic03 img {
        height: 100% !important;
        object-fit: contain;
    }

    .flow-arrow {
        border-left: 1.2rem solid transparent;
        border-right: 1.2rem solid transparent;
        border-top: 1.8rem solid #84B7D9;
    }

    .career-item {
        max-width: 100%;
        width: 60%;
        height: auto;
    }

    .career-message-box {
        font-size: 1.8rem;
        padding: 2rem;
    }

    .career-visual figcaption {
        font-size: 5vw;
        padding: 4rem 2rem 2rem;
    }

    .career-flow-container {
        background: linear-gradient(to bottom, #FFFFFF, #F2F8FB);
    }

    .career .section-title,
    .requirements-header .section-title,
    .voice-header .section-title,
    .faq-header .section-title,
    .entry-header .section-title {
        font-size: 4.2rem;
    }

    .voice-slider .slick-next::before {
        margin-left: 1.2rem;
    }

    .voice-slider .slick-prev::before {
        margin-left: -1.2rem;
    }



    .modal-left img {
        width: 80%;
        margin: 2.4rem auto;
    }

    .modal-img5 {
        width: 80%;
        height: 380px;
        margin: 2.4rem auto;
    }


    .reason-item {
        flex: 1 1 100%;
    }

    .personality .inner {
        width: 80%
    }

    .personality .main-copy {
        white-space: nowrap;
    }

    .personality-block {
        flex-direction: column;
    }

    .header-nav {
        display: none;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

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

    footer .inner {
        flex-direction: column;
        gap: 2.4rem
    }

    footer .footer-sitemap__list li {
        white-space: nowrap;
    }

}

/* Contact Form 7 - レスポンス出力の青枠を非表示 */
.wpcf7-response-output {
    border: none !important;
}