/* =============================================
Reset & Others
============================================= */
* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    cursor: default;

}
html, body {
    overflow-x: hidden;
}
body {
    margin: 0;
    min-height: 100svh;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.list-numbers {
    list-style: decimal;
    padding-left: 1.4em;
}
ul.list-numbers > li {
    margin-bottom: 0.4rem;
}
ul.list-disc {
    list-style: disc;
    padding-left: 1em;
}
.ul.list-disc > li {
    margin-bottom: 0.4rem;
}
ul.list-alphabet {
    list-style: upper-latin;
    padding-left: 1.4em;
    text-align: left;
}
a {
    text-decoration: none;
    transition: all ease .2s;
    color: #000;
}
ul li a {
    transition: all ease .2s;
}
ul li a:hover {
    opacity: .7;
}
a:hover {
    cursor: pointer;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.xs {
    display: none;
}
@media screen and (max-width: 768px) {
    .pc {
        display: none!important;
    }
    .sp {
        display: block!important;
    }
}
@media screen and (max-width: 410px) {
    .xs {
        display: block!important;
    }
}

/* =============================================
Fonts & Colors
============================================= */
html {
    font-size: 62.5%;
}
* {
    font-family: "aktiv-grotesk-extended", "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4rem;
    line-height: 1.5;
    font-feature-settings: "palt";
    text-align: justify;
    word-break: break-all;
}
h2, h3, h4, .text-bold {
    font-family: "aktiv-grotesk-extended", "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}
h2 {
    font-size: 2.4rem;
}
h3 {
    font-size: 1.6rem;
}
h4 {
    font-size: 1.6rem;
}
.number {
    font-size: 2.8rem;
}
.display-ttl-s {
    font-size: 1.6rem;
}
.product-ttl {
    font-size: 2.8rem;
}
.text-w {
    color: #fff;
}
p {
    font-family: "aktiv-grotesk-extended", "Noto Sans JP", sans-serif;
    font-style: normal;
}
@media screen and (max-width: 576px) {
    .number {
        margin: 8px 0;
    }
}

/* =============================================
Header / Gnav
============================================= */
header {
    border: solid 1px #000;
    background-color: #fff;
    position: fixed;
    top: 32px;
    left: 32px;
    z-index: 100;
    transition: all ease .2s;
}
header:hover {
    cursor: pointer;
    opacity: .7;
}
a.header {
    display: block;
    width: 250px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}
a.header:hover > * {
    cursor: pointer;
}
.header-logo {
    height: 2.4rem;
}
.gnav {
    width: 56px;
    height: 56px;
    position: fixed;
    top: 32px;
    right: 32px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #000;
    background: #fff;
    transition: all ease .2s;
}
.gnav:hover {
    cursor: pointer;
}
.gnav > *:hover {
    cursor: pointer;
}
.gnav-menu {
    width: 100vw;
    height: 100svh;
    background: rgba(0,0,0,.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    visibility: hidden;
    z-index: -100;
    transition: all ease .2s;
    opacity: 0;
}
.gnav-close {
    width: 56px;
    height: 56px;
    position: fixed;
    top: 32px;
    right: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #000;
    background: #fff;
    transition: all ease .2s;
}
.gnav-close:hover {
    cursor: pointer;
}
.gnav-close > *:hover {
    cursor: pointer;
}
.gnav-menu-list-wrapper {
    height: 100%;
    width: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    border-left: solid 2px #000;
    padding:56px 0;
    overflow-y: scroll;
}
ul.gnav-menu-list {
    list-style: none!important;
}
ul.gnav-menu-list > li {
    margin: 2.4rem 0;
}
ul.gnav-menu-list > li > a {
    display: flex;
    color: #000;
    text-decoration: none;
    font-family: "aktiv-grotesk-extended", "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.0rem;
    flex-direction: column;
}
ul.gnav-menu-list > li > a > *:hover {
    cursor: pointer;
}
.gnav-show {
    visibility: visible;
    z-index: 200;
    opacity: 1;
}
.noscroll {
    overflow-y: hidden;
}
/* .lang-switch */
.lang-switch {
    margin-top: 28px;
    padding-top: 28px;
    border-top: solid 1px #000;
}
.lang-switch > * {
    font-size: 2rem;
    font-family: "aktiv-grotesk-extended", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 700;
}
.link-jp {
    transition: all ease .2s;
}
.link-jp::after {
    content: "";
    width: 2px;
    height: .8em;
    background: #000;
    margin: 0 12px;
    display: inline-block;
}
.link-jp:hover {
    cursor: pointer;
    opacity: .7;
}
.link-en {
    opacity: .5;
    transition: all ease .2s;
}
.link-en:hover {
    cursor: pointer;
    opacity: 1;
}
@media screen and (max-width: 768px) {
    .gnav-menu-list-wrapper {
        width: 100%;
        border-left: none;
    }
    ul.gnav-menu-list > li > a {
        text-align: center;
    }
    .lang-switch {
        text-align: center;
    }
}
@media screen and (max-width: 576px) {
    header {
        top: 0;
        left: 0;
    }
    a.header {
        width: 50vw;
        height: 48px;
    }
    .header-logo {
        max-height: 2.8rem;
    }
    .gnav {
        width: 48px;
        height: 48px;
        top: 0;
        right: 0;
    }
    .gnav-close {
        width: 48px;
        height: 48px;
        top: 0;
        right: 0;
    }
    img.gnav-bars {
        width: 20px;
    }
    ul.gnav-menu-list > li > a {
        font-size: 1.6rem;
    }
}

/* =============================================
KV
============================================= */
.display-kv-top {
    height: 100%;
    border: solid 1px #000;
    position: relative;
}
.display-kv-top-text {
    position: absolute;
    margin: 32px;
    bottom: 0;
    right: 0;
    mix-blend-mode: exclusion;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}
.display-kv-top-text > img {
    max-width: 80%;
}
.display-kv-top-movie {
    position: relative;
    width: calc(100vw*2/3 - 32px);
    height: calc(100vw*2/3*9/16 - 32px*9/16);
    overflow: hidden;
    border: solid 1px #000;
    margin: 12vh 32px;
    top: 0;
    left: 0;
    max-height: 60vh;
}
.display-kv-top-movie > video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
@media screen and (max-width: 768px) {
    .display-kv-top-movie {
        width: calc(100vw - 128px);
        height: calc(100vw*3/4 - 128px*3/4);
    }
    .display-kv-top-text > img {
    max-width: 100%;
}
}
@media screen and (max-width: 576px) {
    .display-kv-top-movie {
        width: calc(100vw - 64px);
        height: 100%;
        margin: 0;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .display-kv-top-movie > video {
        height: 100%;
        width: auto;
    }
    .display-kv-top-text {
        margin: 16px;
    }
}

/* =============================================
Top
============================================= */
.ttl-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all ease .2s;
}
.ttl-wrapper:hover {
    cursor: pointer;
}
.ttl-wrapper:hover > * {
    cursor: pointer;
}
.ttl-wrapper > img {
    width: 36px;
    height: 36px;
}
.top-ttl {
    font-size: 2.4rem;
    margin: 0;
}
.top-ttl-jp {
    font-size: 1.2rem;
    margin: 0;
}
.display-content-thumbnail {
    width: 50vw;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all ease .2s;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.display-content-thumbnail > p {
    margin: 0;
    font-size: 2.8rem;
    font-family: "aktiv-grotesk-extended", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    transition: all ease .2s;
}
.display-content-thumbnail:hover {
    cursor: pointer;
}
.products-wrapper {
    width: 50vw;
}

#Platform {
    height: 50vw;
    background: center / cover no-repeat url(./images/platform_m.jpg);
}
#Platform:hover {
    cursor: default;
}
#Platform:hover > * {
    cursor: default;
}

#Products {
    background: center / cover no-repeat url(./images/product_0_m.jpg);
    width: 50vw;
    height: calc(50vw*2/3);
}
#Products:hover {
    cursor: default;
}
#Products:hover >* {
    cursor: default;
}

