@charset "utf-8";

/*----------------------------
    全体
----------------------------*/
:root {
    --main-color: #0065C1;
    --sub-color: #008EED;
    --accent-color: #FF8888;
    --bg-color: #f5f5f5;
    --body-color: #E9EFF3;
    --border-color: #DCDCDC;
    --black: #3C3C3C;
    --gray: #A2A2A2;
}

body {
    color: var(--black);
    font-family: 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif;
    line-height: 1.5;
}

.body_wrap {
    overflow-x: clip;
}

a {
    transition: all 0.3s;
    text-decoration: none;
}

img{
    height: auto;
    max-width: 100%;
}

.display-none {
    display: none;
}

.sp_only {
    display: none;
}

@media screen and (max-width: 800px) {
    .sp_only {
        display: block;
    }

    .pc_only {
        display: none !important;
    }
}

/*----------------------------
    ヘッダー
----------------------------*/

header {
    background-color: #fff;
    height: 100px;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.header_wrap {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 1100px;
}

.header_logo {
    line-height: 1;
}

.header_logo img {
    height: 60px;
}

.header_right {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.main_nav {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.header_nav {
    width: 100%;
}

.main_nav li a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.048px;
}

.main_nav li a.active{
    color: var(--main-color);
}

@media (hover: hover) {
    .main_nav li a:hover{
      color: var(--sub-color);
    }
  }

.header_btn {
    font-size: 16px;
    flex-shrink: 0;
    margin-left: 4.3%;
    padding: 16px 0;
    max-width: 240px;
    width: 26%;
}

.header_btn div {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 800px) {
    header {
        padding: 10px 16px;
        height: 60px;
    }
    
    .header_logo img{
        height: 40px;
    }

    /*　ハンバーガー　*/
    .hamburger {
        cursor: pointer;
        display : block;
        position: relative;
        height: 26px;
        width: 35px;
        z-index: 99;
    }

    .hamburger span {
        display: block;
        margin: auto;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        right: 0;
        background: var(--main-color);
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 12px;
    }

    .hamburger span:nth-child(3) {
        bottom: 0;
    }

    /* ナビ開いてる時のボタン */
    .hamburger.active span:nth-child(1) {
        top: 10px;
        -webkit-transform: rotate(-45deg);
        -moz-transform   : rotate(-45deg);
        transform        : rotate(-45deg);
    }

    .hamburger.active span:nth-child(2){
        display: none;
    }

    .hamburger.active span:nth-child(3) {
        top: 10px;
        bottom: auto;
        -webkit-transform: rotate(45deg);
        -moz-transform   : rotate(45deg);
        transform        : rotate(45deg);
    }

    nav.globalMenuSp {
        background-color: #FFF;
        padding: 32px;
        position: fixed;
        z-index : 2;
        top  : 60px;
        left : 0;
        color: #000;
        transform: translateX(100%);
        transition: all 0.3s;
        width: 100%;
        height: 100vh;
    }

    /* このクラスを、jQueryで付与・削除する */
    nav.globalMenuSp.active {
        transform: translateX(0%);
        height: calc(100vh - 60px);
    }

    .main_menu {
        border-bottom: 1px solid var(--border-color);
        margin: 0 0 16px;
        padding: 0 0 20px;
        width: 100%;
        color: #000;
        font-weight: 500;
        letter-spacing: 0.018em;
    }

    .main_menu li {
        margin-bottom: 28px;
        width: 100%;
    }

    .sub_menu{
        font-size: 14px;
        letter-spacing: 0.018em;
        padding: 32px 0 16px;
    }

    .sub_menu li{
        margin-bottom: 16px;
    }

    nav.globalMenuSp ul li a {
        color: #000;
        display: inline-block;
    }

    .header_btn{
        display: block;
        margin: 32px auto;
        width: 280px;
    }
}

/*---------------------------
    ボタン
----------------------------*/
.btn{
    background: var(--main-color);
    border: none;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.02em;
    transition: 0.3s;
}

@media (hover: hover) {
    .btn:hover{
        background-color: var(--sub-color);
    }
}

.btn_small{
    font-size: 15px;
    padding: 8px;
    margin: auto;
    max-width: 156px;
    width: 100%;
}

.btn_small::after{
    content: "";
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    display: inline-block;
    margin-left: 4px;
    height: 10px;
    width: 12px;
}

@media screen and (max-width: 800px) {
    .btn_small{
        font-size: 16px;
        padding: 10px;
        max-width: 100%;
        width: 58%;
    }
}

/*---------------------------
    FV
----------------------------*/
.fv_section{
    background: linear-gradient(180deg, #47D6DD 0%, #008EED 100%);
    padding: 100px 16px 0;
}

.fv_wrap {
    background-color: #fff;
    border-radius: 16px;
    padding: 64px 50px;
    margin: 56px auto 0;
    max-width: 1200px;
    position: relative;
}

.fv_img{
    max-width: 372px;
    width: 31%;
    position: absolute;
    right: 17px;
    bottom: 25px;
    z-index: 0;
}

.fv_title{
    color: #000;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 48px;
}

.title_first{
    display: block;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.64px;
    margin-bottom: 16px;
}

.title_main{
    color: var(--main-color);
    display: flex;
    align-items: center;
    font-size: clamp(2.625rem, 0.671rem + 7.11vw, 6rem);
    letter-spacing: 1.92px;
    line-height: 1;
}

.title_en{
    display: inline-block;
    font-size: clamp(3.25rem, 0.789rem + 8.95vw, 7.5rem);
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0;
    line-height: 1;
}

.title_small{
    font-size: clamp(2.25rem, 0.368rem + 6.84vw, 5.5rem);
    padding-top: clamp(0.5rem, 0.428rem + 0.26vw, 0.625rem);
}

.text_blue{
    color: var(--main-color);
}

.fv_list{
    display: flex;
    gap: 24px;
    position: relative;
}

.fv_item{
    background-color: #fff;
    border: 2px solid var(--main-color);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 24px 0;
    max-width: 230px;
    width: 100%;
}

.fv_item_list{
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fv_item_title{
    color: var(--accent-color);
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.fv_item_text{
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

@media screen and (max-width:1100px) {
    .title_main{
        justify-content: center;
    }
    .fv_img{
        display: block;
        margin: 0 auto 24px;
        width: 100%;
        position: relative;
        right: auto;
        bottom: auto;
    }
    .fv_title{
        text-align: center;
    }
    .fv_list{
        justify-content: center;
    }
}

@media screen and (max-width:900px) {
    .title_main{
        margin: 0 0 16px;
    }
}

@media screen and (max-width: 800px) {
    .fv_section{
        padding: 60px 16px 0;
    }
    
    .fv_wrap {
        margin: 16px auto 0;
        padding: 40px 10px 32px;
    }
    
    .fv_img{
        max-width: 300px;
    }
    
    .fv_title{
        margin: 0 0 24px;
    }
    
    .title_first{
        font-size: 28px;
        line-height: 1.4;
        letter-spacing: 1px;
    }
    
    .title_main{
        letter-spacing: 0.56px;
    }

    .fv_list{
        flex-wrap: wrap;
        padding: 0 22px;
    }
    
    .fv_item{
        max-width: 100%;
        width: 100%;
    }
    
    .fv_item_title{
        margin-bottom: 4px;
    }
    
    .fv_item_text{
        letter-spacing: 0.02em;
        margin-bottom: 16px;
    }
}

/*----------------------------
    共通
----------------------------*/
.text_en{
    font-family: 'Open Sans', sans-serif;
}

.text_blue{
    color: var(--main-color);
}

.text_red{
    color: var(--accent-color);
}

/*----------------------------
    section共通
----------------------------*/
.section_title {
    color: #000;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.02em;
    padding-bottom: 32px;
    margin-bottom: 72px;
    position: relative;
}

.section_title::after{
    content: "";
    background-color: var(--sub-color);
    border-radius: 2px;
    display: block;
    height: 4px;
    width: 40px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.section_title .text_en {
    color: var(--sub-color);
    font-size: 56px;
    letter-spacing: 0.04em;
    line-height: 1;
}

.section_title .text_en:first-letter{
    font-size: 72px;
}

.section_title .text_blue{
    font-size: 32px;
}

.content_wrap{
    padding: 100px 32px 120px;
}

.section_wrap{
    margin: auto;
    max-width: 1100px;
}

@media screen and (max-width: 800px) {
    .section_title {
        font-size: 24px;
        padding-bottom: 28px;
        margin-bottom: 48px;
    }
    
    .section_title .text_en {
        font-size: 48px;
    }
    
    .section_title .text_en:first-letter{
        font-size: 56px;
    }
    
    .section_title .text_blue{
        font-size: 28px;
    }
    
    .content_wrap{
        padding: 56px 32px;
    }
}

/*----------------------------
    実績
----------------------------*/
.second_section{
    background-color: var(--sub-color);
    text-align: center;
}

.catchcopy{
    color: #fff;
    font-weight: bold;
    margin-bottom: 48px;
}

.catchcopy_sub{
    font-size: 24px;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
}

.catchcopy_sub .number{
    font-size: 32px;
}

.catchcopy_sub .small{
    font-size: 18px;
}

.catchcopy_main{
    border-bottom: 8px solid var(--main-color);
    display: inline-block;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0.04em;
    padding: 0 5px 8px;
}

.catchcopy_main .large{
    font-size: 56px;
}

.achievements_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

.achievements_item{
    aspect-ratio: 1/1;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1;
    max-width: 320px;
    width: 100%;
}

.achievements_img{
    margin-bottom: 8px;
    width: 100px;
}

.achievements_title{
    color: var(--main-color);
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.achievements_text{
    color: #000;
    font-size: 32px;
    font-weight: bold;
}

.achievements_text .number{
    display: block;
    font-size: 72px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.04em;
}

.achievements_text .note{
    color: var(--gray);
    font-size: 15px;
    vertical-align: top;
    letter-spacing: 0.016em;
    margin: 0 -30px 0 0;
}

.annotation {
    color: var(--bg-color);
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.016em;
}

@media screen and (max-width: 800px) {
    .catchcopy{
        margin-bottom: 40px;
    }
    
    .catchcopy_sub{
        font-size: 18px;
        letter-spacing: 0;
        margin-bottom: 32px;
    }
    
    .catchcopy_sub .text_en{
        font-size: 20px;
    }
    
    .catchcopy_sub .number{
        font-size: 24px;
    }
    
    .catchcopy_sub .small{
        font-size: 14px;
    }
    
    .catchcopy_main{
        font-size: 32px;
        line-height: 1.3;
        padding: 0 0 8px;
    }
    
    .catchcopy_main .large{
        display: block;
        font-size: 48px;
    }
    
    .achievements_list{
        flex-wrap: wrap;
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .achievements_item{
        aspect-ratio: unset;
        border: 4px solid var(--main-color);
        border-radius: 16px;
        padding: 24px 0 40px;
        max-width: 300px;
    }
    
    .achievements_img{
        width: 80px;
    }
    
    .achievements_text{
        display: inline-block;
        font-size: 24px;
        position: relative;
    }
    
    .achievements_text .number{
        display: inline-block;
        font-size: 60px;
    }
    
    .achievements_text .note{
        font-size: 14px;
        margin: 0;
        position: absolute;
        top: 14px;
        right: 0;
    }
    
    .annotation {
        font-size: 14px;
        text-align: left;
    }
}

@media screen and (max-width: 375px) {
    .catchcopy_sub{
        font-size: 16px;
    }
}

/*----------------------------
    SERVICE
----------------------------*/
.service_content:not(:last-child){
    border-bottom: 1px solid var(--sub-color);
    padding-bottom: 80px;
    margin-bottom: 80px;
}

.service_head{
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
}

.service_title{
    background: var(--sub-color);
    border-radius: 16px 0px;
    color: #fff;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 8px;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.02em;
    padding: 8px 20px;
}

.service_title .number{
    font-size: 64px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0;
}

.service_lead{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
    letter-spacing: 0.04em;
}

.service_wrap{
    display: flex;
    align-items: flex-end;
    flex-direction: row-reverse;
}

.service_content:nth-of-type(2) .service_wrap{
    flex-direction: row;
}

.service_grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service_box{
    background-color: var(--body-color);
    border-radius: 8px;
    line-height: 1.7;
    padding: 24px;
    width: 100%;
}

.service_box:last-child{
    grid-column: 1 / 3;
}

.service_box_title{
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.service_box_text{
    font-size: 15px;
    letter-spacing: 0.016em;
}

.service_box_text .small{
    font-size: 13px;
}

.service_list{
    background-color: #fff;
    border-radius: 4px;
    font-size: 14px;
    padding: 16px;
    margin-top: 16px;
}

.service_img{
    flex-shrink: 0;
    text-align: center;
    width: 350px;
}

.service_content:first-of-type .service_img{
    width: 337px;
}

.service_content:nth-of-type(2) .service_img{
    text-align: left;
}

.service_img img{
    width: 67%;
}

@media screen and (max-width: 800px) {
    .service_content:not(:last-child){
        padding-bottom: 48px;
        margin-bottom: 48px;
    }
    
    .service_head{
        display: block;
        margin-bottom: 24px;
    }
    
    .service_title{
        display: inline-flex;
        font-size: 20px;
        letter-spacing: 0.04em;
        padding: 8px 16px; 
        margin-bottom: 16px;
    }
    
    .service_title .number{
        font-size: 32px;
    }
    
    .service_lead{
        font-size: 16px;
    }
    
    .service_wrap{
        display: block;
    }
    
    .service_grid{
        display: flex;
        flex-wrap: wrap;
    }
    
    .service_img,
    .service_content:first-of-type .service_img{
        margin-bottom: 24px;
        width: 100%;
    }
    
    .service_img img{
        width: 100%;
    }
}

/*----------------------------
    CASE
----------------------------*/
.case_section{
    background: linear-gradient(180deg, #008EED 0%, #34B1E2 100%);
}

.case_section .section_title,
.case_section .section_title .text_en{
    color: #fff;
}

.case_section .section_title::after{
    background-color: #fff;
}

.case_list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.case_item{
    background-color: #fff;
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
}

.case_link{
    color: var(--black);
    display: block;
}

@media (hover: hover) {
    .case_link:hover{
        opacity: .8;
    }
    .case_link:hover .case_img img{
        transform: scale(1.1);
    }
}

.case_img{
    aspect-ratio: 13/10;
    border-radius: 16px 16px 0 0;
    line-height: 1;
    overflow: hidden;
}

.case_img img{
    border-radius: 16px 16px 0 0;
    object-fit: cover;
    object-position: left center;
    transition: all 0.3s;
    height: 100%;
    width: 100%;
}

.case_info{
    padding: 32px;
}

.case_company{
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 16px;
}

.company_logo{
    height: 40px;
    width: 60px;
}

.company_logo img{
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.case_title{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
    letter-spacing: 0.04em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

@media screen and (max-width: 800px) {
    .case_list{
        flex-direction: column;
        gap: 32px;
    }
    .case_item{
        max-width: 100%;
    }
    .case_info{
        padding: 16px;
    }
    .case_title{
        font-size: 16px;
    }
}

/*-----------------
 お知らせ
-----------------*/
.news_area {
    margin: auto;
    max-width: 980px;
}

.news_item{
    border-bottom: 1px solid var(--border-color);
}

.news_item:first-child{
    border-top: 1px solid var(--border-color);
}

.news_item:nth-child(n + 6){
    display: none;
}

.news_link{
    color: var(--black);
    display: flex;
    gap: 32px;
    padding: 40px 0;
}

@media (hover: hover) {
    .news_link:hover{
        color: var(--sub-color);
    }
}

.news_date{
    color: var(--gray);
    display: block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.7;
    letter-spacing: 0.04em;
}

.news_title{
    font-weight: normal;
    line-height: 1.7;
    letter-spacing: 0.016em;
}

.news_btn{
    display: none;
    margin: 40px auto 0;
}

@media screen and (max-width: 800px) {
    .news_link{
        flex-direction: column;
        gap: 8px;
        padding: 24px 0;
    }
}

/*-----------------
 フォーム：全体
-----------------*/

.contact_section {
    background-color: var(--body-color);
}

.form_wrap_wrap {
    background-color: #fff;
    border-radius: 16px;
    padding: 60px;
}

.form_wrap{
    margin-bottom: 40px;
}

.form_title {
    color: #000;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.form_title::after {
    border-radius: 2px;
    color: #fff;
    content: "必須";
    background-color: var(--accent-color);
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.04em;
    padding: 1px 4px;
    margin-left: 8px;
}

.form_title.optional::after {
    display: none;
}

input::placeholder {
    font-size: 16px;
    color: var(--gray);
}

.form_text_click {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--black);
    font-size: 16px;
    line-height: 1.7;
    padding: 12px;
    height: 50px;
    width: 100%;
}

.form_text_click.form_text_textarea {
    height: 120px;
}

.form_text_click:focus {
    border-color: var(--main-color);
    outline: 0;
}

@media screen and (max-width: 800px) {
    .contact_section.content_wrap{
        padding: 56px 24px;
    }

    .form_wrap_wrap {
        padding: 40px 24px;
    }

    .form_wrap{
        margin-bottom: 32px;
    }

    .form_wrap.flex{
        gap: 16px;
    }
}

/*-----------------
　名前
-----------------*/
.form_wrap.flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.form_inner {
    width: 100%;
}

/*-----------------
　お問い合わせ種別
-----------------*/
.form_select_wrap{
    position: relative;
}

.form_select_wrap::after{
    content: "";
    border-top: solid 2px var(--black);
    border-right: solid 2px var(--black);
    margin: auto;
    width: 7px;
    height: 7px;
    transform: rotate(135deg);
    pointer-events: none;
    position: absolute;
    top: -1px;
    right: 14px;
    bottom: 0;
}

.form_select {
    appearance: none;
}

/*-----------------
　個人情報の取り扱い
-----------------*/
.info_checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.info_checkbox input{
    display: none;
}

.text_consent {
    cursor: pointer;
    display: inline-block;
    padding: 0 0 0 40px;
    position: relative;
}

.text_consent:before {
    content: "";
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 24px;
}

.text_consent:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 8px;
    margin-top: -8px;
    width: 6px;
    height: 11px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 1px;
    transform: rotate(45deg);
    opacity: 0;
}

input[type=checkbox]:checked + .text_consent:before{
    background-color: var(--main-color);
    border: none;
}

input[type=checkbox]:checked + .text_consent:after {
    opacity: 1;
}

.consent_content {
    line-height: 1.7;
    letter-spacing: 0.016em;
    margin-bottom: 40px;
}

.info_private_policy {
    color: var(--main-color);
}

@media screen and (max-width: 800px) {
    .consent_content{
        margin-bottom: 32px;
    }
}

/*-----------------
　Google reCAPTCHA
-----------------*/
.g-recaptcha {
    display: flex;
    justify-content: center;
}

/*-----------------
　ボタン
-----------------*/
.submit_btn {
    text-align: center;
}

input[type="submit"] {
    background-color: var(--gray);
    border-radius: 50px;
    border: none;
    color: #FFFFFF;
    cursor: auto;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
    letter-spacing: 0.04em;
    transition: all 0.3s;
    padding: 24px;
    width: 400px;
}

@media (hover: hover) {
    input[type="submit"]:not(:disabled):hover{
        background-color: var(--sub-color) !important;
    }
}

@media screen and (max-width: 800px) {
    input[type="submit"] {
        padding: 16px;
        width: 100%;
    }
}

/*-----------------
フォーム項目非表示用
-----------------*/
.form-hide {
    display: none;
}

.contact_wrap-hide {
    display: none;
}

/*----------------------------
    footer
----------------------------*/
footer {
    background: var(--sub-color);
    color: #fff;
    padding: 40px;
}

footer a{
    color: #fff;
}

@media (hover: hover) {
    footer a:hover{
        opacity: 0.8;
    }
}

.footer_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
    margin: auto;
    max-width: 1100px;
}

.footer_upper {
    display: flex;
    align-items: center;
    gap: 56px;
}

.footer_lower {
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.04em;
}

.footer_middle ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    font-size: 14px;
    letter-spacing: 0.018em;
}

@media screen and (max-width: 800px) {
    .footer_wrap {
        flex-direction: column-reverse;
        gap: 32px;
    }
    
    .footer_upper{
        flex-direction: column;
        gap: 16px;
    }
}