:root {
    --color-bg: #f8f8f9;
    --color-text: #222;
    --color-accent: #2563eb;
    --max-width: 1440px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

a {
    color: var(--color-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header,
main,
footer {
    width: 100%;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
}
.container_2 {
    background-color: #fff;
    & section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
}

header {
    position: fixed;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-top: 5px solid #0767e7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    & .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    & .site-title {
        margin: 0 0 0 10px;
        width: 156px;
        height: 115px;
        background-image: url(img/logo.png);
        background-size: cover;
        text-indent: -9999px;
    }

    & nav {
        & ul {
            list-style: none;
            padding: 0;
            margin: 0 1rem 0 0;
            display: flex;
            gap: 1.56rem;
            flex-wrap: wrap;
            & a {
                font-size: 1rem;
                font-weight: bold;
                color: #000;
            }
            & .contact a {
                background-color: #0767e7;
                padding: 9px 18px;
                border: 1px solid #0767e7;
                border-radius: 22px;
                color: #fff;
            }
        }
    }
}

main {
    padding-top: 88px;
}

.hero {
    background: url("img/hero.jpg") center/cover no-repeat;
    height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1;
}

.hero_content {
    position: relative;
    top: -3.4rem;
    z-index: 2;
    text-align: center;
    & img {
        margin: 0 auto;
    }
    & h1 {
        color: #fff;
        font-size: 2rem;
        text-shadow: 1px 2px 4px rgb(61 70 70);
    }
    & .btn_box {
        margin: 3rem auto 0;
        display: flex;
        width: 503px;
        justify-content: space-between;
        & a {
            text-decoration: none;
        }
    }
}

.link_btn01 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 244px;
    height: 51px;
    padding: 0 50px;
    background-color: #fff;
    border: 1px solid #0767e7;
    border-radius: 35px;
    position: relative;
    transition: 0.6s cubic-bezier(0.18, -0.01, 0.3, 1);

    & span {
        font-size: 1rem;
    }
    &:after {
        box-sizing: border-box;
        border-style: solid;
        border-width: 0;
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url(img/icon_arrow_blue.svg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        transition: 0.6s cubic-bezier(0.18, -0.01, 0.3, 1);
    }
}
.link_btn01:hover {
    background-color: #0767e7;
    text-decoration: none;
    & span {
        color: #fff;
    }
    &:after {
        content: "";
        display: inline-block;
        width: 20px;
        height: 7px;
        background-image: url(img/icon_arrow_white.svg);
        background-repeat: no-repeat;
        transform: translate(5px, -50%);
    }
}
.link_btn02 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 244px;
    height: 51px;
    padding: 0 50px;
    background-color: #be49eb;
    border: 1px solid #be49eb;
    border-radius: 35px;
    position: relative;
    transition: 0.3s;
    & span {
        font-size: 1rem;
        color: #fff;
    }
}
.link_btn02:hover {
    opacity: 0.7;
}

.container section,
.container_2 section {
    padding-top: 7.5rem;
}

.container section h2,
.container_2 section h2 {
    margin-left: 250px;
    font-size: 4.5rem;
    &::first-letter {
        color: #2371ed;
    }
}
.container_2 section h2 {
    margin-left: 50px;
}
.container section .sub_h2,
.container_2 section .sub_h2 {
    margin-left: 470px;
    margin-top: -1.3rem;
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 55px;
}
.container_2 section .sub_h2 {
    margin-left: 270px;
}

.service_lst {
    & li {
        display: flex;
        align-items: center;
        margin-bottom: 80px;
        & img {
            width: 50%;
        }
        & .service_box {
            width: 50%;
            padding: 45px;
            & h3 {
                font-size: 2rem;
            }
            & p {
                margin: 30px 45px;
            }
            & .lnk_btn_box {
                text-align: right;
                & a {
                    width: 240px;
                    display: inline-flex;
                }
            }
        }
    }
    & li:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.section_wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.features_lst {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;

    & .features_box {
        width: 48%;
        margin-bottom: 55px;
        position: relative;
        & img {
            width: 100%;
        }
        & p {
            position: absolute;
            color: #fff;
            top: 35%;
            padding: 18px;
            font-size: 1.7rem;
        }
        & h3 {
            font-size: 1.5rem;
            font-weight: bold;
        }
    }
    & .features_box:nth-child(1) {
        width: 100%;
        & .table_box {
            background-image: url(img/features/01.jpg);
            background-size: cover;
            padding: 27px 38px;

            & table {
                background-color: #fff;
            }
        }
    }
    & .features_box:nth-child(6) {
        width: 100%;
    }

    & .table_box {
        overflow-x: auto;
    }
    & .table_box table {
        border-collapse: collapse;
        table-layout: fixed;
        width: 100%;
        min-width: 700px;
        text-align: center;
    }
    & .table_box table thead th {
        padding: 1em 0.8em;
        font-weight: bold;
        border-right: 2px solid#fff;
    }
    & .table_box table thead th:not(:first-child) {
        background: #4d9bc1;
        color: #fff;
        font-size: 1.2rem;
        border-radius: 15px 15px 0 0;
        padding: 0.5em;
    }
    & .table_box table thead th span {
        font-size: 0.6rem;
    }
    & .table_box table thead th:nth-child(2) {
        background-color: #f88400;
        position: relative;
    }
    & .table_box table tbody {
        border: 2px solid #d2e8f1;
    }
    & .table_box table tbody tr {
        background-color: #e6f1f6;
    }
    & .table_box table tbody tr:nth-child(odd) {
        background-color: #fff;
    }
    & .table_box table td {
        border-left: 2px solid #d2e8f1;
        color: #4d9bc1;
        padding: 0.4em;
        text-align: left;
    }
    & .table_box table td.center {
        text-align: center;
        font-weight: bold;
    }
    & .table_box table td:nth-child(2) {
        color: #f88400;
        border-right: 2px solid #f88400;
        border-left: 2px solid #f88400;
    }
    & .table_box table tr:last-child td:nth-child(2) {
        border-bottom: 2px solid #f88400;
    }
}

.recommended_lst {
    margin: 0 80px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    & li {
        display: flex;
        margin-bottom: 35px;
        align-items: center;

        & .recom_txt {
            margin-left: 75px;
            font-size: 1.8rem;
        }
    }
}

.container02 {
    width: 100%;
    max-width: 1200px;
    margin: 33px auto 0;
    & section {
        margin-bottom: 170px;
    }
}

.page_title h2 {
    font-size: 4.5rem;
    &::first-letter {
        color: #2371ed;
    }
}
.page_title .sub_h2 {
    margin-top: -1.3rem;
    margin-left: 8.3rem;
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 55px;
}

.container02 section h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    & span {
        margin-left: 1rem;
        font-size: 1.5rem;
        color: #b163e1;
    }
}
.container02 section h4 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 24px;
}
.container02 section .im_top_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 130px;

    & img {
        width: 20%;
        height: fit-content;
    }
    & .im_top_txt_box {
        width: 78%;
        background-image: url(img/influencer_marketing/sf_02.png);
        background-size: cover;
        padding: 30px 50px;
        & p {
            font-size: 1.2rem;
            color: #000;
            -webkit-text-stroke: 2px #fff;
            paint-order: stroke;
            margin-bottom: 1.2rem;
        }
    }
    & .se_top_txt_box {
        width: 78%;
        background-image: url(img/service/se_02.png);
        background-size: cover;
        padding: 30px 50px;
        & p {
            font-size: 1.2rem;
            color: #fff;
            paint-order: stroke;
            margin-bottom: 1.2rem;
        }
    }
    & .btn_box {
        margin-top: 30px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        & a {
            width: 55%;
            margin-left: 25px;
            margin-top: 10px;
            height: 130px;
            border-radius: 90px;
            & span {
                font-size: 2rem;
            }
        }
        & .link_btn01 {
            border: 2px solid #0767e7;
            &:after {
                width: 95px;
                height: 16px;
            }
        }
        & .comment_box {
            width: 40%;
            background-image: url(img/influencer_marketing/sf_03.png);
            background-size: cover;
            padding: 20px 9px 22px 59px;
            font-size: 0.8rem;
            line-height: 1.6rem;
        }
    }
}
.container02 section .sv_flow {
    margin: 0 22px;
    & li {
        display: flex;
        flex-wrap: wrap;
        background-color: #e9f4ff;
        & img {
            width: 23%;
            margin: 18px 20px 18px 12px;
        }
        & .step_box {
            width: 74%;
            padding-right: 40px;

            & .ttl {
                font-size: 1.5rem;
                font-weight: bold;
                line-height: 1.68rem;
                margin-top: 18px;
                padding-left: 5px;
                padding-bottom: 5px;
                border-bottom: 4px solid #000;
            }
            & .con {
                font-size: 1.25rem;
                padding: 5px;
                & span {
                    color: #b163e1;
                }
            }
        }
        &:not(:last-child):after {
            content: "";
            display: inline-block;
            width: 100%;
            height: 55px;
            background-color: #f8f8f9;
            background-image: url(img/icon_li_bottom_arrow.png);
            background-repeat: no-repeat;
            background-position-x: center;
            background-position-y: center;
        }
    }
}
.container02 section .wide_h4_box {
    width: 100%;
    margin-bottom: 40px;

    & h4 {
        font-size: 2.3rem;
        font-weight: bold;
        color: #2371ed;
    }
}
.container02 section .ttl_h4_1 {
    background-image: url(img/influencer_marketing/ttl_h4_1.png);
    background-repeat: no-repeat;
    background-size: 54%;
    background-position-x: right;
    & h4 {
        padding: 55px 0 95px 0;
    }
}
.container02 section .ttl_h4_2 {
    background-image: url(img/influencer_marketing/ttl_h4_2.png);
    background-repeat: no-repeat;
    background-size: 54%;
    background-position-x: left;
    & h4 {
        text-align: right;
        padding: 55px 0 95px 0;
    }
}
.container02 section .ttl_h4_3 {
    background-image: url(img/service/ttl_h4_3.png);
    background-repeat: no-repeat;
    background-size: 54%;
    background-position-x: right;
    & h4 {
        padding: 55px 0 95px 0;
    }
}
.container02 section .ttl_h4_4 {
    background-image: url(img/service/ttl_h4_4.png);
    background-repeat: no-repeat;
    background-size: 54%;
    background-position-x: left;
    & h4 {
        text-align: right;
        padding: 55px 0 95px 0;
    }
}
.container02 section .after_h4_box {
    width: fit-content;
    margin: 0 auto 65px;
    & p {
        font-size: 1.1rem;
        text-align: left;
    }
}
.container02 section ul.plan_lst {
    width: fit-content;
    margin: 0 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    & li {
        width: 49%;
        min-height: 25rem;
        margin-bottom: 35px;
        background-color: #e9f4ff;
        padding: 12px 11px;
        & h5 {
            background-color: #1158c9;
            color: #fff;
            font-size: 1.5rem;
            line-height: 3rem;
            text-indent: 0.75rem;
        }
        & .con {
            padding: 20px 10px;
            & .ttl {
                font-size: 1.31rem;
                text-indent: 0.5rem;
                font-weight: bold;
            }
            & p {
                padding: 5px;
            }
        }
    }
    & li:last-child {
        background-color: #fff;
        border: 2px solid #1158c9;
        & .con {
            & p {
                margin-top: 15px;
                & span {
                    color: #b163e1;
                }
            }
            & .btn_box {
                margin-top: 40px;
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                & a {
                    width: 100%;
                    height: 130px;
                    border-radius: 90px;
                    & span {
                        font-size: 2rem;
                    }
                }
                & .link_btn01 {
                    border: 2px solid #0767e7;
                    &:after {
                        width: 60px;
                        height: 32px;
                    }
                }
            }
        }
    }
}