#Products02 {
    background: center / cover no-repeat url(./images/product_01_m.jpg);
    width: calc(50vw*2/3);
    height: calc(50vw*1/3);
    display: inline-block;
}
#Products02:hover {
    cursor: default;
}
#Products02:hover >* {
    cursor: default;
}

#Products03 {
    background: center / cover no-repeat url(./images/product_02_m.jpg);
    width: calc(50vw*1/3);
    height: calc(50vw*1/3);
    display: inline-block;
}
#Products03:hover {
    cursor: default;
}
#Products03:hover >* {
    cursor: default;
}
.products-wrapper-inner {
    display: flex;
}

#Power {
    height: 50vw;
    background: #fff;
}
#Power:hover > .ttl-wrapper, #Power:hover > p {
    opacity: .6;
}
#Power:hover >* {
    cursor: pointer;
}
#Experts {
    height: 50vw;
    background: center / cover no-repeat url(./images/experts_m.jpg), center / 0 no-repeat url(./images/experts_c.jpg);
}
#Experts:hover {
    background-size: 0, cover;
}
#Experts:hover > * {
    cursor: pointer;
}
#Mission:hover {
    cursor: pointer;
}
#Mission:hover > div > .btn {
    border: solid 1px #000;
    background: #fff;
    color: #000;
}
@media screen and (max-width: 992px) {
    #Platform {
        width : 100vw;
    }
    #Products {
        width: 100vw;
    }
    .products-wrapper-inner {
        width : 100vw;
    }
    #Products02 {
        width: calc(100vw*2/3);
        height: calc(100vw*1/3);
    }
    #Products03 {
        width: calc(100vw*1/3);
        height: calc(100vw*1/3);
    }
    #Power {
        width: 100vw;
    }
    #Experts {
        width: 100vw;
    }
}
@media screen and (max-width: 576px) {
    * {
        letter-spacing: 0;
    }
    .top-ttl {
        font-size: 1.8rem;
    }
    .display-content-thumbnail > p {
        font-size: 1.6rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        margin: 0 0 12px 0;
    }
    .display-content-thumbnail {
        padding: 16px;
    }
    .products-wrapper {
        width: 100vw;
    }
    #Platform, #Products, #Power, #Experts {
        height: calc(100vw*9/16);
    }
}
@media screen and (max-width: 340px) {
    #Platform, #Products, #Power, #Experts {
        height: auto;
        gap: 48px;
    }
    .ttl-wrapper > img {
        width: 20px;
        height: 20px;
    }
}

