/* ========================================
   Loading Screen
======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 3px solid #e0e0e0;
    border-top-color: #0171CC;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   Reset & Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
    color: #111111;
    line-height: 1.8;
    background-color: #fff;
    font-feature-settings: "palt";
}

main {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

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

a:hover {
    opacity: 0.7;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header
======================================== */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    max-width: 100%;
}

.header-logo {
    display: flex;
    align-items: center;
    padding-left: 20px;
    flex-shrink: 0;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.header-right {
    display: flex;
    align-items: stretch;
    height: 100%;
    margin-left: auto;
}

.header-entry {
    display: flex;
    align-items: stretch;
}

.btn-entry {
    background-color: #0171CC;
    color: #fff;
    border-radius: 0;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    height: 100%;
    min-width: 180px;
    padding: 0 40px;
    white-space: nowrap;
}

.btn-entry:hover {
    background-color: #0052A3;
    opacity: 1;
}

/* Header Navigation (PC) */
.header-nav-pc {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.header-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.header-nav-item a {
    font-size: 16px;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
    transition: color 0.3s;
}

.header-nav-item a:hover {
    color: #0171CC;
    opacity: 1;
}

/* Hamburger Button (Mobile) */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 100%;
    background-color: #333333;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
    margin-bottom: 5px;
}

.hamburger-line:nth-child(3) {
    margin-top: 5px;
}

/* Hamburger Animation */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.header-nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.header-nav-mobile.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-nav-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-mobile-item {
    border-bottom: 1px solid #eee;
}

.header-nav-mobile-item:last-child {
    border-bottom: none;
}

.header-nav-mobile-item a {
    display: block;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
    transition: background-color 0.3s;
}

.header-nav-mobile-item a:hover {
    background-color: #f8f8f8;
    opacity: 1;
}

/* ========================================
   First View Section
======================================== */
.fv-section {
    width: 100%;
    position: relative;
}

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

/* ========================================
   Catch Section
======================================== */
.catch-section {
    padding: 40px 0 80px;
    text-align: center;
    background: url('../images/bg-tokyo.png') center center / cover no-repeat;
    position: relative;
}

.catch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: rgba(255, 255, 255, 0.85); */
}

.catch-section .container {
    position: relative;
    z-index: 1;
    font-family: 'Noto Serif JP', serif;
}

.catch-title {
    font-size: 48px;
    font-weight: 700;
    color: #122A59;
    margin-bottom: 0;
    letter-spacing: 0.1em;
}

.catch-text strong {
    font-weight: 700;
}

.catch-text .catch-last-line {
    font-weight: 700;
    font-size: 1.1em;
}

.catch-text .catch-last-line .gritz-logo-inline {
    height: 1em;
    vertical-align: baseline;
    margin: 0 0.1em;
}

.catch-title .spacing {
    display: inline-block;
    width: 0.5em;
}

.catch-text {
    font-size: 18px;
    line-height: 2;
    color: #111111;
}

/* ========================================
   Growth Section
======================================== */
.growth-section {
    background: url('../images/growth-bg.png') center center / cover no-repeat;
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.growth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.growth-section .container {
    position: relative;
    z-index: 1;
}

.growth-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 64px;
    align-items: flex-start;
}

.growth-left {
    padding-top: 20px;
}

.growth-title {
    margin-bottom: 40px;
}

.growth-title-en {
    display: block;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.growth-title-ja {
    display: block;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.growth-description {
    font-size: 16px;
    line-height: 2;
    max-width: 450px;
}

.growth-description p {
    margin: 0;
    line-height: 1.7;
}

.growth-right {
    width: 100%;
}

.growth-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.growth-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.growth-card {
    background-color: #fff;
    padding: 14px 20px;
    border-radius: 4px;
}

.growth-card-large {
    width: 100%;
}

.growth-card-title {
    color: #111111;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #afafaf;
    text-align: left;
}

.growth-card-content {
    text-align: center;
}

.growth-card-content img {
    width: 100%;
    height: auto;
    display: block;
}

.growth-card-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding: 40px 0;
}

.growth-card-number .number {
    font-size: 72px;
    font-weight: 700;
    color: #0171CC;
    line-height: 1;
}

.growth-card-number .unit {
    font-size: 24px;
    font-weight: 500;
    color: #111111;
    margin-left: 8px;
}

/* ========================================
   Section Title (共通)
======================================== */
.section-title {
    text-align: left;
    margin-bottom: 40px;
}

.section-title-en {
    display: block;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #0171CC;
    line-height: 1;
    margin-bottom: 10px;
}

.section-title-ja {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0171CC;
    letter-spacing: 0.05em;
}

/* ========================================
   Message Section
======================================== */
.message-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* 右上の装飾画像 */
.message-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background: url('../images/interview-deco-01.png') top right no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.message-section .container {
    position: relative;
    z-index: 1;
}

.message-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* gap: 64px; */
    align-items: end;
}

.message-left {
    display: flex;
    flex-direction: column;
}

.message-text {
    font-size: 15px;
    line-height: 2;
    color: #111111;
}

.message-headline {
    font-family: 'Noto Serif JP', serif;
    font-size: 41px;
    white-space: nowrap;
    font-weight: 700;
    color: #122A59;
    margin-bottom: 30px;
    display: block;
    line-height: 1.4;
}

.message-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.message-text p:last-child {
    margin-bottom: 0;
}

.message-image {
    position: relative;
}

.message-image--sp {
    display: none;
}

.message-image img {
    width: 100%;
    height: auto;
    display: block;
    bottom: 78px;
    position: relative;
}

.message-signature {
    text-align: right;
    font-size: 18px;
    font-weight: 500;
    color: #111111;
    line-height: 1.8;
    position: relative;
    /* padding: 25px 30px 25px 110px; */
    background-color: transparent;
    max-width: fit-content;
    margin-left: auto;
    font-weight: bold;
    bottom: 64px;
}

.message-signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 80px;
    /* right: -350px; */
    transform: translateY(-32%);
    width: 320px;
    height: 320px;
    background-image: url('../images/logo-symbol.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
}

.message-signature p {
    margin: 0;
    position: relative;
    z-index: 1;
}