.container02 section .report_lst {
    width: 100%;
    margin-bottom: 65px;
    & h5 {
        font-size: 1.2rem;
        color: #973ece;
        text-indent: 1.3rem;
        margin-bottom: 10px;
    }
    & ul {
        & li {
            background-color: #ededed;
            display: flex;
            margin-bottom: 24px;
            margin-left: 60px;
            & .img_box {
                width: 28%;
                padding: 27px 19px;
                & img {
                    width: -webkit-fill-available;
                }
            }
            & .txt_box {
                width: 72%;
                & .ttl {
                    padding: 33px 19px 25px 0;
                    font-size: 1.5rem;
                    font-weight: bold;
                    color: #0453d0;
                }
            }
        }
        & li:nth-child(even) {
            margin-left: 0px;
            margin-right: 60px;
            flex-direction: row-reverse;
            & .txt_box {
                text-align: right;
            }
        }
    }
}

.container02 section .white_h4_box {
    width: 90%;
    margin: 0 auto 30px;
    border: 2px solid #2371ed;
    background-color: #fff;
    padding: 30px 24px 0;
    & h4 {
        font-size: 1.5rem;
        color: #2371ed;
        margin-bottom: 0;
    }
    & p {
        font-size: 1.25rem;
        margin: 0 0 30px 22px;
    }
}

