@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;400;500&display=swap');


html {
    -webkit-apperance: none; 
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 4rem;
    word-break: break-all;
    font-size: 10px;
}
body {
    font-family:   "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.7rem;
    font-weight: 200;
    color: rgb(80, 80, 80);
}

/* PC、SPの非表示 */
@media (max-width:767px) {
    .pc {
        display: none !important;
    }
}
@media (min-width: 768px) {
    .sp {
        display: none !important;
    }
}
img {
    width: 100%;
}
.inner {
    max-width: 940px;
    /* ↑ここは880px + 左右のpadding分 */
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}
@media (max-width: 767px) {
    .inner {
        max-width: 767px;
        padding: 0 1.96rem;
    }
}
h1 {
    font-size: 1.8rem;
    font-weight: bold;
    padding-left:3.4rem;
    position: relative;
}
@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
        letter-spacing: 0; 
        line-height: 2.5;       
    }
}
  h1::before {
    content:"";
    background-image: url('../img/icon01.svg');
    position:absolute;
    width: 2.54rem;
    height:2.5rem;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
h2 {
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
}

.bg-grn {
    background-color:rgba(13, 150, 160, 10%);
}
.font-grn {
    color: rgb(13, 150, 160);
}

/*  ↑↑ここまでが全体の設定↑↑  */



/*    header    */

.header {
    display: flex;
    width: 100%; 
    height: 5rem;
    background-color: rgba(255, 255, 255, 90%);
    /* ヘッダーの固定 */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.header__inner {
    justify-content: space-between;
    display: flex;
    width: 100%;
    line-height: 3;
    padding: 0 6rem 0 10rem;
    max-width: 1080px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .header__inner {
        padding: 0 0 0 2.1rem;
    }
}
@media (max-width: 330px) {
    .header__inner {
        padding-left: .5rem;
    }
}
.header__left {
    display: flex;
    width: 100%;
}
.header__right {
    display: flex;
    height: 100%;
    align-items: center;
    font-size: 1.4rem;
    text-align: center;
}
@media (max-width: 767px) {
    .header__right {
        width: 8.9rem;
        background-color: rgb(13, 150, 160);
    }
}


/* ハンバーガーボタン */
.header__hb-btn {
    width: 3.7rem;
    height: 2.6rem;
    margin: auto;
    position: relative;
}

.header__nav li a:hover {
    color: rgba(47, 140, 109, 0.5);
    transition: all 0.4s;
    cursor: pointer;

}
  @media (max-width: 767px) {
    .header__nav li a:hover {
        color: rgba(227, 242, 237, 0.5);
    }
}

.header__hb-btn span {
    display: block;
    width: 100%;
    height: 0.4rem;
    border-radius:1rem;
    background: rgb(255, 255, 255);
    position: absolute;
    left: 0;
    transition: all .4s;
}
.header__hb-btn span:nth-of-type(1) {
    top: 0;
}
.header__hb-btn span:nth-of-type(2) {
    top: 1.2rem;
}
.header__hb-btn span:nth-of-type(3) {
    top: 2.4rem;
}

.header__hb-btn.active span:nth-of-type(1) {
    top: 1.2rem;
    transform: rotate(45deg);
}
.header__hb-btn.active span:nth-of-type(2) {
    display: none;
}
.header__hb-btn.active span:nth-of-type(3) {
    top: 1.2rem;
    transform: rotate(-45deg);
}
.header__nav {
    column-gap: 1rem;
    display: flex;
}
@media (max-width: 767px){
    .header__nav {
        display: block;
        width: 100%;
        height: calc(100% - 5rem);
        background-color:rgba(13, 150, 160, 90%);
        position: fixed;
        top: 5rem;
        left: 0;
        padding: 5rem 3rem;
        left: 120%;
        transition: all 1s;
    }
    .header__nav.active{
        left: 0;
    }    
}
.header__nav li a {
    font-weight: 700;
}
@media (max-width: 767px){
    .header__nav li:first-of-type {
        border-top:0.1rem solid #fff;
    }
    .header__nav li a {
        padding: 0 1rem;
        width: 100%;
        height: 5rem;
        border-bottom: 0.1rem solid #fff;
        font-size: 1.6rem;
        color: #fff;
        }    
}
.header__nav li {
    width: 100%;
    white-space: nowrap;
}
.nav_btn {
    display: flex;
    justify-content: center;
    align-items: center; 
    font-weight: 700;
}






/*    fv    */

.fv {
    margin-top: 5rem;
    background-color: #009bc6;
}
.fv__img {
    position: relative;
}
.fv__contents {
    position: absolute;
    top: 51%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    align-items:center;
    background-color: rgba(255, 255, 255, 70%);
    height:42%;
    width:45.5vw;
}
@media (max-width: 767px){
    .fv__contents {
        height: 14.8rem;
        width: 31rem;
        top: auto;
        bottom: 0;
        transform: translate(0%, 0%);
    }
}
.fv__contents-box {
    padding-top: 3vw;
    padding-left:9.2vw;
}
@media (max-width: 767px){
    .fv__contents-box {
        padding: 1.7rem 0 2.7rem 2rem;     
    }
}

.fv__name {
    font-size: calc(25 / 1080 * 100vw);
    font-weight:bold;
    margin-bottom: .8rem;
}
@media (max-width: 767px){
    .fv__name {
        font-size: 2rem;
    }
}
.fv__text {
    font-size: calc(40 / 1080 * 100vw);
    font-weight: bold;
    line-height:1.3;
}
@media (max-width: 767px){
    .fv__text {
        font-size: 3rem;
        line-height: 1.3;
        margin-top:1rem;
    }
}




/*    ご挨拶 greeting    */

#greeting {
    padding: 6.6rem 0 6.2rem;
    position: relative;
}
@media (max-width:767px) {
    #greeting {
        padding: 4.4rem 0;
    }
}
.greeting__icon {
    width: 8rem;
    position: absolute;
    right: 9.2rem;
    bottom: 4.6rem;
}
@media (max-width: 767px){
    .greeting__icon {
        width: 6.2rem;
        right: 4.5rem;
        bottom: 5.6rem;
    }
}

