/* ═══════════════════════════════════════════════════════════════
   Girl's Premium - Sub Pages CSS
   
   トップ以外の各ページ用の追加スタイル
   gp-top-renewal.css をベースに、ページ固有のコンポーネントを追加
   ═══════════════════════════════════════════════════════════════ */

/* ─── Page Hero (サブページ共通ヒーロー) ─── */
.gp-page-hero {
  padding: 140px 0 72px;
  text-align: center;
  background: #FAF8F5;
}

.gp-page-hero--dark {
  background: #1E2A3A;
  color: #F5F3F0;
}

.gp-page-hero-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C4918E;
  display: block;
  margin-bottom: 16px;
}

.gp-page-hero--dark .gp-page-hero-label {
  color: #C9A96E;
}

.gp-page-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0;
}

.gp-page-hero-sub {
  font-size: 14px;
  line-height: 2;
  color: #7A7067;
  margin-top: 18px;
}

.gp-page-hero--dark .gp-page-hero-sub {
  color: rgba(245,243,240,0.65);
}

/* ─── Page Narrow (読み物幅) ─── */
.gp-page-narrow {
  max-width: 720px;
  margin: 0 auto;
}

/* ─── Page Typography ─── */
.gp-page-h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #2D2D2D;
  margin: 0 0 24px;
  text-align: center;
}

.gp-page-h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #2D2D2D;
  margin: 0 0 12px;
}

.gp-page-body {
  font-size: 14px;
  line-height: 2.2;
  color: #7A7067;
}

.gp-page-body strong {
  color: #2D2D2D;
  font-weight: 500;
}

/* ─── Service Cards (企業向けページ) ─── */
.gp-page-services-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px;
}

.gp-page-service-card {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(33.333% - 22px);
  flex: 1 1 calc(33.333% - 22px);
  background: #fff;
  padding: 40px 32px;
  border: 1px solid #E8E2DA;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gp-page-service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.gp-page-service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: #C4918E;
  line-height: 1;
  margin-bottom: 16px;
}

.gp-page-service-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #2D2D2D;
  margin: 0 0 14px;
}

.gp-page-service-text {
  font-size: 13px;
  color: #7A7067;
  line-height: 2;
  margin: 0 0 18px;
}

.gp-page-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-page-service-list li {
  font-size: 13px;
  color: #2D2D2D;
  padding: 6px 0 6px 16px;
  position: relative;
  line-height: 1.6;
}

.gp-page-service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C4918E;
}

/* ─── Flow (ご利用の流れ) ─── */
.gp-page-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}

.gp-page-flow-step {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  padding: 24px 16px;
}

.gp-page-flow-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: #C4918E;
  line-height: 1;
  margin-bottom: 12px;
}

.gp-page-flow-step h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.gp-page-flow-step p {
  font-size: 13px;
  color: #7A7067;
  line-height: 1.8;
  margin: 0;
}

.gp-page-flow-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #E8E2DA;
  font-size: 24px;
  margin-top: 32px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

/* ─── Form (お問い合わせページ) ─── */
.gp-page-form {
  max-width: 640px;
  margin: 0 auto;
}

.gp-page-form-group {
  margin-bottom: 28px;
}

.gp-page-form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #2D2D2D;
  margin-bottom: 8px;
}

.gp-page-form-label .gp-page-required {
  font-size: 11px;
  color: #C4918E;
  margin-left: 6px;
}

.gp-page-form-input,
.gp-page-form-textarea,
.gp-page-form-select {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #2D2D2D;
  background: #fff;
  border: 1px solid #E8E2DA;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.gp-page-form-input:focus,
.gp-page-form-textarea:focus,
.gp-page-form-select:focus {
  border-color: #C4918E;
}

.gp-page-form-textarea {
  min-height: 160px;
  resize: vertical;
}

.gp-page-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7067' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ─── Article List (記事一覧) ─── */
.gp-page-articles-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -16px;
}

