/* =========================================================
   D-girl FANZA Theme - main.css
   Cleaned / organized version
   ========================================================= */

/* ---------------------------------------------------------
   01. Design Tokens
   --------------------------------------------------------- */
:root {
  --red: #e60012;
  --red-dark: #cf0010;
  --text: #111;
  --sub: #444;
  --line: #e8dfdc;
  --soft: #f7f2ef;
  --card: #fcfaf9;
  --gold: #d2a04c;
  --shadow: 0 14px 30px rgba(0, 0, 0, .06);
  --radius: 16px;
}

/* ---------------------------------------------------------
   02. Reset / Base
   --------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'YuGothic', 'Meiryo', sans-serif;
  background: #ece5e3;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---------------------------------------------------------
   03. Layout
   --------------------------------------------------------- */
.dgf-site-bg {
  padding: 0;
}

.dgf-page-shell {
  margin: 0 auto;
  padding-top: 74px;
  background: #fff;
  border: 1px solid #ddd4d1;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .08);
  overflow: hidden;
}

.dgf-container {
  width: min(100% - 56px, 1120px);
  margin: 0 auto;
}

.section {
  padding: 10px 0;
  margin-top:50px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 8px 0 16px;
  font-family: Georgia, 'Times New Roman', 'Yu Mincho', 'YuMincho', serif;
  font-size: 26px;
  font-weight: 500;
}

.section-title::before,
.section-title::after {
  content: '';
  width: 40px;
  height: 1px;
  background: #ddd;
}

#about,
#work-style,
#entry-flow,
#faq,
#entry,
#company,
#work-detail,
#fanza-detail,
#noface-detail,
#beginner-detail {
  scroll-margin-top: 110px;
}

/* ---------------------------------------------------------
   04. Header / Navigation
   --------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 9999;
  width: 100%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
  backdrop-filter: blur(10px);
}

.admin-bar .site-header {
  top: 46px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
}

.site-brand {
  display: flex;
  align-items: center;
  min-width: 120px;
  margin-left: 3%;
}

.brand-main {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.03em;
}

.custom-logo {
  max-width: 85px;
  height: auto;
}

.global-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.global-nav ul,
.footer-nav ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav a,
.footer-nav a {
  color: #222;
  font-size: 11px;
  font-weight: 700;
}

.header-ctas {
  display: flex;
  gap: 10px;
  margin-left: 8px;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #222;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta {
  padding: 12px 16px;
  font-size: 12px;
}

.nav-cta-red,
.btn-red {
  color: #fff;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  border-color: var(--red);
}

.nav-cta-white,
.btn-white {
  color: #111;
  background: #fff;
}

/* Hamburger */
.menu-toggle {
  display: none;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  line-height: 1;
}

.menu-toggle-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  background: var(--red);
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(230, 0, 18, .22);
}

.menu-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle-label {
  display: block;
  margin-top: 1px;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .06em;
}

.menu-toggle.is-open .menu-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------------------------------------------------------
   05. Hero
   --------------------------------------------------------- */
.hero {
  padding: 0;
  background: linear-gradient(180deg, #fff, #fdfbfb);
}

.hero-stage {
  position: relative;
  min-height: 430px;
}

.hero-copy {
  position: absolute;
  top: 34px;
  left: 32px;
  z-index: 3;
  max-width: 620px;
  padding: 0;
}

.eyebrow {
  margin: 10px 0 8px;
  color: var(--red);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: Georgia, 'Times New Roman', 'Yu Mincho', 'YuMincho', serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .45);
}

.hero-desc {
  max-width: 470px;
  margin: 0 0 22px;
  color: #222;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.95;
}

.hero-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  width: auto;
  max-width: none;
}

.btn {
  min-width: 230px;
  padding: 15px 18px;
  font-size: 14px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .04);
}

.btn span {
  font-size: 22px;
  line-height: 1;
}

.hero-copy .btn,
.hero-buttons .btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 230px;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background-color: #faf8f8;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 10px 10px;
}

.hero-visual-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, .95) 0%,
    rgba(255, 255, 255, .88) 14%,
    rgba(255, 255, 255, .60) 28%,
    rgba(255, 255, 255, .18) 48%,
    rgba(255, 255, 255, .04) 72%,
    rgba(255, 255, 255, .12) 100%);
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 20px;
  z-index: 2;
  width: 190px;
}

.hero-badge img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .05));
}

/* ---------------------------------------------------------
   06. Reason Cards
   --------------------------------------------------------- */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.reason-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 100px;
  padding: 14px;
  background: #fbfaf9;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.reason-card img {
  flex: 0 0 44px;
  width: 130px;
  height: 130px;
  object-fit: contain;
}

.reason-copy h3 {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.35;
}

.reason-copy p {
  margin: 0;
  color: #222;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.65;
}

/* ---------------------------------------------------------
   08. Flow
   --------------------------------------------------------- */
.flow-section {
  padding-top: 4px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  gap: 14px;
}

.flow-card,
.privacy-card {
  position: relative;
  min-height: 154px;
  padding: 16px 14px 14px;
  text-align: center;
  background: #fbfaf9;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.flow-card img {
  width: 46px;
  height: 46px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.flow-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.35;
}

.flow-card p,
.privacy-card p {
  margin: 0;
  color: #222;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.65;
}

.flow-num {
  position: absolute;
  top: -11px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: var(--red);
  border-radius: 50%;
}

.flow-card.has-arrow::after {
  content: '⋯';
  position: absolute;
  top: 46px;
  right: -15px;
  color: #777;
  font-size: 28px;
  letter-spacing: 2px;
}

.privacy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.privacy-card strong {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.5;
}

.privacy-card img {
  width: 160px;
  height: 160px;
  margin: 8px 0;
}

/* ---------------------------------------------------------
   09. Information Cards
   --------------------------------------------------------- */
.cards-section {
  padding-top: 12px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.info-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fbfaf9;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.info-thumb {
  aspect-ratio: 16 / 10;
  background: #f2ece9;
}

.info-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px 14px;
}

.info-body h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.info-body p {
  flex: 1;
  margin: 0;
  color: #222;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 800;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 6px;
}

/* ---------------------------------------------------------
   10. FAQ
   --------------------------------------------------------- */
.faq-section {
  padding-top: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 32% 1fr;
  align-items: start;
  gap: 14px;
}

