@charset "UTF-8";

:root {
    --color-sdg-red: #faf3f6;
    --color-sdg-yellow: #fff8e2;
    --color-sdg-orange: #fff0e9;
}

.bg_red { background-color: var(--color-sdg-red); }

.bg_yellow { background-color: var(--color-sdg-yellow); }

.bg_orange { background-color: var(--color-sdg-orange); }

.page_title {
    margin-top: 100px;
    margin-bottom: 80px;
}

@media screen and (max-width: 1200px) {
    .page_title {
        margin-top: 8.3vw;
        margin-bottom: 6.66vw;
    }
}

@media screen and (max-width: 768px) {
    .page_title {
        margin-bottom: 40px;
    }
}



/*-------------------------------------------------------------
menu
-------------------------------------------------------------*/
.page_menu {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.page_menu li a {
    color: transparent;
    background: linear-gradient(to right, var(--color-blue3) 50%, var(--color-main) 50%) 100%;
    background-clip: text;
    background-size: 200% 100%;
    transition: background-position 0.3s;
    font-size: 16px;
    position: relative;
    padding: 0 1em;
    white-space: nowrap;
}

.page_menu li a:hover {
    background-position: 0 100%;
}


.page_menu li:not(:first-child) a::before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 1px;
    height: 18px;
    background-color: #000;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
}

@media screen and (max-width: 1200px) {
    .page_menu {
        margin-top: 4vw;
    }

    .page_menu li a {
        font-size: 1.5vw;
    }
}

