@charset "UTF-8";
/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

.monitor-wrapper {
  width: 100%;
  max-width: 500px !important;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1200px;
}
@keyframes float {
  0%   { transform: translateY(0px)   rotateX(4deg) rotateY(-3deg); }
  50%  { transform: translateY(-20px) rotateX(8deg) rotateY(2deg); }
  100% { transform: translateY(0px)   rotateX(4deg) rotateY(-3deg); }
}
.floating-container {
  width: 100%;
  animation: float 6s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
.monitor-wrapper:hover .floating-container,
.monitor-wrapper:hover .floating-shadow {
  animation-play-state: paused;
}
.digital-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 80px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15,23,42,0.75) 0%, rgba(30,41,59,0.45) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top:    1px solid rgba(0,240,255,0.5);
  border-left:   1px solid rgba(0,240,255,0.5);
  border-right:  3px solid rgba(0,240,255,0.2);
  border-bottom: 5px solid rgba(0,240,255,0.15);
  box-shadow: -10px 20px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(0,240,255,0.05);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  width: 100%;
}
.digital-panel:hover {
  box-shadow: -10px 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(0,240,255,0.2), inset 0 0 30px rgba(0,240,255,0.15);
  border-color: rgba(0,240,255,0.6);
}
@keyframes glare {
  0%   { left: -100%; }
  15%  { left: 200%; }
  100% { left: 200%; }
}
.digital-panel::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: glare 6s infinite;
  pointer-events: none;
  border-radius: 28px;
  z-index: 20;
}
.scanlines {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 50%, rgba(0,240,255,0.05) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  opacity: 0.6;
  border-radius: 28px;
}
.panel-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,240,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,240,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.ui-dots {
  position: absolute;
  top: 20px; left: 24px;
  display: flex;
  gap: 8px;
  z-index: 1;
}
.ui-dots span { width: 13px; height: 13px; border-radius: 50%; }
.dot-red    { background: rgba(239,68,68,0.9);  box-shadow: 0 0 8px rgba(239,68,68,0.5); }
.dot-yellow { background: rgba(250,204,21,0.9); box-shadow: 0 0 8px rgba(250,204,21,0.5); }
.dot-green  { background: rgba(34,197,94,0.9);  box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.status-text {
  position: absolute;
  top: 22px; right: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #00F0FF;
  opacity: 0.5;
  letter-spacing: .14em;
  z-index: 1;
}
.deco-bits {
  position: absolute;
  top: 60px; left: 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.3;
  color: rgba(0,240,255,0.18);
  z-index: 0;
  pointer-events: none;
}
.deco-cross {
  position: absolute;
  bottom: 44px; right: 48px;
  color: rgba(255,0,127,0.2);
  z-index: 0;
  pointer-events: none;
}
.logo-group {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.logo-sophia {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 60px) !important;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 0 10px rgba(0,240,255,0.5), 0 0 20px rgba(0,240,255,0.3);
}
.logo-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo-ai-badge {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: clamp(16px, 3vw, 28px) !important;
  color: #0a1628;
  background: #00F0FF;
  padding: 6px 16px;
  border-radius: 10px;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 20px rgba(0,240,255,0.4);
}
.logo-zine {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: clamp(18px, 3.5vw, 32px) !important;
  color: #FF007F;
  letter-spacing: .12em;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255,0,127,0.5), 0 0 20px rgba(255,0,127,0.3);
  display: flex;
  align-items: center;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.cursor-blink {
  display: inline-block;
  width: clamp(8px, 1.5vw, 14px) !important;
  height: clamp(16px, 3vw, 28px) !important;
  background: #FF007F;
  margin-left: 6px;
  vertical-align: middle;
  margin-top: -4px;
  animation: blink 1s step-end infinite;
  box-shadow: 0 0 10px rgba(255,0,127,0.5);
}
@keyframes shadow-pulse {
  0%   { transform: scale(1);   opacity: 0.6; filter: blur(20px); }
  50%  { transform: scale(0.7); opacity: 0.2; filter: blur(25px); }
  100% { transform: scale(1);   opacity: 0.6; filter: blur(20px); }
}
.floating-shadow {
  width: 60%;
  max-width: 480px;
  height: 28px;
  background: #00F0FF;
  border-radius: 100%;
  margin-top: 32px;
  animation: shadow-pulse 6s ease-in-out infinite;
  pointer-events: none;
}
.tagline {
  margin-top: 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(0,240,255,0.4);
  letter-spacing: .18em;
  text-transform: uppercase;
}
@media (prefers-reduced-motion: reduce) {
  .floating-container, .floating-shadow, .digital-panel::before, .cursor-blink {
    animation: none !important;
    transform: none !important;
  }
}
@media (max-width: 600px) {
  .digital-panel { padding: 44px 28px; border-radius: 20px; }
  .deco-bits, .deco-cross { display: none; }
  .logo-bottom { gap: 12px; }
}

/************************************
** カード型レイアウト
************************************/
#wrapper {
  background: #f0f4f8 !important;
}
.a-wrap {
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  border: 1px solid #e2e8f0 !important;
  background: #ffffff !important;
}
.a-wrap:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14) !important;
}
.entry-card-title {
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  color: #0f172a !important;
}
.card-thumb img {
  transition: transform 0.3s !important;
}
.a-wrap:hover .card-thumb img {
  transform: scale(1.05) !important;
}
.cat-label {
  border-radius: 4px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  background: #3b82f6 !important;
  color: #ffffff !important;
}

/************************************
** レスポンシブ
************************************/
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 834px){
  .a-wrap { border-radius: 8px !important; }
}
@media screen and (max-width: 480px){
}