header {
    border-bottom: none;
    z-index: 3;
}

.header-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 23px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-title-box {
    display: flex;
    align-items: center;
}

h1 {
    margin-right: 52px;
}

header p {
    font-size: 21px;
    font-weight: bold;
    color: #000;
}

.wrap1366 {
    max-width: 1366px;
    width: 90%;
    margin: 0 auto;
}

.wrap1000 {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}

.wrap1064 {
    max-width: 1064px;
    margin: 0 auto;
    width: 90%;
}

.main_bg {
    position: relative;
    background: url(../img/main_bg-pc.png) center no-repeat;
    background-size: cover;
    padding: 100px 0 65px;
}

#sdgs_paper .inquiry {
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #2559A4;
    border-radius: 3em;
    padding: 0.89em 3.39em;
    z-index: 2;
}

#sdgs_paper .inquiry:hover {
    color: #2559A4;
    background-color: #fff;
    border: 2px solid #2559A4;
    opacity: 1;
}

.main_bg h3 {
    font-size: 23px;
    line-height: 1;
    font-weight: bold;
    color: #00861F;
    margin: 3.9em 0 1.9em;
}

.main_bg h2 {
    font-size: 49px;
    line-height: 1.34;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.9em;
}

/* font */
.zenkaku {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.bold-italic {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: italic;
}

.list-feature {
    display: flex;
    margin-bottom: 85px;
}

.list-feature li {
    width: 169px;
    height: 169px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00861F;
    border-radius: 50%;
}

.list-feature li p {
    font-size: 20px;
    text-align: center;
    line-height: 1.45;
    color: #00861F;
    font-weight: bold;
}

.list-feature li:last-child {
    margin-left: -9px;
}

.list-anchor {
    display: flex;
}

.list-anchor li {
    position: relative;
    box-shadow: 1px 1px 10px #333;
    margin-right: 10px;
    width: fit-content;
}

.list-anchor li a {
    display: block;
    font-size: 17px;
    font-weight: bold;
    background-color: #fff;
    width: 12.35em;
    padding: 0.65em 0 0.65em 3.5em ;
    border-radius: 0.35em;
}

.list-anchor li::before{
    position: absolute;
    top: 50%;
    left: 0.7em;
    transform: translateY(-50%);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 150%;
}
.list-anchor li:first-child:before{
    content: '01';
}
.list-anchor li:nth-child(2):before{
    content: '02';
}
.list-anchor li:nth-child(3):before{
    content: '03';
}
.list-anchor li::after {
    position: absolute;
    content: '';
    background-image: url(../img/icon_green-arrow.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
    width: 12px;
    height: 100%;
    top: 0;
    right: 1em;
    transition: 0.2s ease-in-out;
}

.list-anchor li:hover::after {
    background-position: top;
}

.list-anchor li a:hover {
    opacity: 1;
    color: #00861F;
}
.list-anchor li:hover::before {
    opacity: 1;
    color: #00861F;
}

.scrolldown1 {
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 35px;
}

.scrolldown1 span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -3px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.scrolldown1::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 19px;
    background: #fff;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}

@keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }

    30% {
        height: 30px;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}

@media screen and (max-width: 768px) {
    #header{
        background-color: #fff;
    }
    .header-inner {
        width: 100%;
        padding: 3.1vw 5vw;
    }

    h1 {
        margin-right: 3vw;
    }

    .sz_logo img {
        width: 21vw;
    }

    header p {
        font-size: 3.5vw;
        text-shadow: 1px 1px 1px #fff;
    }

    .wrap1000 {
        width: 100%;
        padding: 0;
    }

    .wrap1000.without_parent {
        width: 90%;
    }

    .wrap1064 {
        width: 90%;
    }

    .main_bg {
        background-image: url(../img/main_bg-sp.png);
        padding:10vw 0 10vw;
        background-position: top;
    }

    #sdgs_paper .inquiry {
        position: fixed;
        font-size: 4.46vw;
        text-align: center;
        right: 0;
        top: auto;
        bottom: 0;
        border-radius: 0;
        width: 100%;
        padding: 0.5em 0;
    }

    #sdgs_paper .inquiry:hover {
        color: #fff;
        background-color: #2559A4;
    }

    #sdgs_paper .inquiry span {
        display: inline-block;
        width: 7.69vw;
        vertical-align: middle;
    }

    .main_bg h3 {
        font-size: 4.36vw;
        line-height: 1.5;
        margin: 14em 0 0.75em;
    }

    .main_bg h2 {
        font-size: 6.8vw;
    }

    .list-feature {
        margin-bottom: 5.4vw;
        justify-content: center;
    }

    .list-feature li {
        width: 33.59vw;
        height: 33.59vw;
    }

    .list-feature li p {
        font-size: 3.59vw;
    }

    .list-feature li:last-child {
        margin-left: -2vw;
    }

    .list-anchor {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .list-anchor.pc {
        display: none;
    }

    .list-anchor li {
        margin-right: 0;
        margin-bottom: 3vw;
    }

    .list-anchor li a {
        font-size: 3.5vw;
    }

    .list-anchor li::after {
        width: 2.5vw;
        right: 3.5vw;
    }

    .scrolldown1 {
        height: 7vw;
    }

    /* ハンバーガメニュ */
    .menu-box {
        position: fixed;
        top: 0;
        right: 0;
    }

    .menu-toggle {
        display: block;
        width: 12.3vw;
        height: 12.3vw;
        position: relative;
        cursor: pointer;
        padding: 10px;
        background: #fff;
        border-bottom-left-radius: 10px;
        z-index: 999;
    }

    .menu-toggle span {
        display: block;
        width: 60%;
        margin-left: 20%;
        height: 2px;
        background: #2559A4;
        position: absolute;
        left: 0;
        transition: all 0.3s;
    }

    .menu-toggle span:nth-child(1) {
        top: 25%;
        width: 36%;
    }

    .menu-toggle span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-toggle span:nth-child(3) {
        bottom: 25%;
    }

    .menu-toggle.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        width: 60%;
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    .menu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #menu {
        width: 100vw;
        z-index: 99;
    }

    .menu-inner {
        padding: 15vw 5% 7.69vw;
        background-color: #fff;
    }

    .menu li {
        padding: 10px 10vw;
        border-bottom: 1px solid #F4F4F4;
    }

    .menu li:last-child {
        border-bottom: none;
    }

    .menu li a {
        position: relative;
        color: #000;
        text-decoration: none;
        font-size: 4.36vw;
        font-weight: bold;
        display: block;
        padding: 10px 0;
    }

    .menu li a::after {
        position: absolute;
        content: '';
        width: 3vw;
        height: 3.9vw;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        background-image: url(../img/icon_green-arrow-sp.png);
        background-repeat: no-repeat;
        background-size: contain;
    }

    .menu li a:hover {
        color: #2559A4;
    }

    .menu a {
        font-size: 4.36vw;
        font-weight: bold;
        color: #000;
        text-decoration: none;
    }

    .menu span {
        font-size: 160%;
    }

    .menu.active {
        display: block;
    }

    .menu a.menu-inquiry {
        position: relative;
        display: block;
        border-radius: 2em;
        font-size: 16px;
        text-align: center;
        color: #fff;
        padding: 1em 0 1em 2.5em;
        background-color: #2559A4;
    }

    .menu a.menu-inquiry::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 17%;
        width: 1.875em;
        height: 1.28em;
        background-image: url(../img/main-inquiry-sp.png);
        background-repeat: no-repeat;
        background-size: contain;
        transform: translateY(-50%);
    }
    .scrolldown1 span {
        top: -3vw;
    }
}

