/*
Theme Name: 株式会社千寿
Theme URI: https://wp02dev.combase.co.jp/
Author: combase
Author URI: https://combase.co.jp/
Description: 株式会社千寿様向けのコーポレートサイト用オリジナルテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: senjyu
*/
:root {
    --color-bg: #ffffff;
    --color-bg-orange: #fe9140;
    --color-text: #000000;
    --color-text-white: #ffffff;
    --color-text-orange: #fe9140;
    --color-border-white: #ffffff;
    --bg-white: #fff;
    --max-width: 1440px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body {
    font-size: clamp(1.4rem, 2vw + 1rem, 1.6rem);
    margin: 0;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header,
main,
footer {
    width: 100%;
}
/***************************************************************************/
header {
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-white);
    transition: 0.3s;
    & .container {
        width: 100%;
        height: 80px;
        max-width: var(--max-width);
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
        position: relative;
        margin-inline: auto;
        padding-right: 70px;
    }

    & .site-title {
        width: 201px;
        height: 41px;
        transition: 0.3s;
    }
    & .link_box {
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-left: auto;
        & a {
            margin-left: 15px;
        }
        & .h_tel {
            font-family: "Inter", "Noto Sans JP", sans-serif;
        }
        & .h_line {
            width: 128px;
            height: 30px;
            background-color: #06c755;
            border-radius: 20px;
            color: var(--color-text-white);
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
        & .h_contact {
            width: 128px;
            height: 30px;
            background-color: #f07000;
            border-radius: 20px;
            color: var(--color-text-white);
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
    }

    & nav {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: var(--bg-white);
        & ul {
            list-style: none;
            padding: 0;
            margin: 0 1rem 0 0;
            display: flex;
            gap: 1.56rem;
            flex-wrap: wrap;
            & a {
                position: relative;
                font-weight: bold;
                color: #000;
                text-decoration: none;
                &:hover {
                    text-decoration: none;
                }
                &::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: -4px;
                    width: 100%;
                    height: 2px;
                    background-color: var(--color-border-blue);
                    transform: scaleX(0);
                    transform-origin: left;
                    transition: transform 0.3s ease;
                }

                &:hover::after {
                    transform: scaleX(1);
                }
            }
            & .contact a {
                background-color: var(--color-bg-blue);
                padding: 9px 18px;
                border: 1px solid var(--color-border-blue);
                border-radius: 22px;
                color: var(--color-text-white);

                &::after {
                    display: none;
                }

                &:hover {
                    opacity: 0.85;
                }
            }
        }
    }
}
header.is-small {
    & .site-title {
        width: 225px;
        height: 74px;
    }

    & nav {
        & ul {
            list-style: none;
            padding: 0;
            margin: 0 1rem 0 0;
            display: flex;
            gap: 1.56rem;
            flex-wrap: wrap;
        }
    }
}
/***********************************************/
/* ハンバーガーメニュー */
/***********************************************/

header .nav-overlay {
    display: block;
    position: fixed;
    top: 81px;
    left: 0;
    width: 100%;
    height: calc(100vh - 81px);
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}
/* トグル */
header .nav-toggle {
    display: none;
}

/* ハンバーガーボタン */
header .hamburger {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1100;

    & span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #000;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    & span:nth-child(1) {
        top: 0;
    }
    & span:nth-child(2) {
        top: 9px;
    }
    & span:nth-child(3) {
        bottom: 0;
    }
}

header .nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}
header .nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
}
header .nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}
header .nav-overlay {
    display: none;
}

/*********************************************/
footer {
    background: var(--color-bg);
    & .container {
        width: 100%;
        max-width: 800px;
        margin-inline: auto;
        padding: 50px 0 40px;

        & .footer_logo {
            img {
                width: 283px;
            }
        }
        & .footer_content {
            margin-left: 35px;
            & ul {
                display: flex;
                gap: 2rem;
                flex-wrap: wrap;
                margin: 20px 0;
            }
            & .company_data {
                & a {
                    display: flex;
                    gap: 0.5rem;
                    color: var(--color-text-white);
                }
            }
            & .footer_copy {
                text-align: center;
                font-size: 1.2rem;
            }
        }
    }
}
/*********************************************/
main {
    padding-top: 88px;
}
/*********************************************/
.pcOnly {
    display: block;
}
.spOnly {
    display: none;
}
/***************************************************************************/
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
}
.container_2 {
    background-color: var(--bg-white);
    & section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
}
.hero {
    background: url("img/hero.webp") center/cover no-repeat;
    height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-white);
    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 {
        width: 50%;
        max-width: 1000px;
        margin: 0 auto;
    }
    & h1 {
        color: var(--color-text-white);
        font-size: 3.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: var(--bg-white);
    border: 1px solid var(--color-border-blue);
    border-radius: 35px;
    position: relative;
    transition: 0.6s cubic-bezier(0.18, -0.01, 0.3, 1);

    &: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: var(--color-bg-blue);
    text-decoration: none;
    & span {
        color: var(--color-text-white);
    }
    &: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 {
        color: var(--color-text-white);
    }
}
.link_btn02:hover {
    opacity: 0.7;
}
/*********************************************/
.common_h5 {
    font-size: 2rem;
    color: #973ece;
    text-indent: 1.3rem;
    margin-bottom: 10px;
}
/*********************************************/
.container section,
.container_2 section {
    padding-top: 7.5rem;
}