.faq-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 146px;
  padding: 26px 20px;
  background: linear-gradient(180deg, #faf4f2, #f8f5f3);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.faq-side h2 {
  margin: 0 0 14px;
  font-family: Georgia, 'Times New Roman', 'Yu Mincho', 'YuMincho', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
}

.faq-side a {
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.faq-list details {
  overflow: hidden;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '⌄';
  margin-left: auto;
  color: #222;
}

.faq-list summary span {
  margin-right: 10px;
  color: var(--red);
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
  color: #333;
  font-size: 12px;
  line-height: 1.7;
}

/* ---------------------------------------------------------
   11. Bottom CTA
   --------------------------------------------------------- */
.bottom-cta {
  padding: 14px 0 18px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: stretch;
  gap: 14px;
}

.cta-copy {
  padding: 18px 18px 14px;
  background: #fbfaf9;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.cta-copy h2 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 700;
}

.cta-copy p {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
}

.cta-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-checks span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
}

.cta-checks span::before {
  content: '◯';
  color: var(--red);
  font-size: 13px;
}

.cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.cta-box small {
  display: block;
  margin-bottom: 10px;
  color: #444;
  font-size: 12px;
  font-weight: 800;
}

.cta-box .btn {
  width: 100%;
  min-width: 0;
  padding: 15px 14px;
}

.cta-box p {
  margin: 8px 0 0;
  color: #555;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
}

.cta-fanza {
  background: #fff8f8;
  border-color: #f0d6d6;
}

/* ---------------------------------------------------------
   12. SEO Content Sections
   --------------------------------------------------------- */
.seo-lead-section,
.seo-support-section,
.seo-pages-section {
  background: #fff;
}

.seo-lead-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: stretch;
  gap: 16px;
}

.seo-lead-card,
.seo-text-block,
.seo-page-card {
  background: #fbfaf9;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .035);
}

.seo-lead-card {
  padding: 28px 30px;
}

.seo-lead-main {
  background: linear-gradient(135deg, #fff, #fff7f7);
}

.seo-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.seo-lead-card h2,
.seo-text-block h2,
.seo-pages-head h2 {
  margin: 0 0 12px;
  font-family: Georgia, 'Times New Roman', 'Yu Mincho', 'YuMincho', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.35;
}

.seo-lead-card p,
.seo-text-block p,
.seo-pages-head p,
.seo-page-card p {
  margin: 0;
  color: #222;
  font-size: 14px;
  font-weight: 650;
  line-height: 2;
}

.seo-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.seo-text-block {
  padding: 24px 26px;
}

.seo-text-block h2 {
  font-size: 24px;
}

.seo-pages-head {
  max-width: 840px;
  margin: 0 auto 18px;
  text-align: center;
}

.seo-pages-head h2 {
  font-size: 30px;
}

.seo-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.seo-page-card {
  display: block;
  padding: 20px 18px;
  color: #111;
  transition: transform .18s ease, box-shadow .18s ease;
}

.seo-page-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .06);
}

.seo-page-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.45;
}

.seo-page-card p {
  font-size: 12px;
  line-height: 1.8;
}

.seo-page-card span {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

/* ---------------------------------------------------------
   13. Footer / Pages
   --------------------------------------------------------- */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.8fr .8fr;
  align-items: center;
  gap: 18px;
  min-height: 78px;
}

.footer-brand .brand-main {
  display: block;
  font-size: 28px;
}

.footer-brand .brand-sub {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}

.footer-contact strong {
  font-size: 14px;
}

.footer-contact small {
  color: #444;
  font-size: 12px;
  font-weight: 700;
}

.copyright {
  padding: 9px 16px;
  color: #fff;
  font-size: 11px;
  text-align: center;
  background: #111;
}

.page-content,
.post-card {
  padding: 28px 0;
}