/* sec01 */
.sdgs-common-sec {
    padding: 65px 0;
}

#sec01 {
    margin: 100px 0;
}

.sec01-main-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 100px;
}

.sec01-main-flex dt {
    width: 52%;
    padding-bottom: 17px;
}

.sec01-main-flex dd {
    width: 44%;
}

.number-content {
    position: relative;
    padding-left: 50px;
    width: fit-content;
}

.number {
    font-size: 210px;
    color: #fff;
    letter-spacing: -5px;
}

.light_green {
    color: #D3E6D2;
}

.white {
    color: #fff;
}
.light-blue{
    color: #DBEAFD;
}
.number-inner {
    position: absolute;
    bottom: 20%;
    right: -7%;
}

.num_jp {
    font-size: 28px;
    font-weight: bold;
}

.num_en {
    font-size: 14px;
    letter-spacing: 1.6px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    margin-top: 0.8em;
}

.green {
    color: #00861F;
}

.sec01-1000 {
    margin-left: 183px;
}

.sdgs-common-sec h2 {
    font-size: 34px;
    font-weight: bold;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    line-height: 1.5;
}

.sdgs-common-sec h2 sup {
    vertical-align: super;
    font-size: 50%;
}

.sdgs-common-sec h3 {
    font-size: 22px;
    font-weight: bold;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    margin-bottom: 0.8em;
    line-height: 1.5;
}