/* =============================================
Button
============================================= */
.btn {
    padding: 6px 12px;
    width: max-content;
    transition: all ease .2s;
    display: block;
}
.btn:hover {
    cursor: pointer;
}
.solid.blk {
    border: solid 1px #000;
    background: #000;
    color: #fff;
}
.solid.blk:hover {
    border: solid 1px #000;
    background: #fff;
    color: #000;
    opacity: 1;
}
.solid.blk.wide {
    width: 100%;
    padding: 12px;
    display: block;
    text-align: center;
    font-family: "aktiv-grotesk-extended", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.contact-btn {
    width: 100%;
    text-align: center;
}


/* =============================================
Display
============================================= */
/* .content */
.content {
    --grid-size: 16.6666666vw;
    --grid-strength: 1px;
    --grid-dash: 3px;
    --grid-gap: 3.7px;
    --grid-color: #bbb;
    --paper-color: #fff;
    background-color: var(--paper-color);
    background-size: var(--grid-gap) var(--grid-gap), var(--grid-size) var(--grid-size);
    background-image:
    linear-gradient(to bottom, transparent var(--grid-dash), var(--paper-color) var(--grid-dash)), 
    linear-gradient(to right, var(--grid-color) var(--grid-strength), transparent var(--grid-strength)),
    linear-gradient(to right, transparent var(--grid-dash), var(--paper-color) var(--grid-dash)),
    linear-gradient(to bottom, var(--grid-color) var(--grid-strength), transparent var(--grid-strength));
}

.content.kv {
    height: calc(100svh - 3.2rem);
    padding: 3.2rem 3.2rem 0 3.2rem;
    position: relative;
}
.content.kv::before {
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    left: 0;
    border-right: dashed 1px #bbb;
    border-bottom: dashed 1px #bbb;
}
.content.kv::after {
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    right: 0;
    border-left: dashed 1px #bbb;
    border-bottom: dashed 1px #bbb;
}
.display-kv-l {
    height: 100%;
    padding: 3.2rem;
    border: solid 1px #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.display-kv-l > img {
    width: 100%;
    border: solid 1px #000;
}
.display-kv-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: solid 1px #000;
}
.display-kv-img-wrapper > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.display-kv-text-wrapper {
    margin: 4.8rem 0;
}
.display-kv-text-wrapper > h1 {
    text-align: start;
    margin: 0;
}
.display-kv-text-wrapper > p {
    text-align: start;
    margin-block-start: .8rem;
    margin-block-end: 0rem;
    font-size: 1.8rem;
}
.display-kv-text-wrapper > h1 > img {
    object-fit: contain;
    height: auto;
    max-height: 80px;
    max-width: 100%;
}
h1.kv-ttl-l > img {
    max-height: 160px;
}
.decoration-fonts.left {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 32px 0;
}
.decoration-fonts.left > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: solid 1px #000;
    flex-grow: 1;
    background: #fff;
}
.decoration-fonts.left > div:last-of-type {
    border-bottom: solid 1px #000;
}
.decoration-fonts.left > div > p {
    margin: 0;
    transform: rotate(-90deg);
}
.decoration-fonts.right {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 32px 0;
}
.decoration-fonts.right > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: solid 1px #000;
    flex-grow: 1;
    background: #fff;
}
.decoration-fonts.right > div:last-of-type {
    border-bottom: solid 1px #000;
}
.decoration-fonts.right > div > p {
    margin: 0;
    transform: rotate(90deg);
}
@media screen and (max-width: 576px) {
    .content {
        --grid-size: 25vw;
        --grid-strength: 1px;
        --grid-dash: 3px;
        --grid-gap: 3.7px;
        --grid-color: #bbb;
        --paper-color: #fff;
        background-color: var(--paper-color);
        background-size: var(--grid-gap) var(--grid-gap), var(--grid-size) var(--grid-size);
        background-image:
        linear-gradient(to bottom, transparent var(--grid-dash), var(--paper-color) var(--grid-dash)), 
        linear-gradient(to right, var(--grid-color) var(--grid-strength), transparent var(--grid-strength)),
        linear-gradient(to right, transparent var(--grid-dash), var(--paper-color) var(--grid-dash)),
        linear-gradient(to bottom, var(--grid-color) var(--grid-strength), transparent var(--grid-strength));
    }
    .content.kv {
        height: calc(100svh - 16px);
        padding: 16px 16px 0 16px;
    }
    .decoration-fonts.left {
        width: 16px;
    }
    .decoration-fonts.right {
        width: 16px;
    }
    .display-kv-l {
        padding: 16px;
    }
    .display-kv-text-wrapper > p {
        font-size: 1.4rem;
    }
    .content.kv::before {
        content: "";
        width: 16px;
        height: 16px;
        position: absolute;
        top: 0;
        left: 0;
        border-right: dashed 1px #bbb;
        border-bottom: dashed 1px #bbb;
    }
    .content.kv::after {
        content: "";
        width: 16px;
        height: 16px;
        position: absolute;
        top: 0;
        right: 0;
        border-left: dashed 1px #bbb;
        border-bottom: dashed 1px #bbb;
    }
}