.gp-page-article-card {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333%;
  flex: 0 0 33.333%;
  padding: 0 16px;
  margin-bottom: 40px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.gp-page-article-card:hover {
  text-decoration: none;
  color: inherit;
}

/* ─── Article Detail (記事詳細) ─── */
.gp-page-article-header {
  text-align: center;
  padding: 140px 0 40px;
}

.gp-page-article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2.2;
  color: #2D2D2D;
}

.gp-page-article-body h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E8E2DA;
}

.gp-page-article-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  margin: 36px 0 14px;
}

.gp-page-article-body p {
  margin: 0 0 24px;
}

/* 本文内画像: 編集画面と同様に表示幅の基準を揃える（高さはアスペクト比のまま） */
.gp-page-article-body img {
  display: block;
  width: 100% !important;
  max-width: 640px !important;
  height: auto !important;
  margin: 16px auto !important;
  box-sizing: border-box;
}

/* External embed HTML can inject absolute-position/viewport styles and stretch images.
   Force article body images back to normal flow; keep width rule aligned with plain img. */
.gp-page-article-body img[style] {
  position: static !important;
  inset: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  width: 100% !important;
  max-width: 640px !important;
  height: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  box-sizing: border-box !important;
}

/* Ameblo/PhotoSwipe pasted blocks: remove viewport-width wrappers and spacer span */
.gp-page-article-body span.PhotoSwipeImage,
.gp-page-article-body span._3SBxbmnl {
  display: block !important;
  position: static !important;
  overflow: visible !important;
  min-width: 0 !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 24px auto !important;
}

.gp-page-article-body span.PhotoSwipeImage > span._MTIfE-De,
.gp-page-article-body span._3SBxbmnl > span._MTIfE-De {
  display: none !important;
}

.gp-page-article-body span.PhotoSwipeImage > img,
.gp-page-article-body span._3SBxbmnl > img {
  position: static !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
}

/* Article main visual */
.gp-article-main-visual-wrap {
  margin: 0 auto 28px;
}

.gp-article-main-visual {
  width: 100%;
  max-width: 100%;
  border: 1px solid #F0ECE6;
  background: #fff;
}

.gp-article-main-visual--photo {
  overflow: hidden;
}

.gp-article-main-visual-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.gp-article-main-visual--empty {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #B5ADA5;
  background: #FAF8F5;
}

.gp-article-main-visual-empty-label {
  font-size: 16px;
  letter-spacing: 0.08em;
}

.gp-article-main-visual-empty-hint {
  font-size: 12px;
  color: #9B9388;
}

/* Article author block */
.gp-article-author {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #F0ECE6;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.gp-article-author-avatar-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.gp-article-author-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: #F0ECE6;
  border: 1px solid #E8E2DA;
  flex: 0 0 120px;
}

.gp-article-author-avatar--photo img,
.gp-article-author-avatar-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gp-article-author-avatar--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-article-author-avatar-noimg {
  text-align: center;
  color: #B5ADA5;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.gp-article-author-avatar-noimg-line {
  display: block;
}

.gp-article-author-text {
  flex: 1 1 auto;
  min-width: 0;
}

.gp-article-author-heading {
  margin: 0 0 10px;
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #2D2D2D;
}

.gp-article-author-name {
  margin: 0 0 10px;
  font-weight: 600;
}

.gp-article-author-bio {
  margin: 0;
  line-height: 1.9;
}

/* Curator pages reuse the same avatar component */
.gp-curator-avatar-lg {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
}

.gp-curator-list-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}

/* ─── Pagination (ページネーション) ─── */
.gp-page-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.gp-page-pagination a,
.gp-page-pagination span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 13px;
  text-decoration: none;
  color: #7A7067;
  border: 1px solid #E8E2DA;
  transition: all 0.3s ease;
}

.gp-page-pagination a:hover {
  border-color: #C4918E;
  color: #C4918E;
}

.gp-page-pagination .is-current {
  background: #C4918E;
  border-color: #C4918E;
  color: #fff;
}

/* ─── Auth Pages (ログイン・登録) ─── */
.gp-page-auth {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 120px 20px 60px;
  background: #FAF8F5;
}

