* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; color: #333; line-height: 1.6; background: #f9f9f9; }

/* --- 追加：本文（普通字）を1サイズ小さく調整 --- */
.text-box p, 
.text-box ul li, 
.info-list p {
    font-size: 15px; /* 標準より一回り小さくしてメリハリをつける */
    color: #444;     /* わずかに色を落として視認性を向上 */
}

/* メインビジュアル */
.main-visual {
    position: relative;
    width: 100%;
    height: 45vh;
    overflow: hidden;
}
.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 左メニュー */
.side-menu {
    position: absolute;
    top: 80px;
    left: 80px;
    width: 160px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 100;
    text-align: center;
}

/* --- ロゴ(tjp.png)のサイズ調整 --- */
.logo img { 
    width: 85%; /* 必要に応じてここを 70%〜100% で調整してください */
    margin-bottom: 20px; 
}

.side-menu ul { list-style: none; }
.side-menu ul li a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #444;
    transition: 0.3s;
}
.side-menu ul li a i {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}
.side-menu ul li a:hover { color: #007bff; }

/* 言語切替 */
.lang-switch {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.lang-switch img {
    width: 30px;
    margin: 0 2px;
    border: 1px solid #ddd;
    cursor: pointer; /* クリックできることを示す */
}

/* 右固定ボタン */
.right-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}
.btn-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #6d4c41; /* 茶色系 */
    color: white;
    text-decoration: none;
    padding: 15px 10px;
    border-radius: 10px 0 0 10px;
    font-size: 12px;
}
.btn-contact i { font-size: 24px; margin-bottom: 5px; }

/* キャッチコピー */
.catch-copy {
    position: absolute;
    top: 40%;
    left: 55%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    text-align: center;
}
.catch-copy h2 { font-size: 3rem; line-height: 1.2; }

/* コンテンツエリア */
.container { padding: 50px 5%; max-width: 1200px; margin: 0 auto; }
.content-section { margin-bottom: 80px; background: white; padding: 40px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.section-flex { display: flex; align-items: center; gap: 40px; }
.reverse .section-flex { flex-direction: row-reverse; }
.text-box { flex: 1; }

/* --- 見出し（太字）のサイズ --- */
.text-box h2 { 
    font-size: 1.8rem; 
    margin-bottom: 20px; 
    font-weight: bold; 
}

.img-box { flex: 1; }
.img-box img { width: 100%; border-radius: 10px; }
.info-list { margin-top: 20px; padding: 15px; background: #f0f0f0; border-radius: 5px; }
.work-list { margin-left: 20px; }

/* フォーム */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.form-group input, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; }
.submit-btn { 
    background: #007bff; 
    color: white; 
    border: none; 
    padding: 15px 30px; 
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
}

footer { text-align: center; padding: 40px; background: #333; color: white; }

/* 言語切り替え用制御（HTMLに lang-content 属性がある場合に使用） */
[lang-content] { display: none; }
[lang-content].active { display: block; }

@media (max-width: 768px) {
    .section-flex, .reverse .section-flex { flex-direction: column; }
    .side-menu { width: 100px; font-size: 10px; }
    .catch-copy h2 { font-size: 2rem; }
}