@charset "UTF-8";

/* ==========================================================================
   Special Job Page Styles (PC)
   ========================================================================== */

/* Header styles handled in common.css */

.container {
    max-width: 1080px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Special Hero Section
   -------------------------------------------------------------------------- */
.special-hero {
    position: relative;
    width: 100%;
    /* Height based on Figma but needs to accommodate content. 
       Figma h-[527px] includes header area (approx 120px) + content.
       Since our header is overlay/transparent, we keep the height. */
    min-height: 527px;
    background-color: #E1F0FA; /* Base color */
    display: flex;
    justify-content: center;
    /* Allow image to overlap next section */
    margin-bottom: 120px; /* Space for the overlapping image */
    box-sizing: border-box;
}

.special-hero-inner {
    position: relative;
    width: 100%;
    max-width: 1440px; /* Max width to match design scale */
    margin: 0 auto;
    display: flex;
    justify-content: flex-start; /* Align text to left */
}

/* Background Image Positioned Absolutely */
.special-hero-bg {
    position: absolute;
    top: 60px; /* Adjusted relative to content start */
    right: 0; /* Align to right edge of container */
    width: 50%; /* Flexible width */
    max-width: 552px;
    height: 556px;
    border-radius: 12px;
    z-index: 1;
    /* In Figma: left-[916px] on 1440px. 916/1440 = 63.6% */
    right: 0; /* Approximate right positioning */
}

.special-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.special-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1080px; /* Content grid width */
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-text-block {
    padding: 60px 0 80px 0;
    width: 60%; /* Leave space for image */
    min-width: 610px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 10;
    align-items: flex-start; /* Align text left */
}

.hero-label {
    font-size: 16px;
    font-weight: 700;
    color: #002D6F;
    text-align: left;
}

.hero-line {
    width: 61px;
    height: 2px;
    background-color: #002D6F;
    margin: 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.375;
    color: #002D6F;
    text-shadow: none; /* Removed text shadow */
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    color: #002D6F;
    text-shadow: none;
}

/* --------------------------------------------------------------------------
   Article Content
   -------------------------------------------------------------------------- */
.article-container {
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    gap: 120px; /* Based on Figma gap-[120px] */
}

.article-section {
    width: 100%;
}

.article-heading-main,
.section-title-large {
    font-size: 36px;
    font-weight: 700;
    color: #002D6F;
    margin-bottom: 24px;
    font-family: "Hiragino Sans", sans-serif;
    font-feature-settings: 'halt' on;
    line-height: 1.2;
}



.intro-text-block p {
    font-size: 16px;
    font-weight: 400;
    color: #002D6F;
    line-height: 1.75;
}


/* Feature Sections (Image + Text) */
.feature-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.feature-content.image-left {
    flex-direction: row; /* Image Left */
}

.feature-content.image-right {
    flex-direction: row-reverse; /* Text Left, Image Right */
}

/* PC版では feature-title（スマホ用）を非表示 */
.feature-content.image-left .feature-title,
.feature-content.image-right .feature-title {
    display: none;
}

/* PC版では feature-title-pc（PC用）を表示 */
.feature-title-pc {
    display: none; /* デフォルトで非表示 */
}

.feature-content.image-left .feature-title-pc,
.feature-content.image-right .feature-title-pc {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 24px;
    font-weight: 700;
    color: #303030;
    margin: 0 0 0 0;
}

.feature-content.image-left .feature-text,
.feature-content.image-right .feature-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.feature-image {
    width: 360px;
    height: 373px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.feature-text {
    display: flex;
    flex-direction: column;
}

/* Icon dot styling */
.title-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-desc p {
    font-size: 16px;
    line-height: 1.75;
    color: #444A55;
    margin: 1em 0 0 0;
}


.feature-list {
    list-style-type: disc;
    padding-left: 24px;
    margin: 16px 0;
}

.feature-list li {
    margin-bottom: 8px;
}

/* Documents Section */
.docs-table-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-color: #CDD8DE; /* Border color for gaps */
    border: 1px solid #CDD8DE;
    border-radius: 12px;
    overflow: hidden;
}

.docs-table-row {
    display: flex;
    background-color: #FFF;
    flex-direction: row; 
}

.docs-table-th {
    width: 230px;
    background-color: #E1F0FA;
    padding: 24px;
    font-size: 16px;
    font-weight: 600;
    color: #002D6F;
    display: flex;
    align-items: flex-start;
    border-right: 1px solid #CDD8DE;
    flex-shrink: 0;
    font-feature-settings: "palt";
}

.docs-table-td {
    flex: 1;
    padding: 24px;
    font-size: 16px;
    line-height: 1.75;
    color: #303030;
    background-color: #FFF;
}

/* Skills Section */
.skills-container {
    border: 1px solid #CDD8DE;
    border-radius: 12px;
    overflow: hidden;
    background-color: #CDD8DE; /* Border color for gaps between cards */
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.skill-item {
    background-color: #FFF;
    display: flex;
    flex-direction: column; /* Vertical card layout */
    padding: 24px;
    gap: 16px;
}

.skill-title {
    font-size: 24px;
    font-weight: 600;
    color: #303030;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
}

.skill-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.skill-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #444A55;
    margin-bottom: 0;
}

.skill-note {
    background-color: #F4F8FA;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.note-title {
    font-size: 16px;
    font-weight: 600;
    color: #002D6F;
    margin-bottom: 0;
}

.note-content {
    font-size: 16px;
    line-height: 1.75;
    color: #303030;
}

.note-list {
    list-style: disc;
    padding-left: 24px;
}

/* Experience Section */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-color: #CDD8DE;
    border: 1px solid #CDD8DE;
    border-radius: 12px;
    overflow: hidden;
}

