@charset "UTF-8";

html {
  font-size: 100%;
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  color: #333;
  background-color: #E0C5A5;
  font-family: 'Cormorant Garamond', 'Shippori Mincho', serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  margin: 0;
}
p {
    font-family: 'Cormorant Garamond', 'Shippori Mincho', serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;  
    line-height: 1.8em;
    text-align: justify;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
ul {
  list-style: none;
}
a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease;
}
a:hover {
  opacity: 0.7;
}

/* 共通設定 ------------------------------- */
.pc{
    display: block;
}
.sp{
    display: none;
}

.section-title{
    color:#875C28;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-optical-sizing: auto;
    font-size: 2.5rem;
    line-height: 1.2em;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
}

/* button設定 */
.btn{
    display: inline-block;
    position: relative;
}
.btn .text{
    color: #333;
    font-weight: 700;
    font-style: normal;
    line-height: 1em;
    letter-spacing: 0.1em;
}
.btn .text::after{
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../img/common/button-arrow-black.svg);
    position: absolute;
    top: -8px;
    right: -35px;
}
.btn:hover .text{
    color:#fff;
}
.btn:hover .text::after{
    background-image: url(../img/common/button-arrow-white.svg);
}

.new .text{
    margin-left: 35px;
}
.new .text::after{
    left: 0;
    transform: rotate(180deg);
}
.new:hover .text::after{
    background-image: url(../img/common/button-arrow-white.svg);
}


.btn.no-click .text{
    color: #E0C5A5;
}
.btn.no-click .text::after{
    background-image: none;
}
.btn.no-click:hover .text{
    color: #E0C5A5;
}
.btn.no-click:hover .text::after{
    background-image: none;
}

.new.no-click:hover .text::after{
    background-image: none;
}


/* フェードイン */
.fadein{
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s;
}
.fadein.inview{
    opacity: 1;
    transform: translateY(0);
}

/* メンテナンス中 */
.maintenance{
    width: 300px;
    margin: 100px auto;
}
.maintenance > img{
    display: block;
    width: 100px;
    margin: 0 auto;
}
.maintenance > p{
    text-align: center;
}


/* header -------------------------------- */
#header{
    width: 100%;
    height: 170px;
    display: flex;
    justify-content: space-between;
    padding: 25px 50px;
}

#header .logo{
    width: 120px;
    height: 120px;
}

#header .nav .menu{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#header .nav .menu li{
    margin-left: 50px;
}
#header .nav .menu li a{
    font-style: normal;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1em;
}
#header .nav .menu li a:hover{
    color: #fff;
}

#header .nav .menu .privacy-area a{
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem;
}
#header .nav .menu .privacy-area a .circle{
    width: 80px;
    height: 54px;
    border-radius: 30px;
    border: 0.75px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#header .nav .menu .privacy-area a:hover .circle{
    border: 0.75px solid #fff;
    transition: all 0.4s ease;
}

/* main-visual --------------------------- */
#main-visual{
    width: 100%;
    padding-top: 20px;
}
#main-visual .main-container{
    width: 100%;
    height: 430px;
    display: flex;
    align-items: center;
}
#main-visual .main-container .img-area{
    width: 70%;
    height: 430px;
    position: relative;
}
#main-visual .main-container .img-area li img{
    width: auto;
    height: 430px;
    object-fit: cover;
    object-position: right top;
}
#main-visual .main-container .img-area li{
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    animation: fade 15s infinite;
}
#main-visual .main-container .img-area li:nth-child(1){
    animation-delay: 0s;
}
#main-visual .main-container .img-area li:nth-child(2){
    animation-delay: 5s;
}#main-visual .main-container .img-area li:nth-child(3){
    animation-delay: 10s;
}

@keyframes fade {
    0%{
        opacity: 0;
    }
    15%{
        opacity: 1;
    }
    30%{
        opacity: 1;
    }
    45%{
        opacity: 0;
    }
    100%{
        opacity: 0;
    }
}

#main-visual .main-container .text-area{
    width: 30%;
    height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#main-visual .main-container .text-area .text{
    width: 90px;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    writing-mode: vertical-rl;
    letter-spacing: 0.5rem;
    line-height: 1.4em;
    margin: 0 auto 40px;
}
#main-visual .main-container .text-area .text .text1{
    display: block;
    position: relative;
}
#main-visual .main-container .text-area .text .text2{
    display: block;
    position: relative;
}
#main-visual .main-container .text-area .text .text1::before{
    content: "";
    background: url(../img/common/catch1.svg);
    width: 10px;
    height: 210px;
    position: absolute;
    top: 0;
    right: -5px;
}
#main-visual .main-container .text-area .text .text2::before{
    content: "";
    background: url(../img/common/catch2.svg);
    width: 10px;
    height: 280px;
    position: absolute;
    top: 0;
    right: -5px;
}
#main-visual .main-container .text-area .description{
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2em;
    font-style: normal;
    text-align: center;
}

