.container {
	width: 600px;
	margin: 16px auto;
  }
  
  h1 {
	font-size: 20px;
  }

  h2 {
	font-size: 19px;
  }

  h3 {
	font-size: 18px;
  }

  h4 {
	font-size: 17px;
  }

  h5 {
	font-size: 16px;
  }

  .back-link {
	text-align: right;
  }


/* ベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
    color: #333;
}

/* ナビゲーションバー */
.main-header {
    background-color: #333;
    padding: 1rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: #fff;
    font-size: 1rem;
}

/* ヒーローセクション */
.hero {
    /* background: url('hero-bg.jpg') no-repeat center center/cover; */
    /* color: #fff; */
    /* padding: 5rem 0; */
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background-color: #ff4757;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e74c3c;
}

/* 機能セクション */
.features {
    /* display: flex; */
    justify-content: space-around;
    padding: 2rem;
    background-color: #fff;
}

.feature-box {
    text-align: center;
    padding: 1rem;
}

.feature-box h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 1rem;
    color: #666;
}

/* フッター */
.main-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

.main-footer p {
    margin: 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .features {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* テーブルスタイル */
.table-section {
    /* padding: 2rem; */
    background-color: #fff;
    /* margin-top: 2rem; */
    text-align: center;
}

.styled-table {
    width: 100%;
    border-collapse: collapse; /* テーブルのセル間の隙間をなくす */
    /* margin: 25px 0; */
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #dddddd; /* テーブル全体に細い線を追加 */
}

.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
    border-bottom: 2px solid #dddddd; /* ヘッダー下に太めの線 */
}

.styled-table th,
.styled-table td {
    /* padding: 12px 15px; */
    padding: 5px 5px;
    text-align: center;
    border: 1px solid #dddddd; /* 各セルに細い線を追加 */
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

/* .styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
} */

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}

.styled-table .money {
	font-weight: bold;
	text-align: right;
}
