@charset "UTF-8";
/* 共通 */
.text-center{
    text-align: center;
}

.margin-auto {
    margin: 0 auto;
}

/* 画像がどのサイズの画面でも１００％になるようにする */
.fluid{
    width: 100%;
    height: auto;
}
/* header */
header{
    padding: 15px;
}
/* header,footer */
header, footer{
    background-color: #BDADD6;
}
/* headerをflex */
.header-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* headerのロゴ */
.logo img{
    margin: 0 5px;
    height: 125px;
}
.header-flex .logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ナビゲーションボタン*/
.header-flex nav ul{
    display: flex;
    justify-content: center;
    list-style: none;
}
header nav ul li{
    padding: 0 40px;
}
/* ボタンとボタンの間の線 */
header nav ul li+li{
    font-weight:700;
    border-left: 3px solid #000000;
}
.header-flex .logo span{
    font-size: 16px;
}
.navigation li a{
    font-weight: 600;
}
.navigation a{
    text-decoration: none;
    color: #000000;
}
.navigation a:hover{
    transition: 0.5s;
    color: #ffffff;
}
.font-size{
    font-size: 40px;
}


/* テーブルのスタイル */
.customer-table {
    width: 80%;
    margin: 30px auto;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
}

/* テーブルタイトル */
.table-title {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin: 20px 0;
    font-weight: bold;
}

/* テーブルのヘッダー */
.customer-table th {
    background-color: #7d89e2;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    font-size: 16px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* テーブルのデータセル */
.customer-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #555;
}

.customer-table tr:nth-child(even) {
    background-color: #fafafa;
}

.customer-table tr:last-child td {
    border-bottom: 2px solid #7d89e2;
}

.customer-table td:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

.customer-table {
    border: 1px solid #ddd;
}