@charset "utf-8";
/*====================================================================
 reset styles
====================================================================*/
body, div, pre, p, blockquote, form, fieldset, input, textarea, select, option, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, embed, object {
  padding: 0;
  vertical-align: baseline;
  font-size: 100%;
  margin: 0;
  letter-spacing: 1px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}
body {
  color: #353535;
  width: 100%;
  min-width: 1220px;
  -webkit-text-size-adjust: 100%;
  animation: fadein 1.5s ease-out 0s forwards;
  opacity: 0;
}
@keyframes fadein {
  100% {
    opacity: 1;
  }
}
table, th, td {
  padding: 0;
  font-size: 100%;
  margin: 0;
}
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}
img {
  vertical-align: bottom;
}
p,a {
  font-size: 15px;
  line-height: 1.8em;
  letter-spacing: 1px;
}
a {
  color: #353535;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}
address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}
ul {
  list-style: none;
}
ol li ul li {
  margin-left: 0;
}
fieldset, img {
  border: 0;
}
a {
  outline: none;
}
table {
  font-size: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
tr {
  vertical-align: top;
}
caption, th {
  text-align: left;
}
abbr, acronym {
  border: 0;
}
sup {
  vertical-align: 2px;
}
sub {
  vertical-align: bottom;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
}
* html .clearfix {
  height: 1px;
  overflow: hidden;
}
.pc_view {
  display: inline-block;
}
.sp_view {
  display: none !important;
}
@media screen and (max-width: 700px) {
  body {
    min-width: 100%;
  }
  .pc_view {
    display: none !important;
  }
  .sp_view {
    display: block !important;
  }
  p {
    font-size: 15px;
    line-height: 1.8em;
  }
}
/*====================================================================
	STEP1. loading_bg fadein-out
====================================================================*/
#loading_bg {
  width: 100%;
  height: 100%;
  min-height: 600px;
  left: 0;
  top: 0;
  animation: loading_bg_fadein 0.6s linear 0.6s forwards, fadeout 0.6s linear 2.8s forwards, loading_bg_delete 0.5s linear 3.4s forwards;
  opacity: 1;
  position: fixed;
  z-index: 9999;
  display: block;
  background-color: #fff;
}
@keyframes loading_bg_delete {
  0% {
    z-index: 9999;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
  }
  100% {
    z-index: -1;
    display: none;
    position: absolute;
    opacity: 0;
  }
}
/*====================================================================
	STEP2. logo fadein-out
====================================================================*/
#loading_bg svg {
  display: block;
  position: absolute;
  width: 300px;
  height: auto;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  top: 50%;
  z-index: 99;
  opacity: 1;
  animation: logo_fadein 1.5s ease-out 0.4s forwards, logo_fadeout 0.5s ease-out 3.0s forwards;
}
@keyframes logo_fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*====================================================================
	STEP3. mainvisual fadein
====================================================================*/
.road_fade {
  animation: fadein .8s ease-out 3.8s forwards;
  opacity: 0;
}
@keyframes fadein {
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 700px) {
  #loading_bg {
    width: 100%;
	  height: 100%;
  }
}
