@charset "UTF-8";
/* CSS Document */

*{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400; /*regular*/
}

ul{
    padding: 0;
    margin: 0;
}

ul li{
    list-style: none;
}

/* Common
--------------------------------------------------*/

.btn{
    min-width: 124px;
    width: auto;
    padding: 0.8rem 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
}

.btn span{
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.btn_r{
    background-color: #c50219;
    color: #fff;
    border: 2px solid #c50219;
    border-radius: 25px;
}

.btn_r:hover{
    background-color: #fff;
    color: #c50219;
}

.insite{
    padding-right: 60px;
}

.insite::after{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(../../common/img/arrow_white.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}

.insite:hover::after{
background: url(../../common/img/arrow_red.svg) no-repeat center center;
    background-size: contain;
}

.blank{
    padding-right: 60px;
}

.blank::after{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(../../common/img/icon_blank.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}

.blank:hover::after{
    background: url(../../common/img/icon_blank_red.svg) no-repeat center center;
}

@media screen and (max-width: 767px) {
    .btn span{
        font-size: 3.73vw;
    }

    .btn_r{
        border-radius: 2em;
    }
}

@media screen and (min-width: 768px) {
    .sp{display: none!important;}
}

@media screen and (max-width: 767px) {
    .pc{display: none!important;}
}



/* Header
--------------------------------------------------*/
header .header {
    background-color: inherit;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

header .header__inner {
    margin: 0 auto;
    padding: 0 0 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
}

header .header__logo{
    text-decoration: none;
}

header .header__logo img{
    width: 72px;
    height: 58px;
    display: block;
}

header .header__logo span{
    display: block;
    font-size: 12px;
    margin-top: 6px;
}

header .header__nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*ヘッダーメニュー*/
header .header__nav-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header__nav-list li{
    margin-right: 10px;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
}

header .header__nav-list li:last-child{
    margin-right: 0;
}   

header .header__nav-list li a{
    letter-spacing: 0.1em;
}

header .header__nav-list li a.menu_btn{
    text-decoration: none;
    color: #000;
    padding: 10px 20px;
}

/*ヘッダーメニューのサブメニュー*/

header .header__nav-list li.service{
    position: relative;
    display: block;
    margin-right: 30px;
}

header .header__nav-list li.service:hover ul.header__nav-list--service{
    display: block;
}

header .header__nav-list li.service:hover a{
    background-color: #fff;
    border-radius: 10px 0 0 0;
}

header .header__nav-list li.service .menu_btn {
    position: relative;
}

header .header__nav-list li.service .menu_btn::before,
header .header__nav-list li.service .menu_btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 10px;
    width: 1px;
    height: 3.1px;
    margin: auto;
    border-radius: 9999px;
    background-color: #000000;
    transform-origin: 50% calc(100% - 0.5px);
  }
  
  header .header__nav-list li.service .menu_btn::before {
    transform: rotate(45deg);
  }
  
  header .header__nav-list li.service .menu_btn::after {
    transform: rotate(-45deg);
  }


header .header__nav-list li ul.header__nav-list--service{
    display: none;
    width: 260px;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top:12px;
    padding: 0;
    border-radius: 10px 0 10px 10px;
    z-index: 1001;
    box-sizing: border-box;
    overflow: hidden;
}


header .header__nav-list li ul.header__nav-list--service li{
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

header .header__nav-list li ul.header__nav-list--service li:last-child{
    border-bottom: none;
}

header .header__nav-list li ul.header__nav-list--service li a{
    text-decoration: none;
    color: #000;
    width: 100%;
    display: block;
    letter-spacing: 0.1em;
}

header .header__nav-list li ul.header__nav-list--service li a:hover{
    opacity: 0.7;
}

/*ヘッダーメニューのハンバーガーメニュー*/
header .header__nav-btn{
    display: block; 
    position: relative;
    cursor: pointer;
    background-color: #000;
    width: 90px;
    height: 90px;
    border-radius: 0 0 0 10px;
    border: 1px solid #fff;
    margin-left: 30px;
    z-index: 1500;
}

header .header__nav-btn span{
    position: absolute;
    background-color: #fff;
    height: 2px; 
    width: 48.89%;   
    transition: all 0.4s ease-in-out;
}

header .header__nav-btn span:nth-child(1){
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 35%;
    transform-origin: center;
}

header .header__nav-btn span:nth-child(2){
    top: 0;
    left: 49%;
    transform:translateX(-50%);   
    margin-top: 50%;
    transform-origin: center;
}

header .header__nav-btn.open span:nth-child(1){
    transform: translate(-50%,0) rotate(45deg);
    margin-top: 42%;
}

header .header__nav-btn.open span:nth-child(2){
    transform: translate(-50%,0) rotate(-45deg);
    margin-top: 42%;
}

header .header__nav-btn::after{
    content: "menu";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 64.44% auto 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-align: center;
}

header .header__nav-btn.open span{
    background-color: #000;
}

header .header__nav-btn.open{
    background-color: #fff;

}

header .header__nav-btn.open::after{
    content: "close";
    color: #000;
}

/*ハンバーガーメニューのメニュー*/

header .header_accordion_menu{
    display: none;
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    z-index: 1001;
    width: 100%;
    height: 100%;
}

header .header_accordion_menu .header_accordion_menu__bg{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1200;
}

header .header_accordion_menu__inner{
    width: 100%;
    height: auto;
    max-width: 1100px;
    min-width: 810px;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    background-color: #000;
    border-radius: 0 0 0 30px;
    z-index: 1300;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap{
    width: 1100px;
    margin: 0 auto;
    padding: 80px 90px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    box-sizing: border-box;
}

/*ハンバーガーメニューのロゴ*/
header .header_accordion_menu__inner .header_accordion_menu__logo-wrap{
    margin-right: 40px;
    width: 90px;
}

header .header_accordion_menu__inner .header_accordion_menu__logo-wrap a{
    text-decoration: none;
}

header .header_accordion_menu__inner .header_accordion_menu__logo-wrap a img{
    width: 90px;
    height: 72px;
    display: block;
}

header .header_accordion_menu__inner .header_accordion_menu__logo-wrap a span{
    display: block;
    font-size: 12px;
    margin-top: 6px;
    color: #fff;
    font-weight: 700;
}

/*ハンバーガーメニュー内のメニュー*/
header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav{
    width: 690px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav a{
    text-decoration: none;
    color: #fff;
}

/*ハンバーガーメニュー内のページメニュー*/
header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--pages{
    width: 150px;
    text-align: left;
    margin-right: 100px;
    padding: 0;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--pages li{
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 700;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--pages li a{
    font-weight: 700;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--pages li:last-child{
    margin-bottom: 0;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--pages li a{
    letter-spacing: 0.1em;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--pages li a:hover{
    opacity: 0.7;
}

/*ハンバーガーメニュー内のサービスメニュー*/
header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service{
    text-align: left;
    width: 100%;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list{
    border-left: 1px solid #fff;
    padding-left: 20px;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list:nth-child(2){
    border-left: none;
    padding-left: 0;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .header_accordion_menu__nav-ttl {
    font-size: 16px;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
    font-weight: bold;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding-left: 1em
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list {
    width: 49%;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list > li {
    margin: 20px 0;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list > li > a {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 15px;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list_sub li {
    margin-bottom: 15px;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list_sub li a {
    font-size: 14px;
    padding-left: 1em; /* 字下げ */
    letter-spacing: 0.1em;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service a:hover {
    opacity: 0.7;
}

header .header_accordion_menu__inner .swiper_header .swiper-wrapper{
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .swiper_header .swiper-slide{
    width: 24%;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .swiper_header .swiper-slide a{
    display: block;
}

header .header_accordion_menu__inner .header_accordion_menu_wrap .swiper_header .swiper-slide a img{
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 1000px) {
    header .header__nav-list li a.menu_btn {
        font-size: 12px;
        padding: 10px;

    }

    header .header__nav-list li.service{
        margin-right: 15px;
    }

    header .header__nav-list li.service .menu_btn{
        padding-right: 20px;
    }

    header .header__nav-list li a.btn_contact{
        padding: 0.8em 25px;
    }

}

@media screen and (max-width: 810px) {
    header .header__inner{
        padding: 0;
        background-color: transparent;
    }
    header .header__logo-wrap{
        margin-left: 4.27vw;
    }
    header .header__nav-list{
        display: none;
    }
    header .header__nav-btn{
        display: block;
        width: 19.2vw;
        height: 19.2vw;
    }
    header .header__nav-btn span{
        height: 0.53vw;
    }

    header .header__nav-btn span:nth-child(2){
        left: 50%;
    }

    header .header_accordion_menu{
        overflow-y: scroll;
    }
    
    header .header_accordion_menu__inner {
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap{
        width: 100%;
        padding: 0;
        display: block;
        overflow-y: scroll;
    }

    header .header_accordion_menu__inner .header_accordion_menu__logo-wrap{
        margin: 19.2vw auto 6.2vw;
        width: 32vw;
    }

    header .header_accordion_menu__inner .header_accordion_menu__logo-wrap a img{
        width: 100%;
        height: auto;
        display: block;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav{
        width: 100%;
        min-width: 0;
        max-width: none;
        display: block;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--pages{
        width:66.67%;
        margin: auto;
        column-count: 2;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--pages li {
        font-size: 3.73vw;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service{
        width:66.67%;
        margin: 8.53vw auto 0;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .header_accordion_menu__nav-ttl {
        font-size: 3.73vw;
        font-weight: 400;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list_wrap {
        display: block;
        margin-left: 1em;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list {
        width: 100%;
        margin: 0;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list{
        padding-right: 4vw;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list:nth-child(1) {
        border-left: 1px solid #fff;
        padding-left: 4vw;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list:nth-child(2) {
        border-left: 1px solid #fff;
        padding-left: 4vw;
        padding-bottom: 1em;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list > li{
        margin: 0;
        padding-top: 1em;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list > li > a{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 0;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list > li > a::after{
        content: "";
        position: relative;
        width: 5vw;
        height: 5vw;
        background-image: url("../../common/img/acc_arrow_w.svg");
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: 0.5em;
        transition: all 0.3s ease;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list > li > a.open::after{
        transform: rotate(180deg);
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list_sub {
        width: 100%;
        padding-bottom: 1em;
        display: none;
        margin-top: 1em;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list_sub li{
        margin-bottom: 1em;
    }

    header .header_accordion_menu__inner .header_accordion_menu_wrap .header_accordion_menu__nav .header_accordion_menu__nav-list--service .service_list_sub li:last-child{
        margin-bottom: 0;
    }

    header .header_accordion_menu__inner .swiper_header{
        width: 82.93%;
        margin: 6.4vw auto 19.2vw;
        padding: 0 7.47%;
        position: relative;
        box-sizing: border-box;
    }

    header .header_accordion_menu__inner .swiper_header .swiper-wrapper{
        margin-top: 0;
    }

    header .header_accordion_menu__inner .swiper_header .swiper-button-prev_header::after,
    header .header_accordion_menu__inner .swiper_header .swiper-button-next_header::after {
        bottom: 0;
        content: "";
        margin: auto;
        position: absolute;
        top: 0;
        width: 5.33vw;
        height: 5.33vw;
        background-size: contain;
    }

    /* 前への矢印カスタマイズ */
    header .header_accordion_menu__inner .swiper_header .swiper-button-prev_header::after {
        background-image: url("../../common/img/arrow_b_prev.svg");
        background-size: contain;
        background-repeat: no-repeat;
        left: 0;
    }
    
    /* 次への矢印カスタマイズ */
    header .header_accordion_menu__inner .swiper_header .swiper-button-next_header::after {
        background-image: url("../../common/img/arrow_b_next.svg");
        background-size: contain;
        background-repeat: no-repeat;
        right: 0;
    }

}


/* footer_contact
--------------------------------------------------*/
#footer_contact {
    background-color: #c50219;
    color: #fff;
    padding: 60px 0;
}

#footer_contact .footer_contact_wrap{
    width: 1170px;
    margin: 0 auto;
    background: url("../../common/img/bg.webp")left center no-repeat;
    background-size: cover;
    border-radius: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#footer_contact .footer_contact_ttl{
    padding: 80px 140px 80px 120px;
    border-right: 1px solid #D9D9D9;
    width: 435px;
    box-sizing: border-box;
}

#footer_contact .footer_contact_ttl h3{
    font-size: 24px;
    line-height: 1.5em;
    font-weight: 700;
    text-align: left;
    color: #000;
    letter-spacing: 0.2em;
}

#footer_contact .footer_contact_ttl p{
    font-size: 12px;
    line-height: 1.5em;
    font-weight: 400;
    text-align: left;
    color: #919191;
    letter-spacing: 0.3em;
    margin-top: 1em;
}

#footer_contact .footer_contact_box{
    width: 735px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}


#footer_contact .footer_contact_box p{
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
    text-align: center;
    color: #000;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
}

@media screen and (max-width: 1200px) {
    #footer_contact .footer_contact_wrap{
        width: 90%;
    }
    #footer_contact .footer_contact_ttl{
        width: 40%;
        padding: 80px 0;
        text-align: center;
    }

    #footer_contact .footer_contact_box{
        width: 60%;
    }

    #footer_contact .footer_contact_ttl h3{
        text-align: center;
    }

    #footer_contact .footer_contact_ttl p{
        text-align: center;
    }
}


@media screen and (max-width: 767px) {
    #footer_contact .footer_contact_wrap{
        width: 82.93%;
        display: block;
    }

    #footer_contact .footer_contact_ttl{
        border-right: none;
        border-bottom: 1px solid #D9D9D9;
        width: 100%;
        padding: 10.67% 0;
    }

    #footer_contact .footer_contact_ttl h3{
        text-align: center;
        font-size: 5.33vw;
    }

    #footer_contact .footer_contact_ttl p{
        text-align: center;
        font-size: 3.2vw;
    }

    #footer_contact .footer_contact_box {
        width: 100%;
        text-align: center;
        display: block;
        padding: 8.53% 0;
    }

    #footer_contact .footer_contact_box p{
        font-size: 3.73vw;
    }
}



/* Footer
--------------------------------------------------*/
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0;
}

.footer__inner {
    width: 1170px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-areas:
        "logo nav"
        "copyright nav";
    grid-template-columns: auto 1fr;
    gap: 20px 80px;
}

.footer__logo-wrap {
    grid-area: logo;
}

.footer__logo{
    text-decoration: none;
    color: #fff;
}

.footer__logo img{
    width: 96px;
    display: block;
}

.footer__logo span{
    display: block;
    font-size: 12px;
    margin-top: 6px;
}

.footer__copyright-wrap {
    grid-area: copyright;
    align-self: end;
}

.footer__copyright {
    font-size: 12px;
}

.footer__nav {
    grid-area: nav;
    display: flex;
    justify-content: space-between;
}

.footer__nav-list {
    font-size: 14px;
}

.footer__nav-list li {
    margin-bottom: 30px;
}

.footer__nav-list li:last-child {
    margin-bottom: 0;
}

.footer__nav-list a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer__nav-list a:hover {
    opacity: 0.7;
}

.footer__nav-ttl {
    margin-bottom: 12px;
}

.footer__nav-list--service ul{
    border-left: 1px solid #fff;
    margin-left: 1em;
    padding: 10px 0 10px 20px;
}

.footer__nav-list--service ul li {
    margin-bottom: 20px;
}

.external {
    position: relative;
    padding-right: 18px;
}

.external::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    background: url(../../common/img/icon_blank.svg) no-repeat center center;
    background-size: contain;
}

@media screen and (max-width: 1366px) {
    .footer__inner {
        width: 82.93%;
    }
}

@media screen and (max-width: 1200px) {
    .footer__inner {
        gap: 20px 30px;
    }
}

@media screen and (min-width: 768px) and (max-width: 980px) {
    .footer__inner{
        display: block;
    }

    .footer__logo-wrap{
        margin-bottom: 5%;
    }

    .footer__nav{
        margin-bottom: 5%;
    }
}

/* SP Styles */
@media screen and (max-width: 767px) {
    .footer {
        padding: 40px 0;
    }

    .footer__inner {
        width: 69.87%;
        padding: 0 20px;
        grid-template-areas:
            "logo"
            "nav"
            "copyright";
        grid-template-columns: 1fr;
        gap: 30px;
        box-sizing: content-box;
    }

    .footer__logo-wrap {
        text-align: center;
    }

    .footer__logo{
        width: 90px;
        margin: auto;
        display: block;
    }

    .footer__logo img {
        width: 90px;
    }

    .footer__nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "pages contact"
            "service service"
            "privacy privacy";
        gap: 30px 20px;
    }

    .footer__nav-list--pages { grid-area: pages; }
    .footer__nav-list--contact { grid-area: contact; }
    .footer__nav-list--service { grid-area: service; }
    .footer__nav-list--privacy { grid-area: privacy; text-align: center; }

    .footer__copyright-wrap {
        text-align: center;
    }
}