/* .display-headline */
.display-headline {
    display: inline-block;
    position: relative;
    z-index: 2;
    width: 100%;
}
.display-headline::before {
    content: "";
    width: 50vw;
    height: 100%;
    border-right: solid 1px #000;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.display-headline::after {
    content: "";
    width: 100vw;
    height: 50%;
    border-bottom: solid 1px #000;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.display-headline-inner {
    padding: 6.4rem 3.2rem;
    margin: 3.2rem;
    border: solid 1px #000;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: relative;
    align-items: flex-start;
}
img.map-decoration {
    height: 72px;
    width: auto;
    object-fit: contain;
    position: absolute;
    bottom: -1px;
    right: -1px;
}
.display-headline-inner > h2 {
    margin: 0;
}
.display-headline-inner > p {
    margin: 0;
}
.misson {
    height: 24px;
    max-width: 100%;
}
@media screen and (max-width:576px) {
    .display-headline-inner {
        margin: 16px;
        padding: 36px 16px;
        gap: 16px;
    }
    img.map-decoration {
        display: none;
    }
}

/* .display-content */
.display-content {
    display: flex;
    justify-content: center;
}
.display-content-reverse {
    display: flex;
    justify-content: center;
}
.display-content-text {
    width: 50%;
    padding: 3.2rem;
    box-sizing: border-box;
    background: #fff;
}
.display-content-img {
    width: 50vw;
    height: auto;
    min-height: calc(50vw*5/8);
    position: relative;
}
.display-content-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.display-content-img.l {
    width: 50vw;
    height: auto;
}
@media screen and (max-width: 992px) {
    .display-content {
        flex-direction: column-reverse;
    }
    .display-content-text {
        width: 100%;
    }
    .display-content-img {
        width: calc(100% - 64px);
        margin: auto;
    }
    .display-content-reverse {
        flex-direction: column;
    }
    .display-content-img.l {
        width: calc(100% - 64px);
    }
    .display-content-img.high {
        aspect-ratio: 1/1;
    }
}
@media screen and (max-width: 576px) {
    .display-content-text {
        padding: 24px 16px;
    }
    .display-content-img {
        width: 100%;
        aspect-ratio: 16/9;
    }
    .display-content-img.l {
        width: 100%;
    }
}

