:root {
  --spd-pink: #f66b9c;
  --spd-deep: #c00072;
  --spd-line: #1a1a1a;
  --spd-soft: #f2f2f2;
  --spd-text: #050505;
}

html,
body.spd-body {
  scroll-behavior: smooth;
  background: #fff !important;
}

body.spd-body {
  margin: 0;
  color: var(--spd-text);
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

body.spd-body a {
  color: inherit;
  text-decoration: none;
}

body.spd-body img {
  max-width: 100%;
  height: auto;
}

.spd-top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #f76b9d;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.spd-top-nav div {
  max-width: 1260px;
  margin: 0 auto;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.spd-top-nav div::-webkit-scrollbar {
  display: none;
}

.spd-top-nav a {
  flex: 0 0 auto;
  padding: 15px 18px 14px;
  color: #fff !important;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, Arial, sans-serif !important;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0,0,0,.12);
}

.spd-top-nav a:hover {
  background: rgba(255,255,255,.15);
  color: #fff !important;
}

.spd-layout {
  max-width: 1200px;
  margin: 34px auto 70px;
  display: grid;
  grid-template-columns: minmax(0, 780px) 320px;
  gap: 60px;
  align-items: start;
  min-height: calc(100vh - 154px);
}

.spd-main {
  min-width: 0;
}

.spd-page-title {
  margin: 0 0 22px;
  padding-bottom: 8px;
  border-bottom: 2px solid #111;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
}

.spd-section,
.spd-single {
  width: 100%;
}

.spd-girl-panel {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px dotted var(--spd-pink);
  color: inherit;
  text-decoration: none;
}

.spd-girl-panel.is-compact {
  margin-top: 10px;
}

.spd-girl-photo {
  display: block;
  width: 160px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee;
}

.spd-girl-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spd-girl-info {
  padding-top: 2px;
}

.spd-girl-name {
  display: inline-block;
  color: #ff3d92;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.spd-girl-name span {
  margin-left: 2px;
}

.spd-girl-info p {
  margin: 10px 0 2px;
  color: #000;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.spd-girl-shift {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--spd-deep);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.spd-girl-shift b {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--spd-deep);
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.spd-diary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 24px;
}

.spd-diary-card {
  min-width: 0;
  min-height: 150px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 15px;
  padding: 0 0 18px;
  border-bottom: 1px dotted var(--spd-pink);
}

.spd-diary-card__media {
  display: block;
  width: 150px;
  height: 150px;
  overflow: hidden;
  background: #f4f4f4;
}

.spd-diary-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spd-card-no-image {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  color: #cfcfcf;
  background: repeating-linear-gradient(-45deg, #fafafa 0 8px, #f4f4f4 8px 16px);
  border: 1px solid #e8e8e8;
  text-align: center;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
}

.spd-card-no-image small {
  color: #d6d6d6;
  font-size: 11px;
}

.spd-diary-card__body {
  min-width: 0;
}

.spd-diary-card__date {
  margin: 0 0 3px;
  color: #111;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
}

.spd-diary-card__name {
  display: block;
  width: 100%;
  color: #000;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
}

.spd-diary-card__size {
  margin: 2px 0 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #444;
  color: #000;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.spd-diary-card__shift {
  margin: 0 0 5px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  color: var(--spd-deep);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.spd-diary-card__shift b {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--spd-deep);
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.spd-diary-card__badges {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 3px 0 5px;
}

.spd-diary-card__badges span {
  min-width: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 2px 9px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.spd-diary-card__badges .is-pink {
  background: #d90072;
}

.spd-diary-card__badges .is-orange {
  background: #f5a000;
}

.spd-diary-card__title {
  display: -webkit-box;
  margin: 2px 0 4px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #ff4a98;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.spd-diary-card__excerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.spd-list-item {
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px dotted var(--spd-pink);
}

.spd-list-title {
  display: inline-block;
  margin: 4px 0 8px;
  color: #000;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.spd-post-meta {
  margin: 12px 0 14px;
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

.spd-diary-excerpt {
  margin: 0 0 16px;
  color: #222;
  font-size: 16px;
  font-weight: 600;
}

.spd-list-media {
  display: block;
  width: min(100%, 520px);
  margin-top: 14px;
}

.spd-list-media img,
.spd-single-body img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 760px;
  object-fit: contain;
}

.spd-no-image {
  width: min(100%, 520px);
  height: 280px;
  display: grid;
  place-items: center;
  background: #f4f4f4;
  color: #111;
  font-size: 20px;
  font-weight: 700;
}

.spd-list-actions,
.spd-single-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.spd-list-actions > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--spd-pink);
  background: #fff;
  color: var(--spd-deep);
  font-size: 14px;
  font-weight: 900;
}

.spd-like {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border: 2px solid var(--spd-pink);
  border-radius: 999px;
  background: #fff;
  color: var(--spd-deep);
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
}

.spd-like span {
  font-size: 18px;
}

.spd-like.is-liked {
  background: var(--spd-pink);
  color: #fff;
}

.spd-like.is-busy {
  opacity: .62;
  pointer-events: none;
}

.spd-reserve-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff3b67, #ff1493);
  color: #fff !important;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(255,64,130,.18);
}

.spd-single-title {
  margin: 4px 0 18px;
  color: #000;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.45;
}

.spd-single-body {
  color: #111;
  font-size: 17px;
  font-weight: 600;
}

.spd-single-body p {
  margin: 0 0 18px;
}

.spd-bottom-nav,
.spd-pager {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.spd-bottom-nav a,
.spd-pager a,
.spd-pager span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--spd-line);
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.spd-bottom-nav a:hover,
.spd-pager a:hover {
  border-color: var(--spd-pink);
  color: var(--spd-deep);
}

.spd-bottom-nav .is-wide {
  grid-column: 1 / -1;
  border-color: var(--spd-pink);
  color: var(--spd-deep);
}

.spd-bottom-nav .is-disabled {
  opacity: .35;
}

.spd-empty {
  padding: 42px 20px;
  border: 1px solid #ddd;
  background: #fafafa;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
}

.spd-shop-card {
  position: sticky !important;
  top: 74px;
  align-self: start;
  height: max-content;
  max-height: calc(100vh - 92px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

body.admin-bar .spd-shop-card {
  top: 106px;
  max-height: calc(100vh - 124px);
}

.spd-shop-box {
  padding: 28px 22px 22px;
  background: var(--spd-soft);
}

.spd-rank-badge {
  display: none !important;
}

.spd-card-logo {
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  text-align: center;
}

.spd-card-logo img {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 96px;
  object-fit: contain;
}

.spd-shop-box h2 {
  margin: 0;
  color: #ff4a98;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.spd-shop-area {
  margin: 4px 0 20px;
  color: #000;
  font-size: 15px;
  font-weight: 900;
}

.spd-shop-box dl {
  margin: 0;
}

.spd-shop-box dl div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  padding: 15px 0;
  border-top: 1px solid #222;
}

.spd-shop-box dt,
.spd-shop-box dd {
  margin: 0;
}

.spd-shop-box dt {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #333;
  border-radius: 50%;
  color: #333;
  font-size: 14px;
  font-weight: 900;
}

.spd-shop-box dd {
  color: #000;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
  min-width: 0;
}

.spd-shop-box dd strong {
  display: block;
  font-size: 21px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-break: anywhere;
}

.spd-shop-box dd .is-pink,
.spd-shop-box dd strong.is-pink {
  color: #ff4a98;
}

.spd-shop-box dd em {
  display: block;
  color: #f00;
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.spd-shop-box dd a {
  color: #0074e8;
  font-weight: 700;
}

.spd-to-top {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 999;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: #191919;
  color: #fff !important;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}

.spd-to-top span {
  display: block;
  font-size: 14px;
}

.spd-service-footer {
  max-width: 1200px;
  margin: -34px auto 46px;
  padding: 16px 12px 0;
  border-top: 1px solid #ededed;
  text-align: center;
}

.spd-service-footer a {
  color: #8b8b8b !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.spd-service-footer b {
  color: #ff4a98;
  font-weight: 900;
}

.spd-service-footer a:hover {
  color: #111 !important;
}

.spd-menu-item > a,
a.spd-menu-item {
  font: inherit;
}

.spd-profile-embed {
  width: min(100%, 1040px);
  margin: 54px auto;
  padding: 0;
  color: #111;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

.spd-profile-embed__head {
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid #111;
  text-align: center;
}

.spd-profile-embed__head h2 {
  margin: 0;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.spd-profile-embed__head p {
  margin: 5px 0 0;
  color: #a17b33;
  font-size: 14px;
  font-weight: 800;
}

.spd-profile-embed__feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.spd-profile-diary-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e3d5bf;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 34px rgba(76,56,22,.08);
}

.spd-profile-diary-card__account {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid #eee1cc;
}

.spd-profile-diary-card__account img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  object-fit: cover;
}

.spd-profile-diary-card__account b {
  display: block;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.spd-profile-diary-card__account span {
  display: block;
  color: #9a7a3f;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.spd-profile-diary-card__media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f7f3ed;
}

.spd-profile-diary-card__media img,
.spd-profile-diary-card__media .spd-card-no-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spd-profile-diary-card__body {
  padding: 12px;
}

.spd-profile-diary-card__title {
  display: block;
  color: #111;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.spd-profile-diary-card__body p {
  display: -webkit-box;
  margin: 7px 0 12px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.spd-profile-diary-card .spd-like {
  min-height: 34px;
  padding: 0 13px;
  font-size: 12px;
}

.spd-profile-embed__empty {
  padding: 34px 16px;
  border: 1px solid #e3d5bf;
  background: rgba(255,255,255,.75);
  text-align: center;
  font-size: 15px;
  font-weight: 800;
}

.spd-profile-embed__more {
  width: min(100%, 340px);
  min-height: 48px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d0a64f;
  background: linear-gradient(90deg, #fff3bf, #d9aa43);
  color: #111 !important;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none !important;
}

@media (max-width: 980px) {
  .spd-top-nav div {
    justify-content: flex-start;
    padding: 0 8px;
  }

  .spd-layout {
    width: min(100% - 24px, 720px);
    margin-top: 22px;
    display: block;
  }

  .spd-shop-card {
    position: static !important;
    margin-top: 34px;
    max-height: none;
    overflow: visible;
  }

  .spd-shop-box {
    padding: 24px 20px 22px;
  }

  .spd-profile-embed {
    width: min(100% - 24px, 720px);
  }

  .spd-profile-embed__feed {
    grid-template-columns: 1fr;
  }

  .spd-shop-box dd strong {
    font-size: clamp(18px, 5.4vw, 21px);
  }
}

@media (max-width: 560px) {
  .spd-top-nav a {
    padding: 14px 13px;
    font-size: 13px;
  }

  .spd-page-title {
    font-size: 22px;
  }

  .spd-layout {
    width: min(100% - 24px, 440px);
    min-height: calc(100vh - 128px);
  }

  .spd-girl-panel {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
  }

  .spd-girl-photo {
    width: 104px;
  }

  .spd-girl-name {
    font-size: 19px;
  }

  .spd-girl-info p,
  .spd-girl-shift {
    font-size: 16px;
  }

  .spd-diary-grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .spd-diary-card {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 12px;
    min-height: 128px;
    padding-bottom: 16px;
  }

  .spd-diary-card__media {
    width: 128px;
    height: 128px;
  }

  .spd-diary-card__date {
    font-size: 10px;
  }

  .spd-diary-card__name {
    font-size: 17px;
  }

  .spd-diary-card__size {
    font-size: 12px;
  }

  .spd-diary-card__shift {
    gap: 5px;
    font-size: 13px;
  }

  .spd-diary-card__shift b {
    min-height: 20px;
    padding: 2px 8px;
    font-size: 11px;
  }

  .spd-diary-card__title {
    font-size: 15px;
  }

  .spd-diary-card__excerpt {
    -webkit-line-clamp: 3;
    font-size: 12px;
  }

  .spd-list-media,
  .spd-no-image {
    width: 100%;
  }

  .spd-bottom-nav,
  .spd-pager {
    grid-template-columns: 1fr;
  }

  .spd-single-actions,
  .spd-list-actions {
    align-items: stretch;
  }

  .spd-like,
  .spd-reserve-btn,
  .spd-list-actions > a {
    width: 100%;
  }

  .spd-to-top {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
    font-size: 20px;
  }

  .spd-to-top span {
    font-size: 12px;
  }

  .spd-service-footer {
    width: min(100% - 24px, 440px);
    margin: -8px auto 36px;
    padding-top: 14px;
  }

  .spd-shop-box {
    padding: 22px 18px 20px;
  }

  .spd-card-logo img {
    max-width: 168px;
    max-height: 82px;
  }

  .spd-shop-box h2 {
    font-size: 21px;
  }

  .spd-shop-box dl div {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
  }

  .spd-shop-box dd {
    font-size: 13px;
  }

  .spd-shop-box dd strong {
    font-size: 17px;
    line-height: 1.38;
  }
}
