/*

Theme Name: 生活保護からの起業
Theme URI: https://seiho2kigyou.ak2.jp
Author: seiho2kigyou
Author URI: https://seiho2kigyou.ak2.jp
Description: 生活保護からの起業を支援するコミュニティサイト用テーマ
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: mytheme-dev
License: GPL-2.0-or-later
*/

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

body {
    font-family: 'Helvetica Neue', 'Arial', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    /* background-color: #fcfcfc; */
    background: linear-gradient(135deg, #4a6fa1 0%, #6ca3d8 100%);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239bc3eb' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    /* background: white; */
    background: linear-gradient(0deg, #fcfcfd 0%, #ffffff 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: relative;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-text {
    flex: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
}

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

.site-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 4px;
}

/* Global Navigation Menu */
.site-nav {
    display: block;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
}

.site-nav li {
    margin: 0;
    padding: 0;
}

.site-nav a {
    display: block;
    padding: 8px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.site-nav a:hover {
    color: #4a6fa1;
    background-color: #f3f4f6;
}

.site-nav .current-menu-item a,
.site-nav .current_page_item a {
    color: #4a6fa1;
    background-color: #e9f2fc;
}

.header-cta {
    display: none !important;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: #f3f4f6;
}

.mobile-menu-toggle .hamburger {
    width: 20px;
    height: 2px;
    background-color: #374151;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .hamburger::before,
.mobile-menu-toggle .hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #374151;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .hamburger::before {
    top: -6px;
}

.mobile-menu-toggle .hamburger::after {
    bottom: -6px;
}

/* Mobile Menu Toggle Active State */
.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}



/* Main Content */

.site-main {
    /* min-height: calc(100vh - 317px); */
    min-height: calc(100vh - 248px);
    border: 1px solid #cccccc;
    margin: 20px auto;
    max-width: 1220px;
    background: #fcfcfe;
    border-radius: 4px;
}

.home .site-main {
    max-width: 100% !important;
    border: none;
}


.hero-section {
    background: linear-gradient(135deg, #4a6fa1 0%, #6ca3d8 100%);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239bc3eb' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: #444444;
}

.hero-content p {
    color: #365d91;
    margin-bottom: 40px !important;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5rem;
}

.hero-btn {
    background: #00b900;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-btn:hover {
    background: #00ad00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 48px;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 24px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    background-color: #e9f2fc;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-circle i {
    color: #4a6fa1;
    font-size: 24px;
}

.btn-primary {
    background-color: #4a6fa1;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3d5d87;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.content-area {
    background: white;
}

.content-area .section:nth-child(even) {
    background: #f9fafb;
}

.site-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 32px 0;
    text-align: center;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.footer-info {
    text-align: center;
}

.footer-copyright {
    text-align: center;
}

.site-footer h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-title {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
    display: inline;
}

.footer-description {
    font-size: 0.875rem;
    /* color: #9ca3af; */
    color: #c2c7cf;
    display: inline;
}

img {
    max-width: 100%;
    height: auto;
}

.entry-content {
    /* max-width: 800px; */
    margin: 0 auto;
    padding: 0 20px;
}

.entry-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.entry-title {
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 16px;
    padding: 2px 10px;
    background: #4a6fa1;
    color: #ffffff;
}

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

.entry-title a:hover {
    color: #4a6fa1;
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 32px 0;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #4a6fa1;
    color: white;
}


/* .inline-flex {
    display: inline-flex;
}

.object-cover {
    object-fit: cover;
}

.italic {
    font-style: italic;
}

.font-medium {
    font-weight: 500;
}

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

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-duration-300 {
    transition-duration: 300ms;
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate-z)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:-translate-y-1:hover {
    --tw-translate-y: -4px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate-z)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
} */

a[target="_blank"] {
    text-decoration: none;
}

a[target="_blank"]:hover {
    text-decoration: underline;
}

.fp-community-benefits {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
}

.fp-benefit-item {
    background-color: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.fp-benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.fp-benefit-description {
    color: #6b7280;
}

.fp-community-description {
    margin-top: 3rem;
    text-align: center;
}

.fp-main-description {
    font-size: 1.125rem;
    color: #374151;
    /* max-width: 48rem; */
    margin: 0 auto;
}

.fp-note-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 10px;
}

/* Front Page Community Image */
.fp-community-image {
    text-align: center;
    margin: 2rem 0;
}

.fp-community-image-content {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.fp-join-container {
    max-width: 64rem;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.fp-join-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.fp-qr-code-area {
    display: flex;
    width: 33.333333%;
    margin-bottom: 0;
    justify-content: space-around;
}

.fp-qr-frame {
    border: 4px solid #dbeafe;
    border-radius: 0.75rem;
    padding: 0.5rem;
}

.fp-qr-image {
    width: 12rem;
    height: 12rem;
    object-fit: cover;
}

.fp-join-info {
    width: 66.666667%;
    padding-left: 2rem;
}

.fp-join-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.fp-join-description {
    margin-bottom: 1.5rem;
    color: #6b7280;
}


.fp-vision-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.fp-vision-image-area {
    width: 50%;
    margin-bottom: 0;
}

.fp-vision-image {
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
}

.fp-vision-content {
    width: 50%;
    /* padding-left: 3rem; */
}

.fp-vision-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.fp-vision-number {
    background-color: #dbeafe;
    color: #1d4ed8;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.fp-vision-item-description {
    color: #6b7280;
    margin-left: 2.75rem;
}

.fp-guidelines-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.fp-guidelines-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.fp-guidelines-description {
    margin-bottom: 1rem;
    color: #6b7280;
}

.fp-guidelines-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #374151;
    margin-top: 10px;
}

.fp-guidelines-item {
    display: flex;
    align-items: flex-start;
}

.fp-guidelines-icon {
    width: 1rem;
    height: 1rem;
    background-color: #ef4444;
    border-radius: 50%;
    margin-top: 0.25rem;
    margin-right: 0.75rem;
    position: relative;
}

.fp-guidelines-icon::before {
    content: "×";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.fp-guidelines-text {
    flex: 1;
}

.fp-guidelines-note {
    font-size: 0.875rem;
    color: #6b7280;
}

.fp-testimonials-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
}

.fp-testimonial-card {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 20px;
}

.fp-testimonial-text {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 1rem;
}

.fp-testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.fp-author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #dbeafe;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.fp-author-avatar i {
    color: #3b82f6;
}

.fp-author-info {
    flex: 1;
}

.fp-author-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.fp-author-role {
    font-size: 0.875rem;
    color: #6b7280;
}

.fp-cta-content {
    text-align: center;
}

.fp-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.fp-cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.fp-cta-button {
    background-color: white;
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-top: 40px;
    background: #00b900;
}

.fp-cta-button:hover {
    background: #00ad00;
    transform: translateY(-4px);
}

.fp-cta-button i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.fp-icon-circle {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #00C6FF 0%, #025DCC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.fp-join-button {
    background-color: #00b900;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.fp-join-button:hover {
    background: #00ad00;
}


.fp-join-button i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.fp-vision-item {
    margin-bottom: 2rem;
}

.fp-vision-item:last-child {
    margin-bottom: 0;
}

/* Additional Background Classes */
#about {
    background-color: white;
}

#join {
    background-color: #f9fafb;
}

