/*
Theme Name: JAL宇宙事業
*/

/* =============================================
Reset
============================================= */
* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    cursor: default;
}
html[lang^="en"] * {
    letter-spacing: 0!important;
}
p {
    margin: 0!important;
    padding: 0!important;
    color: var(--text-black);
}
ul {
    margin: 0!important;
    padding: 0!important;
    list-style: none;
}
a {
    text-decoration: none!important;
    transition: all ease .2s;
}
a:hover,
a:hover *,
a:hover *:hover {
    cursor: pointer;
}
a:hover {
    opacity: 80%;
}
ul li a {
    text-decoration: none;
    transition: all ease .2s;
    display: block;
}
ul li a img:hover {
    cursor: pointer;
}
img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}


/* =============================================
Colors
============================================= */
:root {
    --title-black: #071833;
    --text-black: #36445A;
    --text-gray: rgba(7,24,51,.5);
    --blue: #2E5FE6;
    --light-blue: rgba(46,95,230,.08);
    --white: #fff;
    --white70: rgba(255,255,255,.7);
    --white50: rgba(255,255,255,.5);
    --light-gray: rgba(7,24,51,.1);
    --active: 100%;
    --inactive: 70%;
    --round: 100px;
}

body {
    background:
    linear-gradient(
        180deg,
        rgba(46, 95, 230, 0) 10%,
        rgba(46, 95, 230, 0.5) 20%
    ),
    linear-gradient(
        180deg,
        #5390FD 10%,
        rgba(83, 144, 253, 0) 70%
    ),
    url("./assets/images/content_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
body:not(.home):not(.front-page) {
	background: var(--white);
}


/* =============================================
Dropshadow
============================================= */
:root {
    --dropshadow-header: drop-shadow(5px 5px 18px rgba(7, 24, 51, 0.10));
    --dropshadow-cards: drop-shadow(5px 0 18px rgba(7, 24, 51, 0.12))
                        drop-shadow(0 5px 18px rgba(7, 24, 51, 0.12));
}


/* =============================================
Fonts
============================================= */
html {
    font-size: 62.5%;
}
* {
    font-family: "Montserrat", "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    overflow-wrap: break-word;
}
p {
    font-size: 1.4rem;
    font-weight: 500;
    transform: rotate(0.03deg);
}
@media screen and (max-width: 200px) {
    * {
        word-break: break-all;
    }
}


/* =============================================
Loader
============================================= */
html[data-loader-shown="1"] #loader {
    display: none !important;
}

/* ロード画面全体 */
#loader {
    position: fixed;
    inset: 0;
    background: var(--blue);
    z-index: 2147483647;
    opacity: 1;
    transition: opacity 0.6s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
body.is-loading {
    overflow: hidden;
} 

#loader.is-done {
    opacity: 0;
    pointer-events: none;
}