/* .display-content-imgandtext */
.display-content-imgandtext {
    width: 50vw;
    display: flex;
    flex-direction: column;
}
.display-content-imgandtext > .display-content-text {
    width: 100%;
}
.display-content-sub-img {
    display: flex;
}
.display-content-sub-img > img {
    width: 50%;
}
@media screen and (max-width: 992px) {
    .display-content-imgandtext {
        width: 100vw;
        flex-direction: column-reverse;
    }
    .display-content-sub-img {
        padding: 0 32px;
    }
}
@media screen and (max-width: 576px) {
    .product-logo {
        height: 36px;
        margin-top: 12px;
    }
    .display-content-sub-img {
        padding: 0;
    }
}

/* .display-gap-decoration */
.display-gap-decoration {
    display: flex;
}
.display-gap {
    width: 50vw;
    height: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    margin-bottom: -1px;
    margin-top: -1px;
}
.display-gap.forkv {
    border-left: solid 1px #000;
}
.line {
    width: 100%;
    height: 1px;
    background-color: #000;
}
.display-gap-grid {
    width: 50vw;
    height: 32px;
    --grid-size: 16.6666666vw;
    --grid-strength: 1px;
    --grid-dash: 3px;
    --grid-gap: 3.7px;
    --grid-color: #bbb;
    --paper-color: #fff;
    background-color: var(--paper-color);
    background-size: var(--grid-gap) var(--grid-gap), var(--grid-size) var(--grid-size);
    background-image:
    linear-gradient(to bottom, transparent var(--grid-dash), var(--paper-color) var(--grid-dash)), 
    linear-gradient(to right, var(--grid-color) var(--grid-strength), transparent var(--grid-strength)),
    linear-gradient(to right, transparent var(--grid-dash), var(--paper-color) var(--grid-dash)),
    linear-gradient(to bottom, var(--grid-color) var(--grid-strength), transparent var(--grid-strength));
    position: relative;
}
.display-gap-grid:after {
    content: "";
    width: 2.4rem;
    height: 32px;
    position: absolute;
    top: 0;
    right: 0;
    border-left: dashed 1px #bbb;
}
.display-gap-grid.forkv::after {
    content: "";
    width: 3.1rem;
    height: 32px;
    position: absolute;
    top: 0;
    left: 0;
    border-right: dashed 1px #bbb;
}
@media screen and (max-width: 576px) {
    .display-gap-grid {
        --grid-size: 25vw;
        height: 16px;
    }
    .display-gap {
        height: 17px;
    }
    .display-gap-grid:after {
        content: "";
        width: 16px;
        height: 16px;
        position: absolute;
        top: 0;
        right: 0;
        border-left: dashed 1px #bbb;
    }
    .display-gap-grid.forkv::after {
        content: "";
        width: 16px;
        height: 16px;
        position: absolute;
        top: 0;
        left: 0;
        border-right: dashed 1px #bbb;
    }
}

