@charset "UTF-8";

@media screen and (max-width: 768px) {
    main {
        padding-top: 23px;
        padding-bottom: 180px;
    }
}

@media screen and (min-width: 769px) {
    main {
        padding-top: 78px;
        padding-bottom: 150px;
    }
}

/* page_heading */
.page_heading {
    position: relative;
}

.page_heading::after {
    content: '';
    width: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #f8f8f8;
    z-index: -1;
}

.page_heading .heading_wrap {
    display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
    /* opacity: 0; */
}

.page_heading .heading_wrap h1 {
    line-height: 1.25;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.page_heading .heading_wrap span {
    font-family: bilo, sans-serif;
    font-weight: 400;
    line-height: 1.78;
    letter-spacing: 0.1em;
    position: relative;
    color: #ffc600;
}

.page_heading .heading_wrap span::before {
    content: '';
    display: inline-block;
    border-radius: 50%;
    background-color: #333;
    position: absolute;
    top: 50%;
    left: -0.8em;
    transform: translateY(-50%);
    background-color: #ffc600;
}

/* .page_heading .lead_text {
    opacity: 0;
} */

.page_heading .lead_text p {
    letter-spacing: 0.1em;
    font-weight: bold;
}

.page_heading .img {
    position: relative;
}

.page_heading .img img {
    width: 100%;
}

.page_heading .img::after {
    content: 'SDGs';
    font-family: bilo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    color: #ffc600;
}

@media screen and (max-width: 768px) {
    .page_heading::after {
        height: 275px;
    }

    .page_heading .heading_wrap h1 {
        font-size: 1.05rem;
        margin-right: 19px;
    }
    
    .page_heading .heading_wrap span {
        font-size: 0.9rem;
    }

    .page_heading .heading_wrap span::before {
        width: 3px;
        height: 3px;
    }

    .page_heading .lead_text {
        margin-top: 12px;
    }

    .page_heading .lead_text p {
        font-size: 1.4rem;
        line-height: 1.85;
    }

    .page_heading .img {
        width: 100%;
        margin-top: 66px;
    }

    .page_heading .img::after {
        font-size: 50px;
        transform: translate(-3%, -64%);
    }
}

@media screen and (min-width: 769px) {
    .page_heading::after {
        height: 1000px;
    }

    .page_heading .heading_wrap h1 {
        font-size: 20px;
        margin-right: 31px;
    }
    
    .page_heading .heading_wrap span {
        font-size: 14px;
    }

    .page_heading .heading_wrap span::before {
        width: 4px;
        height: 4px;
    }

    .page_heading .lead_text {
        margin-top: 38px;
    }

    .page_heading .lead_text p {
        font-size: 28px;
        line-height: 2;
    }

    .page_heading .img {
        width: 83.3%;
        margin-top: 146px;
    }

    .page_heading .img::after {
        font-size: 7.66vw;
        transform: translate(47%, -69%);
    }
}

@media screen and (min-width: 1200px) {
    .page_heading .img::after {
        font-size: 92px;
    }
}

/* page_content */
.page_content .con_heading h2 {
    letter-spacing: 0.2em;
    position: relative;
}

.page_content .con_heading h2::before {
    content: '';
    display: inline-block;
    border-radius: 50%;
    background-color: #333;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #ffc600;
}

.page_content .text p {
    letter-spacing: 0.1em;
}

.page_content .text p:not(:first-child) {
    margin-top: 1.7em;
}

.page_content .img_wrap img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .page_content {
        margin-top: 71px;
    }

    .page_content .con_heading h2 {
        font-size: 1.7rem;
        padding-left: 17px;
    }
    
    .page_content .con_heading h2::before {
        width: 6px;
        height: 6px;
    }

    .page_content .text {
        margin-top: 16px;
    }

    .page_content .text p {
        font-size: 1.4rem;
        line-height: 1.71;
    }

    .page_content .img {
        width: 100%;
        margin: 50px auto 0;
    }

    .page_content .img img {
        width: 100%;
    }
}

@media screen and (min-width: 769px) {
    .page_content {
        margin-top: 233px;
    }

    .page_content .con_heading h2 {
        font-size: 28px;
        padding-left: 33px;
    }
    
    .page_content .con_heading h2::before {
        width: 12px;
        height: 12px;
    }

    .page_content .text {
        margin-top: 28px;
    }

    .page_content .text p {
        font-size: 16px;
        line-height: 1.56;
    }

    .page_content .img {
        width: 49.6%;
        margin: 96px auto 0;
    }

    .page_content .img img {
        width: 100%;
    }
}