/* ==========================================================================
   SUB PAGES STYLES - 下層ページ共通
   ========================================================================== */

/* Page Base */
.about-page,
.service-page,
.news-page,
.news-detail-page,
.recruit-page,
.contact-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Content */
.main-content {
    flex: 1;
}

/* ==========================================================================
   PAGE HEADER - 下層ページ共通
   ========================================================================== */

.page-header {
    padding: 60px 30px;
    background-image: url(../images/use_hed.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}



.page-header-bg {
    position: absolute;
    width: 105.72%;
    height: 319.88%;
    left: -0.29%;
    top: -41.72%;
    object-fit: cover;
    max-width: none;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: #939393;
    opacity: 0.7;
}

.breadcrumbs {
    font-size: 0.875rem;
    color: #444444;
    z-index: 1;
    display: flex;
    gap: 8px;
    align-items: center;
}
.breadcrumbs a {
    color: #333;
}

.breadcrumb-item {
    font-weight: normal;
}

.breadcrumb-divider {
    margin: 0 4px;
}

.page-title {
    font-family: "Jost", sans-serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
    color: #444444;
    z-index: 1;
    margin: 0;
}

/* ==========================================================================
   COMMON SECTION STYLES - 下層ページ共通
   ========================================================================== */
.section-title {
  font-family: "Jost", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  color: #444444;
  margin: 0;
}
.section-title span {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: .5em;
  display: block;
	margin-bottom: .3em;
}
/* Section with padding */
.section-padded {
    padding: 96px 0;
}

.section-padded-sm {
    padding: 60px 0;
}

.section-padded-lg {
    padding: 120px 0;
}

/* Background sections */
.section-background {
    background-color: #ededed;
}

/* Text sections */
.text-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-section h2 {
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.4;
    color: #444444;
    margin: 0;
}

.text-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444444;
    margin: 0;
}

/* Two column layout */
.two-column {
    display: flex;
    gap: 32px;
    align-items: center;
}

.two-column-reverse {
    flex-direction: row-reverse;
}

.column {
    flex: 1;
}

.column-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Image placeholder styles */
.image-placeholder {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    overflow: hidden;
    border-radius: 8px;
}

.image-placeholder-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.now-printing-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.now-printing-text {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    font-weight: 300;
    color: #999;
    text-align: center;
}

/* ==========================================================================
   RESPONSIVE DESIGN - 下層ページ共通
   ========================================================================== */

@media (max-width: 1200px) {
    .page-title {
        font-size: 3rem;
        left: 50px;
    }
    
    .breadcrumbs {
        right: 50px;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 150px;
    }
    
    .page-title {
        font-size: 2rem;
        left: 20px;
        top: 30%;
    }
    
    .breadcrumbs {
        right: 20px;
        top: 70%;
        font-size: 0.75rem;
    }
    
    .section-padded {
        padding: 60px 0;
    }
    
    .section-padded-sm {
        padding: 40px 0;
    }
    
    .section-padded-lg {
        padding: 80px 0;
    }
    
    .two-column,
    .two-column-reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .text-section h2 {
        font-size: 1.25rem;
    }
    
    .now-printing-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
    font-size: 10vw;
}
    .page-header {
  padding: 60px 0px;
}
    .text-section h2 {
        font-size: 1.125rem;
        line-height: 1.6;
    }
    
    .now-printing-text {
        font-size: 1.25rem;
    }
}