/* ========================================
   会社案内ページ専用スタイル
======================================== */
/* トップページのpadding-topを無効化 */
.main-content {
    padding-top: 56px !important;
}

@media (min-width: 1080px) {
    .main-content {
        padding-top: 80px !important;
    }

}

/* ========================================
   ページヒーローセクション
======================================== */
.page-hero {
    width: 100%;
    height: clamp(280px, 50vw, 400px);
    position: relative;
    background: url('../images/top-image2.jpg');
    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-hero__content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero__title {
    font-family: var(--font-ja);
    font-size: clamp(2rem, 6vw, 3.75rem);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: var(--heading-letter-spacing);
    line-height: var(--heading-line-height);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1080px) {
    .page-hero {
        height: auto;
        aspect-ratio: 16 / 6;
        min-height: 320px;
        max-height: 560px;
    }
    
    .page-hero__content {
        padding: 0 var(--padding-pc);
    }
}

/* ========================================
   共通セクションスタイル
======================================== */
.company-section {
    width: 100%;
    padding: var(--section-padding-sp);
    position: relative;
}

.company-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .company-section {
        padding: var(--section-padding-pc);
        margin-top: 64px;
    }
}

/* ========================================
   セクションヘッダー
======================================== */
/* common.cssの.section-headerを使用 */

/* ========================================
   経営理念セクション
======================================== */

.philosophy-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.philosophy-layout__image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.philosophy-layout__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-layout__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.philosophy-content__heading {
    font-family: var(--font-ja);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.6;
    letter-spacing: var(--body-letter-spacing);
}

.philosophy-content__text {
    font-family: var(--font-ja);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 400;
    color: var(--color-text);
    line-height: var(--body-line-height-sp);
    letter-spacing: var(--body-letter-spacing);
}

@media (min-width: 960px) {
    .philosophy-layout {
        flex-direction: row;
        gap: 48px;
        align-items: flex-start;
    }
    
    .philosophy-layout__image-wrapper {
        width: 45%;
        flex-shrink: 0;
        aspect-ratio: 4 / 3;
    }
    
    .philosophy-layout__content {
        flex: 1;
        gap: 24px;
    }
    
    .philosophy-content__heading {
        font-size: 28px;
    }
    
    .philosophy-content__text {
        line-height: var(--body-line-height-pc);
    }
}

/* ========================================
   代表挨拶セクション
======================================== */

.company-section--greeting {
    padding: var(--section-padding-sp) ;
}

.greeting-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.greeting-layout__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* テキストエリア */
.greeting-content__text {
    font-family: var(--font-ja);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    font-weight: 500;
    color: var(--color-text);
    line-height: var(--body-line-height-sp);
    letter-spacing: var(--body-letter-spacing);
    position: relative;
    padding: 0;
}

/* 左上の角のアクセント（L字型の枠線） */
.greeting-content__text::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    width: 60px;
    height: 60px;
    border-top: 2px solid rgba(155, 123, 180, 0.4);
    border-left: 2px solid rgba(155, 123, 180, 0.4);
}

.greeting-content__signature {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-weight: 500;
    margin-top: 16px;
}

.greeting-content__position {
    font-family: var(--font-ja);
    font-size: 16px;
    color: var(--color-text);
    text-align: center;
}

.greeting-content__name {
    font-family: var(--font-ja);
    font-size: 28px;
    color: var(--color-text);
    text-align: center;
}

/* 画像エリア - SP: 背景画像として配置 */
.greeting-layout__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.greeting-layout__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.1;
}

/* PC用スタイル */
@media (min-width: 768px) {
    .company-section--greeting {
        padding: var(--section-padding-pc) ;
    }
    
    /* PC: 中央配置レイアウト */
    .greeting-layout {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        gap: 0;
    }
    
    /* テキスト+署名エリアを中央配置 */
    .greeting-layout__content {
        gap: 20px;
        width: 100%;
        position: relative;
        z-index: 1;
    }
    
    .greeting-content__text {
        line-height: var(--body-line-height-pc);
        font-weight: 500;
    }

    /* 左上の角のアクセント（L字型の枠線） */
    .greeting-content__text::before {
        content: "";
        position: absolute;
        top: -16px;
        left: -16px;
        width: 60px;
        height: 60px;
        border-top: 3px solid rgba(155, 123, 180, 0.4);
        border-left: 3px solid rgba(155, 123, 180, 0.4);
    }
    
    .greeting-content__signature {
        gap: 16px;
        margin-top: 32px;
    }
    
    .greeting-content__position {
        font-size: 20px;
    }
    
    .greeting-content__name {
        font-size: 32px;
    }
    
    /* 右上: ロゴを絶対位置で配置 */
    .greeting-layout__image-wrapper {
        position: absolute;
        top: -30px;
        right: -30px;
        left: auto;
        width: 150px;
        height: auto;
        overflow: visible;
        z-index: -1;
    }
    
    .greeting-layout__image {
        width: 100%;
        height: auto;
        object-fit: contain;
        opacity: 0.2;
    }
}

/* ========================================
   会社概要セクション
======================================== */
.company-section--overview {
    padding: var(--section-padding-sp);
}

