@charset "UTF-8";
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%; }

body {
  margin: 0 auto;
  font-family: 'Bodoni Moda','bilo','游ゴシック体', YuGothic, '游ゴシック', "Yu Gothic", "メイリオ",'kinto-sans','Hina Mincho', sans-serif, serif;
  font-weight: 300;
  font-size: 1.6em;
  line-height: 1.5;
  text-align: left;
  color: #fff;
  font-feature-settings: "palt";
  background-image: url("../assets/kirameki_site_img/bg_noise.png");
  background-repeat: repeat;
  animation: noise-anim 1s infinite linear alternate-reverse;
  cursor: none;
  /*もともとあるカーソルは非表示に*/ }
@keyframes noise-anim {
  from {
    background-position: 0 0; }
  to {
    background-position: 100% 100%; } }
#cursor {
  position: fixed;
  /*丸の大きさと色の指定*/
  background: #fff;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  margin: -10px 0 0 -10px;
  /*真ん中にくるようにマイナスマージンで調整*/
  z-index: 999;
  pointer-events: none;
  /*クリックできなくなるのを防ぐため。noneで対応*/
  opacity: 1;
  transition: transform 0.1s;
  /*アニメーションの秒数指定*/ }

#stalker {
  position: fixed;
  /*丸の大きさと色の指定*/
  background: #000;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  margin: -30px 0 0 -30px;
  /*真ん中にくるようにマイナスマージンで調整*/
  z-index: 4;
  /*カーソルの後ろに来るように*/
  pointer-events: none;
  /*クリックできなくなるのを防ぐため。noneで対応*/
  opacity: 0;
  transition: transform 0.5s;
  /*アニメーションの秒数指定*/ }

#cursor.active,
#stalker.active {
  transform: scale(2); }

h1 {
  font-family: 'Hina Mincho', serif;
  font-weight: 600;
  font-size: 20.0rem; }

h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 3.2rem; }

h4 {
  font-family: 'Hina Mincho', serif;
  font-size: 2.8rem; }

p {
  font-size: 1.8rem;
  font-family: 'kinto-sans',sans-serif;
  font-weight: 400;
  line-height: 2.0; }

a:hover {
  opacity: 0.5; }

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

footer {
  text-align: center;
  margin: 60px 0 40px;
  padding: 0 70px;
  font-size: 1.4rem;
  display: flex;
  justify-content: center; }
  footer .footer-parts {
    padding: 5px 30px;
    vertical-align: middle;
    display: inline-block;
    border-right: solid 1px #fff; }
  footer a {
    text-decoration: none;
    color: #fff; }
  footer img {
    width: 20px;
    height: auto; }
  footer .sms-icon {
    margin-left: 10px; }
  footer .sms-icon:last-child {
    margin-left: none; }
  @media screen and (max-width: 800px) {
    footer .footer-parts {
      padding: 5px 10px; }
      footer .footer-parts span {
        display: none; } }

/*loading*/
#loading {
  /* 画面いっぱいになる箇所 */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  /* 中のローディングアニメ */ }
  #loading .loader {
    position: relative;
    width: auto; }
    #loading .loader .loader_img {
      position: relative; }
      #loading .loader .loader_img .earth {
        position: relative; }
      #loading .loader .loader_img .loading-circle {
        position: absolute;
        top: -49px;
        left: -38px;
        animation: rotation 10s infinite; }
@keyframes rotation {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }
/*loading end*/
.content-title {
  font-family: 'Bodoni Moda', serif;
  color: transparent;
  font-style: italic;
  -webkit-text-stroke: 2px white;
  font-size: 13.0rem;
  line-height: 1.0;
  overflow: hidden;
  margin-bottom: 40px; }
  .content-title span {
    display: inline-block;
    transform: translateY(100%); }
  .content-title.is-show span {
    animation: pop 0.4s ease-out forwards; }
    .content-title.is-show span:nth-child(1) {
      animation-delay: 0.1s; }
    .content-title.is-show span:nth-child(2) {
      animation-delay: 0.2s; }
@keyframes pop {
  0% {
    transform: translateY(100%); }
  90% {
    transform: translateY(-10%); }
  100% {
    transform: translateY(0); } }
@media screen and (max-width: 800px) {
  .content-title {
    font-size: 10.0rem; } }
@media screen and (max-width: 500px) {
  .content-title {
    font-size: 7.0rem;
    margin-bottom: 40px; } }