.greeting__title {
    font-size: 3rem;
    font-weight: bold;
    line-height:1.2;
    justify-content: center;
    text-align: center;
    padding-bottom: 2.1rem;
}
@media (max-width: 767px){
    .greeting__title {
        font-size: 2.5rem;
        line-height:1.4;
        padding-bottom: 2rem;
    }
}
@media (max-width: 767px){
    .greeting__box {
        height: auto;
        margin: 0 auto;
    }
}
.greeting__contents {
    font-size: 1.8rem;
    line-height: 1.85;
    text-align: center;
}
@media (max-width: 767px){
    .greeting__contents {
        font-size: 1.6rem;
        text-align: start;
        letter-spacing: 0;
        
    }
}





/*    特徴 about    */

#about {
    padding: 7rem 0;
}
@media (max-width: 767px) {
    #about {
        padding: 4.4rem 0;
    }
}

.about__1 {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    padding: .3rem 0 .5rem;
}
.about__2 {
    display: flex;
    align-items: center;
    padding: 4.3rem 0 4.6rem;
}
.about__3 {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
@media (max-width: 767px){
    .about__1, .about__3, .about__2 {
        display: block;
        padding: 0;
    }
}

.about__1__img {
    width: 50%;
}
.about__1__content {
    width: 45.5%;
    margin-right: 4.3rem;
}
@media (max-width:767px) {
    .about__1__content {
        margin-right: 0;
        width: 100%;
    }
}
.about__2__img, .about__2__content {
    width: 50%;
}
@media (max-width:767px) {
    .about__2__content {
        width: 100%;
    }
}
.about__3__img {
    width: 50%;
}

.about__3__content {
    width: 45.5%;
    margin-right: 4.3rem;
}
@media (max-width:767px) {
    .about__3__content {
        margin-right: 0;
        width: 100%;
    }
}

.about__1__title, .about__3__title {
    font-size: 2.2rem;
    font-weight: bold;
}

.about__2__title {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0.1rem 0 2rem 4.65rem;
}
@media (max-width: 767px){
    .about__2__title {
        margin: 0;
    }
}
@media (max-width: 767px){
    .about__1__img {
        margin:.5rem 0 2.5rem;
        width: 100%;
    }
}
@media (max-width: 767px){
    .about__2__img {
        margin:4.3rem 0 2.4rem;
        width: 100%;
    }
}
@media (max-width: 767px){
    .about__3__img {
        margin:4.3rem 0 2.5rem;
        width: 100%;
    }
}
@media (max-width: 767px){
    .about__1__title, .about__3__title, .about__2__title {
        font-size: 2rem;
        text-align:center;
        align-items: center;
        line-height:1.5;
    }
}
.about__1__detail {
    margin-top: 1.5rem;
    padding-right: 1rem;
}
@media (max-width: 767px){
    .about__1__detail {
        padding-right: 0;
    }
}
@media (min-width: 768px){
    .about__1__detail {
        font-size: 1.8rem;
        line-height: 1.8;
    }
}
@media (min-width: 768px){
    .about__2__detail {
        font-size: 1.8rem;
        line-height: 1.9;
        margin-left: 4.5rem;
    }
}
.about__3__detail {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-top:2.1rem;
    padding-right: 1rem;
}
@media (max-width: 767px){
    .about__1__detail, .about__3__detail, .about__2__detail {
        line-height: 1.9;
        margin:.7rem 0 0 0;
        font-size:1.6rem;
    }
}





/*    サービス    */

#service {
    padding: 7rem 0 6.1rem;
}
@media (max-width: 767px) {
    #service {
        padding: 4rem 0 4.2rem;
    }
}
.service__title {
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    width: 100%; 
    position:relative;
    padding: 0 3.4rem 4rem 3.4rem;
}
@media (max-width: 767px){
    .service__title {
        font-size: 2.2rem;
        font-weight: bold;
        padding-top: .5rem;
    }
}
.service__title h2 {
    padding: 0 4.1rem 0 4.6rem;
}
.service__title h2::before {
    content:"";
    background-image: url('../img/icon01.svg');
    position:absolute;
    width: 2.5rem;
    height:2.5rem;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
@media (max-width: 767px){
    .service__title h2::before {
        content:"";
        background-image: url('../img/icon01.svg');
        width: 2.6rem;
        height:2.5rem;
        }
}
.service__title h2::after {
    content:"";
    background-image: url('../img/icon01.svg');
    position:absolute;
    width: 2.5rem;
    height:2.5rem;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    }
@media (max-width: 767px){
    .service__title h2::after {
        content:"";
        background-image: url('../img/icon01.svg');
        width: 2.6rem;
        height:2.5rem;
        }
}
@media (max-width: 767px){
    .service_1, .service_2 {
        padding-bottom: 4.1rem;
    }
}
.service__contents {
    display: flex;
    justify-content: space-between;
    column-gap: 5rem;
}
@media (max-width: 767px){
    .service__contents {
        display: block;
    }
}
p {
    font-size: 2rem;
    font-weight: bold;
}
.service__title-1, .service__title-2, .service__title-3 {
    padding: 1.5rem 0 .5rem 0;
    text-align: center;
}
@media (max-width: 767px){
    .service__title-1, .service__title-2, .service__title-3 {
        padding: 2.6rem 0 .8rem 0;
    }
}
.service__comment {
    text-align: center;
    font-size: 1.7rem;
    line-height: 1.8;
}
@media (max-width: 767px){
    .service__comment {
        font-size: 1.6rem;
        line-height: 1.9;
        letter-spacing: .02rem;
    }
}




/*    お知らせ notice    */

#notice {
    padding: 6.5rem 0 6.7rem;
}
@media (max-width: 767px) {
    #notice {
        padding: 3.7rem 0 5rem;
    }
}