#main-visual .scroll-area{
    width: 59px;
    padding: 100px 0 100px;
    margin: 0 auto;
}
#main-visual .scroll-area p{
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    line-height: 1em;
    color: #875C28;
    text-align: center;
}
#main-visual .scroll-area img{
    width: 14px;
    height: 7px;
    margin: 0 auto;
}

/* works --------------------------------- */
#works{
    width: 100%;
    padding: 100px 60px;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
#works::after{
    content: "";
    width: 60%;
    height: 60%;
    background-image: url(../img/common/works-backimage.jpg);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: -1;
}
#works .text-wrap{
    width: 30%;
    max-width: 500px;
    padding-right: 40px;
}
#works .text-wrap .description{
    font-size: 0.937rem;
    margin-bottom: 40px;
}

#works .list-wrap{
    width: 70%;
    flex-shrink: 0;
}
#works .list-wrap .works-list{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
#works .list-wrap .works-list .works-item{
    min-width: 340px;
}
#works .list-wrap .works-list .works-item a{
    display: flex;
}
#works .list-wrap .works-list .works-item a .date{
    writing-mode: vertical-rl;
    font-size: 1.5rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1em;
    width: 25px;
    flex-shrink: 0;
}
#works .list-wrap .works-list .works-item a .works-item-main{
    width: calc(100% - 25px);
}
#works .list-wrap .works-list .works-item a .works-item-main .img{
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    margin-bottom: 5px;
}
#works .list-wrap .works-list .works-item a .works-item-main .img img{
    width: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.5s ease;
}

#works .list-wrap .works-list .works-item a .works-item-main .img img.color{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
#works .list-wrap .works-list .works-item a:hover .works-item-main .img img.color{
    opacity: 1;
    transform: scale(1.05);
}

#works .list-wrap .works-list .works-item a .works-item-main .info{
    display: flex;
}
#works .list-wrap .works-list .works-item a .works-item-main .info .tag{
    width: 85px;
    height: 57px;
    flex-shrink: 0;
    border-right: 0.75px solid #333;
}
#works .list-wrap .works-list .works-item a .works-item-main .info .title{
    width: calc(100% - 85px);
    font-size: 1.5rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1em;
    text-align: right;
    margin-top: 5px;
}

/* skills -------------------------------- */
#skills{
    width: 100%;
    padding: 100px 5%;
    position: relative;
}
#skills::after{
    content: "";
    width: 100%;
    height: 300px;
    background-image: url(../img/common/skills-backimage.jpg);
    background-size: cover;
    background-position: top right;
    position: absolute;
    top: 130px;
    left: 0;
    z-index: -1;
}

#skills > .text-wrap{
    height: 480px;
    display: flex;
    flex-direction: row-reverse;
    margin-right: 10%;
    margin-bottom: 80px;
}
#skills > .text-wrap .section-title{
    writing-mode: vertical-rl;
    margin-left: 40px;
}
#skills > .text-wrap .ex{
    writing-mode: vertical-rl;
    font-size: 1.5rem;
    font-weight: 800;
    font-style: normal;
    line-height: 1.2em;
    text-indent: -1.5rem;
    margin-top: 80px;
    margin-left: 40px;
}
#skills > .text-wrap .normal{
    writing-mode: vertical-rl;
    margin-top: 80px;
}

#skills .skills-list{
    width: 80%;
    margin: 0 auto;
}
#skills .skills-list .skills-item{
    width: 100%;
    margin-bottom: 100px;
}
#skills .skills-list .skills-item .skills-item-wrap{
    width: 100%;
    display: flex;
}
#skills .skills-list .skills-item:nth-child(even) .skills-item-wrap{
    flex-direction: row-reverse;
}
#skills .skills-list .skills-item .skills-item-wrap .text-wrap{
    width: calc(100% - 350px);
    flex-direction: column;
    padding: 0 5%;
}
#skills .skills-list .skills-item .skills-item-wrap .text-wrap .item-title{
    font-size: 1.5rem;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 50px;
    position: relative;
}
#skills .skills-list .skills-item .skills-item-wrap .text-wrap .item-title .number{
    font-size: 2rem;
    font-weight: 600;
    font-style: normal;
    margin-right: 8px;
}
#skills .skills-list .skills-item .skills-item-wrap .text-wrap .item-title .small{
    font-size: 1rem;
    font-style: normal;
    font-weight: 800;
}
#skills .skills-list .skills-item .skills-item-wrap .text-wrap .item-title::after{
    content: "";
    width: 93px;
    height: 15px;
    background-image: url(../img/common/line-white.png);
    position: absolute;
    top: 50px;
    left: 3px;
}
#skills .skills-list .skills-item .skills-item-wrap .text-wrap .info{
    width: 100%;
}
#skills .skills-list .skills-item .skills-item-wrap .img-wrap{
    width: 350px;
    flex-shrink: 0;
    position: relative;
}
#skills .skills-list .skills-item .skills-item-wrap .img-wrap img{
    width: 100%;
    object-fit: cover;
}
#skills .skills-list .skills-item .skills-item-wrap .img-wrap::after{
    content: "";
    width: 350px;
    height: 272px;
    background-color: #F0C45F;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: -1;
}

