body {
    font-weight: 400;
    color: #333333;
}

.common-header {
    background-color: #fdfdfd;
    padding: 0px 0px;
    /* border-bottom: 1px solid #e0e0e0; */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.header-logo {
    padding: 5px 5px;
}

.header-logo img {
    /* ロゴの高さを調整 */
    height: 40px;
    cursor: pointer;
}

.header-right-logo {
    text-align: center;
}

.header-right-logo img {
    /* ロゴの高さを調整 */
    height: 20px;
}

.header-right-container {
    display: flex;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 20px;
    height: 60px;
    position: relative; /* 擬似要素の基準 */
    min-width: 110px;
}

/* 罫線を短く表示（中央寄せ） */
.header-right::before {
    content: "";
    position: absolute;
    left: 0;               /* 左端 */
    top: 50%;              /* 親の中央に配置 */
    transform: translateY(-50%); /* 自分自身を中央に寄せる */
    height: 40px;          /* 線の長さ（調整可能） */
    border-left: 1px solid #cdcdcd;
}

.header-right :hover {
    color: #eb0101;
}

.header-links {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.header-link {
    text-decoration: none;
    color: #1b1b1b;
    font-weight: 400;
    font-size: 13px;
    text-align: center;
}   

.login-field-group {
    margin-bottom: 10px;
}
.submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
}

.login-message {
    font-size: 14px;
}

.forgot-password {
    display: block;
    color: #232323;
    /* リンクをブロック要素にして独立した行にする */
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.forgot-password:hover {
    text-decoration: none;
}

.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #999;
    margin-bottom: 20px;
    font-size: 14px;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.login-divider:not(:empty)::before {
    margin-right: .5em;
}

.login-divider:not(:empty)::after {
    margin-left: .5em;
}

.create-user-btn {
    width: 100%;
    padding: 15px;
    background-color: #ebd10c;
    /* 新規アカウント作成ボタン用の緑色 */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    /* font-weight: bold; */
    cursor: pointer;
}

.create-user-btn:hover {
    background-color: #d5bd06;
}

/* スライドポップアップ */
.slide-popup {
    position: fixed;
    top: -130px;
    left: 0;
    height: 80px;
    width: 100%;
    background-color: #383838;
    color: white;
    padding: 10px 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: top 0.5s ease-in-out;
    display: flex; /* Flexboxコンテナとして設定 */
    align-items: center; /* 子要素（pタグ）を垂直方向の中央に配置 */
    justify-content: center; /* 子要素を水平方向の中央に配置 */
}

.slide-popup.is-active {
    top: 0;
}

#email-send-modal .section-title {
    left: -4px;
}
#login-modal .section-title {
    left: -4px;
}