@charset "UTF-8";

:root {
    --font1: "Noto Sans JP", sans-serif;
    --font2: "Tektur", sans-serif;
    --font3: "Tomorrow", sans-serif;
    --font4: "Noto Serif JP", serif;
    --blue1: #0077f5;
    --blue2: #80bbfa;
    --blue3: #ddedff;
    --blue4: #8fc4ff;
    --blue5: #c7e1ff;
    --blue6: #a5d0ff;
    --blue7: #80d9ff;
    --blue8: #d9ebfd;
    --blue9: #ccf0ff;
    --blue10: #366ba3;
    --blue11: #004ea2;
    --blue12: #bfddfc;
    --blue13: #bfecff;
    --green1: #80d4ce;
    --green2: #9ff7f7;
    --green3: #90dab9;
    --green4: #d9fcfc;
    --green5: #b2f9f9;
    --green6: #3ff0f0;
    --green7: #00a99d;
    --green8: #c5fafa;
    --yellow1: #fee586;
    --orange1: #f8ac91;
    --purple1: #f68ebc;
    --grey1: #edf0f2;
    --color-seisan: var(--yellow1);
    --color-gijyutu: var(--orange1);
    --color-seizou: var(--purple1);
    --color-hinshitsu: var(--green3);
    --color-jimu: var(--blue7);
    --color-shinsotsu: var(--blue1);
    --color-chuto: var(--green7);
    --link-shape1: polygon(
        0 0,
        100% 0,
        100% calc(100% - 16px),
        40px calc(100% - 16px),
        30px 100%,
        20px calc(100% - 16px),
        0 calc(100% - 16px)
    );
    --link-shape2: polygon(
        0 0,
        100% 0,
        100% calc(100% - 16px),
        calc(50% - 10px) calc(100% - 16px),
        50% 100%,
        calc(50% + 10px) calc(100% - 16px),
        0 calc(100% - 16px)
    );
    --link-shape3: polygon(
        0 0,
        100% 0,
        100% calc(100% - 12px),
        calc(50% - 7.5px) calc(100% - 12px),
        50% 100%,
        calc(50% + 7.5px) calc(100% - 12px),
        0 calc(100% - 12px)
    );
    --link-shape4: polygon(
        0 0,
        100% 0,
        100% calc(100% - 16px),
        20px calc(100% - 16px),
        0 100%
    );
    --link-shape5: polygon(
        0 0,
        100% 0,
        100% calc(100% - 9.5px),
        12px calc(100% - 9.5px),
        0 100%
    );
    --link-shape6: polygon(
        0 0,
        100% 0,
        100% calc(100% - 12px),
        34px calc(100% - 12px),
        27px 100%,
        20px calc(100% - 12px),
        0 calc(100% - 12px)
    );
}

html {
    color: #333;
    font-size: 62.5%;
    margin: 0;
    padding: 0;
    position: relative;
    word-break: break-word;
    font-family: var(--font1);
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    font-size: 1.6rem;
    line-height: 1.625;
    letter-spacing: 0;
}

@layer base {
    * {
        box-sizing: border-box;
    }

    address {
        font-style: normal;
    }

    table,
    tr,
    td,
    th {
        border-collapse: collapse;
        margin: 0;
    }

    table {
        margin: 10px 0;
    }

    td {
        padding: 5px 10px;
    }

    th {
        padding: 5px 10px;
        font-weight: normal;
    }

    img {
        align-self: flex-start;
        border: none;
        max-width: 100%;
        height: auto;
    }

    img:not([width]) {
        width: auto;
    }

    a {
        color: inherit;
    }

    a:hover,
    a:active {
        opacity: 0.8;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
        font-weight: normal;
    }

    ol,
    ul {
        margin: 20px 0 20px 10px;
    }

    li > ul,
    li > ol {
        margin-top: 0;
        margin-bottom: 0;
    }

    p {
        margin: 0 0 1em 0;
    }

    button {
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
    }

    button:hover,
    button:active {
        opacity: 0.8;
    }

    input,
    textarea {
        color: inherit;
        font-size: inherit;
        font-family: inherit;
    }
}

