.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Mainimg */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-container {
    position: relative;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 0;
    padding: 0 20px;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.hero-container .hero-content {
    flex: 1;
    max-width: 540px;
}

.hero-container .hero-content .hero-text .hero-subtitle {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 44px;
    position: relative;
}

.hero-container .hero-content .hero-text .hero-subtitle::after {
    content: "";
    display: block;
    background: url(./img/subtitle_bg.svg) no-repeat center;
    width: 288px;
    height: 10px;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.hero-container .hero-content .hero-text .hero-maintitle {
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    background-color: #4B5563;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 288px;
    margin-top: 16px;
    letter-spacing: 1.44px;
}

h1.hero-title {
    margin: 10px 0 40px;
}

.hero-buttons,
.hero-container .mt_buttons {
    width: 357px;
}

.hero-buttons a.hero-btn {
    text-decoration: none;
    padding: 17px 32px;
    border-radius: 60px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 18px;
    position: relative;
}

.hero-container .mt_buttons {
    margin-top: 16px;
}

.hero-container .mt_buttons a.mt-btn {
    display: block;
    border-radius: 60px;
    border: 3px solid #54B8D5;
    background: #FFF;
    box-shadow: 0 3.755px 13.141px 0 rgba(58, 146, 171, 0.40);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    color: #54B8D5;
    font-size: 18px;
    text-decoration: none;
    padding: 14px 0;
    font-weight: 700;
    position: relative;
}

.hero-buttons a.hero-btn::before {
    content: "初回相談無料！";
    font-size: 13px;
    line-height: 32px;
    text-align: center;
    background: url(./img/mainbtn_bg.webp) no-repeat;
    width: 228px;
    height: 42px;
    background-size: 100%;
    position: absolute;
    top: -25px;
    left: 19%;
    color: #54B8D5;
}

.hero-buttons a.hero-btn::after {
    content: "";
    display: block;
    background: url(./img/arrow_blue.svg) #fff no-repeat center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    right: 22px;
    top: 18px;
    transition: all 0.3s ease;
    background-size: 30%;
}

.hero-container .mt_buttons a.mt-btn::after {
    content: "";
    display: block;
    background: url(./img/arrow_white.svg) #54B8D5 no-repeat center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    right: 22px;
    top: 15px;
    transition: all 0.3s ease;
    background-size: 30%;
}

.hero-btn-primary {
    background: linear-gradient(94deg, #54B8D5 8.06%, #9CDBED 97.72%);
    box-shadow: 0 2.492px 8.722px 0 rgba(58, 146, 171, 0.40);
    color: #FFF;
}

.hero-btn-primary:hover,
.hero-container .mt_buttons a.mt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 146, 171, 0.40);
}

.hero-buttons a.hero-btn:hover::after,
.hero-container .mt_buttons a.mt-btn:hover::after {
    transform: translateX(3px);
}

.hero-image {
    position: relative;
    top: 48px;
}

.hero-floating-image {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-30px) rotate(-1deg);
    }
}


/* clients */

.clients-section {
    padding: 32px 0 18px;
}

.clients-logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.clients-scroll {
    display: inline-flex;
    animation: scroll 30s linear infinite;
    gap: 32px;
    align-items: center;
}