.loader-circle {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

.loader-circle img {
    width: 60%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-top: 1px solid var(--white);
    border-radius: 50%;
    box-sizing: border-box;
    animation: loader-rotate 1s linear infinite;
}

@keyframes loader-rotate {
    to {
        transform: rotate(360deg);
    }
}



/* =============================================
Hedear & Gnav
============================================= */
header {
    position: fixed;
    width: 100%;
    top: 24px;
    left: 0;
    z-index: 20000;
    opacity: 0;
    transform: translateY(-8px);
	pointer-events: none;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
header.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.header-content {
    width: 100%;
    padding: 14px 36px;
    border-radius: var(--round);
    background-color: var(--white);
    border: solid 1px var(--light-gray);
    filter: var(--dropshadow-header);
    display: flex;
    justify-content: space-between!important;
    align-items: center;
}
ul.gnav-list {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 20px;
}
ul.gnav-list li a {
    color: var(--text-black);
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 500;
}
.jal-logo {
    width: auto;
    max-height: 45px;
}
.project-logo {
    width: auto;
    max-height: 45px;
}
@media screen and (max-width: 576px) {
    ul.gnav-list {
        gap: 10px;
    }
    .jal-logo {
        max-height: 32px;
    }
    .project-logo {
        max-height: 32px;
    }
    .header-content {
        padding: 12px 24px;
    }
}

.hamburger {
    width: 24px!important;
    height: 8px!important;
    padding: 0;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hamburger-line {
    width: 100%;
    height: 1px;
    background-color: var(--text-black);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.is-open .hamburger-line:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}
.hamburger.is-open .hamburger-line:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
}
.hamburger:hover,
.hamburger:hover *,
.hamburger:hover *:hover {
    cursor: pointer;
}

.gnav-wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.25s ease,
        opacity 0.25s ease;
}
.gnav-wrapper .gnav-button {
    margin: 8px 0;
}

.gnav-wrapper.is-open {
    max-height: 100%;
    opacity: 1;
}

.gnav-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px!important;
    filter: var(--dropshadow-header);
}
.gnav-wrapper ul.gnav-list {
    width: 50%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    gap: 0;
    padding: 24px!important;
}
.gnav-wrapper ul.gnav-list li {
    width: 100%;
}
.gnav-wrapper ul.gnav-list li:last-of-type {
    display: flex;
    justify-content: center;
}
.gnav-wrapper ul.gnav-list li a {
    padding: 12px 0;
    text-align: center;
}
.gnav-wrapper ul.gnav-list li:last-of-type span {
    padding-top: 12px;
    padding-bottom: 12px;
}
@media screen and (max-width: 576px) {
    .gnav-wrapper ul.gnav-list {
        width: 100%;
    }
}

.header-lg {
    display: block;
}
.header-sm {
    display: none;
}
@media screen and (max-width: 992px) {
    .header-lg {
        display: none;
    }
.header-sm {
        display: block;
    }
}


/* =============================================
Button
============================================= */
.button {
    padding: 0;
    display: block;
    font-size: 1.4rem;
}
.gnav-button {
    padding: 10px 24px;
    border-radius: var(--round);
}

.square {
    padding: 12px 30px;
    border-radius: 4px;
}

.ol.blue {
    border: solid 1px var(--blue);
    color: var(--blue);
    text-align: center;
    width: 100%;
    max-width: 240px;
}

.solid.blue {
    background-color: var(--blue);
    color: var(--white);
}
@media screen and (max-width: 992px) {
    .ol.blue {
        max-width: 100%;
    }
}

/* Modal Button */
.detailbtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    width: 100%;
    height: 100%;
    max-width: 88px;
    min-height: 88px;
    max-height: 88px;
    border: solid 1px #fff;
    border-radius: 100px;
    position: relative;
    margin-top: 20px;
    background: none;
}
.detailbtn span {
    font-size: 14px!important;
}
.detailbtn::before {
    content: "";
    width: 24px;
    height: 24px;
    border: solid 1px #fff;
    border-radius: 100px;
    position: absolute;
    top: 0;
    right: 0;
}
.detailbtn::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 100px;
    position: absolute;
    top: 8px;
    right: 8px;
}
.detailbtn:hover 
.detailbtn:hover *,
.detailbtn *:hover {
    cursor: pointer;
}


/* =============================================
Language Switch Button
============================================= */
.lang-switch {
    display: flex;
    margin-left: 12px;
}
.lang-switch a {
    color: var(--text-black);
    font-weight: 500;
    font-size: 1.2rem;
    opacity: var(--inactive);
}
.lang-switch a.is-active {
    opacity: var(--active);
}
.lang-switch a:first-of-type {
    position: relative;
    padding-right: 6px!important;
    margin-right: 6px!important;
}
.lang-switch a:first-of-type::after {
    content: "";
    width: 1px;
    height: 80%;
    background: var(--text-black);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    opacity: var(--active);
}
@media screen and (max-width: 992px) {
    .lang-switch a:first-of-type::after {
        height: 40%;
    }
}
@media screen and (max-width: 576px) {
    .lang-switch a:first-of-type {
        position: relative;
        padding-right: 12px!important;
        margin-right: 12px!important;
    }
}

