@charset "utf-8";

/* CSS Document */


/* ------------------------------------------
  reset
--------------------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
main,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after {
    content: "";
    content: none;
}

q:before,
q:after {
    content: "";
    content: none;
}

abbr {
    text-decoration: none;
}

mark {
    background: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th {
    text-align: left;
}

img {
    vertical-align: top;
}

hr {
    height: 0;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-size: 16px;
    line-height: 1.75;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    color: #ede6cd;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: break-all;
    letter-spacing: 1px;
    -webkit-font-feature-settings: "palt";
    -moz-font-feature-settings: "palt";
    font-feature-settings: "palt";
    min-width: 1366px;
    overflow-x: hidden;
}

a {
    color: #333;
    text-decoration: none;
}

/*a:not(.btn):hover {
    opacity: 0.75;
    transition: all 0.1s 0s ease;
}*/

button:focus {
    outline: none;
}


/*a[href^="tel"] {
    color: #fff;
    pointer-events: none;
}*/

.select:focus,
input:focus {
    outline: none;
}

.pc-hide {
    display: none !important;
}

.sp-hide {
    display: block !important;
}

.strong {
    font-weight: 700;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.align-left {
    text-align: left !important;
}

/*星空*/
#particles-js {
    position: fixed;
    /*描画固定*/
    z-index: -1;
    /*描画を一番下に*/
    width: 100%;
    height: 100%;
    background-color: #141413;
    /*背景色*/
}

.main {
    position: relative;
    /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
    z-index: 1;
    /*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
    width: 100%;
    height: 100%;
}


/* ------------------------------------------
  common
--------------------------------------------- */

/*footer*/

.footer {
    margin: 0 auto;
    padding: 20px 0;
    background: #fff;
    font-size: 12px;
    text-align: center;
}


/*section*/
.block {
    width: 1110px;
    margin: 0 auto;
}

.block + .block {
    padding-top: 100px;
}

.section-title {
    margin-bottom: 45px;
}

.section-inner {
    position: relative;
    padding: 50px 0;
    width: 750px;
    margin: 0 auto;
}

[class^="section-inner-line"] {
    position: absolute;
    width: 690px;
    height: 1px;
    background: #ede6cd;
    left: 30px;
}

.section-inner-line-top {
    top: 0;
}

.section-inner-line-bottom {
    bottom: 0;
}

[class^="section-inner-line"]:before,
[class^="section-inner-line"]:after {
    content: "";
    display: block;
    width: 17px;
    height: 20px;
    background: url(../images/icon-star.svg) no-repeat;
    background-size: cover;
    position: absolute;
    top: -10px;
}

[class^="section-inner-line"]:before {
    left: -30px;
}

[class^="section-inner-line"]:after {
    right: -30px;
}

.block p {
    letter-spacing: 2px;
}

/*sanka*/

.sanka-text {
    color: #ff6262;
    line-height: 1.75;
    display: inline-block;
}

.sanka-text a {
    text-decoration: underline;
    color: #ff6262;
}

/*cloud*/
.section-cloud {
    position: relative;
    height: 237px;
}

.section-cloud img {
    position: absolute;
    transition: all 2s;
    opacity: 0;
}

.section-cloud.is-show img {
    opacity: 1;
}

.section-cloud .cloud-l {
    left: -100px;
    bottom: 0;
}

.section-cloud .cloud-r {
    right: -100px;
    bottom: 8px;
}

.section-cloud.is-show .cloud-l {
    left: 40px;
}

.section-cloud.is-show .cloud-r {
    right: 55px;
}

/*------------------------------------
topに戻るボタン
------------------------------------*/
#page_top {
    position: fixed;
    bottom: 40px;
    right: 70px;
    transform: translateY(200px);
}

#page_top.upmove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(200px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#page_top.downmove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(200px);
    }
}


/* ------------------------------------------
  mv
--------------------------------------------- */
.mv {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

.mv-inner {
    width: 1110px;
    height: 100%;
    margin: 0 auto;
    padding: 10vh 0;
    position: relative;
    text-align: center;
}

/*logo*/
.logo {
    display: inline-block;
    opacity: 0;
    transition: all 2s;
}

.mv-loaded .logo {
    opacity: 1;
    position: relative;
    z-index: 2;
}

/*nav*/
.mv-nav {
    display: flex;
    flex-direction: row-reverse;
    opacity: 0;
    transition: all 2s;
    position: absolute;
    top: 10vh;
    right: 0;
}

.mv-loaded .mv-nav {
    opacity: 1;
}

.mv-nav li + li {
    margin-right: 25px;
}

.mv-nav a {
    display: block;
    position: relative;
}

.mv-nav a:hover {
    opacity: 1;
}

.mv-nav a:hover:before,
.mv-nav a:hover:after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    background: url(../images/icon-kirakira.svg) no-repeat;
    background-size: cover;
}

