@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap');

/*==============
    common
===============*/
@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?ch1k2p');
    src: url('../fonts/icomoon.eot?ch1k2p#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?ch1k2p') format('truetype'),
        url('../fonts/icomoon.woff?ch1k2p') format('woff'),
        url('../fonts/icomoon.svg?ch1k2p#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    /* color */
    --black: #262626;
    --gray: #f2f2f2;
    --red: #df7076;
    --color1: #c4d8df;
    --color2: #b4c8cf;
    --color3: #e2eaed;
    /* font */
    --en: 'Jost', sans-serif;
    --jp: 'Noto Sans JP', sans-serif;
}

::selection {
    background: var(--color1);
    color: var(--black);
}

::-moz-selection {
    background: var(--color1);
    color: var(--black);
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

img {
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    image-rendering: -webkit-optimize-contrast;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    user-select: none;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body {
    font-size: 1.4rem;
    font-family: var(--jp);
    font-weight: 500;
    color: var(--black);
    animation: fadeIn 4s forwards;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: initial;
    transition: 0.4s all;
    word-break: break-all;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.hover {
    transition: 0.4s all;
}

.hover:hover {
    opacity: 0.5;
}

.text-center {
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .wrap {
        width: 90%;
        max-width: initial;
    }
}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/*==============
    common
===============*/
.indent {
    text-indent: -0.8rem;
    padding-left: 0.8rem;
    display: block;
}

.cap {
    font-size: 1.2rem;
    text-indent: -1rem;
    padding-left: 1rem;
    display: block;
}

/* anime */
.anime {
    position: relative;
    overflow: hidden;
}

.anime::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--color1);
    z-index: 2;
    transition: .8s;
}

.anime.show::before {
    transform: translateX(100%);
}

.anime img {
    opacity: 0;
    transition: .8s;
}

.anime.show img {
    opacity: 1;
}

/* toppage */
h2 {
    font-family: var(--en);
    font-size: clamp(3.2rem, 7.6vw, 5.6rem);
    margin-bottom: 45px;
    letter-spacing: 0.05em;
}

/* subpage */
.subpage h2 {
    font-family: var(--en);
    font-size: clamp(3.2rem, 7.27vw, 4rem);
    margin-bottom: 48px;
}

section.subpage {
    margin: 160px 0 125px;
}

.subpage h3 {
    font-size: 1.8rem;
    padding-bottom: 17px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 19px;
    line-height: 1.8;
    font-weight: bold;
}

/* google material_icons */
.material-icons.md-18 {
    font-size: 18px;
}

.material-icons.md-20 {
    font-size: 20px;
}

.material-icons.md-24 {
    font-size: clamp(1.4rem, 3.73vw, 1.6rem);
}

.material-icons.md-36 {
    font-size: 36px;
}

.material-icons.md-48 {
    font-size: 48px;
}

/* view more */
/* view more */
#gallery .moreBtn {
    position: absolute;
    right: 32px;
    bottom: 40px;
}

.moreBtn {
    text-align: right;
    letter-spacing: 0.072em;
}

.moreBtn a {
    padding-right: 50px;
    position: relative;
    font-size: 1.6rem;
    font-family: var(--en);
}

.moreBtn.white a {
    color: #fff;
}

.moreBtn a:hover {
    color: var(--color1);
}

.moreBtn a .icon-add-outline {
    position: absolute;
    bottom: 2px;
    right: 0;
}

.icon-add-outline:before {
    content: "\e902";
    font-size: 2rem;
}

/* pagination  PREV 1 2 3 NEXT*/
.pagination1 {
    display: flex;
    justify-content: center;
    gap: 6%;
    margin-top: 56px;
}

#movie .pagination1,
#special .pagination1,
#photo .pagination1 {
    margin-top: 56px;
}

.pagination1 content {
    font-size: initial;
    font-family: var(--en);
    margin-right: 3%;
}

.pagination1 content a {
    color: var(--black);
}

.pagination1 content:last-child {
    margin-right: 0;
}

.pagination1 a .material-icons {
    vertical-align: sub;
}

.pagination1 span.current {
    color: #aaa;
    font-family: var(--en);
    line-height: 1.8;
}

/* pagination  BACK/PREV */
.pagination2 {
    display: flex;
    justify-content: center;
    gap: 10%;
}

.pagination2 a {
    line-height: 22px;
    display: inherit;
}

.pagination2 a:hover {
    opacity: 0.5;
}

.pagination2 a .prev {
    padding-right: 24px;
}

.pagination2 a .next {
    padding-left: 24px;
}

.pagination2 content {
    font-size: 20px;
    font-family: var(--en);
    margin-right: 3%;
}

.pagination2 content a {
    color: #fff;
}

.pagination2 content a:hover {
    color: var(--color2);
}

.pagination2 content:last-child {
    margin-right: 0;
}

.pagination2 a .material-icons {
    vertical-align: sub;
}

@media screen and (max-width: 1000px) {
    section.subpage {
        margin-top: 140px;
    }
}

