@charset "utf-8";

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style-type: none;
}

img {
    vertical-align: bottom;
}

body {
    background-color: #303030;
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
nav,
p,
small {
    color: #fff;
    display: flex;
    justify-content: center;
}

h1 {
    font-size: 10px;
}

h2 {
    font-size: 48px;
    font-weight: bold;
    padding: 100px 0;
}

h3 {
    font-size: 36px;
    vertical-align: baseline;
}

p {
    font-size: 16px;
}

.planet p,
.planet dl {
    text-shadow: 1px 1px 1px #000;
}


/* !header */

.round {
    width: 200px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 99;
    animation: rotation 4s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* .top {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.slider-container {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-size: cover;
}

.slideimg {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    animation: slideAnime 15s infinite;
}

.slideimg img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* スライド個別設定 */
.slideimg:nth-of-type(1) {
    animation-delay: 0s;
}

.slideimg:nth-of-type(2) {
    animation-delay: 3s;
}

.slideimg:nth-of-type(3) {
    animation-delay: 6s;
}

.slideimg:nth-of-type(4) {
    animation-delay: 9s;
}

.slideimg:nth-of-type(5) {
    animation-delay: 12s;
}

@keyframes slideAnime {

    0%,
    30%,
    100% {
        opacity: 0;
    }

    10%,
    20% {
        opacity: 1;
    }
}

.logo {
    width: 200px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 99;
    animation: rotation 4s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.header_in {
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.header_in img {
    width: 30px;
    height: 30px;
    margin: 0 20px;
}

.header_in img:hover {
    transform: scale(1.2);
    transition: all .2s;
}

.headerL {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-left: 20px;
    margin-bottom: 10px;
}

h1 {
    margin-left: 10px;
    vertical-align: center;
}

.headerR {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-right: 20px;
    margin-bottom: 10px;
}

.mainNav {
    opacity: 0;
    clip-path: none;
    width: 300px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    transform: translateX(100%);
    transition: all 0.5s;
    z-index: 2;
    background-color: #00000000;
    font-size: 20px;
    color: #fff;
    pointer-events: none;
}

.mainNav.is-show {
    opacity: 1;
    background-color: rgba(59, 59, 59, 0.815);
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
    transition: all 0.5s;
    pointer-events: all;
}

.hoverAnime {
    display: block;
    width: fit-content;
    font-size: 20px;
    line-height: 25px;
    height: 25px;
    overflow: hidden;
    margin: 20px;
}

.hoverAnime span {
    display: block;
    transition: all 0.5s;
}

.hoverAnime:hover span {
    transform: translateY(-100%);
}

/* ↓ハンバーガーメニュー */

.btn {
    width: 30px;
    height: 30px;
    background-color: #00000000;
    border-color: #00000000;
    margin: 0 20px;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.2);
    transition: all .2s;
}

.line,
.line::before,
.line::after {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    transition: all 0.5s 0.5s, rotate 0.5s 0s;
}

.line::before,
.line::after {
    content: '';
    position: absolute;
    left: 0;
}

.line::before {
    top: -10px;
}

.line::after {
    top: 10px;
}

.is-show .line {
    background-color: #00000000;
}

.is-show .line::before {
    top: 0;
    rotate: 405deg;
    transition: all 0.5s 0s,
        rotate 0.5s 0.5s;
}

.is-show .line::after {
    top: 0;
    rotate: -405deg;
    transition: all 0.5s 0s,
        rotate 0.5s 0.5s;
}

/* ↑ハンバーガーメニュー */

#pagetop {
    position: fixed;
    z-index: 999;
    bottom: 0;
    right: 0;
    margin-right: 20px;
    margin-bottom: 30px;
}

#pagetop img {
    width: 30px;
    height: 30px;
    margin: 0 20px;
}

#pagetop img:hover {
    transform: scale(1.2);
    transition: all .2s;
}


.nav_label {
    width: 100px;
    height: 600px;
    position: fixed;
    bottom: 0px;
    left: 20px;
    z-index: 99;
}

.nav_label ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.nav_label img {
    width: 70px;
    height: fit-content
}

.nav_label img:hover {
    transform: scale(1.5);
    transition: all .2s ease;
}


/* !label */


.label ul {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    padding: 50px 20px;
    flex-wrap: nowrap;
}

.label img {
    width: 180px;
}

.label img:hover {
    transform: scale(1.5);
    transition: all .2s ease;
}

/* !concept */

/* ↓フェードインの設定 */

.inview {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 1s,
        opacity 2s;
}

.inview.show {
    transform: translateY(0);
    opacity: 1;
}

.inview2 {
    opacity: 0;
    transition: transform 1s,
        opacity 2s;
}

.inview2.show {
    opacity: 1;
}

.inviewR {
    transform: translateX(50px);
    opacity: 0;
    transition: transform 3s,
        opacity 2s;
}

.inviewR.show {
    transform: translateX(0);
    opacity: 1;
}

.inviewL {
    transform: translateX(-50px);
    opacity: 0;
    transition: transform 3s,
        opacity 2s;
}

.inviewL.show {
    transform: translateX(0);
    opacity: 1;
}

/* ↑フェードインここまで */

.concept {
    width: 100%;
    height: 100vh;
    /* background-color: rgba(59, 59, 59, 0.815); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-image: url(./img/pixt/main.jpg); */
    background-image: url(./img/pixt/main2.jpg);
    filter: saturate(50%);
    background-repeat: repeat-x;
    background-size: cover;
    position: relative;
}

.concept h3,
.concept p {
    text-shadow: 2px 2px 2px #9ac8c6;
    vertical-align: bottom;
}

.concept p {
    text-align: center;
    margin-top: 20px;
}

[data-ruby] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

[data-ruby]::before {
    content: attr(data-ruby);
    position: absolute;
    top: -1em;
    margin: auto;
    font-size: 0.5em;
}

/* !product */

.planet {
    display: flex;
    /* justify-content: space-around; */
    width: 100%;
    height: 100vh;
    padding-left: 100px;
    /* background-image: url(./img/pixt/main2.jpg);
    background-repeat: no-repeat;
    background-size: cover; */
    position: relative;
}

.right {
    flex-direction: row-reverse;
    padding-right: 100px;
}

.planet .static {
    width: 700px;
    height: fit-content;
    object-fit: cover;
}

.saturnCOVER {
    position: absolute;
    top: 0;
    right: 100px;
    z-index: 3;
}

.planet .sign {
    width: 70px;
    height: fit-content;
    margin-top: 110px;
    object-fit: cover;
}

.planet .sign:hover {
    transform: scale(1.2);
    transition: all .2s ease;
}

dl {
    color: #fff;
    font-weight: bold;
    font-size: 36px;
    margin-top: 100px;
    margin-left: 20px;
}

.right dl {
    margin-left: 0px;
    margin-left: 100px;
}

dt p {
    display: block;
    font-size: 20px;
}

dt::after {
    content: "";
    display: block;
    background-color: #fff;
    width: 100%;
    height: 3px;
    transform: scaleX(0%);
    transform-origin: 0;
    transition: all 2s, transform-origin 0s;
}

dt:hover::after {
    transform: scaleX(100%);
    transform-origin: 0;
}

dd {
    font-weight: normal;
    font-size: 16px;
    margin-top: 40px;
    line-height: 50px;
}


.roundL {
    width: 330px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 105px;
    left: 285px;
    z-index: 99;
    animation: rotation 10s linear infinite;
    filter: drop-shadow(4px 4px 10px #000);
}

.roundR {
    width: 330px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 105px;
    right: 285px;
    z-index: 99;
    animation: rotation 10s linear infinite;
    filter: drop-shadow(4px 4px 10px #000);
}

.roundS {
    width: 330px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 105px;
    right: 285px;
    z-index: 1;
    animation: rotation 10s linear infinite;
    filter: drop-shadow(4px 4px 10px #000);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* !planet-backgroundcolor */

.mercury {
    background-color: #303030;
}

.venus {
    background-color: #b5843f;
}

.earth {
    background-color: #0e1c3a;
}

.mars {
    background-color: #9e3f00;
}

.jupiter {
    background-color: #443018;
}

.saturn {
    background-color: #b1a57d;
}

.saturnRE {
    display: none;
}

.uranus {
    background-color: #9ac8c6;
}

.neptune {
    background-color: #1f1ca9;
}

/* !footer */

footer {
    display: flex;
    justify-content: space-between;
    padding: 50px 100px 50px 100px;
    background-image: url(./img/pixt/starsky.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

section {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 0 0 0 20px;
}

section img {
    width: 100px;
    height: fit-content;
}

section h3 {
    margin-left: 20px;
}

.under {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px 0;
}

.under_nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sns {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 20px;
}

.sns img {
    width: 25px;
    height: fit-content;
}




/* !ここからレスポンシブ？ */

@media (max-width: 800px) {

    .top {
        max-width: 768px;
        height: 100vh;
        object-fit: cover;
    }

    .logo {
        opacity: 30%;
    }

    .mainNav {
        z-index: 100;
    }

    .header_in {
        width: 100%;
        max-width: 800px;
    }

    .nav_label {
        opacity: 0;
        visibility: hidden;
    }

    .concept {
        max-width: 768px;
        height: 100vh;
        object-fit: cover;
        background-position: center;
        padding: 100px 0;
    }

    .concept h3 {
        font-size: 24px;
    }

    .concept p {
        font-size: 10px;
        margin-top: 20px;
    }

    .right {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 20px 0 0 20px;
        width: 100%;
        height: 100vh;
        padding-left: 100px;
        position: relative;
    }

    .planet,
    .right {
        max-width: 768px;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px 0 0 20px;
    }

    .planet .static {
        width: 300px;
        padding: 0 auto;
        margin: 100px auto 0;
    }

    .planet dl {
        margin: 20px 0 0 80px;
        padding: 0 0;
    }

    .planet dd {
        font-size: 12px;
    }

    .planet .sign {
        position: fixed;
        top: 0;
        left: 20;
        margin: 120px 0 0 20px;
    }

    .roundL,
    .roundR,
    .roundS {
        display: none;
    }

    .saturnMB {
        display: none;
    }

    .saturnCOVER {
        display: none;
    }

    .saturnRE {
        display: block;
        background-image: url(./img/label/saturnM.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 400px;
        height: fit-content;
        padding: 0 auto;
        margin: 0 auto;
    }

    footer {
        max-width: 768px;
        height: 100vh;
        display: flex;
        flex-direction: column;
        font-size: 10px;
    }

    footer section img {
        width: 100px;
        height: fit-content;
    }

    footer h3 {
        font-size: 30px;
    }

    footer section {
        margin: 100px 0 0 0;
    }

    footer .sns {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        column-gap: 50px;
        margin-bottom: 50px;
    }

    footer .sns img {
        width: 25px;
    }

    #pagetop img {
        width: 50px;
        height: fit-content;
    }

}