.container section h2,
.container_2 section h2 {
    margin-left: 250px;
    font-size: 7.2rem;
    &::first-letter {
        color: var(--color-text-blue);
    }
}
.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: 3.2rem;
    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: 3.2rem;
            }
            & p {
                font-size: 2rem;
                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;
        & img {
            width: 100%;
        }
        & .features_box_img {
            position: relative;
            & p {
                width: 100%;
                position: absolute;
                color: var(--color-text-white);
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                padding: 18px;
                font-size: 1.7rem;
            }
        }
        & h3 {
            font-size: 3.2rem;
            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: var(--bg-white);
            }
        }
    }
    & .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: var(--color-text-white);
        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: var(--bg-white);
    }
    & .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: 3.2rem;
        }
    }
}

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

.page_title h2 {
    font-size: 7.2rem;
    &::first-letter {
        color: var(--color-text-blue);
    }
}
.page_title .sub_h2 {
    margin-top: -1.3rem;
    margin-left: 8.3rem;
    font-size: 3.2rem;
    font-weight: normal;
    margin-bottom: 55px;
}
/*********************************************/
.container02 section h3 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    & span {
        margin-left: 1rem;
        font-size: 2.4rem;
        color: var(--color-text-purple);
    }
}
.container02 section h4 {
    font-size: 3.6rem;
    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.webp);
        background-size: cover;
        padding: 30px 50px;
        & p {
            font-size: 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.webp);
        background-size: cover;
        padding: 30px 50px;
        & p {
            font-size: 2rem;
            color: var(--color-text-white);
            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: 3.2rem;
            }
        }
        & .link_btn01 {
            border: 2px solid var(--color-border-blue);
            &:after {
                width: 95px;
                height: 16px;
            }
        }
        & .comment_box {
            width: 40%;
            background-image: url(img/influencer_marketing/sf_03.webp);
            background-size: cover;
            padding: 20px 9px 22px 59px;
            font-size: 1.4rem;
            line-height: 1.6rem;
        }
    }
}
.container02 section .sv_flow {
    width: 100%;
    max-width: 1150px;
    margin-inline: auto;
    & li {
        display: flex;
        flex-wrap: wrap;
        background-color: var(--color-bg-lblue);
        & img {
            width: 23%;
            margin: 18px 20px 18px 12px;
        }
        & .step_box {
            width: 74%;
            padding-right: 40px;

            & .ttl {
                font-size: 2.5rem;
                font-weight: bold;
                line-height: 1.68rem;
                margin-top: 18px;
                padding-bottom: 10px;
                border-bottom: 4px solid #000;
            }
            & .con {
                font-size: 2rem;
                padding: 5px;
                & span {
                    color: var(--color-text-purple);
                }
            }
        }
        &: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: 4rem;
        font-weight: bold;
        color: var(--color-text-blue);
        text-shadow:
            -1px -1px 0 #fff,
            1px -1px 0 #fff,
            -1px 1px 0 #fff,
            1px 1px 0 #fff;
    }
}
/*********************************************/
/* 見出し共通設定 */
/*********************************************/
.container02 section .ttl_h4_l {
    background-repeat: no-repeat;
    background-size: 54%;
    background-position-x: right;
    & h4 {
        padding: 55px 0 95px 0;
    }
}
.container02 section .ttl_h4_r {
    background-repeat: no-repeat;
    background-size: 54%;
    background-position-x: left;
    & h4 {
        text-align: right;
        padding: 55px 0 95px 0;
    }
}
/************************************/
.influencer_marketing1 {
    background-image: url(img/influencer_marketing/ttl_h4_1.webp);
}
.influencer_marketing2 {
    background-image: url(img/influencer_marketing/ttl_h4_2.webp);
}
/************************************/
.service1 {
    background-image: url(img/service/service_tv1.webp);
}
.service2 {
    background-image: url(img/service/service_tv2.webp);
}
/************************************/
.about1 {
    background-image: url(img/about/about_tv.webp);
}
/*********************************************/
.container02 section .after_h4_box {
    width: fit-content;
    margin: 0 auto 65px;
    & p {
        font-size: 1.8rem;
        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: var(--color-bg-lblue);
        padding: 12px 11px;
        & h5 {
            background-color: var(--color-bg-blue);
            color: var(--color-text-white);
            font-size: 2.4rem;
            line-height: 1;
            padding: 8px 10px;
        }
        & .con {
            padding: 20px 10px;
            & .ttl {
                font-size: 2.4rem;
                text-indent: 0.5rem;
                font-weight: bold;
            }
            & p {
                padding: 5px;
            }
        }
    }
    & li:last-child {
        background-color: var(--bg-white);
        border: 2px solid var(--color-border-blue);
        & .con {
            & p {
                margin-top: 15px;
                & span {
                    color: var(--color-text-purple);
                }
            }
            & .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: 3.2rem;
                    }
                }
                & .link_btn01 {
                    border: 2px solid var(--color-border-blue);
                    &:after {
                        width: 60px;
                        height: 32px;
                    }
                }
            }
        }
    }
}

