<br />
<b>Deprecated</b>:  The each() function is deprecated. This message will be suppressed on further calls in <b>/home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php</b> on line <b>456</b><br />
/*******************************
 common
********************************/
* {
    font-family: 'Noto Sans JP', sans-serif;
}

html {
    font-size: 10px;
    color: #000421;
    height: 100%;
}


body {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

div>img,
span>img,
a>img {
    display: block;
    width: 100%;
    height: auto;
}

input {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/****************** language ***************/
.en .--enNone {
    display: none !important;
}

.ja .--jaNone {
    display: none !important;
}

/* .en .--enBold {
    font-weight: bold !important;
}
.ja .--jaBold {
    font-weight: bold !important;
} */

/* .en .--enPointerNone {
    cursor: auto !important;
}
.ja .--enPointerNone {
    cursor: pointer !important;
    pointer-events: auto !important;
}

.ja .--jaPointerNone {
    cursor: auto !important;
}
.en .--jaPointerNone {
    cursor: pointer !important;
    pointer-events: auto !important;
} */

/****************** minusIndent ***************/
.minusIndent {
    padding-left: 1em;
    text-indent: -1em;
}

.minusIndent.--large {
    padding-left: 1.4em;
    text-indent: -1.4em;
}

/****************** flashOut ***************/
.flashOut {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 996;
}

/****************** snapScroll ***************/
.snapScroll {
    scroll-snap-type: y mandatory;
}

.snapScroll-item {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.snapScroll-item:last-child {
    scroll-snap-stop: always;
}

/****************** mapPin ***************/
.mapPin {
    display: block;
    position: relative;
    width: 40px;
}

.mapPin-clickableArea {
    cursor: pointer;
    pointer-events: fill;
}

/****************** font ***************/
.textNumber {
    font-family: 'Oswald', sans-serif;
}

.titleText {
    font-family: 'Alata', sans-serif;
}

/****************** textIcon ***************/
.textIcon {
    display: inline-block;
    width: 12px;
    height: auto;
}

.textIcon.--small {
    width: 10px;
}

/****************** modal ***************/
.modal {
    position: fixed;
    z-index: 998;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 19px 20px;
    background-color: rgba(0, 0, 0, 0.8);
}

.l .modal {
    padding: 80px 20px 80px;
}

.modal-card {
    position: relative;
    width: 100%;
    max-width: 638px;
    height: 100%;

    padding: 40px 0 24px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 1);
}

.l .modal-card {
    max-width: 880px;
    border-radius: 16px;
    padding-top: 40px;
}

.modal-card.--transparent {
    background-color: transparent;
}

.modal-scrollArea {
    overflow: auto;
    width: 100%;
    height: 100%;
    padding: 0 16px;
    border-radius: 10px;
}

.l .modal-scrollArea {
    overflow: auto;
    width: 100%;
    height: 100%;
    padding: 0 40px 0;
    border-radius: 20px;
}

.modal-scrollArea.--borderRadiusNone {
    border-radius: 0;
}

.modal-closeButton {
    position: absolute;
    top: 15px;
    right: 14px;
    width: 22px;
    height: 22px;
    z-index: 1;
    cursor: pointer;
}

.l .modal-closeButton {
    top: 20px;
    right: 21px;
    width: 18px;
    height: 18px;
}

.modal-closeButton.--top {
    width: 16px;
    top: 34px;
    right: 34px;
}

.l .modal-closeButton.--top {
    width: 20px;
    top: 44px;
    right: 44px;
}

/****************** loading ***************/
.loading {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* background-color: rgba(255, 255, 255, 1); */
    z-index: 999;
}

.loading-wrapper {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-circle {
    width: 50px;
    height: 50px;
    /* border-top: 4px solid #545454; */
    border-top: 4px solid #fff;
    /* border-bottom: 4px solid #545454; */
    border-bottom: 4px solid #fff;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-radius: 50%;

    transform-origin: center center;
}

.loading-circle.--loading {
    animation: loading 0.5s linear infinite;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    text-align: center;
    font-size: 1.4rem;
    color: #fff;
    /* color: #000; */
    font-weight: bold;
    margin-top: 10px;
}

/****************** keyword ***************/
.keyword {
    display: inline-block;
    color: #545454;
    font-weight: 500;
    background-color: #f1f1f1;

    height: auto;
    line-height: 36px;
    padding: 0 10px;
    border-radius: 4px;
    word-break: break-all;
}

.l .keyword {
    padding: 0 11px;
    line-height: 37px;
}

.keyword.--white {
    background-color: #fff;
}

/****************** SDGsCard ***************/
.SDGsCard {
    width: 68px;
    height: 68px;
}

.l .SDGsCard {
    width: 90px;
    height: 90px;
}

.SDGsCard.--large {
    width: 73px;
    height: 74px;
}

.l .SDGsCard.--large {
    width: 90px;
    height: 90px;
}

/****************** article ***************/
.article {
    width: 100%;
    max-width: 385px;
    z-index: 0;
}

.l .article {}

/* 記事更新日付まで */
.article-thumbnail {
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 140px;
    overflow: hidden;
}

.l .article-thumbnail {
    height: 180px;
    border-radius: 12px;
}

.article-thumbnail>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.article-thumbnail.--square {
    border: none;
    border-radius: 0;
    height: 195px;
}

.l .article-thumbnail.--square {
    border-radius: 0;
    height: 350px;
}

.l .article-thumbnail.--square img {
    width: auto;
    height: 100%;
    margin: 0 auto;
}

.l .article-thumbnail.--square:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.article-thumbnailLabel {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 6px;
    width: auto;
    min-width: fit-content;
    height: 30px;
    z-index: 1;

    padding: 0 11px 0 7px;
    background-color: #00aed9;
}

.l .article-thumbnailLabel {
    column-gap: 12px;
    width: auto;
    height: 37px;
    padding: 0 12px;
}

.article-thumbnailLabelIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;

}

.l .article-thumbnailLabelIcon {
    width: 25px;
    min-width: 25px;
    height: 25px;
    border-radius: 8px;
}

.article-thumbnailLabelIcon img {
    display: block;
}

.l .article-thumbnailLabelIcon img {}

.article-thumbnailLabelText {
    font-size: 1.2rem;
    color: #fff;
}

.l .article-thumbnailLabelText {
    font-size: 1.4rem;
}


.article-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;

    column-gap: 7px;
    row-gap: 4px;
    font-size: 1rem;
    font-weight: 500;
}

.l .article-tags {
    margin-top: 16px;
    column-gap: 8px;
    row-gap: 8px;
    font-size: 1.2rem;
}

.article-tags>* {}

.article-category {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 6px;

    height: 25px;
    padding: 0 11px 0 2px;
    background-color: #00aed9;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 3px;
}

.l .article-category {
    column-gap: 8px;
    height: 32px;
    padding: 0 8px 0 3px;
    font-size: 1.4rem;
}

.article-categoryIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;
}

