/*
Theme Name: Hibou Busters
Theme URI: https://kotonoha.co.jp
Author: Kotonoha Inc.
Author URI: https://kotonoha.co.jp
Description: 誹謗中傷バスターズ専用のサービスサイトテーマ。モニタリング・証拠保存・法的対応をワンストップで提供するサービスのためのカスタムテーマです。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hibou-busters
Tags: custom, business, corporate, one-page
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #111827;
    background-color: #ffffff;
    line-height: 1.6;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 50;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #f3f4f6;
}

.site-header .header-container {
    position: relative;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .header-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 0 2rem;
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 56px;
    width: auto;
}

/* Navigation */
.main-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    color: #4b5563;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #FBAF17;
}

.nav-button {
    background-color: #000000;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s;
}

.nav-button:hover {
    background-color: #FBAF17;
}

.login-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.875rem;
}

.login-link:hover {
    color: #FBAF17;
}

.mobile-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none;
    }
}

/* Main Content */
main {
    padding-top: 80px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 66.666667%;
    height: 100%;
    background-color: #FBAF17;
    transform: skewX(-20deg) translateX(33.333333%);
    opacity: 0.9;
    z-index: 0;
}

.hero-bg-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: skewX(-20deg) translateX(50%);
    z-index: 0;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .hero-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 0 2rem;
    }
}

.hero-content {
    color: #ffffff;
}

.hero-tagline {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #FBAF17;
}

@media (min-width: 768px) {
    .hero-tagline {
        font-size: 1.25rem;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-accent {
    color: #FBAF17;
}

.hero-description {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.75;
}

/* バナーアニメーション */
.hero-cta {
    animation: pulse-glow 2s ease-in-out infinite;
    position: relative;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 20px 40px -10px rgba(251, 175, 23, 0.4);
    }
    50% {
        box-shadow: 0 25px 50px -10px rgba(251, 175, 23, 0.6);
    }
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.animate-bounce-icon {
    animation: bounce-icon 2s ease-in-out infinite;
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-column-single {
    padding-top: 4rem;
}

.section-white {
    background-color: #ffffff;
}

.section-gray {
    background-color: #f9fafb;
}

.section-black {
    background-color: #000000;
    color: #ffffff;
}

.section-yellow {
    background-color: #FBAF17;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.section-title-wrapper {
    margin-bottom: 3rem;
    border-left: 8px solid #FBAF17;
    padding-left: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.section-number {
    font-size: 3.75rem;
    font-weight: 900;
    color: #e5e7eb;
}

@media (max-width: 767px) {
    .section-number {
        display: none;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Page header styles */
.page-header .section-title {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .page-header .section-title {
        font-size: 2.25rem;
    }
}

.page-header .section-subtitle {
    color: #FBAF17;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Utility Classes */
.text-yellow {
    color: #FBAF17;
}

.bg-yellow {
    background-color: #FBAF17;
}

.bg-black {
    background-color: #000000;
}

.text-white {
    color: #ffffff;
}

.text-gray {
    color: #6b7280;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

/* Footer */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid #1f2937;
}

.footer-main-logo {
    filter: brightness(0) invert(1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .footer-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        padding: 0 2rem;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo .logo {
    height: 64px;
    width: auto;
}

.footer-logo img {
    height: 64px;
    width: auto;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FBAF17;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-list li {
    margin: 0;
}

.footer-nav-list a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-nav-list a:hover {
    color: #FBAF17;
}

.footer-company-info {
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-company-info {
        text-align: left;
    }
}

.footer-company-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-address {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-tel {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-tel a {
    color: #FBAF17;
    text-decoration: none;
}

.footer-tel a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-copyright {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
}

/* Page Header Styles */
.page-header {
    padding: 4rem 0 2rem;
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #FBAF17;
    box-shadow: 0 0 0 3px rgba(251, 175, 23, 0.1);
}

button[type="submit"] {
    transition: all 0.2s;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Card Styles */
.card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
}

.badge-yellow {
    background-color: #FBAF17;
    color: #000000;
}

.badge-gray {
    background-color: #f3f4f6;
    color: #374151;
}

/* Line Clamp Utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive Grid */
@media (max-width: 767px) {
    .grid {
        grid-template-columns: 1fr;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

/* Prose Styles for Content - WordPress Post Content */
.prose {
    color: #374151;
    line-height: 1.75;
    font-size: 1rem;
}

/* Paragraphs */
.prose p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

/* Headings */
.prose h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
    line-height: 1.3;
    border-bottom: 3px solid #FBAF17;
    padding-bottom: 0.5rem;
}

.prose h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
    line-height: 1.4;
    border-bottom: 2px solid #FBAF17;
    padding-bottom: 0.5rem;
}

.prose h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #111827;
    line-height: 1.4;
}

.prose h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #111827;
    line-height: 1.4;
}

.prose h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #111827;
    line-height: 1.4;
}

.prose h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: #111827;
    line-height: 1.4;
}

/* Lists */
.prose ul,
.prose ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    line-height: 1.8;
}

.prose ul {
    list-style-type: disc;
}

.prose ol {
    list-style-type: decimal;
}

.prose li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.prose ul ul,
.prose ol ol,
.prose ul ol,
.prose ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}

.prose ul ul {
    list-style-type: circle;
}

.prose ul ul ul {
    list-style-type: square;
}

/* Links */
.prose a {
    color: #FBAF17;
    text-decoration: underline;
    transition: color 0.2s;
}

.prose a:hover {
    color: #000000;
    text-decoration: underline;
}

.prose a:focus {
    outline: 2px solid #FBAF17;
    outline-offset: 2px;
}

/* Text Formatting */
.prose strong {
    font-weight: 700;
    color: #111827;
}

.prose em {
    font-style: italic;
    color: #374151;
}

.prose strong em,
.prose em strong {
    font-weight: 700;
    font-style: italic;
}

/* Blockquotes */
.prose blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid #FBAF17;
    background-color: #f9fafb;
    color: #4b5563;
    font-style: italic;
    line-height: 1.8;
}

.prose blockquote p {
    margin-bottom: 0.75rem;
}

.prose blockquote p:last-child {
    margin-bottom: 0;
}

.prose blockquote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-style: normal;
    color: #6b7280;
}

.prose blockquote cite::before {
    content: "— ";
}

/* Code */
.prose code {
    background-color: #f3f4f6;
    color: #FBAF17;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
}

.prose pre {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 1.25rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    line-height: 1.6;
    font-size: 0.875rem;
    border-left: 4px solid #FBAF17;
}

.prose pre code {
    background-color: transparent;
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
    font-weight: normal;
}

/* Images */
.prose img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.prose img.alignleft {
    float: left;
    margin: 0.5rem 1.5rem 1rem 0;
}

.prose img.alignright {
    float: right;
    margin: 0.5rem 0 1rem 1.5rem;
}

.prose img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.prose figure {
    margin: 1.5rem 0;
}

.prose figcaption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    font-style: italic;
}

/* Tables */
.prose table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.875rem;
}

.prose thead {
    background-color: #FBAF17;
    color: #000000;
}

.prose th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #000000;
}

.prose td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.prose tbody tr:hover {
    background-color: #f9fafb;
}

.prose tbody tr:last-child td {
    border-bottom: none;
}

/* Horizontal Rule */
.prose hr {
    margin: 2rem 0;
    border: none;
    border-top: 2px solid #e5e7eb;
    background-color: transparent;
}

.prose hr::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #FBAF17;
    margin: 0 auto;
    margin-top: -2px;
}