.mv-nav a:hover:before {
    top: -20px;
    right: -15px;
}

.mv-nav a:hover:after {
    bottom: -20px;
    left: -15px;
}

.mv-loaded .mv-nav li {
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* アニメーションスタートの遅延時間を決めるCSS*/

.mv-loaded .mv-nav li:nth-child(1) {
    animation-delay: 0.2s;
}

.mv-loaded .mv-nav li:nth-child(2) {
    animation-delay: 0.4s;
}

.mv-loaded .mv-nav li:nth-child(3) {
    animation-delay: 0.6s;
}

.mv-loaded .mv-nav li:nth-child(4) {
    animation-delay: 0.8s;
}

/*moon*/
.moon {
    position: absolute;
    left: 150px;
    top: 10vh;
    opacity: 0;
    transition: all 2s;
}

.mv-loaded .moon {
    opacity: 1;
}

/*rocket*/
.rocket {
    opacity: 0;
    position: absolute;
    bottom: 260px;
    right: 285px;
    transition: all 2s;
}

.mv-loaded .rocket {
    opacity: 1;
    bottom: 340px;
    right: 205px;
}


/*cloud*/
.mv-cloud img {
    position: absolute;
    transition: all 2s;
    opacity: 0;
}

.mv .cloud-l {
    left: -100px;
    bottom: 10vh;
}

.mv .cloud-r {
    right: -100px;
    bottom: calc(10vh + 10px);
}

.mv-loaded .mv-cloud img {
    opacity: 1;
}

.mv-loaded .cloud-l {
    left: 40px;
}

.mv-loaded .cloud-r {
    right: 40px;
}

/*scroll anime*/
.single-scroll-down-animation {
    position: absolute;
    right: 0;
    bottom: 16vw;
    opacity: 0;
    transition: all 2s;
}

.mv-loaded .single-scroll-down-animation {
    opacity: 1;
}

.single-scroll-down-animation:before {
    content: "";
    display: block;
    width: 9px;
    height: 50px;
    background-size: 9px;
    background: url(../images/scroll.svg) no-repeat;
    position: absolute;
    top: -60px;
    left: -3px;
}

.scroll-down4 {
    width: 1px;
    height: 60px;
    background: #ede6cd;
    animation: scrollDown4 2s ease infinite;
    margin: 0 auto;
}

@keyframes scrollDown4 {
    0% {
        transform-origin: top;
        transform: scaleY(0);
    }

    45% {
        transform-origin: top;
        transform: scaleY(1);
    }

    55% {
        transform-origin: bottom;
        transform: scaleY(1);
    }

    100% {
        transform-origin: bottom;
        transform: scaleY(0);
    }
}

@media screen and (max-width: 1366px) {
    .mv-inner {
        padding: 4vh 0;
    }
    
    .mv .cloud-l {
        bottom: 3vw;
    }

    .mv .cloud-r {
        bottom: 0;
    }
    
    .single-scroll-down-animation {
        bottom: 3vw;
    }
    
}

/* ------------------------------------------
  about
--------------------------------------------- */
.about-lead {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 3px;
    padding-bottom: 35px;
}

#about p {
    line-height: 2.4;
    letter-spacing: 2px;
}

#about p .sanka-text{
    padding-top: 30px;
}

/* ------------------------------------------
  lineup
--------------------------------------------- */
.lineup-lead {
    padding-bottom: 70px;
    letter-spacing: 2px;
}

.lineup-box {
    border: 1px solid;
    padding: 0 0 60px;
}

.lineup-box + .lineup-box {
    margin-top: 80px;
}

.lineup-box:last-of-type {
    margin-bottom: 50px;
}

.lineup-box-title {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 42px;
    letter-spacing: 4px;
    /* margin-top: -41px; */
    background: #141413;
    display: inline-block;
    line-height: 1;
    padding: 0 20px;
    position: relative;
    top: -22px;
    margin-bottom: 20px;
}

/*infoList*/

.infoList dt {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 2px;
    /* text-decoration: underline; */
    border-bottom: 1px solid;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}

.infoList dd + dt {
    padding-top: 70px;
}