.container02 section .lr_flow_lst {
    width: 100%;
    margin-bottom: 65px;
    & h5 {
        font-size: 1.2rem;
        color: #973ece;
        text-indent: 1.3rem;
        margin-bottom: 10px;
    }
    & ul {
        margin: 10px 1.3rem;
        & li {
            display: flex;
            flex-wrap: wrap;
            background-color: #e9f4ff;
            & img {
                width: 15%;
                margin: 20px 18px;
            }
            & .step_box {
                width: 80%;
                padding-right: 15px;
                & .ttl {
                    font-size: 1.5rem;
                    font-weight: bold;
                    line-height: 1.68rem;
                    margin-top: 20px;
                    padding-left: 5px;
                    padding-bottom: 5px;
                    border-bottom: 4px solid #000;
                }
                & .con {
                    font-size: 1.25rem;
                    padding: 5px;
                    margin-top: 15px;
                    & span {
                        color: #b163e1;
                    }
                }
            }
            &:not(:last-child):after {
                content: "";
                display: inline-block;
                width: 100%;
                height: 55px;
                background-color: #f8f8f9;
                background-image: url(img/icon_li_bottom_arrow.png);
                background-repeat: no-repeat;
                background-position-x: center;
                background-position-y: center;
            }
        }
    }
}
/*********************************************/
.container02 section .influencer_type {
    width: 100%;
    margin-top: 65px;
    margin-bottom: 65px;
    & h5 {
        font-size: 1.2rem;
        color: #973ece;
        text-indent: 1.3rem;
        margin-bottom: 10px;
    }
    & .type_list {
        display: grid;
        justify-content: space-evenly;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        padding: 0 20px;

        & .p_dl {
            background-color: #fff;
            border: 1px solid #0453d0;
            & .p_dt {
                color: #fff;
                font-size: 1.3rem;
                font-weight: bold;
                background-color: #0453d0;
                margin-bottom: 20px;
                padding: 5px 10px;
            }
            & .p_dd {
                padding-bottom: 20px;
                & figure {
                    margin-bottom: 20px;
                    & img {
                        margin-inline: auto;
                    }
                }
            }
        }
        & .t_dl {
            display: flex;
            justify-content: left;
            align-items: flex-start;
            & .t_dt {
                width: 30%;
                text-align: right;
            }
            & .t_dd {
                width: 70%;
            }
        }
    }
}
/*********************************************/
.container02 section .new_relation {
    width: 100%;
    margin-top: 65px;
    & h5 {
        font-size: 1.2rem;
        color: #973ece;
        text-indent: 1.3rem;
        margin-bottom: 10px;
    }
    & .relation_list {
        width: 100%;
        max-width: 1080px;
        background-color: #fff;
        border: 1px solid #0453d0;
        margin-inline: auto;
        padding: 20px;

        & .r_dl {
            & .r_dt {
                color: #0453d0;
                font-weight: bold;
                padding: 5px 10px;
            }
            & .r_dd {
                padding-left: 30px;
            }
        }
        & .t_dl {
            display: flex;
            justify-content: left;
            align-items: flex-start;
            & .t_dt {
                width: 30%;
                text-align: right;
            }
            & .t_dd {
                width: 70%;
            }
        }
    }
}
/*********************************************/
.container02 section .package_plan {
    background-color: #e9f4ff;
    padding: 10px 15px;
    & h3 {
        width: 100%;
        height: 40px;
        font-size: 1.3rem;
        font-weight: bold;
        line-height: 40px;
        background-color: #0453d0;
        color: #fff;
        padding: 0 10px;
    }
    & table {
        width: 95%;
        border-collapse: collapse;
        table-layout: fixed;
		margin: 0 auto 20px auto;

        th,
        td {
            border: 1px solid #043b7b;
        }
    }

    & th {
        padding: 10px;
        background-color: #1158c9;
        color: #fff;
    }
    & td {
        padding: 10px;
        background-color: #fff;
    }
    & td.center {
        text-align: center;
    }
    & .pp_p1 {
        margin-bottom: 20px;
    }
    & .pp_p2 {
        text-align: right;
    }
}
/*********************************************/
.container02 section .achievement {
    background-color: #fff;
	border: 2px solid #0453d0;
    padding: 10px 15px;
    & h3 {
        width: 100%;
        height: 40px;
        font-size: 1.3rem;
        font-weight: bold;
        line-height: 40px;
        background-color: #0453d0;
        color: #fff;
        padding: 0 10px;
    }
    & h4 {
		color: #0453d0;
		font-size: 1.2rem;
	}
    & table {
        width: 95%;
        border-collapse: collapse;
        table-layout: fixed;
		margin: 0 auto 20px auto;

        th,
        td {
            border: 1px solid #043b7b;
        }
    }

    & th {
        padding: 10px;
        background-color: #1158c9;
        color: #fff;
    }
    & td {
        padding: 10px;
        background-color: #fff;
    }
    & td.center {
        text-align: center;
    }
    & .pp_p1 {
        margin-bottom: 20px;
    }
    & .pp_p2 {
        text-align: right;
    }
	& ul{
		width: 100%;
		max-width: 500px;
		display: grid;
		justify-content: space-evenly;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 10px;
		margin-inline: auto;
	}
}
/*********************************************/
.icon_arrow {
    width: fit-content;
    width: -moz-fit-content;
    display: block;
	margin: 20px auto;
}
/*********************************************/
footer {
    background: #000;
    color: #fff;
    & .container {
        width: 100%;
        max-width: 1200px;
        padding: 50px 0 40px;
        display: flex;

        & .footer_logo {
            padding-left: 85px;
        }
        & .footer_content {
            margin-left: 35px;
            & ul {
                display: flex;
                gap: 1.56rem;
                flex-wrap: wrap;
                margin-bottom: 1rem;
                & a {
                    font-size: 1rem;
                    color: #fff;
                }
            }
            & .company_data {
                & a {
                    display: flex;
                    gap: 0.5rem;
                    color: #fff;
                }
            }
            & .footer_copy {
                text-align: right;
                font-size: 0.88rem;
            }
        }
    }
}