body.is_modal {
    overflow: hidden;
}

.goTop {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
}
.goTop img {
    display: block;
}
.goTop:hover {
    cursor: pointer;
}

header a,
footer a {
    text-decoration: none;
}

.l-header :is(a, button, img),
.l-headerNav :is(a, img) {
    display: block;
}
.l-header .siteLogo {
    position: absolute;
    margin: 0;
    z-index: 1;
}
.l-header .link-entry,
.l-header .headerBtn {
    z-index: 20000;
}
.l-header .link-entry {
    background-color: #333;
    border: 3px solid #333;
    position: fixed;
    transition: background-color 0.15s, color 0.15s;
}
.l-header .link-entry:hover {
    opacity: 1;
}
.l-header .headerBtn {
    aspect-ratio: 1/1;
    position: fixed;
}
.l-header .headerBtn:before,
.l-header .headerBtn:after {
    position: absolute;
    display: block;
    content: "";
    background-color: #333;
    translate: -50% -50%;
    left: 50%;
    transition: 0.2s;
}
.l-header .headerBtn:hover:before,
.l-header .headerBtn:hover:after {
    background-color: var(--blue1);
}
.l-header .headerBtn[aria-expanded="true"]::before {
    rotate: -25deg;
}
.l-header .headerBtn[aria-expanded="true"]::after {
    rotate: 25deg;
}
.l-headerNav {
    display: none;
    position: fixed;
    background-color: var(--blue4);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10010;
    overflow: auto;
}
.l-headerNav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.l-headerNav .nav-siteLogo {
    position: absolute;
}
.l-headerNav nav .linkList .parent {
    position: relative;
    width: 100%;
    padding-bottom: 5px;
}
.l-headerNav nav .linkList .parent::after {
    content: "";
    position: absolute;
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    clip-path: var(--link-shape1);
    top: 5px;
    left: 5px;
    background-color: #333;
}
.l-headerNav nav .linkList :is(.parent, .child) a {
    position: relative;
    font-weight: 900;
    font-family: var(--font2);
}
.l-headerNav nav .linkList :is(.parent, .child) a:hover {
    opacity: 1;
}
.l-headerNav nav .linkList :is(.parent, .child) a::before {
    content: "";
    display: block;
    background-color: #333;
    height: 10px;
    width: 9px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    position: absolute;
}
.l-headerNav nav .linkList :is(.parent, .child) a:hover::before {
    background-color: var(--blue1);
}
.l-headerNav nav .linkList :is(.parent, .child) a span {
    display: block;
    font-weight: bold;
    font-family: var(--font1);
}
.l-headerNav nav .linkList .parent a {
    z-index: 1;
    clip-path: var(--link-shape1);
    background-color: #fff;
    width: calc(100% - 5px);
    height: calc(100% - 5px);
}
.l-headerNav nav .linkList .parent a::before {
    left: 10px;
    translate: 0 -50%;
}
.l-headerNav nav .linkList .child a {
    width: fit-content;
    border: none;
    outline: none;
}
.l-headerNav nav .linkList .child a::before {
    left: 0;
    translate: 0 -50%;
}

