* {
    box-sizing: border-box;
}

.sp-only {
    display: none;
}

/* ===============================================
   Page Base
   =============================================== */
.reco-page {
    font-family: "yu-mincho-pr6n",
        "游明朝体", "Yu Mincho",
        "Hiragino Mincho ProN", "ヒラギノ明朝 ProN",
        serif;
    font-style: normal;
    font-weight: 400;
    overflow-x: hidden;
    max-width: 1920px;
    margin: auto;
}

/* ===============================================
   MV
   =============================================== */
.reco-mv {
    width: 100%;
    max-width: 1664px;
    margin: 30px auto 0;

    img {
        width: 100%;
    }
}

/* ===============================================
   Read
   =============================================== */
.reco-read {
    margin: 80px auto 0;
    max-width: 1664px;
    width: 100%;

    .reco-read__text {
        text-align: center;
        max-width: 1000px;
        margin: auto;
        height: 321px;
        background-image: url(/img/reco/tag.png);
        background-repeat: no-repeat;
        background-position: right bottom;

        p {
            font-size: 20px;
            line-height: 50px;
        }
    }

    .reco-link__wrap {
        margin: 40px auto 0;
        display: flex;
        gap: 50px;
        justify-content: center;
        align-items: center;

        li {
            position: relative;
            width: 450px;
            border-radius: 50px;
            overflow: hidden;

            &::after {
                content: "";
                position: absolute;
                display: block;
                top: 0;
                bottom: 0;
                right: 40px;
                margin: auto;
                width: 10px;
                height: 16.5px;
                background-image: url(/img/reco/link_arrow.png);
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
            }

            &:last-child .reco-link {
                background-color: #006230;
            }
        }

        .reco-link {
            padding: 26px 0;
            display: block;
            width: 100%;
            height: 100%;
            background-color: #000;
            color: #fff;
            text-align: center;
            font-size: 20px;
            text-decoration: none;
            transition: all ease 0.2s;

            &:hover {
                opacity: 0.8;
            }
        }
    }

    .reco-link__list {
        max-width: 1600px;
        width: 100%;
        margin: 100px auto 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 35px;
        flex-wrap: wrap;

        li {
            position: relative;
            width: 510px;
            background-color: #ECEEEF;
            text-align: center;

            a {
                display: block;
                width: 100%;
                height: 100%;
                padding: 30px 0;
                text-decoration: none;
                font-size: 20px;

                &:hover {
                    opacity: 0.8;
                }
            }

            &::after {
                content: "";
                position: absolute;
                display: block;
                top: 0;
                bottom: 0;
                right: 40px;
                margin: auto;
                height: 10px;
                width: 16.5px;
                background-image: url(/img/reco/btn_arrow.png);
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
            }
        }
    }
}

/* ===============================================
   Common Title
   =============================================== */
.reco-title {
    font-size: 34px;
    line-height: 50px;
    text-align: center;
}

/* ===============================================
   Material
   =============================================== */
