@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%;
  height: auto;
  pointer-events: none;
}

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;
  font-size: 15px;
  line-height: 1.8;
  font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
  font-feature-settings: "palt";
  color: #000;
  background: #fff;
}

.page-protect {
  -moz-user-select:none;
  -khtml-user-select:none;
  -webkit-user-select:none;
  user-select:none;
  -khtml-user-drag:none;
  -webkit-user-drag:none
}
@media print {
  img.protect { display: none !important; }
}

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%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100px;
  height: 15px;
  margin: -8px 0 0 -50px;
}
.loading .cube {
  width: 15px;
  height: 15px;
}
.loading .cube.c1 {
  background: #6b4c93;
  animation: colorchange1 1s infinite;
}
.loading .cube.c2 {
  background: #fbc82b;
  animation: colorchange2 1s infinite;
}
.loading .cube.c3 {
  background: #70af58;
  animation: colorchange3 1s infinite;
}
.loading .cube.c4 {
  background: #d82617;
  animation: colorchange4 1s infinite;
}
 
@keyframes colorchange1 {
  0%   { background: #6b4c93; }
  25%  { background: #fbc82b; }
  50%  { background: #70af58; }
  75%  { background: #d82617; }
  100% { background: #6b4c93; }
}

@keyframes colorchange2 {
  0%   { background: #fbc82b; }
  25%  { background: #70af58; }
  50%  { background: #d82617; }
  75%  { background: #6b4c93; }
  100% { background: #fbc82b; }
}

@keyframes colorchange3 {
  0%   { background: #70af58; }
  25%  { background: #d82617; }
  50%  { background: #6b4c93; }
  75%  { background: #fbc82b; }
  100% { background: #70af58; }
}

@keyframes colorchange4 {
  0%   { background: #d82617; }
  25%  { background: #6b4c93; }
  50%  { background: #fbc82b; }
  75%  { background: #70af58; }
  100% { background: #d82617; }
}

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


#cboxClose {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	background: url("../img/btn_close.png") center center no-repeat;
  background-size: 100%;
	width: 50px;
	height: 50px;
	text-indent: -9999px;
	transition: all .5s;
	z-index: 200;
}