@charset "utf-8";
.link-effect {
    display: inline-block;
/*    color: #3b82f6; text-blue-500 */
    text-decoration: none;
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.link-effect:hover {
    color: #1e40af; /* text-blue-700 */
}

.link-effect:active {
    color: #ef4444; /* text-red-500 */
    transform: scale(0.95);
}
.ripple-effect {
    position: absolute;
    background: rgba(255, 0, 0, 0.3); /* 赤色の半透明 */
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

//////////////////////////////////////////
// 重要
//////////////////////////////////////////
.boshi-text-base {
  font-size: 1rem; /* 16px */
}

.boshi-text-message {
  font-size: 1rem; /* 16px */
}

.boshi-text-xl {
  font-size: 1.125rem; /* 18px */
}

.boshi-text-sm {
  font-size: 0.875rem; /* 14px */
}

.boshi-text-title {
  font-size: 1.25rem; /* 24px */
}
