@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

@media (max-width: 1240px) {
    header .pc_list {
        width: 100%;
    }

    .pc_list .item .label_l {
        font-size: min(calc(14 / 1240 * 100vw), 14px);
    }
}

.sp_logo {
    display: none;
}

.pc_fixed_content.main_fixed {
    background-color: var(--main-primary-dark);
    background-image: url(../img/main/fixed_bg-pc.png);
}

.pc_fixed_content.cookchill_fixed {
    background-color: var(--accent-primary-dark);
    background-image: url(../img/cookchill/fixed_bg-pc.png);
}

#cookchill {
    --main-primary: #00c773;
    --main-primary-dark: #179963;
    --main-primary-light: #e0f6ed;
    --accent-primary: #f5941c;
    --accent-primary-dark: #ea6819;
    --accent-primary-light: #f7daa0;
}

.pc_fixed_content .catch_wrap {
    color: var(--base-white);
}

.pc_fixed_content .catch_wrap .ttl_xs {
    margin-bottom: 8px;
}

.pc_fixed_content .catch_wrap .ttl_m {
    margin-bottom: 24px;
}

.pc_fixed_content.cookchill_fixed .catch_wrap .primary_btn {
    background-color: var(--main-primary);
}

.pc_fixed_content.cookchill_fixed .catch_wrap .primary_btn::before {
    background-color: var(--main-primary-hover);
}

.pc_fixed_content.cookchill_fixed .catch_wrap .primary_btn::after {
    background-image: url(../img/icon/icon-bg_white_orange_circle_arrow.svg);
}

.maker_img_wrap {
    aspect-ratio: 367 / 245;
    position: relative;
    perspective: 1000px;
}

.maker_img_wrap .maker {
    width: 55%;
    left: 50%;
    position: absolute;
    transition: all 1s ease;
    transform-style: preserve-3d;
}

@keyframes rotate3d {

    0%,
    20% {
        /* 0-20%（3秒）は同じ位置で停止 */
        transform: translate3d(-50%, 30%, 0) translateZ(0);
        z-index: 3;
        opacity: 1;
    }

    30% {
        /* 移動時間を短縮 */
        transform: translate3d(-100%, 0%, -100px);
        z-index: 2;
        opacity: 0.8;
    }

    33.33%,
    53.33% {
        /* 3秒間停止 */
        transform: translate3d(-100%, 0%, -100px);
        z-index: 2;
        opacity: 0.8;
    }

    63.33% {
        /* 移動時間を短縮 */
        transform: translate3d(0%, -20%, -200px);
        z-index: 1;
        opacity: 0.6;
    }

    66.66%,
    86.66% {
        /* 3秒間停止 */
        transform: translate3d(0%, -20%, -200px);
        z-index: 1;
        opacity: 0.6;
    }

    96.66% {
        /* 移動時間を短縮 */
        transform: translate3d(-50%, 30%, 0) translateZ(0);
        z-index: 3;
        opacity: 1;
    }

    100% {
        transform: translate3d(-50%, 30%, 0) translateZ(0);
        z-index: 3;
        opacity: 1;
    }
}

.maker_img_wrap .maker_a {
    animation: rotate3d 15s infinite;
    animation-delay: 0s;
}

.maker_img_wrap .maker_b {
    animation: rotate3d 15s infinite;
    animation-delay: -5s;
    /* 15秒 ÷ 3 */
}

.maker_img_wrap .maker_c {
    animation: rotate3d 15s infinite;
    animation-delay: -10s;
    /* (15秒 ÷ 3) × 2 */
}

.service_fv {
    position: relative;
    padding-bottom: 24px;
}

.service_fv .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.service_fv .text_wrap {
    width: 55%;
    padding-left:0;
  }

.service_fv .text_wrap .label {
    width: fit-content;
    padding: 8px 16px;
    margin-bottom: 16px;
    border-radius: 16px;
    color: var(--main-primary-dark);
    border: 1px solid var(--main-primary-dark);
    font-size: calc(16 / 1500 * 100vw);
}

.service_fv .text_wrap .ttl_xs {
    margin-bottom: 8px;
    font-size: calc(18 / 1500 * 100vw);
}

.service_fv .text_wrap .service_ttl {
    display: flex;
    flex-direction: column;
    color: var(--main-primary-dark);
}