.overview-company {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 400px;
}

.overview-company__image {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-map__note {
    font-size: 12px;
    color: #999;
}

/* ========================================
   会社情報テーブル (info_table) スタイル
======================================== */

.info_table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    /* テーブル全体の装飾リセット */
    border-spacing: 0;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.info_table th,
.info_table td {
    padding: 0; /* paddingは個別に設定 */
    border: none;
    vertical-align: top; /* 内容が複数行になった場合の上揃え */
    line-height: var(--body-line-height-sp);
}

.info_table tr {
    /* 行の下線のみFlexbox版から流用 */
    border: 1px solid #f5f5f5;
    border-left: none;
    border-right: none;
}

/* --------------------
   ラベル (<th>) スタイル - 左側の背景色付きエリア
-------------------- */
.info_table th {
    /* ★修正: 背景色と中央配置、モバイル時の幅設定 */
    background: linear-gradient(90deg, #C9A7D8 0%, #A581B8 100%);
    color: var(--color-white);
    font-weight: 500;
    letter-spacing: 0.08em;
    
    /* モバイル時の横幅とパディング */
    width: 30%;
    padding: 12px 10px;
    text-align: center;
    
    /* 縦方向の中央揃えを実現 */
    display: table-cell; 
    vertical-align: middle; 
}

/* --------------------
   値 (<td>) スタイル - 右側の内容エリア
-------------------- */
.info_table td {
    color: var(--color-text);
    font-weight: 400;
    
    /* モバイル時のパディング */
    padding: 12px 24px 12px 12px;
    width: auto; /* 残り幅を自動で占める */
    border-left: 1px solid #f5f5f5;
}

/* <td>内のリストやpタグの調整 */
.info_table td ul,
.info_table td p {
    margin: 0;
    padding: 0;
    list-style: none; /* リストのスタイルをリセット */
}

/* --- PC対応 (768px以上) --- */
@media (min-width: 768px) {
    .info_table {
        margin-top: 32px;
    }
    .info_table tr {
        min-height: 80px; /* 行の最小高さを設定 */
    }

    /* ラベル (<th>) のPC時スタイル */
    .info_table th {
        width: 23%; /* PCでのラベル幅を広く */
        padding: 24px 16px; /* 縦パディングを増やす */
    }

    /* 値 (<td>) のPC時スタイル */
    .info_table td {
        padding: 24px 24px 24px 32px; /* パディングを調整 */
    }
}

/* ========================================
   PC対応 (768px以上)
======================================== */
@media (min-width: 768px) {
    .company-section--overview {
        padding: var(--section-padding-pc) var(--section-padding-pc);
    }

    .overview-company {
        height: 400px;
    }
}

/* ========================================
   会社沿革セクション
======================================== */
.company-section--history {
    padding: var(--section-padding-sp);
    position: relative;
}

.company-section--history .company-section__inner {
    z-index: 1;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

/* 背景ロゴ */
.history-list::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 400px;
    height: 100%;
    aspect-ratio: 1 / 1;
    background-image: url('../images/genki-logo2.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.history-list__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 2px solid;
    border-image: linear-gradient(
        90deg,
        rgba(155, 123, 180, 0.6) 0%,
        rgba(155, 123, 180, 0.3) 50%,
        rgba(155, 123, 180, 0.1) 100%
    ) 1;
}

.history-list__date {
    font-family: var(--font-ja);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.05em;
}

.history-list__content {
    font-family: var(--font-ja);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 400;
    color: var(--color-text);
    line-height: var(--body-line-height-sp);
}

@media (min-width: 768px) {

    .company-section--history {
        padding: var(--section-padding-pc) var(--section-padding-pc);
    }

    .history-list {
        gap: 32px;
    }
    
    .history-list__item {
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
        padding-bottom: 20px;
    }
    
    .history-list__date {
        width: 160px;
        flex-shrink: 0;
        font-size: 1.1rem;
    }
    
    .history-list__content {
        flex: 1;
        line-height: var(--body-line-height-pc);
    }
}

/* ========================================
   アクセスセクション
======================================== */
.company-section--access {
    padding: var(--section-padding-sp);
}

.access-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.access-content__map {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 320px;
    background: #A3A3A3; /* 仮置きカラー */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-content__map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px;
    text-align: center;
}

.access-content__map-placeholder p {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #333333;
}

.access-content__map-note {
    font-size: 14px !important;
    color: #666 !important;
}

.access-content__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.access-content__link:hover {
    color: var(--color-primary) !important;
    opacity: 0.7 !important;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 500,
  'GRAD' 0,
  'opsz' 28; /* サイズを少し大きくして、存在感を出すのも有効 */
   transition: opacity 0.3s ease;
}

.access-content__link-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    .company-section--access {
        padding: var(--section-padding-pc);
    }
    
    .access-content__link-text {
        font-size: 16px;
    }
}

/* ========================================
   レスポンシブ対応のユーティリティ
======================================== */
.pc-only {
    display: none;
}

@media (min-width: 768px) {
    .pc-only {
        display: inline;
    }
}
