@charset "UTF-8";

html{
    font-size: 62.5%;
    box-sizing: border-box;
    background: #fff;
    margin-top: 0 !important;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    color: var(--basic);
    font-family: 'Noto Sans JP', Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "Segoe UI", "Helvetica Neue", HelveticaNeue, Meiryo, sans-serif;
    line-height: 1.5em;
    font-size: 1.6rem;
    text-align: justify;
    min-height: 100vh;
    overflow-x: hidden;
    text-justify : inter-world;
    font-feature-settings: "palt";
    letter-spacing: 0.06em;
}

* {
    box-sizing: border-box;
}

h1,h2,h3,h4,h5 {
    margin: 0;
}

 p {
    margin: 0;
} 

a{
    display: block;
    cursor: pointer;
    text-decoration-line: none;
    text-decoration: none;
    color: var(--navy);
    transition: .3s;
}

a, a:hover, a:active {
    /* color: var(--basic); */
    text-decoration-line: none;
    text-decoration: none;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

img{
    width: 100%;
    height: auto;
}

header{
    line-height: inherit;
}

ul {
    margin: 0;
    padding: 0;
}

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

li{
    list-style:none;
}

/* ----------------------------------------------------------
common
---------------------------------------------------------- */
.pc{
    display: block;
}
.sp{
    display: none;
}
:root {
    /* 色指定 */
    --basic: #30416b;
    --gray: #e1e7ee;
    --sub: #005eae;
}

.sp {
    display: none;
}

.dn_max1500 {
    display: none;
}

.dn_max1100 {
    display: none;
}

.dn_max1024 {
    display: none;
}

.dn_max500 {
    display: none;
}


@media screen and (max-width: 1500px) {
    .dn_min1500 {
        display: none;
    }

    .dn_max1500 {
        display: block;
    }
}

@media screen and (max-width: 1100px) {
    .dn_min1100 {
        display: none;
    }

    .dn_max1100 {
        display: block;
    }
}

@media screen and (max-width: 1024px) {
    .dn_min1024 {
        display: none;
    }

    .dn_max1024 {
        display: block;
    }
}

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

    .sp {
        display: block;
    }
}

@media screen and (max-width: 500px) {
    .dn_min500 {
        display: none;
    }

    .dn_max500 {
        display: block;
    }
}

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

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 200;
    transition: 0.3s;
}

header h1 a img {
    width: 228px;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 33px 50px;
    background: transparent;
    transition: .3s;
}

header nav {
    display: flex;
    align-items: center;
    color: #fff;
}

header nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header nav ul li {
    margin-right: 38px;
}

header nav ul li:last-child {
    margin-right: 0;
}


header nav .header_search {
    margin-left: 50px;
}

header nav .header_search a {
    display: block;
    background: #fff;
    color: var(--sub);
    font-size: 1.5rem;
    font-weight: 500;
    padding: 9px 28px;
    border: solid 1px #fff;
}

header nav .header_search a:hover {
    background: transparent;
    color: #fff;
}

header nav .header_language {
    margin-left: 30px;
}

header nav .header_language a {
    display: inline-block;
    position: relative;
    margin-right: 4px;
    padding: 5px 7px 6px 8px;
    transition: color 0.3s ease;
}

header nav .header_language a:last-child {
    margin-right: 0;
    padding: 5px 6px 6px 7px;
}

header nav .header_language a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: border-color 0.3s ease, transform 0.3s ease;
    transform: scale(0.8);
}

header nav .header_language a.selected::before {
    border-color: #fff;
    transform: scale(1);
}

header nav .header_language a:hover::before {
    border-color: #fff; /* ホバー時に白い円を表示 */
    transform: scale(1); /* 正常サイズに拡大 */
}


/* 下層ページのヘッダーのスタイル */
header .lower_header nav {
    color: var(--basic);
}