.reco-material {
    width: 1600px;
    margin: 100px auto;

    .reco-material__inner {
        border: 1px solid #D3D0D0;
        padding: 80px;
        border-radius: 20px;
        background-image: url(/img/reco/bg01.png);
        background-position: center;
        background-repeat: no-repeat;
    }

    .reco-material-image {
        text-align: center;
        margin: 70px;
    }

    .reco-material__list {
        list-style: none;
        padding: 0;
        margin: 50px auto;
        max-width: 1020px;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .reco-material__item {
        padding: 30px 30px 30px 50px;
        position: relative;

        &:last-child::after {
            border-bottom: none;
        }

        &:last-child .reco-material__title {
            color: #A79C0E;
        }

        &::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 24px;
            bottom: 24px;
            width: 8px;
            background-color: var(--item-color);
        }

        &::after {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            width: calc(100% - 60px);
            border-bottom: 1px solid #C9CACA;
        }
    }

    .reco-material__title {
        display: flex;
        align-items: baseline;
        margin: 0 0 12px 0;
        font-size: 20px;
        font-weight: 600;
        color: var(--item-color);
    }

    .reco-material__description {
        margin: 0;
        font-size: 16px;
        line-height: 1.7;
        color: #333;
    }

    .reco-material__note {
        display: flex;
        align-items: center;
        margin: 12px 0 0 0;
        font-size: 15px;
        color: #555;
    }

    .reco-material__ecomark {
        display: inline-block;
        width: 20px;
        height: 20px;
        margin-right: 8px;
        background-image: url(/img/reco/ecomark.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .reco-material__item--color1 {
        --item-color: #0099DB;
    }

    .reco-material__item--color2 {
        --item-color: #8CB808;
    }

    .reco-material__item--color3 {
        --item-color: #005722;
    }

    .reco-material__item--color4 {
        --item-color: #EDDD00;
    }

}

/* ===============================================
   Process
   =============================================== */
.reco-process {
    background-color: #ECEEEF;

    .reco-process__inner {
        padding: 90px 0 100px;
        width: 100%;
        max-width: 1600px;
        margin: auto;
    }

    .reco-title {
        text-align: center;
        font-size: 28px;
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .reco-process__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .reco-process__item {
        background-color: #fff;
        padding: 50px 10px;
        text-align: center;
    }

    .reco-process__item-head {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        min-height: 80px;
        padding-bottom: 20px;
    }

    .reco-process__legend {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .reco-process__legend-item {
        display: flex;
        align-items: center;
        font-size: 24px;

        &:not(:last-child) {
            margin-bottom: 8px;
        }
    }

    .reco-process__legend-color {
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-right: 10px;
    }

    .reco-process__legend-color--r-pet {
        background-color: #00a0e9;
    }

    .reco-process__legend-color--r-pe {
        background-color: #92c233;
    }

    .reco-process__legend-color--r-peva {
        background-color: #006838;
    }

    .reco-process__legend-color--r-pp {
        background-color: #ffdc00;
    }

    .reco-process__stage {
        min-height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .reco-process__stage-text {
        margin: 0 0 35px 0;
        font-size: 20px;
        line-height: 1.6;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .reco-process__stage-img {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;

        img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }
    }

    .reco-process__arrow {
        margin: 40px 0;
    }

    .reco-process__arrow--split {
        display: flex;
        justify-content: center;
        gap: 130px;
    }

    .reco-process__stage--split {
        min-height: 160px;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-end;
    }

    .reco-process__stage-part {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 45%;

        .reco-process__stage-text {
            height: auto;
            min-height: 45px;
        }
    }


}

/* ===============================================
   Data
   =============================================== */
.reco-data {
    padding: 100px 0;

    .reco-data__inner {
        width: 100%;
        max-width: 1070px;
        margin: auto;
    }

    .reco-data__images {
        margin-top: 70px;
        display: flex;
        gap: 50px;

        .reco-data__img {
            width: 500px;

            img {
                display: block;
                width: 100%;
            }
        }
    }

    .reco-data__text {
        margin: 25px auto 0;
        max-width: 1070px;
        padding: 50px 80px;
        background-color: #ECEEEF;
        text-align: center;

        p {
            font-size: 20px;
            line-height: 22px;

            &.notice {
                margin-top: 30px;
                font-size: 16px;
            }
        }
    }
}

/* ===============================================
   Wedding
   =============================================== */
.reco-wedding {
    .reco-wedding__inner {
        display: flex;
    }

    .reco-wedding__title {
        max-width: 765px;

        img {
            width: 100%;
            object-fit: contain;
        }
    }

    .reco-wedding__about {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex: auto;

        h3 {
            font-size: 34px;
            line-height: 50px;
        }

        p {
            font-size: 20px;
            margin-top: 40px;
            line-height: 50px;
            text-align: center;

            &.text-green {
                margin-top: 80px;
                color: #30B775;
                font-size: 24px;
            }

            &.mark {
                display: inline-block;
                margin-top: 30px;
                vertical-align: middle;

                img {
                    width: 40px;
                    height: 40px;
                    margin-right: 15px;
                }
            }

            &.text02 {
                margin-top: 80px;
            }
        }
    }
}

/* ===============================================
   Interior
   =============================================== */
.reco-interior {
    .reco-interior__inner {
        display: flex;
    }

    .reco-interior__title {
        max-width: 765px;

        img {
            width: 100%;
            object-fit: contain;
        }
    }

    .reco-interior__about {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex: auto;

        h3 {
            font-size: 34px;
            line-height: 50px;
        }

        p {
            font-size: 20px;
            margin-top: 40px;
            line-height: 50px;
            text-align: center;

            &.text-green {
                margin-top: 80px;
                color: #30B775;
                font-size: 24px;
            }
        }
    }
}

/* ===============================================
   Message
   =============================================== */
.reco-message {
    position: relative;
    background-color: #ECEEEF;
    text-align: center;

    .deco {
        display: block;
        position: absolute;
        object-fit: contain;

        &.hana {
            width: calc(218 / 1920 * 100vw);
            max-width: 218px;
            top: 0;
            left: 1%;
        }

        &.tree {
            width: calc(174 / 1920 * 100vw);
            max-width: 174px;
            bottom: 5%;
            left: 12%;
        }

        &.sakura {
            width: calc(572.16 / 1920 * 100vw);
            max-width: 572.16px;
            top: 0;
            right: min(-100px, calc(-100 / 1920 * 100vw));
        }
    }

    .reco-message__inner {
        padding: 170px 0;

        p {
            font-size: 20px;
            line-height: 50px;
        }
    }
}

/* ===============================================
   Display
   =============================================== */
.reco-display {
    width: 100%;

    img {
        width: 100%;
    }
}

/* ===============================================
   After
   =============================================== */
.reco-after {
    margin-top: 100px;
    padding: 207px 0;
    background-image: url(/img/reco/after_bg.png);
    background-repeat: no-repeat;
    background-position: center;

    .reco-after__inner {
        width: 1184px;
        height: 546px;
        margin: auto;
        text-align: center;
        background-image: url(/img/reco/after_contents_bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        h3 {
            font-size: 34px;
        }

        p {
            margin-top: 74.7px;
            font-size: 20px;
            line-height: 50px;
        }
    }
}

/* ===============================================
   Support
   =============================================== */
.reco-suport {
    margin: 100px auto;

    .reco-suport__inner {
        width: 1100px;
        margin: auto;

        >p {
            margin-top: 50px;
            font-size: 24px;
            line-height: 60px;
            text-align: center;
        }
    }

    .reco-suport__logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;

        img:first-child {
            display: block;
            width: 382.13px;
        }

        img:last-child {
            display: block;
            width: 399.12px;
        }
    }

    .reco-link__wrap {
        margin: 40px auto 0;
        display: flex;
        gap: 50px;
        justify-content: center;
        align-items: center;

        li {
            position: relative;
            width: 520px;
            border-radius: 50px;
            overflow: hidden;

            &::after {
                content: "";
                position: absolute;
                display: block;
                top: 0;
                bottom: 0;
                right: 40px;
                margin: auto;
                width: 10px;
                height: 16.5px;
                background-image: url(/img/reco/link_arrow.png);
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
            }

            &:last-child .reco-link {
                background-color: #0089D2;
            }
        }

        .reco-link {
            padding: 26px 0;
            display: block;
            width: 100%;
            height: 100%;
            background-color: #006230;
            color: #fff;
            text-align: center;
            font-size: 20px;
            text-decoration: none;
            transition: all ease 0.2s;

            &:hover {
                opacity: 0.8;
            }
        }
    }

    .reco-suport__wb {
        margin-top: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 31px;
        padding: 42px 0;
        border: 2px solid #F0831E;
        border-radius: 20px;

        img {
            display: block;
            width: 368.56px;
        }

        p {
            text-align: left;
            font-size: 21px;
            line-height: 40px;
        }
    }
}

/* ===============================================
   Responsive (max-width: 768px)
   =============================================== */
@media (max-width: 767px) {
    div.wrapper_ {
        padding: 0 !important;
    }

    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }

    /* ===============================================
   MV
   =============================================== */
    .reco-mv {
        margin: 0;
    }

    /* ===============================================
   Read
   =============================================== */
    .reco-read {
        margin: 40px auto 0;

        .reco-read__text {
            text-align: center;
            height: auto;
            background-image: none;

            p {
                font-size: 16px;
                line-height: 40px;

            }

            .with-img {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 13px;
                margin-top: 30px;

                img {
                    display: block;
                    width: 80.26px;

                }
            }
        }

        .reco-link__wrap {
            margin: 40px auto 0;
            display: flex;
            flex-direction: column;
            gap: 20px;

            li {
                width: 350px;
                max-width: 350px;

                &::after {
                    width: 7.5px;
                    height: 15px;
                }
            }

            .reco-link {
                padding: 20px 0;
                font-size: 16px;
            }
        }

        .reco-link__list {
            width: calc(100% - 30px);
            margin: 40px auto 0;
            gap: 20px 18px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;

            li {
                position: relative;
                max-width: 190px;
                width: 45%;
                height: 90px;
                box-sizing: border-box;

                a {
                    width: 100%;
                    padding: 0;
                    display: block;
                    text-decoration: none;
                    font-size: 15px;
                    line-height: 20px;

                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                }

                &::after {
                    top: auto;
                    bottom: 12px;
                    right: 0;
                    left: 0;
                    margin: auto;
                    height: 7.5px;
                    width: 15px;
                }
            }
        }
    }

    /* ===============================================
   Common Title
   =============================================== */
    .reco-title {
        font-size: 22px;
        line-height: 30px;
        text-align: center;
    }

    /* ===============================================
   Material
   =============================================== */
    .reco-material {
        width: calc(100% - 30px);
        margin: 60px auto;

        .reco-material__inner {
            padding: 40px 15px;
            background-image: url(/img/reco/bg01_sp.png);
            background-position: bottom;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .reco-material-image {
            text-align: center;
            margin: 40px 0 0;

            img {
                width: 100%;
            }
        }

        .reco-material__list {
            list-style: none;
            padding: 0;
            margin: 70px auto 0;
            width: 100%;
        }

        .reco-material__item {
            padding: 15px 15px 15px 38px;
            position: relative;

            &:last-child::after {
                border-bottom: none;
            }

            &::before {
                content: '';
                position: absolute;
                left: 15px;
                top: 14px;
                bottom: 14px;
                width: 8px;
                background-color: var(--item-color);
            }

            &::after {
                width: calc(100% - 30px);
            }
        }

        .reco-material__title {
            margin: 0 0 12px 0;
            font-size: 16px;
        }

        .reco-material__description {
            margin: 0;
            font-size: 14px;
            line-height: 26px;
        }

        .reco-material__note {
            display: flex;
            align-items: center;
            margin: 12px 0 0 0;
            font-size: 14px;
        }

    }

    /* ===============================================
   Process
   =============================================== */
    .reco-process {
        background-color: #ECEEEF;

        .reco-process__inner {
            padding: 40px 0;
            width: 100%;
            margin: auto;
        }

        .reco-title {
            text-align: center;
            font-size: 22px;
            margin-bottom: 20px;
        }

        .reco-process__list {
            width: 100%;
            overflow-x: scroll;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin-left: 15px;
        }

        .reco-process__item {
            padding: 0 0 50px;
            text-align: center;
            width: 240px;
            border-right: 1px solid #ECEEEF;
        }

        .reco-process__item-head {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            min-height: 70px;
            padding-bottom: 0;
            border-bottom: 1px solid #ECEEEF;
        }

        .reco-process__legend {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .reco-process__item-body {
            margin-top: 30px;
        }

        .reco-process__legend-item {
            display: flex;
            align-items: center;
            font-size: 16px;

            &:not(:last-child) {
                margin-bottom: 8px;
            }
        }

        .reco-process__stage {
            min-height: 160px;
        }

        .reco-process__stage-text {
            margin: 0 0 30px 0;
            font-size: 14px;
            line-height: 24px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .reco-process__stage-img {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-grow: 1;

            img {
                max-width: 100%;
                height: auto;
                object-fit: contain;
            }
        }

        .reco-process__arrow {
            margin: 30px 0;

            img {
                width: 66.67px;
                height: 20px;
            }
        }

        .reco-process__arrow--split {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .reco-process__stage--split {
            min-height: 160px;
            flex-direction: row;
            justify-content: space-around;
            align-items: flex-end;
        }

        .reco-process__stage-part {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 45%;
        }

    }

    /* ===============================================
   Data
   =============================================== */
    .reco-data {
        padding: 60px 0;

        .reco-data__inner {
            width: 100%;
        }

        .reco-data__images {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 40px;

            .reco-data__img {
                width: 100%;

                img {
                    display: block;
                    width: calc(100% - 30px);
                    margin: auto;
                }
            }
        }

        .reco-data__text {
            margin: 40px auto 0;
            width: calc(100% - 30px);
            padding: 20px 0;

            p {
                font-size: 16px;
                line-height: 24px;

                &.notice {
                    margin-top: 15px;
                    font-size: 16px;
                }
            }
        }
    }

    /* ===============================================
   Wedding
   =============================================== */
    .reco-wedding {
        .reco-wedding__inner {
            display: flex;
            flex-direction: column-reverse;
            background-color: #ECEEEF;
            margin: auto;
            padding: 60px 15px 70px;
        }

        .reco-wedding__title {
            margin-top: 60px;

            img {
                width: 100%;
                object-fit: contain;
            }
        }

        .reco-wedding__about {
            display: block;
            justify-content: initial;
            align-items: initial;
            flex-direction: initial;
            flex: initial;
            text-align: center;

            h3 {
                font-size: 22px;
                line-height: 50px;
            }

            p {
                font-size: 16px;
                margin-top: 0px;
                line-height: 30px;
                text-align: center;

                &.text-green {
                    margin-top: 0;
                    font-size: 18px;
                    line-height: 70px;
                }

                &.mark {
                    display: inline-block;
                    margin-top: 20px;
                    vertical-align: middle;

                    img {
                        width: 30px;
                        height: 30px;
                        margin-right: 10px;
                    }
                }

                &.text02 {
                    margin-top: 0;
                }
            }
        }
    }

    /* ===============================================
   Interior
   =============================================== */
    .reco-interior {
        .reco-interior__inner {
            display: flex;
            flex-direction: column;
            margin: auto;
            padding: 60px 15px 86px;
        }

        .reco-interior__title {
            margin-top: 60px;

            img {
                width: 100%;
                object-fit: contain;
            }
        }

        .reco-interior__about {
            display: block;
            justify-content: initial;
            align-items: initial;
            flex-direction: initial;
            flex: initial;
            text-align: center;

            h3 {
                font-size: 22px;
                line-height: 50px;
            }

            p {
                font-size: 16px;
                margin-top: 0px;
                line-height: 30px;
                text-align: center;

                &.text-green {
                    margin-top: 0;
                    font-size: 18px;
                    line-height: 70px;
                }
            }
        }
    }

    /* ===============================================
   Message
   =============================================== */
    .reco-message {
        .deco {
            &.hana {
                width: 65.19px;
                top: 11px;
                left: 86.4px;
            }

            &.tree {
                width: 70.39px;
                top: 14px;
                left: 9px;
            }

            &.sakura {
                width: 295.66px;
                top: -20px;
                right: -80px;
            }
        }

        .reco-message__inner {
            padding: 160px 0 50px;

            p {
                font-size: 16px;
                line-height: 30px;
            }
        }
    }

    /* ===============================================
   Display
   =============================================== */
    .reco-display {

        background-color: #ECEEEF;
        padding-bottom: 70px;

        .reco-display__inner {
            width: calc(100% - 30px);
            margin: auto;
        }

        img {
            width: 100%;
        }
    }

    /* ===============================================
   After
   =============================================== */
    .reco-after {
        width: 100%;
        margin-top: 0;
        padding: 63px 0;
        background-image: url(/img/reco/after_bg_sp.png);
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;

        .reco-after__inner {
            width: 100%;
            padding: 51px 7px;
            height: auto;
            margin: auto;
            background-image: url(/img/reco/after_contents_bg_sp.png);
            background-size: 117%;
            background-repeat: no-repeat;
            background-position: center;

            h3 {
                font-size: 22px;
            }

            p {
                margin-top: 30px;
                font-size: 16px;
                line-height: 40px;
            }
        }
    }

    /* ===============================================
   Support
   =============================================== */
    .reco-suport {
        margin: 40px auto;

        .reco-suport__inner {
            width: calc(100% - 30px);
            margin: auto;

            >p {
                margin-top: 15px;
                font-size: 11px;
                line-height: 19px;
            }
        }

        .reco-suport__logos {
            gap: 19px;

            img:first-child {
                max-width: 185.19px;
                width: 45%;
            }

            img:last-child {
                max-width: 193.42px;
                width: 45%;
            }
        }

        .reco-link__wrap {
            margin: 40px auto 0;
            display: flex;
            flex-direction: column;
            gap: 20px;

            li {
                max-width: 398px;
                width: 100%;

                &::after {
                    right: 25px;
                    margin: auto;
                    width: 7.5px;
                    height: 15px;
                }

                &:last-child .reco-link {
                    background-color: #0089D2;
                }
            }

            .reco-link {
                padding: 20px 0;
                display: block;
                width: 100%;
                height: 100%;
                font-size: 16px;
            }
        }

        .reco-suport__wb {

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 28px;
            padding: 0;
            width: calc(100% -30px);
            max-width: 398px;
            margin: 20px auto 0;
            padding: 29px 24px 39.8px;

            img {
                display: block;
                width: 269.29px;
            }

            p {
                text-align: center;
                font-size: 13px;
                line-height: 24px;
            }
        }
    }

    /* 
    .reco-process__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reco-title {
        font-size: 22px;
    } */
}