/* =============================================
KV
============================================= */
#kv {
    width: 100%;
    height: 100svh;
    position: relative;
}
.kv-copies {
    position: absolute;
    width: 100vw;
    height: 100svh;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(rgba(83, 144, 253, 0.00) 75%, #5390FD 98%);
}
.catchcopy-top {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 33svh;
    align-self: flex-start;
}
.catchcopy-middle {
    width: auto;
    width: auto;
    max-width: 100%;
    max-height: 4svh;
    align-self: center;
}
.catchcopy-bottom {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 33svh;
    align-self: flex-end;
}
.kv-video-wrapper {
    width: 100%;
    height: 100svh;
}
.kv-video-wrapper:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(141, 181, 255, .1);
    mix-blend-mode: multiply;
}
.kv-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 99.9%;
    object-fit: cover;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.catchcopy-top.desktop,
.catchcopy-bottom.desktop {
    display: block;
}
.catchcopy-top.sp,
.catchcopy-bottom.sp {
    display: none;
}
@media screen and (max-width: 576px) {
    .catchcopy-top.desktop,
    .catchcopy-bottom.desktop {
        display: none;
    }
    .catchcopy-top.sp,
    .catchcopy-bottom.sp {
        display: block;
    }
}

@media screen and (max-height: 600px) {
    .catchcopy-middle {
        min-height: 6svh;
        max-height: 6svh;
    }
}
@media screen and (max-height: 300px) {
    .catchcopy-middle {
        min-height: 10svh;
        max-height: 10svh;
    }
}


/* =============================================
BG Blue
============================================= */
#aboutus,
#aboutus p,
#vision,
#vision p {
    color: #fff;
}

#aboutus .content-wrapper,
#vision .content-wrapper {
    margin-top: 48px;
}

#aboutus .content-title-wrapper h2,
#vision .content-title-wrapper h2  {
    font-size: 6.4rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--white);
}
#aboutus .content-title-wrapper p,
#vision .content-title-wrapper p {
    font-size: 1.4rem;
    color: var(--white);
}

#vision {
    margin-top: 64px;
}

@media screen and (max-width: 576px) {
    #aboutus .content-wrapper,
    #vision .content-wrapper {
        margin-top: 36px;
    }
    #aboutus .content-title-wrapper h2,
    #vision .content-title-wrapper h2 {
        font-size: 3.6rem;
    }
}

/* =============================================
BG White
============================================= */
.content-title-wrapper h2 {
    font-size: 6.4rem;
    /*letter-spacing:*/
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--blue);
}
.content-title-wrapper p {
    font-size: 1.4rem;
    color: var(--blue);
}

.content-wrapper {
    margin-top: 72px;
}

h3.content-headline {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .06em;
    margin: 0!important;
}
.content-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.badge-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.badge-list li a {
    padding: 8px 20px;
    background-color: var(--light-blue);
    color: var(--blue);
    border-radius: var(--round);
    font-size: 1.4rem;
}

@media screen and (max-width: 576px) {
    .content-title-wrapper h2 {
        font-size: 3.6rem;
    }
    .content-wrapper {
        margin-top: 36px;
    }
    h3.content-headline {
        font-size: 2.4rem;
    }
    .badge-list li a {
        font-size: 1.2rem;
    }
}

/* =============================================
Cards
============================================= */
.card-wrapper {
    background: var(--white);
    border-radius: 16px;
    filter: var(--dropshadow-cards);
    padding: 64px 64px 72px!important;
}
@media screen and (max-width: 576px) {
    .card-wrapper {
        padding: 36px 24px 48px!important;
    }
}


/* =============================================
Gradient
============================================= */
.gradient {
    width: 100%;
    height: 150px;
    background: linear-gradient(#5390FD, rgba(83,144,253, 0));
}

/* =============================================
About Us
============================================= */
/* Text Area */
#aboutus h3.content-headline {
    font-weight: 700;
}
#aboutus h3.content-headline ruby {
    font-weight: 700;
    ruby-align: center;
}
#aboutus h3.content-headline ruby rt {
    font-size: 1rem;
    font-weight: 800;
}

/* Image Area */
#aboutus .row {
    align-items: flex-start;
}
.content-image {
    display: flex;
    flex-direction: column;
}
.content-image img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 16px;
}
img.aboutus-image {
    border-radius: 16px;
    width: 70%;
    align-self: flex-end;
}