.notice__title {
    font-size: 1.8rem;
    display: flex;
    width: 100%;
    justify-content: center;
    padding-bottom: 4rem;
    position:relative;
}
@media (max-width: 767px){
    .notice__title {
        font-size: 2.2rem;
        font-weight: bold;
        padding: .7rem .5rem 4.3rem 1rem;
        }
}
.notice__title h2 {
    padding: 0 4.2rem 0 4.7rem;
}

.notice__title h2::before {
    content:"";
    background-image: url('../img/icon01.svg');
    position:absolute;
    width: 2.6rem;
    height:2.5rem;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  @media (max-width: 767px){
    .notice__title h2::before {
        content:"";
        background-image: url('../img/icon01.svg');
        width: 2.6rem;
        height:2.5rem;
        }
}

.notice__title h2::after {
    content:"";
    background-image: url('../img/icon01.svg');
    position:absolute;
    width: 2.6rem;
    height:2.5rem;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  @media (max-width: 767px){
    .notice__title h2::after {
        content:"";
        background-image: url('../img/icon01.svg');
        width: 2.6rem;
        height:2.5rem;
      }
    }    
.notice__article {
    width: 100%;
}
@media (max-width: 767px){
    .notice__dt, .notice__dt-2, .notice__dd {
        display: block;
    }
}
.notice__tr:first-of-type {
    border-top: solid thin rgb(112, 112, 112);
}
@media (max-width: 767px){
    .notice__dt-2, .notice__dd :first-of-type {
     border-top:none;
    }
}
.notice__tr {
    border-bottom: solid thin rgb(112, 112, 112);
    padding: 1.45rem 0;
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: space-between;
}
.notice__tr:hover {
    background-color: rgb(255, 255, 255);
    border-radius: .5rem;
    transition: all .4s;
}
dl {
    display: flex;
}
@media (max-width: 767px){
    dl {
        display: block;
        padding: 1.1rem 0 1.3rem;
    }
}
.notice__dt {
    font-size: 1.7rem;
    font-weight: 700;
    width: 11.7rem;
    padding-left: 2rem;
    padding-right: .95rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 767px){
    .notice__dt {
        display: block;
        width: 100%;
        padding: 0 0 0 1rem;
        font-size: 1.7rem;
    }
}
.notice__dd {
    font-size: 1.7rem;
    padding-left: 1.7rem;
    padding-right: 1.2rem;
    flex: 1;
    line-height: 1.7;
}
@media (max-width: 767px){
    .notice__dd {
        font-size: 1.6rem;
        padding-left: 1.1rem;
    }
}
.notice__dt:last-of-type {
        letter-spacing: 0;
    }

@media (max-width: 767px){
    .notice__td:last-of-type {
        font-size: 1.6rem;
        padding-top: 0;
        padding-bottom: 2.6rem;
        padding-left: 1.1rem;
    }
}

.notice__dt-2{
    font-size: 2rem;
    width: 18.9rem;
    margin-left: 2.2rem;
    display: flex;
    align-items: center;
}
@media (max-width: 767px){
    .notice__dt-2{
        padding-left: 1.1rem;
        margin: 0;  
    }
}





/*    アクセス    */

#access {
    padding: 6.5rem 0 6.7rem;
}
@media (max-width: 767px) {
    #access {
        padding: 4.3rem 0 33rem;
    }
}