/* ========================================
   Interview Section
======================================== */
.interview-section {
    padding: 100px 0 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* 左上の装飾画像 */
.interview-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 30%;
    height: 80%;
    background: url('../images/interview-deco-02.png') top left no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.interview-section::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 400px;
    background: url('../images/interview-bg.jpg') center bottom / cover no-repeat;
    z-index: 0;
}

.interview-section .container {
    position: relative;
    z-index: 1;
}

.interview-slider-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.interview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.interview-card {
    background-color: transparent;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.interview-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    /* border-style: solid;
    border-width: 0 0 30px 30px;
    border-color: transparent transparent #e0e0e0 transparent; */
    z-index: 1;
}

.interview-card:hover {
    transform: translateY(-8px);
    opacity: 1;
}

.interview-link {
    display: block;
    text-decoration: none;
}

.interview-link:hover {
    opacity: 1;
}

/* ホバー時に「インタビューを見る」表示 */
.interview-image::after {
    content: 'インタビューを見る';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 113, 204, 0.85) url('../images/entry-arrow.svg') no-repeat calc(50% + 5.5em) center / 16px auto;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.interview-card:hover .interview-image::after {
    opacity: 1;
}

.interview-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.interview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.interview-card:hover .interview-image img {
    transform: scale(1.08);
}

.interview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%); */
    padding: 100px 10px 10px;
    transition: background 0.3s ease;
}

/* .interview-card:hover .interview-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
} */

