@charset "utf-8";
/* CSS Document */
body {
  font-family: "Emilys Candy", "Kaisei Opti", "sans-serif";
  font-size: 16px;
  text-align: center;
  color: #D8D8D8;
  line-height: 1.6;
  letter-spacing: 0.05em;
  box-sizing: border-box;
  background-color: #44073B;
  /*border: 3px solid blue;*/
}
.sp-only {
  display: none;
}
img {
  max-width: 100%;
}
.inner {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
h1 {
  font-size: 64px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px #D8D8D8, 0 0 15px #D8D8D8;
  text-transform: uppercase;
}
h2 {
  font-family: "Emilys Candy", "sans-serif";
  font-size: 64px;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px #D8D8D8, 0 0 15px #D8D8D8;
  text-transform: uppercase;
}
h3 {
  font-size: 48px;
  margin: 100px 0 40px;
  text-transform: uppercase;
}
h4 {
  font-size: 32px;
  margin-top: 40px;
}
h4 span {
  text-transform: uppercase;
}
h5 {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px #D8D8D8, 0 0 15px #D8D8D8;
  text-transform: uppercase;
}
/*==============================
==============================*/
@media screen and (max-width: 961px) {
  h1 {
    font-size: 56px;
    margin-bottom: 24px;
  }
  h2 {
    font-size: 48px;
  }
  h3 {
    font-size: 40px;
    margin: 80px 0 24px;
  }
  h4 {
    font-size: 24px;
    margin-top: 32px;
  }
  h5 {
    margin-top: 140px;
  }
}
/*==============================
==============================*/
@media screen and (max-width: 651px) {
  body {
    text-align: center;
    box-sizing: border-box;
    font-size: 15px;
  }
  .inner {
    width: 100%;
  }
  h1 {
    font-size: 48px;
    margin-bottom: 24px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 32px;
    margin: 80px 0 24px;
  }
  h4 {
    font-size: 24px;
    margin-top: 24px;
  }
  h5 {
    font-size: 16px;
    margin-top: 140px;
    text-shadow: 0 0 10px #D8D8D8;
  }
  .only-hp { /*HP版のみ*/
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*==============================
==============================*/
@media screen and (max-width: 426px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 40px;
    margin-bottom: 24px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
    margin: 80px 0 24px;
  }
  h4 {
    font-size: 20px;
    margin-top: 24px;
  }
  h5 {
    font-size: 16px;
  }
  p {
    font-size: 14px;
  }
}
/*==============================
==============================
★　FIRST VIEW　★
==============================
==============================*/
#fv {
  padding: 150px 0 100px;
  margin: 0 auto;
  background: url("../../images/achievement-bg.png")no-repeat center/cover;
}
#fv p {
  line-height: 3;
  text-transform: uppercase;
}
#fv h1 img {
  width: 100px;
  height: 100px;
  opacity: 0.3;
  animation: poyoyon3 2.5s infinite;
}
@keyframes poyoyon3 {
  0%, 40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 5deg);
  }
  10% {
    transform: skew(-4deg, -4deg);
  }
  15% {
    transform: skew(3deg, 3deg);
  }
  20% {
    transform: skew(-2deg, -2deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}
/*==============================
==============================*/
@media screen and (max-width: 651px) {
  #fv {
    padding: 80px 0;
  }
  #fv h1 img {
    width: 80px;
    height: 80px;
  }
}
/*==============================
==============================*/
@media screen and (max-width: 426px) {
  #fv h1 img {
    width: 50px;
    height: 50px;
  }
}
/*==============================
==============================
★　パララックス　★
==============================
==============================*/
.parallax_box {
  width: 100%;
}
.parallax_content {
  height: 100%;
  min-height: 800px;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.parallax_content.img_bg_01 {
  background-image: url("../../images/parallax-01.jpg");
  filter: grayscale(100%);
  opacity: 0.5;
}
.parallax_content.img_bg_02 {
  background-image: url("../../images/parallax-02.webp");
  filter: grayscale(100%);
  opacity: 0.5;
}
.parallax_content.img_bg_03 {
  background-image: url("../../images/story-02.webp");
  filter: grayscale(100%);
  opacity: 0.5;
}
/*==============================
==============================*/
@media screen and (max-width: 651px) {
  .parallax_content {
    position: relative; /*// 擬似要素の基準を作る*/
    background-image: none; /*// 元の背景画像を消す*/
    background-attachment: scroll; /*// fixedを無効化する*/
  }
  .parallax_content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url(../img/sp_main_img.jpg);*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1; /*// 背景を後ろに配置*/
  }
}
/*==============================
==============================
★　FOOTER　★
==============================
==============================*/
footer {
  width: 100%;
  margin: auto;
  padding: 80px 0 150px;
  background: url("../../images/footer-bg.jpg")no-repeat center/cover;
  position: relative;
}
footer h2 {
  font-size: 48px;
  margin-bottom: 16px;
}
.sns {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
.sns li {
  width: 50px;
  height: 50px;
  margin: 0 20px;
}
.sns li a:hover {
  filter: saturate(200%);
}
.sns li a:active {
  filter: saturate(200%);
}
footer p {
  font-size: 20px;
  font-family: "Kaisei Opti", "sans-serif";
  text-transform: capitalize;
}
footer p a {
  text-transform: none;
}
footer p a:hover {
  text-shadow: 0 0 10px #D8D8D8, 0 0 15px #D8D8D8;
}
footer p a:active {
  text-shadow: 0 0 10px #D8D8D8, 0 0 15px #D8D8D8;
}
small {
  font-size: 16px;
  text-transform: capitalize;
}
#footer-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  margin: 0 auto;
  min-width: 335px;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  background: url("../../images/story-bg.png")no-repeat center/cover;
}
#footer-nav ul {
  display: flex;
  padding: 30px 0;
  text-align: center;
}
#footer-nav ul li {
  width: 25%;
  vertical-align: middle;
}
#footer-nav ul li a:hover {
  text-shadow: 0 0 10px #D8D8D8, 0 0 15px #D8D8D8;
}
#footer-nav ul li a:active {
  text-shadow: 0 0 10px #D8D8D8, 0 0 15px #D8D8D8;
}
/*==============================
==============================*/
@media screen and (max-width: 1210px) {
  #footer-nav {
    font-size: 24px;
  }
  #footer-nav ul {
    padding: 35px 0;
  }
}
/*==============================
==============================*/
@media screen and (max-width: 961px) {
  footer h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  small {
    font-size: 16px;
  }
  #footer-nav {
    font-size: 20px;
  }
  #footer-nav ul {
    padding: 30px 0;
  }
}
/*==============================
==============================*/
@media screen and (max-width: 651px) {
  footer {
    padding: 50px 0 120px;
  }
  footer h2 {
    font-size: 32px;
  }
  .sns {
    margin-bottom: 80px;
  }
  footer p {
    font-size: 16px;
  }
  small {
    font-size: 12px;
  }
  #footer-nav {
    font-size: 16px;
  }
  #footer-nav ul {
    padding: 25px 0;
  }
}
/*==============================
==============================*/
@media screen and (max-width: 426px) {
  footer {
    padding: 50px 0 100px;
  }
  .sns {
    margin-bottom: 50px;
  }
  footer p {
    font-size: 14px;
  }
  small {
    font-size: 10px;
  }
  #footer-nav {
    font-size: 14px;
  }
  #footer-nav ul {
    padding: 20px 0;
  }
}
/*==============================
==============================
　★　BUTTON ★
==============================
==============================*/
.btnshine {
  /*キラッと光る基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  display: inline-block;
  background: #d8d8d8;
  color: #303030;
  padding: 20px;
  margin-top: 80px;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  font-weight: bold;
  font-size: 24px;
}
/*キラッと光る*/
.btnshine::before {
  content: '';
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);
  transform: skewX(-25deg);
}
/*hoverした際の移動のアニメーション*/
.btnshine:hover::before {
  animation: shine 0.7s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/*==============================
==============================*/
@media screen and (max-width: 426px) {
  .btnshine {
    /*キラッと光る基点とするためrelativeを指定*/
    padding: 15px;
    margin-top: 50px;
    font-size: 16px;
  }
}