@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
 
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,
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,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    color: color: rgb(105, 104, 104);
	position:relative !important;
	width:100%;
	overflow-x: hidden !important;
	font-family:"A-OTF 見出ミンMA31 Pro";
}
ol, ul {
	list-style: none;
}
a {
    text-decoration: none !important;
    color: rgb(71 75 78) !important;
}
a:hover {
	color: #0082d5 !important;
	opacity:0.8;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ==============================
背景動画
============================== */
#header {
    width: 1000px !important;
    overflow-x: hidden !important;
}
#video-area {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    width: 1000px;
    margin: auto;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}
/* ==============================
ここから
============================== */
img {
    vertical-align: bottom;
}
.cta-area {
    max-width: 100% !important;
    position: relative;
}
.cta-btn {
    position: absolute;
    left: 0;
    right: 0;
    width: 80%;
    margin: auto;
}
.cta-btn1 {
    bottom: 39%;
}
.cta-btn2 {
    bottom: 7%;
}
.sns-area {
    max-width: 100% !important;
}
.sns-content {
    position: relative;
margin-top: -6px;
}
.sns-icon {
    position: absolute;
    display: flex;
    bottom: 10%;
    left: 0;
    right: 0;
    width: 64%;
    margin: auto;
    justify-content: space-between;
}
.sns-btn {
    width: 24%;
}
.footer {
    color: #fff;
    text-align: center;
    font-size: 0.6rem;
    background-color: black;
    padding-top: 1rem;
    padding-bottom: 4rem;
}
.button{
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 10px;
  cursor: pointer;
  transition: .3s;
width: 22%;
}
/* ==============================
回転
============================== */
.content-flex {
    position: relative;
    width: 100%;
}
.span{
  display:inline-block;
  width:50%;
  margin:50px;
  height:50%;
  margin:30px;
position: absolute;
    top: 30%;
    left: 0;
    z-index: -1;
}
.span2 {
    left: inherit;
    top: 26%;
    right: 4%;
}
.span3 {
    top: 26%;
    left: 3%;
}
#box1{
  animation:60s linear infinite rotation1;
}
#box2{
  animation:60s linear infinite rotation2;
}
#box3{
  animation:60s linear infinite rotation3;
}
@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}
@keyframes rotation2{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}
@keyframes rotation3{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}
/* ==============================
トップテキスト
============================== */
.top-content {
    position: relative;
}
.top-text {
    position: absolute;
    top: -1%;
}
.top-text2 {
    position: absolute;
    top: 10%;
}
/* ==============================
読み込み時アニメーション
============================== */
.top-text {
    animation-name: fadein;
    animation-duration: 1s;
}
@keyframes fadein {
from {
    opacity: 0;
    transform: translateX(200px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}

.top-text2 {
    animation-name: fadein2;
    animation-duration: 1s;
}
@keyframes fadein2 {
from {
    opacity: 0;
    transform: translateX(-200px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}
/* ==============================
スクロールアニメーション
============================== */
/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 1500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}