.exp-item {
    display: flex;
    background-color: #FFF;
    flex-direction: row;
}

.exp-header {
    width: 240px;
    background-color: #E1F0FA;
    padding: 24px;
    font-size: 16px;
    font-weight: 600;
    color: #002D6F;
    display: flex;
    align-items: center;
    border-right: 1px solid #CDD8DE;
}

.exp-body {
    flex: 1;
    padding: 24px;
    font-size: 16px;
    line-height: 1.75;
    color: #444A55;
}

/* Interviews Section */
.interviews-grid {
    display: flex;
    gap: 40px;
}

.interview-card {
    flex: 1;
    background-color: #E1F0FA;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.interview-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.interview-img {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Mask shape */
    overflow: hidden;
}

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

.interview-title {
    font-size: 24px;
    font-weight: 600;
    color: #303030;
}

.interview-body {
    font-size: 16px;
    line-height: 2.0;
    color: #444A55;
}

/* Featured Other Section */
.featured-other-section {
    background-color: #E1F0FA;
    padding: 64px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.featured-other-box {
    width: 100%;
    max-width: 1080px; /* Match content max-width */
    padding: 0 40px; /* Match container padding */
    display: flex;
    flex-direction: column;
    gap: 64px;
    box-sizing: border-box; /* Ensure padding is included */
}

.featured-header {
    background-color: #FFF;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    width: 580px; /* Fixed width as requested */
    box-sizing: border-box;
}

.featured-title {
    font-size: 20px;
    font-weight: 600;
    color: #303030;
    line-height: 31px;
    /*white-space: nowrap; !* Prevent unwanted wrapping *!*/ /*Comment Out by Sunity 202501*/
}

.featured-logo {
    width: 160px;
    height: 66px;
    flex-shrink: 0;
}

.featured-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.featured-tags-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featured-label {
    font-size: 16px;
    font-weight: 600;
    color: #303030;
}

.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-item {
    background-color: #FFF;
    border-radius: 12px;
    padding: 4px 16px;
    font-size: 20px;
    font-weight: 600;
    color: #002D6F;
}

/* --------------------------------------------------------------------------
   Contact Section (Moved to common.css)
   -------------------------------------------------------------------------- */