.l .article-categoryIcon {
    width: 24px;
    min-width: 24px;
    height: 24px;
}

.article-SDGsGoal {
    padding: 0 4px;

    height: 20px;

    border-radius: 3px;
    background-color: #1c983b;
}

.l .article-SDGsGoal {
    height: 24px;
    padding: 0 8px;
    border-radius: 4px;
}

.article-SDGsGoal.--large {
    height: 25px;
}

.l .article-SDGsGoal.--large {
    height: 32px;
}


.article-SDGsGoalNumber {
    display: inline-block;

    text-align: center;
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    margin-right: 2px;

    border-radius: 50%;
    background-color: #fff;

    color: #1c983b;
}

.l .article-SDGsGoalNumber {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    margin-right: 4px;
}

.article-SDGsGoalText {
    display: inline-block;
    width: auto;
    line-height: 20px;
    color: #fff;
}

.l .article-SDGsGoalText {
    font-size: 1.2rem;
    line-height: 24px;
}

.article-SDGsGoalText.--large {
    line-height: 25px;
}

.l .article-SDGsGoalText.--large {
    line-height: 32px;
}


.article-keyword {
    padding: 0 6px;
    /* height: 20px; */
    line-height: 20px;
    border-radius: 3px;
}

.l .article-keyword {
    padding: 0 8px;
    /* height: 24px; */
    line-height: 24px;
    border-radius: 6px;
}

.article-keyword.--large {
    /* height: 25px; */
    line-height: 25px;
}

.l .article-keyword.--large {
    /* height: 32px; */
    line-height: 32px;
}

.article-title {
    margin-top: 10px;
    /* color: #000421; */
    font-size: 1.4rem;
    font-weight: 500;
}

.l .article-title {
    margin-top: 12px;
}

.article-title.--large {
    font-size: 2.0rem;
}

.l .article-title.--large {
    font-size: 2.4rem;
}

.article-date {
    margin-top: 6px;
    color: #545454;
    font-size: 1rem;
}

.l .article-date {
    font-size: 1.2rem;
    margin-top: 7px;
}



/* category-Top */
.categoryTop {
    position: relative;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    overflow: auto;
}

.categoryTop-title {
    position: fixed;
    display: inline-block;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.0rem;
    z-index: 1;
    color: #fff;
    font-weight: 900;
    text-shadow: 1px 1px 10px #038598;
    transition: opacity 0.3s;
}

.l .categoryTop-title {
    top: 15px;
    font-size: 5.0rem;
}

.categoryTop-bg {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    user-select: none;
}

.categoryTop-bg>img {
    width: calc(var(--bgWidth, 100%));
    height: calc(var(--bgHeight, auto));
}

.categoryTop-button {
    position: fixed;
    z-index: 997;
    top: 74px;
    left: 15px;

    display: flex;
    padding: 5px 0 0 5px;
    width: 95px;
    height: 60px;

    font-size: 1.0rem;
    font-weight: bold;
    line-height: 1.581;
    letter-spacing: 0;
    color: #00284b;
    background-color: #fff;

    border-radius: 5px;
    border: 2px solid #e5e5e5;
    box-shadow: 0px 0px 8px rgba(246, 255, 0, 0.8);
    filter: drop-shadow(0px 0px 8px rgba(246, 255, 0, 0.8));
    cursor: pointer;
    white-space: nowrap;
}

.l .categoryTop-button {
    padding: 16px 0px 0px 10px;
    top: 27px;
    left: 116px;
    width: 150px;
    height: 110px;
    font-size: 1.6rem;
    border-radius: 10px;
    line-height: 1.59375;
}

.categoryTop-buttonBg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
}

.l .categoryTop-buttonBg {
    width: 60px;
}

.categoryTop-button span {
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
        -1px 1px 0 #FFF, 1px -1px 0 #FFF,
        0px 1px 0 #FFF, 0-1px 0 #FFF,
        -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.en .categoryTop-button span {}


.categoryTop-toolBar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 322px;
    height: auto;
    margin: 0 auto;
}

.l .categoryTop-toolBar {
    width: 640px;
}


