body, p, td, th, li, 
h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Poppins", "Kosugi Maru", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif !important;
}

/* ========================================================
   recruit.css
======================================================== */
.hero-bg-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* ヒーローセクション */
.recruit-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* padding-top を削除 */
}

.recruit-swiper {
    width: 100%;
}

.recruit-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.recruit-swiper .swiper-slide {
    width: 100%;
}

.recruit-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* スライド上のテキスト */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 90%;
    max-width: 600px;
    pointer-events: none;
}

/* メッセージセクション */
.recruit-message {
    padding-top: 80px;
}

.message-title {
    color: #c9252b;
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 40px;
}

.message-content p {
    line-height: 2;
    margin-bottom: 30px;
    font-weight: 500;
}

.message-content p:last-child {
    margin-bottom: 0;
}

/* 右側固定ボタン */
.side-entry-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translate(calc(100% - 30px), -50%);
    z-index: 100;
    width: 45px;
}


/* PC用設定 */
@media (min-width: 768px) {
    .recruit-swiper .swiper-slide {
        width: 500px;
    }
    .interview-swiper .swiper-slide {
        width: 600px;
    }

    .recruit-swiper .swiper-slide img {
        height: auto;
        width: 500px;
    }

    .side-entry-btn {
	    transform: translate(calc(100% - 50px), -50%);
        width: 70px;
    }
}

.recruit-interview {
    padding: 80px 0;
    background-color: #fff;
}

