@charset "UTF-8";
html {
  scroll-behavior: smooth;
  font-size: 70%;
  font-feature-settings: "palt";
}
@media (max-width: 768px) {
  html {
    font-size: 1.3020833333vw;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 1.9230769231vw;
  }
}

.wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: left;
}
@media (max-width: 520px) {
  .wrapper .wrapper {
    min-width: 320px;
  }
}

.inner {
  position: relative;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 8rem 0;
}
@media (max-width: 1080px) {
  .inner {
    padding: 8% 0;
  }
}

body {
  background: #1a1a1a;
  font-family: "Noto Serif JP", serif;
  background-color: #1a1a1a;
  color: #fff;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  letter-spacing: 0.2em;
  text-align: center;
}
body.appear {
  background: #1a1a1a;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: #fff;
  text-decoration: none;
  outline: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

* {
  box-sizing: border-box;
}

/* font-family */
/* fade-up */
/* ==========================================================
fade-up
========================================================== */
.fade-up {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

/* フェードイン時に入るクラス */
.is-fadeup {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

h3 {
  font-size: 220%;
  font-weight: 300;
}

.ttl_under_moon {
  width: 15px;
  margin: 2rem auto 3rem;
}

.ttl_under_sun {
  width: 20px;
  margin: 2rem auto 3rem;
}

.text {
  font-size: 120%;
  line-height: 220%;
  padding-bottom: 4rem;
}
@media (max-width: 768px) {
  .text {
    line-height: 180%;
  }
}

.bg_img {
  background: url(../img/moon_text_bg.svg);
  background-size: 8%;
}

.gold {
  color: #b7a15d;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg1,
.splashbg2 {
  display: none;
}

body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

/*右に消えるエリア*/
body.appear .splashbg1 {
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: scaleX(1);
  background-color: #1a1a1a; /*伸びる背景色の設定*/
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*左に消えるエリア*/
body.appear .splashbg2 {
  animation-name: PageAnime2;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  transform: scaleX(1);
  background-color: #1a1a1a; /*伸びる背景色の設定*/
}

@keyframes PageAnime2 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#wrapper {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #wrapper {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ==========================================================
rwd switch
========================================================== */
.only-sp {
  display: none !important;
}

@media screen and (max-width: 520px) {
  .only-pc {
    display: none !important;
  }
  .only-sp {
    display: block !important;
  }
}
/* header */
header {
  position: fixed;
  top: 0;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
}
header .headerWrap {
  width: 100%;
  max-width: 1080px;
  margin: 10px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1;
  height: 60px;
}
@media (max-width: 768px) {
  header .headerWrap {
    font-size: 1.2rem;
    height: 40px;
  }
}
header .headerWrap h1 {
  margin-left: 3rem;
  max-width: 300px;
}
@media (max-width: 768px) {
  header .headerWrap h1 {
    max-width: 250px;
  }
}
@media (max-width: 768px) and (max-width: 520px) {
  header .headerWrap h1 {
    margin-left: 1.5rem;
    max-width: 120px;
  }
}
header .headerWrap nav {
  margin: 1rem;
}
header .headerWrap nav .gnav {
  display: flex;
}
header .headerWrap nav .gnav li {
  margin: 0.5rem 0 0.5rem 2rem;
  letter-spacing: 0.05;
}
header .headerWrap nav .gnav li:hover {
  font-weight: bold;
}

/*==================================================
スライダー MV
===================================*/
#container {
  position: relative;
  /*ドットナビゲーションの設定*/
}
#container .slider {
  position: relative;
  z-index: -1;
}
#container .slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 20px 0 0 0; /*ドットの位置*/
}
#container .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
#container .slick-dots button {
  color: transparent;
  outline: none;
  width: 20px; /*ドットボタンのサイズ*/
  height: 3px; /*ドットボタンのサイズ*/
  display: block;
  background: #fff; /*ドットボタンの色*/
}
#container .slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}
#container .mv_p {
  max-width: 1080px;
  position: absolute;
  left: 0;
  right: 0;
  top: 45%;
  bottom: 0;
  margin: auto;
}
#container .mv_p img {
  margin: auto;
  padding: 0 5rem;
  filter: drop-shadow(0 0 10rem #1a1a1a);
}
#container .blur_top {
  animation-name: blurAnime;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@keyframes blurAnime {
  from {
    filter: blur(15px);
    transform: scale(1.02);
  }
  to {
    filter: blur(0);
    transform: scale(1);
  }
}