#vision {
    background-color: white;
}

#guidelines {
    background-color: #f9fafb;
}

#testimonials {
    background-color: white;
}

#target-audience {
    background-color: white;
}

/* Front Page Target Audience Section Classes */
.fp-target-audience-list {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f9fafb;
    border-radius: 20px;
    padding: 10px;
}

.fp-target-item {
    display: flex;
    align-items: center;
    padding: 10px;
    /* background-color: #f9fafb; */
    /* border-radius: 0.5rem; */
}

.fp-target-icon {
    margin-right: 1rem;
    color: #10b981;
    font-size: 1.25rem;
}

.fp-target-text {
    margin: 0;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
}

#cta {
    padding: 4rem 0;
}

.hero-pattern {
    background: linear-gradient(135deg, #4a6fa1 0%, #6ca3d8 100%);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239bc3eb' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    padding: 80px 0;
    text-align: center;
}

div#respond {
    display: none;
}

article {
    width: 1200px;
    border: 1px solid #ffffff;
    margin: 5px;
    padding: 5px;
}

input[type=text], input[type=password], input[type=date], input[type=datetime], input[type=email], input[type=number], input[type=search], input[type=tel], input[type=time], input[type=url], textarea, select, .search-edit {
    font-size: inherit;
    width: 100%;
    padding: 8px;
    margin-bottom: 2px;
}

input[type=submit], #bbp_reply_submit, .bp-login-widget-register-link a {
    padding: 11px;
    width: 100%;
    margin: 0;
    cursor: pointer;
}

#bbp_search_submit {
    padding: 5px 10px;
    width: auto;
}

#bbpress-forums #bbp-search-form div {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
    align-items: flex-start;
}

.fp-guidelines-title {
    display: block !important;
    /* margin-top: 40px; */
}

