@media screen and (max-width: 1200px) {}

@media screen and (max-width: 1024px) {
    .header__list {
        gap: 32px;
    }

    .body {
        /* headerの高さ */
        padding-top: 64px;
    }

    .hero__title {
        font-size: 56px;
    }

    .cases__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .about {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .feature {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .cases {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .body.open {
        overflow: hidden;
    }

    .header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #ffffff;
        z-index: 2;
    }

    .header__container {
        height: 64px;
        padding: 0 24px;
    }

    .header__nav {
        display: none;
    }

    .menu-sp {
        display: block;
        position: fixed;
        z-index: 1;
        width: 100%;
        height: 100%;
        background-color: white;
        transform: translateY(-100%);
        transition: transform .3s;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 16px;
        position: relative;
    }

    .hamburger span {
        width: 100%;
        height: 1px;
        background-color: #333333;
        transition: transform .3s;
    }

    .hamburger.open span:first-of-type {
        position: absolute;
        top: 8px;
        transform: rotate(45deg);
    }

    .hamburger.open span:nth-of-type(2) {
        display: none;
    }

    .hamburger.open span:last-of-type {
        position: absolute;
        top: 8px;
        transform: rotate(-45deg);
    }

    .menu-sp.active {
        transform: translateY(0);
    }

    .menu-sp__item {
        text-align: center;
        padding: 20px 0;
    }

    .pc-none {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .heading-secondary {
        font-size: 24px;
        margin-bottom: 56px;
    }

    .container {
        padding: 0 24px;
    }

    .hero {
        height: 580px;
    }

    .hero__content {
        padding-top: 186px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero__title {
        font-size: 36px;
        line-height: 64px;
    }

    .hero__description {
        font-size: 16px;
        line-height: 38px;
        padding-top: 26px;
    }

    .numbered-list__item {
        gap: 24px;
    }

    .numbered-list__item:not(:first-child) {
        margin-top: 56px;
    }

    .about__table-head {
        width: 100px;
    }

    .about__description {
        margin-bottom: 56px;
    }

    .footer {
        padding-top: 56px;
    }

    .footer__content {
        flex-direction: column;
        justify-content: normal;
        gap: 80px;
    }

    .footer__nav-group {
        flex-direction: column;
    }

    .breadcrumb__list {
        white-space: nowrap;
        overflow: hidden;
    }

    .breadcrumb__item--current {
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }

    .privacy-page {
        margin-top: 64px;
        padding-top: 32px;
        padding-bottom: 80px;
    }

    .privacy-page__header {
        margin-bottom: 56px;
        padding-bottom: 32px;
    }

    .privacy-page__title {
        font-size: 28px;
    }

    .cases__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .privacy-page__date {
        margin-top: 56px;
    }

    .sp-none {
        display: none;
    }

    .case-detail__title {
        font-size: 28px;
    }

    .case-detail__eyecatch {
        margin-bottom: 64px;
    }

    .case-detail__section {
        margin-bottom: 56px;
    }

    .case-detail__section:not(:first-of-type) {
        padding-top: 56px;
        margin-bottom: 56px;
    }

    .case-detail__beforeafter {
        flex-direction: column;
        gap: 64px;
        margin-top: 40px;
    }

    .case-detail__beforeafter-item {
        width: 100%;
    }

    .case-detail__link-section {
        margin-top: 64px;
        padding-top: 40px;
    }

    .case-detail__back {
        margin-top: 80px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .cases-page__title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .cases-page__header {
        margin-bottom: 64px;
        padding-bottom: 48px;
    }

    .cases-page {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 575px) {
    .cases__grid {
        grid-template-columns: 1fr;
    }

    .footer__content {
        gap: 56px;
    }
}
