@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;
}

/* ---- ミッション（about） ---- */
.mission_block {
    text-align: center;
    margin: 40px 0 34px;
}

.mission_block h3 {
    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;
}

/* ---- 社名に込めた想い（about） ---- */
.origin_body {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 24px 0 10px;
}

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

.origin_body .slogan_line {
    font-size: 1.7rem;
}

.origin_body .slogan_line strong {
    font-size: 1.7rem;
    font-weight: 700;
    color: #EA5504;
}

/* ---- 会社概要テーブル ---- */
.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 90px;
    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;
}

/* ============================================================
   実績一覧（works/index）
   ============================================================ */
.works_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 30px 0 10px;
}

.works_card {
    width: calc(50% - 14px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.works_card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #000;
}

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

.works_card_thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f2f2f2;
}

.works_card_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.works_card:hover .works_card_thumb img {
    transform: scale(1.04);
}

.works_card_body {
    padding: 24px 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.works_card_body h2 {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 12px;
}

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

.works_card_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.works_card_tags span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #EA5504;
    background: rgba(234, 85, 4, 0.08);
    border: 1px solid rgba(234, 85, 4, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
    line-height: 1.4;
}

.works_card_more {
    font-size: 1.35rem;
    font-weight: 700;
    color: #EA5504;
    transition: letter-spacing 0.25s ease;
}

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

.works_card:hover .works_card_more {
    letter-spacing: 1px;
}

/* Coming Soon カード */
.works_card.is_coming {
    background: transparent;
    box-shadow: none;
    border: 2px dashed #d5d5d5;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    min-height: 260px;
}

.works_card.is_coming:hover {
    transform: none;
    box-shadow: none;
}

.works_card.is_coming .coming_big {
    font-family: "Inter", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #bbb;
    margin-bottom: 14px;
}

.works_card.is_coming p {
    font-size: 1.35rem;
    line-height: 24px;
    color: #999;
    font-weight: 500;
}

/* ============================================================
   実績詳細（works/and-training）
   ============================================================ */
/* ---- 見出しバンド（H1は本文側に置くため p で表示） ---- */
section.page_head_title .ph_ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
}

section.page_head_title .ph_ttl span {
    font-size: 5rem;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    margin-right: 30px;
}

/* ---- 詳細ページ本文の主見出し（H1） ---- */
.page_contents_inner h1.post_title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 34px;
}
/* ---- スペック表 ---- */
.wd_spec {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 30px 0 10px;
}