.gp-page-auth-box {
  width: 100%;
  max-width: 440px;
  background: #fff;
  padding: 48px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.gp-page-auth-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0 0 8px;
}

.gp-page-auth-sub {
  text-align: center;
  font-size: 13px;
  color: #7A7067;
  margin: 0 0 32px;
}

.gp-page-auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: #7A7067;
}

.gp-page-auth-footer a {
  color: #C4918E;
  text-decoration: none;
}

.gp-page-auth-footer a:hover {
  text-decoration: underline;
}

/* ─── Auth Flash Messages ─── */
.gp-page-auth-flash {
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  border: 1px solid #E8E2DA;
  background: #FFF8F7;
  color: #C4918E;
}

.gp-page-auth-flash.is-error {
  border-color: #E8B4B0;
  background: #FFF5F4;
  color: #B5706C;
}

.gp-page-auth-flash.is-success {
  border-color: #B8D4C8;
  background: #F5FAF7;
  color: #5A8A6E;
}

.gp-page-auth-box--wide {
  max-width: 520px;
}

.gp-page-auth-brand {
  text-align: center;
  margin-bottom: 24px;
}

.gp-page-auth-brand-link {
  text-decoration: none;
}

.gp-page-auth-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: #2D2D2D;
  letter-spacing: 0.04em;
}

.gp-page-auth-confirm-lead {
  font-size: 13px;
  line-height: 1.7;
  color: #5C534C;
  margin: 0 0 24px;
  padding: 14px 16px;
  background: #FAF8F5;
  border: 1px solid #E8E2DA;
  border-radius: 2px;
}

.gp-page-auth-confirm-dl {
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid #E8E2DA;
}

.gp-page-auth-confirm-dl dt {
  margin: 0;
  padding: 12px 0 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #7A7067;
}

.gp-page-auth-confirm-dl dd {
  margin: 0;
  padding: 0 0 12px;
  font-size: 15px;
  color: #2D2D2D;
  border-bottom: 1px solid #E8E2DA;
  word-break: break-all;
}

.gp-page-auth-mask {
  font-size: 18px;
  letter-spacing: 0.12em;
  color: #7A7067;
}

.gp-page-auth-mask-note {
  font-size: 12px;
  color: #7A7067;
  margin-top: 6px;
  font-weight: normal;
}

.gp-page-auth-sns-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.gp-page-auth-sns-avatar {
  border-radius: 50%;
  object-fit: cover;
}

.gp-page-auth-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.gp-page-auth-actions--single {
  margin-top: 8px;
}

.gp-page-auth-submit {
  width: 100%;
  border: none !important;
  padding: 14px 16px !important;
  cursor: pointer;
  font-size: 14px !important;
}

.gp-page-btn-secondary {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  cursor: pointer;
  background: #fff;
  color: #5C534C;
  border: 1px solid #C4918E;
  border-radius: 2px;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}

.gp-page-btn-secondary:hover {
  background: #FFF8F7;
  color: #C4918E;
}

.gp-page-auth-top-link {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none !important;
  box-sizing: border-box;
  padding: 14px 16px !important;
}

.gp-page-auth-complete-body {
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  color: #2D2D2D;
  margin-bottom: 8px;
}

.gp-page-auth-complete-body p {
  margin: 0 0 14px;
}

.gp-page-auth-emphasis {
  color: #C4918E;
  font-weight: 600;
}

.gp-page-auth-muted {
  font-size: 13px;
  color: #7A7067;
}

/* ─── Static Pages (会社概要・規約系) ─── */
.gp-page-static {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.gp-page-static h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E8E2DA;
}

.gp-page-static h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 400;
  margin: 32px 0 10px;
}

.gp-page-static p {
  font-size: 14px;
  line-height: 2;
  color: #7A7067;
  margin: 0 0 20px;
}

.gp-page-static table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.gp-page-static th,
.gp-page-static td {
  font-size: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid #E8E2DA;
  text-align: left;
  vertical-align: top;
}

.gp-page-static th {
  font-weight: 500;
  color: #2D2D2D;
  width: 30%;
  background: #FAF8F5;
}

.gp-page-static td {
  color: #7A7067;
  line-height: 1.8;
}