@media screen and (max-width: 992px) {
    #aboutus .content-image {
        flex-direction: column-reverse;
    }
    #aboutus .content-image .detailbtn {
        margin-top: 34px;
    }
    img.aboutus-image {
        align-self: center;
    }
}


/* =============================================
Vision
============================================= */
#vision {
    color: #fff;
}
#vision.container {
    overflow: visible;
}
.vision-image {
    padding-right: 0!important;
    margin-right: calc(50% - 50vw)!important;
}
.vision-image img {
    filter: drop-shadow(5px 0 24px rgba(7, 24, 51, 0.15))
            drop-shadow(0 6px 24px rgba(7, 24, 51, 0.15));
}

@media screen and (max-width: 992px) {
    .vision-image {
        margin-top: 48px;
    }
}


/* =============================================
Projects
============================================= */
#projects {
    margin-top: 120px;
}
.diagonal-bg {
    position: relative;
    padding: 240px 0;
}
.diagonal-bg::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    transform: skewY(-30deg);
    z-index: -1;
    padding: 120px 0;
}
@media screen and (max-width: 992px) {
    #projects .row {
        flex-direction: column-reverse;
        gap: 36px;
    }
    .diagonal-bg {
        padding: 120px 0;
    }
}
@media screen and (max-width: 576px) {
    .diagonal-bg {
        padding: 36px 0 100px;
    }
}

/* =============================================
Modal
============================================= */

.modal__wrapper {
	position: fixed;
	inset: 0;
	z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.modal__wrapper.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.modal__bg {
	position: absolute;
	inset: 0;
	background: rgba(7,24,51,.7);
    z-index: 0;
}

.modal__panel {
	position: relative;
	background: var(--white);
	border-radius: 16px;
	opacity: 0;
	transform: translateY(8px);
	transition: transform 0.25s ease, opacity 0.25s ease;
    margin: auto 0;
    z-index: 1;
    filter: var(--dropshadow-cards);
    padding: 64px 48px;
    max-height: calc(100svh - 48px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.modal__panel .content-headline {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 28px!important;
    position: relative;
    padding-left: 24px;
}
.modal__panel .content-headline::before {
    content :"";
    background: var(--blue);
    width: 4px;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
}

.modal__close-line {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 1px;
	background: var(--text-black);
	transform-origin: center;
}

.modal__close-line:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close-line:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__close:focus,
.modal__close:focus-visible {
	outline: none;
}

.modal__wrapper.is-open .modal__panel {
	opacity: 1;
	transform: translateY(0);
}

body.is-modal-open {
	overflow: hidden;
}

#modal-aboutus .container,
#modal-vision .container {
    display: flex;
    justify-content: center;
}

.modal__body {
    border-top: solid 1px var(--light-gray);
    padding-top: 28px;
}
.modal__body p:not(:last-of-type) {
    margin-bottom: 1.4rem!important;
}

#modal-aboutus .modal__body{
    background-size: auto 80%;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(255,255,255,.7);
    background-blend-mode: lighten;
}

#modal-vision img{
    width: 100%;
    margin-bottom: 24px;
    border-radius: 12px;
}

@media screen and (max-width: 576px) {
    .modal__panel {
        padding: 48px 24px;
    }
    .modal__close {
        top: 10px;
        right: 10px;
    }
    #modal-aboutus .modal__body{
        background-size: auto 70%;
        background-repeat: no-repeat;
        background-position: center center;
    }
}




/* =============================================
News
============================================= */
#news {
    margin-bottom: 60px;
}
#news .card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
ul.content-list li {
    border-bottom: solid 1px var(--light-gray);
}
ul.content-list li:last-of-type {
    margin-bottom: 36px;
}
ul.content-list li a {
    padding: 16px 0;
}
.news-date {
    color: var(--text-gray);
    margin-bottom: 4px!important;
}
.news-title {
    color: var(--text-black);
}
#news .button {
    align-self: flex-end;
}
@media screen and (max-width: 576px) {
    #news {
        margin-bottom: 36px;
    }
}