.service_fv .text_wrap .service_ttl .ttl_l {
    font-size: calc(27 / 1500 * 100vw);
}

.service_fv .text_wrap .service_ttl .main_ttl {
    font-size: calc(40 / 1500 * 100vw);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.service_fv .img_wrap {
    position: relative;
    width: 45%;
    max-width: calc(350 / 1500 * 100vw);
    aspect-ratio: 1/1;
    margin: 25px 0;
    z-index: 0;
}

.service_fv .img_wrap .img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 64px;
    position: absolute;
    overflow: hidden;
    transition: all 0.6s 0.6s;
    transform-origin: center bottom;
    transform: rotate(0deg);
}

.service_fv .img_wrap .img01 {
    z-index: 3;
}

.service_fv .img_wrap .img02 {
    z-index: 1;
}

.service_fv .img_wrap .img03 {
    background-color: var(--main-primary-light);
    z-index: 2;
}

.service_fv .img_wrap.active .img02 {
    transform: rotate(-8deg);
    z-index: 1;
}

.service_fv .img_wrap.active .img03 {
    background-color: var(--main-primary-light);
    transform: rotate(8deg);
    z-index: 2;
}

.service_fv .img_wrap .img img {
    height: 100%;
    object-fit: cover;
}

.service_fv .link_btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 52px 8px 16px;
    background-color: var(--base-white);
    border: var(--accent-primary-light) solid 1px;
    border-radius: 999px 0 0 999px;
    line-height: 1;
    position: absolute;
    right: 0;
    bottom: 32px;
    z-index: 5;
    opacity: 1;
    transition: opacity 0.4s;
}

.service_fv .link_btn:hover {
    opacity: 0.8;
}

.service_fv .link_btn::after {
    content: '';
    width: 12px;
    height: 10px;
    background-image: url(../img/icon/icon-green_arrow.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    transition: right 0.4s;
}

.service_fv .link_btn:hover::after {
    right: 20px;
}

#cookchill .service_fv .link_btn::after {
    background-image: url(../img/icon/icon-orange_arrow.svg);
}

.service_fv .link_btn .text_s.fwb {
    color: var(--accent-primary-dark);
}

.service_fv .steam_wrap {
    width: 30%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 4;
}

.catch_img_wrap {
    margin-bottom: 24px;
    background-color: var(--base-white);
    position: relative;
    z-index: 0;
}

.catch_img_wrap::before {
    content: '';
    width: 100%;
    height: 64px;
    background-image: url(../img/service/catch_img_bg.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.catch_img {
    width: 55%;
    max-width: 438px;
    margin: 0 auto;
}

#benefit {
    background-color: var(--surface);
    margin-bottom: var(--xxxl);
    position: relative;
}

#benefit::after {
    content: '';
    width: 100%;
    height: 64px;
    background-image: url(../img/service/catch_img_bg.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleY(-1);
    position: absolute;
    left: 0;
    bottom: -64px;
}

#benefit .ttl {
    margin-bottom: 24px;
}

#benefit p.ttl_xl {
    font-size: 32px;
}

.trouble_wrap {
    padding-bottom: 24px;
}

.trouble_wrap .list {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.trouble_wrap .list .item {
    width: calc(100% / 3);
    background-color: var(--base-white);
    padding: 16px;
    border-radius: 24px;
}

.trouble_wrap .list .item .img {
    width: 80px;
    margin: 0 auto 8px;
}

.trouble_wrap .list .item .ttl_xxs {
    margin-bottom: 8px;
}

#melit {
    padding-bottom: var(--xxxl);
}

#melit .melit_ttl {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

#cookchill #melit .melit_list {
    display: flex;
    flex-direction: column;
    gap: var(--xl);
}

#melit .melit_list .flex_content_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

#melit .melit_list .melit_item:nth-child(even) .flex_content_wrap {
    flex-direction: row-reverse;
}

#melit .melit_list .flex_content_wrap .img {
    width: 50%;
    border-radius: 24px;
    overflow: hidden;
}

#melit .melit_list .flex_content_wrap .maker_img_wrap {
    width: 50%;
}

#melit .melit_list .flex_content_wrap .img img,
#melit .melit_list .flex_content_wrap .img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#melit .melit_list .flex_content_wrap .text_wrap {
    width: 50%;
}