@media screen and (max-width: 768px) {
    h2 {
        margin-bottom: 24px;
    }

    .subpage h2 {
        margin-bottom: 32px;
    }

    .subpage h3 {
        font-size: 1.6rem;
        line-height: 1.5;
    }

    .pagination1 {
        gap: 8vw;
    }

    /* pagination  PREV 1 2 3 NEXT*/
    .pagination1 content {
        font-size: 16px;
    }

    .pagination1 a .material-icons {
        font-size: 14px;
    }

    /* pagination  BACK/PREV*/
    .pagination2 content {
        font-size: 16px;
        margin-right: 5%;
    }

    .pagination2 a .material-icons {
        font-size: 22px;
    }
}

@media screen and (max-width: 420px) {
    section.subpage {
        margin: 110px 0 80px;
    }

    /* more */
    .moreBtn a {
        padding-right: 24px;
        font-size: 1.2rem;
    }

    .icon-add-outline:before {
        font-size: 1.3rem;
    }
}

/*==============
    header
===============*/
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

header .pc .wrap {
    width: 90%;
    max-width: initial;
    padding-top: 2.3vw;
}

header .pc .naviwrap {
    width: calc(100% - 12.35%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .pc .naviwrap .logo h1 a img {
    width: 100%;
    max-width: 200px;
}

header .pc .naviwrap .nav {
    display: flex;
    align-items: center;
}

header .pc .naviwrap .nav .txt ul {
    display: flex;
    gap: 24px;
}

header .pc .naviwrap .nav .txt ul li a {
    font-size: 1.4rem;
    font-family: var(--en);
}

header .pc .naviwrap .nav .sns {
    margin-left: 32px;
}

header .pc .naviwrap .nav .sns ul {
    display: flex;
    gap: 18px;
}

header .pc .naviwrap .nav .sns ul li a {
    font-size: 1.7rem;
}

header .pc .naviwrap .nav .sns ul li a:hover {
    color: var(--color2);
}

.icon-twitter-x-seeklogocom-4:before {
    content: "\e901";
    font-family: "icomoon";
}

.icon-instagram:before {
    content: "\e900";
    font-family: "icomoon";
}

.icon-line:before {
    content: "\e907";
    font-family: "icomoon";
}

.icon-tiktok:before {
    content: "\e909";
    font-family: "icomoon";
}

.icon-youtube:before {
    content: "\e908";
    font-family: "icomoon";
}

header .pc .fcwrap {
    position: fixed;
    right: 0;
    top: 0;
}

header .pc .fcwrap ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .pc .fcwrap ul li a {
    width: 6.94vw;
    height: 6.94vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

header .pc .fcwrap ul li a i {
    font-size: 1.6rem;
    color: #fff;
    font-family: var(--en);
    position: relative;
    z-index: 1;
}

header .pc .fcwrap ul li:nth-child(1) a {
    background-color: var(--color1);
    margin-right: 2px;
}

header .pc .fcwrap ul li:nth-child(2) a {
    background-color: var(--color2);
}

/* join / login */
.btn a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .7s cubic-bezier(.19, 1, .22, 1);
}

.btn a:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn a .inner-text {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
}

header .pc .fcwrap ul li:nth-child(1) a:before {
    background: var(--color2);
    margin-right: 2px;
}

header .pc .fcwrap ul li:nth-child(2) a:before {
    background: var(--color1);
}

.subpage header::after {
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -100;
    box-shadow: 0 0 90px 100px #fff;
}

@media screen and (max-width: 1200px) {
    h1.logo img {
        display: none;
    }

    .subpage h1.logo img {
        display: block;
    }

    .headerColorScroll h1.logo img,
    .subpage h1.logo img {
        display: block !important;
        width: 100%;
        max-width: 170px;
        position: fixed;
        top: 25px;
        left: 30px;
    }

    header .pc {
        display: none;
    }

    header .sp {
        display: block;
    }

    header .sp .sns ul {
        display: flex;
        gap: 24px;
    }

    header .sp .sns {
        position: absolute;
        right: 90px;
        top: 35px;
    }

    header .sp .sns ul li a i {
        font-size: 1.8rem;
    }

    /* hamburger */
    .hamburger {
        position: absolute;
        right: 30px;
        top: 25px;
        width: 40px;
        height: 30px;
        cursor: pointer;
        z-index: 600;
    }

    .hamburger__line {
        position: absolute;
        width: 30px;
        height: 3px;
        right: 0;
        background-color: #262626;
        transition: all 0.5s;
    }

    .hamburger__line--1 {
        top: 1px;
    }

    .hamburger__line--2 {
        top: 11px;
    }

    .hamburger__line--3 {
        top: 22px;
    }

    .open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 11px;
    }

    .open .hamburger__line--2 {
        opacity: 0;
    }

    .open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 11px;
    }

    .sp-nav {
        position: fixed;
        right: -100%;
        top: 0;
        width: 40%;
        height: 100vh;
        background-color: var(--gray);
        transition: all 0.5s;
        z-index: 500;
        overflow-y: auto;
        overflow-x: scroll;
    }

    .open .sp-nav {
        right: 0;
        padding: 30px 30px 80px 30px;
        height: 100%;
        overflow: auto;
    }

    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: #000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 100;
    }

    .open .black-bg {
        opacity: 0.3;
        visibility: visible;
    }

    .sp-nav h1 {
        max-width: 200px;
        width: 100%;
        margin-bottom: 50px;
        position: initial !important;
    }

    .sp-nav ul li {
        padding: 15px 10px;
        border-bottom: 1px solid #e1e1e1;
    }

    .sp-nav ul li a {
        font-size: 1.6rem;
        font-family: var(--en);
        color: var(--black);
        display: block;
    }

    .sp-nav .fcwrap-in {
        margin: 40px 0;
    }

    .sp-nav .fcwrap-in ul {
        display: flex;
        gap: 16px;
    }

    .sp-nav .fcwrap-in ul li {
        border-bottom: 0;
        width: 50%;
        padding: 0;
    }

    .sp-nav .fcwrap-in ul li a {
        background: #fff;
        color: var(--black);
        display: block;
        padding: 24px 0;
        text-align: center;
    }

    .sp-nav .fcwrap-in ul li:hover a,
    .sp-nav .other ul li:hover {
        opacity: 0.5;
    }

    header h1 {
        display: block !important;
    }

    .sp-nav .other ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .sp-nav .other ul li {
        border-bottom: 0;
        width: 44%;
        padding: 8px 0;
    }

    .sp-nav .other ul li a {
        font-size: 1.4rem;
        font-family: var(--jp);
    }

    .sp-nav .other ul.logo {
        margin-top: 24px;
        margin-bottom: 100px;
        justify-content: flex-start;
        gap: 10%;
    }
}

