:root {
    --color-base: #333333;
    --color-navy: #0E1F3F;
    --color-gold: #A88B4D;
    --color-gray: #808080;
    --color-white: #FFFFFF;
    --font-yu-gothic: "Yu Gothic", "Hiragino Sans", "Meiryo", sans-serif, serif;
    --font-yu-mincho: "Yu Mincho", serif;
    --font-noto-serif-jp: "Noto Serif JP", serif;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-demibold: 600;
    --weight-bold: 700;
    --section-margin: 80px auto 0;
    --section-padding: 80px;
    --pc-frame-max: 1440px;
    --pc-wide-max: 1080px;
    --pc-content-max: 1000px;
    --pc-side-gutter: clamp(16px, 4vw, 48px);
    --pc-content-gutter: clamp(16px, 3vw, 32px);
}

body {
    color: var(--color-base);
    font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

.blue {
    color: var(--color-navy);
}

.gray {
    color: var(--color-gray);
}

.gold {
    color: var(--color-gold);
}

.mt_12 {
    margin-top: 0.75rem;
}

.text_24 {
    font-size: 1.5rem;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    margin: 0 auto;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: var(--color-navy);
    font-family: var(--font-yu-mincho);
}

@media screen and (min-width: 432px) {
    header {
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
    }

    body.is-pc-header-visible header {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }
}

.header_container_pc {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(calc(100% - (var(--pc-side-gutter) * 2)), var(--pc-frame-max));
    height: 100%;
    margin: 0 auto;
    gap: clamp(24px, 4vw, 100px);
}

.sp_header_container {
    display: none;
}

.sp_hamburger {
    border: none;
    background: transparent;
    padding: 0;
    line-height: 0;
    cursor: pointer;
}

.sp_hamburger img {
    display: block;
}

.sp_menu_modal {
    display: none;
}

.header_logo {
    width: 120px;
    height: auto;
}

.header_left {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.header_navi {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.header_navi_list {
    display: flex;
    align-items: center;
    gap: clamp(4px, 0.7vw, 8px);
    list-style: none;
    letter-spacing: 0.05em;
    font-size: clamp(0.75rem, 0.68rem + 0.22vw, 0.875rem);
}

.header_navi_list a {
    text-decoration: none;
    color: #333;
    font-weight: var(--weight-medium);
    white-space: nowrap;
}

.header_navi_list a:hover {
    color: #37548C;
    text-decoration: underline;
    cursor: pointer;
}

.header_navi_list .gray {
    color: #CCC;
    user-select: none;
}

.header_right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: 100%;
    min-width: 0;
}

.header_cta_button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-gold);
    min-width: clamp(160px, 18vw, 200px);
    height: 100%;
    padding: 0 24px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.05em;
    cursor: pointer;
}

.header_cta_button:hover {
    background-color: #7C6128;
    box-shadow: none;
    color: #CECECE;
    text-decoration: underline;
    cursor: pointer;
}

.header_cta_button p {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: var(--weight-demibold);
    white-space: nowrap;
}

/* ファーストビュー A/Bテスト */
#fv {
    background-image: url(../img/komon/pc/fv_topimg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: start;
    width: 100%;
    overflow-x: clip;
    aspect-ratio: 1440 / 640;
    height: auto;
    margin: 0 auto;
    font-family: 'Noto Serif JP', serif;
}

.fv_head {
    display: flex;
    justify-content: start;
    align-items: center;
    width: min(calc(100% - (var(--pc-content-gutter) * 2)), var(--pc-wide-max));
    margin: 0 auto;
    gap: 1rem;
    color: #FFFFFF;
}

.fv_head p {
    font-size: clamp(0.75rem, 0.69rem + 0.22vw, 14.45px);
    font-weight: bold;
    font-family: 'Noto Serif JP', serif;
    line-height: 1.4;
    letter-spacing: 2%;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.4);
}

.fv_text {
    display: inline-block;
    flex: 1;
    height: auto;
    color: #FFFFFF;
    white-space: pre-line;
    letter-spacing: 3%;
    line-height: 0.925;
    font-size: clamp(2rem, 1.2rem + 3vw, 3.875rem);
    font-weight: normal;
    text-shadow: 4px 4px 4px rgba(14, 31, 63, 0.6);
}

.fv_text2 {
    margin: 0;
    color: #FFFFFF;
    font-size: clamp(1.125rem, 0.9rem + 0.8vw, 1.75rem);
    font-weight: var(--weight-bold);
    line-height: 1.3;
    text-align: center;
    text-shadow: 4px 4px 4px rgba(14, 31, 63, 0.6);
}

.fv_copy_group_secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.fv_text_secondary {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 0;
    white-space: normal;
}

.fv_text_secondary_line {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    white-space: nowrap;
}

.fv_text_secondary_line > span {
    display: inline-block;
    flex: 0 0 auto;
}

.fv_text_span_line1 {
    font-size: clamp(1.625rem, 1rem + 2.2vw, 3.1875rem);
}

.fv_text_span_line2,
.fv_gold_gradient {
    background: linear-gradient(to bottom, #BA9456 0%, #FFC972 51%, #BA9456 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fv_text_span_line2 {
    align-self: flex-end;
    font-weight: var(--weight-demibold);
    letter-spacing: 2%;
}

.fv_text_span_line3 {
    align-self: flex-end;
    font-weight: var(--weight-demibold);
    letter-spacing: 2%;
}

.fv_text_span_line2,
.fv_text_span_line3 {
    font-size: clamp(1.375rem, 0.95rem + 1.5vw, 2.3125rem);
}

.fv_container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: min(calc(100% - (var(--pc-content-gutter) * 2)), var(--pc-wide-max));
    height: 100%;
    padding: 1rem clamp(1.5rem, 4vw, 4.25rem);
    margin: 0 auto;
}

.fv_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    margin: 0 auto;
    gap: 1.875rem;
}

.fv_medals {
    width: min(100%, 355px);
    height: auto;
}

.fv_image_box_secondary .fv_medals {
    max-width: 355px;
    height: auto;
}

.fv_image_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-left: -5rem;
}

.fv_image_box_secondary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: absolute;
    right: -3rem;
    bottom: -7.5rem;
    max-width: 500px;
    width: min(100%, clamp(400px, 26vw, 500px));
}

.fv_annotation {
    margin-top: 0.75rem;
    color: #FFFFFF;
    letter-spacing: 3%;
    font-size: 0.6rem;
    font-weight: 900;
    white-space: nowrap;
}

.fv_image_description {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2.2rem);
    font-size: 0.75rem;
    color: #FFFFFF;
}

.fv_image_description p {
    text-align: center;
    text-shadow: 1px 1px 2px rgba(104, 104, 104, 0.6);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 5%;
}

.fv_image_box_secondary {
    position: absolute;
    bottom: -7.5rem;
    width: clamp(220px, 28vw, 355px);
    max-width: 100%;
}

.fv_image_box_secondary .fv_medals {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
}

.fv_image_box_secondary .fv_image_description {
    width: 100%;
    gap: clamp(0.4rem, 1.2vw, 1.2rem);
}

.fv_image_box_secondary .fv_image_description p {
    font-size: clamp(0.45rem, 0.8vw, 0.7rem);
    white-space: nowrap;
}

.fv_image_box_secondary .fv_annotation {
    font-size: clamp(0.38rem, 0.7vw, 0.6rem);
    white-space: nowrap;
}

/* ?fv=startup */
.fv_content_secondary {
    position: relative;
    gap: 1rem;
    margin-bottom: 2rem;
}

.fv_copy_group_secondary {
    align-items: flex-start;
}

.fv_text_secondary {
    white-space: nowrap;
    line-height: 1.3;
}

.fv_text_secondary_line {
    justify-content: flex-start;
}

.fv_text_secondary_emphasis {
    font-size: 82.5px;
}

.fv_text_secondary_standard,
.fv_text_secondary_body {
    font-size: 62px;
}