@media (max-width: 640px) {
    .container {
    }

    .hero {
        padding: 1.5rem;
    }

    /*********************************************/
    .container02 section .influencer_type {
        margin-top: 45px;
        margin-bottom: 45px;
        & h5 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        & .type_list {
            display: block;
            margin-bottom: 20px;
            padding: 0 20px;
            & .p_dl {
                margin-bottom: 20px;
                & .p_dt {
                    font-size: 1rem;
                    margin-bottom: 10px;
                    padding: 5px 10px;
                }
                & .p_dd {
                    padding: 10px;
                    & figure {
                        margin-bottom: 20px;
                    }
                }
            }
            & .p_dl:not(:has(+ .p_dl)) {
                margin-bottom: 0;
            }
            & .t_dl {
                display: block;
                & .t_dt {
                    width: 100%;
                    font-weight: bold;
                    text-align: left;
                }
                & .t_dd {
                    width: 100%;
                    padding-left: 20px;
                }
            }
        }
    }
    /*********************************************/
    .container02 section .new_relation {
        width: 100%;
        margin-top: 45px;
        padding: 0 20px;
        & h5 {
            font-size: 1.2rem;
            color: #973ece;
            text-indent: 0;
            margin-bottom: 10px;
        }
        & .relation_list {
            padding: 10px;
            & .r_dl {
                & .r_dt {
                    color: #0453d0;
                    font-weight: bold;
                    padding: 5px 10px;
                }
                & .r_dd {
                    padding-left: 30px;
                }
            }
            & .t_dl {
                display: flex;
                justify-content: left;
                align-items: flex-start;
                & .t_dt {
                    width: 30%;
                    text-align: right;
                }
                & .t_dd {
                    width: 70%;
                }
            }
        }
    }
    /*********************************************/
}