.container02 section .report_lst {
    width: 100%;
    margin-bottom: 65px;
    & ul {
        & li {
            background-color: #ededed;
            display: flex;
            margin-bottom: 24px;
            margin-left: 60px;
            padding: 30px;
            & .img_box {
                width: 28%;
                margin-right: 30px;
                & img {
                    width: -webkit-fill-available;
                }
            }
            & .txt_box {
                width: 72%;
                & .ttl {
                    padding: 0;
                    font-size: 2.4rem;
                    font-weight: bold;
                    color: var(--color-text-blue);
                    margin-bottom: 15px;
                }
            }
        }
        & li:nth-child(even) {
            margin-left: 0px;
            margin-right: 60px;
            flex-direction: row-reverse;
            & .img_box {
                margin-left: 30px;
                margin-right: 0;
            }
            & .txt_box {
                text-align: right;
            }
        }
    }
}

.container02 section .white_h4_box {
    width: 90%;
    margin: 0 auto 30px;
    border: 2px solid #2371ed;
    background-color: var(--bg-white);
    padding: 30px 24px 0;
    & h4 {
        font-size: 2.4rem;
        color: var(--color-text-blue);
        margin-bottom: 0;
    }
    & p {
        margin: 0 0 30px 22px;
    }
}

.container02 section .lr_flow_lst {
    width: 100%;
    margin-bottom: 65px;
    & ul {
        margin: 10px 1.3rem;
        & li {
            display: flex;
            flex-wrap: wrap;
            background-color: var(--color-bg-lblue);
            & img {
                width: 15%;
                margin: 20px 18px;
            }
            & .step_box {
                width: 80%;
                padding-right: 15px;
                & .ttl {
                    font-size: 2.5rem;
                    font-weight: bold;
                    line-height: 1.68rem;
                    margin-top: 20px;
                    padding-left: 5px;
                    padding-bottom: 10px;
                    border-bottom: 4px solid #000;
                }
                & .con {
                    padding: 5px;
                    margin-top: 15px;
                    & span {
                        color: var(--color-text-purple);
                    }
                }
            }
            &: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%;
    max-width: 1150px;
    margin: 65px auto;
    & .type_list {
        display: grid;
        justify-content: space-evenly;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        padding: 0 20px;

        & .p_dl {
            background-color: var(--bg-white);
            border: 1px solid var(--color-border-blue);
            & .p_dt {
                color: var(--color-text-white);
                font-size: 2.4rem;
                font-weight: bold;
                background-color: var(--color-bg-blue);
                margin-bottom: 20px;
                line-height: 1;
                padding: 8px 10px;
            }
            & .p_dd {
                padding-bottom: 20px;
                & figure {
                    margin-bottom: 20px;
                    & img {
                        margin-inline: auto;
                    }
                }
            }
        }
        & .t_dl {
            font-size: 2.4rem;
            display: flex;
            justify-content: left;
            align-items: flex-start;
            & .t_dt {
                width: 40%;
                text-align: right;
            }
            & .t_dd {
                width: 60%;
            }
        }
    }
}
/*********************************************/
.container02 section .new_relation {
    width: 100%;
    margin-top: 65px;
    & .relation_list {
        width: 100%;
        max-width: 1070px;
        background-color: var(--bg-white);
        border: 1px solid var(--color-border-blue);
        margin-inline: auto;
        padding: 20px;

        & .r_dl {
            font-size: 2.4rem;
            & .r_dt {
                color: var(--color-text-blue);
                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 {
    width: 100%;
    max-width: 1150px;
    background-color: var(--color-bg-lblue);
    margin: 0 auto;
    padding: 15px;
    & h3 {
        width: 100%;
        height: 40px;
        font-size: 2.4rem;
        font-weight: bold;
        line-height: 1;
        background-color: var(--color-bg-blue);
        color: var(--color-text-white);
        padding: 8px 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: var(--color-text-white);
    }
    & td {
        padding: 10px;
        background-color: var(--bg-white);
    }
    & td.center {
        text-align: center;
    }
    & .pp_p1 {
        margin-bottom: 20px;
    }
    & .pp_p2 {
        text-align: right;
    }
}
/*********************************************/
.container02 section .achievement {
    width: 100%;
    max-width: 1150px;
    background-color: var(--bg-white);
    border: 2px solid var(--color-border-blue);
    margin: 0 auto 40px auto;
    padding: 15px 15px 30px 15px;
    & h3 {
        width: 100%;
        height: 40px;
        font-size: 1.3rem;
        font-weight: bold;
        line-height: 40px;
        background-color: var(--color-bg-blue);
        color: var(--color-text-white);
        padding: 0 10px;
    }
    & h4 {
        color: var(--color-text-blue);
        font-size: 2.4rem;
        text-align: center;
    }
    & 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: var(--color-text-white);
    }
    & td {
        padding: 10px;
        background-color: var(--bg-white);
    }
    & td.center {
        text-align: center;
    }
    & .pp_p1 {
        margin-bottom: 20px;
    }
    & .pp_p2 {
        text-align: right;
    }
    & ul {
        width: 100%;
        max-width: 700px;
        display: grid;
        justify-content: space-evenly;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        margin: 0 auto 20px auto;
        text-align: center;
    }
    & li {
        border-bottom: 1px solid #cccccc;
    }
}
.container02 section .achievement_txt {
    width: 100%;
    max-width: 700px;
    margin-inline: auto;

    & p {
        font-size: 3.6rem;
        font-weight: bold;
        text-align: center;

        & span {
            background: linear-gradient(to bottom, transparent 76%, rgba(154, 0, 249, 0.38) 81%, rgba(154, 0, 249, 0.38) 86%);
        }
    }
}
/*********************************************/
.features {
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
    & h5 {
        text-indent: 0;
    }
}
.features .list {
    width: 100%;
    background-color: #f7e9ff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
    padding: 15px;

    & img {
        width: 116px;
        height: 106px;
        flex-shrink: 0;
    }

    & .list_inner {
        flex: 1;
        min-width: 0;
    }

    & ul {
        & .ttl {
            font-size: 2.5rem;
            font-weight: bold;
            border-bottom: 3px solid #973ece;
            margin-bottom: 15px;
            padding-bottom: 10px;
        }
        & .txt {
            font-size: 2rem;
            padding-left: 15px;
        }
    }
}

.features .list:nth-last-child(2) {
    margin-bottom: 40px;
}
.features .comment {
    width: 100%;
    max-width: 1050px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin: 0 auto 65px auto;
    & img {
        width: 301px;
        height: 304px;
    }
    & .comment_txt {
        flex: 1;
        height: 304px;
        background-color: var(--bg-white);
        border: 3px solid #000;
        border-radius: 35px;
        padding: 30px;
        & .ttl {
            font-size: 2.2rem;
            font-weight: bold;
        }
        & .txt {
            font-size: 2.2rem;
            margin-top: 10px;
        }
    }
}
.influencers_dl {
    color: #973ece;
    font-size: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 10px 0 70px 0;
    & dt {
        width: fit-content;
        width: -moz-fit-content;
    }
    & dd {
        flex: 1;
    }
}
.influencers_cards {
    width: 100%;
    max-width: 1070px;
    display: grid;
    justify-content: space-evenly;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px 37px;
    & figure {
        width: 240px;
        background-color: var(--bg-white);
        padding: 15px;
        & img {
            width: 100%;
            margin-bottom: 10px;
        }
        & .ttl {
            font-size: 1.6rem !important;
        }
        & .txt {
            font-size: 1.4rem !important;
        }
    }
}
/*********************************************/
.icon_arrow {
    width: fit-content;
    width: -moz-fit-content;
    display: block;
    margin: 20px auto;
}
/*********************************************/
.contact {
    padding: 0 15px;
}
.mail_form_p {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 30px auto;
}
.mail_form {
    width: 100%;
    max-width: 1050px;
    background-color: var(--bg-white);
    border: 1px solid #bbbbbb;
    border-radius: 5px;
    margin-inline: auto;
    padding: 30px 20px;

    & p {
        margin-bottom: 20px;
    }
    & p:last-of-type {
        margin-bottom: 0;
    }
    & input {
        width: 100%;
        height: 40px;
        padding: 0 10px;
        border: 1px solid #cccccc;
        border-radius: 5px;
        font-size: 1rem;
    }
    & textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #cccccc;
        border-radius: 5px;
        font-size: 1rem;
    }
    & button {
        width: 100%;
        height: 40px;
        background-color: #000;
        border: none;
        border-radius: 5px;
        color: var(--color-text-white);
        cursor: pointer;
    }
}
/*********************************************/
.about_contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 170px;
    & img {
        width: 243px;
        margin-right: 25px;
    }
    & .about_txt {
        flex: 1;
        height: 440px;
        background: url(img/about/about_02.webp) no-repeat center center;
        padding: 30px 50px;
        & p {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        & p:last-of-type {
            margin-bottom: 0;
        }
    }
}
.about_company {
    & h5 {
        text-indent: 0;
    }
}
.about_company_list {
    width: 100%;
    max-width: 1070px;
    background-color: var(--bg-white);
    border: 2px solid var(--color-border-blue);
    margin-inline: auto;
    padding: 40px 30px;
    & dl {
        font-size: 2rem;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    & dl:last-child {
        margin-bottom: 0;
    }
    & dt {
        width: 100px;
    }
    & dd {
        flex: 1;
    }
}
/*********************************************/
.case_contents {
    background-color: var(--bg-white);
    margin-bottom: 70px;
    padding: 30px 0;
    & h4 {
        padding: 0 20px !important;
    }
    &:last-child {
        margin-bottom: 0;
    }
}
.case_contents_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 0 20px;
    & img {
        width: 250px;
        margin-right: 15px;
    }
    & .txt {
        font-size: 2rem;
        flex: 1;
        background-color: var(--color-bg-lblue);
        line-height: 1.8;
        padding: 30px;
    }
}
.case_contents_bottom {
    width: fit-content;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    margin-inline: auto;
    & img + img {
        margin-left: auto;
    }
}
/*****************************************************************************************/
/*****************************************************************************************/
/*****************************************************************************************/
@media (max-width: 1024px) {
    header {
        & nav {
            & ul {
                font-size: 1.4vw;
            }
        }
    }
    .hero_content {
        padding: 0 15px;
        & h1 {
            font-size: 7.2rem;
        }
    }
    /*********************************************/
    /*********************************************/
    .container02 section .im_top_box {
        padding: 15px;
        & .im_top_txt_box {
            padding: 15px;
            & p {
                margin-bottom: 1.2rem;
            }
        }
    }
    .container02 section .sv_flow {
        & li {
            & img {
                width: 300px;
            }
            & .step_box {
                width: initial;
                flex: 1;
                padding: 15px;
            }
        }
    }
    /*********************************************/
    .service_lst {
        padding: 0 15px;
    }

    /*********************************************/
    .features_lst {
        padding: 0 15px;
    }
    /*********************************************/
    .influencers_cards {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px;
        & figure {
            width: initial;
        }
    }
    .case_contents_bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-inline: auto;
    }

    .case_contents_bottom img + img {
        margin-left: initial;
    }
    /*********************************************/
    .about_contents {
        margin-bottom: 70px;
        padding: 15px;
        & .about_txt {
            padding: 15px;
            & p {
                font-size: 1.8rem;
            }
        }
    }
    .about_company {
        & h5 {
            padding-left: 15px;
        }
    }
    .about_company_list {
        width: 97%;
    }
}
/*****************************************************************************************/
/*****************************************************************************************/
/*****************************************************************************************/
@media (max-width: 820px) {
    /*********************************************/
    header {
        & .site-title {
            width: 103px;
            height: 76px;
        }

        & nav {
            display: block;
            position: fixed;
            top: 81px;
            right: 0;
            width: 85%;
            height: calc(100vh - 81px);
            background-color: #fff;
            transform: translateX(100%);
            transition: transform 0.4s ease;
            z-index: 1050;
            overflow-y: auto;
            padding: 30px 20px;
            & ul {
                font-size: 1.4rem;
            }
        }
    }
    /*********************************************/
    footer {
        & .container {
            padding: 50px 0 40px;
            display: block;

            & .footer_logo {
                width: 300px;
                margin-inline: auto;
                padding-left: 0;
            }
            & .footer_content {
                display: flex;
                flex-direction: column;
                margin-left: 0;
                padding: 15px;
                & ul {
                    order: 2;
                    display: block;
                    margin-bottom: 1rem;
                }
                & .company_data {
                    order: 1;
                    margin-bottom: 20px;
                }
                & .footer_copy {
                    order: 3;
                    text-align: center;
                }
            }
        }
    }
    .pcOnly {
        display: none;
    }
    .spOnly {
        display: block;
    }
    /*********************************************/
    .hero {
        background: url("img/hero_sp.webp") center/cover no-repeat;
        padding: 1.5rem;
    }

    .hero_content {
        & img {
            margin: 0 auto;
        }
        & h1 {
            color: var(--color-text-white);
            font-size: 3.2rem;
            text-shadow: 1px 2px 4px rgb(61 70 70);
        }
        & .btn_box {
            margin: 3rem auto 0;
            display: block;
            width: 100%;
            justify-content: space-between;
        }
    }

    .link_btn01 {
        margin-bottom: 15px;
    }
    .link_btn01:hover {
        & span {
            color: var(--color-text-white);
        }
        &: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 {
        & span {
            color: var(--color-text-white);
        }
    }
    /*********************************************/
    /*********************************************/
    .container section,
    .container_2 section {
        width: 100%;
        padding-top: 70px;
    }

    .container section h2,
    .container_2 section h2 {
        font-size: 5rem;
        text-align: center;
        margin-inline: auto;
    }
    .container_2 section h2 {
        margin-left: 0;
    }
    .container section .sub_h2,
    .container_2 section .sub_h2 {
        width: fit-content;
        width: -moz-fit-content;
        margin-inline: auto;
        font-size: 1.8rem;
    }
    .container_2 section .sub_h2 {
        text-align: center;
    }

    /*********************************************/
    .service_lst {
        & li {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 35px;
            & img {
                width: 100%;
            }
            & .service_box {
                width: 100%;
                padding: 15px 15px 0 15px;
                & h3 {
                    font-size: 3.2rem;
                }
                & p {
                    font-size: 1.4rem;
                    margin: 0 0 15px 0;
                }
                & .lnk_btn_box {
                    text-align: right;
                    & a {
                        width: 240px;
                        display: inline-flex;
                        margin-bottom: 0;
                    }
                }
            }
        }
        & li:nth-child(even) {
            flex-direction: column;
        }
        & li:last-child {
            margin-bottom: 0;
        }
    }

    /*********************************************/
    .features_lst {
        display: block;

        & .features_box {
            width: 100%;
            margin-bottom: 0;
            & p {
                padding: 15px;
                font-size: 1.7rem;
            }
            & h3 {
                font-size: 2.4rem;
                margin-top: 10px;
                padding: 0 0 30px 0;
            }
        }
        & .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: var(--bg-white);
                }
            }
        }

        & .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: var(--color-text-white);
            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: var(--bg-white);
        }
        & .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;
        padding: 0 15px 30px 15px;
        display: block;
        & li {
            display: block;
            margin-bottom: 35px;
            align-items: center;

            & .recom_txt {
                margin-left: 0;
                font-size: 2rem;
            }
        }
    }

    /*********************************************/
    .container02 {
        & section {
            margin-bottom: 70px;
        }
    }
    .page_title h2 {
        font-size: 4rem;
        line-height: 1;
    }
    .page_title .sub_h2 {
        margin-top: 20px;
        margin-left: 2rem;
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    /*********************************************/
    .container02 section h3 {
        font-size: 1.8rem;
        padding: 0 10px;
        & span {
            margin-left: 1rem;
            font-size: 1.5rem;
            color: var(--color-text-purple);
        }
    }

    .container02 section h4 {
        font-size: 3rem;
        line-height: 1.3;
        padding: 0 10px;
    }
    /*********************************************/
    .container02 section .im_top_box {
        display: block;
        margin-bottom: 70px;
        padding: 0;

        & img {
            width: 100%;
            height: fit-content;
        }
        & .im_top_txt_box {
            width: 100%;
            padding: 15px;
            & p {
                margin-bottom: 1.2rem;
            }
        }
        & .se_top_txt_box {
            width: 100%;
            padding: 15px;
        }
        & .btn_box {
            margin-top: 30px;
            width: 100%;
            display: block;
            padding: 0 15px;
            & a {
                width: 100%;
                margin-left: 0;
                margin-top: 10px;
                height: 80px;
                & span {
                    font-size: 1.6rem;
                }
            }
            & .link_btn01 {
                &:after {
                    width: 60px;
                    height: 16px;
                }
            }
            & .comment_box {
                width: 100%;
                padding: 15px;
                line-height: 1.6rem;
                background-image: none;
                background-color: var(--bg-white);
                border: 1px solid var(--color-border-black);
                border-radius: 15px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
            }
        }
    }
    .container02 section .sv_flow {
        padding: 0 15px;
        & li {
            display: block;
            padding: 30px 0 0 0;
            & img {
                width: 100%;
                height: 113px;
                object-fit: cover;
                object-position: center;
                margin: 0 0 20px 0;
                padding: 0 15px;
                display: block;
            }
            & .step_box {
                width: 100%;
                padding: 0 15px;

                & .ttl {
                    font-size: 2rem;
                    line-height: 1.6;
                    margin-top: 0;
                    padding-left: 0;
                    padding-bottom: 5px;
                    margin-bottom: 15px;
                }
                & .con {
                    font-size: 1.4rem;
                }
            }
            &: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 {
        & h4 {
            font-size: 2rem;
        }
    }

    /*********************************************/
    .container02 section .ttl_h4_l {
        height: 160px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        background-size: 100%;
        background-position: calc(100% + 120px) center;
        padding: 0 10px;
        & h4 {
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }
    }
    .container02 section .ttl_h4_r {
        height: 160px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        background-size: 100%;
        background-position: calc(0% - 120px) center;
        padding: 30px 10px;
        & h4 {
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }
    }

    /*********************************************/
    .container02 section .after_h4_box {
        width: 100%;
        & p {
            font-size: 1.4rem;
            padding: 0 15px;
        }
    }
    .container02 section ul.plan_lst {
        width: 100%;
        margin: 0;
        padding: 0 15px;
        display: block;
        & li {
            width: 100%;
            min-height: 25rem;
            margin-bottom: 20px;
            padding: 12px 11px;
            & h5 {
                font-size: 2rem;
            }
            & .con {
                padding: 20px 0;
                & .ttl {
                    font-size: 1.8rem;
                    text-indent: 0;
                }
                & p {
                    padding: 5px;
                }
            }
        }
        & li:last-child {
            background-color: var(--bg-white);
            border: 2px solid #1158c9;
            & .con {
                & p {
                    margin-top: 15px;
                }
                & .btn_box {
                    margin-top: 20px;
                    width: 100%;
                    & a {
                        height: 80px;
                        & span {
                            font-size: 1.6rem;
                        }
                    }
                    & .link_btn01 {
                        border: 2px solid var(--color-border-blue);
                        &:after {
                            width: 40px;
                            height: 32px;
                        }
                    }
                }
            }
        }
    }

    .container02 section .report_lst {
        padding: 0 15px;
        & h5 {
            font-size: 1.6rem;
            text-indent: 0;
            margin-bottom: 10px;
        }
        & ul {
            & li {
                display: block;
                margin-bottom: 24px;
                margin-left: 0;
                padding: 30px 15px;
                & .img_box {
                    width: 100%;
                    padding: 0;
                    margin: 0 0 15px 0;
                }
                & .txt_box {
                    width: 100%;
                    & .ttl {
                        font-size: 2rem;
                        padding: 0;
                    }
                }
            }
            & li:nth-child(even) {
                margin-right: 0;
                flex-direction: row-reverse;
                & .img_box {
                    margin-left: 0;
                    margin-right: 0;
                }
                & .txt_box {
                    text-align: left;
                }
            }
        }
    }

    .container02 section .white_h4_box {
        padding: 30px 15px 0 15px;
        & h4 {
            font-size: 1.6rem;
            color: var(--color-text-blue);
            margin-bottom: 0;
            padding: 0;
        }
        & p {
            font-size: 1.4rem;
            margin: 0 0 30px 0;
        }
    }

    .container02 section .lr_flow_lst {
        & h5 {
            font-size: 1.6rem;
            text-indent: 1.3rem;
            margin-bottom: 10px;
        }
        & ul {
            margin: 10px 1.3rem;
            & li {
                display: flex;
                flex-wrap: wrap;
                background-color: var(--color-bg-lblue);
                & img {
                    width: 100%;
                    max-width: 100%;
                    margin: 0;
                    padding: 15px 15px 0 15px;
                }
                & .step_box {
                    width: 100%;
                    padding: 0 15px;
                    & .ttl {
                        font-size: 2rem;
                        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.4rem;
                        padding: 5px;
                        margin-top: 15px;
                        & span {
                            color: var(--color-text-purple);
                        }
                    }
                }
                &: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 {
        margin-top: 45px;
        margin-bottom: 45px;
        & h5 {
            font-size: 1.6rem;
            margin-bottom: 10px;
        }
        & .type_list {
            display: block;
            margin-bottom: 20px;
            padding: 0 15px;
            & .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 {
        margin-top: 45px;
        padding: 0 15px;
        & h5 {
            font-size: 1.6rem;
            text-indent: 0;
            margin-bottom: 10px;
        }
        & .relation_list {
            padding: 10px;
            & .r_dl {
                & .r_dt {
                    color: var(--color-text-blue);
                    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 {
        & table {
            width: 100%;
            margin: 0 auto 20px auto;
        }

        & th {
            padding: 10px;
        }
        & td {
            padding: 10px;
        }
    }

    /*********************************************/
    .container02 section .achievement {
        padding: 15px;
        & h4 {
            color: var(--color-text-blue);
            font-size: 1.2rem;
        }
        & table {
            width: 100%;
            margin: 0 auto 20px auto;
        }

        & ul {
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 10px;
        }
    }
    .container02 section .achievement_txt {
        & p {
            font-size: 1.3rem;
            text-align: left;
        }
    }

    /*********************************************/
    .features {
        padding: 0 15px;
        & h5 {
            font-size: 1.6rem;
            margin-bottom: 10px;
        }
    }
    .features .list {
        & img {
            width: 116px;
            height: 106px;
            flex-shrink: 0;
        }

        & .list_inner {
            flex: 1;
            min-width: 0;
        }

        & ul {
            & .ttl {
                font-size: 1.25rem;
                font-weight: bold;
                border-bottom: 3px solid #973ece;
                margin-bottom: 15px;
                padding-bottom: 10px;
            }
            & .txt {
                padding-left: 15px;
            }
        }
    }

    .features .list:nth-last-child(2) {
    }
    .features .comment {
        display: block;
        margin: 0 auto 30px auto;
        padding: 0 10px;
        & img {
            display: none;
        }
        & .comment_txt {
            height: auto;
            padding: 15px;
            & .ttl {
                font-size: 1.3rem;
                font-weight: bold;
            }
            & .txt {
                margin-top: 10px;
            }
        }
    }
    .influencers_dl {
        display: block;
        padding: 0 20px;
        & dd {
            flex: 1;
        }
    }
    .influencers_cards {
        min-width: 0;
        display: flex;
        justify-content: flex-start;
        gap: 16px;
        overflow-x: auto;
        padding: 0 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    /*********************************************/
    .icon_arrow {
        width: 100%;
    }

    /*********************************************/
    .about_contents {
        display: block;
        margin-bottom: 100px;
        padding: 0 15px;
        & img {
            width: 100%;
            margin-right: 0;
            margin-bottom: 20px;
        }
        & .about_txt {
            height: auto;
            background: url(img/about/about_02.webp) no-repeat center/cover;
            padding: 20px 15px;
        }
    }
    .about_company {
        padding: 0 15px;
        & h5 {
            text-indent: 0;
        }
    }
    .about_company_list {
        width: 100%;
        & dl {
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }
        & dt {
            width: 100%;
        }
        & dd {
            font-weight: normal;
            padding-left: 10px;
        }
    }

    /*********************************************/
    .case_contents {
        margin-bottom: 50px;
        & h4 {
            line-height: 1.4;
            margin-bottom: 20px !important;
        }
        &:last-child {
            margin-bottom: 0;
        }
    }
    .case_contents_top {
        display: block;
        margin-bottom: 20px;
        padding: 0 15px;
        & img {
            margin-inline: auto;
        }
        & .txt {
            flex: 1;
            padding: 30px 15px;
        }
    }
    .case_contents_bottom {
        width: 100%;
        display: block;
        padding: 0 15px;
        & img + img {
            margin-top: 15px;
        }
    }

    header .nav-toggle:checked ~ nav {
        transform: translateX(0);
    }

    header .nav-toggle:checked ~ .nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    header nav ul {
        flex-direction: column;
        gap: 1.8rem;
        margin: 0;
    }

    header nav ul li.contact a {
        width: 100%;
        display: block;
        text-align: center;
    }

    /*********************************************/
    .page_title {
        padding: 0 10px;
    }
    .influencers_cards_wrap {
        width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }

    .influencers_cards figure {
        width: 200px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .influencers_cards::-webkit-scrollbar {
        display: none;
    }
}