.interview-comment {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.7;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.interview-info {
    padding: 12px 0 0;
    background-color: transparent;
}

.interview-meta {
    font-size: 12px;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.interview-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Interview Navigation Arrows (Mobile only) */
.interview-nav {
    display: none;
}

.interview-more {
    text-align: center;
    padding-bottom: 100px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 320px;
    background-color: #0171CC;
    color: #fff;
    padding: 20px 20px;
    border-radius: 0;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #0052A3;
    opacity: 1;
    transform: translateX(5px);
}

.btn-arrow {
    position: absolute;
    right: 25px;
    width: 25px;
    height: auto;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

/* ========================================
   Divider Image Section（横長画像）
======================================== */
.divider-image-section {
    width: 100%;
    overflow: hidden;
}

.divider-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.divider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   Environment Section
======================================== */
.environment-section {
    padding: 100px 0;
    background-color: #F5F5F5;
    position: relative;
    overflow: hidden;
}

/* 右下の装飾画像 */
.environment-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 80%;
    background: url('../images/interview-deco-03.png') bottom right no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.environment-section .container {
    position: relative;
    z-index: 1;
}

.environment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.environment-text {
    font-size: 15px;
    line-height: 2;
    color: #111111;
}

.environment-text p {
    margin-bottom: 30px;
}

.environment-text p:last-child {
    margin-bottom: 0;
}

.environment-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.environment-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 35px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
}

.environment-link-item:hover {
    opacity: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.environment-link-text {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
}

.environment-link-arrow {
    width: 28px;
    height: auto;
    filter: brightness(0);
    transition: transform 0.3s ease;
}

.environment-link-item:hover .environment-link-arrow {
    transform: translateX(8px);
}

/* ========================================
   Survey Section（社員アンケート）
======================================== */
.survey-section {
    background-color: #FBFBFB;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
    padding-top: 60px;
}

/* 装飾画像 */
.survey-deco {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

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

/* セクション間の装飾画像（deco-02） */
.survey-deco-between {
    position: relative;
    height: 120px;
    pointer-events: none;
    background-color: #FBFBFB;
}

.survey-deco-between img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: auto;
    display: block;
}

.survey-deco--bottom {
    bottom: 0;
    right: 0;
    width: 400px;
}

/* 見出しエリア */
.survey-header {
    background: url('../images/growth-bg.png') center center / cover no-repeat;
    margin-left: max(20px, calc((100vw - 960px) / 2));
    padding: 60px 80px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.survey-header-label {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.survey-header-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 0;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 1);
    text-underline-offset: 7px;
    text-decoration-thickness: 2px;
}

.survey-header-sub {
    font-size: 30px;
    font-weight: bold;
}

/* アンケート一覧 */
.survey-list {
    padding-top: 60px;
    position: relative;
    z-index: 1;
}

.survey-group {
    margin-bottom: 28px;
}

.survey-group:last-child {
    margin-bottom: 0;
}

.survey-item {
    display: flex;
    font-size: 15px;
    line-height: 2;
    color: #333;
    margin: 0;
    padding: 6px 0;
}

.survey-name {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    flex-shrink: 0;
    width: 8em;
}

.survey-text {
    flex: 1;
    min-width: 0;
}

/* SP only改行 */
.sp-only {
    display: none;
}


/* ========================================
   Entry Section
======================================== */
.entry-section {
    background-color: #fff;
    padding: 80px 0;
}

.entry-section .container {
    position: relative;
    max-width: 960px;
}

.entry-inner {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 4px;
    overflow: hidden;
    height: 282px;
}

.entry-inner:hover .entry-bg img {
    transform: scale(1.03);
    filter: blur(2px);
}

.entry-inner:hover .entry-bg::after {
    opacity: 1;
}

.entry-inner:hover .entry-button-arrow {
    transform: translateX(5px);
}

.entry-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.entry-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(18, 42, 89, 0.35); */
    background-color: rgb(1 102 204 / 35%);

    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.entry-bg img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease, filter 0.4s ease;
    object-fit: none;
    border-radius: 4px;
    display: block;
}

.entry-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 60px 50px;
    height: inherit;
}

.entry-text {
    flex: 1;
}

.entry-lead {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    line-height: 2;
    margin: 0;
}

.entry-button {
    display: flex;
    flex-direction: column;
}

.entry-button-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.entry-button-title {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.05em;
}

.entry-button-arrow {
    width: 32px;
    height: auto;
    transition: transform 0.3s ease;
}

.entry-button-sub {
    display: block;
    font-size: 16px;
    color: #fff;
}

/* ========================================
   Recruit Links Section
======================================== */
.recruit-links-section {
    padding: 60px 0;
    background-color: #fff;
}

.recruit-links {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.recruit-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 50px;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    min-width: 250px;
}

.recruit-link:hover {
    border-color: #0171CC;
    box-shadow: 0 4px 12px rgba(1, 113, 204, 0.15);
    transform: translateY(-3px);
    opacity: 1;
}

.recruit-link img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* ========================================
   Footer
======================================== */
.site-footer {
    background-color: #111111;
    color: #fff;
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.footer-links li a {
    font-size: 14px;
    color: #fff;
    padding: 0 20px;
    transition: opacity 0.3s;
}

.footer-links li a:hover {
    opacity: 0.7;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* External Link Icon */
.external-link-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 6px;
    vertical-align: middle;
}

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

.footer-copyright p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ========================================
   Scroll to Top Button
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #0171CC;
    border: 1px solid #0171CC;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.scroll-to-top-icon {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #0171CC;
    border-right: 2px solid #0171CC;
    transform: rotate(-45deg);
    margin-top: 4px;
}

/* ========================================
   Archive & Single Page Styles
======================================== */
.page-header {
    background-color: #F8F8F8;
    padding: 60px 0;
    text-align: center;
}

.page-title-en {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #0171CC;
    margin-bottom: 10px;
}

.page-title-ja {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #111111;
}

/* Interview Archive Page Header */
.page-header--interview {
    position: relative;
    width: 100%;
    height: 400px;
    padding: 0;
    background-color: transparent;
    text-align: left;
    overflow: hidden;
}

.page-header--interview .page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header--interview .page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-header--interview .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.page-header--interview .page-title {
    margin: 0;
}

.page-header--interview .page-title-en {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header--interview .page-title-ja {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #111111;
}

.breadcrumb-item a {
    color: #0171CC;
    text-decoration: underline;
}

.breadcrumb-item a:hover {
    text-decoration: none;
}

.breadcrumb-item:not(:last-child)::after {
    content: ">";
    margin: 0 10px;
    color: #111111;
}

.breadcrumb-item.current {
    color: #111111;
}

/* Interview Archive */
.interview-archive-section {
    padding: 0 0 60px;
    background-color: #FBFBFB;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

/* 背景装飾画像 */
.interview-archive-bg {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.interview-archive-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.interview-archive-bg--top-right {
    top: 0;
    right: 0;
    width: 80%;
}

.interview-archive-bg--middle-right {
    top: 50%;
    width: 350px;
    transform: translateY(-50%);
}

.interview-archive-bg--bottom-right {
    bottom: 0;
    right: 0;
    width: 400px;
}

/* 記事数が少ない場合の調整 */
.interview-archive-section:has(.interview-grid > .interview-card:nth-child(-n+4):last-child) .interview-archive-bg--middle-right {
    display: none;
}

.interview-archive-section:has(.interview-grid > .interview-card:nth-child(-n+6):last-child) .interview-archive-bg--bottom-right {
    bottom: auto;
    top: 70%;
}

/* イントロセクション */
.interview-archive-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.interview-archive-intro::before,
.interview-archive-intro::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    max-width: 100%;
    height: 1px;
    background-color: #777777;
}

.interview-archive-intro::before {
    top: 0;
}

.interview-archive-intro::after {
    bottom: 0;
}

.interview-archive-intro-title {
    font-size: 32px;
    font-weight: 700;
    color: #122A59;
    margin-bottom: 18px;
    display: inline-block;
    background-color: #fff;
    padding: 0 5px;
    position: relative;
    line-height: normal;
}

.interview-archive-intro-title-en {
    font-family: Helvetica, Arial, sans-serif;
}

.interview-archive-intro-text {
    font-size: 15px;
    line-height: 2;
    color: #111111;
}

.interview-archive-section .container {
    position: relative;
    z-index: 1;
}

/* インタビュー一覧ページは3列 */
.interview-archive-section .interview-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 25px;
}

/* インタビュー一覧ページ用カードスタイル */
.interview-card--archive .interview-info {
    background-color: transparent;
    padding: 12px 0 0;
}

.interview-card--archive .interview-meta {
    color: #111111;
    text-shadow: none;
}

.interview-card--archive .interview-name {
    color: #111111;
    text-shadow: none;
}

.interview-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.interview-archive-card {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.interview-archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.interview-archive-link {
    display: block;
}

.interview-archive-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.interview-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-archive-content {
    padding: 30px;
}

.interview-archive-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.interview-archive-department {
    font-size: 14px;
    color: #0171CC;
    margin-bottom: 5px;
}

.interview-archive-year {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.interview-archive-comment {
    font-size: 14px;
    line-height: 1.6;
    color: #111111;
}

/* Interview Single */
.interview-single {
    background-color: #FBFBFB;
    position: relative;
    overflow: hidden;
}

/* Interview Single 背景画像 */
.interview-single-bg {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.interview-single-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.interview-single-bg--top-right {
    top: 0;
    right: 0;
    width: 80%;
}

.interview-single-bg--middle-left {
    top: 50%;
    left: 0;
    width: 350px;
    transform: translateY(-50%);
}


/* Interview Hero Section */
.interview-hero {
    padding: 60px 0 80px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.interview-hero-inner {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 40px;
    align-items: start;
    padding: 0 20px;
}

.interview-hero-image {
    position: relative;
    margin-left: -100px;
    width: calc(100% + 100px);
}

.interview-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.interview-hero-info {
    padding-top: 20px;
}

.interview-hero-department {
    font-size: 24px;
    font-weight: 700;
    color: #122A59;
    margin-bottom: 15px;
}

.interview-hero-year {
    font-size: 15px;
    color: #111111;
    margin-bottom: 0;
}

.interview-hero-name {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
}

.interview-hero-comment {
    margin-top: 45px;
}

.interview-hero-comment p {
    font-size: 25px;
    font-weight: 700;
    line-height: 2;
    color: #111111;
    margin: 0;
}

/* Interview Body */
.interview-body {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.interview-body-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    z-index: 0;
    pointer-events: none;
}

.interview-body-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.interview-container {
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.interview-content {
    font-size: 16px;
    line-height: 2;
    color: #111111;
}

.interview-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin: 60px 0 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #CFCFCF;
}

.interview-content h2:first-child {
    margin-top: 0;
}

.interview-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin: 50px 0 20px;
}

.interview-content p {
    margin-bottom: 25px;
}

.interview-content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
}

.interview-content ul,
.interview-content ol {
    margin: 0 0 25px;
    padding-left: 1.5em;
}

.interview-content li {
    margin-bottom: 8px;
}

.interview-content li:last-child {
    margin-bottom: 0;
}

/* 青太字（強調）カスタム書式 */
.blue-highlight {
    color: #0171CC;
    font-weight: 700;
    font-size: 1.15em;
}

/* 2カラムレイアウト（WordPressカラムブロック対応） */
.interview-content .wp-block-columns {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    align-items: flex-start;
}

.interview-content .wp-block-column {
    flex: 1;
}

.interview-content .wp-block-columns.is-layout-flex {
    flex-wrap: nowrap;
}

/* テキスト左・画像右 */
.interview-content .wp-block-columns.has-2-columns .wp-block-column:first-child {
    flex: 1;
}

.interview-content .wp-block-columns.has-2-columns .wp-block-column:last-child {
    flex: 0 0 45%;
}

.interview-content .wp-block-columns .wp-block-column p:last-child {
    margin-bottom: 0;
}

.interview-content .wp-block-columns .wp-block-column img {
    margin: 0;
    width: 100%;
    height: auto;
}

/* Other Members Section */
.other-members-section {
    padding: 80px 0 100px;
    background-color: #fff;
    position: relative;
}

.other-members-bg {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    height: 55%;
    z-index: 0;
    overflow: hidden;
}

.other-members-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-members-section .container {
    position: relative;
    z-index: 1;
}

.other-members-title {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #0171CC;
    margin-bottom: 16px;
}

.other-members-section .interview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.other-members-btn {
    text-align: center;
    margin-top: 50px;
}

.other-members-btn .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 50px;
    background-color: #0171CC;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 0;
    transition: all 0.3s ease;
}

.other-members-btn .btn-primary:hover {
    background-color: #0052A3;
    opacity: 1;
    transform: translateX(5px);
}

.other-members-btn .btn-arrow {
    width: 18px;
    transition: transform 0.3s ease;
}

.other-members-btn .btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 60px 0;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #111111;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #0171CC;
    color: #fff;
    border-color: #0171CC;
    opacity: 1;
}

.pagination .current {
    background-color: #0171CC;
    color: #fff;
    border-color: #0171CC;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 100px 0;
}

.no-posts p {
    font-size: 18px;
    color: #111111;
}

/* ========================================
   Responsive Design
======================================== */

/* Tablet */
@media (max-width: 1023px) {
    .catch-title {
        font-size: 36px;
    }

    .growth-content {
        grid-template-columns: 1fr;
    }

    .growth-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .growth-title-en {
        font-size: 56px;
    }

    .growth-title-ja {
        font-size: 18px;
    }

    .section-title-en {
        font-size: 52px;
    }

    .section-title-ja {
        font-size: 16px;
    }

    .message-content {
        gap: 50px;
    }

    /* .message-image {
        max-width: 500px;
        margin: 0 auto;
    } */

    .message-image {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Messageセクション背景（タブレット） */
    .message-section::before {
        width: 70%;
    }

    .message-headline {
        font-size: 28px;
    }

    .interview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* インタビュー一覧ページもタブレットで2列 */
    .interview-archive-section .interview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    /* 背景装飾画像（タブレット） */
    .interview-archive-bg--top-right,
    .interview-single-bg--top-right {
        width: 70%;
    }

    .interview-archive-bg--middle-right,
    .interview-single-bg--middle-left {
        width: 250px;
    }

    .interview-archive-bg--bottom-right {
        width: 280px;
    }

    .interview-body-bg {
        width: 280px;
    }

    .interview-archive-intro {
        max-width: 90%;
        padding: 30px 0;
    }

    .interview-archive-intro::before,
    .interview-archive-intro::after {
        width: 300px;
    }

    .interview-archive-intro-title {
        font-size: 26px;
    }

    .interview-archive-intro-text br {
        display: none;
    }

    /* パンくずリスト（タブレット） */
    .breadcrumb {
        padding: 15px 0;
    }

    /* ページヘッダー（インタビュー一覧）タブレット対応 */
    .page-header--interview {
        height: 300px;
    }

    .page-header--interview .page-title-en {
        font-size: 48px;
    }

    .page-header--interview .page-title-ja {
        font-size: 16px;
    }

    .interview-header-content {
        grid-template-columns: 1fr;
    }

    .divider-image {
        height: 250px;
    }

    .environment-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Entry Section Tablet */
    .entry-section {
        padding: 60px 0;
    }

    .entry-content {
        padding: 50px 40px;
    }

    .entry-lead {
        font-size: 18px;
    }

    .entry-button-title {
        font-size: 40px;
    }

    .entry-button-arrow {
        font-size: 28px;
    }

    /* Recruit Links Tablet */
    .recruit-link {
        min-width: 200px;
        padding: 25px 35px;
    }

    /* Survey Section Tablet */
    .survey-header {
        padding: 50px 30px;
    }

    .survey-header-title {
        font-size: 22px;
    }

    .survey-deco-between img {
        width: 250px;
    }

    .survey-deco--bottom {
        width: 280px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .site-header {
        height: 60px;
    }

    .header-inner {
        padding: 0;
    }

    .header-logo {
        padding-left: 15px;
        flex-shrink: 1;
    }

    .logo-img {
        height: 30px;
    }

    .logo-text {
        font-size: 11px;
        white-space: nowrap;
    }

    /* Header Navigation Mobile */
    .header-nav-pc {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .header-nav-mobile {
        display: block;
    }

    .header-entry {
        flex-shrink: 0;
    }

    .btn-entry {
        padding: 0 20px;
        font-size: 14px;
        min-width: 100px;
    }

    .catch-section {
        padding: 60px 0;
    }

    .catch-title {
        font-size: 28px;
        margin-bottom: 0;
    }

    .catch-text {
        font-size: 16px;
    }


    .growth-section {
        padding: 60px 0;
    }

    .growth-wrapper {
        gap: 40px;
    }

    .growth-title-en {
        font-size: 42px;
    }

    .growth-title-ja {
        font-size: 16px;
    }

    .growth-description {
        font-size: 15px;
    }

    .growth-card-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .growth-card {
        padding: 14px 16px;
    }

    .growth-card-title {
        font-size: 16px;
    }

    .growth-card-number {
        padding: 30px 0;
    }

    .growth-card-number .number {
        font-size: 48px;
    }

    .growth-card-number .unit {
        font-size: 18px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title-en {
        font-size: 32px;
    }

    .section-title-ja {
        font-size: 14px;
    }

    .chart-row {
        grid-template-columns: 1fr;
    }

    .chart-item {
        padding: 20px;
    }

    .chart-number .number {
        font-size: 48px;
    }

    .chart-number .unit {
        font-size: 18px;
    }

    .message-section,
    .interview-section {
        padding: 60px 0;
    }

    .message-image--pc {
        display: none;
    }

    .message-image--sp {
        display: block;
        margin-bottom: 16px;
    }

    .message-image--sp img {
        bottom: 0;
        position: relative;
    }

    /* .message-signature {
        text-align: center;
        padding: 20px 25px;
        margin: 0 auto;
    }

    .message-signature::before {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
    } */

    .section-title {
        margin-bottom: 40px;
    }

    .section-title-en {
        font-size: 42px;
    }

    .section-title-ja {
        font-size: 14px;
    }

    .message-content {
        grid-template-columns: 1fr;
        gap: 0;
        /* margin-bottom: 40px; */
    }

    .message-headline {
        font-size: 24px;
        margin-bottom: 16px;
    }

    /* Messageセクション背景（モバイル） */
    .message-section::before {
        width: 80%;
    }

    .message-text {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .message-text p {
        margin-bottom: 25px;
    }

    .message-signature {
        font-size: 12px;
        bottom: 0;
    }

    .message-signature::before {
        background-size: 80px;
    }

    .signature-company {
        font-size: 12px;
    }

    .signature-name {
        font-size: 14px;
    }

    .interview-section {
        padding: 60px 0 0;
    }

    .interview-section::after {
        height: 300px;
    }

    .interview-more {
        padding-bottom: 60px;
    }

    .interview-slider-wrapper {
        margin-bottom: 0;
    }

    /* トップページのインタビューは横スクロール */
    .interview-section .interview-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding-bottom: 10px;
    }

    .interview-section .interview-grid::-webkit-scrollbar {
        display: none;
    }

    .interview-section .interview-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .interview-section .interview-card {
        flex: 0 0 calc(50% - 7.5px);
        min-width: calc(50% - 7.5px);
        scroll-snap-align: start;
    }

    /* Interview Navigation Arrows */
    .interview-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }

    .interview-nav:hover {
        background-color: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .interview-nav-prev {
        left: -5px;
    }

    .interview-nav-next {
        right: -5px;
    }

    .interview-nav-icon {
        width: 18px;
        height: auto;
        filter: brightness(0);
    }

    .interview-nav-prev .interview-nav-icon {
        transform: scaleX(-1);
    }

    .interview-nav.disabled {
        opacity: 0.3;
        cursor: default;
    }

    /* インタビュー一覧ページはモバイルでも2列 */
    .interview-archive-section .interview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* 背景装飾画像（モバイル） */
    .interview-archive-bg--top-right,
    .interview-single-bg--top-right {
        width: 90%;
    }

    .interview-archive-bg--middle-right,
    .interview-single-bg--middle-left {
        width: 180px;
    }

    .interview-archive-bg--bottom-right {
        width: 200px;
    }

    .interview-body-bg {
        width: 200px;
    }

    .interview-archive-section {
        padding: 0 0 80px;
        min-height: 400px;
    }

    .interview-archive-intro {
        margin-bottom: 40px;
        padding: 25px 0;
        max-width: 100%;
    }

    .interview-archive-intro::before,
    .interview-archive-intro::after {
        width: 220px;
    }

    .interview-archive-intro-title {
        font-size: 20px;
        margin-bottom: 12px;
        padding: 0 5px;
    }

    .interview-archive-intro-text {
        font-size: 14px;
        line-height: 1.8;
    }

    /* パンくずリスト（モバイル） */
    .breadcrumb {
        padding: 12px 0;
    }

    .breadcrumb-list {
        font-size: 12px;
    }

    /* ページヘッダー（インタビュー一覧）モバイル対応 */
    .page-header--interview {
        height: 250px;
    }

    .page-header--interview .page-title-en {
        font-size: 36px;
    }

    .page-header--interview .page-title-ja {
        font-size: 14px;
    }

    .interview-card::before {
        border-width: 0 0 20px 20px;
    }

    .interview-overlay {
        padding: 80px 15px 15px;
    }

    .interview-comment {
        font-size: 12px;
    }

    .interview-info {
        padding: 15px;
    }

    .interview-meta {
        font-size: 11px;
    }

    .interview-name {
        font-size: 16px;
    }

    .btn-primary {
        padding: 14px 20px;
        font-size: 14px;
        min-width: 240px;
    }

    .btn-arrow {
        right: 14px;
        width: 20px;
    }

    .divider-image {
        height: 200px;
    }

    .environment-section {
        padding: 60px 0;
    }

    .environment-content {
        gap: 40px;
    }

    .environment-text {
        font-size: 14px;
    }

    .environment-text p {
        margin-bottom: 20px;
    }

    .environment-links {
        gap: 15px;
    }

    .environment-link-item {
        padding: 25px 25px;
    }

    .environment-link-text {
        font-size: 16px;
    }

    .environment-link-arrow {
        width: 24px;
    }

    /* Survey Section Mobile */
    .survey-deco-between {
        height: 80px;
    }

    .survey-section {
        padding-bottom: 60px;
    }

    .survey-header {
        margin-left: 15px;
        padding: 40px 20px;
    }

    .survey-header-label {
        font-size: 13px;
    }

    .survey-header-title {
        font-size: 18px;
    }

    .survey-header-sub {
        font-size: 16px;
        margin-top: 7px;
    }

    .sp-only {
        display: inline;
    }

    .survey-list {
        padding-top: 40px;
    }

    .survey-item {
        font-size: 14px;
        padding: 4px 0;
    }

    .survey-group {
        margin-bottom: 20px;
    }

    .survey-deco-between img {
        width: 180px;
    }

    .survey-deco--bottom {
        width: 200px;
    }

    /* Entry Section Mobile */
    .entry-section {
        padding: 40px 0;
    }

    .entry-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 40px 25px;
    }

    .entry-lead {
        font-size: 14px;
    }

    .entry-button-title {
        font-size: 32px;
    }

    .entry-button-arrow {
        font-size: 24px;
    }

    .entry-button-sub {
        font-size: 12px;
    }

    /* Recruit Links Mobile */
    .recruit-links {
        flex-direction: column;
        gap: 15px;
    }

    .recruit-link {
        min-width: auto;
        width: 100%;
        padding: 20px 30px;
    }

    .recruit-link img {
        height: 35px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links li a {
        padding: 0;
        font-size: 13px;
    }

    .footer-separator {
        display: none;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top-icon {
        font-size: 16px;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-title-en {
        font-size: 32px;
    }

    .interview-archive-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Interview Single (モバイル) */
    .interview-hero {
        padding: 30px 0 0;
    }

    .interview-hero-inner {
        display: flex;
        flex-direction: column;
        gap: 0 !important;
        padding: 0;
    }

    .interview-hero-info {
        order: 1;
        padding: 0 20px 15px;
    }

    .interview-hero-department {
        font-size: 15px;
        display: inline;
        margin-bottom: 0;
    }

    .interview-hero-year {
        display: inline;
        margin-left: 15px;
    }

    .interview-hero-name {
        font-size: 20px;
        margin-top: 0;
    }

    .interview-hero-image {
        order: 2;
        margin-left: 0;
        width: 100%;
        position: relative;
    }

    .interview-hero-comment p {
        font-size: 16px;
        line-height: 1.9;
    }

    .interview-body {
        padding: 60px 0;
    }

    .interview-content {
        font-size: 15px;
    }

    .interview-content h2 {
        font-size: 18px;
        margin: 50px 0 20px;
    }

    .interview-content h3 {
        font-size: 17px;
        margin: 40px 0 15px;
    }

    .interview-content .wp-block-columns {
        flex-direction: column;
        gap: 25px;
    }

    .interview-content .wp-block-columns.has-2-columns .wp-block-column:last-child {
        flex: 1;
    }

    /* Other Members Section (モバイル) */
    .other-members-section {
        padding: 60px 0 80px;
    }

    .other-members-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .other-members-section .interview-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .other-members-section .interview-card {
        flex: 0 0 calc(50% - 8px);
        scroll-snap-align: start;
    }

    .other-members-btn {
        margin-top: 40px;
    }

    .other-members-btn .btn-primary {
        padding: 12px 40px;
        font-size: 14px;
    }
}

/* iPhone SE サイズ専用の調整 */
@media (max-width: 375px) {
    .header-logo {
        padding-left: 10px;
    }

    .logo-img {
        height: 28px;
    }

    .logo-text {
        font-size: 10px;
    }

    .btn-entry {
        padding: 0 15px;
        font-size: 13px;
        min-width: 90px;
    }
}

/* ========================================
   FV Grid Section (アニメーション版)
   ========================================
   ※ main.css の既存の .fv-section スタイルを
   以下のコードで置き換えてください
   ======================================== */

/* ========================================
   First View Section (Grid Animation)
   Base: 1440px × 470px / gap = 0
======================================== */
.fv-grid-section {
    width: 100%;
    background-color: #000;
    overflow: hidden;
}

.fv-grid {
    position: relative;
    width: 100%;
    /* アスペクト比 1440:470 を維持 */
    aspect-ratio: 1440 / 470;
}

/* セル共通スタイル */
.fv-cell {
    position: absolute;
    overflow: hidden;
}

/* ========================================
   FV Grid - PC/スマホ切り替え
======================================== */

/* スマホ版: デフォルトで非表示 */
.fv-grid--sp {
    display: none;
}

/* ========================================
   576px以下: スマホ版表示
======================================== */
@media (max-width: 576px) {

    /* PC版を非表示 */
    .fv-grid--pc {
        display: none;
    }

    /* スマホ版を表示 */
    .fv-grid--sp {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 0;
        aspect-ratio: auto;
        width: 100%;
    }

    /* セルのpositionをリセット */
    .fv-grid--sp .fv-cell {
        position: relative;
        width: 100%;
        height: 100%;
        left: auto;
        top: auto;
    }

    /* Row 1: C, D, E */
    .fv-grid--sp .fv-cell-c {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        aspect-ratio: 1 / 1;
    }

    .fv-grid--sp .fv-cell-d {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .fv-grid--sp .fv-cell-e {
        grid-column: 4 / 5;
        grid-row: 1 / 2;
    }

    /* Row 2: F, M */
    .fv-grid--sp .fv-cell-f {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        aspect-ratio: 1 / 1.4;
    }

    .fv-grid--sp .fv-cell-m {
        grid-column: 2 / 5;
        grid-row: 2 / 3;
    }
}


/* ========================================
   Cell Positions (1440 x 470, gap=0)
   A〜N の14セル
======================================== */

/* A: x=0, y=0, w=240, h=120 */
.fv-cell-a {
    left: 0;
    top: 0;
    width: calc(240 / 1440 * 100%);
    height: calc(120 / 470 * 100%);
}

/* B: x=0, y=120, w=240, h=200 */
.fv-cell-b {
    left: 0;
    top: calc(120 / 470 * 100%);
    width: calc(240 / 1440 * 100%);
    height: calc(200 / 470 * 100%);
}

/* C: x=240, y=0, w=320, h=320 */
.fv-cell-c {
    left: calc(240 / 1440 * 100%);
    top: 0;
    width: calc(320 / 1440 * 100%);
    height: calc(320 / 470 * 100%);
}

/* D: x=560, y=0, w=160, h=280 */
.fv-cell-d {
    left: calc(560 / 1440 * 100%);
    top: 0;
    width: calc(160 / 1440 * 100%);
    height: calc(280 / 470 * 100%);
}

/* E: x=720, y=0, w=200, h=280 */
.fv-cell-e {
    left: calc(720 / 1440 * 100%);
    top: 0;
    width: calc(200 / 1440 * 100%);
    height: calc(280 / 470 * 100%);
}

/* F: x=920, y=0, w=160, h=220 */
.fv-cell-f {
    left: calc(920 / 1440 * 100%);
    top: 0;
    width: calc(160 / 1440 * 100%);
    height: calc(220 / 470 * 100%);
}

/* G: x=920, y=220, w=160, h=100 */
.fv-cell-g {
    left: calc(920 / 1440 * 100%);
    top: calc(220 / 470 * 100%);
    width: calc(160 / 1440 * 100%);
    height: calc(100 / 470 * 100%);
}

/* H: x=1080, y=0, w=200, h=160 */
.fv-cell-h {
    left: calc(1080 / 1440 * 100%);
    top: 0;
    width: calc(200 / 1440 * 100%);
    height: calc(160 / 470 * 100%);
}

/* I: x=1280, y=0, w=160, h=160 */
.fv-cell-i {
    left: calc(1280 / 1440 * 100%);
    top: 0;
    width: calc(160 / 1440 * 100%);
    height: calc(160 / 470 * 100%);
}

/* J: x=1080, y=160, w=360, h=310 */
.fv-cell-j {
    left: calc(1080 / 1440 * 100%);
    top: calc(160 / 470 * 100%);
    width: calc(360 / 1440 * 100%);
    height: calc(310 / 470 * 100%);
}

/* K: x=0, y=320, w=410, h=150 */
.fv-cell-k {
    left: 0;
    top: calc(320 / 470 * 100%);
    width: calc(410 / 1440 * 100%);
    height: calc(150 / 470 * 100%);
}

/* L: x=410, y=320, w=150, h=150 */
.fv-cell-l {
    left: calc(410 / 1440 * 100%);
    top: calc(320 / 470 * 100%);
    width: calc(150 / 1440 * 100%);
    height: calc(150 / 470 * 100%);
}

/* M: x=560, y=280, w=360, h=190 */
.fv-cell-m {
    left: calc(560 / 1440 * 100%);
    top: calc(280 / 470 * 100%);
    width: calc(360 / 1440 * 100%);
    height: calc(190 / 470 * 100%);
}

/* N: x=920, y=320, w=160, h=150 */
.fv-cell-n {
    left: calc(920 / 1440 * 100%);
    top: calc(320 / 470 * 100%);
    width: calc(160 / 1440 * 100%);
    height: calc(150 / 470 * 100%);
}

/* ========================================
   Slider Styles
======================================== */
.fv-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.fv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.8s ease;
    z-index: 0;
}

.fv-slide.active {
    transform: translateX(0);
    z-index: 2;
}

.fv-slide.slide-out {
    transform: translateX(0);
    z-index: 1;
}

.fv-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   Entry Button
======================================== */
.fv-entry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-size: clamp(14px, 1.8vw, 28px);
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease;
}

.fv-entry-btn:hover {
    background-color: #0052a3;
}

.fv-entry-text {
    margin-right: 10px;
}

.fv-entry-arrow {
    font-size: 1.2em;
}

/* ========================================
   Responsive (後で調整)
======================================== */
@media (max-width: 1024px) {

    /* Interview Single (タブレット) */
    .interview-hero-image {
        margin-left: -50px;
        width: calc(100% + 50px);
    }

    .interview-hero-inner {
        gap: 30px;
    }

    .interview-hero-comment p {
        font-size: 18px;
    }

    .other-members-section .interview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    /* モバイル用調整が必要な場合はここに追加 */
}

/* ========================================
   Page Template
======================================== */
.page-article {
    background-color: #fff;
}

.page-header {
    background-image: url('../images/page-header-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    margin-bottom: 0;
    position: relative;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    text-align: left;
}

/* 英語＋日本語スタイル */
.page-title-en {
    display: block;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #0171CC;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.page-title-ja {
    display: block;
    font-size: 25px;
    font-weight: 700;
    color: #0171CC;
    letter-spacing: 0.1em;
}

/* 日本語のみのスタイル */
.page-title-single {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #111111;
    line-height: 1.4;
}

.page-content-section {
    padding: 80px 0;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #111111;
}

.page-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111111;
    margin: 50px 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0171CC;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin: 40px 0 20px;
}

.page-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin: 30px 0 15px;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
}

.page-content a {
    color: #0171CC;
    text-decoration: underline;
}

.page-content a:hover {
    color: #0052A3;
}

.page-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.page-content table th,
.page-content table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.page-content table th {
    background-color: #F8F8F8;
    font-weight: 600;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    .page-header {
        padding: 60px 0;
    }

    .page-title-en {
        font-size: 48px;
        margin-bottom: 8px;
    }

    .page-title-ja {
        font-size: 20px;
    }

    .page-title-single {
        font-size: 32px;
    }

    .page-content-section {
        padding: 60px 0;
    }

    .page-content {
        font-size: 15px;
    }

    .page-content h2 {
        font-size: 24px;
        margin: 40px 0 20px;
    }

    .page-content h3 {
        font-size: 20px;
        margin: 30px 0 15px;
    }

    .page-content h4 {
        font-size: 18px;
        margin: 25px 0 12px;
    }
}

/* ========================================
   Requirements Page（募集要項）
======================================== */
.requirements-section {
    padding: 80px 0;
    background-color: #fff;
}

.requirements-section .container {
    max-width: 960px;
}

/* タブナビゲーション */
.requirements-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid #E0E0E0;
}

.requirements-tab {
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s, background-color 0.2s;
    white-space: nowrap;
}

.requirements-tab:hover {
    background-color: #F0F0F0;
}

.requirements-tab.is-active {
    color: #fff;
    font-weight: 700;
    background-color: #0171CC;
}

/* タブコンテンツ */
.requirements-tab-panel {
    display: none;
    padding: 50px 0 0;
}

.requirements-tab-panel.is-active {
    display: block;
}

/* タブ内の職種名見出し */
.requirements-job-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 0 0 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #0171CC;
}

/* 募集要項テーブル */
.requirements-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

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

.requirements-body table th,
.requirements-body table td {
    padding: 20px 24px;
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
    vertical-align: top;
    border: none;
}

.requirements-body table th {
    width: 180px;
    background-color: #F5F5F5;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
}

.requirements-body table td {
    color: #333;
}

.requirements-body ul,
.requirements-body ol {
    padding-left: 1.5em;
    margin: 8px 0;
}

.requirements-body li {
    margin-bottom: 4px;
}

/* 応募方法セクション */
.requirements-apply {
    margin-top: 80px;
    padding: 60px;
    background-color: #F5F5F5;
    border-radius: 4px;
}

.requirements-apply h2 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 0 0 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0171CC;
}

.requirements-apply h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 36px 0 16px;
}

.requirements-apply h3:first-of-type {
    margin-top: 0;
}

.requirements-apply p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 12px;
}

.requirements-apply a {
    color: #0171CC;
    text-decoration: underline;
}

.requirements-apply a:hover {
    color: #0052A3;
}

/* 応募方法内のバナーリンク */
/* 応募方法内リンク（外部リンクアイコン自動付与） */
.requirements-apply a[target="_blank"]::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-bottom: 6px;

    margin-left: 5px;
    background: url('../images/icon-external-link2.svg') no-repeat center / contain;
    vertical-align: middle;
}