.infoList dd + dt:before {
    content: "";
    display: block;
    width: 20px;
    height: 22px;
    background: url(../images/icon-kirakira.svg) no-repeat;
    background-size: cover;
    z-index: 2;
    position: absolute;
    top: 24px;
    left: 50%;
    margin-left: -10px;
}

.infoList dd p + img,
.infoList dd p + .map {
    margin-top: 20px;
}

.infoList dd a {
    color: #ede6cd;
    text-decoration: underline;
}

/* ------------------------------------------
  sanka
--------------------------------------------- */
.sanka-lead {
    padding-bottom: 20px;
}

.sanka-btn {
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    letter-spacing: 3px;
    position: relative;
    border: 1px solid;
    border-radius: 12px;
    width: 600px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    -webkit-transition: all .3s;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    color: #ede6cd !important;
    background: #141413;
    z-index: 2;
}

.sanka-btn:hover {
    transform: translateY(5px);
    opacity: 1;
}

.sanka-btn:before {
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    border-top: 2px solid #ede6cd;
    border-right: 2px solid #ede6cd;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 37px;
    right: 32px;
}

.sanka-btn-wrap {
    display: inline-block;
    position: relative;
    margin-bottom: 40px;
}

.sanka-btn-wrap:after {
    content: "";
    display: block;
    width: 100%;
    height: 76px;
    background: url(../images/btn-shadow.svg) repeat;
    background-size: 6px;
    position: absolute;
    top: 8px;
    border-radius: 12px;
}

/* ------------------------------------------
  loading
--------------------------------------------- */
#loading-bg {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #e9f2fb;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loaded {
    opacity: 0;
    visibility: hidden;
}

#lead-fadeIn {
    opacity: 0;
    transform: translate(0, 30px);
    transition: all 1000ms;
}

r #lead-fadeIn.lead-fadeIn-active {
    opacity: 1;
    transform: translateY(0);
}

#loading {
    width: 150px;
    height: 72px;
    text-align: center;
}

#kv-lead {
    opacity: 0;
    -webkit-transition: all 2s;
    transition: all 2s;
    transform: translateY(15px);
}

#kv-lead.kv-lead-loaded {
    opacity: 1;
    transform: translateY(0);
}

/*fadein*/
.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 1500ms;
}

.fadein-active {
    opacity: 1;
    transform: translate(0, 0);
}


/* ------------------------------------------
  gallery 
--------------------------------------------- */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 30px 20px;
}

.gallery li {
    width: 155px;
}

.gallery li img {
    width: 100%;
    height: auto;
}

.gallery li:nth-child(n+5) {
    padding-top: 20px;
}

.gallery li:hover {
    cursor: pointer;
}

/* ------------------------------------------
  modal
--------------------------------------------- */
.modal__content {
    overflow-y: hidden;
    width: auto;
    height: auto;
}

.modal__content .js-modal-close{
    top: 20px;
    right: 20px;
    display: block;
    position: absolute;
}

/* ========================================================
   for SP
===========================================================*/

