@charset "UTF-8";

/* ============================================================
   下層ページ共通コンポーネント (about / services / works / recruit / contact)
   既存のデザイントークンを踏襲：
   アクセント linear-gradient(90deg,#EA5504 0%,#FABE00 100%) / 角丸 / 黒ピル見出し
   ============================================================ */

/* ---- パンくず ---- */
.breadcrumb {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 0 0;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.breadcrumb li {
    color: #999;
}

.breadcrumb li a {
    color: #666;
    transition: color 0.25s ease;
}

.breadcrumb li a:hover {
    color: #EA5504;
}

.breadcrumb li + li:before {
    content: "›";
    margin: 0 10px;
    color: #ccc;
}

/* ---- 結論ファーストのリード文 ---- */
.lead_box {
    background: linear-gradient(0deg, #fff 0%, #f7f7f7 100%);
    border-left: 5px solid #EA5504;
    border-radius: 12px;
    padding: 30px 34px;
    margin-bottom: 50px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
}

.lead_box p {
    font-size: 1.6rem;
    line-height: 32px;
    font-weight: 600;
    color: #222;
}

/* ---- 下層セクション見出し ---- */
.sec_ttl {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 64px 0 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.sec_ttl:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #EA5504 0%, #FABE00 100%);
}

.sec_ttl small {
    display: block;
    font-size: 1.3rem;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: #EA5504;
    margin-bottom: 6px;
}

/* ---- 本文テキスト ---- */
.sec_text {
    font-size: 1.5rem;
    line-height: 32px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.sec_text a {
    color: #EA5504;
    font-weight: 600;
    border-bottom: 1px solid #EA5504;
}

/* ---- 課題リスト ---- */
.problem_list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0 10px;
}

.problem_list li {
    width: calc(50% - 8px);
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 24px;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 24px;
    color: #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: flex-start;
}

.problem_list li:before {
    content: "✓";
    color: #EA5504;
    font-weight: 700;
    margin-right: 12px;
    font-size: 1.6rem;
    line-height: 24px;
}

/* ---- 特徴カード ---- */
.feature_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.feature_list li {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);
}

.feature_list li h3 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-left: 16px;
    border-left: 4px solid #EA5504;
}

.feature_list li p {
    font-size: 1.45rem;
    line-height: 28px;
    color: #555;
    font-weight: 500;
}

/* ---- 支援の流れ ---- */
.flow_list {
    counter-reset: flow;
    margin: 24px 0;
}

.flow_list li {
    position: relative;
    padding: 0 0 40px 74px;
}

.flow_list li:before {
    counter-increment: flow;
    content: counter(flow);
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background: linear-gradient(135deg, #EA5504 0%, #FABE00 100%);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 14px rgba(234, 85, 4, 0.2);
}

.flow_list li:after {
    content: "";
    position: absolute;
    left: 23px;
    top: 54px;
    bottom: 0;
    width: 2px;
    background: #eee;
}

.flow_list li:last-child {
    padding-bottom: 0;
}

.flow_list li:last-child:after {
    display: none;
}

.flow_list li h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 8px;
    padding-top: 10px;
}

.flow_list li p {
    font-size: 1.4rem;
    line-height: 26px;
    color: #555;
    font-weight: 500;
}

/* ---- FAQ（アコーディオン・JSなし） ---- */
.faq_list {
    margin: 24px 0;
}

.faq_list details {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 14px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq_list summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 60px 22px 58px;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 26px;
    position: relative;
}

.faq_list summary::-webkit-details-marker {
    display: none;
}

.faq_list summary:before {
    content: "Q";
    position: absolute;
    left: 24px;
    top: 20px;
    color: #EA5504;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
}

.faq_list summary:after {
    content: "";
    position: absolute;
    right: 26px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.25s ease;
}

.faq_list details[open] summary:after {
    transform: translateY(-30%) rotate(-135deg);
}

.faq_list .faq_a {
    padding: 0 24px 24px 58px;
    font-size: 1.45rem;
    line-height: 28px;
    color: #555;
    font-weight: 500;
    position: relative;
}

.faq_list .faq_a:before {
    content: "A";
    position: absolute;
    left: 24px;
    top: -2px;
    color: #FABE00;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
}

.faq_list .faq_a a {
    color: #EA5504;
    font-weight: 600;
    border-bottom: 1px solid #EA5504;
}

