@charset "utf-8";
/* CSS Document */

/* 既存の共通CSSを移植 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    scroll-behavior: smooth;
    background-color: #f3f4f6;
}
.font-prata {
    font-family: 'Prata', serif;
}
.section-title-base {
    font-family: "Cinzel", serif;
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    color: #374151;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .section-title-base {
        font-size: 4.5rem;
    }
}
.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 4rem;
}
.title-style-2 {
    text-align: center;
}
.bg-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fbcfe8' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* FAQ Accordion Styles */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding-top: 0;
    padding-bottom: 0;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 1rem;
    padding-bottom: 2rem;
    transition: max-height 0.5s ease-in, padding 0.5s ease-in;
}
.faq-item .faq-toggle-icon {
    transition: transform 0.3s ease-in-out;
}
.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

/* カスタムスタイル */
.category-tab {
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.category-tab.active {
    background-color: #ec4899; /* pink-500 */
    color: white;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
	
.faq-content{
    display: flex;
    gap: 0;
    flex-direction: column;
}

@media (min-width: 769px) {

.faq-content{
    gap: 2rem;
    flex-direction: row;
}
	
}
	
.faq-content.hidden {
    display: none;
}
.faq-content.visible {
    animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.faq-item {
    margin-bottom: 1rem; /* 項目間に間隔を設ける */
}

/* ヘッダーとフッターは既存ページのスタイルを模倣 */
.header {
    background-color: rgb(255 255 255 / 0.8);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.footer {
    background-color: rgb(31 41 55);
    padding: 60px 0 30px;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
}
.footer a {
    color: #a855f7;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
	


.pt-24 {
    padding-top: 4.8rem!important;
}

@media (max-width: 768px) {
.pt-24 {
    padding-top: 3.5rem!important;
}
}