/* ========================================
   パンくずリスト - 背景画像付き
======================================== */
.breadcrumb {
    margin-top: 80px;            /* ヘッダー分のマージンを追加 */
    max-width: 100%;
    max-height: 100%;
    width: 1200px;
    height: 200px;
    margin: 0px auto 0 auto;    /* 上マージンを追加して中央配置 */
    padding: 50px 0 0 0;         /* パンくずリストを見える位置に調整 */
    background-size: cover;      /* 画像を全体に表示 */
    background-position: center;
    background-repeat: no-repeat;
    background-image:url(../image/グループ\ 771.png) ;
    background-color: #e74c3c;   /* 赤背景色 */
    background-blend-mode: multiply;
    display: flex;
    position: relative;
    background-size: contain;
    justify-content: center;  /* 横方向の中央揃え（オプション） */
}

.breadcrumb .breadcrumb-nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb .breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    color: white;               /* 文字色を白に */
}

.breadcrumb .breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.7);  /* セパレータも白に */
    font-weight: normal;
}

.breadcrumb .breadcrumb-link {
    color: white;               /* リンクも白に */
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb .breadcrumb-link:hover {
    color: #fff;
    opacity: 0.8;
}

.breadcrumb .breadcrumb-current {
    color: white;               /* 現在のページも白に */
    font-weight: 600;
}

/* ======================================== ↑ ↑ ↑ パンくずリスト - 背景画像付き ======================================== */


.entry-bg {
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.entry-content h1 {
    font-size: 32px;
    font-weight: 900;
    color: #E83532;
    text-align: center;
    margin: 0;
    padding: 0;
    letter-spacing: 10px;
}

.entry-content h1::before {
    content: "";
    display: inline-block;        /* ←インラインにしてテキストの前に出す */
    width: 50px;                  /* 横棒の長さ */
    height: 6px;                  /* 線の太さ */
    background-color: #E83532;       /* 線の色 */
    margin-right: 8px;            /* 線と文字の間隔 */
    vertical-align: middle;       /* 線と文字の縦位置を揃える */
  }
  .entry-content h1::after {
    content: "";
    display: inline-block;        /* ←インラインにしてテキストの前に出す */
    width: 50px;                  /* 横棒の長さ */
    height: 6px;                  /* 線の太さ */
    background-color: #E83532;       /* 線の色 */
    margin-left: 8px;            /* 線と文字の間隔 */
    vertical-align: middle;       /* 線と文字の縦位置を揃える */
  }

/* ========================================
   entry-formセクション
======================================== */
.entry-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.entry-form h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

.flow {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #E83532;
    border-radius: 10px;
}

.flow-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
}

.flow h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

.flow-content h3 {
    font-size: 14px;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

.flow-content p {
    font-size: 14px;
    color: #333;
    text-align: center;
    margin: 0 auto 20px auto;
    padding: 0 20px;
    max-width: 400px;
}

.flow-content  p span.red {
    color: #E83532;
    font-weight: 800;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
    padding: 40px 20px;       /* 横に余白を持たせつつ背景を端まで見せる */
    text-align: center;
    background-color: #FFEDED;
    box-sizing: border-box;   /* padding込みで幅を計算 */
}



.faq .question {
    text-align: center;
    margin: 0;
    padding: 0;
    color: #E83532;
}

.faq ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    font-size: 12px;
    color: #333;
    text-align: left;
    padding: 0;
    list-style: none;  /* ←これで・を消す */
    max-width: 100%;
    width: 600px;
    height: 50px;
    margin: 0 auto;
    margin-bottom: 20px;
    font-weight: 600;
}

.faq ul li span.q {
    font-size: 16px;
    color: #E83532;
    font-weight: 800;
    margin-right: 10px;
}

/* FAQ項目の新しいスタイル */
.faq-item {
    display: block !important;
    width: 100% !important;
    max-width: 800px !important;
    margin: 0 auto 60px auto !important;
    background-color: #fff;
    overflow: hidden;
    height: auto !important;
    min-height: auto !important;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question .q {
    color: #E83532;
    font-weight: 800;
    margin-right: 10px;
    font-size: 16px;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    text-align: left;
}

.faq-toggle {
    background: none;
    color: #ADADAD;
    border: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 24px;
    font-weight: normal;
}

.faq-toggle:hover {
    color: #ADADAD;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 15px 20px 20px 20px;
    border-top: 1px solid #f0f0f0;
    background-color: #fafafa;
}

.faq-answer.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.faq-answer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #636770;
    text-align: left;
    padding: 0;
    max-width: none;
}

.faq-answer .a {
    color: #636770;
    font-weight: 800;
    margin-right: 10px;
    font-size: 16px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
        padding-top: 15px;
        padding-bottom: 20px;
    }
}

.container1 h3, .container2 h3 {
    text-align: center;
    text-decoration: underline solid #000 2px;
    text-underline-offset: 10px;
}

.container1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 1200px;
    height: 200px;
    margin: 0 auto;

    /* 白の透過を重ねた背景画像 */
    background: 
        linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), 
        url(../image/Ryusyita_20250520m_0048.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.container2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 1200px;
    height: 200px;
    margin: 0 auto;

    /* ピンク半透明レイヤーを重ねる */
    background: 
        linear-gradient(rgba(255, 149, 147, 0.5), rgba(255, 149, 147, 0.5)), 
        url(../image/Ryusyita_20250520m_0064.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.recruitment {
    margin: 0;
    padding: 0;
  }

.faq-cta-btn {
    text-align: center;
    display: block;
    margin-top: 20px; /* 必要に応じて調整 */
}

.faq-cta-btn img {
    width: 200px;
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.faq-cta-btn:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* recruitment セクション内の余白をなくす */
.recruitment .entry-content {
    margin: 0 !important;
    padding: 0 !important;
}

.recruitment .entry-content h1 {
    margin: 0 !important;
    padding: 0 !important;
}

.recruitment,
.recruitment * {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

.recruitment {
    margin: 0;
    padding: 0;
    display: flex;            
    flex-direction: column;
    align-items: center;      
    justify-content: center;  
    box-sizing: border-box;
}

.recruitment > .entry-content {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.recruitment .entry-content h1 {
    margin: 0;
    padding: 0;
    text-align: center; 
}