.client-logo {
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Problem */

section.problem-section {
    padding: 64px 0;
    position: relative;
}

section.problem-section::before,
section.problem-section::after {
    content: "";
    display: block;
    border-radius: 50%;
    width: 645px;
    height: 645px;
    opacity: 0.3;
    left: -300px;
    top: -100px;
    position: absolute;
    background: radial-gradient(50% 50% at 50% 50%, #A3D1DE 10%, rgba(163, 209, 222, 0.30) 69.71%, rgba(163, 209, 222, 0.00) 100%);
}

section.problem-section::after {
    right: -300px;
    top: 300px;
    left: auto;
}

.problem-section .problem-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

.problem-section .problem-container .problem-header {
    text-align: center;
}

.problem-section .problem-container .problem-header .problem-subtitle {
    font-size: 28px;
    margin: 0 0 40px;
    font-weight: 700;
}

.problem-content {
    text-align: center;
}

.problem-content .problem-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    align-items: center;
    color: #FFF;
}

.problem-highlight-box {
    background: var(--Linear, linear-gradient(281deg, #A3D1DE -14%, #53B8D4 87.56%));
    padding: 12px;
    font-size: 28px;
    font-weight: 700;
}

.problem-description {
    color: #4B5563;
    margin-bottom: 75px;
}

.problem-description p {
    font-size: 20px;
    line-height: 28px;
}

.problem-contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 64px;
    max-width: 1080px;
    margin: 0 auto;
}

.problem-contents h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.problem-contents .problem-details p {
    font-size: 14px;
    letter-spacing: -0.42px;
    font-weight: 350;
}

.problem-contents .problem-details.details01 {
    background: url(./img/detaile_bg01.webp) no-repeat center;
    width: 523px;
    height: 454px;
    color: #FFF;
    padding: 288px 32px 0 154px;
    background-size: 100%
}

.problem-contents .problem-details.details02 {
    background: url(./img/detaile_bg02.webp) no-repeat center;
    width: 459px;
    height: 420px;
    color: #FFF;
    margin-top: 234px;
    padding: 226px 44px 0 90px;
    background-size: 100%;
}

.problem-contents .problem-details.details03 {
    background: url(./img/detaile_bg03.webp) no-repeat center;
    width: 445px;
    height: 442px;
    color: #FFF;
    margin-top: -182px;
    padding: 275px 69px 0 83px;
    background-size: 100%;
    margin-left: 54px;
}

.problem-bg-text {
    position: absolute;
    top: 69%;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: -1;
    transform: translateY(-50%);
    overflow: visible;
}

.problem-section .problem-container ul.problem_list {
    display: none;
}


/* support */

section.support-section {
    background: linear-gradient(180deg, rgba(163, 209, 222, 0.30) 18.32%, rgba(163, 209, 222, 0.03) 90.92%, rgba(255, 255, 255, 0.00) 109.03%);
    padding: 320px 0 140px;
    position: relative;
}

section.support-section::before {
    content: "";
    display: block;
    background: url(./img/support_arrow.svg) no-repeat center;
    width: 100%;
    height: 215px;
    position: absolute;
    top: -28px;
}

section.support-section .support-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

section.support-section .support-container h2 {
    text-align: center;
    margin-bottom: 80px;
}

section.support-section .support-container ul.support_list {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

section.support-section .support-container ul.support_list li {
    list-style: none;
    flex: 1;
    border-radius: 10px;
    border: 1px solid var(--Linear, #A3D1DE);
    background: #FFF;
    padding: 120px 32px 40px;
    position: relative;
}

section.support-section .support-container ul.support_list li::after {
    content: "";
    display: block;
    background: url(./img/support_bg01.svg) no-repeat center;
    width: 65px;
    height: 114px;
    flex-shrink: 0;
    position: absolute;
    right: 16px;
    bottom: -16px;
}

section.support-section .support-container ul.support_list li:nth-child(2):after {
    background: url(./img/support_bg02.svg) no-repeat center;
}

section.support-section .support-container ul.support_list li:nth-child(3):after {
    background: url(./img/support_bg03.svg) no-repeat center;
}

section.support-section .support-container ul.support_list li .list-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    top: -144px;
}

section.support-section .support-container ul.support_list li .list-title p {
    color: #fff;
    padding: 8px 16px;
    background: var(--Linear, linear-gradient(281deg, #A3D1DE -14%, #53B8D4 87.56%));
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    width: fit-content;
}

section.support-section .support-container ul.support_list li p.list-text {
    margin-top: -120px;
    font-weight: 350;
    line-height: 24px;
}

section.support-section .support-container p.sub_text {
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    margin-bottom: 64px;
}

section.support-section .support-container p.sub_text span.bold {
    font-weight: 700;
}

section.support-section .support-container p.sub_text span.line {
    position: relative;
}

section.support-section .support-container p.sub_text span.line::after {
    content: "";
    display: block;
    background: url(./img/text_liine.svg) no-repeat center;
    width: 222px;
    height: 12px;
    position: absolute;
    left: 0;
    bottom: -8px;
}

p.last_text {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 48px;
}

p.last_text span.min {
    background: linear-gradient(93deg, #265CA9 0.8%, #139FB7 49.33%, #00E3C5 97.86%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 48px;
    font-weight: 800;
    font-family: "Zen Old Mincho";
    position: relative;
    z-index: 1;
}

p.last_text span.min::after {
    content: "";
    border: 1px solid #D9D9D9;
    background: #FFF;
    width: 632px;
    height: 42px;
    position: absolute;
    left: -10px;
    z-index: -1;
    bottom: 9px;
}


/* Service */

.service-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-header {
    text-align: center;
    margin-bottom: 64px;
}

.service-subtitle {
    font-size: 28px;
    font-weight: 700;
}

section.service-section .service-container .service_flex {
    display: flex;
    justify-content: center;
    gap: 85px;
    align-items: center;
    margin-bottom: 80px;
}

section.service-section .service-container .service_flex .right_text {
    width: 514px;
}

section.service-section .service-container .service_flex .right_text p {
    font-size: 16px;
    font-weight: 350;
    line-height: 28px;
    margin-bottom: 34px;
}

section.service-section .service-container .service_flex .right_text p:last-of-type {
    margin-bottom: 0;
}

section.service-section p.last_text {
    line-height: 53px;
}

section.service-section p.last_text span.min {
    padding: 0 12px;
}

section.service-section p.last_text span.min::after {
    width: 349px;
    left: 4px;
}

section.service-section .service-container .reason-title {
    display: flex;
    gap: 110px;
    align-items: center;
    margin-top: 120px;
    margin-bottom: 64px;
}

section.service-section .service-container .reason-title .left_title p {
    font-size: 18px;
    font-weight: 400;
    position: relative;
    text-align: center;
    letter-spacing: 0.54px;
    margin-bottom: 8px;
}

section.service-section .service-container .reason-title .left_title p::after {
    content: "";
    display: block;
    background: url(./img/reason_after.svg) no-repeat center;
    width: 200px;
    height: 7px;
    position: absolute;
    bottom: -8px;
}

section.service-section .service-container .reason-title .left_title h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

section.service-section .service-container .reason-title .right_text {
    width: 66%;
}

section.service-section .service-container .reason-title .right_text p {
    line-height: 24px;
    letter-spacing: 1.6px;
}

section.service-section .service-container ul.reason_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 120px;
}

section.service-section .service-container ul.reason_list li {
    width: calc( (100% - 40px) /4);
    list-style: none;
    text-align: center;
    padding: 32px 0 14px;
    border-right: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

section.service-section .service-container ul.reason_list li:nth-child(4),
section.service-section .service-container ul.reason_list li:nth-child(8) {
    border-right: none;
}

section.service-section .service-container ul.reason_list li p {
    font-size: 16px;
    font-weight: 700;
}

section.service-section .service-container ul.reason_list li .img {
    height: 160px;
}

section.service-section .service-container .example-section h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

section.service-section .service-container .example-section ul.example_list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

section.service-section .service-container .example-section ul.example_list li {
    list-style: none;
    width: calc( (100% - 88px) /5);
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    padding: 40px 0 24px;
    text-align: center;
}

section.service-section .service-container .example-section ul.example_list li .icon {
    height: 76px;
    margin-bottom: 6px;
}

section.service-section .service-container .example-section ul.example_list li p {
    font-weight: 700;
    font-size: 16px;
}

section.service-section .service-container .example-section p.attention_text {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

section.service-section .service-container .example-section p.attention_text span {
    padding-left: 1em;
    text-indent: -1em;
}


/* Plan */

section.plan-section {
    padding: 160px 0;
}

section.plan-section .plan-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

section.plan-section .plan-container .plan-header {
    display: flex;
    gap: 67px;
    margin-bottom: 80px;
}

section.plan-section .plan-container .plan-header .plan-subtitle {
    font-size: 28px;
    font-weight: 700;
}

section.plan-section .plan-container .plan-header .plan-highlight {
    width: 70%;
}

section.plan-section .plan-container .plan-header .plan-highlight .plan-highlight-box {
    background: var(--Linear, linear-gradient(281deg, #A3D1DE -14%, #53B8D4 87.56%));
    color: #fff;
    font-size: 28px;
    line-height: 40px;
    padding: 12px 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

section.plan-section .plan-container .plan-header .plan-highlight .plan-description p {
    font-weight: 350;
    line-height: 28px;
}

section.plan-section .plan-container .plan-cards {
    display: flex;
    margin-bottom: 64px;
}

section.plan-section .plan-container .plan-cards .plan-card {
    border-radius: 8px 0 0 8px;
    background: #F9FAFB;
    max-width: 512px;
    flex: 1;
    text-align: center;
    padding: 42px 34px 21px;
}

section.plan-section .plan-container .plan-cards .plan-card.plan-basic {
    border-radius: 0 8px 8px 0;
    color: #fff;
    background: var(--Linear, linear-gradient(281deg, #A3D1DE -14%, #53B8D4 87.56%));
}

section.plan-section .plan-container .plan-cards .plan-card .plan-badge {
    background-color: #ffffff;
    color: #54B9D5;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 700;
    font-weight: 500;
    border-radius: 40px;
    border: 2px solid #54B9D5;
    width: fit-content;
    margin: 0 auto 8px;
}

section.plan-section .plan-container .plan-cards .plan-card.plan-basic .plan-badge {
    background-color: transparent;
    color: #FFF;
    border: 1px solid #fff;
    font-weight: 400;
}

section.plan-section .plan-container .plan-cards .plan-card .plan-card-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 37px;
    margin-bottom: 8px;
}

section.plan-section .plan-container .plan-cards .plan-card.plan-basic {
    position: relative;
}

section.plan-section .plan-container .plan-cards .plan-card.plan-basic::before {
    content: "人気プラン";
    font-size: 16px;
    color: #54B9D5;
    text-align: center;
    font-weight: 700;
    background: url(./img/plan-basic_bg.svg) no-repeat center;
    width: 204px;
    height: 65px;
    position: absolute;
    top: -26px;
    line-height: 48px;
    left: 30%;
}

.plan-comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #4B5563;
}

.plan-comparison-header .plan-comparison-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #F9FAFB;
    border-radius: 8px 0 0 0;
    min-width: 400px;
}

.plan-comparison-header .plan-comparison-title.plan-basic {
    border-radius: 0 8px 0 0;
    padding: 21px 0;
    color: #fff;
    background: var(--Linear, linear-gradient(281deg, #A3D1DE -14%, #53B8D4 87.56%));
}

.plan-comparison-title:first-child {
    grid-column: 2;
}

.plan-comparison-title:last-child {
    grid-column: 3;
}

.plan-comparison-header .plan-comparison-title span.plan-icon {
    position: relative;
    top: 4px;
}

.plan-comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #D9D9D9;
    align-items: center;
    min-height: 116px;
}

.plan-comparison-row .plan-feature-name {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 32px;
}

.plan-feature-value {
    text-align: center;
    font-size: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 396px;
}

.plan-feature-value.plan-trial {
    background-color: #F9FAFB;
    padding: 32px 0;
    height: 100%;
}

.plan-feature-value.close span {
    position: relative;
    top: 8px;
}

.plan-feature-detail {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}

table.comparison {
    max-width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    margin-top: 80px;
    table-layout: fixed;
}

table.comparison th,
table.comparison td {
    padding: 24px 0;
    text-align: center;
    border-bottom: 1px solid #D9D9D9;
    font-size: 21px;
    font-weight: 700;
    line-height: 32px;
}

table.comparison th {
    border-bottom: 1px solid #585858;
    width: 274px;
    border-right: 1px solid #D9D9D9;
}

table.comparison th:first-child,
table.comparison th:last-child {
    border-right: none;
}

table.comparison th:last-child {
    border-radius: 0 8px 0 0;
}

table.comparison td.gray,
table.comparison th.gray {
    background: #f5f7fa;
}

table.comparison th.highlight {
    border-radius: 8px 0 0 0;
    background: var(--Linear, linear-gradient(281deg, #A3D1DE -14%, #53B8D4 87.56%));
    color: #fff;
}

table.comparison td:first-child,
table.comparison th:first-child {
    font-size: 20px;
    width: 200px;
}

table.comparison td:nth-child(2),
table.comparison td:nth-child(3) {
    border-right: 1px solid #D9D9D9;
}


/* 記号の色付け */

table.comparison td.circle {
    color: #A1C854;
    text-align: center;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #A1C854;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}

table.comparison td.triangle,
table.comparison td.cross {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}


/* Flow */

.flow-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 120px;
}

.flow-header {
    text-align: center;
    margin-bottom: 64px;
}

.flow-subtitle {
    font-size: 28px;
    font-weight: 700;
}

.flow-container ul.flow_list li {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-bottom: 80px;
    position: relative;
}

.flow-container ul.flow_list li::after {
    content: "";
    display: block;
    background: url(./img/flow_arrow.svg) no-repeat center;
    width: 51px;
    height: 38px;
    position: absolute;
    left: 29px;
    bottom: -62px;
}

.flow-container ul.flow_list li:last-child:after {
    display: none;
}

.flow-container ul.flow_list li:last-child {
    margin-bottom: 0;
}

.flow-container ul.flow_list li .step {
    color: #fff;
    background-color: #70CEE8;
    text-align: center;
    width: 111px;
    height: 111px;
    border-radius: 50%;
    padding: 21px;
}

.flow-container ul.flow_list li .step p {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3.52px;
    margin-bottom: 4px;
}

.flow-container ul.flow_list li .step img {
    height: 36px;
    width: auto;
}

.flow-container ul.flow_list li .right_text {
    width: 81.5%;
}

.flow-container ul.flow_list li .right_text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.flow-container ul.flow_list li .right_text p {
    font-size: 14px;
    line-height: 21px;
}


/* Works */

section.works-section .works-container {
    max-width: 1590px;
    margin: 170px auto 0;
    display: flex;
    align-items: center;
    gap: 60px;
}

section.works-section .works-container .works-header h2 {
    text-align: center;
}

section.works-section .works-container .works-header p.works-subtitle {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

section.works-section .works-container .works-header p.works-description {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

section.works-section .works-container .works-header p.works-description.-last {
    margin-top: 20px;
}

section.works-section .works-container .works_flex {
    width: 34.5%;
    margin-top: 80px;
}

section.works-section .works-container .works_flex.left_img {
    position: relative;
    left: -4%;
}

section.works-section .works-container .works_flex.right_img {
    position: relative;
    right: -4%;
}

section.works-section .works-container .works_flex .flex {
    display: flex;
    gap: 24px;
}

section.works-section .works-container .works_flex .flex.-last {
    margin-top: 24px;
}

section.works-section .works-container .works_flex img {
    width: 100%;
    height: 100%;
}

.works_img01,
.works_img03,
.works_img06,
.works_img08 {
    position: relative;
    top: -80px;
}

section.works-section .works-container.sp {
    display: none;
}


/* Case-study */

section.case-study {
    background: url(./img/case_bg.webp) no-repeat center;
    margin: 120px 0;
}

section.case-study .case-study-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 120px 20px 0;
}

section.case-study .case-study-container ul.case-study_list.pc {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

section.case-study .case-study-container ul.case-study_list.pc li {
    list-style: none;
    width: calc( (100% - 50px) / 3);
}

section.case-study .case-study-container ul.case-study_list li:first-child .case-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

section.case-study .case-study-container ul.case-study_list li:first-child p.bg_gra {
    text-align: center;
    color: #fff;
    background: var(--Linear, linear-gradient(281deg, #A3D1DE -14%, #53B8D4 87.56%));
    padding: 12px 8px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

section.case-study .case-study-container ul.case-study_list li:first-child p.description {
    font-weight: 350px;
    line-height: 24px;
}

section.case-study .case-study-container ul.case-study_list.pc li.voice_list {
    border-radius: 12px;
    background: #FFF;
    filter: drop-shadow(0 0 1.5px #4EB3CF);
}

.slick-slider .slick-list {
    border-radius: 12px;
    background: #FFF;
    filter: drop-shadow(0 0 1.5px #4EB3CF);
}

ul.case-study_list li.voice_list .logo_img {
    height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #E2E2E2;
}

ul.case-study_list li.voice_list .text {
    padding: 20px;
}

ul.case-study_list li.voice_list .text p.company_name {
    font-size: 11px;
    margin-bottom: 2px;
}

ul.case-study_list li.voice_list .text p.name {
    font-size: 11px;
}

ul.case-study_list li.voice_list .text p.name span {
    font-weight: 700;
    font-size: 14px;
}

ul.case-study_list li.voice_list .text p.detal {
    font-size: 12px;
    font-weight: 350;
    line-height: 18px;
    margin-top: 14px;
    letter-spacing: -0.28px;
}

section.case-study .case-study-container ul.case-study_list li.voice_list .text p span.bold {
    font-weight: 700;
    font-size: 11px;
    margin-left: 2px;
}

section.case-study .case-study-container ul.case-study_list li.voice_list .text p span.margin {
    margin-left: 2px;
}


/* FAQ section styles */

section.faq-section {
    padding: 30px 0 100px;
}

section.faq-section .faq-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

section.faq-section .faq-container .faq-header {
    margin-bottom: 64px;
}

section.faq-section .faq-container .faq-subtitle {
    font-size: 28px;
    font-weight: 600;
}

section.faq-section .faq-container .faq-item {
    background-color: #fff;
    border-top: 1px solid #D9D9D9;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

section.faq-section .faq-container .faq-item:last-of-type {
    border-bottom: 1px solid #D9D9D9;
}

section.faq-section .faq-container .faq-item.active .faq-question {
    border-bottom: 1px solid #D9D9D9;
}

section.faq-section .faq-container .faq-item:hover {
    background-color: #F9FAFB;
}

section.faq-section .faq-container .faq-question {
    display: flex;
    align-items: center;
    padding: 32px 0;
    margin: 0 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    background: none;
    max-width: 100%;
    text-align: left;
}

section.faq-section .faq-container .faq-question:hover {
    background-color: #f8f9fa;
}

section.faq-section .faq-container .faq-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 16px;
    font-weight: bold;
    position: relative;
}

section.faq-section .faq-container .faq-icon-q {
    background: linear-gradient(269deg, #A3D1DE 1.87%, #53B8D4 83.31%);
    color: #fff;
}

section.faq-section .faq-container .faq-icon-q span {
    position: absolute;
    top: -4px;
}

section.faq-section .faq-container .faq-icon-a {
    background-color: #fff;
    border: 2px solid #54B8D4;
    color: #fff;
    user-select: none;
    color: #54B8D4;
}

section.faq-section .faq-container .faq-icon-a span {
    position: absolute;
    top: -4px;
    user-select: none;
}

section.faq-section .faq-container .faq-question-text {
    flex: 1;
    font-size: 18px;
    font-weight: 350;
    line-height: 28px;
    user-select: none;
}

.faq-toggle {
    margin-left: 16px;
    flex-shrink: 0;
}

.faq-arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('./img/icon-arrow-down.svg') center center no-repeat;
    background-size: 16px 16px;
    vertical-align: middle;
    font-size: 0;
    transition: background-image 0.2s;
}

.faq-item.active .faq-arrow {
    background-image: url('./img/icon-arrow-up.svg');
}

.faq-answer {
    display: none;
    padding: 12px 64px 24px 24px;
}

.faq-item.active .faq-answer {
    display: flex;
    align-items: flex-start;
    animation: fadeIn 0.3s ease;
}

.faq-answer-text {
    flex: 1;
    font-size: 16px;
    line-height: 28px;
    font-weight: 350;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Check */

section.check-section {
    background: linear-gradient(180deg, #FFF 52.47%, #E3F1F5 133.65%);
    padding-bottom: 180px;
}

section.check-section .check-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

section.check-section .check-container .check-header {
    text-align: center;
    background: #fff;
    position: relative;
    top: 64px;
    width: fit-content;
    margin: 0 auto;
}

section.check-section .check-container .check-header p.check-subtitle {
    font-weight: 700;
    font-size: 28px;
}

section.check-section .check-container .check_contents {
    border-radius: 20px;
    background: #fff;
    border: 1px solid #53B8D4;
    padding: 134px 16px 80px;
}

section.check-section .check-container .check_contents .check_list {
    max-width: 800px;
    margin: 0 auto 32px;
}

section.check-section .check-container .check_contents .check_list p.bg_gra {
    background: var(--Linear, linear-gradient(281deg, #A3D1DE -14%, #53B8D4 87.56%));
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding: 8px 16px;
    width: fit-content;
    margin-bottom: 16px;
}

section.check-section .check-container .check_contents .check_list p.check_text {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 21px;
}

section.check-section .check-container .check_contents .check_list ul.check_item li {
    list-style: none;
    margin-bottom: 16px;
}

section.check-section .check-container .check_contents .check_list ul.check_item li:last-child {
    margin-bottom: 0;
}

section.check-section .check-container .check_contents .check_list ul.check_item p.check_title {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 4px;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 12px;
}

section.check-section .check-container .check_contents .check_list ul.check_item li p.text {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin-left: 16px;
}

@media (max-width: 1180px) {
    section.support-section .support-container ul.support_list li .list-title p {
        font-size: 23px;
    }
    section.support-section .support-container h2 img {
        width: 80%;
        height: auto;
        margin: 0 auto;
    }
    .problem-bg-text {
        display: none;
    }
    .problem-section .problem-container .problem-contents {
        display: none;
    }
    .problem-section .problem-container ul.problem_list {
        display: block;
        text-align: center;
    }
    .problem-section .problem-container ul.problem_list li {
        list-style: none;
        margin-bottom: 40px;
    }
    .problem-section .problem-container ul.problem_list li h3 {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        margin: 16px 0 12px;
    }
    .problem-section .problem-container ul.problem_list li:last-child {
        margin-bottom: 0;
    }
    .problem-section .problem-container ul.problem_list li p {
        text-align: left;
        font-size: 14px;
        width: 335px;
        margin: 0 auto;
        font-weight: 350;
        line-height: 21px;
    }
    section.problem-section::after {
        top: 50%;
    }
    .cv-inner {
        max-width: 100%;
    }
    .plan-feature-value,
    .plan-comparison-header .plan-comparison-title {
        min-width: 375px;
    }
    table.comparison {
        width: 100%;
    }
    table.comparison th {
        width: 85px;
    }
    table.comparison td:first-child,
    table.comparison th:first-child {
        width: 80px;
    }
    section.works-section .works-container {
        gap: 0;
    }
}

@media (max-width: 896px) {
    header.header .btn_flex {
        flex-direction: row;
    }
    .hero-section {
        min-height: auto;
    }
    .hero-container {
        margin: 46px auto 0;
        height: 100%;
    }
    .hero-container {
        flex-direction: column;
    }
    .hero-buttons,
    .hero-container .mt_buttons {
        display: none;
    }
    .header.scrolled .btn_flex {
        display: none;
    }
    .hero-container {
        align-items: center;
    }
    .hero-floating-image {
        position: relative;
        top: -45px;
        left: 230px;
        max-width: 50%;
    }
    section.hero-section .sp_btn {
        padding: 20px 0 30px;
        position: fixed;
        z-index: 10;
        bottom: 0;
        width: 100%;
        background: #fff;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        border-top: 1px solid #D9D9D9;
    }
    section.hero-section .sp_btn.is-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    section.hero-section .sp_btn .btn_flex {
        flex-direction: row;
        justify-content: center;
    }
    section.hero-section .sp_btn .btn_flex .mt_buttons {
        width: 234px;
    }
    section.hero-section .sp_btn .btn_flex a.mt-btn {
        font-size: 16px;
        padding: 11px 24px;
        text-align: center;
    }
    section.hero-section .sp_btn .btn_flex a.mt-btn::after {
        width: 20px;
        height: 20px;
        top: 14px;
        right: 14px;
        background: url(./img/arrow_white.svg) #54B8D5 no-repeat 8px 5px;
        background-size: 25%;
    }
    .clients-section {
        border-bottom: 1px solid #E7E7E7;
    }
    section.support-section .support-container ul.support_list {
        flex-direction: column;
    }
    p.last_text {
        font-size: 30px;
        line-height: 34px;
    }
    p.last_text span.min {
        font-size: 48px;
    }
    p.last_text span.min::after {
        width: 633px;
    }
    section.service-section .service-container .service_flex {
        gap: 32px;
    }
    section.service-section p.last_text span.min::after {
        width: 350px;
    }
    section.service-section .service-container .reason-title {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 32px;
    }
    section.service-section .service-container .reason-title .right_text {
        width: 100%;
    }
    section.service-section .service-container ul.reason_list li {
        width: calc( 100% / 2);
    }
    section.service-section .service-container ul.reason_list li:nth-child(4),
    section.service-section .service-container ul.reason_list li:nth-child(6) {
        border-right: 1px solid #D9D9D9;
    }
    section.service-section .service-container .example-section ul.example_list li {
        width: calc( (100% - 32px) /3);
    }
    .btn_flex {
        flex-direction: column;
        gap: 24px;
    }
    section.support-section .support-container ul.support_list li .list-title p span.sp {
        display: inline-block;
    }
    section.support-section .support-container ul.support_list {
        gap: 64px;
    }
    section.plan-section .plan-container .plan-header {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    section.plan-section .plan-container .plan-header .plan-highlight {
        width: 85%;
    }
    .plan-feature-value,
    .plan-comparison-header .plan-comparison-title {
        min-width: 326px;
    }
    section.works-section .works-container.pc {
        display: none;
    }
    section.works-section .works-container.sp {
        display: block;
        max-width: 1590px;
        margin: 120px auto 0;
        padding: 0 20px;
    }
    section.works-section .works-container.sp h2 {
        text-align: center;
    }
    section.works-section .works-container.sp ul.works_list {
        display: none;
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 40px;
    }
    section.works-section .works-container.sp ul.works_list li {
        width: 262px;
        list-style: none;
    }
    section.case-study .case-study-container .case-study_list.pc {
        display: none!important;
    }
    section.case-study .case-study-container .case-study__header {
        text-align: center;
    }
    section.case-study .case-study-container .case-study__header h2 img {
        width: 60%;
        height: auto;
    }
    section.case-study .case-study-container .case-study__header p.case-subtitle {
        font-size: 44px;
        font-weight: bold;
        margin-bottom: 48px;
    }
    section.case-study .case-study-container .case-study__header p.bg_gra {
        text-align: center;
        color: #fff;
        background: var(--Linear, linear-gradient(281deg, #A3D1DE -14%, #53B8D4 87.56%));
        padding: 16px 8px;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 24px;
        width: fit-content;
        margin: 0 auto 40px;
    }
    section.case-study .case-study-container .case-study__header p.description {
        text-align: left;
        font-size: 20px;
        max-width: 559px;
        line-height: 32px;
        margin: 0 auto;
    }
    ul.case-study__slider {
        margin: 24px auto 0;
        list-style: none;
        padding: 0;
    }
    .case-study__counter {
        margin-top: 15px;
        font-size: 16px;
        font-weight: 500;
        color: #333;
        text-align: center;
        color: #A3D1DE;
        font-size: 20px;
    }
    .case-study__counter {
        text-align: center;
        margin-top: 18px;
    }
    .case-study__counter .slick-dots {
        display: flex;
        justify-content: center;
        gap: 16px;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .case-study__counter .slick-dots li button {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #fff;
        border: none;
        padding: 0;
        cursor: pointer;
        border: 1px solid #A3D1DE;
    }
    .case-study__counter .slick-dots li.slick-active button {
        background: #A3D1DE;
    }
    .slick-prev,
    .slick-next {
        border-radius: 50%;
        background: #FFF;
        box-shadow: 0 4px 14px 0 #C5E2EA;
        width: 48px;
        height: 48px;
        cursor: pointer;
    }
    .slick-prev {
        background: url(./img/arrow_left.svg) #FFF no-repeat center;
        left: -14px;
        position: absolute;
        top: 5%;
        z-index: 1;
    }
    .slick-next {
        background: url(./img/arrow_right.svg) #FFF no-repeat center;
        position: absolute;
        right: -14px;
        top: 5%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }
    .hero-container {
        padding: 0 50px;
        justify-content: flex-start;
    }
    h1.hero-title img {
        width: 275px;
        height: 168px;
    }
    .hero-container .hero-content .hero-text .hero-subtitle::after {
        width: 275px;
    }
    .hero-container .hero-content .hero-text .hero-subtitle {
        font-size: 16px;
        line-height: 31px;
        text-align: center;
    }
    h1.hero-title {
        margin: 15px 0 25px;
    }
    .hero-floating-image {
        top: -60px;
        left: 88px;
    }
    .hero-container .hero-content .hero-text .hero-maintitle {
        width: 274px;
        font-size: 20px;
        height: 35px;
        line-height: 35px;
    }
    section.hero-section .sp_btn {
        padding: 20px 10px 30px;
        z-index: 90;
    }
    .client-logo {
        height: 43px;
    }
    .cta-button-container,
    section.hero-section .sp_btn .btn_flex .mt_buttons {
        width: 162px;
    }
    section.hero-section .sp_btn .btn_flex {
        gap: 10px;
    }
    a.cta-button {
        font-size: 14px;
        padding: 9px 24px 9px 10px;
        height: 40px;
    }
    section.hero-section .sp_btn .btn_flex a.mt-btn {
        padding: 0;
        height: 40px;
        line-height: 36px;
        font-size: 14px;
    }
    a.cta-button::before {
        left: 15%;
    }
    a.cta-button::after,
    section.hero-section .sp_btn .btn_flex a.mt-btn::after {
        width: 16px;
        height: 16px;
        right: 8px;
        top: 12px;
        background-size: 28%;
    }
    section.hero-section .sp_btn .btn_flex a.mt-btn::after {
        right: 8px;
        top: 10px;
        background: url(./img/arrow_white.svg) #54B8D5 no-repeat 6px 4px;
        background-size: 28%;
    }
    .problem-section .problem-container .problem-header .problem-title img {
        width: 179px;
        height: auto;
    }
    .problem-section .problem-container .problem-header .problem-subtitle {
        font-size: 20px;
        margin: 0 0 24px;
    }
    .problem-highlight-box {
        font-size: 15px;
        padding: 7px 11px;
    }
    .problem-content .problem-highlights {
        gap: 4px;
        margin-bottom: 32px;
    }
    section.problem-section::before {
        display: none;
    }
    .problem-description p {
        font-size: 16px;
        line-height: 23px;
        text-align: left;
    }
    .problem-section .problem-container ul.problem_list {
        margin-top: -24px;
    }
    .problem-section .problem-container ul.problem_list li h3 {
        margin: 12px 0;
    }
    .problem-section .problem-container ul.problem_list li p {
        width: auto;
        letter-spacing: -0.28px;
    }
    section.problem-section {
        padding: 64px 0 0;
    }
    section.support-section::before {
        top: -80px;
        z-index: -1;
    }
    section.support-section {
        padding: 160px 0 64px;
        z-index: -1;
    }
    section.support-section .support-container h2 {
        margin-bottom: 64px;
    }
    section.support-section .support-container ul.support_list li {
        padding: 120px 16px 12px;
    }
    section.support-section .support-container ul.support_list li:nth-child(2) {
        padding: 120px 16px 20px;
    }
    section.support-section .support-container ul.support_list li:nth-child(3) {
        padding: 120px 16px 0px;
    }
    section.support-section .support-container ul.support_list li .list-title p {
        font-size: 18px;
        width: 296px;
        padding: 0px 22px;
    }
    section.support-section .support-container ul.support_list li:nth-child(3) .list-title p {
        width: fit-content;
        margin: 0 auto;
    }
    section.support-section .support-container ul.support_list li p.list-text {
        font-size: 14px;
        line-height: 21px;
    }
    section.support-section .support-container ul.support_list li .list-title {
        align-items: center;
    }
    section.support-section .support-container p.sub_text {
        font-size: 20px;
        line-height: 30px;
    }
    section.support-section .support-container p.sub_text span.line::after {
        width: 160px;
        height: 13px;
    }
    section.support-section .support-container p.sub_text span.line {
        margin-bottom: 10px;
        display: inline-block;
    }
    p.last_text span.min {
        font-size: 32px;
    }
    p.last_text span.min::after {
        width: 257px;
        height: 32px;
        left: -3px;
        bottom: 39px;
    }
    section.support-section p.last_text span.min::before {
        content: "";
        border: 1px solid #D9D9D9;
        background: #FFF;
        width: 163px;
        height: 32px;
        position: absolute;
        left: 30px;
        z-index: -1;
        bottom: -1px;
    }
    p.last_text {
        font-size: 20px;
    }
    .service-header h2 img {
        width: 155px;
        height: auto;
    }
    .service-subtitle {
        font-size: 20px;
    }
    section.service-section .service-container .service_flex {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 64px;
    }
    .service-header {
        margin-bottom: 40px;
    }
    section.service-section .service-container .service_flex .left_img img {
        width: 100%;
        max-width: 396px;
    }
    section.service-section .service-container .service_flex .right_text {
        width: 100%;
    }
    section.service-section .service-container .service_flex .right_text p {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: -0.28px;
        margin-bottom: 32px;
    }
    section.service-section p.last_text span.min::after {
        width: 240px;
        height: 28px;
        bottom: 3px;
    }
    section.service-section p.last_text {
        line-height: 36px;
        font-size: 24px;
    }
    section.service-section .service-container .reason-title {
        margin-top: 80px;
    }
    section.service-section .service-container .reason-title .left_title p {
        font-size: 14px;
    }
    section.service-section .service-container .reason-title .left_title p::after {
        width: 175px;
    }
    section.service-section .service-container .reason-title .left_title h3 {
        font-size: 20px;
    }
    section.service-section .service-container .reason-title .right_text p {
        font-size: 14px;
        line-height: 24px;
    }
    section.service-section .service-container ul.reason_list li .img img {
        width: 100%;
        height: auto;
    }
    section.service-section .service-container ul.reason_list li {
        padding: 16px 18px 14px;
    }
    section.service-section .service-container ul.reason_list li p {
        font-size: 12px;
    }
    section.service-section .service-container ul.reason_list li:nth-child(5) {
        padding: 16px 11px 14px;
    }
    section.service-section .service-container ul.reason_list {
        margin-bottom: 80px;
    }
    section.service-section .service-container .example-section h3 {
        font-size: 20px;
        margin-bottom: 32px;
    }
    section.service-section .service-container .example-section ul.example_list {
        gap: 12px;
    }
    section.service-section .service-container .example-section ul.example_list li {
        width: calc( (100% - 24px) /3);
        padding: 12px 0 13px;
    }
    section.service-section .service-container .example-section ul.example_list li .icon {
        height: 46px;
        width: 50px;
        line-height: 55px;
        margin: 0 auto;
    }
    section.service-section .service-container .example-section ul.example_list li .icon img {
        width: 80%;
        height: auto;
    }
    section.service-section .service-container .example-section ul.example_list li:first-child .icon img {
        width: 67%;
        position: relative;
        top: 5px;
    }
    section.service-section .service-container .example-section ul.example_list li:nth-child(3) .icon img,
    section.service-section .service-container .example-section ul.example_list li:nth-child(9) .icon img {
        width: 53%;
    }
    section.service-section .service-container .example-section ul.example_list li:nth-child(7) .icon img {
        width: 100%;
    }
    section.service-section .service-container .example-section ul.example_list li:nth-child(8) .icon img {
        width: 65%;
    }
    section.service-section .service-container .example-section ul.example_list li p {
        font-size: 10px;
    }
    section.service-section .service-container .example-section p.attention_text {
        font-size: 12px;
    }
    section.plan-section .plan-container .plan-header h2 img,
    section.plan-section .plan-container .plan-header h2 {
        width: 100px;
        height: auto;
        margin: 0 auto;
    }
    section.plan-section .plan-container .plan-header .plan-subtitle {
        font-size: 20px;
    }
    section.plan-section {
        padding: 80px 0;
    }
    section.plan-section .plan-container .plan-header .plan-highlight .plan-highlight-box {
        line-height: 15px;
        font-size: 15px;
        padding: 7px 11px;
        width: fit-content;
        margin: 0 auto 32px;
    }
    section.plan-section .plan-container .plan-header .plan-highlight {
        width: 100%;
    }
    .plan-comparison-header .plan-comparison-title span.plan-icon img {
        width: 68%;
    }
    section.plan-section .plan-container .plan-cards {
        margin-bottom: 24px;
    }
    section.plan-section .plan-container .plan-cards .plan-card .plan-badge {
        font-size: 10px;
        margin: 0 auto 0;
        border: 1px solid #54B9D5;
        padding: 4px 9px;
    }
    section.plan-section .plan-container .plan-cards .plan-card .plan-card-title {
        font-size: 16px;
        margin-bottom: 0;
    }
    section.plan-section .plan-container .plan-cards .plan-card .plan-price img {
        width: 130px;
    }
    section.plan-section .plan-container .plan-cards.plan-basic .plan-card .plan-price img {
        width: 146px;
    }
    section.plan-section .plan-container .plan-cards .plan-card {
        padding: 16px 20px 0px;
    }
    section.plan-section .plan-container .plan-cards .plan-card.plan-basic::before {
        font-size: 8px;
        top: -36px;
        line-height: 54px;
        left: -8%;
        background-size: 50%;
    }
    .plan-feature-value,
    .plan-comparison-header .plan-comparison-title {
        min-width: 128px;
    }
    ul.case-study_list li.voice_list .text {
        padding: 20px 45px;
    }
    .plan-comparison-header .plan-comparison-title {
        font-size: 12px;
    }
    .plan-comparison-row .plan-feature-name {
        font-size: 12px;
        line-height: 18px;
    }
    .plan-feature-detail {
        font-size: 10px;
        line-height: 15px;
    }
    .plan-feature-value {
        font-size: 20px;
    }
    .plan-comparison-row {
        min-height: 56px;
    }
    .plan-feature-value.plan-trial {
        padding: 15px 0;
    }
    .plan-feature-value.close span {
        top: 0;
    }
    .plan-feature-value img {
        width: 20px;
    }
    .plan-comparison-header .plan-comparison-title {
        flex-direction: column;
        gap: 3px;
    }
    .plan-comparison-header .plan-comparison-title.plan-basic {
        padding: 8px 0;
    }
    table.comparison {
        margin-top: 24px;
    }
    table.comparison td:first-child,
    table.comparison th:first-child {
        font-size: 12px;
        line-height: 16px;
    }
    table.comparison th {
        font-size: 14px;
        line-height: 14px;
        padding: 11px 0;
    }
    table.comparison td.triangle,
    table.comparison td.cross {
        font-size: 20px;
    }
    table.comparison td.circle {
        -webkit-text-stroke-width: 4px;
    }
    table.comparison th,
    table.comparison td {
        padding: 12px 0;
    }
    .flow-header h2 {
        width: 106px;
        margin: 0 auto;
    }
    .flow-header h2 img {
        width: 100%;
        height: auto;
    }
    .flow-header {
        margin-bottom: 40px;
    }
    .flow-subtitle {
        font-size: 20px;
    }
    .flow-container ul.flow_list li .step {
        width: 64px;
        height: 64px;
        padding: 12px;
    }
    .flow-container ul.flow_list li {
        align-items: flex-start;
        gap: 16px;
    }
    .flow-container ul.flow_list li .step p {
        font-size: 10px;
        margin-bottom: 0;
        position: relative;
        left: 2px;
        top: -2px;
    }
    .flow-container ul.flow_list li .step img {
        width: 80%;
        height: auto;
        margin-top: 0;
    }
    .flow-container ul.flow_list li:first-child .step img {
        width: 68%;
        position: relative;
        left: -1px;
    }
    .flow-container ul.flow_list li .right_text h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .flow-container ul.flow_list li .right_text p {
        font-size: 12px;
        line-height: 18px;
    }
    .flow-container ul.flow_list li::after {
        left: 43%;
        bottom: -57px;
    }
    .flow-container {
        padding: 0 20px 40px;
    }
    section.works-section .works-container.sp h2 img {
        width: 136px;
        height: auto;
    }
    section.works-section .works-container .works-header p.works-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }
    section.works-section .works-container .works-header p.works-description {
        font-size: 14px;
        line-height: 21px;
    }
    section.works-section .works-container.sp ul.works_list li {
        width: 160px;
    }
    section.works-section .works-container.sp ul.works_list li img {
        width: 100%;
        height: auto;
    }
    section.case-study {
        background-size: cover;
    }
    section.case-study .case-study-container {
        padding: 0 20px;
    }
    section.case-study .case-study-container .case-study__header h2 img {
        width: 224px;
    }
    section.case-study .case-study-container .case-study__header p.case-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }
    section.case-study .case-study-container .case-study__header p.bg_gra {
        font-size: 16px;
        padding: 7px 8px;
    }
    section.case-study .case-study-container .case-study__header p.description {
        font-size: 14px;
        line-height: 21px;
    }
    .slick-next,
    .slick-prev {
        top: 50%;
    }
    section.case-study {
        margin: 80px 0;
    }
    .faq-title {
        text-align: center;
    }
    section.faq-section .faq-container .faq-subtitle {
        font-size: 20px;
        text-align: center;
    }
    section.faq-section .faq-container .faq-header {
        margin-bottom: 40px;
    }
    .faq-title img {
        width: 85px;
        height: auto;
    }
    section.faq-section .faq-container .faq-question {
        padding: 24px 0;
        margin: 0 8px;
    }
    section.faq-section .faq-container .faq-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    section.faq-section .faq-container .faq-icon-q span {
        top: 3px;
    }
    section.faq-section .faq-container .faq-question-text {
        font-size: 14px;
        line-height: 21px;
    }
    .faq-answer {
        padding: 12px 12px 24px 8px;
    }
    section.faq-section .faq-container .faq-icon-a span {
        top: 1px;
    }
    .faq-answer-text {
        font-size: 14px;
        line-height: 21px;
    }
    section.faq-section {
        padding: 0 0 80px;
    }
    section.check-section .check-container .check-header img {
        width: 128px;
        height: auto;
    }
    section.check-section .check-container .check-header p.check-subtitle {
        font-size: 20px;
    }
    section.check-section .check-container .check-header {
        top: 36px;
    }
    section.check-section .check-container .check_contents {
        padding: 64px 16px 24px;
    }
    section.check-section .check-container .check_contents .check_list p.bg_gra {
        font-size: 16px;
        margin-bottom: 8px;
        padding: 4px 12px;
    }
    section.check-section .check-container .check_contents .check_list p.check_text {
        font-size: 10px;
        line-height: 16px;
    }
    section.check-section .check-container .check_contents .check_list {
        margin: 0 auto 24px;
    }
    section.check-section .check-container .check_contents .check_list ul.check_item p.check_title {
        font-size: 14px;
    }
    section.check-section .check-container .check_contents .check_list ul.check_item li p.text {
        margin-left: 0;
        font-size: 10px;
        line-height: 16px;
    }
    section.check-section {
        padding-bottom: 80px;
    }
    section.service-section .service-container ul.reason_list li .img {
        height: auto;
    }
    section.service-section .service-container ul.reason_list li:nth-child(2),
    section.service-section .service-container ul.reason_list li:nth-child(4),
    section.service-section .service-container ul.reason_list li:nth-child(6) {
        border-right: none;
    }
}

@media (max-width: 480px) {
    .hero-floating-image {
        max-width: 78%;
    }
}