.access__title {
    font-size: 1.8rem;
    display: flex;
    width: 100%;
    justify-content: center;
    padding-bottom: 4rem;
    position:relative;
}
@media (max-width: 767px){
    .access__title {
        font-size: 2.2rem;
        font-weight: bold;
        padding: 0 .8rem 4.7rem 1rem;
    }
}
.access__title h2 {
    padding: 0 4.1rem 0 4.7rem;
}
@media (max-width: 767px){
    .access__title h2 {
        padding: 0 4.4rem 0 4.5rem;
    }
}
.access__title h2::before {
    content:"";
    background-image: url('../img/icon01.svg');
    position:absolute;
    width: 2.6rem;
    height:2.5rem;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
.access__title h2::after {
    content:"";
    background-image: url('../img/icon01.svg');
    position:absolute;
    width: 2.6rem;
    height:2.5rem;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
.access__box {
    display: flex;
    column-gap: 4.75rem;
}
@media (max-width: 785px){
    .access__box {
        column-gap: 2.75rem;
    }
}
@media (max-width: 767px){
    .access__box {
        display: block;
        position:relative;
        width:100%;
        height:0;
        padding-top:65%;
        padding-bottom: 0;
    }
}
@media (max-width: 767px){
    .access__box iframe {
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
    }
}
address {
    width: 45%;
  }
  @media (max-width: 785px){
    address {
        width: 50%;
    }
}
  @media (max-width: 767px){
      address {
          width: 100%;
        }
    } 
.address__1 {
    font-size: 2.2rem;
    font-weight: bold;
    padding-bottom: 2rem;
}
@media (max-width: 767px){
    .address__1 {
        padding: 2.5rem 0 1rem;
    }
}

.address__2 {
    font-size:1.8rem;
}
@media (max-width: 767px){
    .address__2 {
        font-size: 1.6rem;
        display: flex;
    }
}
.ib {
    display: inline-block;
}
.ib__1 {
    margin-right: 1.2rem;
}
@media (max-width: 767px){
    .ib__1 {
        margin-right: 1.7rem;
    }
}

.address__3 {
    font-size: 1.8rem;
    padding: 1rem 0 0.7rem 0;
}
@media (max-width: 767px){
    .address__3 {
        font-size: 1.6rem;
        padding: 1rem 0;
    }
}
.address__3 a {
    font-size: 2.5rem;
    font-weight: 700;
}

.address__4 {
    font-size: 1.8rem;
    padding-bottom: 3.5rem;
}
@media (max-width: 767px){
    .address__4 {
        font-size: 1.6rem;
        padding-bottom: 1.5rem;
    }
}
@media (max-width: 360px){
    .address__4 {
        font-size:1.5rem;
        letter-spacing: -.1rem;
    }
}
.address__5 {
    font-size: 1.78rem;
    width: 100%;
    height: 10.8rem;
    padding: 1.5rem 0 2.5rem .5rem;
    line-height: 2.2;
    align-content: space-between;
    border-top: solid thin rgb(112, 112, 112);
    border-bottom: solid thin rgb(112, 112, 112);
}
@media (max-width: 767px){
    .address__5 {
        font-size:1.65rem;
        letter-spacing: -.04rem;
        height: 8.9rem;
        padding: 1.1rem 0 1.5rem 0rem;
        line-height:1.9;
    }
}
@media(min-width: 768px){
    a[href^="tel:"]{
        pointer-events: none;
    }
}




/*    お問い合わせ    */

#contact {
    padding: 6.7rem 0 3.8rem;
}
@media (max-width: 767px) {
    #contact {
        padding: 4rem 1rem 0.8rem 0;
    }
}
.contact__title {
    font-size: 1.8rem;
    display: flex;
    width: 100%;
    justify-content: center;
    padding-bottom: 1.7rem;
    position:relative;

}
@media (max-width: 767px){
    .contact__title {
        font-size: 2.2rem;
        font-weight: bold;
        padding-left: 1rem;
        padding-bottom: 3.7rem;
    }
}
.contact__title h2 {
    padding: 0 4.4rem 0 4.6rem;
}

