@charset "UTF-8";

/* gradient fallbacks taken from csstricks.com */
body {
  background-color: red;
  /* SVG fallback for IE 9 (could be data URI, or could use filter) */
  background-image: url(fallback-gradient.svg);
  /* Safari 4, Chrome 1-9, iOS 3.2-4.3, Android 2.1-3.0 */
  background-image: -webkit-gradient(linear, left top, right top, from(red), to(#f06d06));
  /* Safari 5.1, iOS 5.0-6.1, Chrome 10-25, Android 4.0-4.3 */
  background-image: -webkit-linear-gradient(left, red, #f06d06);
  /* Firefox 3.6 - 15 */
  background-image: -moz-linear-gradient(left, red, #f06d06);
  /* Opera 11.1 - 12 */
  background-image: -o-linear-gradient(left, red, #f06d06);
  /* Opera 15+, Chrome 25+, IE 10+, Firefox 16+, Safari 6.1+, iOS 7+, Android 4.4+ */
  background-image: linear-gradient(to right, red, #f06d06);
  margin: 0px;
	font-size: 1rem;
	font-family: "Noto Sans JP",sans-serif;
	min-width: 1100px;
	margin: 0 auto;
}

.sp_disp {
	display: none;
}

.loading {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: #000;
    text-align: center;
    z-index: 9999;
	display: -webkit-flex;
	-webkit-flex-direction: column;
	-webkit-justify-content: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.loading a {
    display: block;
    color: #fff;
    font-size: 3rem;
    letter-spacing: 4px;
    font-family: 'Reem Kufi Fun', sans-serif;
}

.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;
}

/*
.orangebg {
    background: #ff4e00!important;
}*/

.triger_wrap {
    display: none!important;
}

header {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px;
	opacity: 0;
	top: -60px;
	transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
}

.show_header {
	opacity: 1;
	top: 0;
}

.header_logo {
    color: #fff;
    font-size: 2.7rem;
    font-weight: 900;
}

.header_logo span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

a  {
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {

/* gradient fallbacks taken from csstricks.com */
body {
  background-color: red;
  /* SVG fallback for IE 9 (could be data URI, or could use filter) */
  background-image: url(fallback-gradient.svg);
  /* Safari 4, Chrome 1-9, iOS 3.2-4.3, Android 2.1-3.0 */
  background-image: -webkit-gradient(linear, left top, right top, from(red), to(#f06d06));
  /* Safari 5.1, iOS 5.0-6.1, Chrome 10-25, Android 4.0-4.3 */
  background-image: -webkit-linear-gradient(left, red, #f06d06);
  /* Firefox 3.6 - 15 */
  background-image: -moz-linear-gradient(left, red, #f06d06);
  /* Opera 11.1 - 12 */
  background-image: -o-linear-gradient(left, red, #f06d06);
  /* Opera 15+, Chrome 25+, IE 10+, Firefox 16+, Safari 6.1+, iOS 7+, Android 4.4+ */
  background-image: linear-gradient(to right, red, #f06d06);
  margin: 0px;
  font-size: 1rem;
  font-family: "Noto Sans JP",sans-serif;
  min-width: 100%;
  margin: 0 auto;
}

.loading {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: #000;
    text-align: center;
    z-index: 9999;
	display: -webkit-flex;
	-webkit-flex-direction: column;
	-webkit-justify-content: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.loading a {
    display: block;
    color: #fff;
    font-size: 3rem;
    letter-spacing: 4px;
    font-family: 'Reem Kufi Fun', sans-serif;
}

.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;
}

/*
.orangebg {
    background: #ff4e00!important;
}*/

.triger_wrap {
    display: block!important;
}

header {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 10px 5%;
    opacity: 0;
    top: -60px;
    transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
}

.show_header {
	opacity: 1;
	top: 0;
}

.header_logo {
    color: #fff;
    font-size: 2.7rem;
    font-weight: 900;
}

.header_logo span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.sp_disp {
	display: block;
}

}