/* Requirements レスポンシブ */
@media (max-width: 767px) {
    .requirements-section {
        padding: 50px 0;
    }

    .requirements-tab {
        padding: 12px 18px;
        font-size: 14px;
    }

    .requirements-tab-panel {
        padding: 30px 0 0;
    }

    .requirements-job-title {
        font-size: 20px;
        margin-bottom: 24px;
        padding-bottom: 12px;
    }

    .requirements-body table th,
    .requirements-body table td {
        display: block;
        width: 100%;
        padding: 12px 16px;
    }

    .requirements-body table th {
        padding-bottom: 4px;
    }

    .requirements-body table td {
        padding-top: 4px;
        padding-bottom: 20px;
    }

    .requirements-apply {
        margin-top: 50px;
        padding: 30px 20px;
    }

    .requirements-apply h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .requirements-apply a[target="_blank"]::after {
        width: 21px;
        height: 21px;
        margin-bottom: 5px;

    }
}

/* ========================================
   Contact Form 7 Styles - Horizontal Layout
======================================== */
.wpcf7 {
    max-width: 900px;
    margin: 0 auto;
}

/* フォーム説明文 */
.form-description {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background-color: #F8F8F8;
    border-radius: 8px;
}

.form-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #111111;
    margin: 0;
}

/* フォームセクション - 横並び */
.form-section {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 0;
    padding: 18px 0;
    border-bottom: 1px solid #E5E7EB;
}