/* ---- サービス一覧カード（事業内容トップ） ---- */
.svc_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.svc_cards li {
    width: calc(33.333% - 14px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 36px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.svc_cards li:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.svc_cards .svc_ico {
    height: 120px;
    margin-bottom: 20px;
}

.svc_cards .svc_ico img {
    height: 100%;
    width: auto;
    margin: 0 auto;
}

.svc_cards h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.svc_cards p {
    font-size: 1.35rem;
    line-height: 24px;
    color: #666;
    font-weight: 500;
    margin-bottom: 24px;
    text-align: left;
    flex: 1;
}

.svc_cards .svc_link {
    display: inline-block;
    font-size: 1.35rem;
    font-weight: 700;
    color: #EA5504;
    transition: all 0.25s ease;
}

.svc_cards .svc_link:after {
    content: " →";
}

.svc_cards li:hover .svc_link {
    letter-spacing: 1px;
}

/* ---- 会社概要テーブル ---- */
.mission_block {
    text-align: center;
    margin: 20px 0 30px;
}

.mission_block h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 24px;
}

.mission_block p {
    font-size: 1.5rem;
    line-height: 32px;
    font-weight: 500;
    color: #444;
}

.info_table {
    width: 100%;
    margin: 24px 0;
}

.info_table th {
    width: 30%;
    padding: 14px 20px 14px 0;
    vertical-align: middle;
}

.info_table th span {
    display: block;
    font-size: 1.4rem;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
}

.info_table td {
    font-size: 1.5rem;
    font-weight: 500;
    padding: 14px 0 14px 20px;
    line-height: 26px;
    border-bottom: 1px solid #f0f0f0;
}

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

/* ---- 準備中 / シンプルメッセージ ---- */
.simple_msg {
    text-align: center;
    padding: 40px 0 20px;
}

.simple_msg .big {
    font-family: "Inter", sans-serif;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #EA5504 0%, #FABE00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 24px;
}

.simple_msg p {
    font-size: 1.6rem;
    line-height: 32px;
    font-weight: 500;
    color: #444;
}

/* ---- ページ内CTA ---- */
.page_cta {
    text-align: center;
    max-width: 1100px;
    margin: 80px auto 0;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
    backdrop-filter: blur(5px);
}

.page_cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page_cta p {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 28px;
}

.cta_btn {
    display: inline-block;
    background: linear-gradient(90deg, #EA5504 0%, #FABE00 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.7rem;
    padding: 18px 60px;
    border-radius: 100px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.04);
    box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.1), 6px 6px 28px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.cta_btn:hover {
    padding: 18px 70px;
}

/* ---- お問い合わせフォーム ---- */
.contact_form {
    margin: 24px 0 10px;
}

.form_row {
    margin-bottom: 24px;
}

.form_row label {
    display: block;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form_row label .req {
    display: inline-block;
    color: #fff;
    background: #EA5504;
    font-size: 1.1rem;
    font-weight: 700;
    margin-left: 10px;
    padding: 2px 10px;
    border-radius: 100px;
    vertical-align: middle;
}

.form_row label .opt {
    display: inline-block;
    color: #999;
    background: #f0f0f0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 10px;
    padding: 2px 10px;
    border-radius: 100px;
    vertical-align: middle;
}

.form_row input,
.form_row textarea {
    width: 100%;
    border: 1px solid #e0e0e0;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #222;
    font-family: inherit;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.form_row input:focus,
.form_row textarea:focus {
    border-color: #EA5504;
    background: #fff;
}

.form_row textarea {
    min-height: 170px;
    line-height: 26px;
    resize: vertical;
}

/* ハニーポット（スパム対策・非表示） */
.form_hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.form_submit {
    text-align: center;
    margin-top: 36px;
}

.form_submit button {
    display: inline-block;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #EA5504 0%, #FABE00 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.7rem;
    padding: 18px 70px;
    border-radius: 100px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.04);
    box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.1), 6px 6px 28px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.form_submit button:hover:not(:disabled) {
    padding: 18px 80px;
}

.form_submit button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.form_msg {
    margin-top: 26px;
    padding: 20px 24px;
    border-radius: 12px;
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 26px;
    text-align: center;
    display: none;
}

.form_msg.is_success {
    display: block;
    background: #f0f9f0;
    border: 1px solid #b7e0b7;
    color: #2e7d32;
}

.form_msg.is_error {
    display: block;
    background: #fdf0ec;
    border: 1px solid #f3c4b3;
    color: #c0392b;
}

/* ---- トップページ：下層への誘導ボタン ---- */
.index_more {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0 40px;
}

.index_more .more_btn {
    margin: 40px auto 0;
}

/* ---- トップページ：サービスカードを詳細ページへのリンクに ---- */
ul.service_list li {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

ul.service_list li:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

ul.service_list li a {
    display: block;
    color: #000;
}

.svc_more {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #EA5504;
    transition: letter-spacing 0.25s ease;
}

.svc_more:after {
    content: " →";
}

ul.service_list li:hover .svc_more {
    letter-spacing: 1px;
}

/* ============================================================
   スマホ対応
   ============================================================ */
@media screen and (max-width: 480px) {

    .breadcrumb {
        width: 86%;
        padding: 20px 0 0;
        font-size: 1.1rem;
    }

    .breadcrumb ol {
        font-size: 1.1rem;
    }

    .lead_box {
        padding: 22px 20px;
        margin-bottom: 30px;
    }

    .lead_box p {
        font-size: 1.35rem;
        line-height: 26px;
    }

    .sec_ttl {
        font-size: 1.8rem;
        margin: 40px 0 18px;
    }

    .sec_text {
        font-size: 1.3rem;
        line-height: 26px;
    }

    .problem_list li {
        width: 100%;
        font-size: 1.3rem;
        padding: 16px 18px;
    }

    .feature_list li {
        padding: 22px 20px;
    }

    .feature_list li h3 {
        font-size: 1.6rem;
    }

    .feature_list li p {
        font-size: 1.3rem;
        line-height: 24px;
    }

    .flow_list li {
        padding: 0 0 32px 60px;
    }

    .flow_list li:before {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .flow_list li:after {
        left: 19px;
        top: 46px;
    }

    .flow_list li h3 {
        font-size: 1.5rem;
    }

    .flow_list li p {
        font-size: 1.3rem;
    }

    .faq_list summary {
        padding: 18px 48px 18px 48px;
        font-size: 1.35rem;
        line-height: 22px;
    }

    .faq_list summary:before {
        left: 18px;
        top: 16px;
        font-size: 1.5rem;
    }

    .faq_list .faq_a {
        padding: 0 18px 20px 48px;
        font-size: 1.3rem;
        line-height: 24px;
    }

    .faq_list .faq_a:before {
        left: 18px;
        font-size: 1.5rem;
    }

    .svc_cards li {
        width: 100%;
        padding: 30px 24px;
    }

    .mission_block h2 {
        font-size: 1.9rem;
        line-height: 32px;
    }

    .mission_block p {
        font-size: 1.35rem;
        line-height: 28px;
    }

    .info_table th,
    .info_table td {
        display: block;
        width: 100%;
        padding: 0;
    }

    .info_table th {
        margin-bottom: 8px;
    }

    .info_table td {
        padding: 10px 4px 20px;
        font-size: 1.3rem;
    }

    .info_table th span {
        font-size: 1.2rem;
    }

    .simple_msg .big {
        font-size: 2.8rem;
    }

    .simple_msg p {
        font-size: 1.35rem;
        line-height: 27px;
    }

    .page_cta {
        margin: 50px auto 0;
        padding: 40px 24px;
        border-radius: 20px;
    }

    .page_cta h2 {
        font-size: 1.8rem;
    }

    .page_cta p {
        font-size: 1.3rem;
        line-height: 24px;
    }

    .cta_btn {
        font-size: 1.4rem;
        padding: 16px 40px;
        width: 100%;
    }

    .cta_btn:hover {
        padding: 16px 40px;
    }

    .form_row label {
        font-size: 1.3rem;
    }

    .form_row input,
    .form_row textarea {
        font-size: 1.6rem;
        padding: 12px 14px;
    }

    .form_row textarea {
        min-height: 140px;
    }

    .form_submit button {
        font-size: 1.5rem;
        padding: 16px 40px;
        width: 100%;
    }

    .form_submit button:hover:not(:disabled) {
        padding: 16px 40px;
    }

    .form_msg {
        font-size: 1.3rem;
        padding: 16px 18px;
    }
}
