/* ==========================================================
   全体設定
   ========================================================== */
body {
    font-family: 'Noto Serif JP', serif;
    color: #333;
    background-color: #fff;
    margin: 0;
    line-height: 1.8;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================
   ヘッダー・ナビ
   ========================================================== */
header { background: #fff; border-top: 5px solid #0054a6; }
.header-inner { display: flex; justify-content: center; align-items: center; padding: 35px 0; }
.logo-area h1 { font-size: 54px; color: #000; margin: 0; font-weight: 700; display: flex; align-items: center; gap: 20px; }
.site-logo { height: 100px; width: auto; }

.g-nav { background: #0054a6; }
.g-nav ul { list-style: none; display: flex; margin: 0; padding: 0; width: 100%; }
.g-nav li { flex: 1; text-align: center; }
.g-nav a { display: block; padding: 22px 5px; color: #fff; text-decoration: none; font-weight: bold; font-size: 19px; }

/* ==========================================================
   コンテンツパーツ
   ========================================================== */
.main-visual { width: 100%; height: 380px; background-image: url('images/top.jpg'); background-position: center 40%; background-repeat: no-repeat; background-size: cover; }
.intro-text { padding: 40px 0 10px; }
.info-section { padding: 60px 0; border-bottom: 1px solid #eee; }
.section-title { font-size: 26px; color: #0054a6; border-bottom: 2px solid #0054a6; display: inline-block; margin-bottom: 30px; padding-bottom: 5px; font-weight: 700; }
.service-h3 { color: #0054a6; font-size: 22px; border-left: 5px solid #0054a6; padding-left: 15px; margin-bottom: 25px; }
.service-desc { margin-bottom: 20px; font-size: 15px; }
.note { font-size: 14px; color: #666; margin-bottom: 5px; }

/* サービスグリッド */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 15px; margin-bottom: 20px; }
.service-card { background: #f8fafd; padding: 20px; border: 1px solid #e0e6ed; border-top: 3px solid #0054a6; }
.service-card h4 { margin-top: 0; color: #0054a6; margin-bottom: 10px; }
.list-clean { list-style: none; padding: 0; margin: 0; font-size: 15px; }

/* テーブル類 */
.jimdo-table, .price-table { width: 100%; border-collapse: collapse; margin-top: 10px; margin-bottom: 15px; }
.jimdo-table th, .price-table th { background: #f0f4f8; color: #0054a6; text-align: left; border: 1px solid #d0d7de; padding: 15px; }
.jimdo-table td, .price-table td { border: 1px solid #d0d7de; padding: 15px; }

/* ==========================================================
   ご利用の流れ
   ========================================================== */
.flow-container { margin: 20px 0; }
.flow-item { display: flex; align-items: flex-start; margin-bottom: 25px; padding: 15px; background: #fdfdfd; border-left: 3px solid #0054a6; }
.flow-num { font-size: 24px; font-weight: bold; color: #0054a6; margin-right: 20px; line-height: 1.2; flex-shrink: 0; }
.flow-content h4 { margin: 0 0 5px; font-size: 18px; color: #333; }
.flow-content p { margin: 0; font-size: 15px; }
.price-notice-box { background: #f0f4f8; padding: 20px; border-radius: 5px; margin-top: 30px; }
.price-notice-box h4 { color: #0054a6; margin-top: 0; }

/* ==========================================================
   ボタン・フッター
   ========================================================== */
.recruit-buttons, .link-area { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 15px; }
.btn-recruit, .btn-corporate { background: #0054a6; color: #fff; padding: 15px 30px; text-decoration: none; font-weight: bold; border-radius: 5px; transition: 0.3s; }
.btn-recruit:hover, .btn-corporate:hover { background: #f39800; }
.site-footer { background: #0054a6; color: #fff; text-align: center; padding: 40px 0; margin-top: 60px; }

/* ==========================================================
   スマホ対応
   ========================================================== */
@media (max-width: 768px) {
    .logo-area h1 { font-size: 30px; justify-content: center; }
    .site-logo { height: 60px; }
    .g-nav a { font-size: 11px; padding: 14px 0px; letter-spacing: -0.5px; }
    .main-visual { height: 220px; }
    .service-grid { grid-template-columns: 1fr; }
    
    .jimdo-table tr, .jimdo-table th, .jimdo-table td { display: block; width: 100%; }
    .jimdo-table th { background: #0054a6; color: #fff; border-bottom: none; }
    .jimdo-table td { margin-bottom: 10px; }

    .flow-item { padding: 10px; }
    .flow-num { font-size: 20px; margin-right: 15px; }
    .flow-content h4 { font-size: 16px; }
}