/* WordPress Specific Classes */
.prose .wp-caption {
    max-width: 100%;
    margin: 1.5rem 0;
}

.prose .wp-caption-text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    font-style: italic;
}

.prose .alignleft {
    float: left;
    margin: 0.5rem 1.5rem 1rem 0;
}

.prose .alignright {
    float: right;
    margin: 0.5rem 0 1rem 1.5rem;
}

.prose .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.prose .alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.prose .alignfull {
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
}

/* Entry Content (WordPress Standard Class) */
.entry-content {
    color: #374151;
    line-height: 1.75;
    font-size: 1rem;
}

.entry-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
}

.entry-content h1 {
    font-size: 2rem;
    border-bottom: 3px solid #FBAF17;
    padding-bottom: 0.5rem;
}

.entry-content h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid #FBAF17;
    padding-bottom: 0.5rem;
}

.entry-content h3 {
    font-size: 1.5rem;
}

.entry-content h4 {
    font-size: 1.25rem;
}

.entry-content h5 {
    font-size: 1.125rem;
}

.entry-content h6 {
    font-size: 1rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    line-height: 1.8;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content a {
    color: #FBAF17;
    text-decoration: underline;
    transition: color 0.2s;
}

.entry-content a:hover {
    color: #000000;
}

.entry-content strong {
    font-weight: 700;
    color: #111827;
}

.entry-content em {
    font-style: italic;
}

.entry-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid #FBAF17;
    background-color: #f9fafb;
    color: #4b5563;
    font-style: italic;
}

.entry-content code {
    background-color: #f3f4f6;
    color: #FBAF17;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
}

.entry-content pre {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 1.25rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    border-left: 4px solid #FBAF17;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}

.entry-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.entry-content thead {
    background-color: #FBAF17;
    color: #000000;
}

.entry-content th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #000000;
}

.entry-content td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.entry-content hr {
    margin: 2rem 0;
    border: none;
    border-top: 2px solid #e5e7eb;
}

.entry-content hr::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #FBAF17;
    margin: 0 auto;
    margin-top: -2px;
}

/* Aspect Ratio */
.aspect-video {
    aspect-ratio: 16 / 9;
}

/* Transition Utilities */
.transition-colors {
    transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}

.transition-shadow {
    transition: box-shadow 0.2s;
}

/* Focus Styles */
.focus\:ring-2:focus {
    box-shadow: 0 0 0 3px rgba(251, 175, 23, 0.1);
}

.focus\:ring-yellow:focus {
    box-shadow: 0 0 0 3px rgba(251, 175, 23, 0.1);
}

.focus\:border-yellow:focus {
    border-color: #FBAF17;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
}

.mobile-menu-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #4b5563;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s, color 0.2s;
}

.mobile-menu-link:hover {
    background-color: #f9fafb;
    color: #FBAF17;
}