.link-button {
	text-align: center;
    margin: 40px;
}


/* .link-button a {
	display:inline-box;
    padding: 16px 40px;
    margin: 0px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(116, 185, 255, 0.4);
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    border-radius: 30px;
    font-weight: 600;
}

.link-button a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.link-button a:hover {
    position: relative;
    top: -2px;
    box-shadow: 0 18px 40px #74b9ff80;
} */



.link-button a {
    background-color: white;
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    /* background: #00b900; */
}

.link-button a:hover {
    /* background-color: #008c00; */
    transform: translateY(-4px);
}





article ul {
    margin: 10px 0px;
}

article li {
    margin-left: 20px;
}

.entry-content p {
    margin: 10px 0px;
    line-height: 1.7;
}

article h2 {
    display: block !important;
    margin-top: 20px;
    font-size: 1.6rem;
    border-bottom: 3px solid #4a6fa1;
}

article h3 {
    display: block !important;
    margin-top: 20px;
    font-size: 1.4rem;
    border-bottom: 1px solid #4a6fa1;
}

div.bbp-breadcrumb {
    display: none;
}

p.nocomments {
    width: 1200px;
    margin: auto;
    padding: 0 30px;
}

.postid-746 p.nocomments {
    display: none;
}

.join-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ui-icon-triangle-1-e,
.ui-icon-triangle-1-s {
    scale: 120%;
    margin-right: 10px;
}

p.arconix-faq-term-description {
    padding: 10px 0px;
    line-height: 2;
}

.ui-accordion .ui-accordion-header {
    padding: 4px;
}

.ui-accordion .ui-accordion-header:hover {
    background-color: #dbebfa;
}

/* 404 Error Page Styles */
.error-404-page {
    /* padding: 4rem 0; */
    /* text-align: center; */
}

.error-404-content {
    /* max-width: 600px; */
    /* margin: 0 auto; */
}

.error-404-title {
    margin: 20px auto;
    /* font-size: 2.5rem; */
    /* color: #374151; */
    /* margin-bottom: 2rem; */
    /* font-weight: bold; */
}

.error-404-message {
    margin-bottom: 3rem;
}

@media (max-width: 1200px) {
    .container {
        width: calc(100% - 20px);
    }

    .site-main {
        max-width: 100%;
    }

    article {
        width: calc(100% - 10px);
    }
    p.nocomments {
        width: calc(100% - 20px);       
    }
}

@media (540px < width <= 940px) {
    .site-title {
        font-size: 1.7rem;
    }

    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 1.7rem;
    }
    
    .hero-content p {
        font-size: 1.25rem;
    }

    .join-container {
        max-width: 940px;
    }
    .hero-pattern {
        padding: 60px 0;
    }
}