#skills .tool-language-wrap{
    width: 700px;
    background-image: url(../img/common/works-backimage.jpg);
    padding: 50px;
    margin: 0 auto;
}
#skills .tool-language-wrap .tool-language{
    width: 600px;
    margin: 0 auto;
}
#skills .tool-language-wrap .tool-language .item-wrap{
    display: flex;
}
#skills .tool-language-wrap .tool-language .item-wrap:first-child{
    margin-bottom: 20px;
}
#skills .tool-language-wrap .tool-language .item-wrap dt{
    width: 165px;
    flex-shrink: 0;
    padding-right: 80px;
    text-align: right;
    position: relative;
}
#skills .tool-language-wrap .tool-language .item-wrap dt::after{
    content: "";
    width: 60px;
    height: 1px;
    background-color: #333;
    position: absolute;
    top: 12px;
    right: 10px;
}
#skills .tool-language-wrap .tool-language .item-wrap dd{
    width: calc(100% - 165px);
    font-size: 1.25rem;
}

/* about --------------------------------- */
#about{
    width: 100%;
    padding: 100px 0;
    margin: 0 auto;
}
#about > .section-title{
    text-align: center;
}

#about .main-container{
    width: 80%;
    display: flex;
    margin: 0 auto;
}

#about .main-container .img-wrap{
    width: 500px;
}
#about .main-container .img-wrap img{
    width: 100%;
    object-fit: cover;
}

#about .main-container .text-wrap{
    width: calc(100% - 500px);
}
#about .main-container .text-wrap .name{
    margin-right: 60px;
    margin-bottom: 20px;
    position: relative;
}
#about .main-container .text-wrap .name::after{
    content: "";
    width: 30px;
    height: 100px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    position: absolute;
    top: 10px;
    right: -40px;
}
#about .main-container .text-wrap .name .ja{
    font-size: 1.25rem;
    line-height: 1em;
    text-align: right;
}
#about .main-container .text-wrap .name .en{
    color: #875C28;
    font-size: 0.75rem;
    line-height: 1em;
    text-align: right;
}

#about .main-container .text-wrap .info-wrap{
    background-image: url(../img/common/works-backimage.jpg);
    padding: 60px 80px;
    margin-left: -40px;
}
#about .main-container .text-wrap .info-wrap .info{
    font-family: 'Shippori Mincho', serif;
    font-size: 0.937rem;
}

/* footer --------------------------------- */
#footer{
    width: 100%;
    background-color: #875C28;
    padding: 50px 0;
}
#footer .footer-main-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
}

#footer .footer-main-container .logo-wrap{
    width: 235px;
    display: flex;
}
#footer .footer-main-container .logo-wrap .logo{
    width: 120px;
    height: 120px;
}
#footer .footer-main-container .logo-wrap .logo img{
    width: 100%;
    object-fit: cover;
}
#footer .footer-main-container .logo-wrap .text{
    color: #fff;
    font-size: 0.875rem;
    line-height: 1em;
}

#footer .footer-main-container .nav-wrap{
    width: calc(100% - 235px);
    display: flex;
    align-items: flex-end;
}
#footer .footer-main-container .nav-wrap .footer-nav{
    width: calc(100% - 140px);
}
#footer .footer-main-container .nav-wrap .footer-nav .nav-list{
    width: 140px;
    margin: 0 0 0 auto;
}
#footer .footer-main-container .nav-wrap .footer-nav .nav-list li{
    margin-bottom: 30px;
}
#footer .footer-main-container .nav-wrap .footer-nav .nav-list li a{
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1em;
}
#footer .footer-main-container .nav-wrap .footer-nav .nav-list li.sns{
    margin-top: 40px;
    margin-bottom: 0;
}
#footer .footer-main-container .nav-wrap .footer-nav .nav-list li.sns a{
    font-size: 1rem;
    font-weight: 400;
}
#footer .footer-main-container .nav-wrap .footer-nav .nav-list li.sns a img{
    width: 24px;
    height: 25px;
}