/* お問い合わせ内容は上揃え + ボーダーなし */
.form-section-full {
    align-items: start;
    border-bottom: none;
}

.form-section-full .form-label {
    padding-top: 12px;
}

.form-label {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    text-align: right;
    padding-right: 10px;
}

.form-input {
    flex: 1;
}

.required {
    display: inline-block;
    background-color: #DC3545;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 3px;
    margin-left: 6px;
}

.optional {
    display: inline-block;
    background-color: #6C757D;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 3px;
    margin-left: 6px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #0171CC;
    box-shadow: 0 0 0 3px rgba(1, 113, 204, 0.1);
}

.wpcf7 textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.wpcf7 select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

/* ラジオボタン */
.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7 .wpcf7-radio {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: center;
}

.wpcf7 .wpcf7-radio input[type="radio"] {
    margin: 0 6px 0 0;
    width: auto;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item-label {
    font-size: 15px;
    font-weight: normal;
    color: #111111;
    cursor: pointer;
}

/* 送信ボタン */
.form-submit {
    text-align: center;
    margin-top: 30px;
}

.wpcf7 input[type="submit"] {
    background-color: #0171CC;
    color: #fff;
    border: none;
    padding: 18px 60px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #0052A3;
    transform: translateY(-2px);
}

.wpcf7 input[type="submit"]:active {
    transform: translateY(0);
}

/* バリデーションメッセージ */
.wpcf7-not-valid-tip {
    font-size: 13px;
    color: #DC3545;
    margin-top: 5px;
    display: block;
}

.wpcf7-response-output {
    margin: 30px 0 0;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 15px;
    text-align: center;
}

.wpcf7-mail-sent-ok {
    background-color: #D4EDDA;
    border: 1px solid #C3E6CB;
    color: #155724;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
    background-color: #F8D7DA;
    border: 1px solid #F5C6CB;
    color: #721C24;
}

.wpcf7-spam-blocked {
    background-color: #FFF3CD;
    border: 1px solid #FFEAA7;
    color: #856404;
}

/* 送信中のスピナー */
.wpcf7 .ajax-loader {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0171CC;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* レスポンシブ対応 */
@media (max-width: 1023px) {
    .form-section {
        grid-template-columns: 180px 1fr;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .wpcf7 {
        padding: 0 15px;
    }

    .form-description {
        margin-bottom: 40px;
        padding: 20px;
    }

    .form-description p {
        font-size: 14px;
    }

    /* モバイルでは縦並びに */
    .form-section {
        grid-template-columns: 1fr;
        gap: 8px;
        align-items: start;
        margin-bottom: 0;
        padding: 15px 0;
    }

    .form-label {
        padding-right: 0;
        padding-top: 0;
        margin-bottom: 5px;
        font-size: 14px;
        justify-content: flex-start;
        text-align: left;
    }

    .form-section-full .form-label {
        padding-top: 0;
    }

    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 input[type="date"],
    .wpcf7 select,
    .wpcf7 textarea {
        font-size: 16px;
        /* iOSのズーム防止 */
        padding: 10px 12px;
    }

    .wpcf7 textarea {
        min-height: 120px;
    }

    .wpcf7 .wpcf7-radio {
        flex-direction: column;
        gap: 10px;
    }

    .form-submit {
        margin-top: 25px;
    }

    .wpcf7 input[type="submit"] {
        width: 100%;
        padding: 15px 30px;
        font-size: 15px;
    }
}