#melit .melit_list .flex_content_wrap .text_wrap .ttl {
    padding-left: 60px;
    margin-bottom: 24px;
    position: relative;
}

#melit .melit_list .melit_item:nth-child(1) .flex_content_wrap .text_wrap .ttl {
    padding-left: 40px;
}

#melit .melit_list .flex_content_wrap .text_wrap .ttl .num {
    color: var(--main-primary-light);
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#melit .melit_list .flex_content_wrap .text_wrap .list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#melit .melit_list .flex_content_wrap .text_wrap .list .item {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

#melit .melit_list .time_img {
    width: 100%;
    max-width: 424px;
    margin: 40px auto;
}

.service_flow {
    margin-bottom: var(--xxl);
}

.service_flow .flow_ttl {
    margin-bottom: 24px;
}

.service_flow .flow_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service_flow .flow_list .item {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s;
}

.service_flow .flow_list .item.active {
    opacity: 1;
    transform: translateY(0);
}

.service_flow .flow_list .item .img_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.service_flow .flow_list .item .img {
    width: 200px;
    border: 2px solid var(--main-primary);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_flow .flow_list .item.client .img {
    border-color: var(--main-primary);
}

.service_flow .flow_list .item.company .img {
    border-color: var(--accent-primary-dark);
}

.service_flow .flow_list .item .img img,
.service_flow .flow_list .item .img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.service_flow .flow_list .item:first-child .img_wrap::before {
    content: '';
    height: calc(500% + (24px * 4) - 100%);
    width: 1px;
    background-color: var(--border-light);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    transition: transform 0.8s;
    z-index: -1;
}

.service_flow .flow_list.list_active .item:first-child .img_wrap::before {
    transform: translateX(-50%) scaleY(1);
}

.service_flow .flow_list .item .text_wrap {
    width: calc(100% - 130px);
    max-height: fit-content;
    padding: 16px 24px;
    margin: auto;
    border-radius: 8px;
}

.service_flow .flow_list .item.client .text_wrap {
    background-color: var(--surface);
}

.service_flow .flow_list .item.company .text_wrap {
    background-color: var(--accent-primary-light);
}

.service_flow .flow_list .item .ttl {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.service_flow .flow_list .item.client .ttl {
    color: var(--main-primary-dark);
}

.service_flow .flow_list .item.company .ttl {
    color: var(--accent-primary-dark);
}

.service_flow .flow_list .item .ttl .label_s {
    text-align: center;
    width: 48px;
    padding: 5px 4px;
    background-color: var(--base-white);
    border-radius: 4px;
}

#data {
    margin-top: 40px;
    padding: var(--lg) 0 var(--xl);
    border-radius: 64px;
    background-color: var(--surface);
    position: relative;
    z-index: 1;
}

#data .inner {
    max-width: 774px;
}

#data .ttl {
    margin-bottom: 24px;
}

#data .data_catch {
    margin-bottom: 24px;
}

#data .flex_content_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

#data .flex_content_wrap .img {
    width: 50%;
    overflow: hidden;
}

.support_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#main .support_wrap {
    margin: var(--lg) 0 var(--xl);
}

#cookchill .support_wrap {
    margin: var(--lg) 0 0;
}

.support_wrap .support {
    display: flex;
    gap: 24px;
    padding: 32px 24px 24px;
    border-radius: 24px;
    border: 2px solid var(--main-primary-light);
    position: relative;
}

.support_wrap .support .ttl {
    color: var(--base-white);
    background-color: var(--main-primary-dark);
    padding: 8px 16px;
    border-radius: 999px;
    position: absolute;
    top: 0;
    left: 24px;
    transform: translateY(-50%);
    z-index: 1;
}

.support_wrap .support .text {
    width: 50%;
}

.support_wrap .support:not(:has(.img)) .text {
    width: 100%;
}

.support_wrap .support .img {
    width: 50%;
}

/*エリアマップ*/
#area .support_wrap .support {
    align-items: center;
}

#area .support_wrap .support .img {
    width: 70%;
}

.support_wrap .support .list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.support_wrap .support .list .item {
    display: flex;
    padding-left: 24px;
    position: relative;
}

.support_wrap .support .list .item::before {
    content: '';
    width: 6px;
    aspect-ratio: 1/1;
    background-color: var(--main-primary-dark);
    border-radius: 50%;
    position: absolute;
    top: 0.2em;
    left: 0;
}

