body {
    font-family: 'Noto Sans Japanese';
    font-style: normal;
    font-weight: 200;
    src: url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Light.woff2) format('woff2'),
        url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Light.woff) format('woff'),
        url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Light.otf) format('opentype');
}

:root {
    --primary-color: rgb(191, 46, 39);
    /* 主题色 */
    --primary-light: rgba(191, 46, 39, 0.8);
    /* 浅色变体 */
    --primary-dark: rgb(146, 31, 24);
    /* 深色变体 */
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f8f9fa;
}



.btn-primary {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.main-feature {
    position: relative;
    top: -25px;
    margin-top: 15px;
}

.secondary-menu {
    margin: 0 10px;
}

.menu-item {
    color: #333;
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: white;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    transition: background-color 0.3s;
    text-decoration: none;
    color: inherit;
}

.menu-item:hover {
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.menu-item i {
    margin-right: 1rem;
    width: 24px;
    text-align: center;
    color: var(--primary-color);
}

.menu-item h4 {
    font-size: 1rem;
    margin: 0;
    flex: 1;
}

.ts {
    position: absolute;
    top: 18%;
    left: 40%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-left: 1.5rem;
    z-index: 2;
    font-weight: bold;
}

.profile-header {
    background-color: #650b0b;
    padding: 1rem 1rem 1.5rem 1rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.header-head-name {
    display: flex;
}

.header-head {
    margin-right: 15px;
    border-radius: 50%;
}

.header-head img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid white;
}

.header-name {
    display: flex;
    text-align: left;
    color: #fff;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.header-name p {
    margin-bottom: 0;
    color: #fff;
}

.header-SetUp {
    width: 24%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-SetUp a {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
}

.header-SetUp a:hover {
    color: #fff;
    text-decoration: none;
}

.header-SetUp i {
    font-size: 22px;
}

.MyOrder {
    overflow: hidden;
    background-color: #fff;
    border-radius: 8px 8px 0px 0px;
    display: flex;
    text-align: center;
    justify-content: space-around;
    align-items: center;
    padding: .5rem 1rem;
}

.OrderService {
    overflow: hidden;
    font-size: 15px;
    display: block;
    color: #000;
    text-decoration: none;
    position: relative;
    padding: .2rem;
}

.OrderService:hover {
    color: #000;
    text-decoration: none;
}

.OrderService i {
    font-size: 30px;
}