.entry-content {
  #padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

/* ---------------------------------------------------------
   14. Responsive - Tablet
   --------------------------------------------------------- */
@media (max-width: 1100px) {
  .hero h1 {
    font-size: 56px;
  }

  .global-nav ul {
    gap: 12px;
  }

  .header-ctas {
    gap: 8px;
  }

  .nav-cta {
    padding: 11px 12px;
  }
}

@media (max-width: 960px) {
  .dgf-page-shell {
    padding-top: 68px;
  }

  .dgf-container {
    width: min(100% - 32px, 1120px);
  }

  .header-inner {
    position: relative;
    align-items: center;
    min-height: 68px;
    padding: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-brand {
    position: relative;
    z-index: 31;
  }

  .global-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: auto;
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, calc(100vw - 32px));
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav ul,
  .header-ctas,
  .footer-nav ul {
    flex-direction: column;
  }

  .global-nav ul li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-ctas {
    margin-left: 0;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .faq-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .hero-visual {
    min-height: 360px;
  }

  .hero-copy {
    max-width: 340px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-visual {
    background-position: center top;
    border-radius: 12px;
  }

  .reason-grid,
  .cards-grid,
  .footer-inner,
  .seo-lead-grid,
  .seo-two-column,
  .seo-page-grid {
    grid-template-columns: 1fr 1fr;
  }

  .seo-lead-main {
    grid-column: 1 / -1;
  }

  .flow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .privacy-card {
    grid-column: span 2;
  }

  .flow-card.has-arrow::after {
    display: none;
  }

  .footer-contact {
    text-align: left;
  }

  .seo-lead-card h2,
  .seo-pages-head h2 {
    font-size: 26px;
  }

  .seo-text-block h2 {
    font-size: 22px;
  }
}

/* ---------------------------------------------------------
   15. Responsive - Mobile
   --------------------------------------------------------- */
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 60px;
  }
}

@media (max-width: 640px) {
  .dgf-site-bg {
    padding: 0;
  }

  .dgf-page-shell {
    padding-top: 56px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .dgf-container {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header {
    top: 0;
    width: calc(100% - 16px);
    height: 50px;
    background: #fff;
    border-radius: 12px 12px 0 0;
  }

  .admin-bar .site-header {
    top: 54px;
  }

  .header-inner {
    gap: 10px;
    height: 50px;
    min-height: 50px;
    padding: 0;
  }

  .site-brand {
    min-width: 0;
  }

  .brand-main {
    font-size: 24px;
    line-height: 1;
  }

  .custom-logo {
    max-width: 60px;
  }

  .menu-toggle-box {
    width: 38px;
    height: 38px;
    gap: 3px;
    border-radius: 6px;
    box-shadow: none;
  }

  .menu-toggle-line {
    width: 16px;
  }

  .menu-toggle-label {
    font-size: 7px;
    line-height: 1;
  }

  .global-nav {
    top: 48px;
    right: 10px;
    width: min(290px, calc(100vw - 20px));
    padding: 14px;
    border-radius: 10px;
  }

  #about,
  #work-style,
  #entry-flow,
  #faq,
  #entry,
  #company,
  #work-detail,
  #fanza-detail,
  #noface-detail,
  #beginner-detail {
    scroll-margin-top: 86px;
  }

  .hero {
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .hero .dgf-container {
    padding-right: 0;
    padding-left: 0;
  }

  .hero-stage {
    position: relative;
    min-height: 294px;
    overflow: hidden;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 0;
    height: 100%;
    background-color: #fff;
    background-position: right -8px top 22px;
    background-repeat: no-repeat;
    background-size: auto 86%;
    border-radius: 0;
  }

  .hero-visual-fade {
    background: linear-gradient(90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, .99) 24%,
      rgba(255, 255, 255, .92) 43%,
      rgba(255, 255, 255, .60) 57%,
      rgba(255, 255, 255, .18) 73%,
      rgba(255, 255, 255, 0) 100%);
  }

  .hero-copy {
    position: absolute;
    top: 18px;
    right: auto;
    left: 18px;
    z-index: 3;
    width: 260px;
    max-width: calc(100vw - 34px);
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
  }

  .eyebrow {
    max-width: 250px;
    margin: 0 0 8px;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 0;
  }

  .hero h1 {
    max-width: 240px;
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.08;
    letter-spacing: -.03em;
  }

  .hero-desc {
    max-width: 170px;
    margin: 0 0 10px;
    font-size: 9.5px;
    font-weight: 700;
    line-height: 1.65;
  }

  .hero-buttons {
    position: static !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    width: 244px;
    max-width: calc(100vw - 36px);
    margin-top: 8px;
  }

  .hero-buttons .btn,
  .hero-copy .btn {
    display: flex;
    width: 100%;
    min-width: 0;
    padding: 9px 6px;
    font-size: 9.5px;
    line-height: 1.2;
    white-space: nowrap;
    border-radius: 4px;
    box-shadow: none;
    gap: 4px;
  }

  .hero-buttons .btn span {
    font-size: 14px;
  }

  .hero-badge {
    display: none !important;
  }


  .section-title{
        font-size: 20px;
            gap: 10px;
  }

  .section .dgf-container,
  .info-cards.dgf-container,
  .faq.dgf-container,
  .bottom-cta .dgf-container,
  .seo-lead-section .dgf-container,
  .seo-support-section .dgf-container,
  .seo-pages-section .dgf-container {
    padding-right: 12px;
    padding-left: 12px;
  }

  .reason-grid,
  .cards-grid,
  .flow-grid,
  .footer-inner,
  .seo-lead-grid,
  .seo-two-column,
  .seo-page-grid {
    grid-template-columns: 1fr;
    margin: 20px 0px;
  }

  .privacy-card {
    grid-column: auto;
  }

  .faq-side h2 {
    font-size: 26px;
  }

  .cta-copy h2 {
    font-size: 22px;
  }

  .footer-contact {
    text-align: left;
  }

  .seo-lead-grid,
  .seo-two-column,
  .seo-page-grid {
    gap: 12px;
  }

  .seo-lead-card,
  .seo-text-block,
  .seo-page-card {
    padding: 18px 16px;
  }

  .seo-lead-card h2,
  .seo-pages-head h2 {
    font-size: 23px;
  }

  .seo-text-block h2 {
    font-size: 21px;
  }

  .seo-lead-card p,
  .seo-text-block p,
  .seo-pages-head p {
    font-size: 13px;
    line-height: 1.9;
  }

  .seo-page-card p {
    font-size: 12px;
  }
}

@media (max-width: 374px) {
  .hero-copy {
    left: 14px;
    width: 248px;
  }

  .hero-visual {
    background-position: right -18px top 26px;
    background-size: auto 82%;
  }

  .hero h1 {
        max-width: 240px;
        font-size: 25px;
  }

  .hero-desc {
    max-width: 164px;
    font-size: 9px;
  }

  .hero-buttons {
    width: 232px;
  }

  .hero-buttons .btn {
    padding: 8px 4px;
    font-size: 8.8px;
  }
}

/* ---------------------------------------------------------
   17. Final layout adjustment: Reasons / Flow 2-column large images
   --------------------------------------------------------- */
@media (min-width: 961px) {
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .reason-card {
    display: grid;
    grid-template-columns: 118px 1fr;
    align-items: center;
    min-height: 184px;
    padding: 26px 28px;
    gap: 24px;
    border-radius: 16px;
  }

  .reason-card img {
    width: 130px;
    height: 130px;
    flex: none;
    justify-self: center;
  }

  .reason-copy h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.45;
  }

  .reason-copy p {
    font-size: 14px;
    line-height: 1.9;
  }

  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .flow-card {
    display: grid;
    grid-template-columns: 118px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    min-height: 184px;
    padding: 26px 28px 26px 30px;
    gap: 4px 24px;
    text-align: left;
    border-radius: 16px;
  }

  .flow-card img {
    grid-row: 1 / span 2;
    grid-column: 1;
    width: 104px;
    height: 104px;
    margin: 0;
    justify-self: center;
  }

  .flow-card h3 {
    grid-row: 1;
    grid-column: 2;
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.45;
  }

  .flow-card p {
    grid-row: 2;
    grid-column: 2;
    font-size: 14px;
    line-height: 1.9;
  }

  .flow-num {
    top: 18px;
    left: 18px;
    width: 32px;
    height: 32px;
    font-size: 14px;
    box-shadow: 0 8px 14px rgba(230, 0, 18, .18);
  }

  .flow-card.has-arrow::after {
    display: none;
  }

  .privacy-card {
    grid-column: 1 / -1;
    min-height: 170px;
    padding: 26px 30px;
    border-radius: 16px;
  }

  .privacy-card img {
    width: 160px;
    height: 160px;
  }

  .privacy-card strong {
    font-size: 22px;
  }

  .privacy-card p {
    max-width: 680px;
    font-size: 14px;
    line-height: 1.9;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .reason-grid,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .reason-card,
  .flow-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 220px;
    padding: 22px 20px;
    text-align: center;
    border-radius: 14px;
  }

  .reason-card img,
  .flow-card img {
    width: 130px;
    height: 130px;
    margin: 0 auto 12px;
  }

  .reason-copy h3,
  .flow-card h3 {
    font-size: 18px;
  }

  .reason-copy p,
  .flow-card p,
  .privacy-card p {
    font-size: 13px;
    line-height: 1.8;
  }

  .flow-card.has-arrow::after {
    display: none;
  }

  .privacy-card {
    grid-column: 1 / -1;
    border-radius: 14px;
  }

  .privacy-card img {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 640px) {
  .reason-card,
  .flow-card {
    min-height: auto;
    padding: 18px 16px;
    border-radius: 14px;
  }

  .reason-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 14px;
  }

  .reason-card img {
    width: 130px;
    height: 130px;
  }

  .reason-copy h3 {
    font-size: 16px;
  }

  .reason-copy p {
    font-size: 12px;
    line-height: 1.75;
  }

  .flow-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 4px 14px;
    text-align: left;
  }

  .flow-card img {
    grid-row: 1 / span 2;
    grid-column: 1;
    width: 130px;
    height: 130px;
    margin: 0;
  }

  .flow-card h3 {
    grid-row: 1;
    grid-column: 2;
    margin: 0 0 4px;
    font-size: 16px;
  }

  .flow-card p {
    grid-row: 2;
    grid-column: 2;
    font-size: 12px;
    line-height: 1.75;
  }

  .flow-num {
    top: 10px;
    left: 10px;
  }

  .flow-card.has-arrow::after {
    display: none;
  }

  .privacy-card img {
    width: 160px;
    height: 160px;
  }
}