#sec01 h3 {
    margin-top: 4em;
}

.note {
    font-size: 12px;
    margin: 1em 0 2.5em;
}

.text {
    font-size: 16px;
    line-height: 1.875;
}

.sec01-point li {
    margin-bottom: 60px;
}

.sec01-point li:last-child {
    margin-bottom: 0;
}

.sec01-point li.reserve dl {
    flex-direction: row-reverse;
}

.sec01-point dl {
    display: flex;
    align-items: center;
}

.sec01-point dt {
    width: 41.3%;
    margin-right: 5.7%;
}

.sec01-point li.reserve dt {
    margin-right: 0;
}

.sec01-point li.reserve dd {
    margin-right: 5.7%;
}

.sec01-point dd {
    width: 40.4%;
}

.sec01-point h5 {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
    color: #00861F;
}

.sec01-point h5 span {
    font-size: 235%;
    margin-left: 5px;
}

.sec01-point h5::after {
    content: '';
    position: absolute;
    width: 4em;
    height: 1px;
    background-color: #00861F;
    top: 50%;
    transform: translateY(-50%);
    left: 6em;
}

.sec01-point h4 {
    font-size: 38px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    margin: 1.3em 0 0.8em;
}

.point-text {
    font-size: 16px;
    line-height: 1.875;
}

@media (min-width: 769px) and (max-width: 1400px) {
    .number-content {
        padding-left: 0;
    }

    .number {
        font-size: 15vw;
    }

    .num_jp {
        font-size: 2vw;
    }

    .num_en {
        font-size: 1vw;
    }

    .note {
        font-size: 0.9vw;
    }

    .sec01-1000 {
        margin-left: 9vw;
    }

    .sdgs-common-sec h2 {
        font-size: 2.43vw;
    }

    .sdgs-common-sec h3 {
        font-size: 1.57vw;
    }

    .text {
        font-size: 1.14vw;
    }

    .sec01-point li {
        margin-bottom: 4.29vw;
    }

    .sec01-point h5 {
        font-size: 1.43vw;
    }

    .sec01-point h4 {
        font-size: 2.71vw;
    }

    .point-text {
        font-size: 1.14vw;
    }
}

@media screen and (max-width: 768px) {
    .sdgs-common-sec {
        padding: 10vw 0;
    }

    #sec01 {
        margin: 10vw 0;
    }

    .sec01-main-flex {
        display: block;
        margin-bottom: 10vw;
    }

    .sec01-main-flex dt {
        width: 100%;
        padding-bottom: 4vw;
    }

    .sec01-main-flex dd {
        width: 100%;
    }

    .number-content {
        display: flex;
        padding-left: 0;
        align-items: center;
    }

    .number {
        font-size: 21.54vw;
        margin-right: 7vw;
        letter-spacing: -1px;
    }

    .number-inner {
        position: static;
    }

    .sec01-main-img {
        width: 100vw;
        margin-left: -5vw;
        margin-top: 2vw;
    }

    .num_jp {
        font-size: 7.18vw;
    }

    .num_en {
        font-size: 3.6vw;
    }

    .sec01-1000 {
        margin-left: 0;
    }

    .sdgs-common-sec h2 {
        font-size: 6.15vw;
    }

    .sdgs-common-sec h3 {
        font-size: 4.36vw;
    }

    #sec01 h3 {
        margin-top: 11.54vw;
    }

    .note {
        font-size: 3vw;
    }

    .text {
        font-size: 3.5vw;
    }

    .sec01-point li {
        margin-bottom: 15vw;
    }

    .sec01-point li.reserve dl,
    .sec01-point dl {
        flex-direction: column;
    }

    .sec01-point dt {
        width: 100%;
        margin-right: 0;
        margin-bottom: 4.36vw;
    }

    .sec01-point li.reserve dt {
        margin-right: 0;
    }

    .sec01-point li.reserve dd {
        margin-right: 0;
    }

    .sec01-point dd {
        width: 100%;
    }

    .sec01-point h5 {
        font-size: 4vw;
    }

    .sec01-point h4 {
        font-size: 7.6vw;
        margin: 0 0 0 9.49vw;
    }

    .point-text {
        font-size: 3.5vw;
        margin-top: 1em;
    }

    .sp-flex {
        display: flex;
        align-items: center;
    }

    .sec01-point h5::after {
        width: 1em;
    }
}