.fv_text_secondary_note {
    font-size: 51.5px;
}

.fv_text_secondary_emphasis_shift {
    margin-left: -2rem;
}

.fv_text2_secondary {
    font-size: 37px;
    text-align: left;
}

.el_btn_top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

body.is-pc-header-visible .el_btn_top {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.4s ease;
}

/* 顧問バンク 導入企業 */
#companies {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin: var(--section-margin);
    padding-top: var(--section-padding);
    gap: 2rem;
}

.pc_companies {
    display: block;
    flex-shrink: 0;
}

.sp_companies {
    display: none;
    margin: 0 auto;
}

.companies_images {
    width: 100%;
    overflow-x: hidden;
}

.companies_marquee {
    display: flex;
    width: max-content;
    animation: companies-marquee-scroll 56s linear infinite;
    will-change: transform;
}

.companies_track {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    padding-right: 1rem;
}

@keyframes companies-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .companies_marquee {
        animation: none;
    }
}

/* 顧問バンクとは */
#about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1024px;
    width: 100%;
    height: auto;
    margin: var(--section-margin);
    padding-top: var(--section-padding);
    gap: 2.5rem;
}

.about_text_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.about_text_box p {
    text-align: center;
    font-size: 1.25rem;
    font-weight: medium;
    line-height: 1.5;
    letter-spacing: 5%;
    font-family: var(--font-yu-gothic);
}

.about_text_box.box2 {
    margin-top: -1.25rem;
}

/* 経営者のこんなお悩みを解決！ */
#solution {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    height: auto;
    margin: var(--section-margin);
    padding-top: var(--section-padding);
    gap: 2rem;
}

.solution_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
}

.solution_item {
    background-color: #F8F4EC;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 1.5rem;
    max-width: 480px;
    width: 100%;
    height: 150px;
    padding: 1.5rem;
    border-radius: 5px;
}

.solution_item h4 {
    letter-spacing: 5%;
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    font-family: var(--font-yu-gothic);
}

.solution_bgcard {
    background-image: url('../img/komon/pc/solution_bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.solution_cardbox_frame {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: min(100%, 402px);
    height: 98px;
    margin: auto;
    border: 2px solid rgba(14, 31, 63, 0.7);
}

.solution_cardbox {
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: min(calc(100% - 10px), 392px);
    height: 88px;
    margin: 0 auto;
}

.solution_cardbox h4 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
    font-family: var(--font-yu-gothic);
    letter-spacing: 5%;
    color: var(--color-navy);
}

/* 顧問バンクが選ばれる7つのポイント */
#sevenpoints {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: min(calc(100% - (var(--pc-content-gutter) * 2)), 970px);
    height: auto;
    margin: var(--section-margin);
    padding-top: var(--section-padding);
    gap: 2.5rem;
}

.sevenpoints_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 2.5rem;
}

.sevenpoints_item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.sevenpoints_icon {
    width: 80px;
    height: auto;
}

.sevenpoints_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 0.5rem;
}

.sevenpoints_text h3 {
    font-size: 1.5rem;
    font-weight: var(--weight-demibold);
    font-family: var(--font-yu-mincho);
    letter-spacing: 4%;
}

.sevenpoints_text p {
    font-size: 1.125rem;
    font-weight: var(--weight-medium);
    font-family: var(--font-yu-gothic);
    letter-spacing: 5%;
    line-height: 1;
}

.sevenpoints_text span {
    font-weight: var(--weight-demibold);
    color: var(--color-gold);
}

.sevenpoints_text .sevenpoints_text_big {
    font-size: 2.25rem;
    line-height: 0.6;
}

.sevenpoints_item:nth-child(7) {
    align-items: flex-start;
}

.sevenpoints_item:nth-child(7) .sevenpoints_text {
    gap: 0.25rem;
}

.sevenpoints_item:nth-child(7) .sevenpoints_text p {
    line-height: 1.5;
}

/* 顧問の専門性 */
#speciality {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: min(calc(100% - (var(--pc-side-gutter) * 2)), var(--pc-frame-max));
    height: auto;
    margin: var(--section-margin);
    padding-top: var(--section-padding);
}

.speciality_bg {
    content: '';
    background-color: #F8F4EC;
    position: absolute;
    z-index: 0;
    width: min(calc(100% - (var(--pc-side-gutter) * 2)), 1220px);
    height: 790px;
}

.speciality_top_container {
    background-image: url('../img/komon/pc/speciality_bg.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    top: 0;
    left: 0;
    align-items: start;
    align-self: flex-start;
    width: min(100%, 1047px);
    height: 392px;
    color: #FFFFFF;
}

.speciality_top_container_inner {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    height: 100%;
    padding: 2.5rem clamp(2rem, 8vw, 14rem);
    gap: 0.5rem;
}

.speciality_top_container_inner h2 {
    font-size: 2.5rem;
    font-weight: var(--weight-demibold);
    font-family: var(--font-yu-mincho);
    letter-spacing: 4%;
}

.speciality_top_container_inner p {
    font-size: 1.25rem;
    font-family: var(--font-yu-gothic);
    font-weight: var(--weight-regular);
    letter-spacing: 5%;
}

.speciality_bottom_container {
    position: relative;
    z-index: 2;
    top: -200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 2.5rem;
    width: min(calc(100% - (var(--pc-content-gutter) * 2)), var(--pc-content-max));
    height: auto;
}

.speciality_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.875rem 1.25rem;
}

.speciality_list h4 {
    color: var(--color-navy);
    font-size: 1.5rem;
    font-weight: var(--weight-demibold);
    font-family: var(--font-yu-mincho);
    letter-spacing: 4%;
}

.speciality_item {
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.25rem;
    flex: 1 1 280px;
    width: min(100%, 320px);
    min-height: 320px;
    height: auto;
    padding: 1rem 1.25rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.speciality_item h5 {
    color: var(--color-navy);
    text-align: left;
    line-height: 1.3;
    letter-spacing: 5%;
    font-size: 1rem;
    font-family: var(--font-yu-gothic);
    font-weight: var(--weight-medium);
}

.speciality_item span {
    color: var(--color-gold);
    letter-spacing: 4%;
    font-size: 1.5rem;
    font-weight: var(--weight-demibold);
    font-family: 'Yu Mincho', 'Shippori Mincho', serif;
}

.speciality_item .small {
    font-size: 1rem;
}

.speciality_item_img_box {
    width: auto;
    height: 100px;
}

/* 実際に多いご相談テーマ */
#theme {
    background-image: url(../img/komon/pc/theme_bg.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin: var(--section-margin);
    padding-top: var(--section-padding);
    gap: 2.5rem;
    color: var(--color-navy);
}

.theme_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    max-width: 1004px;
    width: 100%;
}

.theme_item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 calc(50% - 0.625rem);
    width: min(100%, 485px);
    height: 54px;
    border: 1px solid #C9C9C9;
}

.theme_item::before,
.theme_item::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--color-gold);
}

.theme_item::before {
    top: -2px;
    left: -2px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.theme_item::after {
    right: -2px;
    bottom: -2px;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.theme_item h4 {
    font-size: 1.25rem;
    font-weight: var(--weight-medium);
    font-family: var(--font-yu-gothic);
    letter-spacing: 5%;
}

.theme_description_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: min(100%, 600px);
    height: auto;
}

.theme_description_box p {
    font-size: 1.25rem;
    font-weight: var(--weight-demibold);
    font-family: var(--font-yu-mincho);
    letter-spacing: 5%;
    text-align: center;
}

/* 顧問サービス 比較表 */
#compare {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: min(calc(100% - (var(--pc-side-gutter) * 2)), var(--pc-frame-max));
    height: auto;
    margin: var(--section-margin);
    padding-top: var(--section-padding);
    gap: 3rem;
}

#compare h2 {
    color: var(--color-navy);
}