/* ---------------------------------------------------------
   17. Salary / Reward Section
   Image-like HTML/CSS design, all text editable
   --------------------------------------------------------- */
.salary-section {
  position: relative;
  overflow: hidden;
  #background:
    radial-gradient(circle at 0% 8%, rgba(255, 218, 230, .62), transparent 28%),
    radial-gradient(circle at 100% 14%, rgba(255, 232, 238, .58), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fff9fb 100%);
}

.salary-section::before,
.salary-section::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: 340px;
  height: 340px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 181, 204, .18) 0 28%, transparent 60%);
  filter: blur(4px);
}

.salary-section::before {
  left: -190px;
  top: 40px;
}

.salary-section::after {
  right: -190px;
  top: 110px;
}

.salary-section .dgf-container {
  position: relative;
  z-index: 1;
}

.salary-intro {
  max-width: 860px;
  margin: 0 auto 22px;
  color: #3b3131;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}

.salary-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(255,249,251,.94) 48%, rgba(255,255,250,.96) 100%);
  border: 1px solid #f0dde1;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(126, 73, 85, .10);
}

.salary-panel::before {
  content: '';
  position: absolute;
  inset: 12px;
  z-index: 0;
  border: 1px solid rgba(213, 160, 76, .22);
  border-radius: 22px;
  pointer-events: none;
}

.salary-panel > * {
  position: relative;
  z-index: 1;
}

.salary-overview-head {
  position: relative;
  min-height: 152px;
  margin-bottom: 22px;
  padding: 28px 188px 28px 30px;
  #background:
    linear-gradient(135deg, rgba(255, 244, 248, .96) 0%, rgba(255,255,255,.96) 58%, rgba(255, 250, 238, .86) 100%);
  border: 1px solid #f1dce2;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.78);
}

.salary-overview-head::before {
  content: '✦';
  position: absolute;
  left: 22px;
  top: 16px;
  color: rgba(210, 160, 76, .72);
  font-size: 18px;
}

.salary-overview-copy {
  margin: 0;
  color: #332828;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.95;
}

.salary-burst {
  position: absolute;
  right: 28px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  transform: translateY(-50%);
  color: #7d371d;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fff7f1 100%);
  border: 2px solid rgba(210, 160, 76, .58);
  border-radius: 50%;
  box-shadow:
    0 12px 26px rgba(210, 160, 76, .16),
    inset 0 0 0 8px rgba(255,255,255,.85),
    inset 0 0 0 10px rgba(210,160,76,.14);
}

.salary-burst::before,
.salary-burst::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 54px;
  height: 70px;
  border-top: 2px solid rgba(210,160,76,.75);
  border-radius: 50%;
}

.salary-burst::before {
  right: 100%;
  transform: translate(15px, -35%) rotate(-34deg);
  border-left: 2px solid rgba(210,160,76,.55);
}

.salary-burst::after {
  left: 100%;
  transform: translate(-15px, -35%) rotate(34deg);
  border-right: 2px solid rgba(210,160,76,.55);
}

.salary-burst span {
  display: block;
  padding: 10px;
  color: #b5365e;
  font-family: Georgia, 'Times New Roman', 'Yu Mincho', 'YuMincho', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.42;
}

.salary-burst span::before {
  content: '♛';
  display: block;
  margin-bottom: 4px;
  color: #d2a04c;
  font-size: 18px;
  line-height: 1;
}

.salary-top-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}

.salary-earning-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 26px 24px 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,250,251,.96) 100%);
  border: 1px solid #f0dfe4;
  border-radius: 26px;
  box-shadow: 0 16px 30px rgba(126,73,85,.10);
}

.salary-earning-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(210,160,76,.18);
  border-radius: 18px;
  pointer-events: none;
}

.salary-earning-card::after {
  content: '';
  position: absolute;
  right: -58px;
  top: -58px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 220, 231, .9) 0%, rgba(255, 220, 231, .42) 40%, transparent 68%);
}

.salary-earning-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 34px;
  margin-bottom: 12px;
  padding: 0 14px;
  color: #e13d78;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  background: linear-gradient(180deg, #fff 0%, #fff1f6 100%);
  border: 1px solid #f4c5d3;
  border-radius: 999px;
}

.salary-earning-icon::before {
  content: '♡';
  margin-right: 6px;
  color: #e13d78;
  font-size: 14px;
  line-height: 1;
}

.salary-earning-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: #211717;
  #font-family: Georgia, 'Times New Roman', 'Yu Mincho', 'YuMincho', serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
}

.salary-bigpay-wrap {
  position: relative;
  z-index: 1;
  padding-top: 12px;
}