.categoryTop-toolBarItems {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.l .categoryTop-toolBarItems:not(.l-none) {
    position: initial;
    width: 100%;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.l .categoryTop-toolBarItemWRapper {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(255, 255, 255, 0.9);
    flex: 0 0 150px;
    height: 130px;
    transform: translateY(20px);
    padding-bottom: 20px;
    border-radius: 20px 20px 0 0;
}

.l .categoryTop-toolBarItemWRapper.--active {
    flex: 0 0 160px;
    height: 140px;
    transform: translateY(0px);
    color: #000;
    border: 4px solid #e5e5e5;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
}

.l .categoryTop-toolBarItemWRapper.--blue {
    background-color: #39d9ec;
}

.l .categoryTop-toolBarItemWRapper.--red {
    background-color: #e72949;
    filter: brightness(1.1);
}

.l .categoryTop-toolBarItemWRapper.--green {
    background-color: #3ec85f;
    filter: brightness(1.1);
}

.l .categoryTop-toolBarItemWRapper.--orange {
    background-color: #fe903c;
    filter: brightness(1.1);
}

.en.l .categoryTop-toolBarItemWRapper:nth-child(4) .categoryTop-toolBarLink {
    font-size: 2.0rem;
    text-align: center;
    margin-top: 20px;
}


.categoryTop-toolBarLink {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    flex-direction: column;
    font-weight: bold;
    font-size: 1.3rem;
    cursor: pointer;
}

.categoryTop-toolBarLink.--active {
    pointer-events: none;
    color: #fff;
}

.l .categoryTop-toolBarLink {
    position: initial;
    font-size: 2.2rem;
    height: 100%;
    row-gap: 0px;
    padding-bottom: 10px;
}

.l .categoryTop-toolBarLink.--active {
    row-gap: 0;
    padding-bottom: 0px;
}

.en .categoryTop-toolBarLink:nth-child(4) {
    font-size: 1.2rem;
    text-align: center;
}

.l .categoryTop-toolBarLink span {
    display: block;
    height: 37px;
}



.categoryTop-toolBarLink:nth-child(1) .categoryTop-toolBarIcon {
    width: 37px;
}

.categoryTop-toolBarLink:nth-child(2) .categoryTop-toolBarIcon {
    width: 33px;
    margin-bottom: 4px;
}

.categoryTop-toolBarLink:nth-child(3) .categoryTop-toolBarIcon {
    width: 45px;
}

.categoryTop-toolBarLink:nth-child(4) .categoryTop-toolBarIcon {
    width: 39px;
    margin-bottom: 8px;
}

.en .categoryTop-toolBarLink:nth-child(4) .categoryTop-toolBarIcon {
    margin-bottom: 0px;
}


.categoryTop-toolBarLink:nth-child(1) .categoryTop-toolBarIcon.--active {
    width: 50px;
}

.categoryTop-toolBarLink:nth-child(2) .categoryTop-toolBarIcon.--active {
    width: 55px;
}

.categoryTop-toolBarLink:nth-child(3) .categoryTop-toolBarIcon.--active {
    width: 50px;
}

.categoryTop-toolBarLink:nth-child(4) .categoryTop-toolBarIcon.--active {
    width: 61px;
    margin-bottom: 0px;
}


.l .categoryTop-toolBarItemWRapper:nth-child(1) .categoryTop-toolBarIcon {
    width: 65px;
}

.l .categoryTop-toolBarItemWRapper:nth-child(2) .categoryTop-toolBarIcon {
    width: 65px;
    margin-bottom: 4px;
}

.l .categoryTop-toolBarItemWRapper:nth-child(3) .categoryTop-toolBarIcon {
    width: 70px;
}

.l .categoryTop-toolBarItemWRapper:nth-child(4) .categoryTop-toolBarIcon {
    width: 58px;
    margin-bottom: 8px;
}


.l .categoryTop-toolBarItemWRapper:nth-child(1) .categoryTop-toolBarIcon.--active {
    width: 136px;
}

.l .categoryTop-toolBarItemWRapper:nth-child(2) .categoryTop-toolBarIcon.--active {
    width: 110px;
}

.l .categoryTop-toolBarItemWRapper:nth-child(3) .categoryTop-toolBarIcon.--active {
    width: 116px;
}

.l .categoryTop-toolBarItemWRapper:nth-child(4) .categoryTop-toolBarIcon.--active {
    width: 155px;
    margin-bottom: -5px;
}


.categoryTop-toolBarIcon.--active {
    pointer-events: none;
}


.categoryTop-mapPins {
    position: absolute;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.categoryTop-mapPin {
    position: absolute;
    width: 17%;
}

.categoryTop-mapPin:after {
    content: "";
    position: absolute;
    display: block;
    bottom: -10%;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 50%;
    width: 5%;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.2);

    filter: blur(3px);
}

.categoryTop-bgAnimations {
    position: absolute;
    display: inline-block;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.categoryTop-bgItem {
    position: absolute;
    height: auto;
}

/*******************************
 include header
********************************/
/* SDGsロゴバージョン */
.header {
    position: relative;
    width: 100%;
    border-bottom: 2px solid #e8e8e8;
    background-color: #fff;
    z-index: 997;
}

.header.--fixed {
    position: fixed;
}

.header.--transparent {
    position: fixed;
    background-color: transparent;
    border-bottom: none;
    pointer-events: none;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 16px;
}

.l .header-wrapper {
    padding: 27px 28px;
}

.header-wrapper.--2column {
    align-items: flex-start;
    flex-wrap: wrap;
}


.header-logo {
    width: 143px;
    height: auto;
    cursor: pointer;
    pointer-events: fill;
}

.header-logo.--small {
    width: 60px;
}

.header-logo.--2column {
    margin-top: 12px;
}

.header-wrapperIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    /* row-gap: 15px; */
    row-gap: 4px;
}

.header-wrapperIcon.--2column {
    justify-content: space-between;
    flex-direction: column;
}

.l .header-wrapperIcon.--2column {
    flex-direction: row-reverse;
    column-gap: 30px;
}

.header-mission {
    width: 52px;
    height: auto;
    cursor: pointer;
    pointer-events: fill;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #1667b7;
    cursor: pointer;
    pointer-events: fill;
}

.header-menu.--white {
    background-color: #fff;
}

.header-menuIcon {
    width: 25px;
    height: auto;
}

.header-backLink {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 8px #0f9eb4;
    margin-top: 6px;
    pointer-events: fill;
}

.l .header-backLink {
    width: 40px;
    height: 40px;
    margin-top: 0;
}

.header-backLink a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.header-backArrow {
    width: 11px;
    height: auto;
}

/*******************************
 include menu
********************************/
.menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background-color: #fafafa;
    padding: 90px 16px 0;

    overflow: auto;
}

.l .menu {
    width: 408px;
    padding: 90px 20px;
}

.menu-closeButton {
    position: fixed;
    top: 16px;
    right: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;

    border-radius: 50%;
    background-color: #e8e8e8;

    cursor: pointer;
}

.l .menu-closeButton {
    top: 28px;
    right: 30px;

    width: 56px;
    height: 56px;
}

.menu-closeIcon {
    width: 22px;
    height: auto;
}

.l .menu-closeIcon {
    width: 24px;
}

.menu-jaxaLogo {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 296px;
}

.menu-item {
    margin-bottom: 14px;
}

.menu-item:last-child {
    margin-bottom: 0;
}

.menu-item:not(:last-child):after {
    margin-top: 14px;
    content: "";
    display: block;
    width: 100%;
    border-bottom: 2px solid rgba(204, 204, 204, 0.3);
}


.menu-icon {
    width: 32px;
    height: auto;
}

.menu-itemText {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 12px;


    font-size: 1.8rem;
    font-weight: bold;
    color: #00175d;

    cursor: pointer;
}

.l .menu-itemText {
    font-size: 1.6rem;
}

.menu-arrow {
    position: absolute;
    top: 50%;
    right: 18px;

    width: 14px;
    transform: translateY(-50%) rotate(90deg);
}

.l .menu-arrow {
    right: 30px;
    width: 16px;
}

.menu-arrow.--show {
    transform: translateY(-50%);
}


.menu-option {
    padding: 9px 47px 9px;
}

.menu-optionText {}

.menu-optionText a {
    font-size: 1.4rem;
    line-height: 2.8;
    color: rgba(0, 23, 92, 0.7);
}

.l .menu-optionText a {
    line-height: 2;
}

.menu-optionText span {
    font-size: 1.4rem;
    line-height: 2.8;
    color: rgba(0, 23, 92, 0.7);
}

.l .menu-optionText span {
    line-height: 2;
}

.menu-bannerList {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 11px;
    row-gap: 16px;
    margin-top: 30px;
}

.l .menu-bannerList {
    column-gap: 16px;
}

.menu-banner {
    width: 166px;
    height: auto;
}

.l .menu-banner {
    width: 176px;
    height: auto;
}

.menu-banner a {
    width: 100%;
    height: auto;
}

.menu-enButton {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;

    margin: 21px auto 0;

    font-size: 1.2rem;
    color: #00175c;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.l .menu-enButton {
    margin: 27px auto 0;
}


.menu-enIcon {
    width: 15px;
}

.l .menu-enIcon {
    width: 14px;
}

/*******************************
 include serchModal
********************************/
.searchModal {}

.l .searchModal {}

.searchModal.--top {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
}

.l .searchModal {}

.searchModal-card {
    margin: 0 auto;
}

.l .searchModal-card {
    padding-top: 65px;
}

.searchModal-card.--top {
    padding: 80px 0 0;
}

.l .searchModal-card.--top {
    padding-top: 59px;
}

.searchModal-scrollArea.--top {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}


.l .searchModal-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 14px;
}