#compare table,
#compare th,
#compare td {
    border: 1px solid #C9C9C9;
}

.compare_table_wrap {
    width: 100%;
}

#compare table {
    position: relative;
    width: min(100%, 1001px);
    height: auto;
    margin: 0 auto;
    table-layout: fixed;
}

#compare table::after {
    content: "";
    position: absolute;
    top: 0;
    left: 22.8771228771%;
    width: 40.1598401598%;
    height: 100%;
    box-shadow: inset 0 0 0 6px var(--color-gold);
    pointer-events: none;
    z-index: 2;
}

#compare table thead {
    height: 63px;
}

#compare th:nth-child(1) {
    width: 22.8771228771%;
}

#compare th:nth-child(2) {
    width: 40.1598401598%;
}

#compare th,
#compare td {
    text-align: center;
    vertical-align: middle;
    padding: 1rem 0.75rem;
}

#compare td span {
    font-weight: var(--weight-bold);
}

#compare thead th {
    font-family: var(--font-yu-gothic);
    font-weight: var(--weight-bold);
    font-size: 1.25rem;
}

#compare thead th:nth-child(n + 2) {
    background-color: var(--color-navy);
    color: #FFFFFF;
}

#compare tbody td:nth-child(1) {
    background-color: #F4F8FF;
    font-size: 1.25rem;
    font-family: var(--font-yu-mincho);
    font-weight: var(--weight-demibold);
    color: var(--color-navy);
    letter-spacing: 5%;
}

#compare tbody td:nth-child(2) {
    background-color: #F8F4EC;
    font-family: var(--font-yu-gothic);
    font-size: 1rem;
}

#compare tbody td:nth-child(2)>* {
    display: block;
}

#compare tbody td:nth-child(2) img {
    margin: 0 auto 0.5rem;
}

#compare tbody td:nth-child(2) p {
    margin: 0;
}

#compare tbody td:nth-child(3) img,
#compare tbody td:nth-child(4) img {
    margin: 0 auto;
}



/* 顧問サービス、本当に自社に合っていますか？ */
#question {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem;
    width: min(calc(100% - (var(--pc-content-gutter) * 2)), var(--pc-content-max));
    height: auto;
    margin: var(--section-margin);
    padding-top: var(--section-padding);
}

.question_title_box {
    background-color: var(--color-navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 0;
    box-shadow: 4px 4px 0 0 rgba(101, 135, 199, 1);
}

.question_title_box_sp {
    display: none;
}

.question_title_box h2 {
    height: 60px;
    padding: 0 1rem;
    margin-top: 0.25rem;
    color: #FFFFFF;
    line-height: 1.8;
    letter-spacing: 4%;
    white-space: nowrap;
    font-size: 2rem;
    font-weight: var(--weight-medium);
    font-family: var(--font-yu-mincho);
}

.question_description_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.question_description_box p {
    letter-spacing: 5%;
    text-align: center;
    font-size: 1.25rem;
    font-family: var(--font-yu-gothic);
    font-weight: var(--weight-regular);
}

.question_list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.question_item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    height: auto;
    padding: 1rem 3rem;
    border-radius: 3px;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.25);
}

.question_item_left {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    gap: 1rem;
    min-width: 0;
}

.question_item_left li,
.question_item_left p {
    letter-spacing: 5%;
    font-size: 1.25rem;
    font-family: var(--font-yu-gothic);
    font-weight: var(--weight-medium);
}

.question_item_left span {
    font-size: 1.25rem;
    font-family: var(--font-yu-gothic);
    font-weight: var(--weight-bold);
}

.question_item_top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.25rem;
}

.question_item_top p {
    font-size: 1.5rem;
    font-weight: var(--weight-demibold);
    font-family: var(--font-yu-mincho);
    letter-spacing: 4%;
}

.question_item_top h3 {
    margin-left: 0.5rem;
    font-size: 2rem;
    font-weight: var(--weight-demibold);
    font-family: var(--font-yu-mincho);
    letter-spacing: 4%;
}

.question_index_icon {
    display: block;
    flex-shrink: 0;
}

.question_item_right {
    width: min(100%, 280px);
    height: auto;
    flex: 0 1 clamp(180px, 24vw, 280px);
}

/* 顧問バンクの登録顧問について */
#advisor {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    width: min(calc(100% - (var(--pc-content-gutter) * 2)), var(--pc-content-max));
    margin: var(--section-margin);
    padding-top: var(--section-padding);
}

.advisor_content_top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    width: min(100%, 723px);
    margin: 0 auto;
}

.advisor_content_top_left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.advisor_content_top_left h3 {
    color: var(--color-navy);
    font-size: 2rem;
    font-weight: var(--weight-demibold);
    font-family: var(--font-yu-mincho);
    letter-spacing: 4%;
}

.advisor_content_top_left p {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: var(--weight-medium);
    font-family: var(--font-yu-gothic);
    letter-spacing: 5%;
}

.advisor_content_banner {
    background-color: var(--color-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 123px;
    height: 35px;
}

.advisor_content_banner p {
    margin-top: 0;
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
    font-family: var(--font-yu-gothic);
    letter-spacing: 4%;
    color: #FFFFFF;
}

.advisor_content_list_container {
    position: relative;
    width: 100%;
    padding: 0.5rem 1rem;
    margin: 0 auto;
}

.advisor_content_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3.125rem;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 2rem 0;
}

.advisor_content_list_container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/komon/pc/advisor_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.advisor_content_list_container>* {
    position: relative;
    z-index: 1;
}

.advisor_content_inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.advisor_content_inner_title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin: 0 auto;
}

.advisor_content_inner_title::before,
.advisor_content_inner_title::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--color-navy);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.advisor_content_inner_title h4 {
    color: var(--color-navy);
    font-size: 1.5rem;
    font-family: var(--font-yu-mincho);
    font-weight: var(--weight-demibold);
    text-align: center;
    letter-spacing: 4%;
}

.advisor_content_inner_text p {
    font-size: 1.25rem;
    font-weight: var(--weight-regular);
    font-family: var(--font-yu-gothic);
    text-align: center;
    letter-spacing: 5%;
    line-height: 1.6;
}

.advisor_content_inner_text span {
    font-family: var(--font-yu-gothic);
    font-weight: var(--weight-bold);
    color: var(--color-gold);
}

.advisor_content_inner_text_span1 {
    font-size: 1.25rem;
}

.advisor_content_inner_text_span2 {
    font-size: 2rem;
    line-height: 1;
    vertical-align: bottom;
}

.advisor_annotation {
    font-size: 0.875rem;
    font-family: var(--font-yu-gothic);
    font-weight: var(--weight-regular);
    letter-spacing: 5%;
    text-align: right;
}

.advisor_regist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.875rem;
    width: 100%;
    margin: 0 auto;
}

.advisor_regist_title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.advisor_regist_title::before {
    content: "";
    width: 1px;
    height: 33px;
    background-color: var(--color-base);
    transform: rotate(144deg);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.advisor_regist_title::after {
    content: "";
    width: 1px;
    height: 33px;
    background-color: var(--color-base);
    transform: rotate(-144deg);
    flex-shrink: 0;
    margin-top: 0.25rem;
    margin-left: -0.75rem;
}

.advisor_regist_title h3 {
    font-size: 1.25rem;
    font-family: var(--font-yu-mincho);
    font-weight: var(--weight-demibold);
    letter-spacing: 7%;
    color: var(--color-navy);
    text-align: center;
}

.advisor_regist_title {
    font-size: 2rem;
}

.advisor_regist_title .span1 {
    color: var(--color-gold);
    font-size: 2rem;
    font-weight: var(--weight-demibold);
}

.advisor_regist_title .span2 {
    font-size: 1.5rem;
    letter-spacing: 7%;
    font-weight: var(--weight-demibold);
}

.advisor_regist_content {
    width: min(100%, 901px);
    height: auto;
    margin: 0 auto;
}

.advisor_regist_content p {
    line-height: 1.5;
    font-size: 1.25rem;
    font-family: var(--font-yu-gothic);
    font-weight: var(--weight-regular);
    letter-spacing: 5%;
    text-align: center;
}

/* 企業様の導入事例 */
#example {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: min(calc(100% - (var(--pc-side-gutter) * 2)), var(--pc-frame-max));
    height: auto;
    margin: var(--section-margin);
    padding-top: var(--section-padding);
}

