/* ã‚ƒIãƒ–ã?ãƒƒVã‚ƒNå°‚ç”¨CSS */

.content {
  min-height: 100vh;
  background: #ffffff !important;
  padding: 0;
  position: relative;
}

/* ãƒ?ƒ•ã‚ƒDãƒƒHãƒˆïƒV?OSç”ƒB?‰ïƒVšé’ç³ƒT */
.content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(135deg, #1a5aac 0%, #3b82f6 100%);
  z-index: 0;
}

/* Androidç”ƒB?šçƒL‘çƒEƒT - ãƒšã?ã‚ƒNå…ƒBä½“ã‚’Androidã‚ƒHãƒƒDãƒƒVãƒH */
.content--android {
  background: #ffffff !important;
}

.content--android::before {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%) !important;
}

.content--android .step {
  border-color: rgba(22,163,74,0.2) !important;
  box-shadow: 0 4px 20px rgba(22,163,74,0.1) !important;
}

.content--android .step::before {
  background: linear-gradient(180deg, #16a34a 0%, #22c55e 100%) !important;
}

.content--android .step-header {
  background: linear-gradient(135deg, rgba(22,163,74,0.08) 0%, rgba(34,197,94,0.08) 100%) !important;
  border-bottom-color: rgba(22,163,74,0.2) !important;
}

.content--android .step-number {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%) !important;
  box-shadow: 0 2px 8px rgba(22,163,74,0.35) !important;
}

.content--android .step::after {
  background: linear-gradient(90deg, #16a34a 0%, #22c55e 50%, transparent 100%) !important;
}

.content--android .step + .step::before {
  background: linear-gradient(180deg, #22c55e 0%, transparent 100%) !important;
}

.content--android .download-btn::after {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%) !important;
}

.content--android .download-btn img {
  box-shadow: 0 6px 20px rgba(22,163,74,0.25) !important;
}

.content--android .step-image img {
  border-color: rgba(22,163,74,0.15) !important;
  box-shadow: 0 4px 16px rgba(22,163,74,0.12) !important;
}

.content h1 {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin: 0;
  padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-md);
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

.content .container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  position: relative;
  z-index: 1;
}

/* ã‚ƒPãƒ?ƒƒãƒ—ã‚«ãƒƒVãƒ?*/
.step {
  margin-bottom: 20px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,90,172,0.08);
  border: 1px solid rgba(226,232,240,0.8);
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-light) 100%);
}

.step-header {
  display: flex;
  align-items: center;
  padding: 18px 18px 18px 22px;
  background: linear-gradient(135deg, rgba(26,90,172,0.03) 0%, rgba(59,130,246,0.03) 100%);
  gap: 12px;
  border-bottom: 1px solid rgba(226,232,240,0.6);
}

.step-number {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: white;
  min-width: 70px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(26,90,172,0.25);
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  flex: 1;
}

.step-content {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  padding: 20px 18px 20px 22px;
  background: #ffffff;
}

.step-image {
  text-align: center;
  padding: 0 18px 20px 22px;
  background: #ffffff;
}

.step-image img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin: 0 auto;
  display: block;
  border: 1px solid rgba(226,232,240,0.5);
}

/* STEP1ãƒ‡ç”ƒTåƒã‚µã‚Aã‚ƒR */
.step:first-child .step-image img {
  max-width: 300px;
}

/* STEP2ä»Eé™ã?ç”ƒTåƒã‚µã‚Aã‚ƒR */
.step:not(:first-child) .step-image img {
  max-width: 350px;
  max-height: 700px;
}

/* placeholder?ˆç”»åƒãŒãƒFã??ƒGåˆã?ãƒ?ãƒŸã?è¡ƒBç¤ƒR??*/
.step-image .placeholder {
  max-width: 100%;
  width: 300px;
  height: 110px;
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #94a3b8;
  font-size: 13px;
  border-radius: 12px;
  font-weight: 600;
}

/* placeholderå†?«ç”ƒTåƒãŒã‚ã‚‹å ƒGåˆã?ã€placeholderãƒ‡ã‚ƒPã‚ƒ\ã‚AãƒƒHã‚’ç„¡åŠƒPåŒ?*/
.step-image .placeholder:has(img) {
  background: none;
  border: none;
  width: 100%;
  height: auto;
  padding: 0;
}

.step:not(:first-child) .step-image .placeholder {
  width: 350px;
  height: 624px;
}

.step:not(:first-child) .step-image .placeholder:has(img) {
  height: auto;
}

/* ãƒ?ã‚ƒ’ãƒƒEãƒƒ…ãƒƒVãƒ‰ã?ã‚ƒ\ãƒƒE */
center, ceneter {
  display: block;
  text-align: center;
  margin: var(--spacing-md) 0;
}

.download-btn {
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
}

.download-btn::after {
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.download-btn:hover::after {
  opacity: 0.15;
}

.download-btn:hover {
  transform: translateY(-4px);
}

.download-btn img {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(26,90,172,0.2);
  display: block;
}

/* æ³ƒBæ„æ›¸ã?*/
.note {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left: 4px solid #f59e0b;
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  margin-top: var(--spacing-sm);
  font-size: 13px;
  color: #92400e;
  line-height: 1.7;
  box-shadow: 0 2px 8px rgba(245,158,11,0.1);
}

.note::before {
  content: "?’¡ ";
  font-weight: 800;
  margin-right: 6px;
}

/* ãƒƒFãƒƒEã‚ƒb */
.link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.link:hover {
  color: var(--blue-light);
  text-decoration: underline;
}

/* æ›ƒGæ–[æƒ??ƒA */
.update-info {
  text-align: center;
  margin-top: var(--spacing-lg);
  padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-md);
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--text-secondary);
}

/* ãƒ—ãƒ­ã‚[ãƒƒƒã‚ƒPãƒã?é¢ƒBãƒ‡è£?vƒZ */
.step::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 50%, transparent 100%);
  opacity: 0.3;
}

/* ã‚ƒPãƒ?ƒƒãƒ—é–“ãƒ‡æŽEç¶šçƒL?*/
.step + .step {
  position: relative;
}

.step + .step::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: linear-gradient(180deg, var(--blue-light) 0%, transparent 100%);
}

/* ã‚ƒ\ãƒ–ãƒ¬ãƒ?ƒˆä»Eä¸?*/
@media (min-width: 640px) {
  .content::before {
    height: 200px;
  }
  
  .content h1 {
    font-size: 32px;
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
  }
  
  .content .container {
    max-width: 680px;
    padding: 0 var(--spacing-md);
  }
  
  .step {
    margin-bottom: 24px;
    border-radius: 24px;
  }
  
  .step-header {
    padding: 22px 24px 22px 28px;
    gap: var(--spacing-sm);
  }
  
  .step-number {
    min-width: 80px;
    height: 40px;
    font-size: 13px;
    border-radius: 20px;
  }
  
  .step-title {
    font-size: 17px;
  }
  
  .step-content {
    font-size: 15px;
    padding: 24px 24px 24px 28px;
    line-height: 2;
  }
  
  .step-image {
    padding: 0 24px 24px 28px;
  }
  
  .download-btn img {
    max-width: 320px;
  }
}

/* PC */
@media (min-width: 860px) {
  .content::before {
    height: 220px;
  }
  
  .content h1 {
    font-size: 36px;
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-xl);
  }
  
  .content .container {
    max-width: 720px;
  }
  
  .step {
    margin-bottom: 28px;
  }
}

/* ========== ãƒ?ã‚ƒ’ãƒƒEãƒƒ…ãƒƒVãƒ‰ã?ãƒƒVã‚ƒNå°‚ç”¨ã‚ƒPã‚ƒ\ã‚AãƒƒH ========== */

.content--download {
  background: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.content--download::before {
  height: 200px;
  background: linear-gradient(135deg, #1a5aac 0%, #3b82f6 50%, #22c55e 100%);
  clip-path: ellipse(120% 100% at 50% 0%);
}

.content--download::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.content--download h1 {
  font-size: 26px;
  padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-md);
  position: relative;
  z-index: 2;
}

.download-container {
  background: transparent;
  padding: 0 var(--spacing-sm) var(--spacing-xl);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 600px;
  margin: 0 auto;
}

.download-container .subtitle {
  color: var(--text);
  font-size: 15px;
  margin-bottom: var(--spacing-lg);
  line-height: 1.9;
  font-weight: 500;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.9) 100%);
  padding: var(--spacing-sm);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 800;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  min-height: 72px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s;
}

.download-btn:hover::before {
  left: 100%;
}

.download-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
}

.download-btn.ios {
  background: linear-gradient(135deg, #1a5aac 0%, #3b82f6 100%);
  animation: btn-glow-ios 3s ease-in-out infinite;
}

@keyframes btn-glow-ios {
  0%, 100% { box-shadow: 0 6px 20px rgba(26,90,172,0.3), 0 0 40px rgba(59,130,246,0.15); }
  50% { box-shadow: 0 8px 28px rgba(26,90,172,0.4), 0 0 60px rgba(59,130,246,0.25); }
}

.download-btn.ios:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(26,90,172,0.45), 0 0 80px rgba(59,130,246,0.3);
}

.download-btn.android {
    background: #fff;
    border: solid 2px #1fbd59;
    animation: btn-glow-android 3s ease-in-out infinite;
    color: #1fbd59;
}

@keyframes btn-glow-android {
  0%, 100% { box-shadow: 0 6px 20px rgba(22,163,74,0.3), 0 0 40px rgba(34,197,94,0.15); }
  50% { box-shadow: 0 8px 28px rgba(22,163,74,0.4), 0 0 60px rgba(34,197,94,0.25); }
}

.download-btn.android:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(22,163,74,0.45), 0 0 80px rgba(34,197,94,0.3);
}

.download-btn span {
  position: relative;
  z-index: 1;
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.features {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}

.feature {
  color: var(--text);
  text-align: left;
  padding: var(--spacing-md);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue), #22c55e);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature:hover::before {
  opacity: 1;
}

.feature:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.feature:nth-child(1):hover {
  background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
}

.feature:nth-child(2):hover {
  background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
}

.feature:nth-child(3):hover {
  background: linear-gradient(135deg, #ffffff 0%, #dcfce7 100%);
}

.feature-icon {
  font-size: 52px;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
  transition: all 0.4s ease;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26,90,172,0.08) 0%, rgba(34,197,94,0.08) 100%);
  border-radius: 16px;
}

.feature:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.25));
  background: linear-gradient(135deg, rgba(26,90,172,0.15) 0%, rgba(34,197,94,0.15) 100%);
}

.feature-content {
  flex: 1;
  text-align: left;
}

.feature-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.feature-desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (min-width: 640px) {
  .content--download h1 {
    font-size: 32px;
  }
  
  .download-container {
    padding: 0 var(--spacing-md) var(--spacing-xl);
    max-width: 680px;
  }
  
  .download-container .subtitle {
    font-size: 16px;
  }
  
  .download-btn {
    width: 320px;
    min-height: 72px;
    font-size: 17px;
    padding: 24px 40px;
  }
  
  .features {
    gap: var(--spacing-md);
  }
  
  .feature {
    font-size: 14px;
  }
  
  .feature-icon {
    font-size: 36px;
  }
}

@media (min-width: 860px) {
  .content--download h1 {
    font-size: 36px;
  }
  
  .download-container {
    max-width: 720px;
  }
}

/* ========== QAãƒšã?ã‚ƒNå°‚ç”¨ã‚ƒPã‚ƒ\ã‚AãƒƒH ========== */

.content--qa {
  background: #f8fafc !important;
}