.searchModal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 14px;
}

.l .searchModal-title {
    font-size: 1.6rem;
    margin-bottom: 0;
}

.searchModal-title.--white {
    color: #fafafa;
}

.searchModal-title.--large {
    text-align: center;
    font-size: 1.9rem;
}

.l .searchModal-title.--large {
    font-size: 2.0rem;
}

.en .searchModal-title.--large {
    font-size: 1.5rem;
}

.en.l .searchModal-title.--large {
    font-size: 2.0rem;
}


.searchModal-title.--top {
    position: fixed;
    top: 33px;
    left: 0;
    right: 0;
    pointer-events: none;
}

.l .searchModal-title.--top {
    top: 46px;
}




.searchModal-categoryList {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 12px;
    width: 100%;
    max-width: 601px;
}

.l .searchModal-categoryList {
    justify-content: flex-start;
    column-gap: 14px;
}

.en .searchModal-categoryList {
    align-items: flex-end;
}



.searchModal-categoryLink {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: 7px;
}

.l .searchModal-categoryLink {
    row-gap: 8px;
}


.searchModal-categoryTitle {
    font-size: 1.5rem;
    font-weight: bold;
}

.l .searchModal-categoryTitle {
    font-size: 1.6rem;
}

.en .searchModal-categoryTitle {
    font-size: 1.4rem;
    text-align: center;
}

.en.l .searchModal-categoryTitle {
    font-size: 1.6rem;
}

.searchModal-categoryLink:nth-child(1) .searchModal-categoryTitle {
    letter-spacing: 0.06em;
}

.searchModal-categoryLink:nth-child(2) .searchModal-categoryTitle {
    letter-spacing: 0.06em;
}

.searchModal-categoryLink:nth-child(3) .searchModal-categoryTitle {
    letter-spacing: 0.08em;
}

.searchModal-categoryLink:nth-child(4) .searchModal-categoryTitle {
    letter-spacing: -0.08em;
}

.searchModal-categoryTitle.--white {
    color: #fafafa;
}




.searchModal-categoryIcon {
    width: 75px;
}

.l .searchModal-categoryIcon {
    width: 74px;
}

.searchModal-categoryIcon img {
    filter: drop-shadow(0px 0px 2px #fff)
}



.searchModal-keywordList {
    display: flex;
    flex-wrap: wrap;
    column-gap: 11px;
    row-gap: 7px;
    font-size: 1.4rem;
}

.l .searchModal-keywordList {
    justify-content: flex-start;
    max-width: 600px;
    column-gap: 14px;
    row-gap: 14px;
}

.searchModal-keyword {
    cursor: pointer;
    font-size: 1.4rem;
}

.l .searchModal-keyword {}

.searchModal-SDGsCardList {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 10px;
    row-gap: 10px;
    font-size: 1.0rem;
}

.l .searchModal-SDGsCardList {
    align-items: center;
    justify-content: flex-start;
    column-gap: 11px;
    row-gap: 11px;
    max-width: 600px;
}

.searchModal-SDGsCardList.--large {
    column-gap: 14px;
    row-gap: 14px;
}

.l .searchModal-SDGsCardList.--large {
    column-gap: 11px;
    row-gap: 11px;
}

.searchModal-SDGsCard {
    cursor: pointer;
}

.searchModal-wrapperButton {
    text-align: right;
    margin-top: 16px;
}

.l .searchModal-wrapperButton {
    margin-top: 32px;
}

.searchModal-moreShowButton {
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
}

.l .searchModal-moreShowButton {
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
}

.searchModal-moreShowButton.--white {
    color: #fafafa;
}

.searchModal-border {
    height: 1px;
    margin: 20px 0;
    background-color: #808080;
}

.l .searchModal-border {
    margin: 40px 0;
}


/*******************************
 include articleListModal
********************************/
.articleListModal-card {
    margin: 0 auto;
}

.l .articleListModal-card {}

.articleListModal-title {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 500;
    /* color: #000421; */
}

.l .articleListModal-title {
    text-align: left;
    font-size: 2.4rem;
}

.articleListModal-wrapper {
    padding-bottom: 20px;
}

.l .articleListModal-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;

    column-gap: 30px;
    row-gap: 30px;
    padding-bottom: 32px;
}

.articleListModal-wrapper:nth-child(2):after {
    content: "";
    display: block;
    width: 100%;
    max-width: 385px;
}


.articleListModal-article {
    margin: 0 auto;
}

.l .articleListModal-article {
    margin: 0;
}

.articleListModal-article+.articleListModal-article {
    margin-top: 25px;
}

.l .articleListModal-article+.articleListModal-article {
    margin-top: 0;
}


/*******************************
 include earthAnimeModal
********************************/

.earthAnimeModal {
    position: fixed;
    top: 0;
    z-index: 995;

    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);

    display: flex;
    align-items: center;
    justify-content: center;
}

.earthAnimeModal.--start {
    animation: zoom 2s ease-in forwards;
}

.earthAnimeModal.--start.--space {
    transform-origin: 60% 20%;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1);
    }

    70% {
        transform: scale(8);
        opacity: 0.9;
    }

    100% {
        transform: scale(8);
        opacity: 0;
    }
}

.earthAnimeModal-bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.earthAnimeModal-bg img {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    max-width: inherit;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.earthAnimeModal-map {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    z-index: 1;
}

.earthAnimeModal-earth {
    width: 475px;
    height: auto;
    margin: 0 -110px;
}

.l .earthAnimeModal-earth {
    width: 600px;
    height: auto;
}

.earthAnimeModal-cloud {
    position: absolute;
    top: 53%;
    left: 49%;
    transform: translate(-50%, -50%);
    width: 475px;
    animation: spin 90s infinite linear;
}

.l .earthAnimeModal-cloud {
    top: 51%;
    width: 550px;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/*******************************
 include introductionModal
********************************/
.introductionModal-wrapper {
    position: absolute;
    width: 100%;
    bottom: 24%;
    left: 50%;
    transform: translateX(-50%);
}

.l .introductionModal-wrapper {
    top: 55%;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
}

.introductionModal-text {
    text-align: center;
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 25px;
    letter-spacing: 0.2em;
    line-height: 1.7647;
}

.l .introductionModal-text {
    font-size: 2.8rem;
}


.introductionModal-controller {
    position: relative;
    width: 222px;
    margin: 0 auto;
}

.introductionModal-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 50px;
}

.l .introductionModal-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 50px;
}

.introductionModal-pin {
    display: inline-block;
    width: 1em;
    line-height: 0;
    margin: 0.25em 0.25em 0;
}

.l .introductionModal-pin {
    margin: 0.25em 0.25em 0;
    width: 1em;
}



/*******************************
 include missionModal
********************************/
.missionModal {
    padding: 0 !important;
}

.missionModal-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: calc(100% - 40px);
    max-width: 335px;
    height: auto;

    padding: 0 !important;
    margin: auto;
    overflow: hidden;
    background-color: transparent;

    border-radius: 30px;
}

.l .missionModal-card {
    max-width: 800px;
    border-radius: 30px;
}


.missionModal-closeButton {
    width: 16px;
}

.l .missionModal-closeButton {
    width: 30px;
}

.missionModal-bg {
    width: 100%;
    max-width: 800px;
}

