@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%;
}
h1 {
  font-size: 64px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px #D8D8D8, 0 0 15px #D8D8D8;
  text-transform: uppercase;
}
.slide-in { /*h2*/
  font-size: 64px;
  animation: sway 5s infinite ease-in-out;
  margin-top: 200px;
}
h2 {
  font-size: 64px;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px #D8D8D8, 0 0 15px #D8D8D8;
  text-transform: uppercase;
}
h3 {
  font-size: 32px;
  text-transform: uppercase;
}
/*==============================
==============================*/
@media screen and (max-width: 961px) {
  h1 {
    font-size: 56px;
  }
  .slide-in { /*h2*/
    font-size: 48px;
    margin-top: 150px;
  }
  h2 {
    font-size: 48px;
  }
  h3 {
    font-size: 24px;
  }
}
/*==============================
==============================*/
@media screen and (max-width: 651px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 48px;
  }
  .slide-in { /*h2*/
    font-size: 32px;
    margin-top: 120px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 20px;
  }
  .only-hp { /*HP版のみ*/
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*==============================
==============================*/
@media screen and (max-width: 426px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 40px;
  }
  .slide-in { /*h2*/
    font-size: 28px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }
}
/*==============================
==============================
★　FIRST VIEW　★
==============================
==============================*/
#fv {
  padding: 150px 0 100px;
	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;
  }
}
/*==============================
==============================
★ H2 ★
==============================
==============================*/
.slide-in {
  animation: slideIn 5s ease-out infinite;
}
@keyframes slideIn {
  0% {
    transform: translateX(-20%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
h2 img {
  width: 120px;
  height: 120px;
  opacity: 0.3;
  margin: 0 10px;
  vertical-align: middle;
  display: inline-block;
}
/*==============================
==============================*/
@media screen and (max-width: 961px) {
  h2 img {
    width: 100px;
    height: 100px;
  }
}
/*==============================
==============================*/
@media screen and (max-width: 651px) {
  h2 img {
    width: 80px;
    height: 80px;
  }
}
/*==============================
==============================*/
@media screen and (max-width: 471px) {
  h2 img {
    width: 50px;
    height: 50px;
  }
}
/*==============================
==============================
★ ACCORDION ★
==============================
==============================*/
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area span {
  padding-left: 1em;
}
.accordion-area li {
  margin: 40px 0;
  background-color: #890406;
}
.accordion-area section {
  border: 3px dotted #D8D8D8;
}
/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  /* font-size:2rem;*/
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
}
/*アイコンの＋と×*/
.title::before, .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #D8D8D8;
}
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  background: #303030;
  margin: 0 3% 3% 3%;
  padding: 3%;
}
.box p {
  text-align: left;
  text-transform: uppercase;
  /*line-height: 3;*/
  letter-spacing: 0.08em;
}
@media screen and (max-width: 651px) {
  .accordion-area section {
    border: 2px dotted #D8D8D8;
  }
}
/*==============================
==============================
★　FOOTER　★
==============================
==============================*/
footer {
  width: 100%;
  margin: auto;
  padding: 80px 0 150px;
  background: url("../../images/footer-bg.jpg")no-repeat center/cover;
  position: relative;
  margin-top: 200px;
}
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;
      margin-top: 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;
    }
  }