html {
    height: 100%;
    background-color:#021628;
    width:100%;
    max-width:100%;
}
 
body {  
    font-family: "Mplus 1p", sans-serif;
    width: 100%;
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
    height: 100%;
    overflow-x: hidden;
}

main {
    position: relative;
}

main a {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

main a:hover {
    opacity: 0.7;
}

.disp-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .disp-sp {
        display: block;
    }
}

/*--------------------------header----------------------------*/
header {
    background: #fff;
    border-top: 6px solid #c80000;
    width: 100%;
    margin: 0 auto;
    z-index: 100;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

header article {
    text-align: left;
    padding: 20px 0px 20px 0px;
    max-width: 1200px;
    position: relative;
    margin: auto;
}

header .logo {
    margin-top: 10px;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

header .logoside__contest {
    background: #c80000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 5px;
    margin-left: 15px;
    vertical-align: middle;
}

.gnav {
    float: left;
    margin-top: 20px;
    padding-left: 5%;
}

.gnav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.gnav .glogo {
    display: none;
}

.gnav > ul > li {
    position: relative;
}

.gnav > ul > li > a {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    color: rgb(51, 51, 51);
    white-space: nowrap;
    background-position: center 90%;
    padding: 10px 20px;
}

.gnav > ul > li > a:hover::after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
}

.gnav > ul > li > a::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0%;
    font-weight: 500;
    margin-left: 0px;
    width: 100%;
    height: 2px;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    background-color: rgb(200, 0, 0);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

header .logo a {
    display: inline-block;
}

header .logo img {
    max-width: 230px;
}

.hamburgerMenu {
    position: fixed;
    right: 15px;
    top: 0;
    z-index: 110;
    cursor: pointer;
}

.hamburgerMenu img.close_btn {
    display: none;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

.hamburgerMenu.open img.close_btn {
    display: block;
}

.hamburgerMenu.open img.open_btn {
    display: none;
}

@media screen and (max-width: 960px) {
    header .logo a:first-child img {
        width: 180px;
    }

    header .logo {
        float: none;
    }

    .gnav {
        float: none;
        width: 80%;
        margin: 20px auto 0px;
    }

    .gnav > ul > li > a {
        padding: 10px 15px 10px 15px;
    }
}

@media screen and (max-width: 768px) {
    header article {
        padding: 5px 0 15px 0;
    }

    .gnav {
        display: none;
    }

    header .logo {
        float: none;
        text-align: center;
    }

    header .logoside__contest {
        font-size: 10px;
        padding: 2px 3px;
        margin-left: 10px;
    }

    header .logoside__contest {
        font-size: 10px;
        padding: 2px 3px;
        margin-left: 10px;
    }

    .hamburgerMenu img {
        width: 50px;
        height: 50px;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }
}

/*--------------------------title----------------------------*/
.title {
    background-image: url("../images/background2.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}

.title-text {
    text-align: center;
    color: #fff;
    font-weight: bolder;
    font-size: 44px;
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    text-shadow: 0px 1px 10px rgba(0, 0, 0, 1);
}

@media screen and (max-width: 1000px) {
    .title-text {
        font-size: 38px;
    }
}

@media screen and (max-width: 768px) {
    .title {
        padding: 40px 0;
    }

    .title-text {
        font-size: 26px;
    }
}

/*--------------------------article----------------------------*/
.article {
    margin: 60px 0 30px;
    color: #fff;
}

.article-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

h3.article-title {
    margin-bottom: 40px;
    color: #fff;
    font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    font-size: 32px;
    font-weight: bolder;
    border-bottom: solid 2px #fff;
    padding-bottom: 16px;
}

.article-image {
    margin-bottom: 40px;
}

.article-image img {
    display: block;
    width: 100%;
}

.article-image figcaption {
    margin-top: 12px;
    font-size: 12px;
}

.article-titleH4__wrapper {
    font-weight: bold;
    background-color: #A10017;
    font-size: 20px;
    padding: 5px 8px;
    margin-bottom: 24px;
}

.article-titleH4__wrapper h4 {
    position: relative;
    padding-left: 13px;
    color: #fff;
}

.article-titleH4__wrapper h4::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: #fff;
}

.article-text__big {
    font-size: 22px;
    margin-bottom: 24px;
}

.article-text {
    margin-bottom: 24px;
}

.article-text__small {
    margin-bottom: 24px;
    font-size: 12px;
}

.article-text__red {
    color: #EC0017;
    font-weight: bold;
}

.article-text__hyperlink {
    text-decoration: underline;
}

.article-block {
    border-radius: 10px;
    padding: 32px;
    color: #000000;
    margin-bottom: 24px;
}

.article-block > p:last-of-type {
    margin-bottom: 0;
}

.article-block > figure:last-of-type {
    margin-bottom: 0;
}

.article-block__red {
    background-color: #D0B1B5;
}

.article-block__purple {
    background-color: #C8AACB;
}

.article-block__blue {
    background-color: #B0B6F0;
}

.article-balloon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 24px;
    -webkit-box-align:start;
        -ms-flex-align:start;
            align-items:flex-start
}

.article-balloon__image {
    width: 120px;
}

.article-balloon__image img {
    display: block;
    width: 100%;
}

.article-balloon__image_name {
    text-align: center;
    font-weight: bold;
    margin-top: 4px;
    font-size: 16px;
}

.article-balloon__text {
    width: calc(100% - 156px);
    border-radius: 10px;
    padding: 28px 32px;
    position: relative;
    color: #000000;
}

.article-balloon__text_red {
    background-color: #D0B1B5;
}

.article-balloon__text_red::before {
    content: "";
    left: -20px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-right: 30px solid #D0B1B5;
    border-bottom: 20px solid transparent;
    position: absolute;
}

.article-balloon__text_purple {
    background-color: #C8AACB;
}

.article-balloon__text_purple::before {
    content: "";
    left: -20px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-right: 30px solid #C8AACB;
    border-bottom: 20px solid transparent;
    position: absolute;
}

.article-balloon__text_blue {
    background-color: #B0B6F0;
}

.article-balloon__text_blue::before {
    content: "";
    left: -20px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-right: 30px solid #B0B6F0;
    border-bottom: 20px solid transparent;
    position: absolute;
}

.article-introduction {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 40px 32px;
    margin-bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #000;
}

.article-introduction__image {
    position: relative;
    width: 110px;
    z-index: 4;
}

.article-introduction__image_item {
    display: block;
    width: 100%;
}

.article-introduction__image_decoration {
    position: absolute;
    top: -24px;
    left: -32px;
    width: 110px;
    z-index: -1;
    max-inline-size: none;
    max-block-size: none;
}

.article-introduction__text {
    width: calc(100% - 130px);
}

.article-introduction__name {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
    padding-bottom: 8px;
}

.article-introduction__name_purple {
    color: #9A4774;
    border-bottom: solid 1px #9A4774;
}

.article-introduction__name_blue {
    color: #3C4985;
    border-bottom: solid 1px #3C4985;
}

.article-whiteFrame {
    border: solid 2px #fff;
    padding: 32px 40px;
    margin-bottom: 24px;
}

.article-whiteFrame p:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .article {
        margin: 40px 0 30px;
    }

    .article-image {
        margin-bottom: 24px;
    }

    h3.article-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .article-titleH4__wrapper {
        margin-top: 40px;
    }

    .article-titleH4__wrapper {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .article-text__big {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .article-text {
        margin-bottom: 20px;
    }

    .article-text__small {
        margin-bottom: 20px;
    }

    .article-block {
        margin-bottom: 20px;
        padding: 20px 16px;
    }

    .article-balloon {
        margin-top: 20px;
    }

    .article-balloon__image {
        width: 62px;
    }

    .article-balloon__image_name {
        font-size: 13px;
    }

    .article-balloon__text {
        width: calc(100% - 78px);
        padding: 20px 12px;
        font-size: 15px;
    }

    .article-balloon__text_red::before {
        top: 12px;
        left: -12px;
        border-top: 16px solid transparent;
        border-right: 20px solid #D0B1B5;
        border-bottom: 16px solid transparent;
    }

    .article-balloon__text_blue::before {
        top: 12px;
        left: -12px;
        border-top: 16px solid transparent;
        border-right: 20px solid #B0B6F0;
        border-bottom: 16px solid transparent;
    }

    .article-balloon__text_purple::before {
        top: 12px;
        left: -12px;
        border-top: 16px solid transparent;
        border-right: 20px solid #C8AACB;
        border-bottom: 16px solid transparent;
    }

    .article-introduction {
        padding: 16px 12px;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
        margin-bottom: 20px;
    }

    .article-introduction__image {
        width: 66px;
    }

    .article-introduction__image_decoration {
        width: 66px;
        top: -16px;
        left: -17px;
    }

    .article-introduction__text {
        width: calc(100% - 74px);
    }

    .article-whiteFrame {
        padding: 18px 16px;
        margin-bottom: 20px;
    }
}

/*--------------------------ambassador----------------------------*/
.ambassador {
    background-image: url("../images/background.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.ambassador-inner {
    margin: 0 auto;
    max-width: 1200px;
    width: 90%;
}

.ambassador-title {
    width: 100%;
    max-width: 328px;
    margin: 0 auto 24px;
}

.ambassador-contents {
    border: #EC0017 2px solid;
    padding: 40px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between
}

.ambassador-image {
    width: 20%;
}

.ambassador-image__pc {
    display: block;
    width: 100%;
}

.ambassador-image__sp {
    display: none;
    width: 100%;
}

.ambassador-text {
    width: 77%;
}

.ambassador-text__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
}

.ambassador-text__name {
    font-size: 28px;
    color: #fff;
    margin-right: 20px;
    font-weight: bold;
}

.ambassador-text__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ambassador-text__btn_item {
    background-color: #A10017;
    color: #fff;
    text-align: center;
    position: relative;
    width: 200px;
    padding: 8px 0;
    border-radius: 50px;
    font-weight: bold;
}

.ambassador-text__btn_item:first-of-type {
    margin-right: 8px;
}

.ambassador-text__btn_arrow {
    position: absolute;
    right: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 6px;
}

.ambassador-text__bottom {
    color: #fff;
}



@media screen and (max-width: 900px) {
    .ambassador-text__top {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .ambassador-text__name {
        width: 100%;
        margin: 0 0 8px 0;
    }

    .ambassador-text__btn {
        width: 100%;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .ambassador-text__btn_item {
        width: 49%;
    }

    .ambassador-text__btn_item:first-of-type {
        margin-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .ambassador {
        background-size: 120% 100%;
        padding: 20px 0;
    }

    .ambassador-contents {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding: 20px 16px;
    }

    .ambassador-image {
        width: 100%;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
        margin-bottom: 16px;
    }

    .ambassador-image__pc {
        display: none;
    }

    .ambassador-image__sp {
        display: block;
    }

    .ambassador-text {
        width: 100%;
    }

    .ambassador-title {
        max-width: 220px;
        margin: 0 auto 16px;
    }

    .ambassador-text__name {
        text-align: center;
        font-size: 22px;
    }

    .ambassador-text__btn_item {
        width: 100%;
    }

    .ambassador-text__btn_item:first-of-type {
        margin-bottom: 12px;
    }
}

/*--------------------------relatedProjects1----------------------------*/
.relatedProjects1 {
    margin: 60px 0;
    overflow-x: hidden;
}

.relatedProjects1-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

.relatedProjects1-title {
    margin: 0 auto;
    width: 100%;
    max-width: 250px;
    margin-bottom: 36px;
}

.relatedProjects1-title img {
    display: block;
    width: 100%;
}

.relatedProjects1-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.relatedProjects1-item {
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 24px;
    width: 48%;
}

.relatedProjects1-item__decoration {
    display: block;
    width: 100px;
    left: -24px;
    top: -24px;
    position: absolute;
}

.relatedProjects1-item__image {
    display: block;
    width: 100%;
}

.relatedProjects1-item__title {
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    margin: 16px 0;
	color: #333333
}

.relatedProjects1-item__title_small {
    font-size: 22px;
	color: #333333
}

.relatedProjects1-item__btn {
    border-radius: 55px;
    position: relative;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 28px;
    font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    padding: 20px;
}

.relatedProjects1-item__btn_arrow {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 10px;
}

.relatedProjects1-item__btn__purple {
    background-color: #9A4774;
}

.relatedProjects1-item__btn__blue {
    background-color: #3C4985;
}

@media screen and (max-width: 1000px) {
    .relatedProjects1-item__title {
        font-size: 22px;
		color: #333333
    }

    .relatedProjects1-item__title_small {
        font-size: 18px;
		color: #333333
    }

    .relatedProjects1-item__btn {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    .relatedProjects1 {
        margin: 40px 0;
    }

    .relatedProjects1-title {
        max-width: 168px;
        margin-bottom: 16px;
    }

    .relatedProjects1-content {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .relatedProjects1-item {
        width: 100%;
        padding: 16px;
    }

    .relatedProjects1-item:first-of-type {
        margin-bottom: 20px;
    }

    .relatedProjects1-item__decoration {
        width: 86px;
        left: -20px;
        top: -20px;
    }

    .relatedProjects1-item__title {
        font-size: 16px;
		color: #333333
    }

    .relatedProjects1-item__title_small {
        font-size: 14px;
		color: #333333
    }

    .relatedProjects1-item__btn {
        font-size: 18px;
    }

    .relatedProjects1-item__btn_arrow {
        right: 12px;
    }
}

/*--------------------------relatedProjects2----------------------------*/
.relatedProjects2 {
    padding: 30px 0;
    background-image: url("../images/background.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.relatedProjects2-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

.relatedProjects2-title {
    margin: 0 auto;
    width: 100%;
    max-width: 250px;
    margin-bottom: 36px;
}

.relatedProjects1-title img {
    display: block;
    width: 100%;
}

.relatedProjects2-content {
    border: #A10017 3px solid;
    padding: 40px 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.relatedProjects2-image {
    width: 24%;
}

.relatedProjects2-image img {
    width: 100%;
    display: block;
}

.relatedProjects2-text {
    width: 72%;
    color: #fff;
}

.relatedProjects2-text__title {
    font-size: 30px;
    font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    font-weight: bold;
}

.relatedProjects2-text__description {
    margin: 16px 0;
}

.relatedProjects2-text__description_bold {
    font-weight: bold;
}

.relatedProjects2-text__btn {
    background-color: #A10017;
    color: #fff;
    font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 340px;
    padding: 18px 0;
    position: relative;
    border-radius: 55px;
    font-size: 22px;
}

.relatedProjects2-text__btn_arrow {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .relatedProjects2 {
        padding: 20px 0;
        background-size: 120% 100%;
    }

    .relatedProjects2-title {
        max-width: 168px;
        margin-bottom: 16px;
    }

    .relatedProjects2-content {
        padding: 20px 16px;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .relatedProjects2-image {
        width: 60%;
        margin: 0 auto;
    }

    .relatedProjects2-text {
        width: 100%;
        margin-top: 20px;
    }

    .relatedProjects2-text__title {
        font-size: 22px;
    }

    .relatedProjects2-text__btn {
        font-size: 18px;
        max-width: none;
    }

    .relatedProjects2-text__btn_arrow {
        right: 12px;
    }
}

/*--------------------------btn-wrapper----------------------------*/
.btn-wrapper {
    margin: 60px 0;
}

.btn-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

.btn-item {
    background-color: #A10017;
    display: block;
    border-radius: 55px;
    font-size: 24px;
    font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    color: #fff;
}

.btn-arrow {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .btn-wrapper {
        margin: 40px 0;
    }

    .btn-item {
        font-size: 18px;
        max-width: none;
    }

    .btn-arrow {
        right: 12px;
    }
}

/*--------------------------followBtn----------------------------*/
.followBtn {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -2px;
    margin: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.followBtn-item {
    width: 70px;
    display: block;
}

.followBtn-item:first-of-type {
    margin-bottom: 8px;
}

.followBtn-item__pc {
    display: block;
    width: 100%;
}

.followBtn-item__sp {
    display: none;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .followBtn {
        top: auto;
        right: 0;
        bottom: -3px;
        left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .followBtn-item {
        width: 50%;
    }

    .followBtn-item:first-of-type {
        margin: 0;
    }

    .followBtn-item__pc {
        display: none;
    }

    .followBtn-item__sp {
        display: block;
    }
}


/*--------------------------footer----------------------------*/
footer {
    background: #c80000;
    width: 100%;
    text-align: left;
    color: #333;
}

#footer {
    max-width: 1200px;
    padding: 40px 0px 50px 0px;
    margin: auto;
}

footer nav {
    width: 100%;
    overflow: hidden;
    margin: auto;
}

#footer .footer_links {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

footer nav li {
    line-height: 140%;
    margin-bottom: 3px;
    text-align: center;
}

footer nav a {
    font-size: 13px;
}

footer nav li a {
    color: #fff !important;
    background: url(../images/arw.png) left center no-repeat;
    background-size: 15px 15px;
    padding: 3px 3px 3px 20px;
}

#copyright {
    margin-top: 20px;
}

#copyright address {
    padding: 0px 0px 0px 0px;
    text-align: center;
    color: #fff;
    display: block;
}

address {
    font-style: normal;
    font-size: 11px;
}

@media screen and (max-width: 768px) {
    #footer {
        padding: 40px 0px 140px 0px;
    }

    footer nav {
        display: block;
        width: 100%;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        padding: 3%;
    }

    #footer .footer_links {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }

    #footer nav li {
        text-align: left;
    }
}

@media screen and (max-width: 600px) {
    #footer {
        padding: 40px 0px 120px 0px;
    }
}

@media screen and (max-width: 500px) {
    #footer {
        padding: 40px 0px 100px 0px;
    }
}