/*==================================================
スライダー下テキスト
===================================*/
.moon_rainbow {
  background: url(../img/con01_bg.png) no-repeat center bottom;
  background-size: cover;
  width: 100%;
  margin: auto 0;
}
.moon_rainbow h2 {
  max-width: 1080px;
  margin: auto;
  position: relative;
  padding-bottom: 500px;
}
@media (max-width: 1366px) {
  .moon_rainbow h2 {
    padding-bottom: 45%;
  }
}
.moon_rainbow h2 .moon_p {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.moon_rainbow h2 .blur_moon_jp {
  width: 10%;
  margin-top: 7%;
}
.moon_rainbow h2 .blur_moon_jp .blur_jp {
  animation-name: blurAnime;
  animation-duration: 8s;
  animation-fill-mode: forwards;
}
@keyframes blurAnime {
  from {
    filter: blur(15px);
    transform: scale(1.02);
  }
  to {
    filter: blur(0);
    transform: scale(1);
  }
}
.moon_rainbow h2 .blur_moon_en {
  width: 67%;
  margin-top: 19%;
}
.moon_rainbow h2 .blur_moon_en .blur_en {
  animation-name: blurAnime;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@keyframes blurAnime {
  from {
    filter: blur(15px);
    transform: scale(1.02);
  }
  to {
    filter: blur(0);
    transform: scale(1);
  }
}

.moon_text {
  text-align: center;
  font-size: 120%;
  line-height: 220%;
}
@media (max-width: 768px) {
  .moon_text {
    line-height: 180%;
  }
}

.point04 {
  border-bottom: #666 20px solid;
}
.point04 .inner .motif_wrap {
  border: #666 1px solid;
}
.point04 .inner .motif_wrap h4 {
  font-size: 160%;
  font-weight: 300;
  line-height: 1;
  padding-top: 4rem;
}
.point04 .inner .motif_wrap .motif_text {
  padding: 3% 15%;
}
@media (max-width: 768px) {
  .point04 .inner .motif_wrap .motif_text {
    padding: 5%;
  }
}
.point04 .inner .motif_wrap .motif_text p {
  font-size: 120%;
  text-align: left;
  line-height: 3rem;
}
.point04 .inner .motif_wrap .order {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  width: 100%;
  background: #1a1a1a;
}
.point04 .inner .motif_wrap .order li:nth-child(1) {
  width: 75%;
}
@media (max-width: 1080px) {
  .point04 .inner .motif_wrap .order li:nth-child(1) {
    width: 67%;
  }
}
@media (max-width: 1080px) and (max-width: 768px) {
  .point04 .inner .motif_wrap .order li:nth-child(1) {
    width: 60%;
  }
}
@media (max-width: 1080px) and (max-width: 768px) and (max-width: 520px) {
  .point04 .inner .motif_wrap .order li:nth-child(1) {
    width: 35%;
  }
}
.point04 .inner .motif_wrap .order li:nth-child(2) {
  width: 25%;
  padding: 0 3%;
  font-size: 120%;
}
@media (max-width: 1080px) {
  .point04 .inner .motif_wrap .order li:nth-child(2) {
    width: 33%;
  }
}
@media (max-width: 1080px) and (max-width: 768px) {
  .point04 .inner .motif_wrap .order li:nth-child(2) {
    width: 40%;
    padding-left: 4rem;
  }
}
@media (max-width: 1080px) and (max-width: 768px) and (max-width: 520px) {
  .point04 .inner .motif_wrap .order li:nth-child(2) {
    width: 65%;
    line-height: 0;
    padding-left: 5%;
  }
}
.point04 .inner .motif_wrap .order li:nth-child(2) h5 {
  font-size: 120%;
  font-weight: 300;
  letter-spacing: 0;
  padding-bottom: 5%;
  line-height: 1.5;
}
.point04 .inner .motif_wrap .order li:nth-child(2) h5 span {
  font-size: 70%;
}
@media (max-width: 768px) {
  .point04 .inner .motif_wrap .order li:nth-child(2) h5 {
    font-size: 130%;
    padding-bottom: 2%;
  }
}
.point04 .inner .motif_wrap .order li:nth-child(2) p {
  font-size: 100%;
  line-height: 2.2;
  letter-spacing: 0;
}
.point04 .inner .motif_wrap .order li:nth-child(2) p span {
  font-size: 80%;
}
@media (max-width: 1080px) {
  .point04 .inner .motif_wrap .order li:nth-child(2) p {
    line-height: 1.8;
  }
}
@media (max-width: 1080px) and (max-width: 768px) {
  .point04 .inner .motif_wrap .order li:nth-child(2) p {
    font-size: 110%;
    line-height: 1.5;
  }
}

/*==================================================
作品一覧
===================================*/
.contents .inner img {
  max-width: 600px;
}
.contents .inner .con_text_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 5rem auto 0;
}
.contents .inner .con_text_wrap .con_text {
  width: 50%;
  padding: 2%;
  font-size: 150%;
}
@media (max-width: 520px) {
  .contents .inner .con_text_wrap .con_text {
    width: 60%;
  }
}
.contents .inner .con_text_wrap .con_text span {
  font-size: 50%;
}
.contents .inner .con_text_wrap .con_text .p01 {
  padding-bottom: 1rem;
}
.contents .inner .con_text_wrap .con_text .p02 {
  font-size: 70%;
}
.contents .inner .con_text_wrap .con_text .p03 {
  border: #666 1px solid;
  padding: 1.5rem 1rem 1.8rem;
  margin: 2rem auto;
  line-height: 0;
  font-size: 70%;
  max-width: 200px;
}
.contents .inner .con_text_wrap .con_img {
  width: 50%;
  max-width: 500px;
  padding: 2% 5%;
}
@media (max-width: 520px) {
  .contents .inner .con_text_wrap .con_img {
    width: 40%;
    padding: 0 3%;
  }
}

footer .inner ul {
  display: flex;
  align-items: center;
  justify-content: center;
  border: #fff solid 1px;
  margin: 3rem auto;
  padding: 2rem;
  max-width: 900px;
  background: #1a1a1a;
}
@media (max-width: 520px) {
  footer .inner ul {
    display: block;
    padding: 2rem 3rem;
  }
}
footer .inner ul li {
  text-align: left;
  line-height: 2;
}
footer .inner ul li .contact_text {
  border-left: #fff solid 5px;
  padding: 0 3rem;
  font-size: 180%;
  line-height: 1.5;
}
footer .inner ul li .contact_text span {
  font-size: 60%;
}
@media (max-width: 520px) {
  footer .inner ul li:nth-child(2) {
    margin-top: 1rem;
  }
}
footer .inner button {
  width: 100%;
  max-width: 900px;
  background: #fff;
  padding: 1.5rem;
}
footer .inner button:hover {
  background: #666;
  transition: 0.5s;
}
footer .inner button a {
  color: #1a1a1a;
  font-size: 200%;
  line-height: 1;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */