@charset "utf-8";

/***** common.css *****/

/* reset */
body,
hr,
p,
ul,
ol,
h1,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

img {
  border: none;
  width: 100%;
}

hr {
  border-bottom: none;
}

a {
  color: #585858;
  text-decoration: none;
}

a:hover {
  /*opacity: 0.7;*/
}

img[src$=".svg"],
object[src$=".svg"] {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/*
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Prompt', sans-serif;
*/

/* setting */
body {
  position: relative;
  min-width: 320px;
  font-size: 15px;
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
  font-feature-settings: "palt";
  color: #000;
  background: #fff;
}

body.preload .wow {
  opacity: 0 !important;
}

@media screen and (max-width: 768px) {
  /*body {
      min-width: auto;
  }*/
}
  
picture {
  display: block;
  font-size: 0;
}

body > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.-pc {
  display: block;
}

.-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .-sp {
    display: block;
  }

  .-pc {
    display: none;
  }
}

/***** loading *****/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1000;
}
.loading .loadingItem {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
}
.loading .bar {
  position: absolute;
  top: 0;
  left: 47px;
  width: 6px;
  height: 100px;
  border-radius: 3px;
  background: #00378A;
  transform-origin: bottom center;
  animation: swingBar 2s linear infinite;
}
 
@keyframes swingBar {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(25deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-25deg); }
  100% { transform: rotate(0deg); }
}

/***** base *****/
.wrapper {
  background: #fff;
}


#cboxClose {
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
  background-image: url(../img/common/btn_modal_close.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
	width: 50px;
	height: 50px;
	text-indent: -9999px;
	transition: all .5s;
	z-index: 200;
}
@media screen and (max-width: 768px) {
  #cboxClose {
    background-image: url(../img/common/btn_modal_close.png);
    width: 35px;
    height: 35px;
  }
}


/*  */
.footer.gray {
  background-color: #F5F5F5 !important;
}