/* sec02 */
#sec02.sdgs-common-sec {
    padding-bottom: 0;
}
#sec02 .wrap1366 {
    background-image: url(../img/sec02-bg-pc.png);
    background-repeat: no-repeat;
    background-size: contain;
}

#sec02 .wrap1000 {
    padding: 0 25px;
}

.sec02-main-flex {
    display: flex;
    padding-right: 210px;
}

.sec02-main-flex dt {
    margin-right: 200px;
}

.sec02-main-flex dd {
    margin-top: 80px;
    margin-bottom: 155px;
}

#sec02 .number-inner {
    right: -17%;
}

#sec02 h2 {
    margin-bottom: 0.88em;
}

#sec02 .wrap1000.sec02-blue {
    position: relative;
    background-color: #ADC3D3;
    border-radius: 10px;
    margin-top: -90px;
    padding: 2em 3.5em;
    z-index: 1;
    margin-bottom: 120px;
}

.sec02-blue::after {
    position: absolute;
    content: '';
    background-image: url(../img/sec02-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 20.7px;
    height: 68.3px;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

#sec02 .sec02-blue h3 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

#sec02 h3 span {
    text-decoration: underline;
}

.sec02-point {
    display: flex;
    justify-content: space-between;
}

.sec02-point li {
    position: relative;
    width: 270px;
    background-color: #fff;
    border-radius: 50% / 35%;
    padding: 30px 45px 110px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.sec02-point.green-list li {
    width: 32.5%;
    padding: 30px 45px 160px;
}

.sec02-point li::after {
    position: absolute;
    content: '';
    background-image: url(../img/sec02-tri.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 47px;
    height: 47px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.sec02-point li.circle::after {
    background-image: url(../img/sec02-circle-blue.png);
}

.sec02-icon {
    width: 65px;
    margin: 0 auto;
}

.sec02-point h4 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.9em;
}

.sec02-txt-inner {
    padding-left: 22px;
    margin: 0 auto 25px;
}

.sec02-txt-inner.mb0 {
    margin-bottom: 0;
}

.sec02-txt-inner h5 {
    position: relative;
    font-size: 19px;
    font-weight: 500;
}

.sec02-txt-inner h5 span {
    font-size: 73%;
}

.sec02-txt-inner h5::after {
    position: absolute;
    content: '';
    background-image: url(../img/sec02-check.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 17px;
    height: 17px;
    top: 5%;
    left: -1.25em;
}

.sec02-txt-inner p {
    font-size: 14px;
    line-height: 1.4;
}

#sec02 h3.black {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.2em;
}

.sec02-point.green-list li {
    background-color: #D3E6D2;
}

.sec02-point.sec02-point.green-list li::after {
    background-image: url(../img/sec02-circle-white.png);
}

.sec02-icon-list {
    width: 71.3%;
    margin: 90px auto 50px;
    display: flex;
    justify-content: space-between;
}

.sec02-icon-list li {
    width: 18.4%;
}

.sec02-icon-txt {
    font-size: 22px;
    text-align: center;
    line-height: 1.6;
}

/* お客様の声 */
.container {
    /* max-width: 1366px; */
    margin: 0 auto;
    background-image: url(../img/sec02-rainbow-bg-pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    margin-top: 170px;
}

.customer-voice {
    position: relative;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.customer-voice::before {
    content: '';
    position: absolute;
    background-image: url(../img/sec02-customer-voice-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.3em;
    height: 1.25em;
    top: 50%;
    left: 39%;
    transform: translateY(-50%);
}

.customer-voice-txt {
    font-size: 21px;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    margin: 1.3em 0 3.3em;
}

.bubbles .slick-list {
    padding-bottom: 20px;
}

.bubbles li {
    position: relative;
    font-size: 18px;
    line-height: 1.7;
    width: 347px;
    min-height: 175px;
    margin: 0 22.5px 0;
    background-color: #fff;
    color: #2559A4;
    border-radius: 1.5em;
    padding: 1.8em;
    box-shadow: 5px 8px 16px rgba(0, 0, 0, 0.16);
}

.bubbles span {
    font-weight: bold;
}

.bubbles li::after {
    position: absolute;
    content: '';
    background-image: url(../img/sec02-slider-after.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 29.1px;
    height: 32.4px;
    bottom: -23px;
    right: 20px;
}
.slick-prev,.slick-next{
    display: none;
}
.slick-prev:before, 
.slick-next:before{
    font-family: sans-serif;
}
@media (min-width: 769px) and (max-width: 1400px) {
    #sec02 .wrap1000 {
        padding: 0 1.79vw;
    }

    .bg-1440 {
        background-image: url(../img/sec02-bg-pc-1400.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    #sec02 .wrap1366 {
        background: none;
    }

    .sec02-main-flex {
        padding-right: 0;
    }

    .sec02-main-flex dt {
        margin-right: 14.29vw;
    }

    .sec02-main-flex dd {
        margin-top: 5.71lvw;
        margin-bottom: 11.07vw;
    }

    #sec02 .wrap1000.sec02-blue {
        margin-top: -6.43vw;
        margin-bottom: 8.57vw;
    }

    .sec02-blue::after {
        width: 1.48vw;
        height: 4.88vw;
        bottom: -3.57vw;
    }

    #sec02 .sec02-blue h3 {
        font-size: 1.71vw;
    }

    .sec02-point {
        justify-content: space-around;
    }

    .sec02-point li {
        width: 19.29vw;
        padding: 2.14vw 3.21vw 7.86vw;
    }

    .sec02-point.green-list li {
        width: 32%;
        padding: 2.14vw 3.21vw 13vw;
    }

    .sec02-point li::after {
        width: 3.36vw;
        height: 3.36vw;
        bottom: 2.86vw;
    }

    .sec02-icon {
        width: 4.64vw;
    }

    .sec02-point h4 {
        font-size: 2.14vw;
    }

    .sec02-txt-inner {
        padding-left: 1.57vw;
        margin: 0 auto 1.79vw;
    }

    .sec02-txt-inner h5 {
        font-size: 1.36vw;
    }

    .sec02-txt-inner h5::after {
        width: 1.21vw;
        height: 1.21vw;
    }

    .sec02-txt-inner p {
        font-size: 1vw;
    }

    #sec02 h3.black {
        font-size: 2vw;
    }

    .sec02-icon-list {
        margin: 6.43vw auto 3.57vw;
    }

    .sec02-icon-list li {
        width: 18.4%;
    }

    .sec02-icon-txt {
        font-size: 1.57vw;
    }

    /* お客様の声 */
    .container {
        padding: 5.71vw 0;
        margin-top: 12.14vw;
    }

    .customer-voice {
        font-size: 2.85vw;
    }

    .customer-voice-txt {
        font-size: 1.4vw;
    }

    .bubbles .slick-list {
        padding-bottom: 1.4vw;
    }

    .bubbles li {
        font-size: 1.29vw;
        width: 24.79vw;
        min-height: 12.5vw;
        margin: 0 1.61vw 0;
        box-shadow: 0.36vw 0.57vw 1.1vw rgba(0, 0, 0, 0.16);
    }
    .bubbles li::after {
        width: 2.08vw;
        height: 2.31vw;
        bottom: -1.5vw;
        right: 1.43vw;
    }

}
@media (min-width: 769px) and (max-width: 1200px) {
    .sec02-txt-inner h5{
        font-size: 1.5vw;
    }
}
@media screen and (max-width: 768px) {
    #sec02 .wrap1366 {
        background: none;
        padding-top: 9vw;
        padding-bottom: 70vw;
    }

    .bg-1440 {
        background-image: url(../img/sec02-bg-pc-1400.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    #sec02 .wrap1000 {
        padding: 0;
    }

    .sec02-main-flex {
        display: block;
        padding-right: 0;
    }

    .sec02-main-flex dt {
        margin-right: 0;
    }

    .sec02-main-flex dd {
        margin-top: 3vw;
        margin-bottom: 10vw;
    }

    #sec02 .wrap1000.sec02-blue {
        margin-top: -60vw;
        margin-bottom: 20vw;
        width: 90%;
        padding: 2em;
    }

    .sec02-blue::after {
        width: 5.31vw;
        height: 17.51vw;
    }

    #sec02 h3 {
        line-height: 1.5;
    }

    #sec02 .sec02-blue h3 {
        font-size: 5.6vw;
        line-height: 1.5;
    }

    .sec02-point {
        flex-direction: column;
        align-items: stretch;
    }

    .sec02-point li {
        width: 100%;
        padding: 9vw 14vw 0;
        min-height: 100vw;
        margin-bottom: 5vw;
    }

    .sec02-point.green-list li {
        width: 88%;
        margin: 0 auto 5vw;
        padding: 9vw 16vw 0;
        min-height: 105vw;
    }

    .sec02-point li::after {
        width: 16vw;
        height: 16vw;
        bottom: 9vw;
    }

    .sec02-icon {
        width: 35%;
    }

    .sec02-point h4 {
        font-size: 7.6vw;
        margin-top: 0.2em;
        margin-bottom: 1.2em;
    }

    .sec02-txt-inner {
        padding-left: 4vw;
        margin: 0 auto 4vw;
    }

    .sec02-txt-inner h5 {
        font-size: 4.1vw;
    }

    .sec02-txt-inner h5::after {
        width: 1em;
        height: 1em;
    }

    .sec02-txt-inner p {
        font-size: 3vw;
    }

    #sec02 h3.black {
        font-size: 6.41vw;
    }

    .sec02-icon-list {
        width: 100%;
        flex-wrap: wrap;
        margin: 10vw auto 5vw;
    }

    .sec02-icon-txt {
        font-size: 3.4vw;
        text-align: left;
    }
    /* お客様の声 */
    .container {
        background-image: url(../img/sec02-rainbow-bg-sp.png);
        padding: 16.92vw 0;
        margin-top: 20.51vw;
    }

    .sdgs-common-sec h2.customer-voice {
        font-size: 7.18vw;
        text-indent: 1.5em;
    }

    .customer-voice::before {
        left: 25%;
    }

    .customer-voice-txt {
        font-size: 3.59vw;
    }

    .bubbles .slick-list {
        padding-bottom: 7.69vw;
    }

    .bubbles li {
        font-size: 4.1vw;
        width: 90vw;
        min-height: 35vw;
        margin: 0 4.87vw 0;
        box-shadow: 1.28vw 2vw 4vw rgba(0, 0, 0, 0.16);
    }

    .bubbles li::after {
        width: 7.51vw;
        height: 8.33vw;
        bottom: -5.5vw;
        right: 5.13vw;
    }
    .slick-prev,.slick-next{
        display: block;
        border: 1px solid #fff;
        border-radius: 50%;
        transform: translateY(70%);
        top: auto;
        width: 8.97vw;
        height: 8.97vw;
    }
    .slick-prev{
        left: 5%;
        bottom: 0;
    }
    .slick-next{
        right: auto;
        bottom: 0;
        left: 18%;
    }
}
/* sec03 */
.sec03-bg{
    background-image: url(../img/sec03-bg.png);
    padding-bottom: 100px;
}
.sec03-case-title{
    background-color: #00861F;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: baseline;
    padding: 10px 20px 5px;
    border-top-left-radius: 10px; 
    border-top-right-radius: 10px; 
    max-width: 352px;
    margin-top: 20px;
}
.sec03-case_num{
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}
.sec03-case_num span{
    font-size: 140%;
}
.sec03-case_titxt{
    font-size: 18px;
}
.sec03-case-inner{
    background-color: #fff;
    border-bottom-left-radius: 10px; 
    border-top-right-radius: 10px; 
    border-bottom-right-radius: 10px; 
    border-top: 10px solid #00861F;
    padding: 60px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.sec03-case-inner h2{
    font-size: 30px;
    margin-bottom: 2em;
}
.sec03-case-inner dl{
    display: flex;
    align-items: baseline;
    font-size: 18px;
    margin-bottom: 1.1em;
}
.sec03-case-inner dt{
    margin-right: 0.55em;
    color: #00861F;
    font-weight: 500;
    border: 2px solid #00861F;
    border-radius: 2em;
    padding: 0.25em 1em;
    word-break: keep-all;
}
.sec03-case-inner dl.reserve dt{
    color: #fff;
    background-color: #00861F;
}
.sec03-case-inner dd{
    line-height: 1.4;
}
.sec03-case-imgbox{
    position: relative;
    display: flex;
    align-items: center;
}
.sec03-case-imgbox.box-02{
    width: fit-content;
    margin: 0 auto;
}
.sec03-caption{
    font-size: 14px;
    text-align: center;
    margin-top: 1em;
}
.sec03-case-img01{
    width: 265.5px;
}
.sec03-arrow{
    width: 40px;
    margin: 0 25px;
}
.sec03-case-img02{
    position: relative;
    width: 346.3px;
    z-index: 1;
}
.sec03-case-img03{
    position: absolute;
    width: 159px;
    left: 680px;
    top: 5%;
}
.sec03-case-img04{
    width: 211.3px;
}
.sec03-case-img05{
    width: 190.24px;
    margin-left: -5%;
}
.sec03-right-content{
    display: flex;
    align-items: center;
}
.sec03-case-content{
    display: flex;
    align-items: center;
}
.sec03-case-content.sp{
    display: none;
}
.sec03-content-text{
    font-size: 17px;
    line-height: 1.3;
    color: #00861F;
    text-align: center;
}
.sec03-content-text span{
    color: #000;
}
.sec03-content-circle{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    line-height: 1.5;
    color: #00861F;
    text-align: center;
    font-weight: bold;
    width: 158.7px;
    height: 158.7px;
    border-radius: 50%;
    background-color: rgba(0, 134, 31, 0.1);
    margin-left: 0.5em;
}
.comming-soon{
    width: 65%;
    margin: 0 auto;
}
.comming-soon .sec03-case-title{
    background-color: #28B749;
    max-width: 161px;
}
.comming-soon .sec03-case-inner{
    border-top: 10px solid #28B749;
    text-align: center;
    padding: 30px 30px 40px;
}
.comming-soon h3{
    font-family: 'Roboto', sans-serif;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 2.5px;
    color: #D3E6D2;
    margin-bottom: .5em;
}
.comming-soon-txt{
    font-size: 20px;
}
.mg50{
    margin: 50px 0;
}
@media (min-width: 769px) and (max-width: 1400px) {
    .sec03-bg{
        padding-bottom: 7vw;
    }

    .sec03-case-title{
        padding: 1vw 1.43vw 0.7vw;
        max-width: 25.14vw;
        margin-top: 1.43vw;
    }
    .sec03-case_num{
        font-size: 1.43vw;
    }
    .sec03-case_titxt{
        font-size: 1.29vw;
    }
    .sec03-case-inner{
        border-top: 0.71vw solid #00861F;
        padding: 4.29vw;
    }
    .sec03-case-inner h2{
        font-size: 2.14vw;
    }
    .sec03-case-inner dl{
        font-size: 1.29vw;
    }
    .sec03-caption{
        font-size: 1vw;
    }
    .sec03-case-img01{
        width: 18.96vw;
    }
    .sec03-arrow{
        width: 2.86vw;
        margin: 0 1.79vw;
    }
    .sec03-case-img02{
        width: 24.74vw;
    }
    .sec03-case-img03{
        width: 11.36vw;
        left: 48.57vw;
    }
    .sec03-case-img04{
        width: 15.09vw;
    }
    .sec03-case-img05{
        width: 13.59vw;
    }
    .sec03-content-text{
        font-size: 1.21vw;
    }
    .sec03-content-circle{
        font-size: 1.64vw;
        width: 11.34vw;
        height: 11.34vw;
    }
    .comming-soon .sec03-case-title{
        max-width: 11.5vw;
    }
    .comming-soon .sec03-case-inner{
        border-top: 0.71vw solid #28B749;
        padding: 2.14vw 2.14vw 2.86vw;
    }
    .comming-soon h3{
        font-size: 1.93vw;
    }
    .comming-soon-txt{
        font-size: 1.43vw;
    }
}
@media screen and (max-width: 768px) {
.sec03-bg{
        padding-bottom: 10vw;
}
.sec03-case-title{
    padding: 3.08vw 3.59vw 2.05vw;
    max-width: 72.31vw;
    margin-top: 7.69vw;
}
.sec03-case_num,.sec03-case_titxt{
    font-size: 3.8vw;
}
.sec03-case-inner{
    border-top: 1.74vw solid #00861F;
    padding: 5.13vw;
}
.sec03-case-inner h2{
    font-size: 4.62vw;
    line-height: 1.4;
}
.sec03-case-inner dl{
    display: block;
    font-size: 3.59vw;
}
.sec03-case-inner dt{
    margin-right: 0;
    margin-bottom: 1em;
    width: fit-content;
}
.sec03-case-inner dd{
    line-height: 1.7;
}
.sec03-caption{
    font-size: 3.08vw;
    line-height: 1.3;
}
.sec03-case-img01{
    width: 29.42vw;
}
.sec03-case-imgbox{
    justify-content: space-between;
}
.sec03-case-imgbox.box-02{
    width: auto;
    margin: 0 auto;
}

.sec03-arrow{
    width: 7vw;
    margin: 0 auto 12vw;
}
.sec03-case-img02{
    width: 38.36vw;
}
.sec03-case-img03{
    position: static;
    width: 40.77vw;
    margin: 5.13vw auto 0;
}
.sec03-case-img04{
    width: 33.01vw;
}
.sec03-case-img05{
    width: 29.71vw;
}
.sec03-right-content{
    display: block;
}
.sec03-case-content.pc{
    display: none;
}
.sec03-case-content.sp{
    width: fit-content;
    display: flex;
    margin: 4.62vw auto 0;
}
.sec03-content-text{
    font-size: 4.36vw;
}
.sec03-content-circle{
    font-size: 5.9vw;
    width: 34.74vw;
    height: 34.74vw;
}
.comming-soon{
    width: 100%;
}
.comming-soon .sec03-case-title{
    max-width: 35.13vw;
}
.comming-soon .sec03-case-inner{
    border-top: 2.56vw solid #28B749;
    padding: 5.38vw;
}
.comming-soon h3{
    font-size: 5.9vw;
}
.comming-soon-txt{
    font-size: 3.59vw;
    text-align: left;
    line-height: 1.8;
}
.mg50{
    margin: 7.69vw 0;
}
}
/* sec04 */
#sec04 {
    padding-bottom: 165px;
}
#sec04 .number-inner{
    right: -27%;
}
#sec04 .text{
    margin: 2.3em 0;
}
#sec04 .sec02-main-flex dd{
    margin-bottom: 0;
}
.sec04-img{
    width: 95%;
    margin: 0 auto;
}
#sec04 h4{
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin: 2.35em 0 1.25em;
}
.sec04-list{
    width: 92%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.sec04-list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 134px;
    height: 134px;
    font-size: 19px;
    line-height: 1.4;
    font-weight: bold;
}
.sec04-list li::after {
    position: absolute;
    content: '';
    background-image: url(https://www.sezax.co.jp/sdgs_packing/img/sec04-shadow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 154px;
    height: 154px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.sec04-list li:first-child {
    background-color: #D2E6DF;
}
.sec04-list li:nth-child(2) {
    background-color: #D2D4E6;
}
.sec04-list li:nth-child(3) {
    background-color: #E6D2D2;
}
.sec04-list li:nth-child(4) {
    background-color: #F2F0BC;
}
.sec04-list li:nth-child(5) {
    background-color: #CEE3F2;
}
.sec04-list li:nth-child(6) {
    background-color: #F4E0D0;
}
@media (min-width: 769px) and (max-width: 1400px) {
    #sec04 {
        padding-bottom: 11.79vw;
    }
    #sec04 h4{
        font-size: 2vw;
    }
    .sec04-list li {
        width: 9.57vw;
        height: 9.57vw;
        font-size: 1.36vw;
    }
    .sec04-list li::after {
        width: 11vw;
        height: 11vw;
    }
}
@media screen and (max-width: 768px) {
    #sec04 {
        padding-bottom: 10vw;
    }
    .sec04-img{
        width: 100%;
    }
    #sec04 h4{
        font-size: 5.13vw;
    }
    .sec04-list{
        width: 100%;
    }
    .sec04-list li {
        width: 26.67vw;
        height: 26.67vw;
        font-size: 3.59vw;
        margin-bottom: 5vw;
    }
    .sec04-list li::after {
        width: 30vw;
        height: 30vw;
    }
}
.grey-inquiry{
    display: block;
    background-image: url(../img/sec03-bg.png);
}
.grey-inquiry p{
    position: relative;
    width: fit-content;
    margin: 0 auto;
    font-size: 25px;
    text-align: center;
    font-weight: 500;
    text-indent: 4em;
    padding: 2.6em 0;
}
.grey-inquiry p::before{
    position: absolute;
    content: '';
    background-image: url(../img/grey-inquiry.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 77.5px;
    height: 52.7px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
@media (min-width: 769px) and (max-width: 1400px) {
    .grey-inquiry p{
        font-size: 1.79vw;
    }
    .grey-inquiry p::before{
        width: 5.54vw;
        height: 3.76vw;
    }
}
@media screen and (max-width: 768px) {
    .grey-inquiry p{
        font-size: 4.1vw;
        text-indent: 0;
        padding: 4em 0 1.5em;
    }
    .grey-inquiry p::before{
        width: 14.9vw;
        height: 10.13vw;
        left: 50%;
        top: 17%;
        transform: translateX(-50%);
    }
}
/* アニメーション fadeIn */
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 0.5s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeInTrigger {
    opacity: 0;
}
.sec02-txt-inner h5 sup,
.sec02-icon-txt sup{
    font-size: 50%;
}