.contact__title h2::before {
    content:"";
    background-image: url('../img/icon01.svg');
    position:absolute;
    width: 2.6rem;
    height:2.5rem;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  @media (max-width: 767px){
    .contact__title h2::before {
        content:"";
        background-image: url('../img/icon01.svg');
        width: 2.6rem;
        height:2.5rem;
      }
  }
.contact__title h2::after {
    content:"";
    background-image: url('../img/icon01.svg');
    position:absolute;
    width: 2.6rem;
    height:2.5rem;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  @media (max-width: 767px){
    .contact__title h2::after {
        content:"";
        background-image: url('../img/icon01.svg');
        width: 2.6rem;
        height:2.5rem;
      }
  }
.summary__1 {
    font-size: 1.7rem;
    font-weight: 200;
    text-align: center;
    line-height:1.8;
}
@media (max-width: 767px){
    .summary__1 {
        font-size: 1.6rem;
        text-align:justify;
        padding-right: .5rem; 
        letter-spacing: -.05rem;
        line-height:1.9;
    }
}
.summary__2 {
    font-size: 1.7rem;
    font-weight: 200;
    text-align: center;
    line-height:1.9;
    padding-bottom: 4.6rem;
}
@media (max-width: 767px){
    .summary__2 {
        font-size: 1.6rem;
        text-align:justify;
        padding-bottom: 3.5rem;     
        padding-right:1.2rem;
    }
}
@media (max-width: 767px){
    .contact__tr, .contact__tr_mail, .contact__tr_content{
        display:grid;
    }
}
.contact-form table {
    width: 100%;
    margin-bottom: 1.1rem;
}
.contact-form tr td:first-of-type {
    width: 17rem;
    vertical-align: top;
    font-size: 2rem;
    font-weight: 700;
}
@media (max-width: 767px){
    .contact-form tr td:first-of-type {
        font-size: 1.8rem;
        margin-bottom: .3rem;
    }
}
.contact-form tr td input,
.contact-form tr td textarea {
    width: 100%;
    border: none;
    background-color: rgb(255, 255, 255);
    line-height: 1.3;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
    height: 4rem;
    margin-bottom: 2.9rem;
    padding-left: 1rem;
    line-height: 1.3;
}
@media (max-width: 767px){
    .contact-form input[type="text"],
    .contact-form input[type="email"] {
        height: 4.9rem;
        margin-bottom: 1.7rem;
    }
}    
.contact-form textarea {
    height: 30rem;
    resize: none;
    padding: 1rem; 
}
.contact-form input[type="submit"] {
    width: 20rem;
    background-color: #0D96A0;
    color: #fff;
    border: none;
    border-radius: .9rem;
    font-size: 2.5rem;
    cursor: pointer;
    transition: .3s;
    letter-spacing:.5rem;
    padding-left: .5rem;
    line-height: 1.3;
}
@media (max-width: 767px){
.contact-form input[type="submit"] {
    width: 100%;
    font-size: 2rem;
    max-width: 325px;
    }
}
.contact-form input[type="submit"]:hover {
    color: #0D96A0;;
    background-color: #fff;
    border: .1rem solid #0D96A0;; 
}
.label {
    line-height: 1.5;
}
@media (max-width: 767px){
    .label {
    line-height: 1.8;
}
}
label[for="content"] {
    letter-spacing: 2.2rem; 
}
@media (max-width: 767px){
    label[for="content"] {
        letter-spacing: 1.8rem; 
    }
}
.contact__tr {
    column-gap: 6rem;
}
.btn-submit {
    font-size: 10rem;
    font-weight: 700;
    text-align: center;
    margin-top: -2.2rem;
}
@media (max-width: 767px){
    .btn-submit {
        font-size: 9.65rem;
    }
}
.button {
    width: 20rem;
    height: 5rem;
}
@media (max-width: 767px){
    .button {
        height: 4rem;
    }
}





/*    footer   */

footer {
    padding: 6.9rem 0;
    height: 28rem;
    background-color: #505050;
    color:#ffffff;
    text-align: center;
}
@media (max-width: 767px) {
    footer {
        padding: 4.75rem 0;
    }
}
.footer__nav {
    padding: 0 14.8rem;
    justify-content: space-evenly;
}
@media (max-width: 1040px){
    .footer__nav {
        padding: 0 5.5rem;
    }
}  
@media (max-width: 767px){
    .footer__nav {
        padding: 0;
    }
}    
.footer__nav ul {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    font-size: 1.4rem;
    text-align: center;
    padding-bottom: 2.5rem;
}
@media (max-width: 767px){
    .footer__nav ul {
        flex-wrap: wrap;        
        gap: 1rem 1.8rem;
       padding-bottom: 2.8rem;
        justify-content:center;
    }
}
.footer__nav ul li {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
    margin-left: 0.2rem;
}
@media (max-width: 767px){
    .footer__nav ul li {
        font-size: 1.8rem;
        font-weight: 200;
    }
}
.footer__copyright {    
    margin: 0 7.1rem;
    padding: 2.4rem 0 .9rem 0;     
    border-top: .1rem solid #FFFFFF ;     
    }
@media (max-width: 767px){
    .footer__copyright {    
        margin: 0;
        padding: 1.5rem 0 3rem 0;
    }
}
       
@media (max-width: 767px){
    .footer__copyright p{   
        font-size:1.6rem;
    }
}
@media (max-width: 340px){
    .footer__copyright p{   
        font-size:1.4rem;
    }
}
.footer__icon {
    display: flex;
    height: 100%;
    justify-content: center;
    column-gap: 1.1rem;
    text-align: center;
}
.footer__nav .nav_btn:hover {
    cursor: pointer;
    background-color: #fff;
    border-radius: .5rem;
    color: #505050;
    transition: all 0.5s;
}
.footer__icon a:hover{
    border-bottom-color: transparent;
    transform: translateY(.5rem);
}