/* =============================================
Parnters
============================================= */
#partners .card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}
#partners .content-title-wrapper {
    text-align: center;
}
#partners .content-wrapper {
    margin-top: 28px;
}
.partners-list {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
}
.partners-list:not(:last-of-type) {
    margin-bottom: 16px;
}
.partners-content a {
    display: inline-block;
}
.partners-content a:hover {
    opacity: 100%;
}
img.partners-logo {
    width: 100%;
    height: 100%;
    max-height: 64px;
    object-fit: contain;
}
@media screen and (max-width: 576px) {
    #partners .card-wrapper {
        margin-bottom: 36px;
    }
    .partners-list:not(:last-of-type) {
        margin-bottom: 0;
    }
    img.partners-logo {
        max-height: 48px;
        margin: 6px 0;
    }
}


/* =============================================
Contact
============================================= */
#contact .card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#contact .card-wrapper:not(:last-of-type) {
    margin-bottom: 60px;
}
#contact .content-title-wrapper {
    text-align: center;
}
#contact .content-wrapper {
    margin-top: 48px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* =============================================
Footer
============================================= */
footer {
    border-top: solid 1px var(--white70);
    padding-top: 48px;
    margin-top: 120px;
}
body:not(.home) footer {
    background: var(--blue);
}
.phrase-jp {
    color: var(--white);
    font-size: 4.8rem;
    font-weight: 900;
}
.phrase-en {
    color: var(--white);
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6px!important;
}
html[lang^="en"] .phrase-jp {
    display: none;
}

.phrase-quote {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-container-top .footer-content-wrapper:nth-of-type(2) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
}

.footer-logo-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-logo-list a:first-of-type {
    position: relative;
    padding-right: 20px;
    margin-right: 12px;
}
.footer-logo-list a:first-of-type::after {
    content: "";
    width: 1px;
    height: 60%;
    background: var(--white);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
}
.footer-logo-list a img {
    width: auto;
    height: 100%;
    max-height: 56px;
}

.footer-link-list ul {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.footer-link-list ul:first-of-type {
    margin-bottom: 8px!important;
}
.footer-link-list ul li a {
    color: var(--white);
    font-size: 1.4rem;
}

.footer-container-bottom .footer-content-wrapper {
    border-top: solid 1px var(--white50);
    padding: 20px 0;
    margin-top: 48px;
}
.footer-container-bottom .footer-content-wrapper p {
    text-align: center;
}
.copyright {
    font-size: 1.2rem;
    color: var(--white70);
}
@media screen and (max-width: 1200px) {
    .footer-container-top .footer-content-wrapper:nth-of-type(2) {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 48px;
    }
    .footer-link-list ul {
        justify-content: flex-start;
    }
}
@media screen and (max-width: 992px) {
    .phrase-jp {
        font-size: 3.6rem;
    }
    .phrase-en {
        font-size: 2.4rem;
    }
    .phrase-quote {
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 576px){
    footer {
        padding-top: 36px;
        margin-top: 100px;
    }
    body:not(.home) footer {
        margin-top: 0;
        padding-bottom: var(--sidemenu-height, 0px);
    }
    .phrase-jp {
        font-size: 2.4rem;
    }
    .phrase-en {
        font-size: 2.0rem;
    }
    .phrase-quote {
        font-size: 1.4rem;
    }
    .footer-link-list {
        display: none;
    }
    .footer-logo-list a img {
        max-height: 36px;
    }
    .footer-container-top .footer-content-wrapper:nth-of-type(2) {
        gap: 24px;
        margin-top: 28px;
    }
    .footer-container-bottom .footer-content-wrapper {
        padding: 8px 0;
        margin-top: 36px;
    }
}
@media screen and (max-width: 340px) {
    .footer-logo-list a img {
        max-height: 24px;
    }
    .copyright {
        font-size: 0.8rem;
    }
}

/* =============================================
SP Gutter
============================================= */
@media (max-width: 576px) {
    .container > .row {
        margin-left: 0;
        margin-right: 0;
    }

    .container > .row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }
}