@media screen and (max-width: 768px) {
    .page_menu {
        width: 90%;
        margin: 20px auto 0;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 1em;
    }

    .page_menu li {
        width: calc((100% - 1em) / 2);
    }

    .page_menu li a {
        width: 100%;
        font-size: 12px;
        text-align: center;
        padding: 1em 0;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .page_menu li:not(:first-child) a::before {
        display: none;
    }
}


/*-------------------------------------------------------------
section
-------------------------------------------------------------*/
.susta_sec {
    margin-bottom: 150px;
}

.susta_sec .nb {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    line-height: 1;
    text-align: center;
    margin-bottom: 1em;
}

.susta_sec .lead {
    width: 90%;
    font-size: 2.2rem;
    line-height: 2.3em;
    letter-spacing: 0.1em;
    text-align: center;
    font-weight: bold;
    margin: 0 auto 1.8em;
}

.susta_sec .sdg_icon {
    width: 90%;
    margin: 0 auto 50px;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.susta_sec .sdg_icon img {
    width: 200px;
}

.sdg_cont {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 100px 0;
}

.sdg_block {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.sdg_title {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #a21942;
    margin-bottom: 40px;
    display: flex;
}

.sdg_title span {
    width: 1.7em;
    height: 1.7em;
    font-size: 1em;
    line-height: 1;
    border-radius: 50%;
    color: #fff;
    background-color: #a21942;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.3em;
    padding-bottom: 0.1em;
}

.sdg_title p {
    flex: 1;
}

.sdg_text_list li:not(:first-child) {
    border-top: 1px solid #979392;
    margin-top: 40px;
    padding-top: 40px;
}

.sdg_text_list li p {
    font-size: 1.8rem;
    line-height: 2em;
    letter-spacing: 0.1em;
    padding-left: 1em;
    position: relative;
}

.sdg_text_list li p::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 1200px) {
    .susta_sec {
        margin-bottom: 12.5vw;
    }

    .susta_sec .nb {
        font-size: 3.3vw;
    }

    .susta_sec .lead {
        font-size: 2.2vw;
    }

    .susta_sec .sdg_icon {
        margin: 0 auto 4.2vw;
        gap: 6.7vw;
    }

    .sdg_cont {
        padding: 6.7vw 0;
        gap: 8.3vw 0;
    }

    .sdg_title {
        font-size: 2.1vw;
        margin-bottom: 4vw;
    }

    .sdg_text_list li:not(:first-child) {
        margin-top: 4vw;
        padding-top: 4vw;
    }

    .sdg_text_list li p {
        font-size: 1.7vw;
    }
}

@media screen and (max-width: 768px) {
    .susta_sec {
        margin-bottom: 80px;
    }

    .susta_sec .nb {
        font-size: 30px;
    }

    .susta_sec .lead {
        font-size: 17px;
        line-height: 2em;
        white-space: nowrap;
    }

    .susta_sec .sdg_icon {
        margin: 0 auto 40px;
        gap: 10px;
    }

    .susta_sec .sdg_icon img {
        width: 160px;
    }

    .sdg_cont {
        padding: 40px 0;
        gap: 50px 0;
    }

    .sdg_title {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .sdg_text_list li:not(:first-child) {
        margin-top: 25px;
        padding-top: 25px;
    }

    .sdg_text_list li p {
        font-size: 14px;
    }

}


/*-------------------------------------------------------------
section text
-------------------------------------------------------------*/
.susta_sec .text {
    font-size: 1.8rem;
    line-height: 2em;
    letter-spacing: 0.06em;
}

.susta_sec .text + .list_order {
    margin-top: 2em;
}

.susta_sec .em {
    font-weight: bold;
    color: var(--color-main);
}

.list_order {
    counter-reset: listnum;
}

.list_order > li {
    position: relative;
    padding-left: 2em;
    margin-top: 1em;
}

.list_order > li::before{
	counter-increment: listnum;
	content: "（" counter(listnum) "）";
    position: absolute;
    top: 0;
    left: 0;
    font-weight: bold;
    color: var(--color-main);
}

.list_order_2 li {
    position: relative;
    padding-left: 1.5em;
    text-indent: -1.5em;
    margin-top: 0.5em;
}

.list_order_2 li span {
    margin-right: 0.5em;
}

.bold {
    font-weight: bold;
}

@media screen and (max-width: 1200px) {
    .susta_sec .text {
        font-size: 1.8vw;
    }
}

@media screen and (max-width: 768px) {
    .susta_sec .text {
        font-size: 15px;
    }
}

.bcp_policy_list {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    width: 30em;
    margin: 0 auto;
}

.bcp_policy_list li {
    display: flex;
}

.bcp_policy_list li:not(:first-child) {
    margin-top: 0.5em;
}

.bcp_policy_list span {
    width: 1.7em;
    height: 1.7em;
    font-size: 1em;
    line-height: 1;
    border-radius: 50%;
    color: #fff;
    background-color: var(--color-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.6em;
    padding-bottom: 0.1em;
}

.bcp_policy_list p {
    flex: 1;
}

@media screen and (max-width: 768px) {
    .bcp_policy_list {
        font-size: 17px;
        width: 100%;
    }

    .bcp_policy_list li:not(:first-child) {
        margin-top: 1em;
    }
}


.image_wrapp01{
    width: 1200px;
    margin: 80px auto 0;
}

.image_wrapp01 .image_catch{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 1em;
}

.image_wrapp01 .image_caption{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 2em;
}

.image_wrapp01 .image_caption strong{
    display: inline-block;
    font-weight: 700;
    position: relative;
}

.image_wrapp01 .image_caption strong::after,
.image_wrapp01 .image_caption strong::before{
    content: '';
    display: inline-block;
    width: 18px;
    height: 3px;
    background: #000;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.image_wrapp01 .image_caption strong::before{
    left: -24px;
}

.image_wrapp01 .image_caption strong::after{
    right: -24px;
}


.image_wrapp02{
    width: 880px;
    margin: 80px auto 0;
}

.image_wrapp02 .image_catch{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 1em;
}

.image_wrapp02 .image_caption{
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 2em;
}

.image_wrapp02 .note{
    font-size: 12px;
    line-height: 1.4;
    margin: 1em 1em 0;
    padding-left: 2em;
    position: relative;
}

.image_wrapp02 .note::before{
    content: '※1';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}



@media screen and (max-width: 1200px) {

    .image_wrapp01{
        width: 90%;
        margin: 6.666667vw auto 0;
    }

    .image_wrapp01 .image_catch{
        font-size: 1.833333vw;
    }

    .image_wrapp01 .image_caption{
        font-size: 1.5vw;
    }

    .image_wrapp01 .image_caption strong::after,
    .image_wrapp01 .image_caption strong::before{
        width: 1.5vw;
        height: 0.25vw;
    }

    .image_wrapp01 .image_caption strong::before{
        left: -2vw;
    }

    .image_wrapp01 .image_caption strong::after{
        right: -2vw;
    }


    .image_wrapp02{
        width: 73.333333vw;
        margin: 6.666667vw auto 0;
    }

    .image_wrapp02 .image_catch{
        font-size: 1.833333vw;
    }

    .image_wrapp02 .image_caption{
        font-size: 1.5vw;
    }

    .image_wrapp02 .note{
        font-size: 1vw;
    }




}

@media screen and (max-width: 768px) {

.image_wrapp01{
    width: 90%;
    margin: 30px auto 0;
}

.image_wrapp01 .image_catch{
    font-size: 17px;
}

.image_wrapp01 .image_caption{
    font-size: 14px;
    margin-bottom: 1.3em;
}

.image_wrapp01 .image_caption strong::after,
.image_wrapp01 .image_caption strong::before{
    width: 14px;
    height: 2px;
}

.image_wrapp01 .image_caption strong::before{
    left: -18px;
}

.image_wrapp01 .image_caption strong::after{
    right: -18px;
}



.image_wrapp02{
    width: 90%;
    margin: 30px auto 0;
}

.image_wrapp02 .image_catch{
    font-size: 17px;
}

.image_wrapp02 .image_caption{
    font-size: 14px;
    margin-bottom: 1.3em;
}

.image_wrapp02 .note{
    font-size: 10px;
    margin-left: 0;
    margin-right: 0;
}


}