#voice {
    padding-bottom: 40px;
    position: relative;
    z-index: 0;
}

#voice::before {
    content: '';
    width: calc(1079 / 1500 * 100vw);
    aspect-ratio: 1079 / 843;
    background-image: url(../img/main/voice_bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -40px;
    left: 40px;
    z-index: -1;
}

#cookchill #voice::before {
    background-image: url(../img/cookchill/voice_bg.svg);
}

#voice .voice_ttl {
    margin-bottom: 16px;
}

#voice .voice_ttl .num {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
}

#voice .content_wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}

#voice .content_wrap .splide {
    width: 50%;
}

#voice .content_wrap .text_slider .splide__slide {
    padding: 0 36px;
}

#voice .content_wrap .text_slider .text {
    margin-bottom: 16px;
}

#voice .content_wrap .text_slider .splide__arrow {
    width: 20px;
    height: auto;
    aspect-ratio: 1/1;
    background-image: url(../img/icon/icon-slider_main.svg);
    background-size: cover;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

#cookchill #voice .content_wrap .text_slider .splide__arrow {
    background-image: url(../img/icon/icon-slider_cookchill.svg);
}

#voice .content_wrap .text_slider .splide__arrow:hover {
    opacity: 0.7;
}

#voice .content_wrap .text_slider .splide__arrow svg {
    display: none;
}

#voice .content_wrap .text_slider .splide__arrow--next {
    right: 0;
}

#voice .content_wrap .text_slider .splide__arrow--prev {
    left: 0;
    transform: translateY(-50%) scaleX(-1);
}

#flow {
    padding: var(--lg) 0 0;
    border-radius: 64px;
    background-color: var(--base-white);
    position: relative;
    z-index: 1;
}

#reason {
    padding: var(--lg) 0 var(--xl);
    border-radius: 64px;
    background-color: var(--base-white);
    position: relative;
    z-index: 1;
}

#reason .reason_ttl {
    margin-bottom: 40px;
}

#cookchill #reason .reason_ttl {
    margin-bottom: 24px;
}

#reason .reason_catch {
    margin-bottom: var(--lg);
}

#reason .reason_catch .ttl_m {
    color: var(--accent-primary-dark);
}

#reason .reason_catch .ttl_xs {
    color: var(--accent-primary-dark);
    margin-bottom: 16px;
}

#reason .reason_catch .ttl_s {
    margin-bottom: 16px;
    color: var(--accent-primary-dark);
}

.satisfaction {
    margin-bottom: var(--xxl);
}

.satisfaction_ttl {
    margin-bottom: 24px;
}

.satisfaction .list {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.satisfaction .list .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc(100% / 3);
}

.three_zero_wrap {
    margin: var(--lg) 0 var(--xxl);
    padding: 24px 24px 40px;
    background: repeating-linear-gradient(45deg, #ffffff, #ffffff 10px, rgba(255, 235, 59, 0.2) 10px, rgba(255, 235, 59, 0.2) 20px);
    border: 4px solid var(--main-primary-light);
    border-radius: 10px;
}

.three_zero_wrap .img {
    max-width: 400px;
    margin: 0 auto;
}

.cookchill_satisfaction {
    display: flex;
    gap: 40px;
}

.cookchill_satisfaction .img {
    width: 45%;
}

.cookchill_satisfaction .content {
    width: 55%;
}

.cookchill_satisfaction .content .ttl_xs {
    margin-bottom: 16px;
}

.cookchill_satisfaction .content .text {
    margin-bottom: 40px;
}

.fixed_banner {
    display: none;
}
@media (max-width: 1400px) {
  .service_fv .text_wrap {
    padding-left:40px;
  }
}
@media (max-width: 1023px) {
    header {
        display: flex;
        align-items: center;
        height: 64px;
        padding: 0 16px;
        position: relative;
    }

    .sp_logo {
        display: block;
        max-width: 175px;
    }

    header .pc_list {
        display: none;
    }

    .pc_fixed_content {
        display: none;
    }

    .site_content_wrap {
        width: 100%;
    }

    .service_fv .text_wrap .label {
        font-size: min(calc(14 / 400 * 100vw), 14px);
    }

    .service_fv .text_wrap .ttl_xs {
        font-size: min(calc(16 / 400 * 100vw), 16px);
    }

    .service_fv .text_wrap .service_ttl .ttl_l {
        font-size: min(calc(24 / 400 * 100vw), 24px);
    }

    .service_fv .text_wrap .service_ttl .main_ttl {
        font-size: min(calc(40 / 400 * 100vw), 40px);
    }

    #cookchill .service_fv .text_wrap .service_ttl .main_ttl {
        font-size: min(calc(32 / 400 * 100vw), 32px);
    }

    .service_fv .img_wrap {
        max-width: calc(350 / 1023 * 100vw);
    }

    .service_fv .link_btn {
        bottom: 24px;
    }

    #voice::before {
        width: calc(1079 / 900 * 100%);
    }

    #benefit p.ttl_xl {
    font-size: min(calc(28 / 400 * 100vw), 28px);
}

    .fixed_banner {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 64px;
        z-index: 100;
        background-color: var(--main-primary-dark);
        opacity: 0;
        box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.08);
        transform: translateY(40px);
        transition: all 0.4s ease-in-out;
    }

    .fixed_banner.active {
        opacity: 1;
        transform: translateY(0);
    }

    .fixed_banner a {
        display: block;
        width: calc(100% - 36px);
        max-width: 365px;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
    }

    footer {
        padding-bottom: 92px;
    }
}

