/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */


body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
}



.custom-navbar {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 40px;
  position: relative;
}

.mobile-nav {
  position: relative;
}

.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #222222;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  transition: right 0.3s ease;
  padding-top: 0;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.mobile-nav-header {
  display: flex;
  justify-content: flex-end;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
}

.mobile-nav-close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
}

.close-line {
  width: 100%;
  height: 3px;
  background-color: #222222;
  position: absolute;
  transition: all 0.3s ease;
}

.close-line:nth-child(1) {
  transform: rotate(45deg);
}

.close-line:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-nav-menu.active {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 20px;
}

.mobile-nav-list li {
  border-bottom: 1px solid #eee;
}

.mobile-nav-link {
  display: block;
  padding: 20px 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #222222;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: #f8f9fa;
  color: #000000;
}

.mobile-nav-actions {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.mobile-nav-actions .search-icon {
  width: 24px;
  height: 24px;
}

.mobile-nav-actions .login-btn,
.mobile-nav-actions .contact-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 16px;
}

.logo-section .nav-logo {
  height: 40px;
  width: auto;
}

.nav-subtext {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 350;
  color: #222222;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link-custom {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #222222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link-custom:hover {
  color: #000000;
}

.search-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.login-btn {
  background-color: #fff;
  border: 2px solid #C2CBD8;
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  padding: 6px 18px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background-color: #f8f9fa;
}

.contact-btn {
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  padding: 6px 18px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #333;
}

.arrow-icon {
  width: 12px;
  height: 12px;
}

.hero-main-section {
  position: relative;
  background-image: var(--bg-pc);
  background-size: cover;
  background-position: center;
  padding: 30px 0;
  overflow: hidden;
}

.hero-main-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0); 
  z-index: 0;
}

.hero-main-section > * {
  position: relative;
  z-index: 1;
}

.hero-main-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04));
  pointer-events: none;
}

.hero-main-left { max-width: 640px; }

.hero-main-top-btn{
  background:#000;
  color:#fff;
  font-family: var(--inter);
  font-size:18px;
  font-weight:700;
  border: none;
  padding:10px 14px;
  border-radius:6px;
  display:inline-block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transform-origin:center;
  animation: fadeUp .6s cubic-bezier(.2,.9,.3,1) .1s both;
}

.hero-main-title{
  font-family: var(--noto);
  font-size:50px;
  font-weight:900;
  color:#111;
  line-height:1.05;
  margin:0;
  animation: fadeUp .6s cubic-bezier(.2,.9,.3,1) .25s both;
}

.hero-main-subtitle{
  font-family: var(--noto);
  font-size:32px;
  font-weight:900;
  color:#111;
  margin:0;
  animation: fadeUp .6s cubic-bezier(.2,.9,.3,1) .35s both;
}

.hero-main-badges { margin-top:18px; align-items:center; flex-wrap:wrap; }

.hero-main-badge{
  font-family: var(--inter);
  font-size:14px;
  font-weight:700;
  color:#fff;
  background: linear-gradient(90deg,#0C4AE6 0%,#198CDE 100%);
  border: none;
  padding:10px 16px;
  border-radius:20px;
  box-shadow: 0 8px 20px rgba(25,140,222,0.12);
  display:inline-flex;
  align-items:center;
  gap:8px;
  animation: popIn .6s cubic-bezier(.2,.9,.3,1) .5s both;
}

.hero-main-badge-text{
  font-family:var(--inter);
  font-size:14px;
  font-weight:700;
  color:#2D3748;
  margin:0;
  animation: fadeUp .6s cubic-bezier(.2,.9,.3,1) .55s both;
}

.hero-main-right{
  border-radius:12px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.06);
  animation: slideIn .6s cubic-bezier(.2,.9,.3,1) .2s both;
}

.hero-main-trial{
  font-family: var(--inter);
  font-size:20px;
  color:white!important;
  font-weight:bold!important;
  margin:0;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
}

.hero-main-form{
  background:#E9EDF3;
  border-radius:8px;
}

.hero-main-label{
  font-family:var(--inter);
  font-size:14px;
  font-weight:700;
  color:#1A202C;
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
}

.required-badge{
  display:inline-block;
  padding:2px 6px;
  color:#e02424;
  font-family:var(--inter);
  font-size:14px;
  font-weight:700;
  border:1px solid #e02424;
  border-radius:1px;
  line-height:1;
}

.hero-main-input{
  background:#fff;
  border-radius:5px;
  padding:10px 12px;
  font-family:var(--inter);
  font-size:14px;
  font-weight:400;
  color:#1A202C;
  border:1px solid rgba(26,32,44,0.06);
}

.hero-main-submit{
  background:#175ACF;
  color:#fff;
  font-family:var(--inter);
  font-size:18px;
  font-weight:700;
  padding:12px 18px;
  border-radius:8px;
  border:none;
}

.hero-main-title span.noto,
.hero-main-subtitle span.noto,
.hero-main-badge-text {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* スマホ時：画像とフォームを分離 */
@media (max-width: 991px) {
  .hero-main-section {
    background-image: var(--bg-sp);
    background-size: 100% auto; /* 横幅100%固定。画像が切れない設定 */
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #E9EDF3; /* 画像より下の隙間を埋める色（フォームと同色） */
    padding: 0;
  }

  .hero-main-left {
    padding: 40px 20px; /* 画像の上に乗るテキストの余白 */
    max-width: 100%;
  }

  .hero-main-right {
    margin-top: 0 !important; /* 被りを強制解除 */
    position: relative;
    border-radius: 0;
    padding: 30px 20px !important;
    background-color: #E9EDF3; /* フォームの周りを画像下の背景色と統一 */
  }

  .hero-main-form {
    border-radius: 0;
    padding: 0 !important;
  }
}
  .hero-main-trial {
    color: #111 !important;
    text-shadow: none;
    margin-bottom: 20px;
  }


@keyframes fadeUp {
  0% { opacity:0; transform: translateY(12px); }
  100% { opacity:1; transform: translateY(0); }
}
@keyframes popIn {
  0% { opacity:0; transform: scale(.92) translateY(8px); }
  100% { opacity:1; transform: scale(1) translateY(0); }
}
@keyframes slideIn {
  0% { opacity:0; transform: translateX(18px); }
  100% { opacity:1; transform: translateX(0); }
}

button:focus, input:focus, .btn:focus { outline: 3px solid rgba(25,140,222,0.12); outline-offset: 2px; }


.brand-marquee-section {
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}

.brand-marquee {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: scroll-marquee 25s linear infinite;
  white-space: nowrap;
}

.brand-track img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.brand-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ser-mos-section{
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
  color: #fff;
}

.ser-mos-kicker{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(8px);
  animation: ser-mos-fade 0.6s ease .05s forwards;
}

.ser-mos-title{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 28px 0;
  opacity: 0;
  transform: translateY(8px);
  animation: ser-mos-fade 0.6s ease .12s forwards;
}

.ser-mos-panel{
  background: #FFFFFF59;
  max-width: 1100px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.08);
  overflow: hidden;
  padding: 28px;
  opacity: 0;
  transform: translateY(12px);
  animation: ser-mos-fade 0.6s ease .2s forwards;
}

.ser-mos-card{
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform .35s cubic-bezier(.2,.9,.3,1), box-shadow .35s;
  transform-origin: center;
  opacity: 0;
}

.ser-mos-card.inview{
  animation: ser-mos-pop .6s cubic-bezier(.2,.9,.3,1) forwards;
}

.ser-mos-card-media{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ser-mos-card-img{
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  transform: translateY(6px);
  transition: transform .45s cubic-bezier(.2,.9,.3,1);
}

.ser-mos-card-title{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #222222;
  margin: 0;
  text-align: center;
}

.ser-mos-card-desc{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 350;
  color: #222222;
  text-align: center;
  line-height: 1.7;
  margin: 0;
  padding: 0 6px;
  flex: 1;
}

.ser-mos-card-btn{
  background: #222222;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.ser-mos-card-btn:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(34,34,34,0.14);
}
.ser-mos-btn-ic{ width:18px; height:18px; display:inline-block; }

.ser-mos-card:hover{
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 40px rgba(2,6,23,0.12);
}
.ser-mos-card:hover .ser-mos-card-img{ transform: translateY(-6px) scale(1.03); }

@media (max-width: 991px) {
  .ser-mos-section {
    padding: 60px 0;
  }
  
  .ser-mos-title {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .ser-mos-kicker {
    font-size: 14px;
  }
  
  .ser-mos-panel {
    padding: 18px;
  }
  
  .ser-mos-card {
    min-height: auto;
    padding: 16px;
    margin-bottom: 20px;
  }
  
  .ser-mos-card-img {
    max-width: 180px;
  }
  
  .ser-mos-card-title {
    font-size: 16px;
    line-height: 1.4;
  }
  
  .ser-mos-card-desc {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .ser-mos-card-btn {
    font-size: 14px;
    padding: 10px 16px;
  }
}

@media (max-width: 768px) {
  .ser-mos-title {
    font-size: 20px;
    line-height: 1.4;
  }
  
  .ser-mos-card-title {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .ser-mos-card-desc {
    font-size: 13px;
    line-height: 1.7;
  }
}

@keyframes ser-mos-fade {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ser-mos-pop {
  0% { opacity: 0; transform: translateY(12px) scale(.995); }
  60% { opacity: 1; transform: translateY(-6px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.main-moss-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.main-moss-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: #222222;
  margin-bottom: 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: main-moss-fade-up 0.6s ease forwards;
}

.main-moss-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #222222;
  margin-bottom: 70px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: main-moss-fade-up 0.6s ease 0.2s forwards;
}

.main-moss-block {
  padding: 60px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.9, 0.35, 1);
}

.main-moss-block.inview {
  opacity: 1;
  transform: translateY(0);
}

.main-moss-block-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: #222222;
  margin-bottom: 20px;
}

.main-moss-block-desc {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 350;
  color: #222222;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.main-moss-img {
  width: 80%;
  max-width: 520px;
  transform: scale(0.95);
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0;
}

.main-moss-block.inview .main-moss-img {
  transform: scale(1);
  opacity: 1;
}

@media (max-width: 991px) {
  .main-moss-section {
    padding: 60px 0;
  }
  
  .main-moss-title {
    font-size: 32px;
    line-height: 1.3;
  }
  
  .main-moss-subtitle {
    font-size: 24px;
    line-height: 1.4;
  }
  
  .main-moss-block {
    padding: 40px 0;
  }
  
  .main-moss-block-title {
    font-size: 28px;
    line-height: 1.4;
  }
  
  .main-moss-block-desc {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 10px;
  }
  
  .main-moss-img {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .main-moss-title {
    font-size: 24px;
    line-height: 1.4;
  }
  
  .main-moss-subtitle {
    font-size: 18px;
    line-height: 1.5;
  }
  
  .main-moss-block-title {
    font-size: 20px;
    line-height: 1.5;
  }
  
  .main-moss-block-desc {
    font-size: 14px;
    line-height: 1.7;
  }
}

@keyframes main-moss-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-japan-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.faq-japan-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #222222;
  text-align: center;
  line-height: 1.3;
}

.faq-japan-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-japan-item {
  border-bottom: 1px solid #ddd;
  padding: 25px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-japan-question p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #222222;
  margin: 0;
  line-height: 1.4;
}

.faq-japan-icon {
  transition: transform 0.4s ease;
}

.faq-japan-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-japan-answer p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 350;
  color: #222222;
  margin-top: 20px;
  line-height: 1.7;
}

.faq-japan-item.active .faq-japan-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-japan-item.active .faq-japan-icon {
  transform: rotate(-60deg);
}

.cards-moos-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.cards-moos-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #222222;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
}

.cards-moos-card {
  background-color: #ffffff;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}

.cards-moos-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
}

.cards-moos-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
}

.cards-moos-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #222222;
  margin-bottom: 20px;
  line-height: 1.4;
}

.cards-moos-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 350;
  color: #222222;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 90%;
}