.gp-page-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 560px;
}

.gp-page-menu-list li {
  border-bottom: 1px solid #e8e2da;
}

.gp-page-menu-list a {
  display: block;
  padding: 16px 4px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #5c534c;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.gp-page-menu-list a:hover {
  color: #c4918e;
}

/* 決済（Bootstrap 併用）— リニューアルヘッダー下の余白 */
.gp-page-payment-shell {
  padding-top: 100px;
  padding-bottom: 56px;
}

/* ─── No Image Placeholders (共通) ─── */
.gp-noimage {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #F0ECE6;
  color: #B5ADA5;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.gp-noimage--lg {
  font-size: 16px;
}

.gp-noimage--sm {
  font-size: 11px;
}

/* ═══════════════════════════════════════
   RESPONSIVE - Tablet
   ═══════════════════════════════════════ */
@media (max-width: 991px) {
  .gp-page-hero-title { font-size: 26px; }
  .gp-page-service-card { -ms-flex: 1 1 calc(50% - 16px); flex: 1 1 calc(50% - 16px); }
  .gp-page-article-card { -ms-flex: 0 0 50%; flex: 0 0 50%; }
}

/* ═══════════════════════════════════════
   RESPONSIVE - Mobile
   ═══════════════════════════════════════ */
@media (max-width: 767px) {
  .gp-page-hero { padding: 110px 0 48px; }
  .gp-page-hero-title { font-size: 22px; }
  .gp-page-hero-sub { font-size: 13px; }
  .gp-page-hero-sub br { display: none; }

  .gp-page-h2 { font-size: 20px; }

  .gp-page-service-card {
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding: 28px 24px;
  }

  .gp-page-flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .gp-page-flow-arrow {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 4px auto;
  }

  .gp-page-article-card {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 28px;
  }

  .gp-page-auth-box {
    padding: 32px 24px;
  }

  .gp-page-static th {
    width: 35%;
    padding: 10px 12px;
  }

  .gp-page-static td {
    padding: 10px 12px;
  }
}

/* ─── Articles List (renewal) ─── */
.gp-articles-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gp-articles-item--featured,
.gp-articles-item--normal {
  text-decoration: none;
  color: inherit;
}

.gp-articles-item--featured {
  display: block;
  padding: 0 0 24px;
  border-bottom: 1px solid #F0ECE6;
}

.gp-articles-item--normal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #F0ECE6;
}

.gp-articles-thumb {
  overflow: hidden;
  background: #F0ECE6;
}

.gp-articles-item--featured .gp-articles-thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 60%;
  margin-bottom: 14px;
}

.gp-articles-item--featured .gp-articles-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-articles-item--normal .gp-articles-thumb {
  width: 110px;
  min-width: 110px;
  height: 82px;
  position: relative;
}

.gp-articles-item--normal .gp-articles-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-articles-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
}

.gp-articles-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: #9B9388;
}

.gp-articles-cat {
  font-size: 10px;
  color: #C4918E;
  background: rgba(196,145,142,0.08);
  padding: 2px 8px;
}

.gp-articles-title {
  font-family: 'Noto Serif JP', serif;
  color: #2D2D2D;
  line-height: 1.6;
  margin: 0 0 6px;
}

.gp-articles-item--featured .gp-articles-title {
  font-size: 16px;
}

.gp-articles-item--normal .gp-articles-title {
  font-size: 14px;
}

.gp-articles-excerpt {
  font-size: 13px;
  color: #7A7067;
  line-height: 1.8;
  margin: 0;
}

.gp-articles-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.gp-articles-pagination a,
.gp-articles-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #E8E2DA;
  color: #7A7067;
  text-decoration: none;
}

.gp-articles-pagination .is-current {
  background: #C4918E;
  border-color: #C4918E;
  color: #fff;
}

/* 記事詳細: 関連記事カードを小さめに整える */
.gp-page-article-related {
  margin-top: 56px;
}

.gp-page-article-related-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 400;
  color: #2D2D2D;
  margin: 0 0 18px;
}