.salary-max {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 6px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  background: linear-gradient(135deg, #e84b83 0%, #c93363 100%);
  border: 1px solid rgba(210,160,76,.65);
  border-radius: 999px;
  box-shadow: 0 7px 14px rgba(232,75,131,.18);
}

.salary-bigpay-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.salary-bigpay-label {
  color: #2c2222;
  font-size: 22px;
  font-weight: 800;
}

.salary-bigpay-amount {
  color: #d83b6f;
  font-family: serif,'Yu Mincho', 'YuMincho';
  font-size: 64px;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.04em;
}

.salary-bigpay-suffix {
  display: block;
  margin-top: 8px;
  color: #d83b6f;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.salary-compare-wrap {
  padding: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid #f0dfe4;
  border-radius: 26px;
  box-shadow: 0 12px 24px rgba(126,73,85,.06);
}

.salary-compare-title {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 12px;
  color: #271d1d;
  font-family: Georgia, 'Times New Roman', 'Yu Mincho', 'YuMincho', serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.salary-compare-title::before,
.salary-compare-title::after {
  content: '✦';
  color: #d2a04c;
  font-size: 15px;
  margin: 0 12px;
}

.salary-compare-title::after {
  content: '✦';
}

.salary-compare-table {
  display: grid;
  gap: 12px;
}

.salary-compare-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7dddd;
  border-radius: 18px;
}

.salary-compare-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  background: #847e7d;
}

.salary-compare-row.fanza {
  border-color: #f2bacb;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}

.salary-compare-row.fanza .salary-compare-label {
  background: linear-gradient(135deg, #e84b83 0%, #d33368 100%);
}

.salary-compare-formula {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  align-items: center;
  min-height: 116px;
  padding: 8px 10px;
}

.salary-formula-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
}

.salary-formula-cell strong {
  color: #252525;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.salary-formula-cell.total strong {
  font-size: 38px;
}

.salary-compare-row.fanza .salary-formula-cell strong,
.salary-compare-row.fanza .salary-formula-cell.total strong {
  color: #d83b6f;
}

.salary-formula-cell span {
  color: #5f5757;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.salary-formula-sign {
  color: #a99c9c;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}

.salary-compare-note {
  margin: 12px 0 0;
  color: #6a5e5e;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.salary-diff-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.salary-diff-item {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  background: linear-gradient(135deg, #fff 0%, #fff5f8 100%);
  border: 1px solid #f0dfe4;
  border-radius: 24px;
}

.salary-diff-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  width: 74px;
  height: 74px;
  transform: translateY(-50%);
  background: radial-gradient(circle, #ffd6e2 0 42%, #fff3f7 43% 100%);
  border: 1px solid #f4c5d3;
  border-radius: 50%;
}

.salary-diff-item:nth-child(1)::after {
  content: '⌚';
}

.salary-diff-item:nth-child(2)::after {
  content: '▦';
}

.salary-diff-item::after {
  position: absolute;
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 27px;
  line-height: 1;
}

.salary-diff-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding-left: 90px;
  text-align: center;
}

.salary-diff-lead,
.salary-diff-tail {
  color: #312626;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.6;
}

.salary-diff-item strong {
  color: #d83b6f;
  font-family: serif,'Yu Mincho', 'YuMincho';
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.salary-diff-big strong {
  font-size: 72px;
}

@media (max-width: 960px) {
  .salary-panel {
    padding: 22px;
  }

  .salary-overview-head {
    min-height: auto;
    padding: 24px 24px 172px;
  }

  .salary-burst {
    top: auto;
    right: 50%;
    bottom: 22px;
    transform: translateX(50%);
  }

  .salary-top-cards,
  .salary-diff-list {
    grid-template-columns: 1fr;
  }

  .salary-compare-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .salary-section .dgf-container {
    width: min(100% - 24px, 1120px);
  }

  .salary-intro {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.9;
    text-align: left;
  }

  .salary-panel {
    padding: 14px;
    border-radius: 20px;
  }

  .salary-panel::before {
    inset: 8px;
    border-radius: 16px;
  }

  .salary-overview-head {
    margin-bottom: 16px;
    padding: 18px 16px 128px;
    border-radius: 17px;
  }

  .salary-overview-copy {
    font-size: 13px;
    line-height: 1.8;
  }

  .salary-burst {
    width: 96px;
    height: 96px;
    bottom: 16px;
  }

  .salary-burst span {
    font-size: 12px;
  }

  .salary-top-cards {
    gap: 14px;
    margin-bottom: 16px;
  }

  .salary-earning-card {
    min-height: auto;
    padding: 18px 14px 16px;
    border-radius: 18px;
  }

  .salary-earning-icon {
    min-width: 72px;
    height: 30px;
    font-size: 10px;
  }

  .salary-earning-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .salary-max {
    margin-bottom: 8px;
    padding: 5px 14px;
    font-size: 11px;
  }

  .salary-bigpay-line {
    gap: 6px;
  }

  .salary-bigpay-label {
    font-size: 17px;
  }

  .salary-bigpay-amount {
    font-size: 42px;
  }

  .salary-bigpay-suffix {
    font-size: 14px;
  }

  .salary-compare-wrap {
    padding: 16px 12px;
    border-radius: 18px;
  }

  .salary-compare-title {
    margin-bottom: 14px;
    padding-bottom: 0;
    font-size: 17px;
    text-align: left;
  }

  .salary-compare-title::before,
  .salary-compare-title::after {
    display: none;
  }

  .salary-compare-label {
    padding: 12px 10px;
    font-size: 13px;
  }

  .salary-compare-formula {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: auto;
    padding: 12px;
  }

  .salary-formula-sign {
    display: none;
  }

  .salary-formula-cell {
    gap: 4px;
  }

  .salary-formula-cell strong,
  .salary-formula-cell.total strong {
    font-size: 28px;
  }

  .salary-formula-cell span {
    font-size: 11px;
  }

  .salary-compare-note {
    font-size: 10px;
    text-align: left;
  }

  .salary-diff-list {
    gap: 12px;
    margin-top: 14px;
  }

  .salary-diff-item {
    padding: 16px 14px;
    border-radius: 18px;
  }

  .salary-diff-item::before,
  .salary-diff-item::after {
    display: none;
  }

  .salary-diff-text {
    padding-left: 0;
  }

  .salary-diff-lead,
  .salary-diff-tail {
    font-size: 14px;
  }

  .salary-diff-item strong {
    font-size: 38px;
  }

  .salary-diff-big strong {
    font-size: 44px;
  }
}

/* Feature strip removed: features are integrated into reason cards. */

.text-yenbe {
    color: #ff2626;
    font-weight: 900;
    font-size: 20px;
}

.text-yenaf {
    color: #ff2626;
    font-weight: 900;
    font-size: 16px;
}


.text-yenaf2 {
    font-size: 50px;
  }
.text-yenaf3 {
    font-size: 42px;
  }
  @media (max-width: 640px) {
    .text-yenaf2 {
        font-size: 32px;
    }
    .text-yenaf3 {  
        font-size: 26px;
    }
}



@media (max-width: 767px) {
  .salary-formula-cell.total {
    padding: 14px 12px;
    text-align: center;
  }

  .salary-formula-cell.total strong {
    display: block;
    font-size: 1.5rem;
  }

  .salary-formula-cell.total span {
    display: block;
    margin-top: 2px;
  }
}

/* =========================================================
   Salary comparison mobile layout
   上段2列＋合計を下段1列
   必ずmain.cssの一番下に追加
   ========================================================= */
@media (max-width: 640px) {

  .salary-compare-formula {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: stretch;
    gap: 10px 4px;
    min-height: auto;
    padding: 12px;
  }

  /* 100円・125円 */
  .salary-compare-formula > .salary-formula-cell:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  /* × */
  .salary-compare-formula > .salary-formula-sign:nth-child(2) {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    justify-content: center;
  }

  /* 60分 */
  .salary-compare-formula > .salary-formula-cell:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  /* ＝は非表示 */
  .salary-compare-formula > .salary-formula-sign:nth-child(4) {
    display: none;
  }

  /* 6,000円・7,500円 */
  .salary-compare-formula > .salary-formula-cell.total {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin-top: 2px;
    padding: 14px 12px;
    background: #fff8fa;
    border: 1px solid #f0dfe4;
    border-radius: 12px;
  }

  .salary-compare-formula > .salary-formula-cell {
    min-width: 0;
  }

  .salary-formula-cell strong {
    font-size: 25px;
  }

  .salary-formula-cell.total strong {
    font-size: 30px;
  }

  .salary-formula-cell span {
    font-size: 11px;
  }

  .salary-formula-sign {
    color: #a99c9c;
    font-size: 22px;
    font-weight: 700;
  }
}


/* ---------------------------------------------------------
   Company Section - Monochrome Style
   --------------------------------------------------------- */
.company-section {
  background: #fff;
}

.company-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  background: #fff;
  border: 1px solid #111;
  box-shadow: 12px 12px 0 #e6e6e6;
}

.company-head {
  margin-bottom: 30px;
  text-align: center;
}

.company-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 18px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  background: #111;
  border: 1px solid #111;
}

