/* -----------ordermade_mv-----------*/
.ordermade_mv {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.ordermade_mv_object1 {
    width: 300px;
    top: 160px;
    left: 0;
}
.ordermade_mv_object2 {
    width: 350px;
    top: 125px;
    right: 0px;
}

.ordermade_mv_container {
    width: 100%;
    height: 100%;
    padding: 100px 0 0;
}
.ordermade_mv_text {
    width: fit-content;
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-orange);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px auto 28px;
}
.ordermade_mv_text p {
    font-size: 24px;
}
.ordermade_mv_text p:nth-of-type(2) {
    font-size: 28px;
}
.ordermade_mv_text_underline {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 5px 0 20px;
}
.ordermade_mv_text_balloon {
    width: fit-content;
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0;
    transform: translateX(60%);
}
.ordermade_mv_text_balloon_icon {
    width: fit-content;
    height: 12px;
    margin: 0 auto -1px;
}
.ordermade_mv .ordermade_mv_text_balloon_text {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    background: #fff;
    border-radius: 100px;
    padding: 15px 50px;
    box-sizing: border-box;
}

.ordermade_mv_image {
    overflow: hidden;
    width: 100%;
}
.ordermade_mv_image_container {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLoop 50s linear infinite;
}
.ordermade_mv_image img {
    width: 400px;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
}
@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 1024px) {
    .ordermade_mv_object1 {
        width: 200px;
        top: 260px;
    }
    .ordermade_mv_object2 {
        width: 250px;
        top: 225px;
    }
    .ordermade_mv_text_balloon {
        transform: translateX(20%);
    }
}

@media screen and (max-width: 767px) {
    .ordermade_mv_object1 {
        width: 110px;
        top: 297px;
    }
    .ordermade_mv_object2 {
        width: 150px;
        top: 289px;
    }

    .ordermade_mv_text {
        margin: 50px auto 100px;
    }
    .ordermade_mv_text p {
        font-size: 15px;
    }
    .ordermade_mv_text p:nth-of-type(2) {
        font-size: 18px;
    }
    .ordermade_mv_text_underline {
        width: 306px;
        margin: 5px 0 15px;
    }
    .ordermade_mv_text_balloon {
        transform: translateX(0%);
    }
    .ordermade_mv .ordermade_mv_text_balloon_text {
        font-size: 14px;
        padding: 6px 22px;
    }

    .ordermade_mv_image img {
        width: 240px;
    }
}

/* -----------ordermade_feature-----------*/
.ordermade_feature {
    padding: 100px 30px;
    position: relative;
    z-index: 1;
}
.ordermade_feature_object1 {
    width: 359px;
    top: 60px;
    right: 0px;
}
.ordermade_feature_container {
    max-width: 1340px;
    margin: 0 auto;
    background: #fff;
    border-radius: 2000px;
    padding: 100px 30px;
    position: relative;
    z-index: 1;
}
.object_container.ordermade_feature_object2 {
    width: 164px;
    top: 0px;
    right: 52px;
    z-index: 1;
}
.object_container.ordermade_feature_object3 {
    width: 160px;
    bottom: 0px;
    left: 0px;
    z-index: 1;
}