#footer .footer-main-container .nav-wrap .scroll-top{
    width: 140px;
    display: block;
    color: #fff;
    position: relative;
}
#footer .footer-main-container .nav-wrap .scroll-top p{
    width: 40px;
    line-height: 1em;
    text-align: center;
    margin: 0 0 0 auto;
}
#footer .footer-main-container .nav-wrap .scroll-top::before{
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../img/common/button-arrow-white.svg);
    position: absolute;
    top: -35px;
    right: 5px;
    rotate: -90deg;
}


/*-------------------------------------------
skillsの見栄え用
-------------------------------------------*/
@media screen and (max-width: 1200px) {

    #skills .skills-list{
        width: 100%;
    }
}

/*-------------------------------------------
worksの見栄え用
-------------------------------------------*/
@media screen and (max-width: 1100px) {

    /* works --------------------------------- */
    #works{
        padding: 100px 5%;
        flex-direction: column;
        justify-content: center;
    }
    #works .text-wrap{
        width: 100%;
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    #works .list-wrap{
        width: 100%;
        flex-shrink: 1;
    }
    #works .list-wrap .works-list{
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    #works .list-wrap .works-list .works-item{
        width: 100%;
    }
}


/*-------------------------------------------
タブレット
-------------------------------------------*/
@media screen and (max-width: 960px) {

    /* 共通設定 ------------------------------- */
    .pc{
        display: none;
    }

    /* header -------------------------------- */

    /* ハンバーガーここから */
    #header .hamburger{
        position: fixed;
        width: 180px;
        height: 30px;
        top: 25px;
        right: 0;
        z-index: 100;
        cursor: pointer;
    }
    #header .hamburger span{
        height: 1px;
        background-color: #333;
        display: inline-block;
        position: absolute;
        right: 0;
        transition: all 0.4s;
    }
    #header .hamburger span:nth-child(1){
        width: 180px;
        top: 0;
    }
    #header .hamburger span:nth-child(2){
        width: 170px;
        top: 10px;
    }
    #header .hamburger span:nth-child(3){
        width: 160px;
        top: 20px;
    }

    /* active */
    #header .hamburger.active span{
        background-color: #fff;
    }
    #header .hamburger.active span:nth-child(1){
        width: 160px;
    }
    #header .hamburger.active span:nth-child(3){
        width: 180px;
    }
    /* ハンバーガーここまで */

    #header .nav{
        width: 100%;
        height: 100vh;
        background-color: #333;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;
        opacity: 0;
        visibility: hidden;
    }
    /* active */
    #header .nav.active{
        opacity: 1;
        visibility: visible;
        transition: all 0.4s;
    }

    #header .nav .menu{
        width: 100%;
        height: 100vh;
        flex-direction: column;
        padding: 150px 0;
        overflow: auto;
    }
    #header .nav .menu li{
        margin-left: 0;
        margin-bottom: 60px;
    }
    #header .nav .menu li a{
        color: #fff;
    }
    #header .nav .menu li a:hover{
        color: #875C28;
    }

    #header .nav .menu .privacy-area span{
        display: block;
        width: 30px;
        height: 1px;
        background-color: #875C28;
        margin: 0 auto 50px;
    }
    #header .nav .menu .privacy-area a{
        font-size: 1.125rem;
    }
    #header .nav .menu .privacy-area a .circle{
        width: 130px;
        border: 0;
    }

    /* works -------------------------------- */
    #works .list-wrap .works-list .works-item{
        min-width: 300px;
    }
    #works .list-wrap .works-list .works-item a .works-item-main .info .title{
        font-size: 1.25rem;
    }

    /* skills -------------------------------- */
    #skills .skills-list .skills-item .skills-item-wrap{
        flex-direction: column-reverse;
    }
    #skills .skills-list .skills-item:nth-child(even) .skills-item-wrap{
        flex-direction: column-reverse;
    }
    #skills .skills-list .skills-item .skills-item-wrap .text-wrap{
        width: 100%;
    }
    #skills .skills-list .skills-item .skills-item-wrap .img-wrap{
        margin: 0 auto 40px;
    }

    /* about --------------------------------- */
    #about .main-container{
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }

    #about .main-container .img-wrap{
        width: 100%;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    #about .main-container .text-wrap{
        width: 90%;
        margin: 0 auto;
    }

    #about .main-container .text-wrap .info-wrap{
        margin-left: 0;
    }

}