.example_bg {
    background-image: url('../img/komon/pc/example_bg.webp');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
}

.example_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    width: min(calc(100% - (var(--pc-content-gutter) * 2)), 1023px);
    height: auto;
    padding: 3rem 0;
    margin: 0 auto;
}

.example_item {
    background-color: var(--color-white);
    position: relative;
    flex: 1 1 420px;
    width: min(100%, 460px);
    height: auto;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

.example_item_index_icon {
    position: absolute;
    top: -24px;
    left: -24px;
    display: block;
}

.example_catch {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    gap: 0.5rem;
    height: 260px;
    width: 100%;
    padding: 1rem 2rem;
}

.example_contents .img1 {
    background-image: url('../img/komon/pc/example_hr.webp');
}

.example_contents .img2 {
    background-image: url('../img/komon/pc/example_ai.webp');
}

.example_contents .img3 {
    background-image: url('../img/komon/pc/example_warehouse.webp');
}

.example_contents .img4 {
    background-image: url('../img/komon/pc/example_cosmetic.webp');
}

.example_catch h3 {
    color: var(--color-navy);
    line-height: 1.5;
    text-shadow: 2px 2px 0 #fff;
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    font-family: var(--font-yu-gothic);
}

.example_catch_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
}

.example_catch_text p {
    background-color: var(--color-navy);
    padding: 0.25rem 0.75rem;
    color: white;
    letter-spacing: 5%;
    font-size: 1rem;
    font-weight: var(--weight-bold);
    font-family: var(--font-yu-gothic);
    white-space: nowrap;
}

.example_details {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 1.5rem 0 2rem;
}

.example_detail_item_title {
    display: flex;
    justify-content: row;
    align-items: center;
    gap: 0.5rem;
}

.example_detail_item_title .w_88 {
    flex: 0 0 88px;
}

.example_detail_item_title_text {
    background-color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 25px;
    border-radius: 3px;
    box-sizing: border-box;
    color: white;
    font-weight: var(--weight-bold);
    font-family: var(--font-yu-gothic);
}

.example_detail_item_title_text h5 {
    font-size: 1.125rem;
    font-family: var(--font-yu-gothic);
    font-weight: var(--weight-bold);
    letter-spacing: 5%;
}

.example_detail_item li {
    font-size: 1rem;
    letter-spacing: 5%;
    font-weight: var(--weight-regular);
    font-family: var(--font-yu-gothic);
}

.example_detail_item .d_dot {
    position: relative;
    padding-left: 0.75rem;
}

.example_detail_item .d_dot::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--color-navy);
}

.example_detail_item .d_check {
    position: relative;
    padding-left: 1.5rem;
}

.example_detail_item .d_check::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    transform: translateY(-50%);
    width: 17px;
    height: 13px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='17'%20height='13'%20viewBox='0%200%2017%2013'%20fill='none'%3E%3Cpath%20d='M1.09961%204.94961L6.59961%2010.9996L15.3996%201.09961'%20stroke='%23A88B4D'%20stroke-width='2.2'%20stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.example_detail_item_list {
    position: relative;
    padding: 0.625rem 0.75rem 1.125rem;
    box-sizing: border-box;
}

.example_detail_item_list span {
    font-size: 0.75rem;
    letter-spacing: 5%;
    font-weight: var(--weight-regular);
    font-family: var(--font-yu-gothic);
}

.example_detail_item_list li {
    letter-spacing: 5%;
    line-height: 1.3;
    font-size: 0.96875rem;
    font-family: var(--font-yu-gothic);
    font-weight: var(--weight-regular);
}

/* お申し込みの流れ */
#sequence {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.75rem;
    width: min(calc(100% - (var(--pc-side-gutter) * 2)), var(--pc-frame-max));
    height: auto;
    margin: var(--section-margin);
    padding-top: var(--section-padding);
}

.sequence_container {
    position: relative;
    width: min(calc(100% - (var(--pc-content-gutter) * 2)), 937px);
    height: auto;
    margin: 0 auto;
}

.sequence_list {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.sequence_item {
    --sequence-step-size: 105px;
    --sequence-step-offset-top: 4px;
    --sequence-row-gap: 3.75rem;
    --sequence-line-overlap: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    gap: 2rem;
    width: 100%;
    height: auto;
}

.sequence_item:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: calc(var(--sequence-step-offset-top) + var(--sequence-step-size));
    left: calc((var(--sequence-step-size) - 2px) / 2);
    bottom: calc(var(--sequence-row-gap) * -1 - var(--sequence-step-offset-top) - var(--sequence-line-overlap));
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        #A88B4D 0 3px,
        transparent 3px 7px
    );
}

.sequence_step {
    background-color: var(--color-gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    width: 105px;
    height: 105px;
    border-radius: 5px;
}

.sequence_step p {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
    font-family: var(--font-yu-gothic);
}

.sequence_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    height: auto;
}

.sequence_content h3 {
    color: var(--color-navy);
    margin-bottom: 0.25rem;
    letter-spacing: 1.6px;
    font-size: 1.5rem;
    font-weight: var(--weight-demibold);
    font-family: var(--font-yu-mincho);
}

.sequence_description {
    background-color: #F8F4EC;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    height: auto;
    padding: 1.5rem;
    border-radius: 5px;
}

.sequence_description p {
    letter-spacing: 5%;
    font-size: 1.125rem;
    font-weight: var(--weight-regular);
    font-family: var(--font-yu-gothic);
}

.sequence_description a {
    letter-spacing: 5%;
    font-size: 1.125rem;
    font-weight: var(--weight-bold);
    font-family: var(--font-yu-gothic);
}

/* SATORI */
#contact {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.satori__creative_container {
    width: 100%;
    margin: 0 auto;
}

/* フッター */

footer {
    background-color: var(--color-navy);
    width: 100%;
    height: 107px;
}

.footer_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    height: 100%;
    color: #FFFFFF;
}

.footer_list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
}

.footer_list li {
    font-size: 0.9375rem;
    font-weight: 300;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 1.5px;
}

.footer_container p {
    font-size: 0.6875rem;
    font-weight: 300;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 1.6px;
    color: #DDDDDD;
}

.sp_footer {
    display: none;
}

.d_golddash {
    position: absolute;
    top: 130px;
    left: 52.5px;
}

.d_separateline {
    background-color: var(--color-gold);
    width: 100%;
    height: 1px;
}

.d_slash {
    content: "";
    background-color: var(--color-navy);
    width: 1px;
    height: 33px;
    transform: rotate(35deg);
}

.d_backslash {
    content: "";
    background-color: var(--color-navy);
    width: 1px;
    height: 33px;
    transform: rotate(-35deg);
}

.d_bubble {
    position: relative;
    width: 31px;
    height: 12px;
}

.d_bubble::before,
.d_bubble::after,
.d_bubble span::before,
.d_bubble span::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 8px;
    background: white;
}

/* 内側左 */
.d_bubble::before {
    left: 10px;
    top: 0;
    transform: rotate(-16deg);
}

/* 内側右 */
.d_bubble::after {
    right: 10px;
    top: 0;
    transform: rotate(16deg);
}

/* 外側左 */
.d_bubble span::before {
    left: 2px;
    top: 3px;
    transform: rotate(-35deg);
}

/* 外側右 */
.d_bubble span::after {
    right: 2px;
    top: 3px;
    transform: rotate(35deg);
}

.d_triangle {
    background-color: #FFFFFF;
    width: 24px;
    height: 21px;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.25);
    transform: rotate(90deg);
}