@media (width < 540px) {
    .site-title {
        font-size: 1.7rem;
    }

    .site-description {
        font-size: 0.75rem;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-content h2 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
    .join-container {
        max-width: 539px;
    }
    .hero-pattern {
        padding: 40px 0;
    }
    .fp-cta-title {
        font-size: 1.5rem;
    }
    .fp-cta-description {
        font-size: 1rem;
    }
}

@media (width < 940px) {
    .header-content {
        flex-direction: row;
        gap: 16px;
        text-align: left;
    }

    .site-nav {
        display: none;
    }

    .site-nav.mobile-open {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 20px;
        border-top: 1px solid #e5e7eb;
        width: 100%;
    }
    
    .site-nav.mobile-open ul {
        flex-direction: column;
        /* gap: 8px; */
    }
    
    .site-nav.mobile-open li {
        width: 100%;
        text-align: center;
        background: linear-gradient(0deg, #fcfcfd 0%, #ffffff 100%);
    }

    .site-nav.mobile-open a {
        /* padding: 12px 20px; */
        /* text-align: left; */
        /* border-radius: 8px; */
        padding: 10px 0px;
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: block !important;
        visibility: visible !important;
    }

    .fp-community-benefits {
        grid-template-columns: 1fr;
    }

    .fp-vision-layout {
        flex-direction: column;
    }

    .fp-vision-image-area {
        width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }

    .fp-vision-content {
        width: 100%;
    }

    .header-actions {
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }    
    .mobile-menu-toggle {
        display: none;
    }
}

@media (width < 768px) {
    .fp-join-layout {
        flex-direction: column;
    }

    .fp-qr-code-area {
        width: 100%;
        margin-bottom: 1.5rem;
        justify-content: center;
    }

    .fp-join-info {
        width: 100%;
    }

    .fp-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .fp-join-button {
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-title,
    .footer-description {
        display: block;
    }

    .entry-content {
        padding: 0px !important;
    }
}

.post-password-required .entry-content p:nth-of-type(2) {
    display: none;

}

p.nocomments {
    display: none;
}

.entry-form-content,
.nsl-container-block {
    max-width: 270px;
    margin: 0 auto;
    text-align: center;
}

.entry-content form {
    margin: 30px 0px;
}

.post-password-form {
    max-width: 400px;
}

.entry-content button {
    padding: 6px 20px;
}


.post-password-form {
    width: 100%;
    margin: 30px auto !important;
}

h2.simple {
    border-bottom: none;
    font-size: large;
}

.entry-form-content-line {
    margin-top: 10px;
}

.entry-form-content-line > div {
    white-space: nowrap;
    text-align: left
}

.thumbnail img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail img:hover {
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.single article {
    margin: 0 auto;
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    line-height: 1.8;
    color: #2d3748;
    background: #ffffff;
}


.single article .entry-thumbnail {
    margin-top: 10px;
    text-align: center;
}

.single article h1#typewriter-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #4299e1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.single article h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.single article p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    /* text-align: justify; */
    color: #4a5568;
}

.single article ul {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.post-template-default article li {
    margin-bottom: 4px;
    padding-left: 10px;
    list-style: disc;
}

/*
.post-template-default article li {
    margin-bottom: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #48bb78;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.post-template-default article li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    background: #f0fff4;
}

.post-template-default article li::before {
    content: "✓";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #48bb78;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}
*/

.post-template-default .entry-content p {
    margin: 20px 0px !important;
}

.single article li strong {
    display: block;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* 強調テキスト */
.single article em {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-style: normal;
    font-weight: 500;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .single article {
        padding: 2rem 1rem;
    }
    
    .single article h1 {
        font-size: 2rem;
    }
    
    .single article h2 {
        font-size: 1.5rem;
    }
    
    .single article p {
        font-size: 1rem;
    }
    
    .single article li {
        /* padding: 1rem; */
    }
}

/* スクロールアニメーション */
.single article {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}


/* アイキャッチ画像のスタイリング */
.single article .entry-thumbnail {
    margin: 20px 0;
    text-align: center;
}

.single article .entry-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.single article .entry-thumbnail img {
    border: 1px solid;
    border-color: #ffffff #cccccc #cccccc #ffffff;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.3);
}

.single article .entry-thumbnail img:hover {
    box-shadow: 0 7px 24px rgba(0,0,0,0.3);
    transition: box-shadow 0.3s ease;
    margin-top: -1px;
    margin-bottom: 1px;
}

@media (width <= 940px) {
    .single article {
        padding: 0rem;
    }

    .single article h1 {
        font-size: 2rem;
        margin-top: 1rem;
    }

    .single article h2 {
        margin-top: 2rem;
        font-size: 1.5rem;
    }
    
    .single article p {
        font-size: 1rem;
    }
    
    .single article li {
        /* padding: 0.5rem 1.5rem; */
    }
}

@media (width <= 540px) {
    .single article h1 {
        font-size: 1.5rem;
        margin-top: 1rem;
    }

    .single article h2 {
        font-size: 1.2rem;
    }
    
    .single article p {
        font-size: 1rem;
    }
    .single article li {
        /* margin: 1rem 0rem; */
    }

}

/* 投稿日・更新日表示のスタイル */
.post-date-info {
    margin: 1rem 0;
    padding: 0.8rem;
    background-color: #f8f9fa;
    border-left: 4px solid #007cba;
    border-radius: 0 4px 4px 0;
}

.post-date-info .post-date,
.post-date-info .post-modified-date {
    display: inline-block;
    margin-right: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.post-date-info .post-date i,
.post-date-info .post-modified-date i {
    margin-right: 0.5rem;
    color: #007cba;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .post-date-info .post-date,
    .post-date-info .post-modified-date {
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

p.supplement {
    background: #eeeeee;
    margin: 30px 0px;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Content Viewsプラグイン用 */
.pt-cv-thumbnail {
  border-radius: 6px;
}


.post table {
    border: 1px solid #aaaaaa;
    border-collapse: collapse;
}

.post th {
    border: 1px solid #aaaaaa;
    background: #dddddd;
    padding: 6px 14px;
}

.post td {
    border: 1px solid #aaaaaa;
    padding: 6px 14px;
}

.wp-block-code {
    background: #eeeeee;
    padding: 14px;
}

.pt-cv-meta-fields > *:nth-child(n+2) {
    display: none;
}