@media screen and (max-width: 768px) {

    /*common*/
    html {
        overflow-x: hidden;
    }

    body {
        font-size: 3.8vw;
        min-width: 0;
    }

    a:hover,
    a:not(.btn):hover {
        opacity: 1;
    }

    .btn-wrap {
        padding-top: 30px;
    }

    .btn {
        width: 260px;
        height: 50px;
        font-size: 14px;
    }

    .btn:after {
        top: 48%;
        right: 20px;
        width: 8px;
        height: 8px;
    }

    .pc-hide {
        display: block !important;
    }

    .sp-hide {
        display: none !important;
    }

    .block {
        width: 100%;
        margin: 0 auto;
        padding: 8vw;
    }
    
    .block + .block {
        padding-top: 8vw;
    }

    .inner {
        width: 100%;
    }
    
    .section-title {
        margin-bottom: 8vw;
    }
    
    .section-title img {
        height: 16vw;
        width: auto;
    }
    
    .section-inner {
        padding: 8vw 0;
        width: 100%;
    }
    
    #page_top {
        bottom: 5vw;
        right: 8vw;
        z-index: 5;
        background: #141413;
    }
    
    #page_top img {
        width: 8vw;
    }
    
    /*infoList*/

    .infoList dt {
        font-size: 4.4vw;
        letter-spacing: 0.1vw;
        margin-bottom: 5vw;
    }

    .infoList dd + dt {
        padding-top: 18vw;
    }

    .infoList dd + dt:before {
        width: 5vw;
        height: 5vw;
        top: 6vw;
        left: 50%;
        margin-left: -2.5vw;
    }

    .infoList dd p + img,
    .infoList dd p + .map {
        margin-top: 5vw;
    }
    
    .infoList .map {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
    }
    
    .infoList .map iframe{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .sanka-lead {
        padding-bottom: 9vw;
    }

    
    /*cloud*/
    .section-cloud {
        position: relative;
        height: 22vw;
    }

    .section-cloud img {
        width: 55vw;
    }

    .section-cloud.is-show img {
        opacity: 1;
    }

    .section-cloud .cloud-l {
        left: -15vw;
        bottom: 0;
    }

    .section-cloud .cloud-r {
        right: -15vw;
        bottom: 0;
    }

    .section-cloud.is-show .cloud-l {
        left: -7vw;
    }

    .section-cloud.is-show .cloud-r {
        right: -8vw;
    }
    
    [class^="section-inner-line"] {
        width: 75vw;
        height: 1px;
        left: 5vw;
    }
    
    [class^="section-inner-line"]:before,
    [class^="section-inner-line"]:after {
        width: 4vw;
        height: 4.2vw;
        top: -2vw;
    }
    
    [class^="section-inner-line"]:before {
        left: -6vw;
    }
    
    [class^="section-inner-line"]:after {
        right: -6vw;
    }

    /*mv*/
    .mv-inner {
        padding: 34vw 0 0 2vw;
        width: 100%;
    }
    
    .logo img {
        width: 70vw;
    }
    
    .mv-nav {
        top: 7vw;
        right: 10vw;
    }

    .mv-nav li + li {
        margin-right: 4vw;
    }
    
    .mv-nav img {
        width: 5vw;
    }
    
    .moon {
        left: 3vw;
        top: 3vh;
        width: 30vw;
    }
    
    .rocket {
        width: 22vw;
        right: inherit;
        left: -22vw;
        bottom: 0;
    }

    .mv-loaded .rocket {
        bottom: 80vw;
        right: inherit;
        left: 3vw;
    }

    
    .mv-cloud img {
        opacity: 0;
        width: 55vw;
    }

    .mv .cloud-l {
        left: -20vw;
        bottom: 10vh;
    }

    .mv .cloud-r {
        right: -20vw;
        bottom: calc(10vh + 10px);
    }

    .mv-loaded .mv-cloud img {
        opacity: 1;
    }

    .mv-loaded .cloud-l {
        left: 2vw;
    }

    .mv-loaded .cloud-r {
        right: 2vw;
    }

    .single-scroll-down-animation {
        bottom: 35vw;
        right: 10vw;
    }
    
    /*about*/
    .about-lead {
        font-size: 5vw;
        letter-spacing: 0.5vw;
        padding-bottom: 5vw;
    }
    
    #about p .sanka-text{
        padding-top: 5vw;
    }
    
    /*lineup*/
    .lineup-box {
        border: 1px solid;
        padding: 0 5vw 10vw;
    }
    
    .lineup-lead {
        padding-bottom: 12vw;
        letter-spacing: 2px;
    }
    
    .lineup-box-title {
        font-size: 7vw;
        letter-spacing: 1vw;
        padding: 0 4vw;
        position: relative;
        top: -5vw;
        margin-bottom: 0vw;
    }
    
    .lineup-box:last-of-type {
        margin-bottom: 9vw;
    }
    
    /*sanka*/
    .sanka-lead {
        padding-bottom: 7vw;
    }

    .sanka-btn {
        font-size: 4.4vw;
        border-radius: 12px;
        width: 100%;
        height: 20vw;
    }


    .sanka-btn:before {
        width: 3vw;
        height: 3vw;
        top: 9.5vw;
        right: 5vw;
    }

    .sanka-btn-wrap {
        width: 100%;
    }

    .sanka-btn-wrap:after {
        width: 100%;
        height: 20vw;
        background-size: 6px;
        top: 1vw;
        border-radius: 12px;
    }
    

    /*modal*/
    .gallery {
        width: 90vw;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        padding: 5vw 0 0;
    }
    .gallery-block p {
        padding-bottom: 5vw;
    }
    .gallery li {
        margin: 0;
        padding: 1vw;
        width: 28vw;
    }
    .gallery li:nth-child(n+5) {
        padding-top: 1vw;
    }
    .modal__content {
        overflow-y: hidden;
        width: 80vw;
        padding: 2vw;
    }
    .modal__content .js-modal-close {
        top: 1vw;
        right: 1vw;
        display: block;
        position: absolute;
    }
    .modal__content .js-modal-close img{
        width: 10vw;
    }
}