.d_triangle_next {
    width: 16px;
    height: 21px;
    background: white;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    box-shadow:
        inset 1px 1px 2px rgba(0, 0, 0, 0.25),
        0 3px 4px rgba(0, 0, 0, 0.25);
}

.d_solution_bar {
    width: 9px;
    height: 120px;
    background-color: var(--color-navy);
    flex-shrink: 0;
}

.d_specialty_line {
    content: '';
    background-color: var(--color-navy);
    width: min(100%, 200px);
    height: 1px;
}

.el_cta-text {
    color: #FFFFFF;
    font-size: 1.625rem;
}

.el_cta_button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: min(100%, 180px);
    height: 40px;
    border-radius: 50px;
    background: linear-gradient(90deg, #0E1F3F 0%, #2551A5 100%);
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: var(--weight-bold);
    text-decoration: none;
}

.el_cta_button::after {
    content: "";
    width: 8px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='8'%20height='12'%20viewBox='0%200%208%2012'%20fill='none'%3E%3Cpath%20d='M0.672852%200.740234L6.17285%205.74023L0.672852%2010.7402'%20stroke='white'%20stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.el_gb-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.el_gold-button {
    background-color: var(--color-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100%, 360px);
    height: 80px;
}

.el_section_head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.el_section_title_bubble {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: -0.5rem;
}

.el_section_title_bubble p {
    color: var(--color-navy);
    font-size: 1.5rem;
    font-weight: var(--weight-demibold);
    font-family: var(--font-yu-mincho);
    letter-spacing: 4%;
}

.el_cta_banner {
    background-image: url('../img/komon/pc/cta_blue_banner.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 1rem;
    color: #FFFFFF;
}

.el_cta_banner_top {
    background-image: url('../img/komon/pc/cta_blue_banner.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 181px;
    margin: 0 auto;
    gap: 1rem;
    color: #FFFFFF;
}

.el_cta_banner_no1 {
    background-image: url('../img/komon/pc/cta_blue_banner.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 221px;
    margin: 160px auto 0;
    gap: 1rem;
    color: #FFFFFF;
}

#el_cta_banner_contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 298px;
    margin: var(--section-margin);
    padding-top: var(--section-padding);
    gap: 0.5rem;
}

.el_cta_banner_contact_box {
    background-image: url('../img/komon/pc/cta_blue_banner.webp');
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-white);
}

.el_cta_banner_contact_box h2 {
    font-size: 2rem;
    font-family: var(--font-yu-mincho);
    font-weight: var(--weight-demibold);
    letter-spacing: 7%;
}

.el_cta_banner_contact_box p {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-family: var(--font-yu-gothic);
    font-weight: var(--weight-regular);
    letter-spacing: 7%;
    line-height: 1.5;
}

.el_cta_banner_bubble {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

.el_cta_banner_bubble p {
    color: #FFFFFF;
    letter-spacing: 7%;
    line-height: 1.5;
    font-size: 1rem;
    font-weight: var(--weight-demibold);
    font-family: var(--font-yu-gothic);
}

.el_gold_button {
    background-color: var(--color-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100%, 360px);
    height: 80px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.el_gold_button_inner {
    position: relative;
    z-index: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    height: 100%;
    line-height: 1.3;
}

.el_gold_button_inner::before {
    content: "";
    position: absolute;
    top: -180%;
    left: -180%;
    width: 320%;
    height: 70%;
    background: linear-gradient(90deg,
            rgba(255, 209, 116, 0.733) 100%,
            rgb(255, 209, 116) 100%,
            rgb(255, 255, 255) 100%,
            rgb(255, 209, 116) 100%,
            rgba(255, 209, 116, 0.733) 100%);
    filter: blur(14px);
    transform: rotate(-28deg);
    animation: gold-line-sweep 1.2s linear infinite;
    pointer-events: none;
}

.el_gold_button_inner>* {
    position: relative;
    z-index: 1;
}

.el_gold_button_inner img {
    vertical-align: middle;
}

.el_gold_button_inner p {
    color: #FFFFFF;
    letter-spacing: 5%;
    line-height: 30px;
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.25);
    font-size: 1.625rem;
    font-family: var(--font-yu-mincho);
    font-weight: var(--weight-demibold);
}

@keyframes gold-line-sweep {
    0% {
        transform: translate(0%, 0%) rotate(-28deg);
    }

    100% {
        transform: translate(70%, 70%) rotate(-28deg);
    }
}

.el_section_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-yu-mincho);
}

.el_section_title .number {
    color: var(--color-gold);
    font-size: 3.5rem;
    font-family: 'Yu Mincho', 'Shippori Mincho', serif;
}

.el_section_title h2 {
    color: var(--color-navy);
    font-size: 2rem;
    font-weight: var(--weight-demibold);
    letter-spacing: 4%;
    text-align: center;
}

.el_btn_top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    border: none;
    background: transparent;
    padding: 0;
    line-height: 0;
    cursor: pointer;
}

.el_btn_top img {
    display: block;
}

.el_cta_image {
    position: fixed;
    z-index: 999;
    bottom: 6rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 290px;
    gap: 0.5rem;
}

.el_cta_image.is-hidden {
    display: none;
}

.el_cta_image a {
    display: block;
}

.el_cta_image img {
    display: block;
    background-color: #FFFFFF;
    padding: 0.25rem;
    cursor: pointer;
}

.d_close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 999px;
    background-color: var(--color-navy);
    color: #FFFFFF;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(14, 31, 63, 0.24);
}

.d_close::before,
.d_close::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 999px;
}

.d_close::before {
    transform: rotate(45deg);
}

.d_close::after {
    transform: rotate(-45deg);
}

.d_mail_icon {
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 1180px) and (min-width: 401px) {
    .header_container_pc {
        justify-content: space-between;
    }

    .header_navi {
        display: none;
    }
}

@media screen and (max-width: 1024px) and (min-width: 432px) {
    .speciality_top_container_inner {
        padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
    }

    .theme_item {
        flex-basis: 100%;
        margin: 0 1rem;
    }

    .theme_item h4 {
        font-size: 1.05rem;
    }

    .question_item {
        justify-content: center;
    }

    .question_item_top,
    .question_item_bottom,
    .question_item_center {
        width: 100%;
    }

    .sequence_item {
        gap: 1.25rem;
    }
}

