/* ==================================================
// 固定ページ用カスタムスタイル (page-styles.css)
// =================================================*/

/* --- ページ全体の基本レイアウト --- */
.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-content-area {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-content-main {
    padding: 50px 70px;
}

/* --- ヘッダーデザイン --- */
.page-header-custom {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9e9e9;
    position: relative;
}

.page-header-custom::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(135deg, #e6ca8a, #c9a063);
}

.page-title-custom {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px;
    font-family: 'Noto Serif JP', serif;
}

.page-description-custom {
    font-size: 16px;
    color: #666;
}

/* --- コンテンツセクション --- */
.page-body-content .page-section {
    margin-bottom: 50px;
}
.page-body-content .page-section:last-child {
    margin-bottom: 0;
}

.page-section .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    font-family: 'Noto Serif JP', serif;
}
.page-section p, .page-section ul {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}
.page-section ul {
    padding-left: 1.5em;
}

/* --- 会社概要 (page-company.php) --- */
.info-table-custom {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.info-table-custom th, .info-table-custom td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}
.info-table-custom th {
    background-color: #f9f9f9;
    font-weight: 600;
    width: 25%;
    color: #555;
}
.info-table-custom td ul {
    margin: 0;
    padding-left: 1.2em;
}

.profile-card {
    display: flex;
    gap: 30px;
    align-items: center;
    background-color: #fcfcfc;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}
.profile-card-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}
.profile-card-body h3 {
    margin-top: 0;
}

/* --- 広告掲載 (page-advertising.php) --- */
.ad-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.ad-menu-item {
    background-color: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.ad-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}
.ad-menu-item h3 {
    margin-top: 0;
    font-size: 20px;
    color: var(--accent-color);
}

.process-steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}
.process-steps-list li {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding: 0 0 30px 50px;
    border-left: 1px solid #e6ca8a;
    margin-left: 20px;
}
.process-steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: -20px;
    top: -5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e6ca8a, #c9a063);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.process-steps-list li h3 { margin: 0 0 5px; }

/* --- お問い合わせ (page-contact.php) --- */
.contact-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}
.contact-method-card {
    padding: 30px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    text-align: center;
}
.contact-method-card h3 { margin-top: 0; font-family: 'Noto Serif JP', serif; }

.contact-form-custom .form-row { margin-bottom: 25px; }
.contact-form-custom label { display: block; margin-bottom: 8px; font-weight: 600; color: #555; }
.contact-form-custom input[type="text"],
.contact-form-custom input[type="email"],
.contact-form-custom select,
.contact-form-custom textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fdfdfd;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form-custom input:focus, 
.contact-form-custom select:focus, 
.contact-form-custom textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(230, 202, 138, 0.3);
}

.submit-btn-custom {
    display: inline-block;
    background: linear-gradient(135deg, #e6ca8a, #c9a063);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.submit-btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .page-content-main { padding: 40px; }
    .ad-menu-grid, .contact-methods-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .page-container { padding: 20px 15px; }
    .page-content-main { padding: 30px 20px; }
    .page-title-custom { font-size: 28px; }
}