.ordermade_feature_text {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
}
.ordermade_feature_text_sub {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    color: var(--accent-green);
    text-align: center;
    margin-top: 20px;
}
.ordermade_feature_list {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
}
.ordermade_feature_list_item {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 55px 10px;
    color: #fff;
}
.ordermade_feature_list_item:nth-of-type(1) {
    background: url('../img/ordermade_feature_item1.svg') no-repeat center center / contain;
}
.ordermade_feature_list_item:nth-of-type(2) {
    background: url('../img/ordermade_feature_item2.svg') no-repeat center center / contain;
    padding: 55px 10px;
}
.ordermade_feature_list_item:nth-of-type(3) {
    background: url('../img/ordermade_feature_item3.svg') no-repeat center center / contain;
}
.ordermade_feature_item_title {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding-top: 18px;
}
.ordermade_feature_item_title span {
    position: relative;
    display: inline-block;
}
.ordermade_feature_item_title span::before {
    content: "・";
    position: absolute;
    font-size: 34px;
    top: -29px;
    left: 50%;
    transform: translateX(-50%);
}
.ordermade_feature_item__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.ordermade_feature_item_text {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.ordermade_feature_text .sp {
    display: none;
}
.ordermade_feature_item_text_large {
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    .ordermade_feature_object1 {
        width: 220px;
    }

    .ordermade_feature_container {
        padding: 120px 30px;
    }

    .ordermade_feature_list_item {
        gap: 20px;
    }
    .ordermade_feature_item_title {
        font-size: 30px;
    }
    .ordermade_feature_item_text {
        font-size: 14px;
    }
    .ordermade_feature_item_text_large {
        font-size: 18px;
    }

    .ordermade_feature_text {
        font-size: 24px;
    }
}

@media screen and (max-width: 959px) {
    .object_container.ordermade_feature_object3 {
        width: 140px;
    }
    .ordermade_feature_list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .ordermade_feature_text_sub {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .ordermade_feature_container {
        padding: 70px 20px;
    }
    .object_container.ordermade_feature_object2 {
        width: 80px;
        top: 5px;
        right: 11px;
    }
    .object_container.ordermade_feature_object3 {
        width: 80px;
        bottom: -30px;
        left: 40px;
    }
    .ordermade_feature_list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .ordermade_feature_list_item {
        width: 270px;
    }
    .ordermade_feature_text_sub .sp,
    .ordermade_feature_text .sp {
        display: block;
    }
}

/* -----------ordermade_gallery-----------*/
.ordermade_gallery {
    padding: 38px 0 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.ordermade_gallery_container {
    width: max-content;
    margin: 0 calc(50% - 50vw);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    animation: galleryLoop 40s linear infinite;
}
@keyframes galleryLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.ordermade_gallery_item {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
    margin-right: 50px;
}
.ordermade_gallery_item:nth-of-type(odd) {
    padding: 0 0 100px;
}
.ordermade_gallery_text {
    width: fit-content;
    margin: 0 auto;
    align-items: center;
    position: relative;
}
.ordermade_gallery_image {
    border-radius: 10px;
}
.ordermade_gallery_item:nth-of-type(5) .ordermade_gallery_text,
.ordermade_gallery_item:nth-of-type(10) .ordermade_gallery_text,
.ordermade_gallery_item:nth-of-type(15) .ordermade_gallery_text,
.ordermade_gallery_item:nth-of-type(20) .ordermade_gallery_text {
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
    .ordermade_gallery_item {
        width: 195px;
    }
}

/* -----------ordermade_how-----------*/
.ordermade_how {
    padding: 100px 30px;
    position: relative;
    z-index: 1;
}
.ordermade_how_object1 {
    width: 510px;
    bottom: -451px;
    right: 0;
}

.ordermade_how_container {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.ordermade_how_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 50px;
}
.ordermade_how_item_content {
    width: 100%;
    max-width: 414px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.ordermade_how_item:nth-of-type(2) .ordermade_how_item_content {
    gap: 16px;
}
.ordermade_how_title {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ordermade_how_title_icon {
    width: 37px;
    height: auto;
    object-fit: contain;
}
.ordermade_how_title_text {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.ordermade_how_item_content_desc {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 0.05em;
}
.ordermade_how_item_wrap {
    width: 476px;
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    gap: 10px;
}
.ordermade_how_item_wrap_item {
    width: calc((100% - 20px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 20px;
    background: var(--light-gray);
}
.ordermade_how_item_wrap_item:nth-of-type(1) {
    width: calc(53% - 5px);
}
.ordermade_how_item_wrap_item:nth-of-type(2) {
    width: calc(47% - 5px);
}
.ordermade_how_item_wrap_item:nth-of-type(3) {
    width: 35%;
}
.ordermade_how_item_wrap_item:nth-of-type(4) {
    width: 35%;
}
.ordermade_how_item_wrap_item:nth-of-type(5) {
    width: calc(30% - 20px);
}
.ordermade_how_item_name {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
}
.ordermade_how .components_btn {
    margin: 14px 0 0;
}
.ordermade_how_item:nth-of-type(2) .ordermade_how_item_wrap {
    width: 100%;
    max-width: 445px;
}
.ordermade_how_item_image {
    height: 96px;
    object-fit: contain;
}

@media screen and (max-width: 1024px) {
    .ordermade_how_object1 {
        width: 310px;
        bottom: -151px;
    }

    .ordermade_how_title_icon {
        width: 30px;
    }
    .ordermade_how_title_text {
        font-size: 20px;
    }
    .ordermade_how_item_content_desc {
        font-size: 14px;
    }
    .ordermade_how_item {
        padding: 30px 30px;
    }
    .ordermade_how_item_wrap {
        width: 440px;
    }
    .ordermade_how_item_name .sp {
        display: block;
        text-align: center;
    }

    .ordermade_how_item_wrap_item:nth-of-type(4) {
        width: 33%;
    }
    .ordermade_how_item_wrap_item:nth-of-type(5) {
        width: calc(32% - 20px);
    }
}

@media screen and (max-width: 767px) {
    .ordermade_how_object1 {
        width: 200px;
        bottom: -109px;
    }

    .ordermade_how_title_icon {
        width: 23px;
    }
    .ordermade_how_item {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    .ordermade_how_item_content {
        max-width: 100%;
    }
    .ordermade_how_item_wrap {
        max-width: 100%;
    }
    .ordermade_how_item_wrap_item:nth-of-type(1),
    .ordermade_how_item_wrap_item:nth-of-type(2),
    .ordermade_how_item_wrap_item:nth-of-type(3),
    .ordermade_how_item_wrap_item:nth-of-type(4),
    .ordermade_how_item_wrap_item:nth-of-type(5) {
        width: 100%;
    }
    .ordermade_how_item_wrap_item:nth-of-type(4),
    .ordermade_how_item_wrap_item:nth-of-type(5) {
        width: calc(50% - 5px);
    }

    .ordermade_how_item_name .sp {
        display: none;
    }

    .ordermade_how_item:nth-of-type(2) .ordermade_how_item_content {
        gap: 20px;
    }
    .ordermade_how .components_btn {
        margin-top: 10px;
    }
}