@media screen and (max-width: 1200px) and (min-width: 769px) {
    .fv_container.fv_container2 {
        padding-inline: 3rem;
    }

    .fv_content_secondary {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .fv_copy_group_secondary {
        gap: 0.625rem;
    }

    .fv_text_secondary_line {
        font-size: 1.75rem;
    }

    .fv_text_secondary_emphasis {
        font-size: 3.5rem;
    }

    .fv_text_secondary_standard,
    .fv_text_secondary_body {
        font-size: 2.75rem;
    }

    .fv_text_secondary_note {
        font-size: 2.15rem;
    }

    .fv_text_secondary_emphasis_shift {
        margin-left: -1.5rem;
    }

    .fv_text2_secondary {
        font-size: 1.875rem;
    }

    .fv_image_box_secondary {
        right: -1rem;
        bottom: -5.5rem;
        width: min(100%, 320px);
    }

    .fv_image_box_secondary .fv_medals {
        width: 100%;
    }

    .fv_image_box_secondary .fv_image_description {
        gap: 0.875rem;
    }

    .fv_image_box_secondary .fv_image_description p {
        font-size: 0.6rem;
    }

    .fv_image_box_secondary .fv_annotation {
        font-size: 0.5rem;
    }
}

@media screen and (max-width: 1000px) and (min-width: 769px) {
    .fv_image_box_secondary {
        right: 0.5rem;
        bottom: -2.5rem;
        width: min(100%, 260px);
    }

    .fv_image_box_secondary .fv_image_description {
        gap: 1.3rem;
    }

    .fv_image_box_secondary .fv_image_description p {
        font-size: 0.52rem;
    }

    .fv_image_box_secondary .fv_annotation {
        font-size: 0.4rem;
    }
}

@media screen and (max-width: 930px) and (min-width: 432px) {
    .fv_container.fv_container2 {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 769px) and (min-width: 432px) {
    .tb_only {
        display: block;
    }

    .fv_image_box {
        width: min(100%, 280px);
        margin-left: 5rem;
    }

    .fv_medals {
        width: min(100%, 280px);
    }

    .fv_image_description {
        gap: 0.875rem;
        font-size: 0.625rem;
    }

    .fv_image_description p {
        font-size: 0.575rem;
    }

    .fv_annotation {
        margin-top: 0.5rem;
        font-size: 0.5rem;
    }

    .fv_content {
        gap: 0.5rem;
    }

    .fv_content_secondary {
        gap: 0.5rem;
    }

    .fv_container.fv_container2 {
        justify-content: flex-start;
        padding-inline: 2rem;
    }

    .fv_copy_group_secondary {
        gap: 0.5rem;
    }

    .fv_text_secondary_emphasis {
        font-size: 3rem;
    }

    .fv_text_secondary_standard,
    .fv_text_secondary_body {
        font-size: 2.25rem;
    }

    .fv_text_secondary_note {
        font-size: 1.75rem;
    }

    .fv_text_secondary_emphasis_shift {
        margin-left: -1.25rem;
    }

    .fv_text2_secondary {
        font-size: 1.25rem;
    }

    .fv_image_box_secondary {
        right: 0.5rem;
        bottom: 0;
        width: min(100%, 220px);
    }

    .fv_image_box_secondary .fv_medals {
        width: 100%;
    }

    .fv_image_box_secondary .fv_image_description {
        gap: 1rem;
    }

    .fv_image_box_secondary .fv_image_description p {
        font-size: 0.45rem;
    }

    .fv_image_box_secondary .fv_annotation {
        font-size: 0.4rem;
    }

    .solution_cards {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 1.25rem;
    }

    .solution_item {
        width: 100%;
    }

    .question_title_box {
        width: 100%;
        gap: 1rem;
    }

    .question_title_box_sp {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .question_title_box .pc_only {
        display: none;
    }

    .question_title_box h2 {
        height: 42px;
        padding: 0 0.5rem;
        font-size: 1.4rem;
    }

    .question_title_box_sp div:nth-child(1) {
        width: 190px;
    }

    .question_description_box {
        gap: 1rem;
    }

    .question_description_box p {
        font-size: 1rem;
    }

    .question_list {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .question_item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        min-width: 351px;
        height: 420px;
        padding: 1rem;
    }

    .question_item_right {
        width: 100%;
        height: auto;
    }

    .question_item_top {
        gap: 0;
    }

    .question_item_top p {
        font-size: 1.05rem;
        white-space: nowrap;
    }

    .question_item_top h3 {
        font-size: 1.25rem;
        white-space: nowrap;
    }

    .question_item_center li {
        font-size: 0.875rem;
    }

    .question_item_bottom p {
        font-size: 0.875rem;
    }

    .question_item_bottom span {
        font-size: 0.875rem;
    }

    .question_index_icon {
        width: 24.5px;
        height: 24.5px;
    }

    .question_item_right {
        width: 321px;
        height: 210px;
        max-width: 100%;
    }

    .el_section_title h2 {
        font-size: 1.75rem;
    }

    .el_cta_banner_contact_box h2 {
        text-align: center;
        font-size: 1.5rem;
    }

    .sequence_description {
        flex-direction: column;
        align-items: flex-start;
    }

    .sequence_item {
        --sequence-line-overlap: 70px;
    }
}

@media screen and (max-width: 630px) and (min-width: 432px) {
    .fv_image_box_secondary {
        right: 0;
        bottom: -2.75rem;
        width: min(100%, 200px);
    }

    .fv_image_box_secondary .fv_medals {
        width: 100%;
    }

    .fv_image_box_secondary .fv_image_description {
        gap: 0.625rem;
    }

    .fv_image_box_secondary .fv_image_description p {
        font-size: 0.5rem;
    }

    .fv_image_box_secondary .fv_annotation {
        font-size: 0.4375rem;
    }
}

@media screen and (max-width: 600px) and (min-width: 432px) {
    .fv_head p {
        white-space: nowrap;
    }

    .fv_image_box {
        width: min(100%, 240px);
        margin-left: 2.5rem;
    }

    .fv_medals {
        width: min(100%, 240px);
    }

    .fv_image_description {
        gap: 0.625rem;
    }

    .fv_image_description p {
        font-size: 0.5rem;
    }

    .fv_annotation {
        font-size: 0.4375rem;
    }

    .fv_text {
        font-size: 1.75rem;
        white-space: nowrap;
    }

    .fv_text_span_line1 {
        font-size: 1.4375rem;
    }

    .fv_text_span_line2,
    .fv_text_span_line3 {
        font-size: 1.1875rem;
    }

    .fv_text2 {
        font-size: 1rem;
    }

    .fv_text_secondary_emphasis {
        font-size: 1.95rem;
    }

    .fv_text_secondary_standard {
        font-size: 1.5rem;
    }

    .fv_text_secondary_body {
        font-size: 1.2rem;
    }

    .fv_text_secondary_note {
        font-size: 1rem;
    }

    .fv_text2_secondary {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 500px) and (min-width: 432px) {
    .el_cta_banner_top {
        gap: 0;
    }

    .el_cta_banner_bubble {
        margin-top: 1.5rem;
        gap: 0;
    }
}

@media screen and (max-width: 660px) {

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }
    html {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    html.is-sp-menu-open {
        overflow: hidden;
        touch-action: none;
    }

    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body.is-sp-menu-open {
        overflow: hidden;
        touch-action: none;
    }

    body.is-sp-menu-open header {
        background: transparent;
        box-shadow: none;
    }

    body.is-sp-menu-open .sp_header_container {
        opacity: 0;
        pointer-events: none;
    }

    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }

    .header_container_pc {
        display: none;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
    }

    .sp_header_container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }

    .sp_hamburger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    .sp_menu_modal {
        position: fixed;
        inset: 0;
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(14, 31, 63, 0.32);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        z-index: 999999;
    }

    body.is-sp-menu-open .sp_menu_modal {
        display: flex;
    }

    .sp_menu_modal_panel {
        width: min(100%, 382px);
        max-height: calc(100vh - 2rem);
        max-height: calc(100dvh - 2rem);
        background-color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 0;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
    }

    .sp_menu_nav {
        width: 100%;
        max-width: 350px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sp_menu_nav .no_border {
        border-bottom: none;
    }

    .sp_menu_button {
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        border-bottom: 1px solid #D9D9D9;
        font-size: 1rem;
        font-weight: var(--weight-demibold);
        font-family: var(--font-yu-mincho);
        letter-spacing: 5%;
        color: var(--color-navy);
    }

    .sp_menu_button_cta {
        margin-top: 0.5rem;
        background-color: var(--color-gold);
        height: 71px;
        font-weight: var(--weight-medium);
        font-size: 1.25rem;
        color: #FFFFFF;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    }

    #fv {
        background-image: url('../img/komon/sp/fv_topimg.webp');
        height: 520px;
        margin-top: 60px;
        background-position: center 20%;
    }

    .fv_head {
        display: none;
    }

    .fv_container {
        width: 100%;
        padding: 3rem 1rem;
        justify-content: flex-end;
    }

    .fv_text {
        font-size: 2rem;
        font-weight: var(--weight-regular);
    }

    .fv_text_span_line1 {
        font-size: 1.625rem;
    }

    .fv_text_span_line2 {
        font-size: 1.375rem;
    }

    .fv_text_span_line3 {
        font-size: 1.375rem;
    }

    .fv_text_secondary_emphasis {
        font-size: 2.25rem;
    }

    .fv_text_secondary_standard {
        font-size: 1.6875rem;
    }

    .fv_text_secondary_body {
        font-size: 1.375rem;
    }

    .fv_text_secondary_note {
        font-size: 1.125rem;
    }

    .fv_text2_secondary {
        font-size: 1rem;
        text-align: left;
    }

    .fv_text,
    .fv_text2 {
    position: relative;
    z-index: 2;
}

    .fv_container1 .fv_content .fv_text{
    top: 47%;
}
    .fv_content_secondary {
        align-items: flex-start;
        margin-top: 6rem;
    }

    .fv_copy_group_secondary {
        align-items: flex-start;
        width: 100%;
        position: relative;
    }

     .fv_copy_group_secondary h1,
     .fv_copy_group_secondary h2{
        top: 20px;      
     }

    .fv_copy_group_secondary::after {
    content: "";
        position: absolute;
        left: 50%;
        top: 70%;
        transform: translate(-50%, -50%);
        
        width: 100vw; 
        min-height: clamp(200px, 40vw, 300px);
        aspect-ratio: 375 / 140; 

        background: url(../img/komon/sp/fv_band.webp) no-repeat center / cover;
        z-index: 1;
}

.fv_band {
    position: relative;
    z-index: 1;
    width: 100vw;
    min-height: clamp(200px, 40vw, 300px);
    aspect-ratio: 375 / 140;
    margin: -40px 0 20px; /* 上に被せ調整 */
    top: 13%;

    background: url(../img/komon/sp/fv_band.webp) no-repeat center / cover;
}

    .fv_text_secondary {
        gap: 0.75rem;
    }

    .fv_text_secondary_line {
        justify-content: flex-start;
    }

    @media screen and (max-width: 660px){
    .fv_image_box_secondary {
        position: static;
        width: min(100%, 272px);
        margin-left: auto;
        margin-top: 4.5rem;
        transform: translateX(20px) translateY(20px);
    }
 }
 
    .fv_image_box_secondary .fv_medals {
        width: 80%;
        height: auto;
    }

    .fv_image_box_secondary .fv_image_description {
        justify-content: center;
        align-items: center;
        gap: 0.7rem;
    }
    
    .fv_text_secondary_standard {
        margin-right: 1rem;
    }

    .fv_image_box_secondary .fv_image_description p,
    .fv_image_box_secondary .fv_annotation {
        text-align: center;
    }

    .fv_content {
        align-items: center;
        gap: 6rem;
    }

    .fv_container.fv_container2 {
        justify-content: flex-start;
    }

    .fv_medals {
        width: min(80%, 272px);
    }

    .fv_image_description {
        gap: 1.175rem;
    }

    .fv_image_description p {
        font-size: 0.525rem;
    }

    .fv_annotation {
        font-size: 0.45625rem;
        text-align: center;
    }

    .fv_image_box {
        width: min(100%, 272px);
        margin-left: auto;
        transform: translateX(10px) translateY(30px);

    }

    .pc_companies {
        display: none;
    }

    .companies_marquee {
        display: none;
        animation: none;
    }

    .sp_companies {
        display: block;
    }

    #about {
        width: 100%;
        padding: 0 1.5rem;
        padding-top: var(--section-padding);
        margin-top: var(--section-margin);
    }

    .about_text_box {
        gap: 0;
    }
    
    .about_text_box p {
        line-height: 1.6;
        font-size: 1rem;
    }

    .about_image {
        margin-left: 0.5rem;
    }

    #solution {
        width: 100%;
    }

    .solution_cards {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 1.25rem;
    }

    .solution_item {
        gap: 1rem;
        width: 346px;
        height: 108px;
        padding: 1rem;
    }

    .solution_item img {
        max-width: 50px;
        height: auto;
    }

    .solution_item h4 {
        font-size: 1.083125rem;
    }

    .solution_cardbox_frame {
        width: 295px;
        height: 72px;
    }

    .solution_cardbox {
        width: 287px;
        height: 64.5px;
    }

    .solution_cardbox h4 {
        font-size: 0.875rem;
    }

    #sevenpoints {
        width: 100%;
        padding: 0 1.5rem;
        padding-top: var(--section-padding);
        margin-top: var(--section-margin);
    }

    .sevenpoints_item {
        align-items: flex-start;
    }

    .sevenpoints_icon {
        width: 46px;
    }

    .sevenpoints_text h3 {
        line-height: 1.3;
        font-size: 1.25rem;
    }

    .sevenpoints_text p {
        font-size: 1.03125rem;
        line-height: 1.5;
    }

    .sevenpoints_text .sevenpoints_text_big {
        font-size: 1.675rem;
        line-height: 1;
    }

    #speciality {
        width: 100%;
        margin-bottom: 7.5rem;
    }

    .speciality_bg {
        top: 0;
        width: 100%;
        height: 2310px;
    }

    .speciality_top_container {
        width: 100%;
        height: 148px;
    }

    .speciality_bottom_container {
        width: 100%;
        top: -25px;
        height: auto;
        justify-content: flex-start;
    }

    .speciality_top_container_inner {
        width: 100%;
        padding: 1.5rem;
    }

    .speciality_top_container_inner h2 {
        font-size: 1.4rem;
    }

    .speciality_top_container_inner p {
        font-size: 1rem;
    }

    .speciality_list {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    #theme {
        width: 100%;
    }

    .theme_list {
        flex-direction: column;
        gap: 0.75rem;
    }

    .theme_item {
        width: 352px;
        height: 43px;
        flex: auto;
    }

    .theme_item h4 {
        font-size: 1rem;
    }

    .theme_item:nth-child(7) h4 {
        font-size: 0.9rem;
    }

    .theme_description_box {
        width: 100%;
        gap: 1rem;
    }

    .theme_description_box p:nth-child(1) {
        font-size: 0.875rem;
    }

    .theme_description_box p:nth-child(2) {
        font-size: 1.125rem;
    }

    #compare {
        width: 100%;
        padding-left: 1rem;
        padding-top: var(--section-padding);
        margin-top: var(--section-margin);
    }

    .compare_table_wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #compare thead th {
        font-size: 1rem;
    }

    #compare table {
        min-width: 1001px;
    }

    #compare table::after {
        left: 150px;
        width: 300px;
    }

    #compare td {
        padding: 1rem 0.5rem;
    }

    #compare tbody td:nth-child(1) {
        font-size: 1rem;
    }

    #compare tbody td:nth-child(2) p {
        font-size: 0.8rem;
        letter-spacing: 5%;
    }

    #compare th:nth-child(1) {
        background-color: #C9C9C9;
        width: 150px;
    }

    #compare th:nth-child(2) {
        width: 300px;
    }

    #question {
        width: 100%;
        padding: 0 1rem;
    }

    .question_title_box {
        width: 100%;
        gap: 1rem;
    }

    .question_title_box h2 {
        height: 42px;
        padding: 0 0.5rem;
        font-size: 1.4rem;
    }

    .question_title_box_sp {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .question_title_box_sp div:nth-child(1) {
        width: 190px;
    }

    .question_description_box {
        gap: 1rem;
    }

    .question_description_box p {
        font-size: 1rem;
    }

    .question_list {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .question_item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        width: 351px;
        height: 420px;
        padding: 1rem;
    }

    .question_item_top {
        gap: 0;
    }

    .question_item_top p {
        font-size: 1.05rem;
        white-space: nowrap;
    }

    .question_item_top h3 {
        font-size: 1.25rem;
        white-space: nowrap;
    }

    .question_item_center li {
        font-size: 0.875rem;
    }

    .question_item_bottom p {
        font-size: 0.875rem;
    }

    .question_item_bottom span {
        font-size: 0.875rem;
    }

    .question_index_icon {
        width: 24.5px;
        height: 24.5px;
    }

    .question_item_right {
        width: 321px;
        height: 210px;
        max-width: 100%;
    }

    #advisor {
        width: 100%;
    }

    .advisor_title_span {
        font-size: 1.05rem !important;
    }

    .advisor_content_top_left h3 {
        font-size: 1.4rem;
    }

    .advisor_content_top {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 0 1rem;
    }

    .advisor_content_banner {
        width: 92px;
        height: 27px;
    }

    .advisor_content_banner p {
        font-size: 1rem;
    }

    .advisor_content_top_left {
        gap: 0;
        width: 100%;
    }

    .advisor_content_top_left p {
        font-size: 1rem;
    }

    .advisor_content_top_right {
        position: absolute;
        top: 0;
        z-index: -1;
        opacity: 0.25;
        right: 2rem;
        width: 159px;
        height: auto;
    }

    .advisor_regist {
        width: 100%;
    }

    .advisor_regist_content {
        width: 100%;
    }

    .advisor_content_list {
        padding: 3rem 0;
        width: 100%;
    }

    .advisor_content_list_container {
        width: 100%;
    }

    .advisor_content_list {
        width: 100%;
        height: auto;
    }

    .advisor_content_inner_title h4 {
        font-size: 1.125rem;
    }

    .advisor_content_inner_title::before,
    .advisor_content_inner_title::after {
        width: 5.6px;
        height: 5.6px;
    }

    .advisor_content_inner_text p {
        font-size: 1rem;
    }

    .advisor_content_inner_text_span1 {
        font-size: 1rem;
    }

    .advisor_content_inner_text_span2 {
        font-size: 1.625rem;
        vertical-align: center;
    }

    .advisor_content_inner {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .advisor_annotation {
        text-align: center;
    }

    .advisor_regist_title h3 {
        font-size: 1.05rem;
    }

    .advisor_regist_title .span1 {
        font-size: 1.25rem;
    }

    .advisor_regist_title .span2 {
        font-size: 1.25rem;
    }

    .advisor_regist_content {
        padding: 0 1rem;
    }

    .advisor_regist_content p {
        font-size: 1.02rem;
    }

    #example {
        width: 100%;
        padding-top: var(--section-padding);
        margin-top: var(--section-margin);
    }

    .example_list {
        flex-direction: column;
        flex-wrap: nowrap;
        width: 100%;
    }

    .example_item {
        width: 340px;
        height: 540px;
        margin: 0 auto;
    }

    .example_item_index_icon {
        left: -18px;
        width: 60px;
        height: 60px;
    }

    .example_detail_item {
        width: 100%;
    }
    
    .example_bg {
        width: 100%;
        height: 2400px;
    }

    .example_catch {
        width: 340px;
        height: 192px;
        padding: 0.75rem 1.5rem;
    }
    
    .example_catch h3 {
        font-size: 1.21875rem;
    }

    .example_catch_text p {
        padding: 0.25rem 0.5rem;
        font-size: 0.8125rem;
    }

    .example_detail_item_title_text {
        height: 23px;
    }

    .example_detail_item_title_text h5 {
        font-size: 1rem;
        white-space: nowrap;
    }

    .d_separateline {
        width: 100%;
    }

    .example_detail_item_list {
        padding: 0.5rem 0 1rem 0.25rem;
    }

    .example_detail_item_list li {
        padding-left: 0.75rem;
        font-size: 0.895rem;
    }

    .example_detail_item .d_dot {
        padding-left: 1rem;
    }

    .example_detail_item .d_dot::before {
        width: 5px;
        height: 5px;
    }

    .example_details {
        padding: 0.6rem;
    }

    #sequence {
        width: 100%;
        gap: 2.5rem;
        margin-bottom: 7rem;
    }

    .sequence_list {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .sequence_container {
        width: 100%;
        padding: 0 1rem;
    }

    .sequence_item {
        --sequence-step-size: 61px;
        --sequence-step-offset-top: 0px;
        --sequence-row-gap: 1.5rem;
        --sequence-line-overlap: 0px;
        align-items: flex-start;
        width: 100%;
        height: auto;
        gap: 0.75rem;
    }

        @media screen and (max-width: 430px){
    .sequence_description {
        flex-direction: column;
        align-items: flex-start;
        width: 280px;
        max-height: 100px;
        height: auto;
        padding: 0.25rem 0.75rem;
    }            
        }


    .sequence_description p {
        font-size: 1rem;
    }

    .sequence_description span {
        font-size: 0.875rem;
    }

   .sequence_content {
        width: auto;
        height: auto;
    } 

    .sequence_content h3 {
        font-size: 1.2rem;
    }

    .sequence_step {
        width: 61px;
        height: 61px;
    }

    .sequence_step p {
        font-size: 0.8125rem;
    }

    .sequence_step img {
        width: auto;
    }

    .sequence_step img:nth-child(1) {
        height: 22px;
    }
    .sequence_step img:nth-child(2) {
        height: 25px;
    }
    .sequence_step img:nth-child(3) {
        height: 21px;
    }
    .sequence_step img:nth-child(4) {
        height: 30.5px;
    }
    .sequence_step img:nth-child(5) {
        height: 33px;
    }

    #contact {
        width: 100%;
        padding: 0 1rem;
        margin: 2rem auto;
    }

    footer {
        height: 175px;
    }

    .footer_container {
        justify-content: flex-start;
        padding: 1.25rem;
    }

    .footer_list li {
        font-size: 0.9125rem;
    }

    .sp_footer {
        position: fixed;
        z-index: 99999;
        bottom: 0;
        background: linear-gradient(90deg, #0E1F3F 0%, #2551A5 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
        height: 85px;
        transition: opacity 0.3s ease;
    }

    .sp_footer.is-hidden {
    opacity: 0;
    pointer-events: none;
}

    .sp_footer_no1 {
        width: 92px;
        height: auto;
    }

    .sp_footer_bg {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #FFFFFF;
        width: 245px;
        height: 54.5px;
        border-radius: 1.82px;
    }

    .sp_footer_frame {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 240px;
        height: 49px;
        border: 1px solid var(--color-base);
        border-radius: 1.82px;
    }

    .sp_footer_frame p {
        margin-top: 0.125rem;
        font-size: 1.1375rem;
        font-weight: var(--weight-bold);
        font-family: var(--font-yu-gothic);
    }

    .el_gold_button {
        width: 288px;
        height: 64px;
    }

    .d_goldline {
        width: 75%;
        height: auto;
    }

    .d_solution_bar {
        width: 6.5px;
        height: 86.5px;
    }

    .el_section_title {
        gap: 0.5rem;
    }

    .el_gold_button_inner p {
        font-size: 1.3125rem;
        font-weight: var(--weight-medium);
    }

    .el_section_title h2 {
        margin-top: 0.5rem;
        font-size: 1.4rem;
        line-height: 1.125;
    }

    .el_cta_banner_no1 {
        height: 180px;
    }

    .el_section_title_bubble {
        gap: 1rem;
    }

    .el_section_title_bubble p {
        font-size: 1.05rem;
    }

    #el_cta_banner_contact {
        height: 244px;
        margin-top: var(--section-margin);
    }

    .el_cta_banner_contact_box h2 {
        font-size: 1.4rem;
    }

    .el_cta_banner_contact_box .whiteline {
        width: 50%;
        height: auto;
    }

    .el_cta_banner_contact_box p {
        margin-top: 0.5rem;
        font-size: 0.875rem;
    }

    .el_cta_image,
    .el_btn_top {
        display: none;
    }

    .d_slash {
        height: 23px;
    }

    .d_backslash {
        height: 23px;   
    }

    .w_50 {
        width: 50% !important;
        height: auto;
    }

    .scroll-hint-icon-wrap {
        z-index: 9999;
    }

    .scroll-hint-icon {
        z-index: 9999;
    }
}

@media screen and (max-width: 380px){
   .fv_container2 .fv_content_secondary .fv_text_secondary{
    margin-left: -6px;
   }
}