/* Layout Styles */
.page-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    position: relative; /* 相対位置指定 */
}

.main-content {
    width: 100%;
    padding: 0 20px;
    max-width: var(--main-width);
    margin: 0 auto;
    background-color: transparent; /* クリアに */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* メインコンテンツに薄いシャドウを追加 */
}

.sidebar {
    display: none; /* Hidden on mobile */
}

section {
    margin: 0px 0;
    padding: 20px 0;
}

/* Sidebar Styles */
.sidebar-content {
    background-color: white; /* サイドバーの背景色を白に */
    border-radius: 15px;
    padding: 20px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
    text-align: center;
}

/* 左サイドバー - アプリ名 */
.app-name {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 700;
}

/* 右サイドバー - QRコード */
.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-image {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.qr-text {
    font-size: 16px;
    font-weight: bold;
    color: #387d10;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--medium-gray);
    margin-top: 60px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--dark-gray);
    font-size: 14px;
}

.copyright {
    color: var(--dark-gray);
    font-size: 12px;
}

/* Page Header */
.page-header {
    padding: 30px 0;
    margin-bottom: 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--dark-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.back-link i {
    margin-right: 5px;
}

.page-title {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--dark-gray);
}

.breadcrumb .current-page {
    color: var(--text-color);
    font-weight: 500;
}
.bg-section {
    /* 縦の余白は既存の section マージンを維持 */
    margin: 0px -20px;
  
    /* 内側の余白は元の padding を再現 */
    padding: 20px;
  
    /* 任意の背景色 */
    background-color: #fffbf0; /* 例：クリーム */
  }

  .text-red {
    color: red;
  }

  .logo-img {
    max-width: 400px;
  }