.cards-moos-btn-wrap {
  text-align: center;
}

.cards-moos-btn {
  background-color: #08a5a1;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  border: none;
  padding: 14px 45px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cards-moos-btn:hover {
  background-color: #05918e;
  transform: scale(1.05);
}
.cards-moos-link {
  text-decoration: none !important;
  color: #222222 !important;
}

.cards-moos-link:hover {
  text-decoration: none !important;
  color: #222222 !important;
}

/* Pricing Cards Section */
.pricing-cards-section {
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.pricing-cards-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #222222;
  margin-bottom: 60px;
  line-height: 1.3;
}

.pricing-cards-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.pricing-cards-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2);
}

.pricing-cards-plan-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #4A4A4A;
  margin-bottom: 10px;
  line-height: 1.4;
}

.pricing-cards-plan-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #4A4A4A;
  margin-bottom: 10px;
  line-height: 1.4;
}

.pricing-cards-price {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #4A4A4A;
  margin-bottom: 20px;
  line-height: 1.3;
}

.pricing-cards-btn {
  border: none;
  border-radius: 25px;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 40px;
  margin-bottom: 30px;
}

.btn-gray {
  background: linear-gradient(90deg, #7C7C7C, #ACACAC);
}

.btn-blue {
  background: linear-gradient(90deg, #5289BF, #6CB5E2);
}

.btn-green {
  background: linear-gradient(90deg, #62B6C0, #76CABB);
}

.pricing-cards-features {
  text-align: left;
  margin-top: 20px;
}

.pricing-cards-feature {
  display: flex;
  justify-content: space-between;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #4A4A4A;
  padding: 5px 0;
  line-height: 1.5;
}

.pricing-cards-features hr {
  border: 0;
  height: 1px;
  background-color: #4A4A4A;
  opacity: 0.2;
  margin: 5px 0;
}

.pricing-cards-main-btn {
  border: none;
  border-radius: 20px;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 45px;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.pricing-cards-main-btn:hover {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .faq-japan-section {
    padding: 60px 0;
  }
  
  .faq-japan-title {
    font-size: 28px;
    line-height: 1.4;
  }
  
  .faq-japan-question p {
    font-size: 18px;
    line-height: 1.5;
  }
  
  .faq-japan-answer p {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .faq-japan-item {
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  .faq-japan-title {
    font-size: 24px;
    line-height: 1.5;
  }
  
  .faq-japan-question p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .faq-japan-answer p {
    font-size: 13px;
    line-height: 1.8;
  }
}

@media (max-width: 991px) {
  .cards-moos-section {
    padding: 60px 0;
  }
  
  .cards-moos-title {
    font-size: 28px;
    line-height: 1.4;
  }
  
  .cards-moos-heading {
    font-size: 18px;
    line-height: 1.5;
  }
  
  .cards-moos-desc {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .cards-moos-card {
    padding: 20px 15px;
  }
  
  .cards-moos-btn {
    font-size: 16px;
    padding: 12px 35px;
  }
  
  .cards-moos-section .container {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .cards-moos-title {
    font-size: 24px;
    line-height: 1.5;
  }
  
  .cards-moos-heading {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .cards-moos-desc {
    font-size: 13px;
    line-height: 1.8;
  }
  
}

@media (max-width: 991px) {
  .pricing-cards-section {
    padding: 60px 0;
  }
  
  .pricing-cards-title {
    font-size: 28px;
    line-height: 1.4;
    text-align:center;
  }
  
  .pricing-cards-plan-title {
    font-size: 18px;
    line-height: 1.5;
  }
  
  .pricing-cards-plan-sub {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .pricing-cards-price {
    font-size: 28px;
    line-height: 1.4;
  }
  
  .pricing-cards-feature {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .pricing-cards-btn {
    font-size: 14px;
    padding: 10px 30px;
  }
  
  .pricing-cards-main-btn {
    font-size: 14px;
    padding: 12px 35px;
  }
  
  .pricing-cards-card {
    width:100%;
    margin-top:10px;
  }
  
  .pricing-cards-section .container {
    overflow: hidden;
  }
}

.swiper {
  width: 100%;
  padding: 20px 0 50px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #08a5a1 !important;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  margin-top: -25px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: #ddd !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  background: #08a5a1 !important;
}

.case-studies-swiper .swiper-button-next,
.case-studies-swiper .swiper-button-prev {
  color: #08a5a1 !important;
}

.case-studies-swiper .swiper-pagination-bullet-active {
  background: #08a5a1 !important;
}

.pricing-swiper .swiper-button-next,
.pricing-swiper .swiper-button-prev {
  color: #4A4A4A !important;
}

.pricing-swiper .swiper-pagination-bullet-active {
  background: #4A4A4A !important;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px !important;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px !important;
  }
  
  .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    margin: 0 4px !important;
  }
}

@media (max-width: 576px) {
  .custom-navbar {
    padding: 8px 15px;
  }
  
  .nav-subtext {
    font-size: 10px;
  }
  
  .logo-section .nav-logo {
    height: 30px;
  }
  
  .hero-main-section {
    padding: 30px 0;
  }
  
  .hero-main-title {
    font-size: 20px;
    line-height: 1.5;
  }
  
  .hero-main-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .hero-main-badge {
    font-size: 10px;
    padding: 5px 10px;
  }
  
  .hero-main-badge-text {
    font-size: 10px;
  }
  
  .hero-main-trial {
    font-size: 14px;
  }
  
  .hero-main-label {
    font-size: 11px;
  }
  
  .hero-main-input {
    font-size: 11px;
    padding: 6px 8px;
  }
  
  .hero-main-submit {
    font-size: 12px;
    padding: 8px 14px;
  }
  
  .ser-mos-section {
    padding: 40px 0;
  }
  
  .ser-mos-title {
    font-size: 18px;
    line-height: 1.5;
  }
  
  .ser-mos-card-title {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .ser-mos-card-desc {
    font-size: 12px;
    line-height: 1.8;
  }
  
  .ser-mos-card-btn {
    font-size: 12px;
    padding: 8px 14px;
  }
  
  .main-moss-section {
    padding: 40px 0;
  }
  
  .main-moss-title {
    font-size: 20px;
    line-height: 1.5;
  }
  
  .main-moss-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .main-moss-block-title {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .main-moss-block-desc {
    font-size: 13px;
    line-height: 1.8;
  }
  
  .faq-japan-section {
    padding: 40px 0;
  }
  
  .faq-japan-title {
    font-size: 20px;
    line-height: 1.5;
  }
  
  .faq-japan-question p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .faq-japan-answer p {
    font-size: 12px;
    line-height: 1.8;
  }
  
  .cards-moos-section {
    padding: 40px 0;
  }
  
  .cards-moos-title {
    font-size: 20px;
    line-height: 1.5;
  }
  
  .cards-moos-heading {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .cards-moos-desc {
    font-size: 12px;
    line-height: 1.8;
  }
  
  .cards-moos-btn {
    font-size: 14px;
    padding: 10px 30px;
  }
  
  .pricing-cards-section {
    padding: 40px 0;
  }
  
  .pricing-cards-title {
    font-size: 20px;
    line-height: 1.5;
  }
  
  .pricing-cards-plan-title {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .pricing-cards-plan-sub {
    font-size: 12px;
    line-height: 1.6;
  }
  
  .pricing-cards-price {
    font-size: 20px;
    line-height: 1.6;
  }
  
  .pricing-cards-feature {
    font-size: 12px;
    line-height: 1.8;
  }
  
  .pricing-cards-btn {
    font-size: 12px;
    padding: 8px 25px;
  }
  
  .pricing-cards-main-btn {
    font-size: 12px;
    padding: 10px 30px;
  }
  
  .pricing-cards-card {
    padding: 20px 15px;
  }
}


.japan-notyo-section {
  background: linear-gradient(135deg, #0060DE, #259AED);
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.japan-notyo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.japan-notyo-column {
  flex: 1 1 48%;
}

.japan-notyo-heading {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.japan-notyo-description {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.3s;
}

.japan-notyo-image {
  width: 100%;
  max-width: 500px;
  display: block;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease 0.5s;
}

.japan-notyo-visible .japan-notyo-heading,
.japan-notyo-visible .japan-notyo-description,
.japan-notyo-visible .japan-notyo-image {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .japan-notyo-container {
    flex-direction: column;
    text-align: center;
  }

  .japan-notyo-column {
    flex: 1 1 100%;
  }

  .japan-notyo-heading {
    text-align: center;
    font-size: 28px;
  }

  .japan-notyo-description {
    text-align: center;
    font-size: 15px;
  }

  .japan-notyo-image {
    margin-top: 30px;
  }
}


.jap-notto-section {
  background-color: #ffffff;
  padding: 80px 20px 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jap-notto-container {
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
}

.jap-notto-heading {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.jap-notto-heading.jap-notto-visible {
  opacity: 1;
  transform: translateY(0);
}

.jap-notto-semicircle-wrapper {
  position: relative;
  width: 100%;
  max-width: 1600px;
  height: 700px;
  margin: 0 auto;
}

.jap-notto-image-container {
  position: absolute;
  width: 300px;
  height: 300px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease, transform 0.3s ease;
}

.jap-notto-image-container.jap-notto-visible {
  opacity: 1;
  transform: scale(1);
}

.jap-notto-image-container:hover {
  transform: scale(1.08);
}

.jap-notto-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
  transition: filter 0.3s ease;
}

.jap-notto-image-container:hover .jap-notto-image {
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.15));
}

.jap-notto-image-1 {
  left: 0;
  top: 200px;
  transition-delay: 0.2s;
}

.jap-notto-image-2 {
  left: 300px;
  top: 50px;
  transition-delay: 0.4s;
}

.jap-notto-image-3 {
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  top: 0;
  transition-delay: 0.6s;
}

.jap-notto-image-3.jap-notto-visible {
  transform: translateX(-50%) scale(1);
}

.jap-notto-image-3:hover {
  transform: translateX(-50%) scale(1.08);
}

.jap-notto-image-4 {
  right: 300px;
  top: 50px;
  transition-delay: 0.8s;
}

.jap-notto-image-5 {
  right: 0;
  top: 200px;
  transition-delay: 1s;
}

.jap-notto-center-image {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.8s ease 1.2s, transform 0.8s ease 1.2s;
  z-index: 10;
}

.jap-notto-center-image.jap-notto-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.jap-notto-center-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 25px rgba(0, 0, 0, 0.12));
}

@media (max-width: 1600px) {
  .jap-notto-semicircle-wrapper {
    max-width: 1400px;
    height: 620px;
  }
  
  .jap-notto-image-container {
    width: 280px;
    height: 280px;
  }
  
  .jap-notto-image-1 {
    left: 20px;
    top: 180px;
  }
  
  .jap-notto-image-2 {
    left: 280px;
    top: 50px;
  }
  
  .jap-notto-image-4 {
    right: 280px;
    top: 50px;
  }
  
  .jap-notto-image-5 {
    right: 20px;
    top: 180px;
  }
  
  .jap-notto-center-image {
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 1400px) {
  .jap-notto-semicircle-wrapper {
    max-width: 1200px;
    height: 560px;
  }
  
  .jap-notto-image-container {
    width: 260px;
    height: 260px;
  }
  
  .jap-notto-image-1 {
    left: 30px;
    top: 165px;
  }
  
  .jap-notto-image-2 {
    left: 250px;
    top: 45px;
  }
  
  .jap-notto-image-4 {
    right: 250px;
    top: 45px;
  }
  
  .jap-notto-image-5 {
    right: 30px;
    top: 165px;
  }
  
  .jap-notto-center-image {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 1200px) {
  .jap-notto-heading {
    font-size: 44px;
    margin-bottom: 70px;
  }
  
  .jap-notto-semicircle-wrapper {
    max-width: 1000px;
    height: 500px;
  }
  
  .jap-notto-image-container {
    width: 230px;
    height: 230px;
  }
  
  .jap-notto-image-1 {
    left: 30px;
    top: 150px;
  }
  
  .jap-notto-image-2 {
    left: 210px;
    top: 40px;
  }
  
  .jap-notto-image-4 {
    right: 210px;
    top: 40px;
  }
  
  .jap-notto-image-5 {
    right: 30px;
    top: 150px;
  }
  
  .jap-notto-center-image {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 1024px) {
  .jap-notto-heading {
    font-size: 40px;
    margin-bottom: 60px;
  }
  
  .jap-notto-section {
    padding: 70px 20px 50px 20px;
  }
  
  .jap-notto-semicircle-wrapper {
    max-width: 850px;
    height: 450px;
  }
  
  .jap-notto-image-container {
    width: 200px;
    height: 200px;
  }
  
  .jap-notto-image-1 {
    left: 25px;
    top: 140px;
  }
  
  .jap-notto-image-2 {
    left: 180px;
    top: 35px;
  }
  
  .jap-notto-image-4 {
    right: 180px;
    top: 35px;
  }
  
  .jap-notto-image-5 {
    right: 25px;
    top: 140px;
  }
  
  .jap-notto-center-image {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .jap-notto-heading {
    font-size: 36px;
    margin-bottom: 50px;
  }
  
  .jap-notto-section {
    padding: 60px 20px 40px 20px;
  }
  
  .jap-notto-semicircle-wrapper {
    max-width: 650px;
    height: 380px;
  }
  
  .jap-notto-image-container {
    width: 160px;
    height: 160px;
  }
  
  .jap-notto-image-1 {
    left: 20px;
    top: 120px;
  }
  
  .jap-notto-image-2 {
    left: 140px;
    top: 30px;
  }
  
  .jap-notto-image-4 {
    right: 140px;
    top: 30px;
  }
  
  .jap-notto-image-5 {
    right: 20px;
    top: 120px;
  }
  
  .jap-notto-center-image {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 600px) {
  .jap-notto-heading {
    font-size: 32px;
    margin-bottom: 45px;
  }
  
  .jap-notto-semicircle-wrapper {
    max-width: 500px;
    height: 320px;
  }
  
  .jap-notto-image-container {
    width: 130px;
    height: 130px;
  }
  
  .jap-notto-image-1 {
    left: 15px;
    top: 105px;
  }
  
  .jap-notto-image-2 {
    left: 90px;
    top: 25px;
  }
  
  .jap-notto-image-4 {
    right: 90px;
    top: 25px;
  }
  
  .jap-notto-image-5 {
    right: 15px;
    top: 105px;
  }
  
  .jap-notto-center-image {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .jap-notto-heading {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .jap-notto-section {
    padding: 50px 15px 35px 15px;
  }
  
  .jap-notto-semicircle-wrapper {
    max-width: 420px;
    height: 280px;
  }
  
  .jap-notto-image-container {
    width: 110px;
    height: 110px;
  }
  
  .jap-notto-image-1 {
    left: 10px;
    top: 95px;
  }
  
  .jap-notto-image-2 {
    left: 90px;
    top: 22px;
  }
  
  .jap-notto-image-4 {
    right: 90px;
    top: 22px;
  }
  
  .jap-notto-image-5 {
    right: 10px;
    top: 95px;
  }
  
  .jap-notto-center-image {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 380px) {
  .jap-notto-heading {
    font-size: 24px;
    margin-bottom: 35px;
  }
  
  .jap-notto-section {
    padding: 45px 15px 30px 15px;
  }
  
  .jap-notto-semicircle-wrapper {
    max-width: 340px;
    height: 250px;
  }
  
  .jap-notto-image-container {
    width: 90px;
    height: 90px;
  }
  
  .jap-notto-image-1 {
    left: 8px;
    top: 88px;
  }
  
  .jap-notto-image-2 {
    left: 55px;
    top: 20px;
  }
  
  .jap-notto-image-4 {
    right: 55px;
    top: 20px;
  }
  
  .jap-notto-image-5 {
    right: 8px;
    top: 88px;
  }
  
  .jap-notto-center-image {
    width: 250px;
    height: 250px;
  }
}









/* app/assets/stylesheets/admin_auth.scss */

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #f8fafc;

  .auth-forms {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .auth-card {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow:
      0 10px 25px rgba(0, 0, 0, 0.08),
      0 4px 10px rgba(0, 0, 0, 0.04);

    h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 32px;
      font-weight: 700;
      color: #111827;
    }

    .field {
      margin-bottom: 20px;

      label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #374151;
      }

      em {
        display: block;
        margin-bottom: 8px;
        font-size: 12px;
        color: #6b7280;
      }

      .input-field {
        width: 100%;
        box-sizing: border-box;
        padding: 14px 16px;
        border: 1px solid #d1d5db;
        border-radius: 10px;
        font-size: 16px;
        transition: all 0.2s ease;
        background: #fff;

        &:focus {
          outline: none;
          border-color: #2563eb;
          box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
        }
      }
    }

    .actions {
      margin-top: 30px;

      .btn {
        width: 100%;
        border: none;
        border-radius: 10px;
        padding: 14px;
        font-size: 16px;
        font-weight: 600;
        background: #2563eb;
        color: #fff;
        cursor: pointer;
        transition: all 0.2s ease;

        &:hover {
          background: #1d4ed8;
        }
      }
    }
  }
}

@media (max-width: 768px) {
  .auth-wrapper {
    padding: 20px;

    .auth-card {
      padding: 28px 24px;

      h2 {
        font-size: 28px;
      }
    }
  }
}

header.custom-navbar a.nav-link-custom,
header.custom-navbar a.nav-link-custom:link,
header.custom-navbar a.nav-link-custom:visited,
header.custom-navbar a.nav-link-custom:active,
header.custom-navbar a.nav-link-custom:focus,
header.custom-navbar a.nav-link-custom:hover {
  color: inherit !important;
  text-decoration: none !important;
}




.calculator-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.calculator {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 700px;     /* ← PCで横幅を広げる */
  margin: 0 auto;
}

.calculator h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 26px;      /* 見出しを強調 */
  letter-spacing: 1px;
  border-bottom: 2px solid #007aff;
  padding-bottom: 10px;
  display: inline-block;
}

.description-text {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  font-size: 15px;
  color: #333;
  margin-bottom: 6px;
  font-weight: 600;
}

small {
  display: block;
  margin-bottom: 5px;
  color: #777;
  font-size: 13px;
}

.form-control {
  width: 100%;
  padding: 12px;
  font-size: 17px;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  background: #fafafa;
}

.result-box {
  background: #eef5ff;
  padding: 18px;
  border-radius: 12px;
  margin-top: 15px;
  border-left: 4px solid #007aff;
}

.result-box p {
  font-size: 18px;
  margin: 8px 0;
  font-weight: 600;
  text-align: center;
}

.highlight {
  font-weight: 700;
  color: #007aff;
  font-size: 24px;
}

@media (max-width: 480px) {
  .calculator {
    padding: 20px;
    border-radius: 14px;
    max-width: 95%;
  }

  .calculator h2 {
    font-size: 20px;
  }

  .highlight {
    font-size: 20px;
  }
}



/* 外側セクション（グレー背景） */
.section-company {
  background: #f3f4f6;
  padding: 80px 0;
}

/* 浮き上がるカード */
.company-card {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 64px 64px 72px;
  border-radius: 12px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

/* 見出し */
.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.section-lead {
  color: #666;
  margin-bottom: 40px;
  font-size: 15px;
  text-align: center;
}

/* テーブル */
.company-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.company-table th,
.company-table td {
  padding: 18px 0;
  border-bottom: 1px solid #e6e6e6;
  vertical-align: top;
}

.company-table th {
  width: 180px;
  font-weight: 600;
  color: #555;
}

.company-table td {
  color: #222;
  line-height: 1.8;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .company-card {
    padding: 40px 24px;
  }

  .company-table th {
    width: 120px;
  }
}


.breadcrumbs {
  position: absolute;
  top: 70px;
  left: 16px;
  z-index: 10;
  font-size: 15px;
}

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

.center {
  text-align:center;
}

/* フラッシュメッセージ全体のコンテナ設定 */
.flash-message {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 250px;
  z-index: 10000;
  padding: 15px 25px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: white;
  font-weight: 500;
  animation: slideIn 0.3s ease-out; /* 右からスッと出るアニメーション */
}

/* 成功時（notice） */
.alert-success {
  background-color: #28a745; /* 鮮やかな緑 */
}

/* 警告時（alert） */
.alert-danger {
  background-color: #dc3545; /* 落ち着いた赤 */
}

/* アニメーションの定義 */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


.auth-card-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 2rem 1rem;
}

.auth-inner {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.auth-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.auth-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #1a202c;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.auth-subtitle {
  color: #718096;
  font-size: 0.95rem;
}

.auth-link {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-link:hover {
  color: #4338ca;
  text-decoration: underline;
}

.auth-input-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.auth-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
  box-sizing: border-box;
}

.auth-input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.auth-action {
  margin-top: 2rem;
}

.auth-btn-submit {
  width: 100%;
  background-color: #4f46e5;
  color: white;
  padding: 0.875rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.auth-btn-submit:hover {
  background-color: #4338ca;
}

.auth-btn-submit:active {
  transform: scale(0.98);
}

.auth-footer-links {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #a0aec0;
}

/* 追加分のみ記載（基本はサインアップ画面のCSSと共通） */

.auth-options {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.auth-helper-link {
  font-size: 0.8rem;
  color: #718096;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-helper-link:hover {
  color: #4f46e5;
  text-decoration: underline;
}

/* チェックボックスのカスタムスタイル */
.auth-checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.auth-checkbox {
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.5rem;
  cursor: pointer;
  accent-color: #4f46e5; /* モダンブラウザでの色指定 */
}

.auth-checkbox-label {
  font-size: 0.9rem;
  color: #4a5568;
}

/* 共通パーツの再掲（必要に応じて） */
.field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

/* Railsのヘルパーが出力する .flex 等と競合しないよう !important や固有クラスを活用 */
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }

















@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
/* app/assets/stylesheets/admin.css */
/* ==========================================================================
   1. System Tokens & Variable Override
   ========================================================================== */
/* line 24, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
:root {
  --bg-sidebar: #0b0e1a;
  --bg-main: #f5f7fb;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-dark: #0f172a;
  --text-light: #ffffff;
  /* メインパープル・ネオン系 */
  --primary: #4f46e5;
  --primary-neon: #5c67ff;
  --btn-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --sidebar-active-bg: linear-gradient(90deg, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.02) 100%);
  --progress-gradient: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  /* 状態ステータスのカラーパレット(画像デザイン完全準拠) */
  --color-published: #10b981;
  --bg-published: #e6f4ea;
  --color-reserved: #8b5cf6;
  --bg-reserved: #f3e8ff;
  --color-draft: #f59e0b;
  --bg-draft: #fef3c7;
  --color-generating: #3b82f6;
  --bg-generating: #eff6ff;
  --color-error: #ef4444;
  --bg-error: #fde8e8;
  --border-color: #e2e8f0;
  --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  --radius-lg: 20px;
  --radius-md: 12px;
}

/* line 57, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 63, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
body.admin-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
}

/* line 70, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.admin-shell {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   2. Layout & Shell Core Settings
   ========================================================================== */
/* line 78, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.admin-sidebar {
  width: 260px;
  background-color: var(--bg-sidebar);
  color: #7e84a3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 0 24px 0;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
}

/* line 95, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.admin-main {
  flex-grow: 1;
  padding: 32px 40px;
  margin-left: 260px;
  min-width: 0;
}

/* line 104, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.admin-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

/* line 111, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* line 117, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.header-left h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark, #1e293b);
  letter-spacing: -0.5px;
  margin: 0;
}

/* line 125, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 131, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.search-box-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* line 137, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.search-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted, #64748b);
}

/* line 143, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.search-input {
  width: 280px;
  padding: 10px 40px 10px 38px;
  background-color: #ffffff;
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 20px;
  font-size: 13px;
  outline: none;
  color: var(--text-dark, #1e293b);
  transition: width 0.2s;
}

/* line 155, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.search-input:focus {
  width: 320px;
  border-color: #cbd5e1;
}

/* line 160, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.search-shortcut {
  position: absolute;
  right: 14px;
  font-size: 11px;
  background-color: #f1f5f9;
  color: var(--text-muted, #64748b);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border-color, #e2e8f0);
}

/* line 171, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-icon-badge, .btn-icon-action {
  background: #ffffff;
  border: 1px solid var(--border-color, #e2e8f0);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark, #1e293b);
  cursor: pointer;
  position: relative;
}

/* line 185, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-icon-badge:hover, .btn-icon-action:hover {
  background-color: #f8fafc;
}

/* line 189, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.notification-dot {
  position: absolute;
  top: 10px;
  right: 11px;
  width: 7px;
  height: 7px;
  background-color: #3b82f6;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
}

/* ヘッダー直下に移動したエクスポートボタン */
/* line 201, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-export {
  background: #ffffff;
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark, #1e293b);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

/* line 214, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-export:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

/* line 218, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-export .arrow-down {
  color: var(--text-muted, #64748b);
  margin-left: 4px;
}

/* ==========================================================================
   4. Advanced KPI Section (ミニグラフ & サークルチャート)
   ========================================================================== */
/* line 226, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.kpi-main-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

/* line 233, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.kpi-stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* line 239, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.kpi-card {
  background: #ffffff;
  border-radius: 16px;
  /* var(--radius-lg) 相当 */
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  /* var(--card-shadow) 相当 */
  display: flex;
  flex-direction: column;
}

/* line 249, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.kpi-header {
  margin-bottom: 12px;
}

/* line 253, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.kpi-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 259, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.kpi-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 267, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.icon-blue {
  background: #eff6ff;
  color: #3b82f6;
}

/* line 268, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.icon-green {
  background: #e6f4ea;
  color: #10b981;
}

/* line 269, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.icon-orange {
  background: #fef3c7;
  color: #f59e0b;
}

/* line 270, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.icon-purple {
  background: #f3e8ff;
  color: #8b5cf6;
}

/* line 272, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.kpi-card .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted, #64748b);
}

/* line 278, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.kpi-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 284, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.trend {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
}

/* line 291, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.trend.up {
  color: #10b981;
  background: #e6f4ea;
}

/* line 292, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.trend.down {
  color: #ef4444;
  background: #fde8e8;
}

/* line 294, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.value-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 2px;
}

/* line 301, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.value-row .value {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark, #1e293b);
  line-height: 1;
}

/* line 308, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.value-row .comparison {
  font-size: 12px;
  color: var(--text-muted, #64748b);
  font-weight: 500;
}

/* line 314, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.kpi-chart {
  margin-top: 12px;
  height: 24px;
}

/* line 318, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.mini-graph {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* 右側：円形メーター付成功率カード */
/* line 325, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.kpi-success-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border-color, #e2e8f0);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 336, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.success-title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark, #1e293b);
}

/* line 345, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.success-meta {
  font-size: 12px;
  color: var(--text-muted, #64748b);
  margin-top: 4px;
}

/* line 351, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.score-box {
  margin-top: 16px;
}

/* line 355, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.score-avg {
  font-size: 11px;
  color: var(--text-muted, #64748b);
}

/* line 360, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.score-value {
  font-size: 13px;
  color: var(--text-muted, #64748b);
  margin-top: 2px;
}

/* line 365, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.score-value strong {
  font-size: 22px;
  color: var(--text-dark, #1e293b);
  margin-right: 4px;
}

/* line 371, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.progress-circle-box {
  position: relative;
  width: 80px;
  height: 80px;
}

/* line 377, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.circular-chart {
  width: 100%;
  height: 100%;
}

/* line 382, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.circle-bg {
  fill: none;
  stroke: #f1f5f9;
  stroke-width: 3.5;
}

/* line 388, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.circle {
  fill: none;
  stroke: #3b82f6;
  /* 代替カラー。SVGにグラデ定義があればurl(#..)指定可能 */
  stroke-width: 3.5;
  stroke-linecap: round;
}

/* line 395, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.progress-circle-box .percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}

/* ==========================================================================
   5. Filter & Segment Control Bar
   ========================================================================== */
/* line 408, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.filter-control-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

/* line 415, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.tabs-group {
  display: flex;
  background-color: #e2e8f0;
  padding: 4px;
  border-radius: 12px;
  gap: 4px;
}

/* line 423, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted, #64748b);
  white-space: nowrap;
  /* 縦並び崩れを防止 */
  transition: all 0.15s;
}

/* line 436, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.tab-btn.active {
  background-color: #ffffff;
  color: #3b82f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* line 442, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  background-color: #f1f5f9;
  color: var(--text-muted, #64748b);
  line-height: 1;
}

/* line 453, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.count-badge.bg-primary {
  background-color: #eff6ff;
  color: #3b82f6;
}

/* line 458, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.dropdowns-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 464, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.filter-select {
  background-color: #ffffff;
  border: 1px solid var(--border-color, #e2e8f0);
  padding: 8px 32px 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-dark, #1e293b);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: right 12px center;
  height: 38px;
}

/* 絞り込みボタンをプライマリーカラー化 */
/* line 481, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-filter-toggle {
  background-color: #ffffff;
  border: 1px solid var(--border-color, #e2e8f0);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  color: var(--text-dark, #1e293b);
  cursor: pointer;
  transition: all 0.2s;
}

/* line 497, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-filter-toggle.btn-primary {
  background-color: #3b82f6;
  border-color: #2563eb;
  color: #ffffff;
}

/* line 502, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-filter-toggle.btn-primary:hover {
  background-color: #2563eb;
}

/* line 505, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-filter-toggle.btn-primary svg {
  stroke: #ffffff;
  /* アイコンを白に */
}

/* 一括画像生成パネル */
/* line 510, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-panel {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  border: 1px solid var(--border-color, #e2e8f0);
}

/* line 518, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-panel h3 {
  font-size: 14px;
  margin-bottom: 12px;
}

/* line 519, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-panel .grid {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

/* line 520, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-panel .field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 521, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-panel label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted, #64748b);
}

/* line 522, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-panel select {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid var(--border-color, #e2e8f0);
}

/* line 523, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-panel button {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

/* リアルタイム生成状況パネル */
/* line 526, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.realtime-generation-panel {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  border: 1px solid var(--border-color, #e2e8f0);
}

/* line 534, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.realtime-generation-panel h3 {
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-dark, #1e293b);
}

/* line 541, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.generation-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color, #e2e8f0);
}

/* line 549, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 555, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted, #64748b);
}

/* line 561, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark, #1e293b);
}

/* line 567, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.generation-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
}

/* line 575, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.generation-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid var(--border-color, #e2e8f0);
  transition: all 0.3s ease;
}

/* line 586, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.generation-item[data-status="completed"] {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

/* line 591, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.generation-spinner {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* line 597, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.spinner-icon {
  width: 100%;
  height: 100%;
  animation: spin 1s linear infinite;
}

/* line 603, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.spinner-icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 100;
  }
  50% {
    stroke-dashoffset: 25;
  }
  100% {
    stroke-dashoffset: 100;
  }
}
/* line 619, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.check-icon {
  width: 100%;
  height: 100%;
  animation: checkmark 0.3s ease-in-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* line 631, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.generation-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 638, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.generation-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark, #1e293b);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 647, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.generation-status {
  font-size: 11px;
  color: var(--text-muted, #64748b);
}

/* line 652, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.no-generation {
  padding: 20px;
  text-align: center;
  color: var(--text-muted, #64748b);
  font-size: 13px;
}

/* 品質スコアセル */
/* line 660, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.quality-score-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 666, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.quality-score-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark, #1e293b);
}

/* line 672, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.quality-graph {
  margin-top: 4px;
}

/* line 676, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.evaluation-bars {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 682, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.evaluation-bar {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 688, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bar-label {
  font-size: 9px;
  color: var(--text-muted, #64748b);
  width: 50px;
  flex-shrink: 0;
}

/* line 695, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bar-fill {
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* line 702, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.quality-score-pending {
  font-size: 12px;
  color: var(--text-muted, #64748b);
  font-style: italic;
}

/* line 708, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.quality-feedback {
  font-size: 10px;
  color: var(--text-muted, #64748b);
  line-height: 1.3;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
   6. Rich Layout Table Styles (サムネイル・ステータス)
   ========================================================================== */
/* line 721, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.table-wrap {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color, #e2e8f0);
  overflow: hidden;
  margin-bottom: 24px;
}

/* line 730, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-action-bar {
  display: flex !important;
  align-items: center;
  gap: 12px !important;
  padding: 14px 16px !important;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

/* line 739, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-action-bar .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* line 753, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-action-bar .btn:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* line 754, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-action-bar .btn:active {
  transform: scale(0.98);
}

/* line 756, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-action-bar .btn-primary {
  color: #ffffff;
  background-color: #3b82f6;
  border-color: #2563eb;
}

/* line 761, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-action-bar .btn-primary:hover {
  background-color: #2563eb;
  border-color: #1d4ed8;
}

/* line 766, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-action-bar .btn-danger {
  color: #ffffff;
  background-color: #ef4444;
  border-color: #dc2626;
}

/* line 771, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.bulk-action-bar .btn-danger:hover {
  background-color: #dc2626;
  border-color: #b91c1c;
}

/* line 776, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.rich-dashboard-table {
  width: 100%;
  border-collapse: collapse;
}

/* line 781, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.rich-dashboard-table th {
  background-color: #ffffff;
  padding: 14px 20px;
  color: var(--text-muted, #64748b);
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid var(--border-color, #e2e8f0);
}

/* line 791, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.rich-dashboard-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
  font-size: 13.5px;
}

/* line 798, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.table-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--border-color, #e2e8f0);
  cursor: pointer;
}

/* line 806, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.article-info-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* line 812, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.article-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background-color: #f1f5f9;
}

/* line 820, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.article-thumb-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* line 831, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.article-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 837, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.article-title {
  font-weight: 600;
  color: var(--text-dark, #1e293b);
  line-height: 1.4;
}

/* line 843, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.article-tags {
  display: flex;
  gap: 4px;
}

/* line 848, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.tag-item {
  font-size: 11px;
  background-color: #f1f5f9;
  color: var(--text-muted, #64748b);
  padding: 1px 6px;
  border-radius: 4px;
}

/* line 856, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* line 864, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.status-badge.published {
  color: #10b981;
  background: #e6f4ea;
}

/* line 865, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.status-badge.reserved {
  color: #8b5cf6;
  background: #f3e8ff;
}

/* line 866, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.status-badge.draft {
  color: #f59e0b;
  background: #fef3c7;
}

/* line 867, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.status-badge.error {
  color: #ef4444;
  background: #fde8e8;
}

/* line 869, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.category-text {
  color: #334155;
  font-weight: 500;
}

/* line 874, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.ai-model-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid var(--border-color, #e2e8f0);
  font-size: 12px;
  font-weight: 600;
  background-color: #ffffff;
  color: var(--text-dark, #1e293b);
}

/* line 887, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.date-text {
  color: var(--text-muted, #64748b);
  font-size: 13px;
}

/* line 892, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.quality-score-radial {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* line 902, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.quality-score-radial.high {
  border: 2px solid #10b981;
  color: #10b981;
}

/* line 904, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.actions-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 910, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-row-action {
  background: none;
  border: none;
  color: var(--text-muted, #64748b);
  cursor: pointer;
  padding: 4px;
}

/* line 917, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-row-action:hover {
  color: var(--text-dark, #1e293b);
}

/* line 918, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-row-action.action-stop {
  color: #ef4444;
}

/* line 920, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-row-menu {
  background: none;
  border: none;
  color: var(--text-muted, #64748b);
  cursor: pointer;
  font-weight: bold;
}

/* ==========================================================================
   7. Footer Pagination & Floating Action Button
   ========================================================================== */
/* line 931, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.table-footer-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
}

/* line 938, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.pagination-info, .per-page-selector {
  font-size: 13px;
  color: var(--text-muted, #64748b);
}

/* line 943, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.per-page-selector select {
  margin-left: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--border-color, #e2e8f0);
  outline: none;
}

/* --- Kaminari ページネーション用 スタイリング --- */
/* line 952, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 961, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.pagination .page,
.pagination .next,
.pagination .prev,
.pagination .first,
.pagination .last {
  display: inline-flex;
}

/* line 969, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.pagination a,
.pagination .current,
.pagination .gap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s;
  background-color: #ffffff;
  color: var(--text-dark, #1e293b);
  border: 1px solid var(--border-color, #e2e8f0);
}

/* line 988, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.pagination a:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

/* line 993, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.pagination .current {
  background-color: #3b82f6;
  /* プライマリーブルー */
  color: #ffffff;
  border-color: #3b82f6;
  cursor: default;
}

/* line 1000, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.pagination .gap {
  background-color: transparent;
  border: none;
  color: var(--text-muted, #64748b);
}

/* line 1006, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.pagination .disabled a,
.pagination .disabled span {
  color: #cbd5e1;
  background-color: #f8fafc;
  border-color: #f1f5f9;
  cursor: not-allowed;
}

/* 右下フローティングネオンボタン */
/* line 1015, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.floating-sparkle-btn {
  position: fixed;
  bottom: 32px;
  right: 40px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
  cursor: pointer;
  z-index: 999;
}

/* ==========================================================================
   9. Pure CSS Separation & Underline Overrides (!important)
   ========================================================================== */
/* line 1037, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
a,
.rich-dashboard-table a,
.rich-dashboard-table a:hover,
.rich-dashboard-table a:focus,
.article-link,
.article-link:hover,
.article-link span,
.tabs-group a,
.tabs-group a:hover,
.btn-export,
.btn-export:hover,
.floating-sparkle-btn,
.floating-sparkle-btn:hover {
  text-decoration: none !important;
}

/* line 1053, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
a:-webkit-any-link {
  text-decoration: none !important;
}

/* line 1070, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect {
  min-height: 100vh;
  padding: 60px 20px;
  background: #f8fafc;
  color: #1f2937;
}
/* line 1076, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__title {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.5rem;
}
/* line 1083, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect .lead {
  color: #6b7280 !important;
  font-size: 1.1rem;
}
/* line 1088, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__alert {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  color: #374151;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}
/* line 1098, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}
/* line 1107, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border-color: #93c5fd;
}
/* line 1114, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__card-header {
  padding: 24px;
  border-bottom: 1px solid #f1f5f9;
  background: #fafafa;
}
/* line 1119, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__card-header h5 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
}
/* line 1127, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__card-body {
  padding: 32px 24px;
}
/* line 1131, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect .display-5 {
  font-size: 3rem;
  color: #111827 !important;
}
/* line 1136, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect ul li {
  color: #4b5563;
  font-size: 0.95rem;
}
/* line 1141, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__btn {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
}
/* line 1151, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__btn--primary {
  background: #2563eb;
  color: #fff;
}
/* line 1155, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__btn--primary:hover {
  background: #1d4ed8;
  color: #fff;
}
/* line 1161, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__btn--warning {
  background: #f59e0b;
  color: #fff;
}
/* line 1165, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__btn--warning:hover {
  background: #d97706;
  color: #fff;
}
/* line 1171, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  /* line 1185, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
  .sc-detect {
    padding: 40px 16px;
  }
  /* line 1188, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
  .sc-detect__title {
    font-size: 2rem;
  }
  /* line 1192, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
  .sc-detect .display-5 {
    font-size: 2.4rem;
  }
  /* line 1196, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
  .sc-detect__card-body {
    padding: 24px 20px;
  }
}
/* line 1206, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect {
  min-height: calc(100vh - 80px);
  padding: 60px 20px;
  background: #f8fafc;
}
/* line 1211, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}
/* line 1219, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__card-header {
  padding: 24px 30px;
  background: #fafafa;
  border-bottom: 1px solid #e5e7eb;
}
/* line 1224, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__card-header h5 {
  margin: 0;
  font-weight: 700;
  color: #111827;
}
/* line 1231, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__card-body {
  color: #374151;
}
/* line 1235, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__title {
  color: #111827;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  border-bottom: none;
}
/* line 1243, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px;
  border-radius: 12px;
}
/* line 1251, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__alert--info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  justify-content: center;
}
/* line 1257, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__alert--info .trial-main {
  display: flex;
  align-items: center;
  font-size: 1rem;
}
/* line 1263, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__alert--info .trial-highlight {
  color: #2563eb;
  font-weight: 700;
}
/* line 1268, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__alert--info .trial-note {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: #4b5563;
}
/* line 1276, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__table-wrapper {
  background: #f8fafc !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 16px;
}
/* line 1281, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__table-wrapper--preview {
  background: #f8fafc !important;
  border: 1px solid #e5e7eb !important;
}
/* line 1286, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__table-wrapper--success {
  background: #f8fafc !important;
  border: 1px solid #e5e7eb !important;
}
/* line 1292, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__table {
  width: 100%;
  margin-bottom: 0;
}
/* line 1296, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__table th {
  padding: 14px 0;
  color: #6b7280 !important;
  font-weight: 500;
  border-bottom: 1px solid #f1f5f9;
}
/* line 1303, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__table td {
  padding: 14px 0;
  color: #111827 !important;
  border-bottom: 1px solid #f1f5f9;
}
/* line 1310, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__table tr:last-child th,
.sc-detect__table tr:last-child td {
  border-bottom: none;
}
/* line 1316, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__table .cell-label {
  color: #4b5563;
}
/* line 1319, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__table .cell-value {
  color: #111827;
}
/* line 1322, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__table .cell-value-id {
  color: #2563eb;
  word-break: break-all;
}
/* line 1328, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__label {
  color: #4b5563;
}
/* line 1332, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__plan-name {
  color: #111827;
  letter-spacing: 0.05em;
}
/* line 1337, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__amount-display {
  color: #111827;
  font-size: 2rem;
}
/* line 1342, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__tax-label {
  color: #6b7280;
}
/* line 1346, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__divider {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 30px 0;
}
/* line 1352, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__success-icon-wrap {
  width: 100px;
  height: 100px;
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
}
/* line 1358, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__success-icon-wrap i {
  font-size: 3rem;
  color: #16a34a;
}
/* line 1364, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__success-text {
  color: #4b5563;
  line-height: 1.6;
}
/* line 1370, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__form-actions .sc-detect__btn--warning {
  font-size: 1.1rem;
  padding: 16px;
}
/* line 1376, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  transition: .2s;
}
/* line 1387, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__btn--primary {
  background: #2563eb;
  color: #fff;
  padding: 16px 40px;
  text-decoration: none;
  min-width: 220px;
}
/* line 1394, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__btn--primary:hover {
  background: #1d4ed8;
  color: #fff;
}
/* line 1400, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__btn--warning {
  background: #f59e0b;
  color: #fff;
}
/* line 1404, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.sc-detect__btn--warning:hover {
  background: #d97706;
  color: #fff;
}

/* line 1425, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* line 1438, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.modal-content {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* line 1448, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #e2e8f0;
}

/* line 1456, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/* line 1462, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #64748b;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

/* line 1477, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.modal-close:hover {
  background-color: #f1f5f9;
}

/* line 1481, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.modal-body {
  padding: 24px;
}

/* line 1485, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.form-group {
  margin-bottom: 16px;
}

/* line 1489, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #334155;
  font-size: 14px;
}

/* line 1497, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

/* line 1507, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* line 1514, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
}

/* line 1520, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.spinner-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* line 1529, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.title-option {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 1538, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.title-option:hover {
  background-color: #f8fafc;
  border-color: #3b82f6;
}

/* line 1543, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.title-option.selected {
  background-color: #eff6ff;
  border-color: #3b82f6;
}

/* line 1548, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-secondary {
  background-color: #64748b;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

/* line 1559, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.btn-secondary:hover {
  background-color: #475569;
}

/* line 1569, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* line 1582, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.modal-content {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* line 1592, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #e2e8f0;
}

/* line 1600, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/* line 1606, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #64748b;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

/* line 1621, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.modal-close:hover {
  background-color: #f1f5f9;
}

/* line 1625, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.modal-body {
  padding: 24px;
}

/* line 1629, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.form-group {
  margin-bottom: 16px;
}

/* line 1633, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #334155;
  font-size: 14px;
}

/* line 1641, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

/* line 1651, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* line 1658, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
}

/* line 1664, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.spinner-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* line 1673, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.title-option {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
}

/* line 1684, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.title-option:hover {
  background-color: #f8fafc;
  border-color: #3b82f6;
}

/* line 1689, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.title-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
  cursor: pointer;
}

/* line 1696, /opt/webroot/drafity/app/assets/stylesheets/admins.scss */
.title-option label {
  margin: 0;
  cursor: pointer;
  flex: 1;
}
@charset "UTF-8";
/* line 6, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
:root {
  --bg-sidebar: #0b0e1a;
  --bg-main: #f4f6fa;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #ffffff;
  /* グラデーションとプライマリ */
  --primary: #4f46e5;
  --btn-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --sidebar-active-bg: linear-gradient(90deg, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.02) 100%);
  --progress-gradient: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  /* ステータスバッジ用カラー */
  --status-published: #10b981;
  --status-published-bg: #e6f4ea;
  --border-color: #e2e8f0;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  --radius: 16px;
}

/* ブラウザ規定値リセット */
/* line 29, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 35, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
body.admin-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
}

/* 全体を2カラムにする親コンテナ */
/* line 43, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.admin-shell {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

/* ==========================================================================
   2. Dark Mode Sidebar (左側固定)
   ========================================================================== */
/* line 52, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.admin-sidebar {
  width: 260px;
  background-color: var(--bg-sidebar);
  color: #7e84a3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 0 24px 0;
  flex-shrink: 0;
  position: fixed;
  /* 左側に常駐固定 */
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
}

/* サイドバー上部コンテナ */
/* line 69, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.sidebar-top {
  padding: 0 18px;
}

/* line 73, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.admin-sidebar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 6px;
  margin-bottom: 25px;
}

/* 新規作成ボタン（紫青ネオングラデーション） */
/* line 82, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.btn-create-article {
  width: 100%;
  background: var(--btn-gradient);
  color: var(--text-light);
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.25);
  margin-bottom: 32px;
  transition: opacity 0.2s;
}

/* line 101, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.btn-create-article:hover {
  opacity: 0.9;
}

/* ナビゲーションリンク */
/* line 106, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 112, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.sidebar-nav a {
  color: #7e84a3;
  text-decoration: none;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

/* line 125, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.sidebar-nav a svg {
  color: #4a5275;
}

/* line 129, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.sidebar-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

/* line 134, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.sidebar-nav a.active {
  color: var(--text-light);
  background: var(--sidebar-active-bg);
  font-weight: 600;
  box-shadow: inset 3px 0 0 0 #3b82f6;
}

/* line 141, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.sidebar-nav a.active svg {
  color: #3b82f6;
}

/* サイドバー下部固定セクション */
/* line 146, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.sidebar-bottom {
  padding: 24px 18px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}

/* line 152, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

/* line 159, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.user-profile .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

/* line 166, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.user-profile .user-info {
  display: flex;
  flex-direction: column;
}

/* line 171, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.user-profile .user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

/* line 177, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.user-profile .user-plan {
  font-size: 11px;
  color: #52597d;
}

/* line 182, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.user-profile .btn-user-menu {
  margin-left: auto;
  background: none;
  border: none;
  color: #52597d;
  cursor: pointer;
}

/* 使用状況メーター（プログレスバー） */
/* line 191, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.usage-container {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* line 198, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.usage-header {
  font-size: 11px;
  color: #52597d;
  margin-bottom: 8px;
}

/* line 204, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.usage-stats {
  margin-bottom: 8px;
}

/* line 208, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.usage-current {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-light);
}

/* line 214, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.usage-total {
  font-size: 12px;
  color: #52597d;
}

/* line 219, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.usage-progress-bar {
  height: 6px;
  background: #1a1f36;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

/* line 227, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.usage-progress-fill {
  height: 100%;
  background: var(--progress-gradient);
}

/* line 232, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.usage-footer {
  font-size: 11px;
  color: #52597d;
}

/* ==========================================================================
   3. Main Dashboard View (右側可変領域)
   ========================================================================== */
/* line 240, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.admin-main {
  flex-grow: 1;
  padding: 40px;
  margin-left: 260px;
  /* 固定サイドバーの幅だけ右に寄せる */
  min-width: 0;
  /* フレックスアイテムの縮みバグ対策 */
}

/* line 247, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

/* line 254, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.page-header h1 {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
}

/* KPIブロック */
/* line 261, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

/* line 268, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.kpi-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

/* line 276, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.kpi-card .label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 8px;
}

/* line 283, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.kpi-card .value {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

/* Bulk Panel (一括生成) */
/* line 290, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.bulk-panel {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--card-shadow);
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

/* line 299, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.bulk-panel h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* line 305, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.bulk-panel .grid {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

/* line 311, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.bulk-panel .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

/* line 318, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.bulk-panel label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* line 324, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.bulk-panel select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: #f8fafc;
}

/* line 332, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.bulk-panel button {
  background: var(--btn-gradient);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  height: 38px;
}

/* フィルタセグメントコントロール */
/* line 344, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.filter-bar {
  display: flex;
  gap: 4px;
  background-color: #e2e8f0;
  padding: 4px;
  border-radius: 10px;
  width: fit-content;
  margin-bottom: 20px;
}

/* line 354, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.filter-bar .btn {
  padding: 6px 16px;
  border-radius: 7px;
  font-size: 13px;
  text-decoration: none;
  color: var(--text-muted);
}

/* データテーブル */
/* line 363, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.table-wrap {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

/* line 371, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
table {
  width: 100%;
  border-collapse: collapse;
}

/* line 376, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
th {
  background-color: #f8fafc;
  color: var(--text-muted);
  font-weight: 600;
  padding: 14px 20px;
  font-size: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

/* line 386, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
td {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}

/* line 392, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background-color: var(--status-published-bg);
  color: var(--status-published);
}

/* line 402, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.actions a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #3b82f6;
  margin-right: 12px;
}

/* line 410, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.actions a[method="delete"] {
  color: #ef4444;
}

/* ボタン装飾 */
/* line 415, /opt/webroot/drafity/app/assets/stylesheets/pages.scss */
.btn-outline-light {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
@charset "UTF-8";
/* ── Drafity 固有のスタイル（他への影響を防ぐため .drafify-lp 配下に限定） ── */
/* line 8, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp {
  --blue: #3B82F6;
  --purple: #8B5CF6;
  --blue-gradient: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
  --purple-gradient: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  --purple-light: #F3F0FF;
  --bg-light: #F8FAFC;
  --white: #FFFFFF;
  --ink: #0F172A;
  --ink-mid: #334155;
  --ink-lt: #64748B;
  --ink-xlt: #94A3B8;
  --border: rgba(59, 130, 246, 0.08);
  --border-subtle: #E2E8F0;
  --shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
  --r: 16px;
  --r-sm: 8px;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  position: relative;
  width: 100%;
}

/* line 37, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp *,
.drafify-lp *::before,
.drafify-lp *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 45, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp a {
  color: inherit;
  text-decoration: none;
}

/* line 50, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp img {
  max-width: 100%;
  display: block;
}

/* NAV */
/* line 56, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

/* line 64, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .nav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px 0 16px !important;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 73, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
}

/* line 83, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .logo img {
  height: 36px;
  width: auto;
}

/* line 87, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .nav-links {
  display: flex;
  gap: 28px;
}

/* line 91, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .nav-links a {
  font-size: 14px;
  color: var(--ink-lt);
  font-weight: 500;
  transition: color .15s;
}

/* line 97, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .nav-links a:hover {
  color: var(--blue);
}

/* line 100, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .nav-links a.active {
  color: var(--blue);
  font-weight: 700;
}

/* line 104, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 109, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .btn-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
  padding: 8px 16px;
  border-radius: 99px;
  transition: color .15s;
  border: none;
  background: none;
  cursor: pointer;
}

/* line 120, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .btn-login:hover {
  color: var(--blue);
}

/* line 123, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-gradient);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: opacity .2s, transform .15s;
  border: none;
  cursor: pointer;
}

/* line 138, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .btn-primary:hover {
  opacity: .95;
  transform: translateY(-1px);
}

/* line 142, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .btn-primary svg {
  width: 14px;
  height: 14px;
}

/* HERO */
/* line 148, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero {
  background-image: url(/assets/hero-bg-a01c0c32c224cd39b3fcb73111ffff19f37d6629c86cc585c15d9330c20eaaa7.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  padding: 88px 0 80px;
  overflow: hidden;
  position: relative;
}

/* line 157, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* line 168, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EFF6FF;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 99px;
  padding: 6px 14px 6px 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
}

/* line 181, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .eyebrow-badge {
  background: var(--blue-gradient);
  color: var(--white);
  border-radius: 99px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
}

/* line 189, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero-title {
  font-size: clamp(36px, 4.8vw, 54px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.25;
  color: var(--ink);
}

/* line 196, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero-title .num {
  font-size: 1.18em;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue) 20%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin: 4px 0;
}

/* line 206, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero-desc {
  font-size: 15.5px;
  color: var(--ink-lt);
  margin-top: 24px;
  line-height: 1.8;
}

/* line 212, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero-checks {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* line 218, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .check-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-mid);
  box-shadow: var(--shadow-sm);
}

/* line 231, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .check-pill svg {
  width: 14px;
  height: 14px;
  color: var(--purple);
  flex-shrink: 0;
}

/* line 237, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* line 244, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue-gradient);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 99px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 28px -4px rgba(59, 130, 246, 0.35);
  transition: transform .15s, box-shadow .2s;
  border: none;
  cursor: pointer;
}

/* line 261, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .btn-primary-lg:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -5px rgba(59, 130, 246, 0.4);
}

/* line 265, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-mid);
  padding: 16px 28px;
  border-radius: 99px;
  border: 1px solid var(--border-subtle);
  background: var(--white);
  transition: border-color .2s, background .2s;
  cursor: pointer;
}

/* line 279, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .btn-ghost:hover {
  border-color: var(--blue);
  background: #F8FAFC;
}

/* line 283, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero-note {
  font-size: 12px;
  color: var(--ink-xlt);
  margin-top: 14px;
}

/* line 288, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

/* line 294, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero-avatars {
  display: flex;
}

/* line 297, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero-avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-mid);
  margin-right: -8px;
  flex-shrink: 0;
}

/* line 312, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero-social-text {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-lt);
}

/* line 317, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero-social-text strong {
  color: var(--blue);
  font-weight: 700;
}

/* line 321, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* line 327, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .pc-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
}

/* line 332, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .pc-img {
  width: 100%;
  height: auto;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

/* line 339, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* line 351, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .float-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 360, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .float-icon svg {
  width: 16px;
  height: 16px;
}

/* line 364, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .float-label {
  font-size: 10.5px;
  color: var(--ink-lt);
  font-weight: 500;
}

/* line 369, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .float-value {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

/* line 376, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .float-value span {
  font-size: 11px;
  color: var(--ink-lt);
}

/* line 380, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .fc-time .float-icon {
  background: rgba(139, 92, 246, 0.08);
}

/* line 383, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .fc-time .float-icon svg {
  color: var(--purple);
}

/* line 386, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .fc-words .float-icon {
  background: rgba(139, 92, 246, 0.08);
}

/* line 389, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .fc-words .float-icon svg {
  color: var(--purple);
}

/* line 392, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .fc-score .float-icon {
  background: rgba(59, 130, 246, 0.08);
}

/* line 395, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .fc-time {
  top: 12%;
  left: -12%;
}

/* line 399, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .fc-score {
  top: 45%;
  right: -10%;
}

/* line 403, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .fc-words {
  bottom: 10%;
  left: -8%;
}

/* line 407, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .score-circle {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* line 413, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .score-circle svg {
  width: 40px;
  height: 40px;
  transform: rotate(-90deg);
}

/* line 418, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .score-bg {
  stroke: #F1F5F9;
  stroke-width: 4;
  fill: none;
}

/* line 423, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .score-fill {
  stroke: var(--purple);
  stroke-width: 4;
  fill: none;
  stroke-dasharray: 110 138;
  stroke-linecap: round;
}

/* line 430, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .score-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

/* TRUST BAR */
/* line 447, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trust-bar {
  background: var(--white);
  border-top: 1px solid #F1F5F9;
  border-bottom: 1px solid #F1F5F9;
  padding: 32px 0;
}

/* line 453, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* line 458, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trust-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-xlt);
  letter-spacing: .05em;
  margin-bottom: 24px;
}

/* line 466, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

/* line 473, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trust-logo {
  font-size: 15px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: -.01em;
}

/* FEATURES STRIP */
/* line 481, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .features-strip {
  background: var(--bg-light);
  padding: 80px 0;
}

/* line 485, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .features-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* line 490, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* line 495, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--r);
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* line 508, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* line 512, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .fi-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 521, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .fi-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

/* line 526, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .fi-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* line 531, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .fi-desc {
  font-size: 12px;
  color: var(--ink-lt);
  line-height: 1.6;
}

/* PRICING SECTION */
/* line 547, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .pricing-section {
  background: var(--white);
  padding: 100px 0;
}

/* line 551, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* line 556, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* line 561, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .overline {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .05em;
  margin-bottom: 12px;
  display: block;
}

/* line 569, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}

/* line 575, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .section-sub {
  font-size: 15px;
  color: var(--ink-lt);
  margin-top: 16px;
  line-height: 1.7;
}

/* line 581, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F1F5F9;
  border-radius: 99px;
  width: fit-content;
  margin: 0 auto 48px;
  padding: 4px;
}

/* line 591, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .toggle-btn {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-lt);
  padding: 8px 20px;
  border-radius: 99px;
  border: none;
  background: none;
  cursor: pointer;
  transition: all .15s;
}

/* line 602, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .toggle-btn.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* line 607, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .toggle-save {
  background: #EFF6FF;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: 6px;
}

/* line 616, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

/* line 622, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-card {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border-subtle);
  padding: 36px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

/* line 631, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-card:hover {
  box-shadow: var(--shadow);
  border-color: #CBD5E1;
}

/* line 635, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-card.popular {
  border: 2px solid var(--blue);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
}

/* line 639, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
}

/* line 652, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

/* line 657, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-name.accent {
  color: var(--blue);
}

/* line 660, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-desc {
  font-size: 13px;
  color: var(--ink-lt);
  margin-top: 8px;
  line-height: 1.5;
  min-height: 38px;
}

/* line 667, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-price {
  margin: 28px 0 8px;
}

/* line 670, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-price-orig {
  font-size: 12px;
  color: var(--ink-xlt);
  text-decoration: line-through;
  margin-bottom: 2px;
}

/* line 676, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-price-main {
  display: flex;
  align-items: baseline;
}

/* line 680, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .price-yen {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-mid);
}

/* line 685, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .price-num {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}

/* line 693, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .price-unit {
  font-size: 13px;
  color: var(--ink-lt);
  margin-left: 2px;
}

/* line 698, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-price-note {
  font-size: 11.5px;
  color: var(--blue);
  font-weight: 500;
  margin-top: 6px;
  height: 16px;
}

/* line 705, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-cta {
  display: block;
  text-align: center;
  margin: 24px 0;
  padding: 12px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  width: 100%;
  border: none;
  cursor: pointer;
}

/* line 718, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-cta.outline {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--border-subtle);
}

/* line 723, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-cta.outline:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
}

/* line 727, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-cta.filled {
  background: var(--blue-gradient);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* line 732, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-cta.filled:hover {
  opacity: 0.95;
}

/* line 735, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-divider {
  border: none;
  border-top: 1px solid #F1F5F9;
  margin: 20px 0;
}

/* line 740, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 746, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.5;
}

/* line 754, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}

/* line 761, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-contact {
  text-align: center;
  padding: 16px 0 8px;
}

/* line 765, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-contact-label {
  font-size: 12.5px;
  color: var(--ink-lt);
  line-height: 1.6;
}

/* line 770, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 24px;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-mid);
  border: 1px solid var(--border-subtle);
  background: var(--white);
  transition: all .2s;
  cursor: pointer;
}

/* line 785, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .plan-contact-cta:hover {
  border-color: #CBD5E1;
  background: #F8FAFC;
}

/* SHARED FEATURES */
/* line 798, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .shared-features {
  margin-top: 60px;
  background: var(--bg-light);
  border-radius: var(--r);
  padding: 40px;
  border: 1px solid rgba(15, 23, 42, 0.02);
}

/* line 805, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .shared-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: 32px;
}

/* line 812, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .shared-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* line 817, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .shared-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

/* line 824, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .shared-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 834, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .shared-icon svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

/* line 839, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .shared-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}

/* line 844, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .shared-item-desc {
  font-size: 12px;
  color: var(--ink-lt);
  line-height: 1.6;
}

/* FREE TRIAL SECTION */
/* line 851, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-section {
  background: var(--bg-light);
  padding: 100px 0;
}

/* line 855, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* line 860, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-header {
  text-align: center;
  margin-bottom: 48px;
}

/* line 864, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EFF6FF;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}

/* line 876, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}

/* line 882, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-title .free {
  color: var(--blue);
}

/* line 885, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-sub {
  font-size: 15px;
  color: var(--ink-lt);
  margin-top: 14px;
}

/* line 890, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* line 897, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-card-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
}

/* line 901, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-left {
  padding: 44px 36px;
  border-right: 1px solid #F1F5F9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* line 908, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-left-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

/* line 914, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* line 920, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.5;
}

/* line 928, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-check-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}

/* line 935, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  padding: 14px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  background: var(--blue-gradient);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
  border: none;
  cursor: pointer;
  width: 100%;
}

/* line 952, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-cancel-note {
  font-size: 11px;
  color: var(--ink-xlt);
  text-align: center;
  margin-top: 12px;
}

/* line 958, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-center {
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

/* line 965, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-center-mock {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 300px;
}

/* line 974, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F5F9;
}

/* line 982, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .mock-logo-dot {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--blue);
}

/* line 988, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .mock-logo-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

/* line 993, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .mock-field-label {
  font-size: 10px;
  color: var(--ink-lt);
  font-weight: 500;
  margin-bottom: 6px;
}

/* line 999, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .mock-field {
  background: #F1F5F9;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 11px;
  color: var(--ink-mid);
  margin-bottom: 12px;
}

/* line 1007, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .mock-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #F1F5F9;
}

/* line 1015, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .mock-score-label {
  font-size: 11px;
  color: var(--ink-lt);
}

/* line 1019, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .mock-score-val {
  font-family: 'Inter';
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
}

/* line 1025, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .mock-score-max {
  font-size: 11px;
  color: var(--ink-xlt);
}

/* line 1029, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .mock-checks {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 1034, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .mock-check-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--ink-mid);
}

/* line 1041, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .mock-check-item svg {
  width: 12px;
  height: 12px;
  color: var(--blue);
}

/* line 1046, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-right {
  padding: 44px 36px;
  border-left: 1px solid #F1F5F9;
}

/* line 1050, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-right-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

/* line 1056, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 1062, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* line 1067, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-fi-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 1077, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-fi-icon svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

/* line 1082, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-fi-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

/* line 1087, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .trial-fi-desc {
  font-size: 12px;
  color: var(--ink-lt);
  margin-top: 2px;
  line-height: 1.5;
}

/* STEPS */
/* line 1095, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .steps-section {
  background: var(--white);
  padding: 80px 0;
}

/* line 1099, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .steps-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 28px;
}

/* line 1104, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .steps-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 48px;
}

/* line 1111, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .steps-title strong {
  color: var(--blue);
}

/* line 1114, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
}

/* line 1119, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

/* line 1126, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .step-num-icon {
  position: relative;
}

/* line 1129, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1139, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .step-circle svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

/* line 1144, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .step-num-badge {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1160, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .step-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* line 1165, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .step-desc {
  font-size: 12px;
  color: var(--ink-lt);
  line-height: 1.6;
}

/* line 1170, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .step-arrow {
  padding-top: 20px;
  color: var(--ink-xlt);
}

/* PRICE ZERO ROW */
/* line 1176, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .price-zero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-light);
  border-radius: var(--r);
  padding: 24px 32px;
  margin-top: 48px;
  gap: 20px;
}

/* line 1186, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .price-zero-left {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

/* line 1191, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .price-zero-label {
  font-size: 13px;
  color: var(--ink-lt);
  font-weight: 500;
}

/* line 1196, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .price-zero-num {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

/* line 1203, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .price-zero-yen {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink-mid);
}

/* line 1208, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .price-zero-tag {
  background: #EFF6FF;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
}

/* line 1216, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .price-zero-cta {
  flex: 1;
  max-width: 320px;
}

/* line 1220, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .btn-trial {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  background: var(--blue-gradient);
  color: var(--white);
  border: none;
  cursor: pointer;
  width: 100%;
}

/* FAQ */
/* line 1237, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .faq-section {
  background: var(--bg-light);
  padding: 80px 0;
}

/* line 1241, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}

/* line 1246, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

/* line 1252, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .faq-item {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
}

/* line 1257, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp details.faq-item summary {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

/* line 1268, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp details.faq-item summary::-webkit-details-marker {
  display: none;
}

/* line 1271, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .faq-icon {
  width: 20px;
  height: 20px;
  color: var(--ink-lt);
  transition: transform .2s;
}

/* line 1277, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp details.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--blue);
}

/* line 1281, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .faq-answer {
  padding: 0 24px 20px;
  font-size: 13.5px;
  color: var(--ink-lt);
  line-height: 1.7;
}

/* CTA BANNER */
/* line 1289, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .cta-banner {
  background: var(--blue-gradient);
  padding: 88px 28px;
  color: var(--white);
}

/* line 1294, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* line 1299, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .cta-badge2 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

/* line 1308, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .cta-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
}

/* line 1313, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .cta-title .free2 {
  text-decoration: underline;
}

/* line 1316, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
}

/* line 1321, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .cta-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* line 1326, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue);
  padding: 16px 40px;
  border-radius: 99px;
  font-size: 15.5px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
  border: none;
  cursor: pointer;
}

/* line 1340, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

/* FOOTER */
/* line 1347, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .footer {
  background: var(--white);
  color: var(--ink-lt);
  padding: 60px 0 32px;
  border-top: 1px solid #F1F5F9;
}

/* line 1353, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* line 1358, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid #F1F5F9;
}

/* line 1367, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1372, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .footer-logo img {
  height: 32px;
  width: auto;
}

/* line 1376, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .footer-tagline {
  font-size: 12.5px;
  margin-top: 10px;
  color: var(--ink-lt);
}

/* line 1381, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .footer-links {
  display: flex;
  gap: 48px;
}

/* line 1385, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

/* line 1391, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 1397, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .footer-col ul li a {
  font-size: 13px;
  transition: color .15s;
}

/* line 1401, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .footer-col ul li a:hover {
  color: var(--blue);
}

/* line 1404, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  font-size: 12px;
  color: var(--ink-xlt);
}

/* line 1412, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .footer-bottom a {
  margin-left: 16px;
}

/* line 1415, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
.drafify-lp .footer-bottom a:hover {
  color: var(--blue);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  /* line 1421, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
  .drafify-lp .hero-inner,
  .drafify-lp .trial-card-inner,
  .drafify-lp .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* line 1426, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
  .drafify-lp .trial-left,
  .drafify-lp .trial-right {
    border: none;
    border-top: 1px solid #F1F5F9;
  }

  /* line 1431, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
  .drafify-lp .hero-right {
    justify-content: center;
    margin-top: 24px;
  }

  /* line 1435, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
  .drafify-lp .fc-time, .drafify-lp .fc-score, .drafify-lp .fc-words {
    position: static;
    margin-bottom: 10px;
  }

  /* line 1439, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
  .drafify-lp .features-grid, .drafify-lp .shared-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* line 1442, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
  .drafify-lp .steps-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* line 1446, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
  .drafify-lp .step-arrow {
    display: none;
  }
}
@media (max-width: 620px) {
  /* line 1451, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
  .drafify-lp .nav-links {
    display: none;
  }

  /* line 1454, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
  .drafify-lp .features-grid, .drafify-lp .shared-grid {
    grid-template-columns: 1fr;
  }

  /* line 1457, /opt/webroot/drafity/app/assets/stylesheets/tops.scss */
  .drafify-lp .price-zero-row {
    flex-direction: column;
    text-align: center;
  }
}
@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
/* line 20, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container {
  background: #f9fafb;
  padding: 80px 0;
  /* ------- メインアイキャッチ画像デザイン（新設） -------- */
  /* ------- 目次デザイン -------- */
  /* ------- 本文エリア -------- */
}
/* line 24, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .container {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 50px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
/* line 33, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
}
/* line 43, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-image-wrapper {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 50px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #f3f4f6;
  position: relative;
}
/* line 54, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  pointer-events: none;
}
/* line 63, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-image-wrapper .column-thumb-main {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
/* line 71, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-image-wrapper .column-thumb-main:hover {
  transform: scale(1.02);
}
/* line 78, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .toc {
  background: #f0f4ff;
  border: 1px solid #c7d2fe;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 50px;
  font-size: 15px;
  line-height: 1.7;
}
/* line 87, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .toc .toc-title {
  font-size: 20px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 12px;
}
/* line 94, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .toc .toc-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
/* line 99, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .toc .toc-list .toc-item {
  margin: 6px 0;
}
/* line 102, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .toc .toc-list .toc-item a {
  color: #374151;
  text-decoration: none;
  transition: color 0.2s ease;
}
/* line 107, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .toc .toc-list .toc-item a:hover {
  color: #2563eb;
}
/* line 112, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .toc .toc-list .toc-item.toc-level-3 {
  margin-left: 18px;
  font-size: 14px;
}
/* line 113, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .toc .toc-list .toc-item.toc-level-4 {
  margin-left: 30px;
  font-size: 13px;
}
/* line 119, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-body {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
}
/* line 124, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-body h2, .blog-container .column-body h3, .blog-container .column-body h4 {
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 20px;
  scroll-margin-top: 100px;
}
/* line 131, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-body h2 {
  font-size: 26px;
  color: #111;
  border-bottom: 3px solid #3b82f6;
  padding-bottom: 6px;
}
/* line 138, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-body h3 {
  font-size: 22px;
  color: #1e40af;
  position: relative;
  padding-left: 14px;
}
/* line 144, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-body h3::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #3b82f6;
}
/* line 152, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-body h4 {
  font-size: 18px;
  color: #374151;
}
/* line 157, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-body p {
  margin-bottom: 20px;
}
/* line 161, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-body img {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
/* line 169, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-body a {
  color: #2563eb;
  text-decoration: underline;
}
/* line 172, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-body a:hover {
  opacity: 0.8;
}
/* line 177, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-body blockquote {
  background: #f1f5f9;
  border-left: 5px solid #3b82f6;
  padding: 15px 20px;
  border-radius: 8px;
  color: #444;
  margin: 25px 0;
  font-style: italic;
}
/* line 187, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.blog-container .column-body ul, .blog-container .column-body ol {
  margin: 15px 0 25px 25px;
}

/* --------- レスポンシブ --------- */
@media (max-width: 768px) {
  /* line 195, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .blog-container {
    padding: 60px 15px;
  }
  /* line 198, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .blog-container .container {
    padding: 40px 24px;
  }
  /* line 202, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .blog-container .column-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  /* line 207, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .blog-container .column-image-wrapper {
    margin-bottom: 35px;
    border-radius: 8px;
  }
  /* line 211, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .blog-container .column-image-wrapper::after {
    border-radius: 8px;
  }
  /* line 216, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .blog-container .toc {
    padding: 18px 20px;
  }
  /* line 218, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .blog-container .toc .toc-title {
    font-size: 18px;
  }
  /* line 219, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .blog-container .toc .toc-list a {
    font-size: 14px;
  }
  /* line 222, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .blog-container .column-body {
    font-size: 15px;
  }
  /* line 224, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .blog-container .column-body h2 {
    font-size: 22px;
  }
  /* line 225, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .blog-container .column-body h3 {
    font-size: 18px;
  }
  /* line 226, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .blog-container .column-body h4 {
    font-size: 16px;
  }
}
/* line 232, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow {
  background: #f9fafb;
  padding: 80px 0;
}
/* line 236, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}
/* line 244, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .columns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
/* line 250, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* line 257, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
/* line 262, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card .column-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
/* line 267, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card .column-image .column-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
/* line 273, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card .column-image .column-thumb:hover {
  transform: scale(1.05);
}
/* line 279, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card .column-content {
  padding: 20px;
}
/* line 282, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card .column-content .column-title {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}
/* line 288, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card .column-content .column-title a {
  color: inherit;
  text-decoration: none;
}
/* line 292, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card .column-content .column-title a:hover {
  color: #007aff;
}
/* line 298, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card .column-content .column-description {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}
/* line 305, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card .column-content .column-admin-links {
  margin-top: 10px;
}
/* line 308, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card .column-content .column-admin-links .btn-edit, .section-knowhow .column-card .column-content .column-admin-links .btn-delete {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 8px;
}
/* line 316, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card .column-content .column-admin-links .btn-edit {
  background: #e0f2fe;
  color: #0369a1;
}
/* line 320, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card .column-content .column-admin-links .btn-edit:hover {
  background: #bae6fd;
}
/* line 325, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card .column-content .column-admin-links .btn-delete {
  background: #fee2e2;
  color: #b91c1c;
}
/* line 329, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .column-card .column-content .column-admin-links .btn-delete:hover {
  background: #fecaca;
}
/* line 338, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .pagination-wrapper {
  margin-top: 40px;
  text-align: center;
}
/* line 342, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .pagination-wrapper .pagination {
  display: inline-flex;
  gap: 8px;
}
/* line 346, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .pagination-wrapper .pagination a, .section-knowhow .pagination-wrapper .pagination span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid #ddd;
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
}
/* line 357, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .pagination-wrapper .pagination a:hover, .section-knowhow .pagination-wrapper .pagination span:hover {
  background: #007aff;
  color: #fff;
}
/* line 362, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .pagination-wrapper .pagination a.current, .section-knowhow .pagination-wrapper .pagination span.current {
  background: #007aff;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 768px) {
  /* line 374, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .section-knowhow {
    padding: 60px 20px;
  }
  /* line 377, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .section-knowhow .section-title {
    font-size: 26px;
  }
  /* line 383, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .section-knowhow .column-card .column-content .column-title {
    font-size: 18px;
  }
  /* line 387, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .section-knowhow .column-card .column-content .column-description {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  /* line 396, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .section-knowhow {
    padding: 50px 16px;
  }
  /* line 399, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .section-knowhow .columns-grid {
    grid-template-columns: 1fr;
  }
  /* line 404, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .section-knowhow .column-card .column-image {
    height: 180px;
  }
  /* line 408, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .section-knowhow .column-card .column-content {
    padding: 16px;
  }
}
/* --- コラム記事一覧 全体デザイン --- */
/* line 421, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow {
  padding: 40px 0;
  background-color: #f9f9fb;
}
/* line 425, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.section-knowhow .section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1a1a1a;
}

/* ジャンル絞り込みエリア */
/* line 435, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-filter-wrapper {
  margin-bottom: 40px;
  text-align: center;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
/* line 443, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-filter-wrapper .filter-form {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
/* line 448, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-filter-wrapper .filter-form label {
  font-weight: 600;
  color: #444;
}
/* line 453, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-filter-wrapper .filter-form .form-select {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 16px;
  transition: border-color 0.3s;
}
/* line 458, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-filter-wrapper .filter-form .form-select:focus {
  border-color: #f6c23e;
  box-shadow: none;
}

/* ジャンル別サマリー（グリッド時） */
/* line 467, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-summary-container {
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eef0f7;
}
/* line 474, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-summary-container .summary-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #4e73df;
  border-left: 4px solid #4e73df;
  padding-left: 10px;
}
/* line 483, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-summary-container .summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* line 488, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-summary-container .summary-grid .summary-item {
  background: #f1f3f9;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #555;
}
/* line 494, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-summary-container .summary-grid .summary-item strong {
  color: #222;
}
/* line 495, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-summary-container .summary-grid .summary-item .pillar-num {
  color: #e67e22;
  font-weight: bold;
}
/* line 496, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-summary-container .summary-grid .summary-item .child-num {
  color: #3498db;
  font-weight: bold;
}

/* ジャンルグループ（親記事用） */
/* line 502, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-group {
  margin-bottom: 60px;
}
/* line 505, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-group .genre-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 3px solid #333;
}
/* line 515, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-group .genre-header .genre-name {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 0;
  color: #1a1a1a;
}
/* line 524, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.genre-group .genre-header .genre-stats .badge {
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 6px;
}

/* 記事リストアイテム（カードスタイル） */
/* line 534, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.pillar-article-item {
  margin: 0 0 16px 0;
  padding: 20px;
  background: #fff;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  align-items: center;
}
/* line 543, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.pillar-article-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
/* line 549, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.pillar-article-item .thumb-container .column-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}
/* line 558, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.pillar-article-item .info-container .column-title {
  margin: 0 0 12px 0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
}
/* line 563, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.pillar-article-item .info-container .column-title a {
  color: #1a1a1a;
  text-decoration: none;
}
/* line 566, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.pillar-article-item .info-container .column-title a:hover {
  color: #4e73df;
}
/* line 570, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.pillar-article-item .info-container .column-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
  color: #777;
}
/* line 578, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.pillar-article-item .info-container .column-meta .badge-pillar {
  background-color: #fff4e0;
  color: #d35400;
  border: 1px solid #f39c12;
  font-weight: 600;
}
/* line 585, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.pillar-article-item .info-container .column-meta .update-date {
  display: flex;
  align-items: center;
}
/* line 588, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.pillar-article-item .info-container .column-meta .update-date::before {
  content: '🕒';
  margin-right: 4px;
}
/* line 596, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.pillar-article-item .admin-actions {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #eee;
  display: flex;
  gap: 8px;
}

/* 汎用バッジ/ボタン調整 */
/* line 606, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.badge-id {
  background: #f8f9fa;
  color: #aaa;
  border: 1px solid #ddd;
}

/* line 649, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.container-fluid.py-4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* line 653, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.api-settings-page {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* line 662, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.api-settings-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 1.5rem;
}
/* line 666, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.api-settings-header .api-settings-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: inherit;
}
/* line 674, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.api-settings-header .api-settings-subtitle {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
}

/* line 682, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.api-settings-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* line 690, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.api-settings-card .api-settings-card__body {
  padding: 2.5rem;
}

/* line 696, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
/* line 701, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}
/* line 707, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-section .form-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  color: inherit;
}
/* line 715, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-section .form-section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: linear-gradient(135deg, #a78bfa 0%, #6366f1 50%, #3b82f6 100%);
  border-radius: 2px;
  margin-right: 0.75rem;
}

/* line 728, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-group {
  margin-bottom: 1.5rem;
}
/* line 731, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-group:last-child {
  margin-bottom: 0;
}
/* line 735, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
/* line 744, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-group .form-control {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  color: inherit;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}
/* line 755, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-group .form-control:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
/* line 761, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-group .form-control[readonly] {
  opacity: 0.6;
  cursor: not-allowed;
  border-style: dashed;
  background-color: rgba(0, 0, 0, 0.01);
}
/* line 769, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-group textarea.form-control {
  font-family: monospace;
  font-size: 0.85rem;
  resize: vertical;
  line-height: 1.5;
}
/* line 776, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-group .form-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* line 785, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
/* line 790, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-check:last-child {
  margin-bottom: 0;
}
/* line 794, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background-color: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  margin-right: 0.75rem;
  cursor: pointer;
  position: relative;
  transition: all 0.15s;
}
/* line 807, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-check input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #a78bfa 0%, #6366f1 50%, #3b82f6 100%);
  border-color: transparent;
}
/* line 811, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
/* line 824, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-check input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
}
/* line 830, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-check .form-check-label {
  font-size: 0.9rem;
  cursor: pointer;
  margin-bottom: 0;
}

/* line 838, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
/* line 846, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
/* line 859, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-actions .btn.btn-primary {
  background: linear-gradient(135deg, #a78bfa 0%, #6366f1 50%, #3b82f6 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}
/* line 864, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-actions .btn.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}
/* line 870, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-actions .btn.btn-primary:active {
  transform: translateY(0);
}
/* line 875, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-actions .btn.btn-secondary {
  background-color: rgba(0, 0, 0, 0.05);
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
/* line 880, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.form-actions .btn.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

/* line 888, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.api-instructions {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2rem;
}
/* line 894, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.api-instructions .api-instructions-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
/* line 900, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.api-instructions .api-instructions-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  min-width: 0;
}
/* line 907, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.api-instructions .api-instructions-step:last-child {
  margin-bottom: 0;
}
/* line 911, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.api-instructions .api-instructions-step .step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #8b5cf6;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* line 926, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.api-instructions .api-instructions-step .step-content {
  flex-grow: 1;
  min-width: 0;
}
/* line 931, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.api-instructions .api-instructions-step .step-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}
/* line 937, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.api-instructions .api-instructions-step .step-content code {
  display: block;
  width: 100%;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-family: monospace;
  font-size: 0.85rem;
  color: #0284c7;
  overflow-x: auto;
  white-space: nowrap;
  box-sizing: border-box;
}

@media (prefers-color-scheme: dark) {
  /* line 958, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
  .api-instructions .api-instructions-step .step-content code {
    background-color: rgba(0, 0, 0, 0.3);
    color: #38bdf8;
  }
}
/* line 970, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.management-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
}

/* line 977, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.management-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}
/* line 983, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.management-table thead {
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}
/* line 986, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.management-table thead th {
  padding: 1rem 0.75rem;
  font-weight: 600;
  opacity: 0.6;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
/* line 998, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.management-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background-color 0.15s ease;
}
/* line 1002, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.management-table tbody tr:last-child {
  border-bottom: none;
}
/* line 1006, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.management-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}
/* line 1011, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.management-table tbody td {
  padding: 1.25rem 0.75rem;
  vertical-align: middle;
  white-space: nowrap;
}

/* line 1020, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.client-id {
  font-family: monospace;
  opacity: 0.5;
}

/* line 1025, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.client-email {
  font-weight: 500;
}

/* line 1029, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.price-text {
  font-weight: 600;
}

/* line 1033, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.contract-date {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* line 1038, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.empty-text {
  opacity: 0.3;
}

/* line 1043, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.plan-badge,
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid transparent;
}

/* line 1056, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.plan-badge.plan-premium {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.2);
}
/* line 1061, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.plan-badge.plan-standard {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.2);
}
/* line 1066, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.plan-badge.plan-free {
  background: rgba(107, 114, 128, 0.1);
  color: inherit;
  border-color: rgba(107, 114, 128, 0.2);
}

/* line 1075, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.status-badge.status-active {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.2);
}
/* line 1080, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.status-badge.status-active::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  margin-right: 0.5rem;
  box-shadow: 0 0 8px #10b981;
}
/* line 1091, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.status-badge.status-canceled {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.2);
}

/* line 1099, /opt/webroot/drafity/app/assets/stylesheets/columns.scss */
.btn.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  border-radius: 6px;
}