@media (max-width: 767px) {
    #main {
        margin-top: var(--lg);
    }

    .service_fv {
        padding-bottom: var(--lg);
    }

    .service_fv .inner {
        flex-direction: column;
        gap: 40px;
    }

    .service_fv .text_wrap {
        width: 100%;
        text-align: center;
        padding-left: 0;
    }

    .service_fv .text_wrap .label {
        margin: 0 auto 16px;
    }

    .service_fv .img_wrap {
        max-width: none;
        width: 90%;
        max-width: 450px;
        margin: 0 auto;
    }

    .service_fv .steam_wrap {
        width: 55%;
        max-width: 300px;
    }

    .catch_img {
        width: calc(100% - 40px);
    }

    .trouble_wrap .list {
        flex-direction: column;
    }

    .trouble_wrap .list .item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }

    .trouble_wrap .list .item .img {
        width: 100%;
        max-width: 100px;
        margin: 0;
    }

    .trouble_wrap .list .item .text_wrap {
        width: 100%;
        max-width: 132px;
    }

    .trouble_wrap .list .item .ttl_xxs,
    .trouble_wrap .list .item .text_s {
        text-align: left;
    }

    #melit .melit_list .flex_content_wrap,
    #melit .melit_list .melit_item:nth-child(even) .flex_content_wrap {
        flex-direction: column;
    }

    #melit .melit_list .flex_content_wrap .img {
        width: 100%;
    }

    #melit .melit_list .flex_content_wrap .text_wrap {
        width: 100%;
    }

    .service_flow .flow_list {
        flex-direction: column;
    }

    .service_flow .flow_list .item {
        gap: 8px;
        width: 100%;
    }

    .service_flow .flow_list .item .img {
        width: calc(160 / 400 * 100vw);
    }

    .service_flow .flow_list .item .text_wrap {
        width: calc(100% - (124 / 400 * 100vw));
        padding: 10px 10px;
        font-size: min(calc(14 / 400 * 100vw), 14px) !important;
    }

    .service_flow .flow_list .item .ttl {
        text-align: left;
    }

    #melit .melit_list .flex_content_wrap .maker_img_wrap {
        width: 100%;
    }

    #data .flex_content_wrap {
        flex-direction: column;
    }

    #data .flex_content_wrap .img {
        width: 100%;
    }

    .support_wrap .support {
        flex-direction: column;
    }

    .support_wrap .support .text {
        width: 100%;
    }

    .support_wrap .support .img,
    #area .support_wrap .support .img {
        width: 100%;
    }

    #voice::before {
        width: calc(1000 / 400 * 100vw);
        left: -100%;
    }

    #voice .content_wrap {
        flex-direction: column-reverse;
        gap: 24px;
    }

    #voice .content_wrap .splide {
        width: 100%;
    }

    .satisfaction .list {
        flex-direction: column;
    }

    .satisfaction .list .item {
        width: 100%;
    }

    .cookchill_satisfaction {
        flex-direction: column;
        gap: 24px;
    }

    .cookchill_satisfaction .img,
    .cookchill_satisfaction .content {
        width: 100%;
    }
}