/* .display-lists */
.display-list {
    background: #fff;
    display: inline-block;
}
.display-list-ttl {
    margin: 0 3.2rem;
}
.display-list-ttl > h2 {
    margin-top: 3.2rem;
    margin-bottom: 0;
}
.display-list-inner {
    display: flex;
}
.display-list-inner-img {
    width: calc(100vw*1/3);
    height: calc(100vw*1/3);
    position: relative;
}
.display-list-inner-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3.2rem;
}
.display-list-inner-text {
    width: calc(100vw*2/3);
    padding: 3.2rem;
    box-sizing: border-box;
}
@media screen and (max-width: 576px) {
    .display-list-ttl {
        margin: 0 16px 12px 16px;
    }
    .display-list-inner {
        flex-direction: column;
        margin-bottom: 24px;
    }
    .display-list-inner-img {
        width: calc(100% - 32px);
        height: auto;
        aspect-ratio: 16/9;
        margin: auto;
    }
    .display-list-inner-img > img {
        padding: 0;
        border: solid 1px #000;
    }
    .display-list-inner-text {
        width: calc(100% - 32px);
        margin: auto;
        padding: 0;
    }
}

/* .display-content-article */
#News {
    background: #fff;
}
.display-content-article-ttl {
    padding: 32px 32px 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2861A3;
    display: inline-block;
    vertical-align: super;
    margin-left: 2px;
}
.display-content-article-ttl-link {
    display: flex;
    align-items: baseline;
    transition: all ease .2s;
}
.display-content-article-ttl-link:hover {
    cursor: pointer;
    opacity: .7;
}
.display-content-article-ttl-link:hover > * {
    cursor: pointer;
}
.display-content-article-ttl-link > p {
    margin: 0;
}
.article-ttl-link-icon {
    margin-left: 4px;
}
.display-content-article-list {
    display: flex;
    justify-content: center;
    padding: 32px;
    gap: 32px;
}
.article-wrapper-top {
    width: 33.333333%;
    transition: all ease .2s;
}
.article-wrapper-top:hover > * {
    cursor: pointer;
    opacity: .7;
}
.article-content-wraper:hover > * {
    cursor: pointer;
}
.article-wrapper-top:hover {
    cursor: pointer!important;
    opacity: .7;
}
.article-thumb-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 760 / 440;
}
.article-thumb-wrapper:hover > * {
    cursor: pointer;
}
.article-thumb-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: solid 1px #000;
}
.article-thumb-icon {
    position: absolute;
    padding: 16px;
    top: 0;
    right: 0;
    z-index: 2;
}
.archive-date {
    opacity: .7;
    margin: 8px 0 0 0;
}

/* #Spacemedia */
#Spacemedia {
    background: #fff;
}
.spacemedia-logo {
    height: 26px;
    width: auto;
    object-fit: contain;
}

/* =============================================
Swiper.js
============================================= */
.swiper {
    width: 100%;
    height: auto;
    padding: 12px 32px 0 32px;
}
.swiper-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 760 / 440;
    border: solid 1px #000;
}
/* SP .btn */
.toppage-link-wrapper {
    padding: 24px 32px;
}
.toppage-link-wrapper > p {
    font-family: "aktiv-grotesk-extended", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.spacemedia-link-wrapper {
    padding: 24px 32px 36px 32px;
}

@media screen and (max-width: 576px) {
    .display-content-article-ttl {
        padding: 24px 16px 0 16px;
    }
    .display-content-article-ttl.spacemedia-wrapper {
        padding: 36px 16px 0 16px;
    }

    .swiper {
        padding: 16px 0 0 16px;
    }
    .toppage-link-wrapper {
        padding: 24px 16px;
    }
    .spacemedia-link-wrapper {
        padding: 24px 16px 36px 16px;
    }
}



/* =============================================
About Us Page
============================================= */
.display-content-img > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
th {
    text-align: start;
    padding: 4px 24px 4px 0;
    display: flex;
    flex-direction: column;
}
td {
    padding: 4px 0;
}

/* =============================================
Privacy Policy Page
============================================= */
.content-inner {
    width: calc(100% - 64px);
    padding: 160px 0 64px 0;
    margin: auto;
}
.policy-headline {
    margin-top: 2.8rem;
    margin-bottom: 0;
    font-family: "aktiv-grotesk-extended", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.policy-ttl-en, .quality-ttl-en {
    display: inline-block;
}
.policy-ttl-en > img {
    max-height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.quality-ttl-en > img {
    max-height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.quality-ttl-en {
    margin-top: 100px;
}
@media screen and (max-width: 576px) {
    .content-inner {
        width: calc(100% - 32px);
        padding: 72px 0;
        margin: auto;
    }
}

/* =============================================
Contact Us Page
============================================= */
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    padding: 6px 12px;
    width: max-content;
    transition: all ease .2s;
    background: #000;
    color: #fff;
    font-size: 1.4rem;
    width: 100%;
}
.wpcf7-list-item {
    margin: 0!important;
}
.policy-link {
    text-decoration: underline;
    transition: all ease .2s;
}
.policy-link:hover {
    opacity: .7;
}
.contact-ttl {
    margin-bottom: 36px;
    max-height: 80px;
    height: 100%;
}
.contact-ttl > img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
input:focus, textarea:focus {
    outline: solid 1px #000;
}
input[type="checkbox"] {
    accent-color: #000;
}
.contact-wrapper {
    width: calc(100vw*2/3 - 64px);
    margin: auto;
    padding: 160px 0 64px 0;
}
@media screen and (max-width: 768px) {
    input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
        width: 100%;
    }
    textarea.wpcf7-form-control.wpcf7-textarea {
        width: 100%;
    }
    input.wpcf7-form-control.wpcf7-submit.has-spinner {
        width: 100%;
    }
    .acceptance-wraper > p {
        text-align: center;
    }
    .contact-wrapper {
        width: calc(100vw - 64px);
        margin: auto;
        padding: 160px 0 64px 0;
    }
}
@media screen and (max-width: 576px) {
    .contact-wrapper {
        width: calc(100vw - 32px);
        padding: 88px 0 64px 0;
    }
}

/* =============================================
Thank You Page
============================================= */
.thanks-page-content {
    min-height: calc(100svh - 200px);
}

/* =============================================
Footer
============================================= */
footer {
    padding: 0 2.4rem;
    --grid-size: 16.6666666vw;
    --grid-strength: 1px;
    --grid-dash: 3px;
    --grid-gap: 3.7px;
    --grid-color: #bbb;
    --paper-color: #fff;
    background-color: var(--paper-color);
    background-size: var(--grid-gap) var(--grid-gap), var(--grid-size) var(--grid-size);
    background-image:
    linear-gradient(to bottom, transparent var(--grid-dash), var(--paper-color) var(--grid-dash)), 
    linear-gradient(to right, var(--grid-color) var(--grid-strength), transparent var(--grid-strength)),
    linear-gradient(to right, transparent var(--grid-dash), var(--paper-color) var(--grid-dash)),
    linear-gradient(to bottom, var(--grid-color) var(--grid-strength), transparent var(--grid-strength));
}
.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 0 1.6rem;
    border-left: dashed 1px #bbb;
    border-right: dashed 1px #bbb;
}
.footer-content-inner {
    padding: 2.4rem 0;
    font-family: "aktiv-grotesk-extended", "Noto Sans JP", sans-serif;
    font-style: normal;
}
.footer-content-inner:last-of-type {
    display: flex;
    gap: 4.8rem;
}
ul.footer-content-list {
    list-style: none;
    padding-left: 0;
}
.footer-content-list > li > a {
    font-family: "aktiv-grotesk-extended", "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-decoration: none!important;
}
.footer-content-list > li {
    font-family: "aktiv-grotesk-extended", "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 12px;
}
.footer-content-list-desc {
    list-style: disc;
    padding-left: .8rem;
}
.footer-content-list-desc > li {
    margin-left: 1.2em;
}
.footer-content-list-desc > li > a {
    text-decoration: none!important;
}
ul.contact-list {
    list-style: none;
    padding-left: 0;
}
.footer-logo-link {
    transition: all ease .2s;
}
.footer-logo-link:hover {
    cursor: pointer!important;
    opacity: .7;
}
.footer-logo-link:hover > * {
    cursor: pointer;
}
.footer-logo-img {
    height: 24px;
}
.icon-jp {
    height: 11px;
    margin-left: 4px;
    margin-top: 2px;
}
.icon-jp:hover {
    cursor: pointer;
}
.copyright {
    opacity: .7;
    font-size: 12px;
}
@media screen and (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    .footer-content-inner:first-of-type {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .footer-content-inner:last-of-type {
        justify-content: space-between;
    }
}
@media screen and (max-width: 576px) {
    footer {
        padding: 0 16px;
        --grid-size: 25vw;
        --grid-strength: 1px;
        --grid-dash: 3px;
        --grid-gap: 3.7px;
        --grid-color: #bbb;
        --paper-color: #fff;
        background-color: var(--paper-color);
        background-size: var(--grid-gap) var(--grid-gap), var(--grid-size) var(--grid-size);
        background-image:
        linear-gradient(to bottom, transparent var(--grid-dash), var(--paper-color) var(--grid-dash)), 
        linear-gradient(to right, var(--grid-color) var(--grid-strength), transparent var(--grid-strength)),
        linear-gradient(to right, transparent var(--grid-dash), var(--paper-color) var(--grid-dash)),
        linear-gradient(to bottom, var(--grid-color) var(--grid-strength), transparent var(--grid-strength));
    }
    .footer-content-inner:last-of-type {
        display: none;
    }
}

/* =============================================
Mouse Stalker
============================================= */
#MouseStalker {
    pointer-events: none;
    position: fixed;
    top: -32px;
    left: -32px;
    width: 64px;
    height: 64px; 
    background: rgba(255, 255, 255, .8);
    mix-blend-mode: exclusion;
    border-radius: 50%;
    transform: translate(0, 0);
    /*transition: transform 0.2s;*/
    transition-timing-function: ease-out;
    z-index: 2000;
}
@media screen and (max-width: 576px) {
    #MouseStalker {
        display: none;
    }
}

/* =============================================
reCAPTCHA
============================================= */
.grecaptcha-badge {
    visibility: hidden;
    z-index: -100;
}


/* =============================================
Header / Gnav 日本語タイトル
============================================= */
.gnav-menu-list li > a > span {
    font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
    .gnav-menu-list li > a > span {
        text-align: center;
    }
}


/* =============================================
Display 日本語タイトル
============================================= */
.display-kv-text-wrapper > p {
    text-align: start;
    margin-block-start: .8rem;
    margin-block-end: 0rem;
    font-size: 1.8rem;
}
@media screen and (max-width: 780px) {
    .display-kv-text-wrapper > p {
        font-size: 1.4rem;
    }
}


/* =============================================
Product Page クラウドファンディング
============================================= */

.display-content.crowdfunding {
    justify-content: flex-start;
}
.display-content-text.crowdfunding-ttl {
    background: none;
    padding-bottom: 0;
}
.display-content-text.crowdfunding-content {
    background: none;
    margin-bottom: 28px;
}
@media screen and (max-width: 992px) {
    .display-content-text.crowdfunding-content:first-of-type {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .display-content-text.crowdfunding-content:last-of-type {
        padding-top: 0;
    }
}

/* =============================================
About Us Page 日本語版
============================================= */
.certification {
    display: flex;
    justify-content: space-between;
    padding-bottom: 4px;
}
.certification > img {
    height: 48px;
    padding-left: 16px;
}
th {
    width: 100px;
}
@media screen and (max-width: 1040px) {
    table {
        margin-bottom: 12px;
    }
    th {
        font-weight: bold;
    }
    td {
        display:block;
        padding-top: 0px;
        padding-bottom: 8px;
    }
}


/* =============================================
Privacy Policy Page 日本語タイトル
============================================= */
.policy-ttl {
    margin-top: 8px;
    margin-bottom: 36px;
}


/* =============================================
Reset & Others
============================================= */
ul.list-alphabet > li {
    padding-bottom: 4px;
}