/* 会社案内ページ専用のスタイル */
.contact-page .header .global-nav a {
    color: #333; /* 初期状態は黒に */
}

/* サブメニューは常に白 */
.contact-page .header .global-nav .submenu li a {
    color: #fff !important;
}

.contact-page .header .hamburger-line {
    background-color: #333; /* ハンバーガーメニューも黒に */
}

/* スクロール時は白色に戻す */
.contact-page .header.scrolled .global-nav a {
    color: #fff;
}

.contact-page .header.scrolled .hamburger-line {
    background-color: #fff;
}


/* ページヒーローセクション */
.page-hero {
    background: linear-gradient(135deg, #003366, #0066cc);
    color: white;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    margin-top: 80px;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0) 100%
    );
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    padding-right: 0.25em;
}

.page-hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 0.4em;
    opacity: 0.9;
    padding-right: 0.4em;
}

/* マイクロソフトforms */
#microsoft-form{
    display: grid;
    place-items: center;
    border: none;
    margin-bottom: 50px;
}

#microsoft-form iframe{
    min-height: 2000px;
    min-width: 70vw;
    border: none;
}

/* form 説明部分 */
.form-description{
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.form-description p{
    padding-bottom: 1rem;
}

.form-description a{
    vertical-align: middle;
}


/* PDFボタン */
.pdf-button-container {
    text-align: center;
    margin-top: 20px;
}

.pdf-button-container a{
    color:#003366;
}

.pdf-button {
    background: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: auto;
    border-radius:0;
}

.pdf-link{
    text-decoration-line: none;
    text-decoration-color: #fff;
}

.pdf-link a:visited{
    text-decoration-color: #fff;
    text-decoration-line: none;
}

.pdf-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 1px 10px rgba(0, 102, 204, 0.4);
}


/* レスポンシブデザイン */
@media (max-width:1024px) {
    /* モバイルメニューの文字色を白に */
    .contact-page .header .global-nav > ul > li > a,
    .contact-page .header .global-nav .submenu li a {
        color: #fff !important;
    }
}

@media (max-width: 768px) {

    .page-hero-title{
        font-size: 3rem;
    }

    /* マイクロソフトforms */
    #microsoft-form iframe {
        width: 95%;
        height: 100vh;
        border: none;
}
}