.l .missionModal-bg {
    max-width: 800px;
}



.missionModal-fukidashi {
    display: block;
    position: absolute;
    bottom: 52%;
    left: 34%;

    width: auto;
    height: auto;
    max-width: 210px;
    max-height: 120px;

    padding: 40px 13px 15px 13px;

    background-color: #fff;
    border-radius: 6px;

    z-index: 1;

    font-weight: bold;
    font-size: 1.4rem;
    filter: drop-shadow(0px 0px 3px #c0ebee);
    opacity: 0;
    animation: slideDown .5s 1s forwards;
}

.l .missionModal-fukidashi {
    max-width: 450px;
    max-height: 140px;
    font-size: 2.0rem;
    padding: 60px 25px 20px 16px;
}

.missionModal-fukidashi:after {
    content: "";

    display: block;
    position: absolute;
    bottom: -20px;
    left: 10px;

    transform: rotate(30deg);
    border: 10px solid transparent;
    border-top: 20px solid #fff;
}

.missionModal-fukidashi span {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0px 0px 3px transparent);
}


.--mission4 .missionModal-fukidashi {
    bottom: 52%;
    left: 34%;
}

.l .--mission4 .missionModal-fukidashi {
    bottom: 53%;
    left: 33%;
}

.l .--mission4 .missionModal-fukidashi:after {
    bottom: 10px;
    left: -18px;

    transform: rotate(60deg);
    border: 10px solid transparent;
    border-top: 30px solid #fff;
}

.--mission3 .missionModal-fukidashi {
    bottom: 51%;
    left: 35%;

    max-width: 210px;
    max-height: 120px;
}

.l .--mission3 .missionModal-fukidashi {
    bottom: 47%;
    left: 36%;

    max-width: 450px;
    max-height: 140px;
}

.--mission2 .missionModal-fukidashi {
    bottom: 51%;
    left: 35%;

    max-width: 210px;
    max-height: 130px;
}

.l .--mission2 .missionModal-fukidashi {
    bottom: 41%;
    left: 55%;

    max-width: 340px;
    max-height: 180px;
}

.--mission1 .missionModal-fukidashi {
    bottom: 41%;
    left: 43%;

    max-width: 180px;
    max-height: 160px;
}

.l .--mission1 .missionModal-fukidashi {
    bottom: 31%;
    left: 63%;

    max-width: 290px;
    max-height: 200px;
}

.l .--mission1 .missionModal-fukidashi:after {
    bottom: -40px;
    left: 10px;

    border: 10px solid transparent;
    border-top: 40px solid #fff;
}



.missionModal-fukidashiNext {
    position: absolute;
    top: 5px;
    left: -5px;
    width: 115px;
}

.l .missionModal-fukidashiNext {
    top: 10px;
    left: -10px;
    width: 160px;
}


.missionModal-baloon {
    position: absolute;
    display: inline-block;
    min-width: 60px;
    top: 84%;
    left: 25%;
    height: auto;
    padding: 17px 10px;
    text-align: center;

    background-color: #fff;
    border-radius: 50%;
    letter-spacing: -0.1em;
    font-weight: 900;
    font-size: 0.8rem;
    z-index: 1;
    opacity: 0;

    box-shadow: 4px 0px 8px rgba(0, 0, 0, 0.16);

    animation: slideDown .5s .5s forwards;
}

.l .missionModal-baloon {
    top: 76%;
    left: 2%;

    min-width: 85px;
    font-size: 1.12rem;
    padding: 24px 8px;
}

@keyframes slideDown {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1
    }
}

.missionModal-baloon:after {
    content: "";

    position: absolute;
    bottom: -3px;
    right: -3px;

    border: 5px solid transparent;
    border-left: 12px solid #fff;

    z-index: 0;
    transform-origin: center;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.l .missionModal-baloon:after {
    border: 7px solid transparent;
    border-left: 18px solid #fff;

    bottom: -5px;
    right: -5px;
}

.missionModal-baloon span {
    font-size: 1.2rem;
}

.l .missionModal-baloon span {
    font-size: 1.68rem;
}




.missionModal-label {
    position: absolute;
    bottom: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 37px;

    font-size: 1.9rem;
    font-weight: 900;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.4);
}

.l .missionModal-label {
    width: 230px;
    height: 122px;

    padding-top: 30px;

    font-size: 2.66rem;
    background-color: rgba(255, 255, 255, 0.7);
}

.en .missionModal-label {
    column-gap: 8px;
}

.en.l .missionModal-label {
    flex-direction: column;
    font-size: 2.4rem;
    padding-top: 0;
}


.missionModal-label span {
    width: 30px;
    margin-bottom: 20px;
    opacity: 0;
    transform-origin: center bottom;
    animation: zoomIn 0.5s 0.5s forwards;
}

.l .missionModal-label span {
    width: 45px;
    margin-bottom: 20px;
}