footer {
    background-color: var(--grey1);
}
footer .new-graduate {
    --title-color: var(--blue2);
}
footer .career {
    --title-color: var(--green1);
}
footer .inner {
    width: calc(100% - 40px);
    margin: 0 auto;
}
.footerTitle {
    position: relative;
    font-weight: bold;
    text-align: center;
    width: calc(100% - 5px);
}
.footerTitle .text {
    position: relative;
    z-index: 2;
}
.footerTitle::before,
.footerTitle::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}
.footerTitle::before {
    background-color: var(--title-color);
    top: 0;
    left: 0;
    z-index: 1;
}
.footerTitle::after {
    background-color: #333;
    top: 5px;
    left: 5px;
}
.l-footer__type .link-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.l-footer__type .link-group :is(a, a img) {
    display: block;
}
.l-footer__type .detail {
    position: relative;
    display: block;
    font-weight: bold;
    text-align: center;
    border: 2px solid #333;
    border-radius: 20px;
    background-color: #fff;
    margin-inline: auto;
    transition: background-color 0.15s, color 0.15s;
}
.l-footer__type a.detail:hover {
    background-color: #333;
    color: #fff;
    opacity: 1;
}
.l-footer__type a.detail:before {
    content: "";
    display: block;
    position: absolute;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #333;
    top: 50%;
    translate: 0 -50%;
    transition: background-color 0.15s;
}
.l-footer__type a.detail:hover::before {
    background-color: #fff;
}
.l-footer__type .detail.mynavi {
    background-image: url(../img/recruit/icon-mynavi.jpg);
    background-repeat: no-repeat;
}
.l-footer__contact {
    --title-color: var(--green2);
}
.l-footer__contact .textArea {
    text-align: center;
}
.l-footer__contact .textArea span {
    display: block;
}
.l-footer__contact .textArea .company {
    font-weight: bold;
}
.l-footer__contact .textArea :is(.tel, .email) {
    font-family: var(--font3);
    font-weight: bold;
}
.l-footer__contact .textArea .tantou {
    font-weight: 900;
}
.l-footer__linkArea1 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.l-footer__linkArea1 ul li a {
    display: block;
    position: relative;
    width: calc(100% - 5px);
}
.l-footer__linkArea1 ul li a::before,
.l-footer__linkArea1 ul li a::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
}
.l-footer__linkArea1 ul li a::before {
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 1;
}
.l-footer__linkArea1 ul li a::after {
    top: 5px;
    left: 5px;
    background-color: #333;
}
.l-footer__linkArea1 ul li a .text {
    position: relative;
    font-family: var(--font2);
    font-weight: 900;
    z-index: 2;
}
.l-footer__linkArea1 ul li a .text span {
    display: block;
    font-weight: bold;
    font-family: var(--font1);
}
.l-footer__linkArea1 ul li a .text::before {
    content: "";
    display: block;
    background-color: #333;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    position: absolute;
    top: 50%;
}
.l-footer__linkArea1 ul li a:hover {
    opacity: 1;
}
.l-footer__linkArea1 ul li a:hover .text::before {
    background-color: var(--blue1);
}
.l-footer__linkArea2 .footerLogo {
    display: block;
    margin: 0 auto;
}
.l-footer__linkArea2 .footerLogo img {
    display: block;
}
.l-footer__linkArea2 .companyLink {
    display: block;
    width: fit-content;
    background-image: url(../img/recruit/icon-link-w.png);
    background-repeat: no-repeat;
    background-position: right 50px center;
    background-size: 20px auto;
    background-color: var(--blue11);
    font-family: var(--font4);
    font-weight: bold;
    color: #fff;
}
.l-footer__linkArea3 :is(a, a img) {
    display: block;
}
footer .copyRight {
    text-align: center;
    margin-bottom: 0;
}
@media all and (min-width: 768px) {
    body {
        min-width: 1200px;
    }
    .goTop {
        width: 90px;
    }
    .l-header .siteLogo {
        width: 40%;
        max-width: 630px;
        top: 20px;
        left: 15px;
    }
    .l-header .link-albirex {
        width: 95px;
        position: absolute;
        top: 15px;
        right: 410px;
        z-index: 2;
    }
    .l-header .link-instagram {
        position: absolute;
        top: 15px;
        right: 320px;
        z-index: 2;
    }
    .l-header .link-entry {
        width: 150px;
        color: #fff;
        text-align: center;
        font-family: var(--font2);
        font-weight: 900;
        font-size: 2.4rem;
        padding: 2.5px 0;
        top: 20px;
        right: 140px;
    }
    .l-header .link-entry:hover {
        background-color: #fff;
        color: #333;
    }
    .l-header .headerBtn {
        width: 60px;
        margin-left: 30px;
        top: 15px;
        right: 20px;
    }
    .l-header .headerBtn:before,
    .l-header .headerBtn:after {
        width: 40px;
        height: 5px;
    }
    .l-header .headerBtn:before {
        top: calc(50% - 8px);
    }
    .l-header .headerBtn:after {
        top: calc(50% + 5px);
    }
    .l-header .headerBtn[aria-expanded="true"]::before,
    .l-header .headerBtn[aria-expanded="true"]::after {
        top: calc(50% - 3px);
        width: 44px;
    }
    .l-headerNav {
        padding-bottom: 100px;
    }
    .l-headerNav .nav-siteLogo {
        width: 360px;
        top: 22px;
        left: 13px;
    }
    .l-headerNav nav {
        width: calc(100% - 40px);
        max-width: 1200px;
        padding-top: 140px;
        margin: 0 auto;
    }
    .l-headerNav nav .linkList {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    .l-headerNav nav .linkList > li {
        max-width: 300px;
        width: 100%;
    }
    .l-headerNav nav .linkList :is(.parent, .child) a .text {
        color: transparent;
        background-clip: text;
        background-image: linear-gradient(-60deg, #333 50%, var(--blue1) 50%);
        background-size: 220% 100%;
        background-position: 100% 100%;
        transition: background-position 0.4s linear;
    }
    .l-headerNav nav .linkList :is(.parent, .child) a:hover .text {
        background-position: 0 100%;
    }
    .l-headerNav nav .linkList .parent a {
        padding-left: 23px;
        padding-bottom: 22px;
        font-size: 3rem;
    }
    .l-headerNav nav .linkList .parent a span {
        font-size: 1.6rem;
        margin-top: -11px;
    }
    .l-headerNav nav .linkList .parent a::before {
        top: calc(50% - 8px);
    }
    .l-headerNav nav .linkList .parent .navBtn {
        display: none;
    }
    .l-headerNav nav .linkList .child {
        display: block !important;
        padding-top: 19px;
    }
    .l-headerNav nav .linkList .child > li + li {
        margin-top: 8px;
    }
    .l-headerNav nav .linkList .child a {
        font-size: 2.6rem;
        padding-left: 13px;
    }
    .l-headerNav nav .linkList .child a span {
        font-size: 1.4rem;
        letter-spacing: 0.1em;
        margin-top: -8px;
    }
    .l-headerNav nav .linkList .child a::before {
        top: calc(50% + 2px);
    }

    footer {
        padding: 200px 0 115px;
    }
    footer .inner {
        max-width: 1200px;
    }
    .footerTitle {
        font-size: 3rem;
        padding: 8px 5px 24px;
        margin: 0 0 50px;
    }
    .footerTitle::before,
    .footerTitle::after {
        clip-path: var(--link-shape2);
    }
    .l-footer__type {
        display: flex;
        gap: 60px;
        margin-bottom: 60px;
    }
    .l-footer__type > div {
        flex: 1;
    }
    .l-footer__type .link-group {
        padding-top: 15px;
    }
    .l-footer__type .detail {
        font-size: 3rem;
        line-height: 1.333;
        max-width: 500px;
        padding: 48px 20px 48px 40px;
    }
    .l-footer__type a.detail:before {
        right: 20px;
        width: 16px;
        height: 18px;
    }
    .l-footer__type a.detail {
        padding-left: 100px;
        padding-right: 50px;
    }
    .l-footer__type .detail.mynavi {
        background-size: 70px auto;
        background-position: center left 20px;
    }
    .l-footer__contact {
        margin-bottom: 95px;
    }
    .l-footer__contact .textArea .company {
        font-size: 3rem;
        margin-bottom: 32px;
    }
    .l-footer__contact .textArea :is(.tel, .email) {
        font-size: 2.6rem;
    }
    .l-footer__contact .textArea .tel {
        margin-bottom: 15px;
    }
    .l-footer__contact .textArea .email {
        margin-bottom: 14px;
    }
    .l-footer__contact .textArea .tantou {
        font-size: 2.2rem;
    }
    .l-footer__linkArea1 {
        margin-bottom: 100px;
    }
    .l-footer__linkArea1 ul {
        display: flex;
        gap: 60px;
    }
    .l-footer__linkArea1 ul li {
        flex: 1;
    }
    .l-footer__linkArea1 ul li a {
        padding: 0 10px 5px 18px;
    }
    .l-footer__linkArea1 ul li a .text {
        font-size: 3rem;
    }
    .l-footer__linkArea1 ul li a .text span {
        font-size: 1.6rem;
        margin-top: -10px;
    }
    .l-footer__linkArea1 ul li a .text {
        color: transparent;
        background-clip: text;
        background-image: linear-gradient(-60deg, #333 50%, var(--blue1) 50%);
        background-size: 210% 100%;
        background-position: 100% 100%;
        transition: background-position 1s linear;
    }
    .l-footer__linkArea1 ul li a .text::before {
        left: -11px;
        height: 9px;
        width: 8px;
    }
    .l-footer__linkArea1 ul li a:hover .text {
        background-position: 0 100%;
    }
    .l-footer__linkArea2 {
        margin-bottom: 28px;
    }
    .l-footer__linkArea2 .footerLogo {
        width: 410px;
    }
    .l-footer__linkArea2 .companyLink {
        font-size: 2.4rem;

        margin: 30px auto 50px;
        padding: 20px 100px;
    }
    .l-footer__linkArea3 {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 28px;
    }
    .l-footer__linkArea3 .link-instagram {
        width: 100px;
    }
    .l-footer__linkArea3 .link-albirex {
        width: 300px;
    }
    footer .copyRight {
        font-size: 1.2rem;
    }
}

@media all and (max-width: 767px) {
    body {
        font-size: 1.4rem;
        line-height: 1.714;
    }
    .goTop {
        width: 60px;
    }
    .l-header .siteLogo,
    .l-headerNav .nav-siteLogo {
        width: 195px;
        max-width: 52vw;
        top: 10px;
        left: 20px;
    }
    .l-header .link-entry {
        width: 75px;
        max-width: 20vw;
        top: 10px;
        right: 75px;
        aspect-ratio: 15/11;
        display: flex;
        justify-content: center;
    }
    .l-header .link-entry img {
        max-width: 35px;
        align-self: center;
    }
    .l-header .link-entry:active {
        background-color: #fff;
    }
    .l-header .link-entry:active img {
        filter: invert(1);
    }
    .l-header .headerBtn {
        width: 55px;
        top: 10px;
        right: 10px;
    }
    .l-header .headerBtn:before,
    .l-header .headerBtn:after {
        width: 30px;
        height: 4px;
    }
    .l-header .headerBtn:before {
        top: calc(50% - 6px);
    }
    .l-header .headerBtn:after {
        top: calc(50% + 6px);
    }
    .l-header .headerBtn[aria-expanded="true"]::before,
    .l-header .headerBtn[aria-expanded="true"]::after {
        top: 50%;
        width: 34px;
    }
    .l-headerNav {
        padding-top: 102px;
        padding-bottom: 90px;
    }
    .l-headerNav nav {
        width: calc(100% - 40px);
        margin: 0 auto;
    }
    .l-headerNav nav .linkList > li + li {
        margin-top: 20px;
    }
    .l-headerNav nav .linkList :is(.parent, .child) a {
        transition: color 0.2s;
    }
    .l-headerNav nav .linkList :is(.parent, .child) a:hover {
        color: var(--blue1);
    }
    .l-headerNav nav .linkList .parent a {
        padding-left: 23px;
        padding-bottom: 22px;
        font-size: 3rem;
    }
    .l-headerNav nav .linkList .parent a span {
        font-size: 1.4rem;
        margin-top: -9px;
    }
    .l-headerNav nav .linkList .parent a::before {
        top: calc(50% - 8px);
    }
    .l-headerNav nav .linkList .parent .navBtn {
        display: block;
        width: 30px;
        aspect-ratio: 1/1;
        position: absolute;
        top: calc(50% - 8px);
        right: 10px;
        translate: 0 -50%;
        z-index: 3;
    }
    .l-headerNav nav .linkList .parent .navBtn::before,
    .l-headerNav nav .linkList .parent .navBtn::after {
        content: "";
        display: block;
        width: 20px;
        height: 4px;
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        background-color: #333;
        transition: rotate 0.3s;
    }
    .l-headerNav nav .linkList .parent .navBtn::after {
        rotate: -90deg;
    }
    .l-headerNav nav .linkList .parent .navBtn.active::after {
        rotate: 0deg;
    }
    .l-headerNav nav .linkList .child {
        display: none;
        padding-top: 12px;
    }
    .l-headerNav nav .linkList .child > li + li {
        margin-top: 8px;
    }
    .l-headerNav nav .linkList .child a {
        font-size: 2.4rem;
        padding-left: 13px;
        width: fit-content;
    }
    .l-headerNav nav .linkList .child a span {
        font-size: 1.2rem;
        margin-top: -6px;
    }
    .l-headerNav nav .linkList .child a::before {
        top: calc(50% + 2px);
    }
    .l-headerNav .outerLink {
        margin-top: 26px;
    }
    .l-headerNav .outerLink .link-instagram {
        margin-inline: auto;
        max-width: 100px;
    }
    .l-headerNav .outerLink .link-albirex {
        margin: 30px auto 0;
        max-width: 300px;
    }

    footer {
        padding: 120px 0 110px;
    }
    .footerTitle {
        font-size: 2.4rem;
        padding: 11px 5px 23px;
        margin: 0 0 33px;
    }
    .footerTitle::before,
    .footerTitle::after {
        clip-path: var(--link-shape3);
    }
    .l-footer__type {
        margin-bottom: 50px;
    }
    .l-footer__type > div + div {
        margin-top: 50px;
    }
    .l-footer__type .link-group {
        align-items: center;
        flex-direction: column;
    }
    .l-footer__type .detail {
        font-size: 2.1rem;
        line-height: 1.476;
        padding: 27px 20px;
    }
    .l-footer__type a.detail:before {
        right: 6px;
        width: 12px;
        height: 13.5px;
    }
    .l-footer__type a.detail {
        padding-left: 60px;
        padding-right: 32px;
    }
    .l-footer__type .detail.mynavi {
        background-size: 50px auto;
        background-position: center left 12px;
    }
    .l-footer__contact {
        margin-bottom: 75px;
    }
    .l-footer__contact .textArea .company {
        font-size: 2.7rem;
        line-height: 1.37;
        margin-bottom: 28px;
    }
    .l-footer__contact .textArea :is(.tel, .email) {
        font-size: 2.2rem;
    }
    .l-footer__contact .textArea .tel {
        margin-bottom: 4px;
    }
    .l-footer__contact .textArea .email {
        margin-bottom: 5px;
    }
    .l-footer__contact .textArea .tantou {
        font-size: 1.9rem;
    }
    .l-footer__linkArea1 {
        margin-bottom: 80px;
    }
    .l-footer__linkArea1 ul li + li {
        margin-top: 25px;
    }
    .l-footer__linkArea1 ul li a {
        padding: 1px 10px 6px 22px;
    }
    .l-footer__linkArea1 ul li a .text {
        font-size: 3rem;
    }
    .l-footer__linkArea1 ul li a .text span {
        font-size: 1.4rem;
        margin-top: -8px;
    }
    .l-footer__linkArea1 ul li a .text {
        transition: color 0.2s;
    }
    .l-footer__linkArea1 ul li a:hover .text {
        color: var(--blue1);
    }
    .l-footer__linkArea1 ul li a .text::before {
        left: -10px;
        width: 9px;
        height: 10.5px;
    }
    .l-footer__linkArea2 {
        margin-bottom: 46px;
    }
    .l-footer__linkArea2 .footerLogo {
        max-width: 305px;
        width: 100%;
    }
    .l-footer__linkArea2 .companyLink {
        font-size: 2rem;
        background-size: 15px auto;
        margin: 30px auto 0;
        padding: 20px 50px;
        background-position: right 25px center;
    }
    .l-footer__linkArea3 {
        margin-bottom: 48px;
    }
    .l-footer__linkArea3 .link-instagram {
        max-width: 100px;
        margin-inline: auto;
    }
    .l-footer__linkArea3 .link-albirex {
        max-width: 300px;
        margin: 30px auto 0;
    }
    footer .copyRight {
        font-size: 1.2rem;
    }
}