.company-head p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .04em;
}

.company-list {
  border-top: 1px solid #111;
}

.company-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #111;
}

.company-label {
  display: flex;
  align-items: center;
  padding: 22px 24px;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  background: #f5f5f5;
  border-right: 1px solid #111;
}

.company-value {
  padding: 22px 26px;
  color: #111;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .04em;
  background: #fff;
}

.company-value a {
  color: #111;
  font-weight: 700;
  text-decoration: none;
  background-image: linear-gradient(#111, #111);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
  transition: background-size .2s ease, color .2s ease;
}

.company-value a:hover {
  color: #555;
  background-size: 0 1px;
}

.company-note {
  display: inline-block;
  margin-left: 10px;
  color: #777;
  font-size: 12px;
  letter-spacing: .04em;
}

/* mobile */
@media (max-width: 640px) {
  .company-card {
    padding: 24px 18px;
    border: 1px solid #111;
    box-shadow: 7px 7px 0 #e6e6e6;
  }

  .company-head {
    margin-bottom: 22px;
  }

  .company-kicker {
    font-size: 10px;
  }

  .company-row {
    grid-template-columns: 1fr;
  }

  .company-label {
    padding: 16px 16px 6px;
    background: #fff;
    border-right: none;
    font-size: 13px;
  }

  .company-value {
    padding: 0 16px 18px;
    font-size: 14px;
  }

  .company-note {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }
}


/* ---------------------------------------------------------
   Privacy Policy Page - Monochrome Style
   --------------------------------------------------------- */
.privacy-policy-page {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
  color: #111;
}

.privacy-container {
  width: min(100% - 48px, 980px);
  margin: 0 auto;
}

.privacy-header {
  margin-bottom: 34px;
  text-align: left;
}

.privacy-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 20px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  background: #111;
}

.privacy-header h1 {
  margin: 0 0 14px;
  color: #111;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .05em;
  text-align: left;
}

.privacy-header p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}

.privacy-lead {
  margin-bottom: 28px;
  padding: 26px 30px;
  background: #111;
  color: #fff;
  box-shadow: 10px 10px 0 #dcdcdc;
  text-align: left;
}

.privacy-lead p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .04em;
  text-align: left;
}

.privacy-card {
  padding: 44px;
  background: #fff;
  border: 1px solid #111;
  box-shadow: 14px 14px 0 #e6e6e6;
  text-align: left;
}

.privacy-block {
  padding: 34px 0;
  border-bottom: 1px solid #111;
  text-align: left;
}

.privacy-block:first-child {
  padding-top: 0;
}

.privacy-block h2,
.privacy-footer h2 {
  position: relative;
  margin: 0 0 20px;
  padding-left: 18px;
  color: #111;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .05em;
  text-align: left;
}

.privacy-block h2::before,
.privacy-footer h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: .25em;
  width: 4px;
  height: 1.2em;
  background: #111;
}

.privacy-block h3 {
  margin: 26px 0 10px;
  color: #111;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .05em;
  text-align: left;
}

.privacy-block p,
.privacy-footer p {
  margin: 0 0 16px;
  color: #222;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .035em;
  text-align: left;
}

.privacy-block p:last-child {
  margin-bottom: 0;
}

.privacy-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.privacy-list li {
  position: relative;
  padding: 13px 16px 13px 36px;
  color: #222;
  font-size: 15px;
  line-height: 1.8;
  background: #f7f7f7;
  border-left: 4px solid #111;
  text-align: left;
}

.privacy-list li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 1.35em;
  width: 6px;
  height: 6px;
  background: #111;
  border-radius: 50%;
}

.privacy-link-box {
  margin: 24px 0;
  padding: 22px 24px;
  background: #f5f5f5;
  border: 1px solid #111;
  text-align: left;
}

.privacy-link-box strong {
  display: block;
  margin-bottom: 12px;
  color: #111;
  font-size: 14px;
  letter-spacing: .06em;
  text-align: left;
}