.content--qa::before {
  height: 120px;
  background: linear-gradient(135deg, #1a5aac 0%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%);
}

.content--qa h1 {
  font-size: 22px;
  padding: 35px 0px 50px;
  margin-bottom: 0;
  text-align: center;
}

.qa {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
}

.qa-item {
  margin-bottom: 12px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.qa-item:hover {
  border-color: rgba(26,90,172,0.3);
  box-shadow: 0 4px 12px rgba(26,90,172,0.08);
  transform: translateY(-1px);
}

.qa-item[open] {
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(26,90,172,0.12);
}

.qa-question {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  padding: 16px 48px 16px 16px;
  background: #ffffff;
  position: relative;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.qa-question::-webkit-details-marker {
  display: none;
}

.qa-question::before {
  content: "Q";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(26,90,172,0.2);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.qa-question::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231a5aac'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qa-item[open] .qa-question::after {
  transform: translateY(-50%) rotate(180deg);
}

.qa-item[open] .qa-question::before {
  box-shadow: 0 4px 10px rgba(26,90,172,0.3);
  transform: scale(1.05);
}

.qa-question:hover {
  background: #f8fafc;
}

.qa-answer {
  font-size: 14px;
  line-height: 1.85;
  color: #475569;
  padding: 0 16px 18px 16px;
  background: #ffffff;
  position: relative;
  display: flex;
  gap: 12px;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.qa-answer::before {
  content: "A";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #f1f5f9;
  color: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  border: 2px solid var(--blue);
  margin-top: 2px;
}

.qa-answer > * {
  flex: 1;
}

.qa-answer-content {
  display: block;
  width: 100%;
}

.qa-answer-content p {
  margin: 0 0 12px 0;
  line-height: 1.85;
}

.qa-answer-content p:last-child {
  margin-bottom: 0;
}

.qa br {
  display: block;
  content: "";
  margin: 6px 0;
}

.qa a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.qa a:hover {
  color: var(--blue-light);
}

.qa p {
  margin: 0;
}

.qa-answer #box1,
.qa-answer #box2,
.qa-answer #box3,
.qa-answer #box4 {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .content--qa::before {
    height: 140px;
  }
  
  .content--qa h1 {
    font-size: 28px;
    padding: var(--spacing-xl) var(--spacing-md) 48px;
  }
  
  .qa {
    max-width: 720px;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-xl);
  }
  
  .qa-item {
    margin-bottom: 14px;
    border-radius: 14px;
  }
  
  .qa-question {
    font-size: 16px;
    padding: 18px 52px 18px 18px;
    gap: 14px;
  }
  
  .qa-question::before {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 14px;
  }
  
  .qa-question::after {
    right: 18px;
    width: 26px;
    height: 26px;
  }
  
  .qa-answer {
    font-size: 15px;
    padding: 0 18px 20px 18px;
    gap: 14px;
  }
  
  .qa-answer::before {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 14px;
  }
}

@media (min-width: 860px) {
  .content--qa::before {
    height: 160px;
  }
  
  .content--qa h1 {
    font-size: 32px;
    padding: 48px var(--spacing-lg) 56px;
  }
  
  .qa {
    max-width: 800px;
    padding: 32px var(--spacing-lg) var(--spacing-xl);
  }
  
  .qa-item {
    margin-bottom: 16px;
    border-radius: 16px;
  }
  
  .qa-question {
    font-size: 17px;
    padding: 20px 56px 20px 20px;
    gap: 16px;
  }
  
  .qa-question::before {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 15px;
  }
  
  .qa-question::after {
    right: 20px;
    width: 28px;
    height: 28px;
  }
  
  .qa-answer {
    font-size: 16px;
    padding: 0 20px 22px 20px;
    gap: 16px;
  }
  
  .qa-answer::before {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 15px;
  }
}

/* ========== ãƒžã‚¤ãƒšã?ã‚ƒNå°‚ç”¨ã‚ƒPã‚ƒ\ã‚AãƒƒH ========== */

.content--mypage {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
  position: relative;
}

.content--mypage::before {
  height: 140px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.content--mypage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: 
    radial-gradient(circle at 20% 50%, rgba(26,90,172,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(59,130,246,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.content--mypage h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mypage-section {
  max-width: 680px;
  margin: 0 auto var(--spacing-lg);
  padding: 0 var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.mypage-section-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 16px;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mypage-section-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--blue);
  opacity: 0.8;
}

.mypage-content {
  background: transparent;
}

.mypage-empty {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 56px 24px;
  text-align: center;
  border: none;
  box-shadow: 
    0 0 0 1px rgba(226,232,240,0.5),
    0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.mypage-empty::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(26,90,172,0.03) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.mypage-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  stroke: #cbd5e1;
  opacity: 0.4;
  position: relative;
  z-index: 1;
}

.mypage-empty-text {
  font-size: 18px;
  font-weight: 800;
  color: #475569;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}

.mypage-empty-desc {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.license-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 
    0 0 0 1px rgba(226,232,240,0.5),
    0 4px 12px rgba(0,0,0,0.04),
    0 12px 40px rgba(26,90,172,0.04);
  margin-bottom: 20px;
  overflow: hidden;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.license-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.license-card:hover {
  box-shadow: 
    0 0 0 1px rgba(26,90,172,0.2),
    0 8px 24px rgba(0,0,0,0.08),
    0 16px 56px rgba(26,90,172,0.12);
  transform: translateY(-4px);
}

.license-card:hover::before {
  opacity: 1;
}

.license-card:last-child {
  margin-bottom: 0;
}

.license-card-header {
  background: transparent;
  padding: 20px 20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  border-bottom: none;
}

.license-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.license-card-status {
  flex-shrink: 0;
  margin-top: 2px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.status-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.status-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: currentColor;
  opacity: 0.08;
  z-index: 0;
}

.status-badge--active {
  background: transparent;
  color: #10b981;
  border: 1.5px solid currentColor;
}

.status-badge--active::before {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16,185,129,0.6);
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.status-badge--inactive {
  background: transparent;
  color: #ef4444;
  border: 1.5px solid currentColor;
}

.status-badge--inactive::before {
  background: #ef4444;
  opacity: 0.5;
}

.license-card-body {
  padding: 0 20px 24px;
}

.mypage-license-header {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}

.mypage-license-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #0099ff;
  border-radius: 3px;
}

.license-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.license-divider {
  height: 1px;
  background-color: #e8eef8;
  margin: 12px 0;
}

.license-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 10px;
}

.license-info-row:last-child {
  margin-bottom: 0;
}

.license-info-item .license-info-label {
  font-size: 12px;
  color: #667799;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.license-info-item .license-info-value {
  font-size: 15px;
  color: #333;
  line-height: 1.4;
  padding-left: 12px;
}

.license-info-row .license-info-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.license-info-row .license-info-value {
  font-size: 14px;
  color: #1e293b;
  font-weight: 700;
}

.license-key-wrapper {
  margin-top: 20px;
  padding: 20px 16px;
  background: linear-gradient(135deg, rgba(26,90,172,0.03) 0%, rgba(59,130,246,0.03) 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.license-key-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 50%, transparent 100%);
  opacity: 0.3;
}

.license-key-label {
  display: block;
  font-size: 11px;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.license-key-container {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.license-key {
  font-family: monospace;
  letter-spacing: 1px;
  background-color: #f5f7fa;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  word-break: break-all;
  display: block;
  width: 100%;
  border: 1px dashed #c8d5e9;
  box-sizing: border-box;
}

.license-key-container .license-key {
  font-family: 'SF Mono', 'Monaco', 'Courier New', Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 18px;
  word-break: break-all;
  letter-spacing: 1px;
  line-height: 1.7;
  box-shadow: 
    inset 0 2px 4px rgba(0,0,0,0.02),
    0 1px 2px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
  flex: 1;
  width: auto;
  display: block;
}

.license-key-container .license-key:hover {
  border-color: var(--blue);
  box-shadow: 
    inset 0 2px 4px rgba(0,0,0,0.02),
    0 0 0 3px rgba(26,90,172,0.1);
}

.license-key--hidden {
  text-align: center;
  letter-spacing: 6px;
  color: #cbd5e1;
  font-size: 16px;
}

.license-key-copy {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 12px rgba(26,90,172,0.25),
    0 0 0 0 rgba(26,90,172,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.license-key-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.license-key-copy:hover::before {
  left: 100%;
}

.license-key-copy:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 8px 24px rgba(26,90,172,0.35),
    0 0 0 4px rgba(26,90,172,0.15),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.license-key-copy:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 
    0 4px 12px rgba(26,90,172,0.3),
    0 0 0 4px rgba(26,90,172,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.license-key-copy.copied {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  animation: copySuccess 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 16px rgba(16,185,129,0.4),
    0 0 0 4px rgba(16,185,129,0.2),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

@keyframes copySuccess {
  0% { transform: scale(1); }
  25% { transform: scale(1.1) rotate(-2deg); }
  50% { transform: scale(1.05) rotate(2deg); }
  75% { transform: scale(1.08) rotate(-1deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.copy-icon {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
  stroke-width: 2.5;
}

.copy-text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.license-key-note {
  font-size: 11px;
  color: #64748b;
  margin: 12px 0 0;
  padding: 10px 14px;
  background: rgba(255,255,255,0.6);
  border-radius: 10px;
  line-height: 1.6;
  border-left: 3px solid var(--blue);
}

.account-info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 
    0 0 0 1px rgba(226,232,240,0.5),
    0 4px 12px rgba(0,0,0,0.04),
    0 12px 40px rgba(26,90,172,0.04);
  border: none;
  position: relative;
  overflow: hidden;
}

.account-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
}

.account-info-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}

.account-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.account-info-row:first-child {
  padding-top: 0;
}

.account-info-label {
  font-size: 11px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.account-info-value {
  font-size: 15px;
  color: #1e293b;
  font-weight: 700;
  padding: 14px 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  word-break: break-all;
  font-family: 'SF Mono', 'Monaco', 'Courier New', Consolas, monospace;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.account-info-value:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,90,172,0.1);
}

.mypage-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 28px;
  background: #ffffff;
  color: #64748b;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 0 0 1px rgba(226,232,240,0.5),
    0 4px 12px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.mypage-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(100,116,139,0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.mypage-button:hover::before {
  width: 300px;
  height: 300px;
}

.mypage-button:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 
    0 0 0 1px rgba(203,213,225,0.8),
    0 8px 24px rgba(0,0,0,0.08);
}

.mypage-button--logout {
  border-color: #fecaca;
  color: #dc2626;
}

.mypage-button--logout::before {
  background: rgba(220,38,38,0.08);
}

.mypage-button--logout:hover {
  border-color: #f87171;
  box-shadow: 
    0 0 0 1px rgba(248,113,113,0.5),
    0 8px 24px rgba(220,38,38,0.15);
}

.mypage-button-icon {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 1;
  stroke-width: 2.5;
}

.mypage-button-text {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

@media (min-width: 640px) {
  .content--mypage::before {
    height: 160px;
  }
  
  .content--mypage h1 {
    font-size: 28px;
    padding: var(--spacing-xl) var(--spacing-md) 48px;
  }
  
  .mypage-section {
    max-width: 720px;
    padding: 0 var(--spacing-md);
  }
  
  .mypage-section-title {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .mypage-section-icon {
    width: 22px;
    height: 22px;
  }
  
  .license-card {
    border-radius: 24px;
    margin-bottom: 24px;
  }
  
  .license-card-header {
    padding: 24px 28px 20px;
  }
  
  .license-card-title {
    font-size: 17px;
  }
  
  .license-card-body {
    padding: 0 28px 28px;
  }
  
  .license-key {
    font-size: 14px;
    padding: 18px 20px;
  }
  
  .license-key-copy {
    padding: 16px 22px;
    font-size: 11px;
    gap: 7px;
  }
  
  .copy-icon {
    width: 24px;
    height: 24px;
  }
  
  .account-info-card {
    border-radius: 24px;
    padding: 28px 24px;
  }
  
  .account-info-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
  }
  
  .account-info-value {
    max-width: 65%;
    text-align: right;
  }
  
  .mypage-button {
    max-width: 420px;
    margin: 0 auto;
    padding: 20px 32px;
  }
}

@media (min-width: 860px) {
  .content--mypage::before {
    height: 180px;
  }
  
  .content--mypage h1 {
    font-size: 32px;
    padding: 56px var(--spacing-lg) 60px;
  }
  
  .mypage-section {
    max-width: 800px;
    padding: 0 var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
  }
  
  .mypage-section-title {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .license-card {
    border-radius: 28px;
    margin-bottom: 28px;
  }
  
  .license-card-header {
    padding: 28px 32px 24px;
  }
  
  .license-card-title {
    font-size: 18px;
  }
  
  .license-card-body {
    padding: 0 32px 32px;
  }
  
  .license-key {
    font-size: 15px;
  }
  
  .license-key-copy {
    padding: 18px 26px;
    font-size: 12px;
    gap: 8px;
  }
  
  .copy-icon {
    width: 26px;
    height: 26px;
  }
  
  .account-info-card {
    border-radius: 28px;
    padding: 32px 28px;
  }
  
  .account-info-value {
    font-size: 16px;
  }
  
  .mypage-button {
    max-width: 460px;
    font-size: 16px;
  }
}

/* ========== ãƒƒ…ã‚[ã‚AãƒƒEãƒšã?ã‚ƒNå°‚ç”¨ã‚ƒPã‚ƒ\ã‚AãƒƒH ========== */

.content--login {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
  position: relative;
}

.content--login::before {
  height: 120px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.content--login::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: 
    radial-gradient(circle at 30% 20%, rgba(26,90,172,0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(59,130,246,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.content--login h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 40px 0 60px;
  margin-bottom: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.login-intro {
  max-width: 680px;
  margin: 20px auto;
  padding: 0 var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.login-intro-text {
  font-size: 14px;
  line-height: 1.8;
  color: #64748b;
  text-align: left;
  margin: 0;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.login-carriers {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm) var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.carrier-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px 20px;
  box-shadow: 
    0 0 0 1px rgba(226,232,240,0.5),
    0 4px 12px rgba(0,0,0,0.04),
    0 12px 40px rgba(0,0,0,0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.carrier-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carrier-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 0 0 1px rgba(226,232,240,0.8),
    0 8px 24px rgba(0,0,0,0.08),
    0 16px 56px rgba(0,0,0,0.08);
}

.carrier-card:hover::before {
  opacity: 1;
}

.carrier-card--docomo::before {
  background: linear-gradient(90deg, #e60012 0%, #ff4444 100%);
}

.carrier-card--au::before {
  background: linear-gradient(90deg, #ff6600 0%, #ff8833 100%);
}

.carrier-card--softbank::before {
  background: linear-gradient(90deg, #0099ff 0%, #33aaff 100%);
}

.carrier-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.carrier-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  stroke-width: 2;
  opacity: 0.8;
}

.carrier-title-group {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.carrier-card--docomo .carrier-icon {
  stroke: #e60012;
}

.carrier-card--au .carrier-icon {
  stroke: #ff6600;
}

.carrier-card--softbank .carrier-icon {
  stroke: #0099ff;
}

.carrier-name {
  font-size: 20px;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.5px;
}

.carrier-card--docomo .carrier-name {
  color: #e60012;
}

.carrier-card--au .carrier-name {
  color: #ff6600;
}

.carrier-card--softbank .carrier-name {
  color: #0099ff;
}

.carrier-desc {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.carrier-form {
  margin: 0;
}

.carrier-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 12px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.carrier-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.carrier-button:hover::before {
  left: 100%;
}

.carrier-button:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.carrier-button:active {
  transform: translateY(0);
  box-shadow: 
    0 4px 12px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.carrier-button--docomo {
  background: linear-gradient(135deg, #e60012 0%, #ff1a2e 50%, #ff4444 100%);
  color: #ffffff;
}

.carrier-button--au {
  background: linear-gradient(135deg, #ff6600 0%, #ff7722 50%, #ff8833 100%);
  color: #ffffff;
}

.carrier-button--softbank {
  background: linear-gradient(135deg, #0099ff 0%, #22aaff 50%, #44bbff 100%);
  color: #ffffff;
}

.carrier-button-text {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  letter-spacing: 0.5px;
}

.carrier-button-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  stroke-width: 2.5;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.carrier-button:hover .carrier-button-arrow {
  transform: translateX(4px);
}

@media (min-width: 640px) {
  .content--login::before {
    height: 140px;
  }
  
  .content--login h1 {
    font-size: 28px;
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
  }
  
  .login-intro {
    max-width: 720px;
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-xl);
  }
  
  .login-intro-text {
    font-size: 15px;
    padding: 20px 28px;
    border-radius: 18px;
  }
  
  .login-carriers {
    max-width: 720px;
    padding: 0 var(--spacing-md) var(--spacing-xl);
    gap: 24px;
  }
  
  .carrier-card {
    border-radius: 28px;
    padding: 24px 24px;
  }
  
  .carrier-card-header {
    gap: 14px;
    margin-bottom: 18px;
  }
  
  .carrier-icon {
    width: 36px;
    height: 36px;
  }
  
  .carrier-title-group {
    gap: 10px;
  }
  
  .carrier-name {
    font-size: 22px;
  }
  
  .carrier-desc {
    font-size: 14px;
  }
  
  .carrier-button {
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 18px;
  }
  
  .carrier-button-arrow {
    width: 26px;
    height: 26px;
  }
}

@media (min-width: 860px) {
  .content--login::before {
    height: 160px;
  }
  
  .content--login h1 {
    font-size: 32px;
    padding: 48px var(--spacing-lg) var(--spacing-xl);
  }
  
  .login-intro {
    max-width: 800px;
    padding: 0 var(--spacing-lg);
  }
  
  .login-intro-text {
    font-size: 16px;
    padding: 24px 32px;
    border-radius: 20px;
  }
  
  .login-carriers {
    max-width: 800px;
    padding: 0 var(--spacing-lg) var(--spacing-xl);
    gap: 28px;
  }
  
  .carrier-card {
    border-radius: 32px;
    padding: 28px 28px;
  }
  
  .carrier-card-header {
    gap: 16px;
    margin-bottom: 20px;
  }
  
  .carrier-icon {
    width: 40px;
    height: 40px;
  }
  
  .carrier-title-group {
    gap: 12px;
  }
  
  .carrier-name {
    font-size: 24px;
  }
  
  .carrier-desc {
    font-size: 15px;
  }
  
  .carrier-button {
    padding: 18px 28px;
    font-size: 17px;
    border-radius: 20px;
  }
  
  .carrier-button-arrow {
    width: 28px;
    height: 28px;
  }
  
  .carrier-button:hover .carrier-button-arrow {
    transform: translateX(6px);
  }
}

/* ========== ã‚ƒƒã‚Aãƒ‰ã?ãƒƒVã‚ƒNå°‚ç”¨ã‚ƒPã‚ƒ\ã‚AãƒƒH ========== */

.content--guide {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
  position: relative;
}

.content--guide::before {
  height: 170px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.content--guide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background: 
    radial-gradient(circle at 25% 15%, rgba(26,90,172,0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 40%, rgba(59,130,246,0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(26,90,172,0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.content--guide h1 {
  font-size: 24px;
  font-weight: 800;
  padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-xl);
  margin-bottom: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.guide-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm) var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.guide-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 
    0 0 0 1px rgba(226,232,240,0.5),
    0 4px 12px rgba(0,0,0,0.04),
    0 12px 40px rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.guide-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-light) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 0 0 1px rgba(26,90,172,0.2),
    0 8px 24px rgba(0,0,0,0.08),
    0 16px 56px rgba(26,90,172,0.08);
}

.guide-card:hover::before {
  opacity: 1;
}

.guide-card--highlight {
  background: linear-gradient(135deg, rgba(26,90,172,0.02) 0%, rgba(59,130,246,0.02) 100%);
  border: 2px solid rgba(26,90,172,0.1);
}

.guide-card--highlight::before {
  width: 6px;
  opacity: 1;
}

.guide-card--warning {
  background: linear-gradient(135deg, rgba(251,191,36,0.03) 0%, rgba(245,158,11,0.03) 100%);
  border: 2px solid rgba(251,191,36,0.15);
}

.guide-card--warning::before {
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
  opacity: 1;
}

.guide-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
}

.guide-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  stroke: var(--blue);
  stroke-width: 2;
}

.guide-card--warning .guide-icon {
  stroke: #f59e0b;
}

.guide-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
}

.guide-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guide-text {
  font-size: 14px;
  line-height: 1.85;
  color: #475569;
  margin: 0;
}

.guide-text--intro {
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.guide-text--warning {
  font-weight: 700;
  color: #d97706;
  padding: 14px 16px;
  background: rgba(251,191,36,0.08);
  border-radius: 12px;
  border-left: 3px solid #fbbf24;
}

.price-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.price-plan {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.price-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.price-plan:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26,90,172,0.15);
}

.price-plan:hover::before {
  opacity: 1;
}

.price-plan--recommended {
  background: linear-gradient(135deg, rgba(26,90,172,0.04) 0%, rgba(59,130,246,0.04) 100%);
  border: 2px solid var(--blue);
  box-shadow: 0 4px 16px rgba(26,90,172,0.1);
}

.price-plan--recommended::before {
  opacity: 1;
  height: 4px;
}

.price-plan--recommended::after {
  content: "\304A\3059\3059\3081";
  position: absolute;
  top: 8px;
  right: -24px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 28px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(16,185,129,0.3);
  letter-spacing: 0.5px;
}

.price-plan-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.price-plan-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price-plan-number {
  font-size: 32px;
  font-weight: 900;
  color: #1e293b;
  line-height: 1;
}

.price-plan-unit {
  font-size: 16px;
  font-weight: 700;
  color: #64748b;
}

.price-plan-tax {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

@media (min-width: 640px) {
  .content--guide::before {
    height: 140px;
  }
  
  .content--guide h1 {
    font-size: 28px;
    padding: var(--spacing-xl) var(--spacing-md) 48px;
  }
  
  .guide-container {
    max-width: 720px;
    padding: 0 var(--spacing-md) var(--spacing-xl);
    gap: 24px;
  }
  
  .guide-card {
    border-radius: 28px;
    padding: 28px 24px;
  }
  
  .guide-card-header {
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 16px;
  }
  
  .guide-icon {
    width: 32px;
    height: 32px;
  }
  
  .guide-card-title {
    font-size: 17px;
  }
  
  .guide-card-body {
    gap: 16px;
  }
  
  .guide-text {
    font-size: 15px;
  }
  
  .price-plans {
    gap: 16px;
  }
  
  .price-plan {
    border-radius: 18px;
    padding: 24px 18px;
  }
  
  .price-plan-number {
    font-size: 36px;
  }
  
  .price-plan-unit {
    font-size: 18px;
  }
}

@media (min-width: 860px) {
  .content--guide::before {
    height: 160px;
  }
  
  .content--guide h1 {
    font-size: 32px;
    padding: 48px var(--spacing-lg) 56px;
  }
  
  .guide-container {
    max-width: 800px;
    padding: 0 var(--spacing-lg) var(--spacing-xl);
    gap: 28px;
  }
  
  .guide-card {
    border-radius: 32px;
    padding: 32px 28px;
  }
  
  .guide-card-header {
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 18px;
  }
  
  .guide-icon {
    width: 36px;
    height: 36px;
  }
  
  .guide-card-title {
    font-size: 18px;
  }
  
  .guide-card-body {
    gap: 18px;
  }
  
  .guide-text {
    font-size: 16px;
  }
  
  .price-plans {
    gap: 20px;
  }
  
  .price-plan {
    border-radius: 20px;
    padding: 28px 20px;
  }
  
  .price-plan-badge {
    font-size: 13px;
  }
  
  .price-plan-number {
    font-size: 40px;
  }
  
  .price-plan-unit {
    font-size: 20px;
  }
  
  .price-plan-tax {
    font-size: 12px;
  }
}

/* ========== å¯ƒZå¿œæƒDŸçƒBƒ‡ãƒšã?ã‚ƒNå°‚ç”¨ã‚ƒPã‚ƒ\ã‚AãƒƒH ========== */

.content--kishu {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
  position: relative;
  min-height: 100vh;
}

.content--kishu::before {
  height: 170px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.content--kishu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 600px;
  background: 
    radial-gradient(circle at 20% 30%, rgba(26,90,172,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(59,130,246,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.content--kishu h1 {
  font-size: 24px;
  font-weight: 800;
  padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-xl);
  margin-bottom: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.kishu-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.kishu-main-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px 24px;
  box-shadow: 
    0 0 0 1px rgba(226,232,240,0.5),
    0 8px 24px rgba(0,0,0,0.06),
    0 20px 60px rgba(26,90,172,0.06);
  position: relative;
  overflow: hidden;
}

.kishu-main-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 50%, var(--blue) 100%);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.kishu-devices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 2px solid #f1f5f9;
}

.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.device-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.device-item:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.device-item:hover::before {
  opacity: 0.03;
}

.device-item--ios {
  color: #007aff;
  border-color: rgba(0,122,255,0.2);
}

.device-item--ios:hover {
  border-color: #007aff;
  box-shadow: 0 8px 24px rgba(0,122,255,0.2);
}

.device-item--android {
  color: #3ddc84;
  border-color: rgba(61,220,132,0.2);
}

.device-item--android:hover {
  border-color: #3ddc84;
  box-shadow: 0 8px 24px rgba(61,220,132,0.2);
}

.device-icon {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  stroke-width: 1.5;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.device-name {
  font-size: 16px;
  font-weight: 800;
  color: currentColor;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.device-separator {
  font-size: 20px;
  font-weight: 300;
  color: #cbd5e1;
  flex-shrink: 0;
}

.device-separator-text {
  display: block;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 50%;
  font-style: italic;
}

.kishu-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kishu-text {
  font-size: 15px;
  line-height: 1.85;
  color: #475569;
  margin: 0;
  text-align: left;
}

.kishu-text--note {
  font-weight: 700;
  color: #64748b;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(100,116,139,0.05) 0%, rgba(148,163,184,0.05) 100%);
  border-radius: 14px;
  border: 1px solid rgba(100,116,139,0.15);
}

.kishu-test-info {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(139,92,246,0.04) 0%, rgba(167,139,250,0.04) 100%);
  border: 2px solid rgba(139,92,246,0.2);
  border-radius: 20px;
  padding: 20px 18px;
  position: relative;
  overflow: hidden;
}

.kishu-test-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #8b5cf6 0%, #a78bfa 100%);
}

.kishu-test-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(139,92,246,0.1);
}

.kishu-test-icon {
  width: 22px;
  height: 22px;
  stroke: #8b5cf6;
  stroke-width: 2;
  flex-shrink: 0;
}

.kishu-test-title {
  font-size: 14px;
  font-weight: 800;
  color: #8b5cf6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kishu-test-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kishu-test-label {
  font-size: 12px;
  font-weight: 700;
  color: #7c3aed;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kishu-test-value {
  font-size: 13px;
  font-weight: 600;
  color: #6d28d9;
  margin: 0;
  padding: 10px 14px;
  background: rgba(255,255,255,0.6);
  border-radius: 10px;
  font-family: 'SF Mono', 'Monaco', 'Courier New', Consolas, monospace;
  word-break: break-all;
}

@media (min-width: 640px) {
  .content--kishu::before {
    height: 140px;
  }
  
  .content--kishu h1 {
    font-size: 28px;
    padding: var(--spacing-xl) var(--spacing-md) 48px;
  }
  
  .kishu-container {
    max-width: 720px;
    padding: 0 var(--spacing-md) var(--spacing-xl);
  }
  
  .kishu-main-card {
    border-radius: 32px;
    padding: 40px 32px;
  }
  
  .kishu-devices {
    gap: 28px;
    margin-bottom: 36px;
    padding-bottom: 32px;
  }
  
  .device-item {
    padding: 24px 32px;
    border-radius: 24px;
  }
  
  .device-icon {
    width: 56px;
    height: 56px;
  }
  
  .device-name {
    font-size: 18px;
  }
  
  .device-separator {
    font-size: 24px;
  }
  
  .device-separator-text {
    width: 40px;
    height: 40px;
  }
  
  .kishu-description {
    gap: 18px;
  }
  
  .kishu-text {
    font-size: 16px;
  }
  
  .kishu-text--note {
    padding: 16px 22px;
    border-radius: 16px;
  }
  
  .kishu-test-info {
    margin-top: 28px;
    border-radius: 24px;
    padding: 24px 22px;
  }
  
  .kishu-test-header {
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }
  
  .kishu-test-icon {
    width: 24px;
    height: 24px;
  }
  
  .kishu-test-title {
    font-size: 15px;
  }
  
  .kishu-test-body {
    gap: 10px;
  }
  
  .kishu-test-value {
    font-size: 14px;
    padding: 12px 16px;
  }
}

@media (min-width: 860px) {
  .content--kishu::before {
    height: 160px;
  }
  
  .content--kishu h1 {
    font-size: 32px;
    padding: 48px var(--spacing-lg) 56px;
  }
  
  .kishu-container {
    max-width: 800px;
    padding: 0 var(--spacing-lg) var(--spacing-xl);
  }
  
  .kishu-main-card {
    border-radius: 36px;
    padding: 48px 40px;
  }
  
  .kishu-devices {
    gap: 32px;
    margin-bottom: 40px;
    padding-bottom: 36px;
  }
  
  .device-item {
    padding: 28px 40px;
    border-radius: 28px;
  }
  
  .device-icon {
    width: 64px;
    height: 64px;
  }
  
  .device-name {
    font-size: 20px;
  }
  
  .device-separator {
    font-size: 28px;
  }
  
  .device-separator-text {
    width: 48px;
    height: 48px;
  }
  
  .kishu-description {
    gap: 20px;
  }
  
  .kishu-text {
    font-size: 17px;
  }
  
  .kishu-text--note {
    padding: 18px 24px;
    border-radius: 18px;
  }
  
  .kishu-test-info {
    margin-top: 32px;
    border-radius: 28px;
    padding: 28px 26px;
  }
  
  .kishu-test-header {
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 16px;
  }
  
  .kishu-test-icon {
    width: 26px;
    height: 26px;
  }
  
  .kishu-test-title {
    font-size: 16px;
  }
  
  .kishu-test-value {
    font-size: 15px;
  }
}

/* ========== ç‰ƒPå®šå•†å–åƒV•æƒE•ã?ãƒƒVã‚ƒNå°‚ç”¨ã‚ƒPã‚ƒ\ã‚AãƒƒH ========== */

.content--tokutei {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
  position: relative;
}

.content--tokutei::before {
  height: 170px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.content--tokutei::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: 
    radial-gradient(circle at 30% 20%, rgba(26,90,172,0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(59,130,246,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.content--tokutei h1 {
  font-size: 24px;
  font-weight: 800;
  padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-xl);
  margin-bottom: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tokutei-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.tokutei-intro {
  margin-bottom: var(--spacing-lg);
}

.tokutei-intro-text {
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
  text-align: center;
  margin: 0;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(26,90,172,0.04) 0%, rgba(59,130,246,0.04) 100%);
  border-radius: 10px;
  border: 1px solid rgba(26,90,172,0.1);
  font-weight: 600;
}

.tokutei-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 26px 20px;
  margin-bottom: 14px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.tokutei-section:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.tokutei-section--highlight {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid var(--blue);
  box-shadow: 0 4px 16px rgba(26,90,172,0.08);
}

.tokutei-section--highlight:hover {
  box-shadow: 0 8px 28px rgba(26,90,172,0.14);
}

.tokutei-section--important {
  background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
  border: 2px solid #fca5a5;
  box-shadow: 0 4px 16px rgba(239,68,68,0.08);
}

.tokutei-section--important:hover {
  box-shadow: 0 8px 28px rgba(239,68,68,0.14);
}

.tokutei-section--company {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #94a3b8;
  box-shadow: 0 4px 16px rgba(100,116,139,0.06);
}

.tokutei-section--company:hover {
  box-shadow: 0 8px 28px rgba(100,116,139,0.12);
}

.tokutei-section-title {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 18px;
  padding: 0;
  border: none;
  line-height: 1.5;
  position: relative;
}

.tokutei-section-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-top: 4px;
  text-transform: none;
}

.tokutei-section-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tokutei-text {
  font-size: 14px;
  line-height: 1.85;
  color: #475569;
  margin: 0;
}

.tokutei-item {
  padding: 16px 18px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.tokutei-item:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.tokutei-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tokutei-prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tokutei-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tokutei-price-item:hover {
  background: #f1f5f9;
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(26,90,172,0.1);
}

.tokutei-price-label {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}

.tokutei-price-value {
  font-size: 16px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.3px;
}

.tokutei-company {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
  margin-bottom: 16px;
}

.tokutei-company-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.tokutei-company-row:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.tokutei-company-label {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tokutei-company-value {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.6;
}

.tokutei-note {
  font-size: 13px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
  .content--tokutei::before {
    height: 140px;
  }
  
  .content--tokutei h1 {
    font-size: 28px;
    padding: var(--spacing-xl) var(--spacing-md) 48px;
  }
  
  .tokutei-container {
    max-width: 720px;
    padding: 0 var(--spacing-md) var(--spacing-xl);
  }
  
  .tokutei-intro-text {
    font-size: 15px;
    padding: 18px 24px;
    border-radius: 12px;
  }
  
  .tokutei-section {
    border-radius: 14px;
    padding: 30px 26px;
    margin-bottom: 18px;
  }
  
  .tokutei-section-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .tokutei-section-subtitle {
    font-size: 13px;
  }
  
  .tokutei-section-content {
    gap: 14px;
  }
  
  .tokutei-text {
    font-size: 15px;
  }
  
  .tokutei-item {
    padding: 18px 20px;
    border-radius: 10px;
  }
  
  .tokutei-prices {
    gap: 12px;
  }
  
  .tokutei-price-item {
    padding: 16px 20px;
    border-radius: 10px;
  }
  
  .tokutei-price-label {
    font-size: 14px;
  }
  
  .tokutei-price-value {
    font-size: 17px;
  }
  
  .tokutei-company {
    gap: 12px;
  }
  
  .tokutei-company-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 22px;
    border-radius: 10px;
  }
  
  .tokutei-company-label {
    font-size: 12px;
    flex-shrink: 0;
    min-width: 100px;
  }
  
  .tokutei-company-value {
    font-size: 15px;
    text-align: right;
  }
  
  .tokutei-note {
    font-size: 14px;
    padding: 16px 20px;
    border-radius: 10px;
  }
}

@media (min-width: 860px) {
  .content--tokutei::before {
    height: 160px;
  }
  
  .content--tokutei h1 {
    font-size: 32px;
    padding: 48px var(--spacing-lg) 56px;
  }
  
  .tokutei-container {
    max-width: 800px;
    padding: 0 var(--spacing-lg) var(--spacing-xl);
  }
  
  .tokutei-intro-text {
    font-size: 16px;
    padding: 20px 28px;
    border-radius: 14px;
  }
  
  .tokutei-section {
    border-radius: 16px;
    padding: 34px 30px;
    margin-bottom: 22px;
  }
  
  .tokutei-section-title {
    font-size: 17px;
    margin-bottom: 22px;
  }
  
  .tokutei-section-subtitle {
    font-size: 14px;
  }
  
  .tokutei-section-content {
    gap: 16px;
  }
  
  .tokutei-text {
    font-size: 16px;
  }
  
  .tokutei-item {
    padding: 20px 22px;
    border-radius: 10px;
  }
  
  .tokutei-label {
    font-size: 13px;
  }
  
  .tokutei-prices {
    gap: 14px;
  }
  
  .tokutei-price-item {
    padding: 18px 24px;
    border-radius: 12px;
  }
  
  .tokutei-price-label {
    font-size: 15px;
  }
  
  .tokutei-price-value {
    font-size: 18px;
  }
  
  .tokutei-company {
    gap: 12px;
  }
  
  .tokutei-company-row {
    padding: 20px 24px;
    border-radius: 12px;
  }
  
  .tokutei-company-label {
    font-size: 13px;
    min-width: 120px;
  }
  
  .tokutei-company-value {
    font-size: 16px;
  }
  
  .tokutei-note {
    font-size: 15px;
    padding: 18px 22px;
    border-radius: 12px;
  }
}

/* ========== åˆƒDç”ƒBè¦çƒG??ãƒƒVã‚ƒNå°‚ç”¨ã‚ƒPã‚ƒ\ã‚AãƒƒH ========== */

.content--kiyaku {
  background: #ffffff !important;
  position: relative;
}

.content--kiyaku::before {
  height: 170px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.content--kiyaku h1 {
  font-size: 24px;
  font-weight: 800;
  padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-xl);
  margin-bottom: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.kiyaku-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.kiyaku-intro {
  margin-bottom: var(--spacing-lg);
}

.kiyaku-intro-text {
  font-size: 14px;
  line-height: 1.8;
  color: #1e293b;
  text-align: left;
  margin: 0;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-weight: 700;
}

.kiyaku-article {
  margin-bottom: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px 18px;
  transition: all 0.3s ease;
}

.kiyaku-article:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.kiyaku-article--highlight {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--blue);
}

.kiyaku-article--highlight:hover {
  box-shadow: 0 4px 12px rgba(26,90,172,0.08);
}

.kiyaku-article--important {
  background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
  border: 1px solid #fca5a5;
}

.kiyaku-article--important:hover {
  box-shadow: 0 4px 12px rgba(239,68,68,0.08);
}

.kiyaku-article--warning {
  background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
  border: 1px solid #fcd34d;
}

.kiyaku-article--warning:hover {
  box-shadow: 0 4px 12px rgba(251,191,36,0.08);
}

.kiyaku-article-title {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 14px;
  line-height: 1.5;
}

.kiyaku-article-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kiyaku-text {
  font-size: 14px;
  line-height: 1.85;
  color: #475569;
  margin: 0;
}

.kiyaku-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
}

.kiyaku-list-item {
  font-size: 14px;
  line-height: 1.85;
  color: #475569;
  margin: 0;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 6px;
  border-left: 3px solid #cbd5e1;
}

.kiyaku-article--warning .kiyaku-list-item {
  background: #fffbeb;
  border-left-color: #fbbf24;
}

.kiyaku-price-section {
  margin: 12px 0;
  padding: 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.kiyaku-price-carrier {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.kiyaku-price-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kiyaku-price-item {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  padding: 10px 14px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
  .content--kiyaku::before {
    height: 120px;
  }
  
  .content--kiyaku h1 {
    font-size: 28px;
    padding: var(--spacing-xl) var(--spacing-md) 48px;
  }
  
  .kiyaku-container {
    max-width: 760px;
    padding: 0 var(--spacing-md) var(--spacing-xl);
  }
  
  .kiyaku-intro-text {
    font-size: 15px;
    padding: 18px 24px;
    border-radius: 12px;
  }
  
  .kiyaku-article {
    border-radius: 12px;
    padding: 24px 22px;
    margin-bottom: 14px;
  }
  
  .kiyaku-article-title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .kiyaku-article-content {
    gap: 14px;
  }
  
  .kiyaku-text {
    font-size: 15px;
  }
  
  .kiyaku-list {
    gap: 10px;
  }
  
  .kiyaku-list-item {
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 8px;
  }
  
  .kiyaku-price-section {
    padding: 18px;
    border-radius: 12px;
  }
  
  .kiyaku-price-carrier {
    font-size: 14px;
  }
  
  .kiyaku-price-item {
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 8px;
  }
}

@media (min-width: 860px) {
  .content--kiyaku::before {
    height: 140px;
  }
  
  .content--kiyaku h1 {
    font-size: 32px;
    padding: 48px var(--spacing-lg) 56px;
  }
  
  .kiyaku-container {
    max-width: 840px;
    padding: 0 var(--spacing-lg) var(--spacing-xl);
  }
  
  .kiyaku-intro-text {
    font-size: 16px;
    padding: 20px 28px;
    border-radius: 14px;
  }
  
  .kiyaku-article {
    border-radius: 14px;
    padding: 28px 26px;
    margin-bottom: 16px;
  }
  
  .kiyaku-article-title {
    font-size: 17px;
    margin-bottom: 18px;
  }
  
  .kiyaku-article-content {
    gap: 16px;
  }
  
  .kiyaku-text {
    font-size: 16px;
  }
  
  .kiyaku-list {
    gap: 12px;
  }
  
  .kiyaku-list-item {
    font-size: 16px;
    padding: 14px 18px;
    border-radius: 10px;
  }
  
  .kiyaku-price-section {
    padding: 20px;
    border-radius: 14px;
  }
  
  .kiyaku-price-carrier {
    font-size: 15px;
  }
  
  .kiyaku-price-item {
    font-size: 16px;
    padding: 14px 18px;
    border-radius: 10px;
  }
}

/* ========== ãŠå•ã?ˆã‚ã›ãƒšã?ã‚ƒNå°‚ç”¨ã‚ƒPã‚ƒ\ã‚AãƒƒH ========== */

.content--toiawase {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
  position: relative;
}

.content--toiawase::before {
  height: 170px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.content--toiawase::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: 
    radial-gradient(circle at 30% 20%, rgba(26,90,172,0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(59,130,246,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.content--toiawase h1 {
  font-size: 24px;
  font-weight: 800;
  padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-xl);
  margin-bottom: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.toiawase-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 10px 20px 0;
  position: relative;
  z-index: 1;

}

.toiawase-select-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.toiawase-section-title {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 16px;
  text-align: center;
}

.toiawase-select-wrapper {
  position: relative;
}

.toiawase-select {
  width: 100%;
  padding: 16px 48px 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toiawase-select:hover {
  border-color: var(--blue);
  background: #f1f5f9;
}

.toiawase-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,90,172,0.1);
}

.toiawase-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  pointer-events: none;
}

.content--toiawase iframe {
  border: none;
  width: 100%;
  display: block;
}

#tell-frame ul.link {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 680px;
  text-decoration: none !important;
}

#tell-frame ul.link li {
  text-decoration: none;
  border-bottom: none;
}

#tell-frame ul.link li.title {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #fcd34d;
  border-radius: 16px;
  padding: 20px 24px;
  margin: 0 20px 20px;
  font-size: 14px;
  line-height: 1.9;
  color: #78350f;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(252,211,77,0.2);
  position: relative;
  overflow: hidden;
}

#tell-frame ul.link li.title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
}

#tell-frame ul.link li.tellch {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  margin: 0 20px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

#tell-frame ul.link li.tellch:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

#tell-frame ul.link li.tellch input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-right: 12px;
  cursor: pointer;
  vertical-align: middle;
  accent-color: #2563eb;
}

#tell-frame ul.link li.tellch label {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  vertical-align: middle;
  text-decoration: none !important;
  border-bottom: none !important;
  background: none !important;
  transition: color 0.2s ease;
}

#tell-frame ul.link li.tellch label:hover {
  color: #2563eb;
}

#tell-frame ul.link li.tellch input[type="checkbox"]:checked + label {
  text-decoration: none !important;
  border-bottom: none !important;
  background: none !important;
  color: #2563eb;
}

#tell-frame ul.link li.tellch * {
  text-decoration: none !important;
  border-bottom: none !important;
}

#tell-frame ul.link li.icon_arrow {
  margin: 0 20px 20px;
}

#tell-frame ul.link li.icon_arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 48px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0px 6px 0px #047857,
    0 8px 24px rgba(16,185,129,0.4);
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

#tell-frame ul.link li.icon_arrow a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

#tell-frame ul.link li.icon_arrow a:hover::before {
  left: 100%;
}

#tell-frame ul.link li.icon_arrow a::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

#tell-frame ul.link li.icon_arrow a:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0px 10px 0px #047857,
    0 12px 32px rgba(16,185,129,0.5);
}

#tell-frame ul.link li.icon_arrow a:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 
    0px 3px 0px #047857,
    0 4px 16px rgba(16,185,129,0.4);
}

#tell-frame ul.link li.icon_arrow a img.icon {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(-5deg); }
  50% { transform: scale(1) rotate(0deg); }
  75% { transform: scale(1.1) rotate(5deg); }
}

.toiawase-tel-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.toiawase-tel-notice {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #fcd34d;
  border-radius: 10px;
  padding: 18px 16px;
  margin-bottom: 20px;
}

.toiawase-tel-text {
  font-size: 14px;
  line-height: 1.8;
  color: #1e293b;
  margin: 0 0 10px;
  font-weight: 600;
}

.toiawase-tel-time {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  font-weight: 700;
}

.toiawase-tel-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.toiawase-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.toiawase-check-item:has(.toiawase-checkbox:checked) {
  background: linear-gradient(135deg, rgba(26,90,172,0.05) 0%, rgba(59,130,246,0.05) 100%);
  border-color: var(--blue);
}

.toiawase-checkbox {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.toiawase-check-label {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  user-select: none;
  flex: 1;
}

.toiawase-tel-button-wrapper {
  margin-top: 24px;
}

.toiawase-tel-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px 28px;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 12px rgba(16,185,129,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.toiawase-tel-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.toiawase-tel-button:hover::before {
  left: 100%;
}

.toiawase-tel-button:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 24px rgba(16,185,129,0.4),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.toiawase-tel-button:active {
  transform: translateY(-1px);
}

.toiawase-tel-icon {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.toiawase-tel-button-text {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  letter-spacing: 0.5px;
}

@media (min-width: 640px) {
  .content--toiawase::before {
    height: 140px;
  }
  
  .content--toiawase h1 {
    font-size: 28px;
    padding: var(--spacing-xl) var(--spacing-md) 48px;
  }
  
  .toiawase-container {
    max-width: 720px;
    padding: 0 var(--spacing-md) var(--spacing-xl);
  }
  
  .toiawase-select-section {
    border-radius: 14px;
    padding: 28px 24px;
  }
  
  .toiawase-section-title {
    font-size: 16px;
    margin-bottom: 18px;
  }
  
  .toiawase-select {
    padding: 18px 52px 18px 20px;
    font-size: 16px;
    border-radius: 12px;
  }
  
  .toiawase-select-arrow {
    width: 22px;
    height: 22px;
    right: 18px;
  }
  
  .toiawase-tel-section {
    border-radius: 14px;
    padding: 28px 24px;
  }
  
  .toiawase-tel-notice {
    border-radius: 12px;
    padding: 20px 18px;
  }
  
  .toiawase-tel-text {
    font-size: 15px;
  }
  
  .toiawase-tel-time {
    font-size: 14px;
  }
  
  .toiawase-tel-checks {
    gap: 16px;
  }
  
  .toiawase-check-item {
    padding: 16px 18px;
    border-radius: 12px;
  }
  
  .toiawase-checkbox {
    width: 24px;
    height: 24px;
  }
  
  .toiawase-check-label {
    font-size: 15px;
  }
  
  .toiawase-tel-button {
    max-width: 400px;
    margin: 0 auto;
    padding: 22px 32px;
    font-size: 17px;
    border-radius: 14px;
  }
  
  .toiawase-tel-icon {
    width: 26px;
    height: 26px;
  }
}

@media (min-width: 860px) {
  .content--toiawase::before {
    height: 160px;
  }
  
  .content--toiawase h1 {
    font-size: 32px;
    padding: 48px var(--spacing-lg) 56px;
  }
  
  .toiawase-container {
    max-width: 800px;
    padding: 0 var(--spacing-lg) var(--spacing-xl);
  }
  
  .toiawase-select-section {
    border-radius: 16px;
    padding: 32px 28px;
  }
  
  .toiawase-section-title {
    font-size: 17px;
    margin-bottom: 20px;
  }
  
  .toiawase-select {
    padding: 20px 56px 20px 24px;
    font-size: 17px;
    border-radius: 14px;
  }
  
  .toiawase-select-arrow {
    width: 24px;
    height: 24px;
    right: 20px;
  }
  
  .toiawase-tel-section {
    border-radius: 16px;
    padding: 32px 28px;
  }
  
  .toiawase-tel-notice {
    border-radius: 14px;
    padding: 22px 20px;
  }
  
  .toiawase-tel-text {
    font-size: 16px;
  }
  
  .toiawase-tel-time {
    font-size: 15px;
  }
  
  .toiawase-tel-checks {
    gap: 18px;
  }
  
  .toiawase-check-item {
    padding: 18px 20px;
    border-radius: 14px;
  }
  
  .toiawase-checkbox {
    width: 26px;
    height: 26px;
  }
  
  .toiawase-check-label {
    font-size: 16px;
  }
  
  .toiawase-tel-button {
    max-width: 460px;
    padding: 24px 36px;
    font-size: 18px;
    border-radius: 16px;
  }
  
  .toiawase-tel-icon {
    width: 28px;
    height: 28px;
  }
}

/* ========== ãŠå•ã?ˆã‚ã›é€äƒ\Bå®ŒäƒR??ãƒƒVã‚ƒNå°‚ç”¨ã‚ƒPã‚ƒ\ã‚AãƒƒH ========== */

.content--thanks {
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%) !important;
  min-height: 100vh;
  position: relative;
}

div.content.content--thanks::before {
  display: none !important;
  content: none !important;
  background: none !important;
  height: 0 !important;
}

.content--thanks-page {
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%) !important;
  min-height: 100vh;
  position: relative;
}

.content--thanks-page::before {
  display: none;
}

.content--thanks h1,
.content--thanks-page h1 {
  color: #1e293b !important;
  padding: 0 !important;
  text-align: center !important;
}

.thanks-header {
  padding: var(--spacing-md) var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.thanks-home-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #ffffff;
  color: #64748b;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.thanks-home-button:hover {
  background: #f8fafc;
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(26,90,172,0.1);
  transform: translateX(-2px);
}

.thanks-home-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.thanks-container {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.thanks-success {
  text-align: center;
  margin-bottom: 24px;
  padding: 24px 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.thanks-success::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981 0%, #3b82f6 100%);
}

.thanks-success-icon {
  width: 48px;
  height: 48px;
  stroke: #10b981;
  stroke-width: 2;
  margin: 0 auto 14px;
  filter: drop-shadow(0 4px 12px rgba(16,185,129,0.3));
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.thanks-title {
  font-size: 22px;
  font-weight: 900;
  color: #1e293b !important;
  margin: 0;
  letter-spacing: 0.5px;
}

.thanks-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.thanks-note {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-size: 14px;
  line-height: 1.85;
  color: #475569;
}

.thanks-message {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thanks-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #fcd34d;
  border-radius: 10px;
}

.thanks-highlight-icon {
  width: 28px;
  height: 28px;
  stroke: #f59e0b;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.thanks-highlight-text {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.thanks-text {
  font-size: 14px;
  line-height: 1.85;
  color: #475569;
  margin: 0;
}

.thanks-troubleshoot {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.thanks-troubleshoot-title {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.thanks-troubleshoot-icon {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  stroke-width: 2;
  flex-shrink: 0;
}

.thanks-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.thanks-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.thanks-check-item:hover {
  background: #f1f5f9;
  border-color: var(--blue);
}

.thanks-check-icon {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.thanks-check-text {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
  flex: 1;
}

.thanks-final-note {
  font-size: 14px;
  line-height: 1.85;
  color: #64748b;
  margin: 0;
  padding: 16px 18px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
  .thanks-header {
    padding: var(--spacing-lg) var(--spacing-md);
  }
  
  .thanks-home-button {
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 12px;
  }
  
  .thanks-home-icon {
    width: 20px;
    height: 20px;
  }
  
  .thanks-container {
    max-width: 720px;
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-xl);
  }
  
  .thanks-success {
    padding: 28px 24px;
    border-radius: 14px;
  }
  
  .thanks-success-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }
  
  .thanks-title {
    font-size: 24px;
  }
  
  .thanks-content {
    gap: 28px;
  }
  
  .thanks-note {
    border-radius: 14px;
    padding: 22px 20px;
    font-size: 15px;
  }
  
  .thanks-message {
    border-radius: 14px;
    padding: 28px 24px;
    gap: 18px;
  }
  
  .thanks-highlight {
    padding: 18px;
    border-radius: 12px;
    gap: 14px;
  }
  
  .thanks-highlight-icon {
    width: 32px;
    height: 32px;
  }
  
  .thanks-highlight-text {
    font-size: 16px;
  }
  
  .thanks-text {
    font-size: 15px;
  }
  
  .thanks-troubleshoot {
    border-radius: 14px;
    padding: 28px 24px;
  }
  
  .thanks-troubleshoot-title {
    font-size: 16px;
    margin-bottom: 20px;
    gap: 12px;
  }
  
  .thanks-troubleshoot-icon {
    width: 26px;
    height: 26px;
  }
  
  .thanks-checklist {
    gap: 14px;
    margin-bottom: 22px;
  }
  
  .thanks-check-item {
    padding: 16px 18px;
    border-radius: 10px;
  }
  
  .thanks-check-icon {
    width: 22px;
    height: 22px;
  }
  
  .thanks-check-text {
    font-size: 15px;
  }
  
  .thanks-final-note {
    font-size: 15px;
    padding: 18px 20px;
    border-radius: 12px;
  }
}

@media (min-width: 860px) {
  .thanks-header {
    padding: var(--spacing-xl) var(--spacing-lg);
  }
  
  .thanks-home-button {
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 14px;
  }
  
  .thanks-home-icon {
    width: 22px;
    height: 22px;
  }
  
  .thanks-container {
    max-width: 800px;
    padding: 48px var(--spacing-lg) var(--spacing-xl);
  }
  
  .thanks-success {
    padding: 32px 28px;
    border-radius: 16px;
  }
  
  .thanks-success-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
  }
  
  .thanks-title {
    font-size: 26px;
  }
  
  .thanks-content {
    gap: 32px;
  }
  
  .thanks-note {
    border-radius: 16px;
    padding: 24px 22px;
    font-size: 16px;
  }
  
  .thanks-message {
    border-radius: 16px;
    padding: 32px 28px;
    gap: 20px;
  }
  
  .thanks-highlight {
    padding: 20px;
    border-radius: 14px;
    gap: 16px;
  }
  
  .thanks-highlight-icon {
    width: 34px;
    height: 34px;
  }
  
  .thanks-highlight-text {
    font-size: 17px;
  }
  
  .thanks-text {
    font-size: 16px;
  }
  
  .thanks-troubleshoot {
    border-radius: 16px;
    padding: 32px 28px;
  }
  
  .thanks-troubleshoot-title {
    font-size: 17px;
    margin-bottom: 24px;
    gap: 14px;
  }
  
  .thanks-troubleshoot-icon {
    width: 28px;
    height: 28px;
  }
  
  .thanks-checklist {
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .thanks-check-item {
    padding: 18px 20px;
    border-radius: 12px;
  }
  
  .thanks-check-icon {
    width: 24px;
    height: 24px;
  }
  
  .thanks-check-text {
    font-size: 16px;
  }
  
  .thanks-final-note {
    font-size: 16px;
    padding: 20px 22px;
    border-radius: 14px;
  }
}

/* ========== ‘Þ‰ïƒy[ƒWê—pƒXƒ^ƒCƒ‹ ========== */

.content--retire {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--retire::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  z-index: 0;
}

.content--retire h1 {
  font-size: 22px;
  padding: 65px 0px 70px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.retire-notice-area {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.retire-notice-area:not(:empty) {
  margin-bottom: 16px;
}

.retire-container {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ƒƒCƒ“ˆÄ“àƒJ[ƒh */
.retire-instruction-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #fecaca;
  box-shadow: 0 4px 20px rgba(239,68,68,0.06);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.retire-instruction-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
}

.retire-instruction-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fecaca;
}

.retire-instruction-icon {
  width: 28px;
  height: 28px;
  stroke: #ef4444;
}

.retire-instruction-text {
  font-size: 15px;
  line-height: 1.85;
  color: #475569;
  margin: 0 0 24px;
}

.retire-instruction-text strong {
  color: #ef4444;
  font-weight: 700;
}

.retire-mail-btn-wrap {
  display: flex;
  justify-content: center;
}

.retire-mail-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff !important;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(239,68,68,0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.retire-mail-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.retire-mail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239,68,68,0.45);
}

.retire-mail-btn:hover::after {
  left: 140%;
}

.retire-mail-btn-icon {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  flex-shrink: 0;
}

/* ƒLƒƒƒŠƒA•ÊƒZƒNƒVƒ‡ƒ“ */
.retire-carrier-card {
  max-width: 680px;
  margin: 0 auto var(--spacing-sm);
  width: 100%;
  padding: 0 var(--spacing-sm);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.retire-carrier-card > * {
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  position: relative;
}

.retire-carrier-card--docomo > * {
  border-color: #dc2626;
  box-shadow: 0 4px 16px rgba(220,38,38,0.15);
}

.retire-carrier-card--docomo > *::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b91c1c 0%, #dc2626 100%);
}

.retire-carrier-card--au > * {
  border-color: #f97316;
  box-shadow: 0 4px 16px rgba(249,115,22,0.15);
}

.retire-carrier-card--au > *::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ea580c 0%, #f97316 100%);
}

.retire-carrier-card--softbank > * {
  border-color: #64748b;
  box-shadow: 0 4px 16px rgba(100,116,139,0.15);
}

.retire-carrier-card--softbank > *::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #475569 0%, #64748b 100%);
}

.retire-carrier-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 2px solid #f1f5f9;
  background: #f8fafc;
}

.retire-carrier-card--docomo .retire-carrier-header {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
  border-bottom-color: #991b1b;
}

.retire-carrier-card--au .retire-carrier-header {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  border-bottom-color: #c2410c;
}

.retire-carrier-card--softbank .retire-carrier-header {
  background: linear-gradient(135deg, #475569 0%, #64748b 100%);
  border-bottom-color: #334155;
}

.retire-carrier-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: #64748b;
}

.retire-carrier-card--docomo .retire-carrier-icon {
  stroke: #ffffff;
}

.retire-carrier-card--au .retire-carrier-icon {
  stroke: #ffffff;
}

.retire-carrier-card--softbank .retire-carrier-icon {
  stroke: #ffffff;
}

.retire-carrier-label {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
}

.retire-carrier-card--docomo .retire-carrier-label {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.retire-carrier-card--au .retire-carrier-label {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.retire-carrier-card--softbank .retire-carrier-label {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.retire-carrier-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.retire-carrier-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.retire-carrier-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.retire-carrier-card--docomo .retire-carrier-link {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(185,28,28,0.3);
}

.retire-carrier-card--docomo .retire-carrier-link svg {
  stroke: #ffffff;
}

.retire-carrier-card--docomo .retire-carrier-link:hover {
  box-shadow: 0 6px 16px rgba(185,28,28,0.4);
  transform: translateY(-1px);
}

.retire-carrier-card--au .retire-carrier-link {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(234,88,12,0.3);
}

.retire-carrier-card--au .retire-carrier-link svg {
  stroke: #ffffff;
}

.retire-carrier-card--au .retire-carrier-link:hover {
  box-shadow: 0 6px 16px rgba(234,88,12,0.4);
  transform: translateY(-1px);
}

.retire-carrier-card--softbank .retire-carrier-link {
  background: linear-gradient(135deg, #475569 0%, #64748b 100%);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(71,85,105,0.3);
}

.retire-carrier-card--softbank .retire-carrier-link svg {
  stroke: #ffffff;
}

.retire-carrier-card--softbank .retire-carrier-link:hover {
  box-shadow: 0 6px 16px rgba(71,85,105,0.4);
  transform: translateY(-1px);
}

.retire-domain-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.retire-domain-copy-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  margin: 0;
}

.retire-domain-form {
  margin: 0;
}

.retire-domain-input {
  width: 100%;
  max-width: 280px;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-family: monospace;
  color: #334155;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.retire-domain-input:focus {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26,90,172,0.08);
}

@media (min-width: 640px) {
  .content--retire::before {
    height: 200px;
  }

  .content--retire h1 {
    font-size: 28px;
    padding: 72px var(--spacing-md) 76px;
  }

  .retire-container {
    max-width: 720px;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-xl);
    gap: 24px;
  }

  .retire-instruction-card {
    border-radius: 14px;
    padding: 36px 28px;
  }

  .retire-instruction-icon-wrap {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .retire-instruction-icon {
    width: 32px;
    height: 32px;
  }

  .retire-instruction-text {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .retire-mail-btn {
    padding: 18px 40px;
    font-size: 17px;
    border-radius: 14px;
    gap: 12px;
  }

  .retire-mail-btn-icon {
    width: 22px;
    height: 22px;
  }

  .retire-carrier-card {
    max-width: 720px;
    padding: 0 var(--spacing-md);
  }

  .retire-carrier-header {
    padding: 20px 24px;
    gap: 14px;
  }

  .retire-carrier-icon {
    width: 26px;
    height: 26px;
  }

  .retire-carrier-label {
    font-size: 16px;
  }

  .retire-carrier-body {
    padding: 24px;
    gap: 18px;
  }

  .retire-carrier-link {
    padding: 14px 24px;
    font-size: 15px;
    gap: 10px;
    border-radius: 12px;
  }

  .retire-carrier-link svg {
    width: 18px;
    height: 18px;
  }

  .retire-domain-copy-label {
    font-size: 14px;
  }

  .retire-domain-input {
    max-width: 320px;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 10px;
  }
}

@media (min-width: 860px) {
  .content--retire::before {
    height: 220px;
  }

  .content--retire h1 {
    font-size: 32px;
    padding: 78px var(--spacing-lg) 82px;
  }

  .retire-container {
    max-width: 800px;
    padding: 48px var(--spacing-lg) var(--spacing-xl);
    gap: 28px;
  }

  .retire-instruction-card {
    border-radius: 16px;
    padding: 44px 36px;
  }

  .retire-instruction-icon-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .retire-instruction-icon {
    width: 36px;
    height: 36px;
  }

  .retire-instruction-text {
    font-size: 17px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .retire-mail-btn {
    padding: 20px 48px;
    font-size: 18px;
    border-radius: 16px;
  }

  .retire-mail-btn-icon {
    width: 24px;
    height: 24px;
  }

  .retire-carrier-card {
    max-width: 800px;
    padding: 0 var(--spacing-lg);
  }

  .retire-carrier-header {
    padding: 22px 28px;
  }

  .retire-carrier-icon {
    width: 28px;
    height: 28px;
  }

  .retire-carrier-label {
    font-size: 17px;
  }

  .retire-carrier-body {
    padding: 28px;
    gap: 20px;
  }

  .retire-carrier-link {
    padding: 16px 28px;
    font-size: 16px;
    border-radius: 14px;
  }

  .retire-domain-input {
    max-width: 360px;
    padding: 13px 18px;
    font-size: 16px;
    border-radius: 12px;
  }
}

/* ========== ‰ïˆõ“o˜^ˆÄ“àƒy[ƒWê—pƒXƒ^ƒCƒ‹ ========== */

.content--nomember {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--nomember::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--nomember h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.nomember-notice-area {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.nomember-notice-area:not(:empty) {
  margin-bottom: 16px;
}

.nomember-container {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ˆÄ“àƒJ[ƒh */
.nomember-info-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(26,90,172,0.06);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nomember-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a5aac 0%, #3b82f6 100%);
}

.nomember-info-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #bfdbfe;
}

.nomember-info-icon {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
}

.nomember-info-text {
  font-size: 15px;
  line-height: 1.85;
  color: #475569;
  margin: 0 0 16px;
  text-align: left;
}

.nomember-info-text:last-child {
  margin-bottom: 0;
}

.nomember-info-text strong {
  color: var(--blue);
  font-weight: 700;
}

/* “o˜^ƒ{ƒ^ƒ“ƒZƒNƒVƒ‡ƒ“ */
.nomember-regist-section {
  display: flex;
  justify-content: center;
}

.nomember-regist-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #1a5aac 0%, #3b82f6 100%);
  color: #ffffff !important;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26,90,172,0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.nomember-regist-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.nomember-regist-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,90,172,0.45);
}

.nomember-regist-btn:hover::after {
  left: 140%;
}

.nomember-regist-icon {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  flex-shrink: 0;
}

.nomember-regist-text {
  font-size: 17px;
}

.nomember-regist-arrow {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nomember-regist-btn:hover .nomember-regist-arrow {
  transform: translateX(4px);
}

/* ƒŠƒ“ƒNƒZƒNƒVƒ‡ƒ“ */
.nomember-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.nomember-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  color: #475569 !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nomember-link:hover {
  background: #f1f5f9;
  border-color: var(--blue);
  color: var(--blue) !important;
  transform: translateX(4px);
}

.nomember-link-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .content--nomember::before {
    height: 160px;
  }

  .content--nomember h1 {
    font-size: 28px;
    padding: var(--spacing-xl) var(--spacing-md) 48px;
  }

  .nomember-container {
    max-width: 720px;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-xl);
    gap: 28px;
  }

  .nomember-info-card {
    border-radius: 14px;
    padding: 36px 28px;
  }

  .nomember-info-icon-wrap {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .nomember-info-icon {
    width: 32px;
    height: 32px;
  }

  .nomember-info-text {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .nomember-regist-btn {
    padding: 20px 44px;
    font-size: 18px;
    border-radius: 14px;
    gap: 14px;
  }

  .nomember-regist-icon {
    width: 24px;
    height: 24px;
  }

  .nomember-regist-text {
    font-size: 18px;
  }

  .nomember-regist-arrow {
    width: 22px;
    height: 22px;
  }

  .nomember-links {
    border-radius: 14px;
    padding: 24px;
    gap: 14px;
  }

  .nomember-link {
    padding: 16px 18px;
    font-size: 16px;
    border-radius: 12px;
  }

  .nomember-link-icon {
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 860px) {
  .content--nomember::before {
    height: 180px;
  }

  .content--nomember h1 {
    font-size: 32px;
    padding: 56px var(--spacing-lg) 60px;
  }

  .nomember-container {
    max-width: 800px;
    padding: 48px var(--spacing-lg) var(--spacing-xl);
    gap: 32px;
  }

  .nomember-info-card {
    border-radius: 16px;
    padding: 44px 36px;
  }

  .nomember-info-icon-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .nomember-info-icon {
    width: 36px;
    height: 36px;
  }

  .nomember-info-text {
    font-size: 17px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .nomember-regist-btn {
    padding: 22px 52px;
    font-size: 19px;
    border-radius: 16px;
  }

  .nomember-regist-icon {
    width: 26px;
    height: 26px;
  }

  .nomember-regist-text {
    font-size: 19px;
  }

  .nomember-regist-arrow {
    width: 24px;
    height: 24px;
  }

  .nomember-links {
    border-radius: 16px;
    padding: 28px;
  }

  .nomember-link {
    padding: 18px 20px;
    font-size: 17px;
    border-radius: 14px;
  }

  .nomember-link-icon {
    width: 24px;
    height: 24px;
  }
}

/* ========== ‘Þ‰ï——R“ü—Íƒy[ƒWê—pƒXƒ^ƒCƒ‹ ========== */

.content--reason {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--reason::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--reason h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.reason-container {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ˆÄ“àƒJ[ƒh */
.reason-intro-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(26,90,172,0.06);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reason-intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a5aac 0%, #3b82f6 100%);
}

.reason-intro-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #bfdbfe;
}

.reason-intro-icon {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
}

.reason-intro-text {
  font-size: 15px;
  line-height: 1.85;
  color: #475569;
  margin: 0;
}

.reason-intro-text strong {
  color: var(--blue);
  font-weight: 700;
}

/* ƒtƒH[ƒ€ƒJ[ƒh */
.reason-form-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  padding: 28px 20px;
  position: relative;
}

.reason-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reason-form-field {
  font-size: 15px;
  line-height: 1.85;
  color: #475569;
}

.reason-form-field textarea,
.reason-form-field select,
.reason-form-field input[type="text"],
.reason-form-field input[type="checkbox"],
.reason-form-field input[type="radio"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  color: #334155;
  background: #f8fafc;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
  margin-top: 8px;
}

.reason-form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.reason-form-field textarea:focus,
.reason-form-field select:focus,
.reason-form-field input[type="text"]:focus {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26,90,172,0.08);
}

.reason-form-field input[type="checkbox"],
.reason-form-field input[type="radio"] {
  width: auto;
  margin-right: 8px;
}

.reason-form-submit {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.reason-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #1a5aac 0%, #3b82f6 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26,90,172,0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.reason-submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.reason-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,90,172,0.45);
}

.reason-submit-btn:hover::after {
  left: 140%;
}

.reason-submit-icon {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  flex-shrink: 0;
}

.reason-submit-text {
  font-size: 17px;
}

/* HomeƒŠƒ“ƒN */
.reason-home-link {
  display: flex;
  justify-content: center;
}

.reason-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #ffffff;
  color: #64748b !important;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.reason-home-btn:hover {
  background: #f8fafc;
  border-color: var(--blue);
  color: var(--blue) !important;
  box-shadow: 0 4px 12px rgba(26,90,172,0.1);
  transform: translateX(-2px);
}

.reason-home-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .content--reason::before {
    height: 160px;
  }

  .content--reason h1 {
    font-size: 28px;
    padding: var(--spacing-xl) var(--spacing-md) 48px;
  }

  .reason-container {
    max-width: 720px;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-xl);
    gap: 28px;
  }

  .reason-intro-card {
    border-radius: 14px;
    padding: 36px 28px;
  }

  .reason-intro-icon-wrap {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .reason-intro-icon {
    width: 32px;
    height: 32px;
  }

  .reason-intro-text {
    font-size: 16px;
  }

  .reason-form-card {
    border-radius: 14px;
    padding: 36px 28px;
  }

  .reason-form {
    gap: 28px;
  }

  .reason-form-field {
    font-size: 16px;
  }

  .reason-form-field textarea,
  .reason-form-field select,
  .reason-form-field input[type="text"] {
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 12px;
  }

  .reason-form-field textarea {
    min-height: 140px;
  }

  .reason-submit-btn {
    padding: 20px 48px;
    font-size: 18px;
    border-radius: 14px;
    gap: 14px;
  }

  .reason-submit-icon {
    width: 24px;
    height: 24px;
  }

  .reason-submit-text {
    font-size: 18px;
  }

  .reason-home-btn {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 12px;
  }

  .reason-home-icon {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 860px) {
  .content--reason::before {
    height: 180px;
  }

  .content--reason h1 {
    font-size: 32px;
    padding: 56px var(--spacing-lg) 60px;
  }

  .reason-container {
    max-width: 800px;
    padding: 48px var(--spacing-lg) var(--spacing-xl);
    gap: 32px;
  }

  .reason-intro-card {
    border-radius: 16px;
    padding: 44px 36px;
  }

  .reason-intro-icon-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .reason-intro-icon {
    width: 36px;
    height: 36px;
  }

  .reason-intro-text {
    font-size: 17px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .reason-form-card {
    border-radius: 16px;
    padding: 44px 36px;
  }

  .reason-form {
    gap: 32px;
  }

  .reason-form-field {
    font-size: 17px;
  }

  .reason-form-field textarea,
  .reason-form-field select,
  .reason-form-field input[type="text"] {
    padding: 16px 20px;
    font-size: 17px;
    border-radius: 14px;
  }

  .reason-form-field textarea {
    min-height: 160px;
  }

  .reason-submit-btn {
    padding: 22px 56px;
    font-size: 19px;
    border-radius: 16px;
  }

  .reason-submit-icon {
    width: 26px;
    height: 26px;
  }

  .reason-submit-text {
    font-size: 19px;
  }

  .reason-home-btn {
    padding: 16px 32px;
    font-size: 17px;
    border-radius: 14px;
  }

  .reason-home-icon {
    width: 22px;
    height: 22px;
  }
}

/* ========== ‘Þ‰ïŠm”Fƒy[ƒWê—pƒXƒ^ƒCƒ‹ ========== */

.content--confirm-retire {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--confirm-retire::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--confirm-retire h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.confirm-retire-container {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ƒƒCƒ“ƒJ[ƒh */
.confirm-retire-main-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 32px 24px;
  text-align: center;
}

.confirm-retire-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: #fef2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fecaca;
}

.confirm-retire-icon {
  width: 32px;
  height: 32px;
  stroke: #ef4444;
}

.confirm-retire-text {
  font-size: 15px;
  line-height: 1.9;
  color: #475569;
  margin: 0 0 20px;
  text-align: left;
}

.confirm-retire-text:last-child {
  margin-bottom: 0;
}

.confirm-retire-text strong {
  color: #1e293b;
  font-weight: 700;
}

/* ‚¨‚·‚·‚ßƒJ[ƒh */
.confirm-retire-recommend-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 24px 20px;
}

.confirm-retire-recommend-text {
  font-size: 15px;
  line-height: 1.85;
  color: #475569;
  margin: 0 0 16px;
  text-align: left;
}

.confirm-retire-recommend-text:last-child {
  margin-bottom: 0;
}

/* ƒAƒNƒVƒ‡ƒ“ƒ{ƒ^ƒ“ */
.confirm-retire-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.confirm-retire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.confirm-retire-btn--cancel {
  background: #16a34a;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(22,163,74,0.2);
}

.confirm-retire-btn--cancel:hover {
  background: #15803d;
  box-shadow: 0 4px 12px rgba(22,163,74,0.3);
  transform: translateY(-1px);
}

.confirm-retire-btn--proceed {
  background: #ef4444;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(239,68,68,0.2);
}

.confirm-retire-btn--proceed:hover {
  background: #dc2626;
  box-shadow: 0 4px 12px rgba(239,68,68,0.3);
  transform: translateY(-1px);
}

.confirm-retire-btn-icon {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  flex-shrink: 0;
}

.confirm-retire-btn-text {
  font-size: 16px;
}

@media (min-width: 640px) {
  .content--confirm-retire::before {
    height: 160px;
  }

  .content--confirm-retire h1 {
    font-size: 28px;
    padding: var(--spacing-xl) var(--spacing-md) 48px;
  }

  .confirm-retire-container {
    max-width: 720px;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-xl);
    gap: 24px;
  }

  .confirm-retire-main-card {
    border-radius: 14px;
    padding: 40px 32px;
  }

  .confirm-retire-icon-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
  }

  .confirm-retire-icon {
    width: 36px;
    height: 36px;
  }

  .confirm-retire-text {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .confirm-retire-recommend-card {
    border-radius: 14px;
    padding: 28px 24px;
  }

  .confirm-retire-recommend-text {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .confirm-retire-actions {
    flex-direction: row;
    gap: 16px;
    margin-top: 16px;
  }

  .confirm-retire-btn {
    flex: 1;
    padding: 20px 36px;
    font-size: 17px;
    border-radius: 12px;
  }

  .confirm-retire-btn-icon {
    width: 22px;
    height: 22px;
  }

  .confirm-retire-btn-text {
    font-size: 17px;
  }
}

@media (min-width: 860px) {
  .content--confirm-retire::before {
    height: 180px;
  }

  .content--confirm-retire h1 {
    font-size: 32px;
    padding: 56px var(--spacing-lg) 60px;
  }

  .confirm-retire-container {
    max-width: 800px;
    padding: 48px var(--spacing-lg) var(--spacing-xl);
    gap: 28px;
  }

  .confirm-retire-main-card {
    border-radius: 16px;
    padding: 48px 40px;
  }

  .confirm-retire-icon-wrap {
    width: 80px;
    height: 80px;
    margin-bottom: 32px;
  }

  .confirm-retire-icon {
    width: 40px;
    height: 40px;
  }

  .confirm-retire-text {
    font-size: 17px;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .confirm-retire-recommend-card {
    border-radius: 16px;
    padding: 32px 28px;
  }

  .confirm-retire-recommend-text {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .confirm-retire-actions {
    gap: 20px;
    margin-top: 20px;
  }

  .confirm-retire-btn {
    padding: 22px 44px;
    font-size: 18px;
    border-radius: 14px;
  }

  .confirm-retire-btn-icon {
    width: 24px;
    height: 24px;
  }

  .confirm-retire-btn-text {
    font-size: 18px;
  }
}

/* ========== docomo‰ïˆõ“o˜^ƒy[ƒWê—pƒXƒ^ƒCƒ‹ ========== */

.content--regist-docomo {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--regist-docomo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--regist-docomo h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.regist-docomo-container {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

/* ========== ƒVƒ“ƒOƒ‹ƒR[ƒX ========== */
.regist-docomo-single {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.regist-docomo-intro {
  padding: 10px 4px 0;
  font-size: 12px;
  line-height: 1.7;
  color: #94a3b8;
  font-weight: 500;
  text-align: left;
}

/* ŒˆÏƒJ[ƒhiÔ˜gj */
.regist-docomo-payment {
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #e60012;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: visible;
}

.regist-docomo-payment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #e60012;
}

.regist-docomo-payment-logo {
  margin-bottom: 20px;
}

.regist-docomo-payment-logo img {
  max-width: 180px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.regist-docomo-trial {
  margin-bottom: 40px;
  position: relative;
  display: flex;
  justify-content: center;
}

.regist-docomo-trial-badge {
  display: inline-block;
  position: relative;
  padding: 16px 44px;
  background-color: #ffffff;
  color: #e60012;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2.5px;
  border-radius: 5px;
  border: 3px solid #333333;
  box-shadow: -4px 4px 0 0 #333333;
  animation: badge-bounce 2.4s ease-in-out infinite;
}

@keyframes badge-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.regist-docomo-trial-badge::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 100%;
  margin-left: -12px;
  width: 0;
  height: 0;
  border: solid transparent;
  border-top-color: #333333;
  border-right-color: #333333;
  border-width: 10px;
}

.regist-docomo-trial-badge::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 99%;
  margin-left: -7px;
  width: 0;
  height: 0;
  border: solid transparent;
  border-top-color: #ffffff;
  border-right-color: #ffffff;
  border-width: 6.5px;
}

@keyframes trial-badge-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes trial-badge-glow {
  0%, 100% {
    opacity: 0.4;
    filter: blur(8px);
  }
  50% {
    opacity: 0.8;
    filter: blur(14px);
  }
}

@keyframes trial-badge-shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 200%;
  }
}

.regist-docomo-payment-action {
  display: flex;
  justify-content: center;
}

.regist-docomo-register-btn {
  display: block;
  width: 100%;
  padding: 20px 28px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.12em;
  border-radius: 40px;
  position: relative;
  background-image: linear-gradient(to bottom right, #00c6ff, #0072ff);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  border: none;
  box-shadow: 0px 5px 0px #0055cc;
  box-sizing: border-box;
}

.regist-docomo-register-btn::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.regist-docomo-register-btn::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.regist-docomo-register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 0px #0055cc;
}

.regist-docomo-register-btn:active {
  transform: translateY(2px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #0072ff, #00c6ff);
}

.regist-docomo-register-btn--disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-image: none;
  background: #cbd5e1;
  color: #94a3b8;
  box-shadow: 0px 5px 0px #a0aec0;
}

.regist-docomo-register-btn--disabled::before,
.regist-docomo-register-btn--disabled::after {
  display: none;
}

.regist-docomo-register-btn-text {
  display: inline;
  position: relative;
  z-index: 1;
}

.regist-docomo-register-btn-icon {
  display: none;
}

/* Ú×ƒtƒŒ[ƒ€iƒOƒŒ[˜gj */
.regist-docomo-details {
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.regist-docomo-terms {
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

.regist-docomo-terms a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--blue);
}

.regist-docomo-terms a:hover {
  color: #1e40af;
  border-bottom-color: #1e40af;
}

.regist-docomo-confirm-note {
  font-size: 13px;
  line-height: 1.7;
  color: #64748b;
  background: #ffffff;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.regist-docomo-warning {
  font-size: 13px;
  line-height: 1.7;
  color: #78350f;
  background: #fffbeb;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #fde047;
}

.regist-docomo-meta {
  text-align: right;
  font-size: 11px;
  color: transparent;
  user-select: none;
}


/* ========== ƒ}ƒ‹ƒ`ƒR[ƒX ========== */
.regist-docomo-multi {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.regist-docomo-multi-intro {
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
  text-align: center;
}

.regist-docomo-multi-intro a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--blue);
}

.regist-docomo-multi-intro a:hover {
  color: #1e40af;
  border-bottom-color: #1e40af;
}

.regist-docomo-payment-logo-wrap {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #e60012;
  box-shadow: 0 4px 12px rgba(230,0,18,0.1);
}

.regist-docomo-payment-logo-wrap img {
  max-width: 180px;
  height: auto;
  margin: 0 auto;
}

.regist-docomo-courses-title {
  font-size: 20px;
  font-weight: 900;
  color: #1e293b;
  text-align: center;
  margin: 0;
  padding: 16px 20px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  border-radius: 10px;
  border: 1px solid #fed7aa;
  position: relative;
}

.regist-docomo-courses-title::before,
.regist-docomo-courses-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #fbbf24;
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
}

.regist-docomo-courses-title::before {
  left: 12px;
}

.regist-docomo-courses-title::after {
  right: 12px;
}

.regist-docomo-courses {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.regist-docomo-course-item {
  background-image: linear-gradient(to bottom right, #00c6ff, #0072ff);
  border-radius: 40px;
  border: none;
  padding: 0;
  display: block;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  position: relative;
  margin-bottom: 16px;
  box-shadow: 0px 5px 0px #0055cc;
}

.regist-docomo-course-item::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.regist-docomo-course-item::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.regist-docomo-course-item:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 0px #0055cc;
}

.regist-docomo-course-item:active {
  transform: translateY(2px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #0072ff, #00c6ff);
}

.regist-docomo-course-item--disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-image: none;
  background: #cbd5e1;
  box-shadow: 0px 5px 0px #a0aec0;
  opacity: 0.8;
}

.regist-docomo-course-item--disabled::before,
.regist-docomo-course-item--disabled::after {
  display: none;
}

.regist-docomo-course-content {
  position: relative;
  display: block;
  padding: 18px 28px;
  color: #ffffff;
}

.regist-docomo-course-item--disabled .regist-docomo-course-content {
  color: #94a3b8;
}

.regist-docomo-course-info {
  display: block;
}

.regist-docomo-course-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.4;
}

.regist-docomo-course-item--disabled .regist-docomo-course-name {
  color: #64748b;
}

.regist-docomo-course-registered {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(0,0,0,0.15);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
  margin-left: 6px;
}

.regist-docomo-course-pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.regist-docomo-course-free,
.regist-docomo-course-trial {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
}

.regist-docomo-course-first,
.regist-docomo-course-price {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.regist-docomo-course-next {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

.regist-docomo-course-item--disabled .regist-docomo-course-free,
.regist-docomo-course-item--disabled .regist-docomo-course-trial,
.regist-docomo-course-item--disabled .regist-docomo-course-first,
.regist-docomo-course-item--disabled .regist-docomo-course-price {
  color: #64748b;
}

.regist-docomo-course-item--disabled .regist-docomo-course-next {
  color: #94a3b8;
}



/* About d•¥‚¢ */
.regist-docomo-about {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 24px 20px;
  margin-top: 8px;
}

.regist-docomo-about-title {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 16px;
  text-align: center;
}

.regist-docomo-about-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  color: var(--blue);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.regist-docomo-about-link:hover {
  background: #f1f5f9;
  border-color: var(--blue);
  transform: translateX(4px);
}

.regist-docomo-about-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .content--regist-docomo::before {
    height: 160px;
  }

  .content--regist-docomo h1 {
    font-size: 28px;
    padding: var(--spacing-xl) var(--spacing-md) 48px;
  }

  .regist-docomo-container {
    max-width: 720px;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-xl);
  }

  .regist-docomo-single,
  .regist-docomo-multi {
    gap: 24px;
  }

  .regist-docomo-intro {
    padding: 18px 24px;
    font-size: 16px;
    border-radius: 12px;
  }

  .regist-docomo-payment {
    padding: 32px 28px;
    border-radius: 14px;
  }

  .regist-docomo-payment-logo img {
    max-width: 200px;
  }

  .regist-docomo-trial-badge {
    font-size: 22px;
    padding: 18px 52px;
  }

  .regist-docomo-register-btn-text {
    padding: 22px;
    font-size: 22px;
  }

  .regist-docomo-details {
    padding: 24px;
    border-radius: 14px;
  }

  .regist-docomo-terms,
  .regist-docomo-confirm-note,
  .regist-docomo-warning {
    font-size: 15px;
  }

  .regist-docomo-multi-intro {
    padding: 20px 24px;
    font-size: 15px;
    border-radius: 12px;
  }

  .regist-docomo-payment-logo-wrap {
    padding: 24px;
    border-radius: 14px;
  }

  .regist-docomo-payment-logo-wrap img {
    max-width: 200px;
  }

  .regist-docomo-courses-title {
    font-size: 22px;
    padding: 18px 24px;
    border-radius: 12px;
  }

  .regist-docomo-course-content {
    padding: 20px 28px;
  }

  .regist-docomo-course-name {
    font-size: 1.15rem;
  }

  .regist-docomo-course-free,
  .regist-docomo-course-trial,
  .regist-docomo-course-first,
  .regist-docomo-course-price {
    font-size: 1.05rem;
  }

  .regist-docomo-course-next {
    font-size: 0.85rem;
  }

  .regist-docomo-about {
    padding: 28px 24px;
    border-radius: 14px;
  }

  .regist-docomo-about-title {
    font-size: 19px;
  }

  .regist-docomo-about-link {
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 12px;
  }
}

@media (min-width: 860px) {
  .content--regist-docomo::before {
    height: 180px;
  }

  .content--regist-docomo h1 {
    font-size: 32px;
    padding: 56px var(--spacing-lg) 60px;
  }

  .regist-docomo-container {
    max-width: 800px;
    padding: 48px var(--spacing-lg) var(--spacing-xl);
  }

  .regist-docomo-single,
  .regist-docomo-multi {
    gap: 28px;
  }

  .regist-docomo-intro {
    padding: 20px 28px;
    font-size: 17px;
    border-radius: 14px;
  }

  .regist-docomo-payment {
    padding: 40px 32px;
    border-radius: 16px;
  }

  .regist-docomo-payment-logo img {
    max-width: 220px;
  }

  .regist-docomo-trial-badge {
    font-size: 24px;
    padding: 20px 60px;
  }

  .regist-docomo-register-btn-text {
    padding: 24px;
    font-size: 24px;
  }

  .regist-docomo-details {
    padding: 28px;
    border-radius: 16px;
  }

  .regist-docomo-terms,
  .regist-docomo-confirm-note,
  .regist-docomo-warning {
    font-size: 16px;
  }

  .regist-docomo-multi-intro {
    padding: 24px 28px;
    font-size: 16px;
    border-radius: 14px;
  }

  .regist-docomo-payment-logo-wrap {
    padding: 28px;
    border-radius: 16px;
  }

  .regist-docomo-payment-logo-wrap img {
    max-width: 220px;
  }

  .regist-docomo-courses-title {
    font-size: 24px;
    padding: 20px 28px;
    border-radius: 14px;
  }

  .regist-docomo-course-content {
    padding: 22px 32px;
  }

  .regist-docomo-course-name {
    font-size: 1.2rem;
  }

  .regist-docomo-course-free,
  .regist-docomo-course-trial,
  .regist-docomo-course-first,
  .regist-docomo-course-price {
    font-size: 1.1rem;
  }

  .regist-docomo-course-next {
    font-size: 0.9rem;
  }

  .regist-docomo-about {
    padding: 32px 28px;
    border-radius: 16px;
  }

  .regist-docomo-about-title {
    font-size: 20px;
  }

  .regist-docomo-about-link {
    padding: 18px 24px;
    font-size: 17px;
    border-radius: 14px;
  }
}

/* ============================================================
   AU ONE “o˜^ƒy[ƒWiƒIƒŒƒ“ƒWƒe[ƒ}j
   .content--regist-auone ‚Å docomo ‚ÌF‚ðã‘‚«
   ============================================================ */

.content--regist-auone {
  background: #fff8f3 !important;
  min-height: 100vh;
  position: relative;
}

.content--regist-auone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #c94000 0%, #ff6600 50%, #ff8c33 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--regist-auone h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

/* ŒˆÏƒJ[ƒh˜gü */
.content--regist-auone .regist-docomo-payment {
  border-color: #ff6600;
}

.content--regist-auone .regist-docomo-payment::before {
  background: linear-gradient(90deg, #c94000, #ff6600, #ff8c33);
}

/* ‚«o‚µƒoƒbƒW ƒeƒLƒXƒgF */
.content--regist-auone .regist-docomo-trial-badge {
  color: #ff6600;
}

/* “o˜^ƒ{ƒ^ƒ“iƒAƒNƒeƒBƒuj */
.content--regist-auone .regist-docomo-register-btn:not(.regist-docomo-register-btn--disabled) {
  background-image: linear-gradient(to bottom right, #ffb347, #ff6600);
  box-shadow: 0px 5px 0px #b34700;
}

.content--regist-auone .regist-docomo-register-btn:not(.regist-docomo-register-btn--disabled):hover {
  box-shadow: 0px 8px 0px #b34700;
}

.content--regist-auone .regist-docomo-register-btn:not(.regist-docomo-register-btn--disabled):active {
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #ff6600, #ffb347);
}

/* Šm”Fƒm[ƒg */
.content--regist-auone .regist-docomo-confirm-note {
  border-left-color: #ff6600;
  background: linear-gradient(135deg, #fff4ed 0%, #ffffff 100%);
}

/* ŒxƒeƒLƒXƒg */
.content--regist-auone .regist-docomo-warning {
  border-left-color: #ff8c33;
  background: #fff8f3;
}

/* —˜—p‹K–ñƒŠƒ“ƒN */
.content--regist-auone .regist-docomo-terms a {
  color: #ff6600;
}

.content--regist-auone .regist-docomo-terms a:hover {
  color: #c94000;
}

/* ƒ}ƒ‹ƒ`ƒR[ƒX ƒ^ƒCƒgƒ‹ */
.content--regist-auone .regist-docomo-courses-title {
  color: #ff6600;
}

.content--regist-auone .regist-docomo-courses-title::before,
.content--regist-auone .regist-docomo-courses-title::after {
  background: #ff6600;
}

/* ƒ}ƒ‹ƒ`ƒR[ƒX ƒAƒCƒeƒ€iƒAƒNƒeƒBƒuj */
.content--regist-auone .regist-docomo-course-item:not(.regist-docomo-course-item--disabled) {
  background-image: linear-gradient(to bottom right, #ffb347, #ff6600);
  box-shadow: 0px 5px 0px #b34700;
}

.content--regist-auone .regist-docomo-course-item:not(.regist-docomo-course-item--disabled):hover {
  box-shadow: 0px 8px 0px #b34700;
}

.content--regist-auone .regist-docomo-course-item:not(.regist-docomo-course-item--disabled):active {
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #ff6600, #ffb347);
}

/* ƒ}ƒ‹ƒ`ƒR[ƒX intro ƒŠƒ“ƒN */
.content--regist-auone .regist-docomo-multi-intro a {
  color: #ff6600;
}

.content--regist-auone .regist-docomo-multi-intro a:hover {
  color: #c94000;
}

/* aboutƒZƒNƒVƒ‡ƒ“ */
.content--regist-auone .regist-docomo-about-title {
  color: #ff6600;
}

.content--regist-auone .regist-docomo-about-title::after {
  background: #ff6600;
}

.content--regist-auone .regist-docomo-about-link {
  display: block;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid #ffe0cc;
  border-radius: 10px;
  color: #ff6600;
  text-align: center;
}

.content--regist-auone .regist-docomo-about-link a {
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.content--regist-auone .regist-docomo-about-link a:hover {
  color: #c94000;
  text-decoration: underline;
}

/* ƒƒSiƒVƒ“ƒOƒ‹Eƒ}ƒ‹ƒ`‹¤’ÊjƒZƒ“ƒ^[ */
.content--regist-auone .regist-docomo-payment-logo,
.content--regist-auone .regist-docomo-payment-logo-wrap {
  text-align: center;
  border-color: #ff6600;
  box-shadow: 0 4px 12px rgba(255,102,0,0.1);
}

.content--regist-auone .regist-docomo-payment-logo img,
.content--regist-auone .regist-docomo-payment-logo-wrap img {
  display: block;
  margin: 0 auto;
}

/* ============================================================
   SoftBank SBPS “o˜^ƒy[ƒWiƒ_[ƒNƒXƒŒ[ƒgƒe[ƒ}j
   ============================================================ */

.content--regist-ssbps {
  background: #f1f5f9 !important;
  min-height: 100vh;
  position: relative;
}

.content--regist-ssbps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--regist-ssbps h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

/* ƒCƒ“ƒgƒ */
.regist-ssbps-intro {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #334155;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 16px;
}

.regist-ssbps-intro a {
  color: #334155;
  font-weight: 700;
  text-decoration: none;
}

.regist-ssbps-intro a:hover {
  color: #0f172a;
  text-decoration: underline;
}

/* ƒLƒƒƒŠƒAƒ‰ƒxƒ‹ */
.regist-ssbps-carrier-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 10px;
  margin-bottom: 16px;
}

.regist-ssbps-carrier-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ƒR[ƒXƒAƒCƒeƒ€iSoftBank ƒXƒŒ[ƒgj */
.regist-ssbps-course-item:not(.regist-docomo-course-item--disabled) {
  background-image: linear-gradient(to bottom right, #475569, #1e293b) !important;
  box-shadow: 0px 5px 0px #0f172a !important;
  border-radius: 40px !important;
}

.regist-ssbps-course-item:not(.regist-docomo-course-item--disabled):hover {
  box-shadow: 0px 8px 0px #0f172a !important;
}

.regist-ssbps-course-item:not(.regist-docomo-course-item--disabled):active {
  box-shadow: none !important;
  background-image: linear-gradient(to bottom right, #1e293b, #475569) !important;
}

.regist-ssbps-course-item:not(.regist-docomo-course-item--disabled)::before {
  border-top-color: #fff;
  border-left-color: #fff;
}

.regist-ssbps-course-item:not(.regist-docomo-course-item--disabled)::after {
  border-bottom-color: #fff;
  border-right-color: #fff;
}

/* ’ˆÓ‘‚« */
.regist-ssbps-caution {
  display: block;
  margin-top: 6px;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* aboutƒZƒNƒVƒ‡ƒ“iSoftBankj */
.content--regist-ssbps .regist-docomo-about-title {
  color: #1e293b;
}

.content--regist-ssbps .regist-docomo-about-title::after {
  background: #334155;
}

.regist-ssbps-about-link {
  color: #1e293b !important;
  border-color: #cbd5e1 !important;
}

.regist-ssbps-about-link:hover {
  background: #f1f5f9 !important;
  border-color: #334155 !important;
}

.regist-ssbps-about-link svg {
  color: #334155 !important;
}

/* ============================================================
   ƒvƒ‰ƒCƒoƒV[ƒ|ƒŠƒV[ƒy[ƒW
   ============================================================ */

.content--privacy {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--privacy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--privacy h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.privacy-intro {
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #2563eb;
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.9;
  color: #334155;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.privacy-section {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 20px 24px;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.privacy-section--detailed {
  flex-direction: column;
  gap: 12px;
}

.privacy-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.privacy-section--detailed .privacy-number {
  margin-top: 2px;
}

.privacy-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.9;
  color: #475569;
  text-align: left;
}

.privacy-subtitle {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

.privacy-subsection {
  margin-bottom: 16px;
}

.privacy-subsection:last-child {
  margin-bottom: 0;
}

.privacy-subsection-title {
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 3px solid #94a3b8;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.7;
  color: #64748b;
}

.privacy-list li::before {
  content: "E";
  position: absolute;
  left: 6px;
  color: #94a3b8;
  font-weight: 700;
}

.privacy-note {
  margin-top: 10px;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.7;
  color: #64748b;
  border-left: 3px solid #cbd5e1;
}

.privacy-contact {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.privacy-contact-title {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

.privacy-contact-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-contact-item {
  font-size: 13px;
  line-height: 1.7;
  color: #475569;
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiƒ^ƒuƒŒƒbƒgj */
@media (min-width: 768px) {
  .content--privacy h1 {
    font-size: 28px;
    padding: 50px 20px 90px;
  }

  .privacy-intro {
    padding: 24px 28px;
    font-size: 15px;
  }

  .privacy-section {
    padding: 24px 28px;
  }

  .privacy-number {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .privacy-text {
    font-size: 15px;
  }

  .privacy-subtitle {
    font-size: 17px;
  }

  .privacy-subsection-title {
    font-size: 15px;
  }

  .privacy-list li {
    font-size: 14px;
  }

  .privacy-note {
    font-size: 14px;
  }
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiPCj */
@media (min-width: 1024px) {
  .content--privacy h1 {
    font-size: 32px;
    padding: 55px 20px 100px;
  }

  .privacy-intro {
    padding: 28px 32px;
    font-size: 16px;
  }

  .privacy-section {
    padding: 28px 32px;
  }

  .privacy-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .privacy-text {
    font-size: 16px;
  }

  .privacy-subtitle {
    font-size: 18px;
  }

  .privacy-subsection-title {
    font-size: 16px;
  }

  .privacy-list li {
    font-size: 15px;
  }

  .privacy-note {
    font-size: 15px;
  }
}

/* ============================================================
   ‚²—˜—p•û–@ƒy[ƒWisetumeij
   ============================================================ */

.content--setumei {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--setumei::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--setumei h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.setumei-container {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.setumei-intro {
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #2563eb;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.8;
  color: #334155;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
}

.setumei-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.setumei-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.setumei-icon {
  width: 22px;
  height: 22px;
  color: #2563eb;
  flex-shrink: 0;
}

.setumei-pdf-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  text-decoration: none;
  color: #2563eb;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.setumei-pdf-link:hover {
  background: #eff6ff;
  border-color: #2563eb;
  transform: translateX(4px);
}

.setumei-pdf-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #2563eb;
}

.setumei-card--keycode {
  border: 2px solid #2563eb;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.setumei-keycode-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.setumei-keycode-value {
  padding: 20px 24px;
  background: #ffffff;
  border: 2px solid #2563eb;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 900;
  color: #1e293b;
  text-align: center;
  letter-spacing: 0.15em;
  font-family: 'Courier New', monospace;
  box-shadow: 0 4px 12px rgba(37,99,235,0.15);
}

.setumei-keycode-note {
  padding: 12px 16px;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.7;
  color: #92400e;
  font-weight: 600;
}

.setumei-keycode-pending {
  padding: 20px 24px;
  background: #f1f5f9;
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiƒ^ƒuƒŒƒbƒgj */
@media (min-width: 768px) {
  .content--setumei h1 {
    font-size: 28px;
    padding: 50px 20px 90px;
  }

  .setumei-intro {
    padding: 22px 26px;
    font-size: 15px;
  }

  .setumei-card {
    padding: 28px;
  }

  .setumei-card-title {
    font-size: 18px;
  }

  .setumei-icon {
    width: 24px;
    height: 24px;
  }

  .setumei-pdf-link {
    padding: 18px 22px;
    font-size: 15px;
  }

  .setumei-keycode-value {
    font-size: 22px;
    padding: 22px 28px;
  }

  .setumei-keycode-note {
    font-size: 14px;
  }

  .setumei-keycode-pending {
    font-size: 16px;
  }
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiPCj */
@media (min-width: 1024px) {
  .content--setumei h1 {
    font-size: 32px;
    padding: 55px 20px 100px;
  }

  .setumei-intro {
    padding: 26px 30px;
    font-size: 16px;
  }

  .setumei-card {
    padding: 32px;
  }

  .setumei-card-title {
    font-size: 19px;
  }

  .setumei-icon {
    width: 26px;
    height: 26px;
  }

  .setumei-pdf-link {
    padding: 20px 24px;
    font-size: 16px;
  }

  .setumei-keycode-value {
    font-size: 24px;
    padding: 24px 32px;
  }

  .setumei-keycode-note {
    font-size: 15px;
  }

  .setumei-keycode-pending {
    font-size: 17px;
  }
}

/* ============================================================
   IDƒƒOƒCƒ“ƒy[ƒW
   ============================================================ */

.content--login-id {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--login-id::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--login-id h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.login-id-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0px 20px 20px;
  position: relative;
  z-index: 1;
}

.login-id-intro {
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #2563eb;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.8;
  color: #334155;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
}

.login-id-card {
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #2563eb;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(37,99,235,0.12);
}

.login-id-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e2e8f0;
}

.login-id-icon {
  width: 24px;
  height: 24px;
  color: #2563eb;
  flex-shrink: 0;
}

.login-id-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-id-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-id-label {
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  padding-left: 4px;
}

.login-id-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: #1e293b;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.login-id-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.login-id-submit {
  margin-top: 8px;
}

.login-id-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 28px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.12em;
  border-radius: 40px;
  position: relative;
  background-image: linear-gradient(to bottom right, #00c6ff, #0072ff);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  border: none;
  box-shadow: 0px 5px 0px #0055cc;
  box-sizing: border-box;
}

.login-id-btn::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.login-id-btn::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.login-id-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 0px #0055cc;
}

.login-id-btn:active {
  transform: translateY(2px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #0072ff, #00c6ff);
}

.login-id-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiƒ^ƒuƒŒƒbƒgj */
@media (min-width: 768px) {
  .content--login-id h1 {
    font-size: 28px;
    padding: 50px 20px 90px;
  }

  .login-id-intro {
    padding: 22px 26px;
    font-size: 15px;
  }

  .login-id-card {
    padding: 32px 28px;
  }

  .login-id-card-title {
    font-size: 19px;
  }

  .login-id-icon {
    width: 26px;
    height: 26px;
  }

  .login-id-label {
    font-size: 15px;
  }

  .login-id-input {
    padding: 16px 18px;
    font-size: 17px;
  }

  .login-id-btn {
    padding: 18px 32px;
    font-size: 19px;
  }
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiPCj */
@media (min-width: 1024px) {
  .content--login-id h1 {
    font-size: 32px;
    padding: 55px 20px 100px;
  }

  .login-id-intro {
    padding: 26px 30px;
    font-size: 16px;
  }

  .login-id-card {
    padding: 36px 32px;
  }

  .login-id-card-title {
    font-size: 20px;
  }

  .login-id-icon {
    width: 28px;
    height: 28px;
  }

  .login-id-label {
    font-size: 16px;
  }

  .login-id-input {
    padding: 18px 20px;
    font-size: 18px;
  }

  .login-id-btn {
    padding: 20px 36px;
    font-size: 20px;
  }
}

/* ============================================================
   “o˜^Ž¸”sƒy[ƒWiŠù‚É“o˜^Ï‚Ýj
   ============================================================ */

.content--registered {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--registered::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--registered h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.registered-container {
  max-width: 620px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.registered-error {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #dc2626;
  padding: 28px 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(220,38,38,0.15);
}

.registered-error-icon {
  width: 48px;
  height: 48px;
  color: #dc2626;
  flex-shrink: 0;
}

.registered-error-content {
  flex: 1;
}

.registered-error-title {
  font-size: 18px;
  font-weight: 800;
  color: #dc2626;
  margin-bottom: 12px;
}

.registered-error-text {
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

.registered-action {
  text-align: center;
}

.registered-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  background-image: linear-gradient(to bottom right, #00c6ff, #0072ff);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 5px 0px #0055cc;
  letter-spacing: 0.08em;
}

.registered-home-btn::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.registered-home-btn::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.registered-home-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 0px #0055cc;
}

.registered-home-btn:active {
  transform: translateY(2px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #0072ff, #00c6ff);
}

.registered-home-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiƒ^ƒuƒŒƒbƒgj */
@media (min-width: 768px) {
  .content--registered h1 {
    font-size: 28px;
    padding: 50px 20px 90px;
  }

  .registered-error {
    padding: 32px 28px;
  }

  .registered-error-icon {
    width: 52px;
    height: 52px;
  }

  .registered-error-title {
    font-size: 19px;
  }

  .registered-error-text {
    font-size: 15px;
  }

  .registered-home-btn {
    padding: 20px 44px;
    font-size: 18px;
  }

  .registered-home-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiPCj */
@media (min-width: 1024px) {
  .content--registered h1 {
    font-size: 32px;
    padding: 55px 20px 100px;
  }

  .registered-error {
    padding: 36px 32px;
  }

  .registered-error-icon {
    width: 56px;
    height: 56px;
  }

  .registered-error-title {
    font-size: 20px;
  }

  .registered-error-text {
    font-size: 16px;
  }

  .registered-home-btn {
    padding: 22px 48px;
    font-size: 19px;
  }

  .registered-home-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* ============================================================
   QRƒR[ƒhƒy[ƒW
   ============================================================ */

.content--qr {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--qr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--qr h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.qr-container {
  max-width: 520px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.qr-card {
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #2563eb;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(37,99,235,0.12);
}

.qr-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e2e8f0;
}

.qr-icon {
  width: 24px;
  height: 24px;
  color: #2563eb;
  flex-shrink: 0;
}

.qr-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.qr-site-name {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
}

.qr-image-wrapper {
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  display: inline-block;
}

.qr-image {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.qr-url {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-align: center;
  word-break: break-all;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.02em;
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiƒ^ƒuƒŒƒbƒgj */
@media (min-width: 768px) {
  .content--qr h1 {
    font-size: 28px;
    padding: 50px 20px 90px;
  }

  .qr-card {
    padding: 32px 28px;
  }

  .qr-card-title {
    font-size: 19px;
  }

  .qr-icon {
    width: 26px;
    height: 26px;
  }

  .qr-site-name {
    font-size: 17px;
  }

  .qr-image-wrapper {
    padding: 24px;
  }

  .qr-image {
    width: 240px;
    height: 240px;
  }

  .qr-url {
    font-size: 14px;
  }
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiPCj */
@media (min-width: 1024px) {
  .content--qr h1 {
    font-size: 32px;
    padding: 55px 20px 100px;
  }

  .qr-card {
    padding: 36px 32px;
  }

  .qr-card-title {
    font-size: 20px;
  }

  .qr-icon {
    width: 28px;
    height: 28px;
  }

  .qr-site-name {
    font-size: 18px;
  }

  .qr-image-wrapper {
    padding: 28px;
  }

  .qr-image {
    width: 280px;
    height: 280px;
  }

  .qr-url {
    font-size: 15px;
  }
}

/* ============================================================
   ƒƒOƒCƒ“Ž¸”s/‘Þ‰ïˆÄ“àƒy[ƒW
   ============================================================ */

.content--login-ng {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--login-ng::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--login-ng h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.login-ng-container {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.login-ng-message {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #2563eb;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.1);
}

.login-ng-icon {
  width: 40px;
  height: 40px;
  color: #2563eb;
  flex-shrink: 0;
}

.login-ng-text {
  font-size: 15px;
  line-height: 1.8;
  color: #334155;
  font-weight: 600;
}

.login-ng-info {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.login-ng-info-title {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}

.login-ng-info-text {
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

.login-ng-warning {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(245,158,11,0.15);
}

.login-ng-warning-icon {
  width: 24px;
  height: 24px;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 2px;
}

.login-ng-warning-text {
  font-size: 14px;
  line-height: 1.7;
  color: #92400e;
  font-weight: 600;
}

.login-ng-links {
  margin-bottom: 24px;
}

.login-ng-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  transition: all 0.2s ease-in-out;
  letter-spacing: 0.08em;
  width: 100%;
  box-sizing: border-box;
}

.login-ng-link--primary {
  background-image: linear-gradient(to bottom right, #00c6ff, #0072ff);
  color: #ffffff;
  box-shadow: 0px 5px 0px #0055cc;
  position: relative;
}

.login-ng-link--primary::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.login-ng-link--primary::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.login-ng-link--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 0px #0055cc;
}

.login-ng-link--primary:active {
  transform: translateY(2px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #0072ff, #00c6ff);
}

.login-ng-link--secondary {
  background: #ffffff;
  color: #2563eb;
  border: 2px solid #2563eb;
  margin-top: 12px;
}

.login-ng-link--secondary:hover {
  background: #eff6ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.15);
}

.login-ng-link--secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(37,99,235,0.1);
}

.login-ng-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.login-ng-help {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.login-ng-help-text {
  font-size: 13px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 16px;
  text-align: left;
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiƒ^ƒuƒŒƒbƒgj */
@media (min-width: 768px) {
  .content--login-ng h1 {
    font-size: 28px;
    padding: 50px 20px 90px;
  }

  .login-ng-message {
    padding: 28px;
  }

  .login-ng-icon {
    width: 44px;
    height: 44px;
  }

  .login-ng-text {
    font-size: 16px;
  }

  .login-ng-info {
    padding: 24px 28px;
  }

  .login-ng-info-title {
    font-size: 17px;
  }

  .login-ng-info-text {
    font-size: 15px;
  }

  .login-ng-warning {
    padding: 18px 24px;
  }

  .login-ng-warning-icon {
    width: 26px;
    height: 26px;
  }

  .login-ng-warning-text {
    font-size: 15px;
  }

  .login-ng-link {
    padding: 18px 40px;
    font-size: 17px;
  }

  .login-ng-link svg {
    width: 22px;
    height: 22px;
  }

  .login-ng-help {
    padding: 24px 28px;
  }

  .login-ng-help-text {
    font-size: 14px;
  }
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiPCj */
@media (min-width: 1024px) {
  .content--login-ng h1 {
    font-size: 32px;
    padding: 55px 20px 100px;
  }

  .login-ng-message {
    padding: 32px;
  }

  .login-ng-icon {
    width: 48px;
    height: 48px;
  }

  .login-ng-text {
    font-size: 17px;
  }

  .login-ng-info {
    padding: 28px 32px;
  }

  .login-ng-info-title {
    font-size: 18px;
  }

  .login-ng-info-text {
    font-size: 16px;
  }

  .login-ng-warning {
    padding: 20px 28px;
  }

  .login-ng-warning-icon {
    width: 28px;
    height: 28px;
  }

  .login-ng-warning-text {
    font-size: 16px;
  }

  .login-ng-link {
    padding: 20px 44px;
    font-size: 18px;
  }

  .login-ng-link svg {
    width: 24px;
    height: 24px;
  }

  .login-ng-help {
    padding: 28px 32px;
  }

  .login-ng-help-text {
    font-size: 15px;
  }
}

/* ============================================================
   ŒˆÏ’†Ž~ƒy[ƒW
   ============================================================ */

.content--regist-ng {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--regist-ng::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--regist-ng h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.regist-ng-container {
  max-width: 620px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.regist-ng-message {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #f59e0b;
  padding: 28px 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(245,158,11,0.15);
}

.regist-ng-icon {
  width: 48px;
  height: 48px;
  color: #f59e0b;
  flex-shrink: 0;
}

.regist-ng-content {
  flex: 1;
}

.regist-ng-title {
  font-size: 18px;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 10px;
}

.regist-ng-text {
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

.regist-ng-action {
  text-align: center;
}

.regist-ng-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  background-image: linear-gradient(to bottom right, #00c6ff, #0072ff);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 5px 0px #0055cc;
  letter-spacing: 0.08em;
  position: relative;
}

.regist-ng-home-btn::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.regist-ng-home-btn::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.regist-ng-home-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 0px #0055cc;
}

.regist-ng-home-btn:active {
  transform: translateY(2px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #0072ff, #00c6ff);
}

.regist-ng-home-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiƒ^ƒuƒŒƒbƒgj */
@media (min-width: 768px) {
  .content--regist-ng h1 {
    font-size: 28px;
    padding: 50px 20px 90px;
  }

  .regist-ng-message {
    padding: 32px 28px;
  }

  .regist-ng-icon {
    width: 52px;
    height: 52px;
  }

  .regist-ng-title {
    font-size: 19px;
  }

  .regist-ng-text {
    font-size: 15px;
  }

  .regist-ng-home-btn {
    padding: 20px 44px;
    font-size: 18px;
  }

  .regist-ng-home-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiPCj */
@media (min-width: 1024px) {
  .content--regist-ng h1 {
    font-size: 32px;
    padding: 55px 20px 100px;
  }

  .regist-ng-message {
    padding: 36px 32px;
  }

  .regist-ng-icon {
    width: 56px;
    height: 56px;
  }

  .regist-ng-title {
    font-size: 20px;
  }

  .regist-ng-text {
    font-size: 16px;
  }

  .regist-ng-home-btn {
    padding: 22px 48px;
    font-size: 19px;
  }

  .regist-ng-home-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* ============================================================
   ‘Þ‰ïƒLƒƒƒ“ƒZƒ‹ƒy[ƒW
   ============================================================ */

.content--retire-ng {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--retire-ng::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--retire-ng h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.retire-ng-container {
  max-width: 620px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.retire-ng-message {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #f59e0b;
  padding: 28px 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(245,158,11,0.15);
}

.retire-ng-icon {
  width: 48px;
  height: 48px;
  color: #f59e0b;
  flex-shrink: 0;
}

.retire-ng-content {
  flex: 1;
}

.retire-ng-title {
  font-size: 18px;
  font-weight: 800;
  color: #92400e;
}

.retire-ng-action {
  text-align: center;
}

.retire-ng-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  background-image: linear-gradient(to bottom right, #00c6ff, #0072ff);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 5px 0px #0055cc;
  letter-spacing: 0.08em;
  position: relative;
}

.retire-ng-home-btn::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.retire-ng-home-btn::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.retire-ng-home-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 0px #0055cc;
}

.retire-ng-home-btn:active {
  transform: translateY(2px);
  box-shadow: none;
}

.retire-ng-home-btn svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 600px) {
  .content--retire-ng::before {
    height: 160px;
  }

  .content--retire-ng h1 {
    font-size: 28px;
    padding: 50px 20px 90px;
  }

  .retire-ng-message {
    padding: 32px 28px;
  }

  .retire-ng-icon {
    width: 52px;
    height: 52px;
  }

  .retire-ng-title {
    font-size: 19px;
  }

  .retire-ng-home-btn {
    padding: 20px 44px;
    font-size: 18px;
  }

  .retire-ng-home-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 768px) {
  .content--retire-ng::before {
    height: 180px;
  }

  .content--retire-ng h1 {
    font-size: 32px;
    padding: 55px 20px 100px;
  }

  .retire-ng-message {
    padding: 36px 32px;
  }

  .retire-ng-icon {
    width: 56px;
    height: 56px;
  }

  .retire-ng-title {
    font-size: 20px;
  }

  .retire-ng-home-btn {
    padding: 22px 48px;
    font-size: 19px;
  }

  .retire-ng-home-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* ============================================================
   “o˜^Š®—¹ƒy[ƒW
   ============================================================ */

.content--regist-ok {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--regist-ok::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #4ade80 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--regist-ok h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.regist-ok-container {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.regist-ok-success {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #16a34a;
  padding: 28px 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(22,163,74,0.15);
}

.regist-ok-icon {
  width: 48px;
  height: 48px;
  color: #16a34a;
  flex-shrink: 0;
}

.regist-ok-content {
  flex: 1;
}

.regist-ok-title {
  font-size: 18px;
  font-weight: 800;
  color: #16a34a;
  margin-bottom: 10px;
}

.regist-ok-text {
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

.regist-ok-login-info {
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #2563eb;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.1);
}

.regist-ok-login-info-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e2e8f0;
}

.regist-ok-login-icon {
  width: 22px;
  height: 22px;
  color: #2563eb;
  flex-shrink: 0;
}

.regist-ok-login-note {
  font-size: 12px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 18px;
  padding: 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.regist-ok-login-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.regist-ok-login-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.regist-ok-login-label {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.regist-ok-login-value {
  padding: 14px 18px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 900;
  color: #1e293b;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: 'Courier New', monospace;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.regist-ok-ad {
  margin-bottom: 24px;
  text-align: center;
}

.regist-ok-action {
  text-align: center;
}

.regist-ok-home-link {
  display: inline-block;
  padding: 16px 40px;
  background-image: linear-gradient(to bottom right, #00c6ff, #0072ff);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 5px 0px #0055cc;
  letter-spacing: 0.08em;
  position: relative;
}

.regist-ok-home-link::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.regist-ok-home-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.regist-ok-home-link:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 0px #0055cc;
}

.regist-ok-home-link:active {
  transform: translateY(2px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #0072ff, #00c6ff);
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiƒ^ƒuƒŒƒbƒgj */
@media (min-width: 768px) {
  .content--regist-ok h1 {
    font-size: 28px;
    padding: 50px 20px 90px;
  }

  .regist-ok-success {
    padding: 32px 28px;
  }

  .regist-ok-icon {
    width: 52px;
    height: 52px;
  }

  .regist-ok-title {
    font-size: 19px;
  }

  .regist-ok-text {
    font-size: 15px;
  }

  .regist-ok-login-info {
    padding: 28px;
  }

  .regist-ok-login-info-header {
    font-size: 18px;
  }

  .regist-ok-login-icon {
    width: 24px;
    height: 24px;
  }

  .regist-ok-login-note {
    font-size: 13px;
  }

  .regist-ok-login-label {
    font-size: 14px;
  }

  .regist-ok-login-value {
    padding: 16px 20px;
    font-size: 19px;
  }

  .regist-ok-home-link {
    padding: 18px 44px;
    font-size: 17px;
  }
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiPCj */
@media (min-width: 1024px) {
  .content--regist-ok h1 {
    font-size: 32px;
    padding: 55px 20px 100px;
  }

  .regist-ok-success {
    padding: 36px 32px;
  }

  .regist-ok-icon {
    width: 56px;
    height: 56px;
  }

  .regist-ok-title {
    font-size: 20px;
  }

  .regist-ok-text {
    font-size: 16px;
  }

  .regist-ok-login-info {
    padding: 32px;
  }

  .regist-ok-login-info-header {
    font-size: 19px;
  }

  .regist-ok-login-icon {
    width: 26px;
    height: 26px;
  }

  .regist-ok-login-note {
    font-size: 14px;
  }

  .regist-ok-login-label {
    font-size: 15px;
  }

  .regist-ok-login-value {
    padding: 18px 22px;
    font-size: 21px;
  }

  .regist-ok-home-link {
    padding: 20px 48px;
    font-size: 18px;
  }
}

/* ============================================================
   ‘Þ‰ïŠ®—¹ƒy[ƒW
   ============================================================ */

.content--retire-ok {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--retire-ok::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #4ade80 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--retire-ok h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.retire-ok-container {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.retire-ok-success {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #16a34a;
  padding: 28px 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(22,163,74,0.15);
}

.retire-ok-icon {
  width: 48px;
  height: 48px;
  color: #16a34a;
  flex-shrink: 0;
}

.retire-ok-content {
  flex: 1;
}

.retire-ok-title {
  font-size: 18px;
  font-weight: 800;
  color: #16a34a;
  margin-bottom: 10px;
}

.retire-ok-text {
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

.retire-ok-ad {
  margin-bottom: 24px;
  text-align: center;
}

.retire-ok-action {
  text-align: center;
}

.retire-ok-home-link {
  display: inline-block;
  padding: 16px 40px;
  background-image: linear-gradient(to bottom right, #00c6ff, #0072ff);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 5px 0px #0055cc;
  letter-spacing: 0.08em;
  position: relative;
}

.retire-ok-home-link::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.retire-ok-home-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.retire-ok-home-link:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 0px #0055cc;
}

.retire-ok-home-link:active {
  transform: translateY(2px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #0072ff, #00c6ff);
}

@media (min-width: 600px) {
  .content--retire-ok::before {
    height: 160px;
  }

  .content--retire-ok h1 {
    font-size: 28px;
    padding: 50px 20px 90px;
  }

  .retire-ok-success {
    padding: 32px 28px;
  }

  .retire-ok-icon {
    width: 52px;
    height: 52px;
  }

  .retire-ok-title {
    font-size: 19px;
  }

  .retire-ok-text {
    font-size: 15px;
  }

  .retire-ok-home-link {
    padding: 18px 44px;
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  .content--retire-ok::before {
    height: 180px;
  }

  .content--retire-ok h1 {
    font-size: 32px;
    padding: 55px 20px 100px;
  }

  .retire-ok-success {
    padding: 36px 32px;
  }

  .retire-ok-icon {
    width: 56px;
    height: 56px;
  }

  .retire-ok-title {
    font-size: 20px;
  }

  .retire-ok-text {
    font-size: 16px;
  }

  .retire-ok-home-link {
    padding: 20px 48px;
    font-size: 18px;
  }
}

/* ============================================================
   ‹ŒƒTƒCƒg‰ïˆõ‘Þ‰ïƒy[ƒW
   ============================================================ */

.content--retire-old {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--retire-old::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #475569 0%, #64748b 50%, #94a3b8 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--retire-old h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.retire-old-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 20px 20px;
  position: relative;
  z-index: 1;
}

.retire-old-intro {
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #64748b;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.8;
  color: #334155;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
}

.retire-old-card {
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #64748b;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(100,116,139,0.12);
}

.retire-old-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.retire-old-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.retire-old-label {
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  padding-left: 4px;
}

.retire-old-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: #1e293b;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.retire-old-input:focus {
  outline: none;
  border-color: #64748b;
  box-shadow: 0 0 0 3px rgba(100,116,139,0.1);
}

.retire-old-input::placeholder {
  color: #94a3b8;
}

.retire-old-submit {
  margin-top: 8px;
}

.retire-old-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 28px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.12em;
  border-radius: 40px;
  position: relative;
  background-image: linear-gradient(to bottom right, #64748b, #475569);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  border: none;
  box-shadow: 0px 5px 0px #334155;
  box-sizing: border-box;
}

.retire-old-btn::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.retire-old-btn::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.retire-old-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 0px #334155;
}

.retire-old-btn:active {
  transform: translateY(2px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #475569, #64748b);
}

@media (min-width: 600px) {
  .content--retire-old::before {
    height: 160px;
  }

  .content--retire-old h1 {
    font-size: 28px;
    padding: 50px 20px 90px;
  }

  .retire-old-intro {
    padding: 22px 26px;
    font-size: 15px;
  }

  .retire-old-input {
    padding: 16px 18px;
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  .content--retire-old::before {
    height: 180px;
  }

  .content--retire-old h1 {
    font-size: 32px;
    padding: 55px 20px 100px;
  }

  .retire-old-intro {
    padding: 26px 30px;
    font-size: 16px;
  }

  .retire-old-card {
    padding: 32px 28px;
  }

  .retire-old-input {
    padding: 18px 20px;
    font-size: 18px;
  }

  .retire-old-btn {
    padding: 18px 32px;
    font-size: 19px;
  }
}

/* ============================================================
   ‘Þ‰ïƒy[ƒWiAUj
   ============================================================ */

.content--retire-auone {
  background: #fff8f3 !important;
  min-height: 100vh;
  position: relative;
}

.content--retire-auone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #c94000 0%, #ff6600 50%, #ff8c33 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--retire-auone h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.retire-auone-container {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.retire-auone-confirm {
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #ff6600;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.8;
  color: #334155;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
}

.retire-auone-carrier-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #ff6600 0%, #ff8c33 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 10px;
  margin-bottom: 16px;
}

.retire-auone-carrier-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.retire-auone-courses-title {
  font-size: 18px;
  font-weight: 800;
  color: #ff6600;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.retire-auone-courses-title::before,
.retire-auone-courses-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  background: #ff6600;
}

.retire-auone-courses-title::before {
  left: 0;
  width: 30%;
}

.retire-auone-courses-title::after {
  right: 0;
  width: 30%;
}

.retire-auone-courses {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.retire-auone-course-item {
  background-image: linear-gradient(to bottom right, #ffb347, #ff6600);
  border-radius: 40px;
  border: none;
  padding: 0;
  display: block;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  position: relative;
  box-shadow: 0px 5px 0px #b34700;
}

.retire-auone-course-item::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.retire-auone-course-item::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.retire-auone-course-item:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 0px #b34700;
}

.retire-auone-course-item:active {
  transform: translateY(2px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #ff6600, #ffb347);
}

.retire-auone-course-item--processing {
  background-image: none;
  background: #cbd5e1;
  box-shadow: 0px 5px 0px #a0aec0;
  cursor: not-allowed;
  pointer-events: none;
}

.retire-auone-course-item--processing::before,
.retire-auone-course-item--processing::after {
  display: none;
}

.retire-auone-course-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 28px;
  color: #ffffff;
}

.retire-auone-course-item--processing .retire-auone-course-content {
  color: #64748b;
}

.retire-auone-course-pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.retire-auone-course-first,
.retire-auone-course-price {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.retire-auone-course-next {
  font-size: 0.8rem;
  opacity: 0.85;
  line-height: 1.3;
}

.retire-auone-course-status {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0,0,0,0.2);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  margin-top: 4px;
}

.retire-auone-course-status--processing {
  background: rgba(239,68,68,0.2);
  color: #dc2626;
}

.retire-auone-course-note {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 2px;
}

.retire-auone-course-action {
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: 4px;
}

.retire-auone-empty {
  padding: 40px 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px dashed #cbd5e1;
  text-align: center;
  font-size: 15px;
  color: #64748b;
  font-weight: 600;
}

.retire-auone-footer-link {
  text-align: right;
  padding: 12px 0;
}

.retire-auone-footer-link a {
  font-size: 13px;
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
}

.retire-auone-footer-link a:hover {
  color: #c94000;
  text-decoration: underline;
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiƒ^ƒuƒŒƒbƒgj */
@media (min-width: 768px) {
  .content--retire-auone h1 {
    font-size: 28px;
    padding: 50px 20px 90px;
  }

  .retire-auone-confirm {
    padding: 22px 26px;
    font-size: 15px;
  }

  .retire-auone-carrier-label {
    padding: 14px 24px;
    font-size: 16px;
  }

  .retire-auone-carrier-icon {
    width: 20px;
    height: 20px;
  }

  .retire-auone-courses-title {
    font-size: 19px;
  }

  .retire-auone-course-content {
    padding: 20px 32px;
  }

  .retire-auone-course-first,
  .retire-auone-course-price {
    font-size: 1.05rem;
  }

  .retire-auone-course-next {
    font-size: 0.85rem;
  }

  .retire-auone-course-status {
    font-size: 0.9rem;
  }

  .retire-auone-course-action {
    font-size: 1.15rem;
  }

  .retire-auone-empty {
    padding: 48px 28px;
    font-size: 16px;
  }

  .retire-auone-footer-link a {
    font-size: 14px;
  }
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiPCj */
@media (min-width: 1024px) {
  .content--retire-auone h1 {
    font-size: 32px;
    padding: 55px 20px 100px;
  }

  .retire-auone-confirm {
    padding: 26px 30px;
    font-size: 16px;
  }

  .retire-auone-carrier-label {
    padding: 16px 28px;
    font-size: 17px;
  }

  .retire-auone-carrier-icon {
    width: 22px;
    height: 22px;
  }

  .retire-auone-courses-title {
    font-size: 20px;
  }

  .retire-auone-course-content {
    padding: 22px 36px;
  }

  .retire-auone-course-first,
  .retire-auone-course-price {
    font-size: 1.1rem;
  }

  .retire-auone-course-next {
    font-size: 0.9rem;
  }

  .retire-auone-course-status {
    font-size: 0.95rem;
  }

  .retire-auone-course-action {
    font-size: 1.2rem;
  }

  .retire-auone-empty {
    padding: 56px 32px;
    font-size: 17px;
  }

  .retire-auone-footer-link a {
    font-size: 15px;
  }
}

/* ============================================================
   ‘Þ‰ïƒy[ƒWiSoftBank / ƒ\ƒtƒgƒoƒ“ƒN‚Ü‚Æ‚ß‚ÄŽx•¥‚¢j
   ============================================================ */

.content--retire-ssbps {
  background: #f1f5f9 !important;
  min-height: 100vh;
  position: relative;
}

.content--retire-ssbps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--retire-ssbps h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.retire-ssbps-container {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.retire-ssbps-confirm {
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #334155;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.8;
  color: #334155;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
}

.retire-ssbps-carrier-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 10px;
  margin-bottom: 16px;
}

.retire-ssbps-carrier-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.retire-ssbps-courses-title {
  font-size: 18px;
  font-weight: 800;
  color: #334155;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.retire-ssbps-courses-title::before,
.retire-ssbps-courses-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  background: #334155;
}

.retire-ssbps-courses-title::before {
  left: 0;
  width: 30%;
}

.retire-ssbps-courses-title::after {
  right: 0;
  width: 30%;
}

.retire-ssbps-courses {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.retire-ssbps-course-item {
  background-image: linear-gradient(to bottom right, #475569, #1e293b);
  border-radius: 40px;
  border: none;
  padding: 0;
  display: block;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  position: relative;
  box-shadow: 0px 5px 0px #0f172a;
}

.retire-ssbps-course-item::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.retire-ssbps-course-item::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.retire-ssbps-course-item:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 0px #0f172a;
}

.retire-ssbps-course-item:active {
  transform: translateY(2px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #1e293b, #475569);
}

.retire-ssbps-course-item--processing {
  background-image: none;
  background: #cbd5e1;
  box-shadow: 0px 5px 0px #a0aec0;
  cursor: not-allowed;
  pointer-events: none;
}

.retire-ssbps-course-item--processing::before,
.retire-ssbps-course-item--processing::after {
  display: none;
}

.retire-ssbps-course-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 28px;
  color: #ffffff;
}

.retire-ssbps-course-item--processing .retire-ssbps-course-content {
  color: #64748b;
}

.retire-ssbps-course-pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.retire-ssbps-course-label {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.95;
}

.retire-ssbps-course-price {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.retire-ssbps-course-item--processing .retire-ssbps-course-label,
.retire-ssbps-course-item--processing .retire-ssbps-course-price {
  color: #64748b;
}

.retire-ssbps-course-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
}

.retire-ssbps-course-status--processing {
  background: rgba(239,68,68,0.2);
  color: #dc2626;
}

.retire-ssbps-course-note {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.95;
}

.retire-ssbps-course-action {
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: 4px;
}

.retire-ssbps-empty {
  padding: 40px 24px;
  text-align: center;
  background: #ffffff;
  border-radius: 12px;
  border: 2px dashed #cbd5e1;
  font-size: 15px;
  color: #64748b;
  font-weight: 600;
}

@media (min-width: 600px) {
  .content--retire-ssbps::before {
    height: 160px;
  }

  .content--retire-ssbps h1 {
    font-size: 28px;
    padding: 50px 20px 90px;
  }

  .retire-ssbps-confirm {
    padding: 22px 26px;
  }

  .retire-ssbps-carrier-label {
    padding: 14px 24px;
  }

  .retire-ssbps-carrier-icon {
    width: 20px;
    height: 20px;
  }

  .retire-ssbps-courses-title {
    font-size: 19px;
  }

  .retire-ssbps-course-content {
    padding: 20px 32px;
  }

  .retire-ssbps-course-label {
    font-size: 0.95rem;
  }

  .retire-ssbps-course-price {
    font-size: 1.05rem;
  }

  .retire-ssbps-course-status {
    font-size: 0.9rem;
  }

  .retire-ssbps-course-action {
    font-size: 1.15rem;
  }

  .retire-ssbps-empty {
    padding: 48px 28px;
  }
}

@media (min-width: 768px) {
  .content--retire-ssbps::before {
    height: 180px;
  }

  .content--retire-ssbps h1 {
    font-size: 32px;
    padding: 55px 20px 100px;
  }

  .retire-ssbps-confirm {
    padding: 26px 30px;
  }

  .retire-ssbps-carrier-label {
    padding: 16px 28px;
  }

  .retire-ssbps-carrier-icon {
    width: 22px;
    height: 22px;
  }

  .retire-ssbps-courses-title {
    font-size: 20px;
  }

  .retire-ssbps-course-content {
    padding: 22px 36px;
  }

  .retire-ssbps-course-label {
    font-size: 1rem;
  }

  .retire-ssbps-course-price {
    font-size: 1.1rem;
  }

  .retire-ssbps-course-status {
    font-size: 0.95rem;
  }

  .retire-ssbps-course-action {
    font-size: 1.2rem;
  }

  .retire-ssbps-empty {
    padding: 56px 32px;
    font-size: 16px;
  }
}

/* ============================================================
   ‘Þ‰ïƒy[ƒWidocomo / d•¥‚¢j
   ============================================================ */

.content--retire-docomo {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--retire-docomo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #b30000 0%, #e60012 50%, #ff3333 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--retire-docomo h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.retire-docomo-container {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.retire-docomo-confirm {
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #e60012;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.8;
  color: #334155;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
}

.retire-docomo-carrier-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #e60012 0%, #ff3333 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 10px;
  margin-bottom: 16px;
}

.retire-docomo-carrier-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.retire-docomo-courses-title {
  font-size: 18px;
  font-weight: 800;
  color: #e60012;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.retire-docomo-courses-title::before,
.retire-docomo-courses-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  background: #e60012;
}

.retire-docomo-courses-title::before {
  left: 0;
  width: 30%;
}

.retire-docomo-courses-title::after {
  right: 0;
  width: 30%;
}

.retire-docomo-courses {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.retire-docomo-courses form {
  display: none;
}

.retire-docomo-course-item {
  background-image: linear-gradient(to bottom right, #ff6b6b, #e60012);
  border-radius: 40px;
  border: none;
  padding: 0;
  display: block;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  position: relative;
  box-shadow: 0px 5px 0px #b30000;
}

.retire-docomo-course-item::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.retire-docomo-course-item::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-radius: 40px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.retire-docomo-course-item:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 0px #b30000;
}

.retire-docomo-course-item:active {
  transform: translateY(2px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #e60012, #ff6b6b);
}

.retire-docomo-course-item--processing {
  background-image: none;
  background: #cbd5e1;
  box-shadow: 0px 5px 0px #a0aec0;
  cursor: not-allowed;
  pointer-events: none;
}

.retire-docomo-course-item--processing::before,
.retire-docomo-course-item--processing::after {
  display: none;
}

.retire-docomo-course-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 28px;
  color: #ffffff;
}

.retire-docomo-course-item--processing .retire-docomo-course-content {
  color: #64748b;
}

.retire-docomo-course-pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.retire-docomo-course-free,
.retire-docomo-course-trial,
.retire-docomo-course-price {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.retire-docomo-course-next {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.95;
}

.retire-docomo-course-cancel-note {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.95;
}

.retire-docomo-course-item--processing .retire-docomo-course-free,
.retire-docomo-course-item--processing .retire-docomo-course-trial,
.retire-docomo-course-item--processing .retire-docomo-course-price,
.retire-docomo-course-item--processing .retire-docomo-course-next,
.retire-docomo-course-item--processing .retire-docomo-course-cancel-note {
  color: #64748b;
}

.retire-docomo-course-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
}

.retire-docomo-course-status--processing {
  background: rgba(239,68,68,0.2);
  color: #dc2626;
}

.retire-docomo-course-note {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.95;
}

.retire-docomo-course-action {
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: 4px;
}

.retire-docomo-empty {
  padding: 40px 24px;
  text-align: center;
  background: #ffffff;
  border-radius: 12px;
  border: 2px dashed #cbd5e1;
  font-size: 15px;
  color: #64748b;
  font-weight: 600;
}

@media (min-width: 600px) {
  .content--retire-docomo::before {
    height: 160px;
  }

  .content--retire-docomo h1 {
    font-size: 28px;
  }

  .retire-docomo-confirm {
    padding: 22px 26px;
  }

  .retire-docomo-carrier-label {
    padding: 14px 24px;
  }

  .retire-docomo-carrier-icon {
    width: 20px;
    height: 20px;
  }

  .retire-docomo-courses-title {
    font-size: 19px;
  }

  .retire-docomo-course-content {
    padding: 20px 32px;
  }

  .retire-docomo-course-free,
  .retire-docomo-course-trial,
  .retire-docomo-course-price {
    font-size: 1.05rem;
  }

  .retire-docomo-course-next {
    font-size: 0.85rem;
  }

  .retire-docomo-course-status {
    font-size: 0.9rem;
  }

  .retire-docomo-course-action {
    font-size: 1.15rem;
  }

  .retire-docomo-empty {
    padding: 48px 28px;
  }
}

@media (min-width: 768px) {
  .content--retire-docomo::before {
    height: 180px;
  }

  .content--retire-docomo h1 {
    font-size: 32px;
  }

  .retire-docomo-confirm {
    padding: 26px 30px;
  }

  .retire-docomo-carrier-label {
    padding: 16px 28px;
  }

  .retire-docomo-carrier-icon {
    width: 22px;
    height: 22px;
  }

  .retire-docomo-courses-title {
    font-size: 20px;
  }

  .retire-docomo-course-content {
    padding: 22px 36px;
  }

  .retire-docomo-course-free,
  .retire-docomo-course-trial,
  .retire-docomo-course-price {
    font-size: 1.1rem;
  }

  .retire-docomo-course-next {
    font-size: 0.9rem;
  }

  .retire-docomo-course-status {
    font-size: 0.95rem;
  }

  .retire-docomo-course-action {
    font-size: 1.2rem;
  }

  .retire-docomo-empty {
    padding: 56px 32px;
    font-size: 16px;
  }
}

/* ============================================================
   ƒƒOƒCƒ“î•ñ•\Ž¦ƒy[ƒW
   ============================================================ */

.content--login-info {
  background: #f8fafc !important;
  min-height: 100vh;
  position: relative;
}

.content--login-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, #1a5aac 0%, #2563eb 50%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.content--login-info h1 {
  font-size: 24px;
  font-weight: 800;
  padding: 45px 20px 80px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.login-info-container {
  max-width: 580px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.login-info-warning {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #92400e;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(245,158,11,0.15);
}

.login-info-warning-icon {
  width: 24px;
  height: 24px;
  color: #f59e0b;
  flex-shrink: 0;
}

.login-info-card {
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #2563eb;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(37,99,235,0.12);
}

.login-info-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e2e8f0;
}

.login-info-icon {
  width: 24px;
  height: 24px;
  color: #2563eb;
  flex-shrink: 0;
}

.login-info-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-info-label {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.login-info-value {
  padding: 16px 20px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  color: #1e293b;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: 'Courier New', monospace;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiƒ^ƒuƒŒƒbƒgj */
@media (min-width: 768px) {
  .content--login-info h1 {
    font-size: 28px;
    padding: 50px 20px 90px;
  }

  .login-info-warning {
    padding: 18px 24px;
    font-size: 15px;
  }

  .login-info-warning-icon {
    width: 26px;
    height: 26px;
  }

  .login-info-card {
    padding: 32px 28px;
  }

  .login-info-card-title {
    font-size: 19px;
  }

  .login-info-icon {
    width: 26px;
    height: 26px;
  }

  .login-info-label {
    font-size: 14px;
  }

  .login-info-value {
    padding: 18px 22px;
    font-size: 20px;
  }
}

/* ƒŒƒXƒ|ƒ“ƒVƒuiPCj */
@media (min-width: 1024px) {
  .content--login-info h1 {
    font-size: 32px;
    padding: 55px 20px 100px;
  }

  .login-info-warning {
    padding: 20px 28px;
    font-size: 16px;
  }

  .login-info-warning-icon {
    width: 28px;
    height: 28px;
  }

  .login-info-card {
    padding: 36px 32px;
  }

  .login-info-card-title {
    font-size: 20px;
  }

  .login-info-icon {
    width: 28px;
    height: 28px;
  }

  .login-info-label {
    font-size: 15px;
  }

  .login-info-value {
    padding: 20px 24px;
    font-size: 22px;
  }
}