.gp-page-article-related .gp-top-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gp-page-article-related .gp-article-card {
  background: #fff;
  border: 1px solid #F0ECE6;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gp-page-article-related .gp-article-card > a {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.gp-page-article-related .gp-article-card__media,
.gp-page-article-related .gp-article-card__media--empty {
  height: 110px !important;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
}

.gp-page-article-related .gp-article-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.gp-page-article-related .gp-article-card__title {
  position: static !important;
  display: -webkit-box !important;
  font-size: 13px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 !important;
  padding: 10px 10px 12px !important;
  color: #2D2D2D !important;
  background: #fff !important;
  text-shadow: none !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: auto !important;
  min-height: 62px;
  letter-spacing: 0.02em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 767px) {
  .gp-article-author {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .gp-article-author-avatar {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }

  .gp-page-article-related .gp-top-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gp-page-article-related .gp-article-card__media,
  .gp-page-article-related .gp-article-card__media--empty {
    height: 90px !important;
  }

  .gp-page-article-related .gp-article-card__title {
    font-size: 12px;
    margin: 6px 8px 8px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Premium item detail (/items/view) — 応募・お気に入り
   トンマナ: gp-top の primary (#C4918E) / サブページ背景系 (#FAF8F5)
   ═══════════════════════════════════════════════════════════════ */

.gp-item-page-hero-cta {
  margin-bottom: 28px;
}

.gp-item-page-entry-main {
  margin-top: 22px;
}

.gp-item-entry-wrap--hero {
  background: #faf8f5;
  border: 1px solid #e8e2da;
  padding: 22px 20px;
  text-align: center;
  border-radius: 2px;
}

.gp-item-entry-wrap--cta-only .gp-item-entry-cta-row {
  margin: 0;
}

.gp-item-entry-fav {
  margin: 0 0 10px;
  text-align: center;
}

.gp-item-entry-fav-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #7a7067;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gp-item-entry-fav-link:hover {
  color: #c4918e;
}

.gp-item-entry-fav-done {
  display: inline-block;
  margin-right: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #a8706d;
  letter-spacing: 0.04em;
}

.gp-item-entry-fav-trigger {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #7a7067;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gp-item-entry-fav-trigger:hover {
  color: #c4918e;
}

.gp-item-entry-cta-row {
  margin: 0;
  text-align: center;
}

.gp-item-entry-wrap:not(.gp-item-entry-wrap--cta-only) .gp-item-entry-cta-row {
  margin-top: 4px;
}

a.gp-item-entry-cta,
button.gp-item-entry-cta {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 360px;
  background: #c4918e;
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.12em;
  padding: 15px 28px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  text-align: center;
  border-radius: 2px;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  line-height: 1.5;
}

a.gp-item-entry-cta:hover,
button.gp-item-entry-cta:hover {
  background: #a8706d;
  color: #fff !important;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.gp-item-entry-wrap--hero a.gp-item-entry-cta,
.gp-item-entry-wrap--hero button.gp-item-entry-cta {
  max-width: 400px;
  padding: 16px 32px;
}

.gp-item-entry-status {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: #5c534c;
}

.gp-item-entry-status--hero {
  display: block;
  padding: 14px 12px;
}

.gp-item-entry-status--closed {
  color: #7a7067;
}

.gp-item-entry-status--done {
  color: #c4918e;
  font-weight: 500;
}

.gp-item-entry-cancel-wrap {
  margin-top: 14px;
  text-align: center;
}

.gp-item-company-link {
  color: #c4918e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gp-item-company-link:hover {
  color: #a8706d;
}

.gp-item-gallery-main {
  overflow: hidden;
}

.gp-item-gallery-main img {
  display: block;
  vertical-align: top;
}

/* 案件詳細メイン: 正方形枠内に全体を収める（縦長の「見切れ」感を減らす） */
.gp-item-gallery-stage .gp-item-gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gp-item-gallery-stage .gp-item-gallery-main > .gp-item-gallery-main__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.gp-item-gallery-stage .gp-item-gallery-main > .gp-item-gallery-main--placeholder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.gp-item-gallery-main--placeholder {
  min-height: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  color: #9b9388;
  font-size: 13px;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 案件詳細ギャラリー: 自動送り + 矢印ナビ */
.gp-item-gallery-stage {
  position: relative;
}

.gp-item-gallery-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  color: #5c534c;
  font-size: 26px;
  line-height: 1;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.gp-item-gallery-nav:hover,
.gp-item-gallery-nav:focus {
  background: rgba(255, 255, 255, 0.72);
  color: #c4918e;
  outline: none;
}

.gp-item-gallery-nav--prev {
  left: 10px;
}

.gp-item-gallery-nav--next {
  right: 10px;
}

.gp-item-gallery-thumb--active {
  outline: 2px solid #c4918e;
  outline-offset: 1px;
}

@media (max-width: 480px) {
  .gp-item-gallery-nav {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .gp-item-gallery-nav--prev {
    left: 6px;
  }

  .gp-item-gallery-nav--next {
    right: 6px;
  }
}

/* ─── ポイント交換モール（/points・トップリニューアルトンマナ） ─── */
.gp-point-about-page {
  max-width: 1120px;
  margin: 0 auto 56px;
  padding: 122px 16px 0;
}

.gp-point-about-page__title {
  margin: 0 0 12px;
  font-family: 'Noto Serif JP', serif;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #2d2d2d;
}

.gp-point-about-page__lead {
  margin: 0 0 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #6c6359;
}

.gp-point-about-page__disclaimer {
  margin: -12px 0 24px;
  padding: 12px 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  line-height: 1.75;
  color: #8a8076;
  background: #faf8f5;
  border: 1px solid #e8e2da;
  border-radius: 6px;
}

.gp-point-about-page__balance {
  padding: 16px 20px;
  margin-bottom: 26px;
  border: 1px solid #eadfd7;
  background: #faf6f2;
}

.gp-point-about-page__balance-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2d2d2d;
}

.gp-point-about-page__balance-value {
  margin-left: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  color: #a8706d;
  letter-spacing: 0.03em;
}

.gp-point-about-page__balance-link {
  margin-top: 10px;
  font-size: 13px;
}

.gp-point-about-page__balance-link a {
  color: #876059;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gp-point-about-page__balance-link a:hover {
  color: #a8706d;
}

.gp-point-about-page__guide-cta {
  margin: 12px 0 0;
  font-size: 14px;
}

.gp-point-about-page__guide-cta a {
  color: #876059;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gp-point-about-page__guide-cta a:hover {
  color: #a8706d;
}

.gp-point-mall {
  margin: 40px 0 56px;
  padding: 48px 24px 56px;
  background: #faf8f5;
  border: 1px solid #e8e2da;
  border-radius: 8px;
}

.gp-point-mall__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.gp-point-mall__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c4918e;
  margin: 0 0 12px;
}

.gp-point-mall__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #2d2d2d;
  margin: 0 0 14px;
  line-height: 1.45;
}

.gp-point-mall__lead {
  font-size: 14px;
  line-height: 1.85;
  color: #7a7067;
  margin: 0;
  font-weight: 300;
}

.gp-point-mall__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 991px) {
  .gp-point-about-page {
    padding-top: 108px;
  }

  .gp-point-about-page__title {
    font-size: 32px;
  }

  .gp-point-about-page__balance-label {
    font-size: 19px;
  }

  .gp-point-mall__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .gp-point-about-page {
    padding-top: 96px;
  }

  .gp-point-about-page__title {
    font-size: 28px;
    letter-spacing: 0.05em;
  }

  .gp-point-about-page__lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .gp-point-about-page__balance {
    padding: 14px 14px;
  }

  .gp-point-about-page__balance-label {
    display: block;
    font-size: 17px;
  }

  .gp-point-about-page__balance-value {
    display: inline-block;
    margin-left: 0;
    margin-top: 6px;
    font-size: 30px;
  }

  .gp-point-mall__grid {
    grid-template-columns: 1fr;
  }
}

.gp-point-mall-card {
  background: #fff;
  border: 1px solid #e8e2da;
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-transition: box-shadow 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}

.gp-point-mall-card:hover {
  border-color: #c4918e;
  box-shadow: 0 12px 40px rgba(30, 42, 58, 0.1);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.gp-point-mall-card__img-wrap {
  aspect-ratio: 4 / 3;
  background: #f5f2ed;
  overflow: hidden;
}

.gp-point-mall-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.gp-point-mall-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #a8a095;
  font-size: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}

.gp-point-mall-card__body {
  padding: 16px 18px 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gp-point-mall-card__badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a8706d;
  background: rgba(196, 145, 142, 0.12);
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-family: 'Noto Sans JP', sans-serif;
}

.gp-point-mall-card__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #2d2d2d;
  margin: 0 0 8px;
}

.gp-point-mall-card__pts {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #a8706d;
  margin: 0 0 10px;
}

.gp-point-mall-card__pts-unit {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
}

.gp-point-mall-card__summary {
  font-size: 13px;
  line-height: 1.65;
  color: #5c564d;
  margin: 0 0 10px;
}

.gp-point-mall-card__detail {
  font-size: 12px;
  line-height: 1.6;
  color: #7a7067;
  margin-top: auto;
  padding-top: 8px;
}

/* キュレーター記事編集（Summernote）: 本文内画像の表示幅を均一化 */
.article-summernote-form .note-editor .note-editable img {
  display: block;
  width: 100% !important;
  max-width: 640px !important;
  height: auto !important;
  margin: 12px auto !important;
  box-sizing: border-box;
}

/* ─── 応募履歴 (/users/applications) ─── */
.gp-app-history-wrap {
  max-width: 980px;
}

.gp-app-history-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-app-history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 20px;
  padding: 20px 22px;
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid #E8E2DA;
  border-radius: 6px;
  box-shadow: 0 1px 0 rgba(30, 42, 58, 0.04);
}

.gp-app-history-item--with-actions {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gp-app-history-thumb {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 132px;
  flex: 0 0 132px;
  width: 132px;
  height: 99px;
  background: #F0ECE6;
  border-radius: 4px;
  overflow: hidden;
}

.gp-app-history-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.gp-app-history-thumb .gp-app-history-noimg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #C4918E;
  text-transform: uppercase;
}

.gp-app-history-noimg-line {
  display: block;
  line-height: 1.25;
}

.gp-app-history-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gp-app-history-meta {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #9E968D;
}

.gp-app-history-meta-value {
  color: #7A7067;
}

.gp-app-history-meta--muted {
  margin-top: 6px;
  margin-bottom: 0;
}

.gp-app-history-meta-sep {
  margin: 0 8px;
  color: #E8E2DA;
}

.gp-app-history-aside {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  align-self: center;
}

.gp-app-history-btn-remove {
  display: inline-block;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #7a7067;
  background: #faf8f5;
  border: 1px solid #e8e2da;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
}

.gp-app-history-btn-remove:hover {
  color: #a8706d;
  border-color: #c4918e;
  background: #fff;
}

.gp-app-history-title {
  margin: 0 0 10px;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #2D2D2D;
}

.gp-app-history-title a {
  color: #2D2D2D;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 145, 142, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.gp-app-history-title a:hover,
.gp-app-history-title a:focus {
  color: #A8706D;
  border-bottom-color: #C4918E;
}

.gp-app-history-date {
  margin: 0;
  font-size: 12px;
  color: #9E968D;
  letter-spacing: 0.03em;
}

.gp-app-history-empty {
  margin: 0;
  padding: 28px 20px;
  text-align: center;
  font-size: 14px;
  color: #7A7067;
  border: 1px dashed #E8E2DA;
  border-radius: 6px;
  background: #FAF8F5;
}

@media (max-width: 767px) {
  .gp-app-history-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
    padding: 16px 16px 18px;
  }

  .gp-app-history-item--with-actions {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .gp-app-history-thumb {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    max-width: none;
  }

  .gp-app-history-title {
    font-size: 15px;
  }

  .gp-app-history-aside {
    width: 100%;
    text-align: right;
    padding-top: 4px;
  }
}