.privacy-link-box a,
.privacy-block a {
  color: #111;
  font-weight: 700;
  word-break: break-all;
  text-decoration: none;
  background-image: linear-gradient(#111, #111);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
}

.privacy-link-box a {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.privacy-link-box a:hover,
.privacy-block a:hover {
  color: #666;
  background-size: 0 1px;
}

.privacy-footer {
  padding-top: 34px;
  text-align: left;
}

.privacy-footer p {
  margin-bottom: 0;
}

/* mobile */
@media (max-width: 640px) {
  .privacy-policy-page {
    padding: 52px 0;
  }

  .privacy-container {
    width: min(100% - 32px, 980px);
  }

  .privacy-kicker {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .privacy-header h1 {
    font-size: 28px;
  }

  .privacy-header p {
    font-size: 14px;
  }

  .privacy-lead {
    padding: 22px 20px;
    box-shadow: 7px 7px 0 #dcdcdc;
  }

  .privacy-lead p {
    font-size: 14px;
    line-height: 1.9;
  }

  .privacy-card {
    padding: 26px 20px;
    box-shadow: 8px 8px 0 #e6e6e6;
  }

  .privacy-block {
    padding: 28px 0;
  }

  .privacy-block h2,
  .privacy-footer h2 {
    margin-bottom: 16px;
    font-size: 19px;
  }

  .privacy-block h3 {
    font-size: 16px;
  }

  .privacy-block p,
  .privacy-footer p,
  .privacy-list li {
    font-size: 14px;
  }

  .privacy-list li {
    padding: 12px 14px 12px 32px;
  }

  .privacy-list li::before {
    left: 15px;
  }

  .privacy-link-box {
    padding: 18px 16px;
  }
}
/* privacy policy alignment fix */
.privacy-policy-page .privacy-card {
  text-align: left;
}

.privacy-policy-page .privacy-block,
.privacy-policy-page .privacy-footer {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.privacy-policy-page .privacy-block > *,
.privacy-policy-page .privacy-footer > * {
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.privacy-policy-page .privacy-block h2,
.privacy-policy-page .privacy-block h3,
.privacy-policy-page .privacy-block p,
.privacy-policy-page .privacy-block ul,
.privacy-policy-page .privacy-block ol,
.privacy-policy-page .privacy-block li,
.privacy-policy-page .privacy-footer h2,
.privacy-policy-page .privacy-footer p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.privacy-policy-page .privacy-list {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}


/* ---------------------------------------------------------
   Fixed Contact Button
   --------------------------------------------------------- */
.fixed-contact-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 64px;
  padding: 12px 22px;
  color: #fff;
  text-decoration: none;
  background: #111;
  border: 1px solid #111;
  box-shadow: 8px 8px 0 rgba(239, 47, 130, .28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.fixed-contact-btn:hover {
  color: #fff;
  background: #ef2f82;
  border-color: #ef2f82;
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 rgba(17, 17, 17, .18);
}

.fixed-contact-main {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
}

.fixed-contact-sub {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .18em;
  opacity: .72;
}

/* mobile */
@media (max-width: 640px) {
  .fixed-contact-btn {
    left: 16px;
    right: 16px;
    bottom: 14px;
    min-width: 0;
    min-height: 56px;
    padding: 10px 18px;
    border-radius: 0;
    box-shadow: 6px 6px 0 rgba(239, 47, 130, .28);
  }

  .fixed-contact-main {
    font-size: 15px;
  }

  .fixed-contact-sub {
    font-size: 9px;
  }
}

/* ---------------------------------------------------------
   Contact Form 7 - D-girl Contact Design
   --------------------------------------------------------- */
.dg-contact-form {
  max-width: 920px;
  margin: 0 auto;
  padding: 44px;
  color: #111;
  background: #fff;
  border: 1px solid #111;
  box-shadow: 14px 14px 0 #111;
}

.dg-contact-head {
  margin-bottom: 30px;
  text-align: left;
}

.dg-contact-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 18px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  background: #111;
}

.dg-contact-head h2 {
  margin: 0 0 14px;
  color: #111;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .05em;
}

.dg-contact-head p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.9;
}

.dg-contact-tel {
  position: relative;
  margin-bottom: 34px;
  padding: 26px 28px;
  color: #fff;
  background: #111;
}

.dg-contact-tel::after {
  content: '';
  position: absolute;
  right: 18px;
  bottom: -10px;
  width: 86px;
  height: 10px;
  background: #ef2f82;
}

.dg-contact-tel-label {
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.dg-contact-tel-number {
  display: inline-block;
  color: #fff;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .03em;
  text-decoration: none;
}

.dg-contact-tel-number:hover {
  color: #ff8fbc;
}

.dg-contact-tel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.8;
}

.dg-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.dg-form-field,
.dg-form-field-full {
  display: block;
}

.dg-form-field-full {
  grid-column: 1 / -1;
}

.dg-form-label {
  display: block;
  margin-bottom: 9px;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
}

.dg-form-label em {
  display: inline-flex;
  margin-left: 8px;
  padding: 3px 7px;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  background: #ef2f82;
}

.dg-contact-form input[type="text"],
.dg-contact-form input[type="email"],
.dg-contact-form input[type="tel"],
.dg-contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: #111;
  font-size: 15px;
  line-height: 1.6;
  background: #f7f7f7;
  border: 1px solid #111;
  border-radius: 0;
  outline: none;
  box-sizing: border-box;
  transition: background .2s ease, box-shadow .2s ease;
}

.dg-contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.dg-contact-form input::placeholder,
.dg-contact-form textarea::placeholder {
  color: #999;
}

.dg-contact-form input:focus,
.dg-contact-form textarea:focus {
  background: #fff;
  box-shadow: 5px 5px 0 rgba(239, 47, 130, .22);
}

.dg-radio-wrap {
  padding: 18px 20px;
  background: #f7f7f7;
  border: 1px solid #111;
}

.dg-radio-wrap .wpcf7-list-item {
  margin: 0 22px 0 0;
}

.dg-radio-wrap label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #111;
  font-size: 15px;
  font-weight: 700;
}

.dg-radio-wrap input[type="radio"] {
  accent-color: #ef2f82;
}

.dg-acceptance {
  margin-top: 24px;
  padding: 18px 20px;
  background: #f7f7f7;
  border-left: 4px solid #111;
}

.dg-acceptance .wpcf7-list-item {
  margin: 0;
}

.dg-acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
}

.dg-acceptance input[type="checkbox"] {
  accent-color: #ef2f82;
}

.dg-form-submit {
  margin-top: 28px;
}

.dg-contact-form input[type="submit"],
.dg-contact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  padding: 16px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .12em;
  background: #111;
  border: 1px solid #111;
  border-radius: 0;
  cursor: pointer;
  box-shadow: 8px 8px 0 rgba(239, 47, 130, .28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.dg-contact-form input[type="submit"]:hover,
.dg-contact-form .wpcf7-submit:hover {
  background: #ef2f82;
  border-color: #ef2f82;
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 rgba(17, 17, 17, .18);
}

.dg-privacy-link {
  margin: 24px 0 0;
  text-align: center;
}

.dg-privacy-link a {
  color: #111;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  background-image: linear-gradient(#111, #111);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
}

.dg-privacy-link a:hover {
  color: #ef2f82;
  background-size: 0 1px;
}

/* Contact Form 7 messages */
.dg-contact-form .wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #ef2f82;
  font-size: 13px;
  font-weight: 700;
}

.dg-contact-form .wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 16px 18px !important;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #111 !important;
  background: #fff;
}