/*-------------------------------------------
スマホ
-------------------------------------------*/
@media screen and (max-width: 430px) {

    /* 共通設定 ------------------------------- */
    .sp{
        display: block;
    }

    /* header -------------------------------- */
    #header{
        height: 125px;
        padding: 25px;
    }

    #header .logo{
        width: 100px;
        height: 100px;
    }

    #header .nav .menu{
        padding: 120px 0 0;
    }

    #header .nav .menu .privacy-area span{
        margin: 0 auto 30px;
    }
    #header .nav .menu .privacy-area a{
        font-size: 1rem;
    }

    /* main-visual --------------------------- */
    #main-visual{
        padding-top: 0;
    }
    #main-visual .main-container{
        height: auto;
        flex-direction: column-reverse;
        justify-content: flex-end;
        align-items: flex-end;
    }
    #main-visual .main-container .img-area{
        width: 100%;
        max-width: 100%;
        height: 370px;
    }
    #main-visual .main-container .img-area li img{
        height: 370px;
    }

    #main-visual .main-container .text-area{
        width: auto;
        height: auto;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: flex-end;
    }
    #main-visual .main-container .text-area .text{
        width: 80px;
        font-size: 1.5rem;
        margin: 0 20px 10px 0;
    }
    #main-visual .main-container .text-area .description{
        text-align: right;
        margin: 0 0 10px 0;
    }

    #main-visual .scroll-area{
        padding: 80px 0;
    }

    /* works --------------------------------- */
    #works::after{
        content: none;
    }

    #works .list-wrap .works-list{
        grid-template-columns: repeat(1, 1fr);
        /* gap: 40px; */
    }
    #works .list-wrap .works-list .works-item{
        min-width: 300px;
    }
    #works .list-wrap .works-list .works-item a .works-item-main .info .title{
        font-size: 1.25rem;
    }

    /* skills -------------------------------- */
    #skills{
        padding: 80px 0;
    }
    #skills::after{
        background-color:rgba(255,255,255,0.4);
        background-blend-mode:lighten;
    }

    #skills > .text-wrap{
        margin-right: 0;
        margin-bottom: 60px;
    }
    #skills > .text-wrap .section-title{
        margin-left: 30px;
        margin-right: 10px;
    }
    #skills > .text-wrap .ex{
        margin-left: 10px;
    }

    #skills .skills-list{
        padding-left: 0;
    }
    #skills .skills-list .skills-item:nth-child(2) .skills-item-wrap .text-wrap .item-title::after{
        top: 85px;
    }
    #skills .skills-list .skills-item .skills-item-wrap .img-wrap{
        width: 300px;
    }
    #skills .skills-list .skills-item .skills-item-wrap .img-wrap::after{
        width: 300px;
        height: 230px;
    }

    #skills .tool-language-wrap{
        width: 95%;
        margin: 0 0 0 5%;
    }
    #skills .tool-language-wrap .tool-language{
        width: 100%;
    }
    #skills .tool-language-wrap .tool-language .item-wrap{
        flex-direction: column;
    }
    #skills .tool-language-wrap .tool-language .item-wrap:first-child{
        margin-bottom: 40px;
    }
    #skills .tool-language-wrap .tool-language .item-wrap dt{
        width: 100%;
        padding-right: 0;
        text-align: left;
        margin-bottom: 10px;
    }
    #skills .tool-language-wrap .tool-language .item-wrap dt::after{
        content: "";
        left: 100px;
    }
    #skills .tool-language-wrap .tool-language .item-wrap dd{
        width: 100%;
    }    

    /* about --------------------------------- */
    #about .main-container .img-wrap{
        max-width: 300px;
    }

    #about .main-container .text-wrap{
        width: 90%;
        margin: 0 auto;
    }
    #about .main-container .text-wrap .name::after{
        height: 70px;
        top: 6px;
    }
    #about .main-container .text-wrap .name .ja{
        font-size: 0.987rem;
    }

    #about .main-container .text-wrap .info-wrap{
        padding: 40px 10%;
    }

    /* footer --------------------------------- */
    #footer{
        padding: 50px 0 80px 0;
    }
    #footer .footer-main-container{
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 10%;
    }

    #footer .footer-main-container .logo-wrap{
        width: 100%;
        margin-bottom: 50px;
    }
    #footer .footer-main-container .logo-wrap .logo{
        width: 100px;
        height: 100px;
    }

    #footer .footer-main-container .nav-wrap{
        width: 100%;
        justify-content: space-between;
    }
    #footer .footer-main-container .nav-wrap .footer-nav .nav-list{
        margin: 0;
    }

}