header .lower_header nav .header_search a {
    display: block;
    background: linear-gradient(125deg, #015296, #005eae, #5fa3ff);
    color: #fff;
    border: none;
    transition: .3s;
}

header .lower_header nav .header_search a:hover {
    background: #fff;
    color: var(--sub);
    border: solid 1px;
    border-color: linear-gradient(125deg, #015296, #005eae, #5fa3ff);
}

header .lower_header nav .header_language a.selected::before {
    border-color: var(--basic);
}

header .lower_header nav .header_language a:hover::before {
    border-color: var(--basic);
    transform: scale(1);
}


/* スクロール時のスタイル */
.scrolled {
    background-color: #fff;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, .08);
}

.scrolled .header_inner {
    margin: 18px 30px;
}

.scrolled nav {
    color: var(--basic);
}

.scrolled h1 a img {
    content: url('../img/logo.svg');
}

.scrolled nav .header_search a {
    color: #fff;
    background: linear-gradient(125deg, #015296, #005eae, #5fa3ff);
}

.scrolled nav .header_search a:hover {
    background: #fff;
    color: var(--sub);
    border: solid 1px;
    border-color: linear-gradient(125deg, #015296, #005eae, #5fa3ff);
}

.scrolled nav .header_language a.selected::before {
    border-color: var(--basic)
}

.scrolled nav .header_language a:hover::before {
    border-color: var(--basic);
    transform: scale(1);
}

/* ドロップダウンメニューのスタイル */
header ul li.dropdown {
    position: relative;
}

header ul li .dropdown_menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translatex(-50%);
    background-color: #fff;
    color: var(--basic);
    min-width: 192px;
    border-radius: 3px;
    -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.08);
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    margin-top: 20px;
    padding: 20px 26px 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

header ul li .dropdown_menu a {
    display: block;
    padding: 10px 0;
    font-size: 1.5rem;
    color: var(--basic);
    border-bottom: solid 1px var(--gray);
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

header ul li .dropdown_menu a::after {
    bottom: 0;
}

header ul li .dropdown_menu a::before {
    content: "";
    background: url(../img/btn_arrow_bl.png) no-repeat;
    background-size: contain;
    position: absolute;
    width: 14px;
    height: 9px;
    left: unset;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
}

header ul li.dropdown:hover .dropdown_menu {
    opacity: 1;
    visibility: visible;
}

@media screen and (min-width: 1101px) {
    header nav ul li a {
        position: relative;
    }

    header nav ul li a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px; /* 下線の位置を調整 */
        width: 0;
        height: 1px; /* 下線の太さ */
        background-color: currentColor; /* テキストカラーと同じ色を使用 */
        transition: width 0.3s ease-in-out; /* 下線が伸びるアニメーション */
        cursor: pointer;
    }

    header nav ul li a:hover::after {
        width: 100%; /* 下線がリンク全体に表示される */
    }

    /* 下層ページのヘッダーのスタイル */
    header .lower_header nav ul li a.selected::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 1px;
        background-color: currentColor;
        transition: width 0.3s ease-in-out;
        cursor: pointer;
    }
}

@media screen and (max-width: 1100px) {
    .header_inner.dn_min1100 {
        display: none;
    }

    header .header_inner {
        margin: 20px 30px;
        transition: 0s;
    }

    .header.scrolled_sp .logo img {
        content: url('../img/logo.svg');
    }

    header .header_inner h1 {
        z-index: 1000;
    }

    header .navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 999;
        justify-content: center;
        align-items: center;
    }

    header .navigation__list {
        display: block;
        list-style: none;
        width: 100%;
        margin: 0;
        padding: 0 40px;
        text-align: center;
    }

    header .navigation__list-item {
        margin: 20px 0;
    }

    header .navigation__link {
        color: var(--basic);
        font-size: 24px;
        text-align: left;
    }

    header .hamburger-menu {
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10000;
        position: relative;
        background: #fff;
        border-radius: 50%;
        height: 70px;
        width: 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 10px rgba(0, 0, 0, .08);
    }

    header .lower_header .hamburger-menu {
        background: linear-gradient(125deg, #015296, #005eae, #5fa3ff);
    }

    header .hamburger-menu__bar {
        display: block;
        width: 28px;
        height: 2px;
        background: linear-gradient(125deg, #015296, #005eae, #5fa3ff);
        margin: 4px 0;
        transition: transform 0.3s ease;
    }

    header .lower_header .hamburger-menu__bar {
        background: #fff;
    }

    header .accordion-btn_area a {
        font-size: 1.8rem;
        font-weight: 600;
        text-align: center;
        border: solid 1px var(--sub);
        color: var(--sub);
        margin: 50px 40px 0;
        padding: 15px;
        background: #fff;
        background-size: 400% 100%;
        background-image: linear-gradient(125deg, #015296, #005eae, #5fa3ff, white 50%);
        background-position: 100% 0;
        transition: background-position 0.3s ease-in-out;
    }

    header .accordion-btn_area a:hover {
        color: #fff;
        background-position: 0% 0;
    }

    /* メニューが開いているときのスタイル */
    body.menu-open header .header_inner {
        margin: 0;
        padding: 20px 30px;
        background: #fff;
    }

    body.menu-open header .header_inner h1 {
        content: url(../img/logo.svg);
        width: 228px;
    }

    header .hamburger-menu.open02 {
        background: linear-gradient(125deg, #015296, #005eae, #5fa3ff);
    }

    header .hamburger-menu.open02 .hamburger-menu__bar {
        background: #fff;
    }

    header .hamburger-menu.open02 .hamburger-menu__bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    header .hamburger-menu.open02 .hamburger-menu__bar:nth-child(2) {
        transform: translateY(-9px) rotate(-45deg);
    }

    header .hamburger-menu.open02 .hamburger-menu__bar {
        margin: 7.7px 0;
    }

    header .navigation.open02 {
        display: block;
        padding: 0 0px 140px;
        margin: 110px 0;
    }

    .navigation.open02 {
        display: flex;
        overflow-y: auto;
    }

    body.menu-open {
        overflow: hidden;
    }

    header nav .header_language {
        margin-left: 0;
        margin-top: 20px;
        padding: 0 40px;
    }

    header nav .header_language a {
        color: var(--basic);
    }

    header nav .header_language a.selected::before {
        border-color: var(--basic);
    }


    /* アコーディオンメニュー */

    header .accordion-content {
        display: none;
        list-style: none;
        margin-top: 10px;
    }

    header .accordion-content li a {
        font-size: 1.8rem;
        color: #999eaf;
        padding: 0 0 20px;
    }

    header .accordion-toggle.open02 .plus-icon {
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }

    header .accordion-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        margin-left: 10px;
        padding-right: 30px;
        font-size: 1.8rem;
        position: relative;
        z-index: 1000;
    }

    header .accordion-toggle .plus-icon {
        display: inline-block;
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }

    header .accordion-toggle.open02 .plus-icon {
        transform: rotate(45deg);
    }

    header .navigation__list-item {
        position: relative;
        border-bottom: solid 1px var(--gray);
        margin: 0;
    }

    header .navigation__list-item a {
        font-size: 2rem;
        padding: 20px 0;
        margin: 0;
    }

    header .accordion-icon {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.8rem;
        cursor: pointer;
    }

    header .accordion-icon::before {
        content: '＋';
        color: var(--sub);
    }

    header .accordion-toggle.open02 .accordion-icon::before {
        content: 'ー';
    }
}

@media screen and (max-width: 768px) {
    header .header_inner {
        margin: 18px 20px;
    }

    header h1 a img {
        width: 140px;
    }

    header .hamburger-menu {
        height: 40px;
        width: 40px;
    }

    header .hamburger-menu__bar {
        width: 16px;
        height: 1px;
        margin: 2px 0;
    }

    header .header_inner:has(.open02) {
        margin: 0;
        padding: 18px 20px;
        background: #fff;
        transition: 0s;
    }

    header .header_inner:has(.open02) h1 {
        content: url(../img/logo.svg);
        width: 140px!important;
    }

    header .hamburger-menu.open02 .hamburger-menu__bar {
        margin: 8.5px 0;
    }

    header .navigation.open02 {
        margin: 70px 0 50px;
        padding: 20px 0 100px;
    }

    header .navigation__list-item a {
        font-size: 1.3rem;
        font-weight: 600;
        padding: 12px 0;
    }

    header .accordion-content {
        margin-top: 2px;
    }

    header .accordion-icon {
        font-size: 1.2rem;
    }

    header .accordion-content li a {
        font-size: 1.2rem;
        padding: 0 0 10px;
        font-weight: 600;
    }

    header .accordion-content li:last-child a {
        padding-bottom: 16px;
    }

    header .accordion-btn_area a {
        font-size: 1.4rem;
        border: solid 1px var(--sub);
        margin: 40px 40px 0;
        padding: 10px;
    }

    body.menu-open header .header_inner {
        padding: 18px 20px;
    }

    header .navigation__list {
        padding: 0 20px;
    }

    header .accordion-btn_area a {
        margin: 30px 20px 0;
    }

    header nav .header_language {
        margin-top: 15px;
        padding: 0 20px;
    }

    header nav .header_language a {
        font-size: 1.3rem;
        line-height: 1.62em;
        margin-right: 0;
    }
}


/* --------------------------------
下層のfv
----------------------------------- */

.lower_fv {
    margin: 0 auto;
    padding: 20rem 4vw 0;
    max-width: 1680px;
}

.lower_fv h1 {
    padding-bottom: 4rem;
    border-bottom: solid 2px var(--gray);
}

.lower_fv h1 .en_til {
    font-size: 8.5rem;
    font-family: "din-2014-narrow", sans-serif;
    font-weight: 600;
    line-height: normal;
    background: linear-gradient(125deg, #015296, #005eae, #5fa3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    height: fit-content;
}

.lower_fv h1 .jp_til {
    font-size: 2.2rem;
    font-weight: 500;
    display: block;
}

@media screen and (max-width: 1100px) {
    .lower_fv {
        padding: 13rem 4vw 0;
    }
}

@media screen and (max-width: 768px) {
    .lower_fv {
        padding: 10rem 0 0;
        width: 90%;
    }

    .lower_fv h1 {
        padding-bottom: 3rem;
    }

    .lower_fv h1 .en_til {
        font-size: 4.6rem;
    }

    .lower_fv h1 .jp_til {
        font-size: 1.6rem;
    }
}


/* --------------------------------
inner
----------------------------------- */

.inner {
    margin: 0 auto;
    padding: 0 4vw;
    max-width: 1680px;
}

@media screen and (max-width: 768px) {
    .inner {
        margin: 0 auto;
        padding: 0;
        width: 90%;
    }
}

/* --------------------------------
title
----------------------------------- */

.til_wrapper h2 {
    font-size: 6rem;
    font-family: "din-2014-narrow", sans-serif;
    font-weight: 600;
    line-height: 4.5rem;
    background: linear-gradient(125deg, #015296, #005eae, #5fa3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    height: fit-content;
    white-space: nowrap;
}

.til_wrapper p {
    font-size: 1.8rem;
    margin-top: 18px;
}

@media only screen and (max-width:768px) {
    .til_wrapper h2 {
        font-size: 4rem;
        width: fit-content;
    }

    .til_wrapper p {
        font-size: 1.4rem;
        margin-top: 4px;
    }
}

/* --------------------------------
btn
----------------------------------- */

a.btn {
    position: relative;
    font-family: "din-2014-narrow", sans-serif;
    font-weight: 500;
    width: 100px;
    padding: 0 0 3px 30px;
    border-bottom: solid 1px var(--gray);
    text-align: right;
}

a.btn::before {
    content: "";
    position: absolute;
    background: url("../img/btn_arrow.png") no-repeat;
    background-size: contain;
    width: 16px;
    height: 12px;
    top: 20%;
    left: 0;
}

a.btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0; /* 下線の位置を調整 */
    width: 0;
    height: 1px; /* 下線の太さ */
    background-color: var(--basic);
    transition: width 0.3s ease-in-out; /* 下線が伸びるアニメーション */
    cursor: pointer;
}

a.btn:hover::after {
    width: 100%; /* 下線がリンク全体に表示される */
}

a.btn:hover {
    color: var(--sub);
}

a.btn_sq {
    display: block;
    font-family: "din-2014-narrow", sans-serif;
    font-weight: 500;
    text-align: center;
    border: solid 1px var(--basic);
    padding: 22px;
    width: 260px;
}

@media screen and (max-width: 768px) {
    a.btn_sq {
        font-size: 1.6rem;
        padding: 13px;
    }
}

/* --------------------------------
line
----------------------------------- */

.line {
    position: relative;
    border: solid 1px var(--gray);
}

.line::after {
    content: '';
    position: absolute;
    left: -0.1rem;
    bottom: -0.1rem;
    width: 7.4rem;
    height: 0.2rem;
    background-color: var(--sub);
}

@media screen and (max-width: 768px) {
    .line::after {
        width: 4rem;
    }
}


/* --------------------------------
footer
----------------------------------- */

footer {
    font-size: 14px;
    border-top: solid 1px var(--gray);
    width: 90%;
    margin: 100px auto 0;
}

footer .footer-content {
    display: flex;
    max-width: 1260px;
    width: 100%;
    justify-content: space-between;
    margin: 0 auto 20px;
    padding: 80px;
}

footer .footer_wrapper {
    border-right: solid 1px var(--gray);
}

footer .footer_con {
    display: flex;
}

footer .footer_con.dn_max1024 {
    display: none;
}

footer .footer_con > div {
    margin-right: 116px;
}

footer .footer_con > div:last-child {
    margin-right: 86px;
}

footer .copyright {
    font-size: 8px;
    font-weight: 400;
    line-height: 1.8rem;
    margin-top: 50px;
}

footer .service-columns {
    display: flex;
    justify-content: space-between;
}

footer .service-columns ul {
    margin-right: 50px;
}

footer .service-columns ul:last-child {
    margin-right: 0;
}

footer a {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 5px;
}

footer ul li a {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

footer .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 30px;
}

footer .logo > img {
    margin-bottom: 20px;
    width: 261px;
}

footer .logo a {
    font-size: 1.2rem;
    color: #999eaf;
    margin-bottom: 8px;
}

footer .logo a:hover {
    opacity: 0.7;
}

footer .logo ul li:last-child a {
    margin-bottom: 26px;
}

footer .footer_asia img {
    width: 103px;
}

@media only screen and (min-width:1024px) {
    footer .footer_con a {
        position: relative;
    }

    footer .footer_con a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px; /* 下線の位置を調整 */
        width: 0;
        height: 1px; /* 下線の太さ */
        background-color: currentColor; /* テキストカラーと同じ色を使用 */
        transition: width 0.3s ease-in-out; /* 下線が伸びるアニメーション */
        cursor: pointer;
    }

    footer .footer_con a:hover::after {
        width: 100%; /* 下線がリンク全体に表示される */
    }
}

@media only screen and (max-width:1500px) {
    footer .footer-content {
        padding: 60px 20px;
    }

    footer .footer_wrapper {
        width: 68%;
    }

    footer .footer_con > div {
        margin-right: 70px;
    }

    footer .footer_con > div:last-child {
        margin-right: 30px;
    }
}

@media only screen and (max-width: 1024px) {
    footer {
        width: 100%;
        border: none;
    }

    footer .inner {
        padding: 0 4vw;
    }

    footer .footer-content {
        flex-direction: column;
        padding: 0;
    }

    footer .footer_wrapper {
        width: 100%;
        border-right: none;
    }

    footer .footer_con.dn_min1024 {
        display: none;
    }

    footer .footer_con.dn_max1024 {
        display: block;
    }

    footer .footer_con > div {
        margin-right: 0;
        border-bottom: solid 1px var(--gray);
    }

    footer .footer_con > div:first-child {
        border-top: solid 1px var(--gray);
    }

    footer .footer_con > div:last-child {
        margin-right: 0;
    }

    footer .info a {
        margin-bottom: 0;
        padding: 24px 0;
        border-bottom: solid 1px var(--gray);
    }

    footer .info a:hover {
        opacity: 0.7;
    }

    footer .info a:last-child {
        border-bottom: none;
    }

    footer .accordion-content {
        display: none;
        flex-direction: column;
    }

    footer .accordion-header > a {
        cursor: pointer;
        display: block;
        position: relative;
        margin: 0;
        padding: 24px 0;
    }

    footer .accordion-header > a::after {
        content: '＋';
        position: absolute;
        right: 0;
        font-size: 1.4rem;
        color: var(--sub);
    }

    footer .accordion-header.open > a::after {
        content: '－';
    }

    footer .accordion-header.open .accordion-content {
        margin-left: 0;
    }

    footer .logo {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        margin-left: 0;
        position: relative;
        margin-top: 40px;
    }

    footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
        margin-left: 70px;
        display: flex;
        flex-wrap: wrap;
    }

    footer ul li {
        margin-bottom: 5px;
        margin-right: 11px;
    }

    footer ul li a {
        color: #999eaf;
        margin-bottom: 10px;
    }

    footer ul li a:hover {
        opacity: 0.7;
    }

    footer ul li:last-child a {
        margin-bottom: 19px;
    }

    footer .logo a {
        margin: 0;
    }

    footer .logo > img {
        margin-bottom: 20px;
        width: 20%;
        flex-shrink: 0;
    }

    footer .service-columns ul {
        display: block;
        margin: 0;
    }

    footer .company-info ul {
        margin: 0;
    }

    footer .footer_asia {
        position: absolute;
        top: 70px;
    }

    footer .footer_asia img {
        width: 103px;
    }

    footer .copyright {
        line-height: 1.4rem;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 768px) {
    footer {
        margin-top: 80px;
    }

    footer .inner {
        padding: 0;
    }

    footer a {
        font-size: 1.3rem;
    }

    footer ul {
        display: block;
    }

    footer .accordion-header > a {
        padding: 16px 0;
    }

    footer .logo {
        justify-content: space-between;
    }

    footer .logo a {
        font-size: 1rem;
        line-height: 1.8rem;
        margin-bottom: 11px;
    }

    footer .logo > img {
        width: 180px;
    }

    footer .info a {
        padding: 16px 0;
    }
}

@media only screen and (max-width: 500px) {
    footer ul {
        margin-left: 24px;
    }

    footer .logo > img {
        width: 140px;
    }
}