.en.l .missionModal-label span {
    margin-bottom: 0;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.--mission4 .missionModal-label span {
    width: 30px;
}

.l .--mission4 .missionModal-label span {
    width: 45px;
}

.--mission3 .missionModal-label span {
    width: 25px;
}

.l .--mission3 .missionModal-label span {
    width: 38px;
}

.--mission2 .missionModal-label span {
    width: 25px;
}

.l .--mission2 .missionModal-label span {
    width: 38px;
}

.--mission1 .missionModal-label span {
    width: 15px;
}

.l .--mission1 .missionModal-label span {
    width: 20px;
}

.missionModal-borderAnimations {
    position: absolute;
    top: 47.5%;
    left: 14.5%;
    width: auto;
    height: auto;
}

.l .missionModal-borderAnimations {
    top: 36.5%;
    left: 13.5%;
}

.--mission4 .missionModal-borderAnimations {
    top: 47.5%;
    left: 14.5%;
}

.l .--mission4 .missionModal-borderAnimations {
    top: 36.5%;
    left: 13.5%;
}

.--mission3 .missionModal-borderAnimations {}

.l .--mission3 .missionModal-borderAnimations {
    top: 50.5%;
    left: 22.5%;
}

.--mission2 .missionModal-borderAnimations {}

.l .--mission2 .missionModal-borderAnimations {
    top: 56.5%;
    left: 45.5%;
}

.--mission1 .missionModal-borderAnimations {
    top: 62.5%;
    left: 23.5%;
}

.l .--mission1 .missionModal-borderAnimations {
    top: 72.5%;
    left: 51%;
}




.missionModal-borderSquare {
    position: absolute;
    top: 0;
    width: 152px;
    opacity: 0;
}

.l .missionModal-borderSquare {
    position: absolute;
    top: 0;
    width: 220px;
    opacity: 0;
}

.missionModal-borderSquare:nth-child(1) {
    animation: spread 1.5s 1s infinite;
}

.missionModal-borderSquare:nth-child(2) {
    animation: spread 1.5s 3s infinite;
}

.missionModal-borderSquare:nth-child(3) {
    animation: spread 1.5s 4s infinite;
}

@keyframes spread {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


/*******************************
 include missionClearModal
********************************/
.missionClearModal {}

.missionClearModal-closeButton {
    top: 20px;
    width: 15px;
    right: 20px;
}

.missionClearModal-wrapper {
    width: 100%;
    max-width: 375px;
    height: auto;

    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.l .missionClearModal-wrapper {
    width: 100%;
    max-width: 415px;
}

.en.l .missionClearModal-wrapper {
    width: 100%;
    max-width: 484px;
}

.missionClearModal-card {
    width: calc(100% - 40px);
    max-width: 335px;
    height: auto;
    border-radius: 15px;
    padding: 0px;
    margin: 0 auto;
    overflow: hidden;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}

.l .missionClearModal-card {
    padding: 0px;
    max-width: 375px;
}

.missionClearModal-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.missionClearModal-bg img {
    width: 100%;
    height: 100%;
}


.missionClearModal-bgJaxaLogo {
    position: absolute;
    bottom: -75px;
    right: 15px;
    width: 274px;
    opacity: 0.3;
}

.l .missionClearModal-bgJaxaLogo {}


.missionClearModal-content {
    width: 100%;
    height: 100%;
    padding: 6px 0px 25px;
}

.missionClear-header {
    width: calc(100% - 16px);
    margin: 0 auto;
}


.missionClear-inputWrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 40px;
    margin-top: -10px;
}

.missionClear-input {
    color: #fff;
    font-size: 2.8rem;
    font-family: 'kaisoutai';
    letter-spacing: 0.04em;
}

.missionClear-input:focus {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.--rare .missionClear-input:focus {
    background-color: rgba(0, 0, 0, 0.3);
}

.missionClear-defaultValue {
    display: block;
    color: #fff;
    font-size: 2.8rem;
    font-family: 'kaisoutai';
    pointer-events: none;
}

.missionClear-showValue {
    color: #fff;
    font-size: 2.8rem;
    letter-spacing: 0.04em;
    font-family: 'kaisoutai';
    white-space: nowrap;
}

.missionClear-showValue.--notEnterd {
    letter-spacing: 0.04em;
    font-family: 'Noto Sans JP', 'sans-serif' !important;
}

.missionClear-pencil {
    display: none;
    position: absolute;
    width: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-300%, -50%);
}

.missionClear-pencil.--notEnterd {
    display: block;
}


.missionClear-certificate {
    color: #fff;
    width: calc(100% - 30px);
    margin: 0 auto;
    font-weight: 900;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.3333;
    margin-top: 5px;
}

.missionClear-image {
    width: calc(100% - 30px);
    margin: 15px auto 0;
}

.l .missionClear-image {}

.missionClear-imageLabelWrapper {
    display: inline-block;
    height: 36px;
    margin-top: -16px;
    margin-left: -14px;
}

.missionClear-imageLabel {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;

    width: auto;
    height: 36px;
    background: linear-gradient(to bottom, #fafafa 0%, #b0c9cc 100%);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    padding-right: 9px;
}

.missionClear-imageLabel:before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 100%;
    background: linear-gradient(to bottom, #050764 0%, #b0c9cc 100%);
    transform: skewX(-30deg);
}

.missionClear-imageLabel span {
    display: inline-block;
    font-size: 2.0rem;
    font-weight: 900;
    color: #152c56;
    white-space: nowrap;
}

.missionClear-imageText {
    width: calc(100% - 30px);
    margin: 18px auto 0;
    padding: 11px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.409;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(4, 0, 0, 0.3);
    border-radius: 8px;
    letter-spacing: 0;
}


/* レアカード */
.--rare .missionClear-input {
    color: #4b3901;
}

.--rare .missionClear-showValue {
    color: #4b3901;
}

.--rare .missionClear-defaultValue {
    color: #4b3901;
}

.--rare .missionClear-certificate {
    color: #4b3901;
}

.--rare .missionClear-imageLabel {
    border: 2px solid #967409;
    background: linear-gradient(to right, #af9546 0%, #fffce9 50%, #ad9342 100%);
}

.--rare .missionClear-imageLabel:before {
    background: linear-gradient(to bottom, #70512b 0%, #faefac 100%);
}

.--rare .missionClear-imageLabel span {
    color: #4b3901;
}

.en .--rare .missionClear-imageLabel span {
    font-size: 1.7rem;
}




/* タイプ別 */
.--type4 .missionClear-imageLabel span {
    font-size: 1.5rem;
}

.en .--type1 .missionClear-imageLabel span {
    font-size: 1.4rem;
}

.en .--type3 .missionClear-imageLabel span {
    font-size: 1.2rem;
    padding-right: 69px;
}


.missionClearModal-shareLink {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Teko' 'sans-serif';
    font-weight: 600;
    font-size: 2.0rem;
    letter-spacing: 0;
    color: #fafafa;
    column-gap: 12px;

    width: calc(100% - 40px);
    max-width: 335px;
    margin: 13px auto 22px;
}

.l .missionClearModal-shareLink {
    max-width: 375px;
    font-size: 1.2rem;
    column-gap: 28px;
}

.missionClearModal-shareLinkIcons {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 4px;
}

.l .missionClearModal-shareLinkIcons {
    column-gap: 14px;
}

.missionClearModal-shareLinkIcon {
    display: block;
    width: 32px;
}

.l .missionClearModal-shareLinkIcon {
    width: 40px;
}

.missionClearModal-downLoadButton {
    width: 32px;
    position: absolute;
    right: 0;
    cursor: pointer;
}

.l .missionClearModal-downLoadButton {
    width: 40px;
}

.missionClearModal-nextButton {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: calc(100% - 40px);
    max-width: 183px;
    height: 42px;

    margin: 0 auto;
    padding: 16px 21px;

    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;

    background: linear-gradient(to bottom, #f7cb6b 0%, #ff8433 100%);
    box-shadow: 20px 20px 16px rgba(234, 127, 106, 0.14) inset;
    border-radius: 44px;

    cursor: pointer;
}

.l .missionClearModal-nextButton {
    width: 100%;
    max-width: 396px;
    height: 68px;
    font-size: 2.6rem;

    padding: 24px 60px;
}

.en .missionClearModal-nextButton {
    max-width: 235px;
    font-size: 1.3rem;
}

.en.l .missionClearModal-nextButton {
    max-width: 534px;
    font-size: 2.6rem;
    padding: 24px 35px;
}

.missionClearModal-nextButtonArrow {
    position: absolute;
    top: 50%;

    width: 17px;
    right: 10px;

    transform: translateY(-50%);
}

.missionClearModal-nextButtonArrow img {
    filter: drop-shadow(0 0 11px rgba(252, 114, 30, 0.7));
}

.l .missionClearModal-nextButtonArrow {
    width: 34px;
    right: 36px;
}


/*******************************
 include footer
********************************/
.footer {
    justify-self: flex-end;
    position: relative;
    display: block;
    width: 100%;
    margin-top: auto;
    background-color: #fff;
}

.footer-wrapper {
    position: relative;
    width: 100%;
    padding: 40px 16px;
}

.l .footer-wrapper {
    max-width: 768px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-innerWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 20px;
}

.l .footer-innerWrapper {
    justify-content: flex-start;
}

.footer-jaxaLogo {
    width: 58px;
}

.l .footer-jaxaLogo {
    width: 68px;
}

.footer-copyRight {
    flex: 0 0 100%;
    text-align: center;
    display: block;
    color: #000421;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.l .footer-copyRight {
    flex: 0 0 auto;
    margin-bottom: 12px;
}


.footer-enButton {
    position: absolute;
    top: 40px;
    right: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000421;
    width: auto;
    height: 28px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    border: 1px solid #000421;
    border-radius: 28px;
    padding: 0 12px;

    column-gap: 8px;

    cursor: pointer;
}

.l .footer-enButton {
    position: relative;
    top: 0px;
    right: 0px;
}

.footer-enButtonIcon {
    display: block;
    width: 16px;
}

.footer-enButtonText {
    margin-bottom: 2px;
}


/*******************************
 include footer
********************************/
.businessIntroductionModal {}

.businessIntroductionModal-card {
    margin: 0 auto;
    padding-bottom: 0;
}

.businessIntroductionModal-wrapper {
    padding-bottom: 44px;
}

.businessIntroductionModal-title {
    font-size: 2.0rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-top: 30px;
}

.businessIntroductionModal-date {
    font-size: 1.0rem;
    letter-spacing: 0.04em;
    color: #545454;
    margin-top: 10px;
    margin-bottom: 20px;
}

.businessIntroductionModal-paragraph {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 2.107;
    font-weight: 300;
}

.businessIntroductionModal-h3Title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.722;
    margin-top: 40px;
    margin-bottom: 20px;
}

.businessIntroductionModal-h3Title:before {
    content: "";
    display: block;
    width: 4px;
    height: 25px;
    background-color: #00aed9;
    margin-top: 3px;
}

.en .businessIntroductionModal-h3Title:before {
    margin-right: 8px;
}

.businessIntroductionModal-numberList {
    margin-top: 40px;
    margin-bottom: 40px;
}

.businessIntroductionModal-numberList li {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    line-height: 1.7142;
}

.businessIntroductionModal-numberList li+li {
    margin-top: 25px;
}

.businessIntroductionModal-reference {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 2.041;
    margin-top: 40px;
}

.businessIntroductionModal-referenceLink+.businessIntroductionModal-referenceLink {
    margin-top: 15px;
}

.businessIntroductionModal-referenceLinkTitle {
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 0.08em;
    line-height: 2.041;
    line-height: 1;
}


.businessIntroductionModal-referenceLinkText {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    /* line-height: 1.3333; */
    line-height: 1;
    color: #949494;
    word-break: break-all;
}

.businessIntroductionModal-referenceLinkText:hover {
    text-decoration: underline;
}