/*今風*/
@media screen and (min-width:1440px) {

    /*共通*/
    h2 {
        font-size: 40px;
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: 0px;
        padding-bottom: 1.5rem;
    }


    /*keyvisual*/

    /**/
    #index01,
    #index03 {
        background-color: var(--main-col);
        padding: 10rem;
        color: var(--txt-col2);
    }

    #index01 .inner,
    #index02 .inner,
    #index03 .inner,
    #index04 .inner,
    #index05 .inner,
    #index06 .inner,
    #index07 .inner {
        display: flex;
        position: relative;
        flex-direction: column;
        margin: 0 auto;
    }

    /*強み*/
    #index01 .inner {
        width: 80%;
    }

    #index01 ul,
    #index02 ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 3rem 0;
        position: relative;
        width: 100%;
    }

    #index01 ul li {
        width: calc((100% - 6rem) / 3);
        margin-bottom: 4rem;
    }

    #index01 ul li h3,
    #index02 ul li h3 {
        min-height: 7rem;
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2rem;
    }

    #index01 ul li figure {
        width: 100%;
        overflow: hidden;
        border-radius: 4px;
    }

    #index01 ul li {
        padding-bottom: 1rem;
    }

    #index01 ul li h3 {
        color: var(--sub-col);
    }

    /* <picture> 互換 */
    #index01 ul li figure picture {
        width: 100%;
        aspect-ratio: 1.4 / 1;
        display: block;
        overflow: hidden;
    }

    /* <img> 直接配置 */
    #index01 ul li figure img {
        width: 100%;
        aspect-ratio: 1.4 / 1;
        object-fit: cover;
        display: block;
    }

    #index01 ul li p,
    #index02 ul li p {
        font-size: 1.2rem;
        margin: 1rem 0;
    }

    #index01 .btn {
        color: var(--accent-col);
        background-color: var(--gold);
        border-color: var(--gold);
        font-weight: 700;
    }

    #index01 .btn:hover {
        background-color: #e0bc5a;
        border-color: #e0bc5a;
        color: var(--accent-col);
    }

    /*サービス*/
    #index02 .inner {
        width: 100%;
    }

    #index02 li {
        display: flex;
        width: calc((100%) / 3);
        padding: 3rem;
        padding-bottom: 5rem;
        flex-direction: column;
        flex-wrap: wrap;
    }

    #index02 li:nth-child(odd) {
        background-color: var(--sub-col);
    }

    #index02 li:nth-child(even) {
        background-color: var(--accent-col2);
    }

    #index02 ul li h3 {
        width: 100%;
        text-align: center;
    }

    #index02 li figure {
        width: 6rem;
        aspect-ratio: 1 / 1;
        display: inline-block;
        margin: 0 auto;
    }

    #index02 li figure img {
        object-fit: cover;
        width: 100%;
    }

    #index02 li .btn {
        color: var(--sub-col);
        background-color: var(--accent-col);
        border-color: var(--accent-col);
        transition: background-color 0.3s ease, border-color 0.3s ease,
                    color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    }

    #index02 li .btn:hover {
        background-color: var(--gold);
        border-color: var(--gold);
        color: var(--accent-col);
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(201, 168, 76, 0.4);
    }

    /*流れ*/
    #index03 .inner {
        width: 80%;
    }

    #index03 .inner p {
        text-align: center;
        margin: 3rem;
        font-size: 1.2rem;
    }

    #index03 ul {
        display: flex;
        justify-content: space-around;
        flex-wrap: nowrap;
        align-items: flex-start;
        position: relative;
        counter-reset: step;
        padding-top: 0;
    }

    /* ステップ間の接続ライン */
    #index03 ul::before {
        content: '';
        position: absolute;
        top: 1.5rem;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(
            to right,
            transparent,
            var(--gold) 10%,
            var(--gold) 90%,
            transparent
        );
        z-index: 0;
    }

    #index03 ul li {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
        counter-increment: step;
    }

    /* ゴールド番号円 */
    #index03 ul li::before {
        content: counter(step);
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background-color: var(--gold);
        color: var(--accent-col);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
        box-shadow: 0 2px 10px rgba(201, 168, 76, 0.5);
        flex-shrink: 0;
    }

    #index03 ul li h3 {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
    }

    /*記事*/
    #index04 {}

    /*報酬*/
    #index05 .inner {
        width: 60%;
    }

    #index05 table {
        margin: 2rem 0;
        border: none;
        width: 100%;
        margin-bottom: 100px;
    }

    #index05 h4 {
        padding: 10px;
    }

    #index05 tr,
    #index05 tbody {
        border: 1px dotted;
    }

    #index05 td,
    th {
        border-color: var(--sub-col);
    }

    #index05 .thread th {
        background-color: var(--accent-col);
        color: var(--gold);
        border-bottom: 2px solid var(--gold);
    }

    #index05 td li:nth-child(1),
    #index05 td li:nth-child(3) {
        background-color: #f3f8ff;
    }

    #index05 li {
        font-size: 1.5rem;
    }

    #index05 p {
        border: solid 1px;
        border-color: var(--gold);
        border-radius: 15px;
        font-size: 1rem;
        padding: 20px;
        display: flex;
        flex-direction: column;
        background-color: var(--gold-light);
    }

    /*よくある質問*/
    #index06 {
        background-color: #F9F8F2;
        margin-bottom: 0;
    }

    #index06 .inner {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 300px 0 300px 0;
    }

    #index06 ul {
        width: 60vw;
        position: relative;
    }

    #index06 ul li {
        margin-bottom: 60px;
        font-size: 1.8rem;
    }

    #index06 ul li p:nth-child(1),
    #index06 ul li p:nth-child(2) {
        position: relative;
        background-color: var(--sub-col);
        display: flex;
        align-items: center;
    }

    #index06 ul li p:nth-child(1) {
        cursor: pointer;
        padding: 10px 10px 10px 40px;
        border: 1px solid var(--accent-col);
        transition: 1s;
    }

    #index06 ul li p:nth-child(1)::after,
    #index06 ul li p:nth-child(2)::after {
        position: absolute;
        left: 10px;
        top: 10px;
        width: 30px;
        height: 30px;
        color: var(--gold);
        font-weight: 700;
    }

    #index06 ul li p:nth-child(1)::after {
        content: 'Q';
    }

    #index06 ul li p:nth-child(2)::after {
        content: 'A';
    }

    #index06 ul li p:nth-child(1) {
        border-left: 3px solid var(--gold);
    }

    #index06 ul li p:nth-child(1):hover {
        background-color: var(--main-col);
        color: var(--txt-col2);
        border: 1px solid var(--txt-col2);
        transition: 1s;
    }

    #index06 ul li p:nth-child(2) {
        max-height: 0;
        overflow: hidden;
        padding: 0 0 0 40px;
        border: 0px solid var(--accent-col);
        transition:
            max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
            padding 0.6s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease;


    }

    #index06 ul li p:nth-child(2).open {
        margin-top: 30px;
        max-height: 1200px;
        border: 1px solid var(--accent-col);
        padding: 10px;
        padding-left: 40px;
    }

    /*お問い合わせ*/
    #index07 .inner {
        width: 100%;
    }

    #index07 ul {
        display: flex;
        margin: 2rem 0;
    }

    #index07 ul li {
        width: 50%;
    }

    #index07 ul li:nth-child(2) {
        display: flex;
        background-color: var(--accent-col2);
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-around;
        border-left: 4px solid var(--gold);
    }

    #index07 ul li .btn {
        display: flex;
        flex-direction: column;
        margin: 1rem 0;
        width: 80%;
        font-size: 1.8rem;
        color: var(--accent-col);
        transition: background-color 0.3s ease, border-color 0.3s ease,
                    color 0.3s ease, transform 0.2s ease;
    }

    #index07 ul li .btn:hover {
        transform: translateY(-2px);
    }

    /* 電話ボタン */
    #index07 ul li a[href^="tel"] {
        color: var(--accent-col);
        font-weight: 700;
    }

    #index07 ul li a[href^="tel"]:hover {
        background-color: #e0bc5a;
        border-color: #e0bc5a;
        color: var(--accent-col);
    }

    #index07 ul li .btn span {
        font-size: 1.0rem;
    }

    /* =========================================
       KV (Key Visual)
    ========================================= */
    #kv {
        position: relative;
        /* 高さは画面いっぱいにしたい場合は 100vh、現状を維持なら 980px など */
        height: 980px;
        /* 中の .kv-content を上下左右中央に配置 */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        /* はみ出し防止 */
    }

    /* 背景画像指定 */
    #kv-banner {
        position: absolute;
        inset: -10px;
        /* ぼかしによる端の透けを防ぐために少し広げる */
        z-index: -1;
        /* テキストやボタンより後ろに配置 */
        background-color: var(--accent-col);
        background-image: url(../images/3businessman.webp);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        filter: blur(5px);
        /* 写真をぼやけさせる */
    }

    #kv-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url(../images/watermark.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        opacity: 0.5;
        pointer-events: none;
    }

    /* コンテンツ全体をまとめるコンテナ */
    .kv-content {
        position: relative;
        z-index: 1;
        width: 80%;
        height: 2000px;
        max-width: 1200px;
        display: flex;
        align-items: center;
        gap: 40px;
        background-color: rgba(0, 0, 0, 0.4);
        padding: 40px;
        flex-direction: row;
        transform: skewX(45deg);
    }

    /* 左側（キャッチコピー等） */
    .kv-text-area {
        width: 55%;
        transform: skewX(-45deg);
    }

    .kv-catchcopy {
        width: 100%;
    }

    .kv-catchcopy img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* 右側（ボタン） */
    .kv-Action-area {
        width: 35%;
        display: flex;
        flex-direction: column;
        gap: 30px;
        transform: skewX(-45deg);
        /* ボタン同士の間隔 */
    }

    .kv-Action-area .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80px;
        /* ボタンの大きさを統一 */
        font-size: 1.5rem;
        border-radius: 8px;
        text-align: center;
        transition: all 0.3s ease;
        text-decoration: none;
        box-sizing: border-box;
    }

    /* 実績数字バー */
    .kv-stats {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(201, 168, 76, 0.5);
        border-radius: 10px;
        padding: 16px 12px;
        gap: 8px;
    }

    .kv-stats-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        padding: 0 4px;
        border-right: 1px solid rgba(201, 168, 76, 0.3);
    }

    .kv-stats-item:last-child {
        border-right: none;
    }

    .kv-stats-number {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--gold);
        line-height: 1;
        margin-bottom: 6px;
    }

    .kv-stats-unit {
        font-size: 1.1rem;
        font-weight: 400;
        color: var(--gold);
    }

    .kv-stats-label {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.5;
    }

    /* 無料相談CTA（メイン） */
    .kv-Action-area .kv-btn-primary {
        background-color: var(--gold);
        color: var(--accent-col);
        font-weight: 700;
        font-size: 1.6rem;
        height: 90px;
        border: 2px solid var(--gold);
        box-shadow: 0 4px 20px rgba(201, 168, 76, 0.45);
    }

    .kv-Action-area .kv-btn-secondary {
        color: var(--sub-col);
        border: 2px solid var(--sub-col);
        background-color: rgba(255, 255, 255, 0.05);
    }

    .kv-Action-area .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .kv-Action-area .kv-btn-primary:hover {
        background-color: #e0bc5a;
        border-color: #e0bc5a;
        box-shadow: 0 6px 24px rgba(201, 168, 76, 0.6);
    }

    .kv-Action-area .kv-btn-secondary:hover {
        background-color: rgba(255, 255, 255, 0.15);
        border: 2px solid var(--sub-col);
    }

    #kv-title {
        display: flex;
        color: var(--txt-col);
        font-size: 2em;
        flex-direction: column;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;
    }

    .breadcrumb {
        padding: 1rem 0;
        width: 100%;
    }

    .breadcrumb .inner {
        position: relative;
        --left-empty: 15%;
        width: calc(100% - var(--left-empty));
        margin-left: var(--left-empty);
    }

    .breadcrumb .inner>* {
        margin: 0 1rem;
    }

    #page01 {
        margin: 0;
        height: 24rem;
        position: relative;
        overflow: hidden;
        background-color: var(--main-col);
    }

    /* ぼかし背景レイヤー */
    #page01::before {
        content: '';
        position: absolute;
        inset: -10px;
        background-image: var(--page-bg);
        background-size: cover;
        background-position: center;
        filter: blur(6px);
        opacity: 0.45;
        z-index: 0;
    }

    #page01 .inner {
        position: absolute;
        width: 100%;
        text-align: center;
        top: 50%;
        z-index: 1;
    }

    #page02 {
        padding-top: 4rem;
    }

    #page02 .inner {
        width: 70%;
        margin: 0 auto;
    }

    #index07 .inner {
        width: 100%;
    }

    #index07 ul {
        display: flex;
        margin: 2rem 0;
    }

    #index07 ul li {
        width: 50%;
    }

    #index07 ul li:nth-child(2) {
        display: flex;
        background-color: var(--accent-col2);
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-around;
    }

    #index07 ul li .btn {
        display: flex;
        flex-direction: column;
        margin: 1rem 0;
        width: 80%;
        font-size: 1.8rem;
    }

    #index07 ul li .btn span {
        font-size: 1.0rem;
    }
}

/*定番*/
@media screen and (max-width: 1280px) {}