.wd_spec_item {
    width: calc(25% - 12px);
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.wd_spec_item .wd_spec_label {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #EA5504;
    margin-bottom: 10px;
}

.wd_spec_item .wd_spec_value {
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 24px;
    color: #222;
}

.wd_spec_item .wd_spec_value a {
    color: #EA5504;
    border-bottom: 1px solid #EA5504;
    word-break: break-all;
}

/* ---- 関わった範囲（工程バー） ---- */
.wd_scope {
    display: flex;
    gap: 10px;
    margin: 26px 0 20px;
}

.wd_scope_step {
    flex: 1;
    background: #ededed;
    border-radius: 10px;
    padding: 18px 10px;
    text-align: center;
    position: relative;
    transition: background 0.3s ease;
}

.wd_scope_step.own {
    background: linear-gradient(135deg, #EA5504 0%, #FABE00 100%);
    box-shadow: 4px 4px 14px rgba(234, 85, 4, 0.18);
}

.wd_scope_step .wd_scope_num {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #b5b5b5;
    margin-bottom: 8px;
}

.wd_scope_step.own .wd_scope_num {
    color: rgba(255, 255, 255, 0.85);
}

.wd_scope_step .wd_scope_name {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 18px;
    color: #888;
}

.wd_scope_step.own .wd_scope_name {
    color: #fff;
}

.wd_scope_legend {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 14px;
}

.wd_scope_legend span {
    display: inline-flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #555;
}

.wd_scope_legend span:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 8px;
}

.wd_scope_legend .lg_own:before {
    background: linear-gradient(135deg, #EA5504 0%, #FABE00 100%);
}

.wd_scope_legend .lg_none:before {
    background: #ededed;
}

.wd_scope_caption {
    font-size: 1.4rem;
    font-weight: 700;
    color: #EA5504;
}

/* ---- 公式サイト（ブラウザ風フレーム） ---- */
.wd_browser {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e2e2;
    margin: 26px 0 12px;
}

.wd_browser_bar {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    border-bottom: 1px solid #e2e2e2;
    padding: 10px 16px;
}

.wd_browser_dots {
    display: flex;
    gap: 7px;
    margin-right: 16px;
    flex-shrink: 0;
}

.wd_browser_dots span {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    display: block;
}

.wd_browser_dots span:nth-child(1) { background: #ff5f57; }
.wd_browser_dots span:nth-child(2) { background: #febc2e; }
.wd_browser_dots span:nth-child(3) { background: #28c840; }

.wd_browser_url {
    flex: 1;
    background: #fff;
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 1.25rem;
    font-weight: 500;
    color: #666;
    font-family: "Inter", sans-serif;
    text-align: center;
    border: 1px solid #e6e6e6;
}

.wd_browser_viewer {
    height: 560px;
    overflow-y: auto;
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.wd_browser_viewer img {
    width: 100%;
    display: block;
}

.wd_browser_note {
    font-size: 1.3rem;
    font-weight: 500;
    color: #888;
    text-align: center;
    margin-top: 12px;
}

/* ---- プロモーション展開（横スクロールスライダー） ---- */
.wd_promo_slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 4px 18px;
    margin: 22px 0 10px;
    -webkit-overflow-scrolling: touch;
}

.wd_promo_slider::-webkit-scrollbar {
    height: 6px;
}

.wd_promo_slider::-webkit-scrollbar-thumb {
    background: #d5d5d5;
    border-radius: 100px;
}

.wd_promo_slide {
    flex: 0 0 190px;
    width: 190px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wd_promo_thumb {
    position: relative;
    height: 270px;
    background: #f2f2f2;
    overflow: hidden;
}

.wd_promo_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wd_promo_badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #EA5504 0%, #FABE00 100%);
    padding: 4px 12px;
    border-radius: 100px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

.wd_promo_body {
    padding: 14px 16px 18px;
}

.wd_promo_body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 8px;
}

.wd_promo_body p {
    font-size: 1.25rem;
    line-height: 20px;
    color: #666;
    font-weight: 500;
}

.wd_promo_note {
    font-size: 1.3rem;
    font-weight: 500;
    color: #888;
    margin-top: 4px;
}

/* ---- 関連サービス枠 ---- */
.wd_related {
    background: linear-gradient(0deg, #fff 0%, #f7f7f7 100%);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px 32px;
    margin: 30px 0 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.wd_related p {
    font-size: 1.45rem;
    line-height: 28px;
    font-weight: 600;
    color: #333;
}

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

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

    section.page_head_title .ph_ttl {
        font-size: 1.4rem;
        justify-content: space-between;
    }

    section.page_head_title .ph_ttl span {
        font-size: 3rem;
        margin-right: 3%;
        width: 50%;
        text-align: left;
    }

    .page_contents_inner h1.post_title {
        font-size: 1.9rem;
        line-height: 30px;
        padding-bottom: 16px;
        margin-bottom: 26px;
    }

    .works_card {
        width: 100%;
    }

    .works_card_body {
        padding: 20px 22px 24px;
    }

    .works_card.is_coming {
        min-height: 180px;
        padding: 36px 20px;
    }

    .wd_spec_item {
        width: calc(50% - 8px);
        padding: 16px 16px;
    }

    .wd_spec_item .wd_spec_value {
        font-size: 1.3rem;
        line-height: 22px;
    }

    .wd_scope {
        gap: 5px;
    }

    .wd_scope_step {
        padding: 12px 4px;
        border-radius: 7px;
    }

    .wd_scope_step .wd_scope_num {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .wd_scope_step .wd_scope_name {
        font-size: 1rem;
        line-height: 14px;
    }

    .wd_scope_legend {
        gap: 14px;
    }

    .wd_scope_legend span {
        font-size: 1.2rem;
    }

    .wd_browser_viewer {
        height: 420px;
    }

    .wd_related {
        padding: 22px 20px;
    }

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


    .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 {
        margin: 24px 0 26px;
    }

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

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

    .origin_body {
        gap: 18px;
    }

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

    .origin_body .slogan_line,
    .origin_body .slogan_line strong {
        font-size: 1.5rem;
    }

    .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 50px;
        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;
    }
}