/* mobile */
@media (max-width: 640px) {
  .dg-contact-form {
    padding: 28px 20px;
    box-shadow: 8px 8px 0 #111;
  }

  .dg-contact-head {
    margin-bottom: 24px;
  }

  .dg-contact-head h2 {
    font-size: 28px;
  }

  .dg-contact-head p {
    font-size: 14px;
  }

  .dg-contact-tel {
    margin-bottom: 28px;
    padding: 22px 20px;
  }

  .dg-contact-tel-number {
    font-size: 32px;
  }

  .dg-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dg-contact-form textarea {
    min-height: 160px;
  }

  .dg-radio-wrap .wpcf7-list-item {
    display: block;
    margin: 0 0 10px;
  }

  .dg-radio-wrap .wpcf7-list-item:last-child {
    margin-bottom: 0;
  }

  .dg-contact-form input[type="submit"],
  .dg-contact-form .wpcf7-submit {
    min-height: 58px;
    font-size: 15px;
  }

  .dg-privacy-link {
    text-align: left;
  }
}


/* ---------------------------------------------------------
   Fixed Action Buttons
   PC: contact only / SP: fanza + dgirl + contact
   --------------------------------------------------------- */

/* PC用：問い合わせボタン */
.fixed-contact-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 64px;
  padding: 12px 22px;
  color: #fff;
  text-decoration: none;
  background: #111;
  border: 1px solid #111;
  box-shadow: 8px 8px 0 rgba(239, 47, 130, .28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.fixed-contact-btn:hover {
  color: #fff;
  background: #ef2f82;
  border-color: #ef2f82;
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 rgba(17, 17, 17, .18);
}

.fixed-contact-main {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
}

.fixed-contact-sub {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .18em;
  opacity: .72;
}

/* スマホ3ボタンはPCでは非表示 */
.fixed-action-buttons {
  display: none;
}

/* mobile */
@media (max-width: 640px) {
  /* PC用問い合わせボタンはスマホでは非表示 */
  .fixed-contact-btn {
    display: none;
  }

  .fixed-action-buttons {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94);
    border-top: 1px solid rgba(17, 17, 17, .14);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .08);
    backdrop-filter: blur(10px);
    gap: 7px;
  }

  .fixed-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 8px 4px;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    line-height: 1.2;
  }

  .fixed-action-btn span {
    display: block;
    margin-bottom: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .03em;
    opacity: .86;
  }

  .fixed-action-btn strong {
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
  }

  .fixed-action-fanza {
    background: linear-gradient(180deg, var(--red), var(--red-dark));
    box-shadow: 4px 4px 0 rgba(239, 47, 130, .22);
  }

  .fixed-action-dgirl {
    color: #111;
    background: #fff;
    box-shadow: 4px 4px 0 rgba(17, 17, 17, .16);
  }

  .fixed-action-contact {
    background: #111;
    border: 1px solid #111;
    box-shadow: 4px 4px 0 rgba(17, 17, 17, .14);
  }

  .fixed-action-contact span,
  .fixed-action-contact strong {
    color:#FFF;
  }

  /* 下部固定ボタンに本文が隠れないよう余白を追加 */
  body {
    padding-bottom: 86px;
  }
}


/* ---------------------------------------------------------
   D-girl defect correction list
   --------------------------------------------------------- */
.dg-defect-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 20px;
  color: #111;
  font-family: sans-serif;
}

.dg-defect-head {
  margin-bottom: 26px;
}

.dg-defect-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 16px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  background: #111;
}

.dg-defect-head h1 {
  margin: 0 0 10px;
  color: #111;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .04em;
}

.dg-defect-head h1::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 28px;
  margin-right: 12px;
  vertical-align: -5px;
  background: #e60033;
}

.dg-defect-head p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.8;
}

.dg-defect-card {
  padding: 24px;
  background: #fff;
  border: 1px solid #111;
  box-shadow: 10px 10px 0 #111;
}

.dg-defect-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dg-defect-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

.dg-defect-table th,
.dg-defect-table td {
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #eee;
  padding: 13px 14px;
  color: #222;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
  vertical-align: middle;
  word-break: break-all;
}

.dg-defect-table th:last-child,
.dg-defect-table td:last-child {
  border-right: none;
}

.dg-defect-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  background: #111;
  border-color: #111;
}

.dg-defect-table tbody tr {
  transition: background .15s ease;
}

.dg-defect-table tbody tr:nth-child(even) {
  background: #f8f8f8;
}

.dg-defect-table tbody tr:hover {
  background: #fff1f5;
}

.dg-defect-table .col-date {
  width: 150px;
}

.dg-defect-table .col-name {
  width: 140px;
}

.dg-defect-table .col-mail {
  width: 230px;
}

.dg-defect-table .col-file {
  width: 150px;
}

.dg-defect-table a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 6px 10px;
  color: #111;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  background: #fff;
  border: 1px solid #111;
  box-shadow: 3px 3px 0 rgba(230, 0, 51, .22);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.dg-defect-table a:hover {
  color: #fff;
  background: #e60033;
  border-color: #e60033;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 rgba(17, 17, 17, .18);
}

.dg-defect-table .file-cell {
  font-weight: 700;
}

/* mobile */
@media (max-width: 640px) {
  .dg-defect-page {
    padding: 34px 14px;
  }

  .dg-defect-head h1 {
    font-size: 24px;
  }

  .dg-defect-card {
    padding: 16px;
    box-shadow: 7px 7px 0 #111;
  }

  .dg-defect-table {
    min-width: 900px;
  }

  .dg-defect-table th,
  .dg-defect-table td {
    padding: 10px 11px;
    font-size: 11px;
  }
}
