/* カスタムスタイル */

body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    background: url('<?php echo get_stylesheet_directory_uri(); ?>/imgs/hasami01.jpg') no-repeat center center fixed;
    background-size: cover;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff; /* ヘッダーの背景色を設定 */
}

.footer {
    margin-top: 20px; /* フッターの上部に適切なスペースを追加 */
    text-align: center;
    font-size: 0.9em;
    color: #777;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 20px 20px 20px;
    background-color: rgba(255, 255, 255, 0.1); /* 背景を薄くするための透明度設定 */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2; /* オーバーレイの上に表示 */
}

h1, h2 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.hairstylist-item, .buttons button {
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px;
    text-align: center;
    transition: background-color 0.3s, border-color 0.3s;
}

.hairstylist-item:hover, .buttons button:hover {
    background-color: #f0f0f0;
    border-color: #bbb;
}

.hairstylist-item img {
    max-width: 100px;
    height: auto;
}

.info {
    margin-top: 10px;
}

.total {
    font-size: 1.5em;
    color: #444;
    text-align: center;
    margin-top: 20px;
}

.totalButton {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
}