.sp-nav .other ul.logo li {
    width: 25%;
}

@media screen and (max-width: 1000px) {
    header .sp .sns ul li a i {
        color: #a3a3a3;
    }

    header.headerColorScroll .sp .sns ul li a i,
    .subpage .sp .sns ul li a i {
        color: #262626;
    }

    .hamburger__line {
        background-color: #fff;
    }

    .headerColorScroll .hamburger__line {
        background-color: #c6c6c6;
    }

    .subpage .hamburger__line,
    .subpage .headerColorScroll .hamburger__line {
        background-color: #262626;
    }

    .headerColorScroll .open .hamburger__line {
        background-color: var(--black);
    }
}

@media screen and (max-width: 768px) {
    .sp-nav {
        width: 80%;
    }
}

@media screen and (max-width: 420px) {
    .sp-nav .other ul li {
        padding: 4px 0;
    }

    .sp-nav .other {
        margin-top: 32px;
    }

    .sp-nav .other ul.logo {
        display: flex;
        margin-top: 20px;
    }

    .sp-nav .other ul.logo li {
        width: 25%;
    }

    .sp-nav .other ul li img {
        width: 200px;
    }

    .sp-nav .other ul li a {
        font-size: 1.1rem;
    }

    .sp-nav h1 {
        margin-bottom: 24px;
        max-width: 150px;
        position: static !important;
    }

    .subpage header::after {
        box-shadow: 0 0 90px 80px #fff;
    }

    .headerColorScroll h1.logo img,
    .subpage h1.logo img {
        max-width: 130px;
        top: 25px;
        left: 20px;
    }

    .hamburger {
        right: 20px;
        top: 20px;
    }
}

/*==============
    footer
===============*/
footer {
    background: #f2f2f2;
    margin-top: auto;
}

footer .wrap {
    width: 90%;
    max-width: initial;
    padding: 100px 0 80px;
}

footer .nav {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 32px;
}

footer .nav li a {
    font-size: 1.4rem;
    color: var(--black);
}

footer .flex {
    display: flex;
    justify-content: space-between;
}

footer .flex .left ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

footer .flex .right p {
    font-family: var(--en);
    font-size: 10px;
    color: var(--black);
    text-align: right;
}

footer .flex .left ul li {
    max-width: 200px;
    display: block;
}

footer .flex .left ul li:nth-child(1) {
    max-width: 110px;
}

@media screen and (max-width: 1200px) {
    footer .nav {
        display: none;
    }

    footer .flex .left {
        display: none;
    }

    footer .flex .right {
        width: 100%;
    }

    footer .flex .right p {
        text-align: center;
    }

    footer .wrap {
        padding: 20px 0;
    }
}

/*==============
    comingsoon
===============*/
.comingsoonwrap {
    padding: 80px 0;
}

.comingsoon {
    font-size: 4rem;
    font-family: var(--en);
    color: #ccc;
    text-align: center;
    margin-bottom: 2rem;
}

.comingsoonSub {
    font-size: 1.8rem;
    font-family: var(--jp);
    color: #ccc;
    text-align: center;
}

@media screen and (max-width: 420px) {
    .comingsoon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .comingsoonSub {
        font-size: 1.6rem;
    }
}