.interview-swiper {
    padding: 20px 0 60px;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.interview-item {
    display: flex;
    text-decoration: none;
    color: inherit;
    background-color: #ebebeb;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    gap: 15px;
}

.item-left {
    width: 45px;
    flex-shrink: 0;
}

.item-left img {
    width: 100%;
    height: auto;
}

.item-right {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-img {
    width: 100%;
    margin-bottom: 20px;
}

.item-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.item-text {
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.interview-nav {
    width: 100px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
}

.interview-nav .swiper-button-prev,
.interview-nav .swiper-button-next {
    position: static;
    width: 30px;
    height: 20px;
}

.interview-nav .swiper-button-prev::after,
.interview-nav .swiper-button-next::after {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

@media (min-width: 768px) {
    .interview-item {
        padding: 40px;
        gap: 30px;
    }
    
    .item-left {
        width: 75px;
    }

    .item-text {
        font-size: 1rem;
    }
}


.recruit-what {
    background-color: #c9252b;
    padding: 60px 0;
}

.max-width-md {
    max-width: 900px;
}

.what-link-box {
    display: flex;
    text-decoration: none;
    color: #fff;
}

.what-link-box a:hover {
    opacity: 0.9;
    color: #fff;
}

.what-left {
    flex-shrink: 0;
    margin-right: 20px;
    display: flex;
    align-items: flex-start;
}

.what-title-img {
    width: auto;
    height: 400px;
    object-fit: contain;
    object-position: top;
}

.what-right {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.what-images {
    position: relative;
    width: 100%;
}

.what-img-main {
    width: 85%;
    height: auto;
    display: block;
}

.what-img-sub {
    position: absolute;
    width: 45%;
    right: 0;
    bottom: -20%;
    height: auto;
}

.what-text {
    font-size: 0.95rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .recruit-what {
        padding: 80px 0;
        position: relative;
    }

    .what-left {
        width: 75px;
        margin-right: 40px;
    }

    .what-title-img {
        width: 100%;
        height: auto;
    }

    .what-img-main {
        width: 72%;
    }

    .what-img-sub {
        width: 35%;
        bottom: -35%;
    }

    .what-text {
    	position: absolute;
        font-size: 1rem;
        bottom: 0px;
    }
}


.recruit-data {
    padding: 60px 0;
    background-color: #fff;
}

.max-width-lg {
    max-width: 1000px;
}

.data-inner {
    display: flex;
    flex-direction: row;
    align-items: top;
    gap: 30px;
}

.data-heading {
    width: 60px;
    flex-shrink: 0;
}

.data-heading img {
    width: 100%;
    height: auto;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    position: relative;
}

.data-bubble {
    display: none;
    grid-column: 1 / -1; /* グリッド全体に広げる */
    background-color: #25438F;
    color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    margin-top: 5px;
    margin-bottom: 10px;
    position: relative;
    animation: bubbleFadeIn 0.3s ease-out;
}

.bubble-arrow {
    position: absolute;
    top: -14px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 15px solid #25438F;
    transform: translateX(-50%);
}

.bubble-content {
    font-size: 0.95rem;
    line-height: 1.8;
}

@keyframes bubbleFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
    .data-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}
.data-item {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition: opacity 0.3s;
}

.data-item:hover {
    opacity: 0.8;
}

.data-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
	.data-heading {
        width: 75px;
    }

    .recruit-data {
        padding: 80px 0;
    }

    .data-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 50px;
    }

    .data-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}


.recruit-ceo-message {
    padding: 60px 0;
    background-color: #f2f2f2;
}

.ceo-message-inner {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.ceo-heading {
    width: 60px;
    flex-shrink: 0;
}

.ceo-heading img {
    width: 100%;
    height: auto;
}

.ceo-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-grow: 1;
}

.ceo-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.ceo-text p:last-child {
    margin-bottom: 0;
}

.ceo-image-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ceo-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

.ceo-caption {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    gap: 2em;
    font-size: 1rem;
    font-weight: bold;
}

@media (min-width: 768px) {
    .recruit-ceo-message {
        padding: 80px 0;
    }

    .ceo-message-inner {
        flex-direction: row;
        gap: 50px;
    }

    .ceo-heading {
        width: 80px;
    }

    .ceo-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 50px;
    }

    .ceo-text {
        flex: 1;
    }

    .ceo-text p {
        font-size: 1rem;
    }

    .ceo-image-area {
        width: 35%;
        flex-shrink: 0;
    }
}

.recruit-openjob {
    padding: 60px 0;
    background-color: #fff;
}

.openjob-inner {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.openjob-heading {
    width: 60px;
    flex-shrink: 0;
}

.openjob-heading img {
    width: 100%;
    height: auto;
}

.openjob-content {
    flex-grow: 1;
    width: 100%;
}

.jobOfferTable {
    width: 100%;
    border-collapse: collapse;
}

.jobOfferTable tr {
    border-bottom: 1px solid #ccc;
}

.jobOfferTable tr:first-child {
    border-top: 1px solid #ccc;
}

.jobOfferTable th,
.jobOfferTable td {
    padding: 20px 0;
    text-align: left;
    vertical-align: top;
    font-size: 0.95rem;
    line-height: 1.8;
}

.jobOfferTable th {
    font-weight: bold;
    letter-spacing: 0.1em;
}

.jobOfferTable td p {
    margin-bottom: 15px;
}

.jobOfferTable td p:last-child {
    margin-bottom: 0;
}

.jobOfferTable td h4 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.jobOfferTable td ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.jobOfferTable td ul:last-child {
    margin-bottom: 0;
}

/* リストマーカーをCSSで付与 */
.jobOfferTable td ul li {
    position: relative;
    padding-left: 1em;
}

.jobOfferTable td ul li::before {
    content: "・";
    position: absolute;
    left: 0;
}

@media (max-width: 767px) {
    .jobOfferTable th,
    .jobOfferTable td {
        display: block;
        width: 100%;
    }
    
    .jobOfferTable th {
        padding-bottom: 5px;
    }
    
    .jobOfferTable td {
        padding-top: 0;
    }
}

@media (min-width: 768px) {
    .recruit-openjob {
        padding: 80px 0;
    }

    .openjob-inner {
        flex-direction: row;
        gap: 50px;
    }

    .openjob-heading {
        width: 80px;
    }

    .jobOfferTable th {
        width: 25%;
        padding: 30px 20px 30px 0;
    }

    .jobOfferTable td {
        padding: 30px 0;
        font-size: 1rem;
    }
}

.recruit-entry-container {
    text-align: center;
    padding: 40px 20px 80px;
    background-color: #fff;
}

.recruit-entry-container a {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    transition: opacity 0.3s;
}

.recruit-entry-container a:hover {
    opacity: 0.8;
}

.recruit-entry-container img {
    width: 100%;
    height: auto;
    display: block;
}




/* インタビュー詳細共通 */
/* ========================================================
   インタビュー詳細ページ共通スタイル (01〜04)
======================================================== */
.iv-detail-page {
    background-color: #fff;
    padding-bottom: 80px;
    overflow-x: hidden;
}

/* 全体コンテナ (1140px固定用) */
.iv-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ヒーローセクション */
.iv-hero-section {
    padding: 40px 0;
}

.iv-hero-box {
    position: relative;
    background-color: #ebecec;
    border-radius: 0 20px 20px 0;
    padding: 30px 20px 30px 0;
    display: flex;
    gap: 15px;
    box-sizing: border-box;
}

.iv-hero-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 100vw;
    background-color: #ebecec;
}

.iv-hero-head {
    width: 50px;
    flex-shrink: 0;
}

.iv-hero-head img {
    width: 100%;
    height: auto;
}

.iv-hero-content {
    flex-grow: 1;
}

.iv-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.iv-hero-lead {
    margin-top: 20px;
    font-weight: bold;
    line-height: 1.8;
}

/* 導入文・メンバー紹介 */
.iv-intro-section {
    padding-top: 20px;
    padding-bottom: 60px;
}

.iv-intro-text {
    color: #1e508e;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 40px;
}

.iv-member-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.iv-member {
    display: flex;
    align-items: center;
    gap: 15px;
}

.iv-member-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.iv-member-name {
    font-weight: bold;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Q&Aセクション */
.iv-qna-section {
    padding-bottom: 60px;
}

.iv-q-title {
    color: #1e508e;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 40px;
    margin-top: 60px;
}

.iv-q-title:first-child {
    margin-top: 0;
}

.iv-a-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.iv-a-item {
    display: flex;
    gap: 15px;
}

.iv-a-icon {
    width: 60px;
    flex-shrink: 0;
}

.iv-a-icon img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.iv-a-content {
    flex-grow: 1;
}

.iv-a-name {
    font-weight: bold;
    margin-bottom: 8px;
}

.iv-a-text {
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ========================================================
   PC用レイアウト設定（1140pxデザイン指定の反映）
======================================================== */
@media (min-width: 768px) {
    .iv-hero-section {
        padding: 40px 0 0 0; 
    }

    /* 全幅1140pxの中で 80(見出し左) + 80(見出し) + 65(余白) + 580(画像) + 100(画像右) = 905px */
    .iv-hero-box {
        width: 905px;
        padding: 55px 100px 55px 80px; 
        gap: 65px;
        border-radius: 0 40px 40px 0;
    }

    .iv-hero-head {
        width: 100px;
    }

    .iv-hero-img {
        width: 580px;
        max-width: none;
    }

    .iv-hero-lead {
        margin-top: 80px;
        font-size: 1.1em;
    }

    /* 画像下の要素を見出しの開始位置（左から80px）と揃える */
    .iv-content-align {
        padding-left: 80px;
    }

    .iv-intro-section {
        padding-top: 70px;
        padding-bottom: 80px;
    }

    .iv-intro-text {
        font-size: 1.2em;
        margin-bottom: 60px;
    }

    .iv-member {
        gap: 20px;
    }

    .iv-member-icon {
        width: 70px;
        height: 70px;
    }

    .iv-member-name {
        font-size: 1rem;
    }

    .iv-q-title {
        font-size: 25px;
    }

    .iv-a-item {
        gap: 25px;
    }

    .iv-a-icon {
        width: 70px;
    }

    .iv-a-text {
        font-size: 1rem;
    }
}

/* ========================================================
   インターバル画像ブロック
======================================================== */
.iv-interval-block {
    margin: 60px 0;
}

.iv-interval-inner {
    position: relative;
}

.iv-interval-img-box {
    position: relative;
    z-index: 2;
    width: 90%;
}

.iv-interval-img-box img {
    width: 100%;
    height: auto;
    display: block;
}

.iv-interval-content {
    position: relative;
    z-index: 1;
    background-color: #ebecec;
    margin-top: -30px;
    padding: 50px 20px 20px 30px;
    border-radius: 20px 0 0 20px;
    margin-right: -20px;
    margin-left: 30px;
}

.iv-interval-content p {
    font-weight: bold;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}
@media (min-width: 768px) {
	.iv-interval-content {
		margin-left: 130px;
		padding-left: 60px;
	}
}

@media (min-width: 1140px) {
    .iv-interval-block {
        margin: 100px 0;
    }

    .iv-interval-inner {
        height: 447px;
    }

    .iv-interval-img-box {
        position: absolute;
        top: 0;
        left: 85px;
        width: 545px;
    }

    .iv-interval-content {
        position: absolute;
        top: 62px;
        left: 280px;
        right: -100vw;
        height: 385px;
        margin: 0;
        padding: 0;
        border-radius: 20px 0 0 20px;
    }

    .iv-interval-content p {
        position: absolute;
        bottom: 85px;
        left: 400px;
        font-size: 1.1em;
        margin: 0;
    }
}