/*----------------------------------------------------------------------
よく使うモジュール一覧
----------------------------------------------------------------------*/
.clearfix:after {
	content: url(../images/space.png);
	display: block;
	clear: both;
	height: 0;
}

.clearfix {
	display: inline-block;
}

.clearfix {
	display: block;
}

html{
	overflow-y: scroll;
}

sup,sub {
	font-size: 65%;
}

input[type="submit"], input[type="button"] {
	border-radius: inherit;
	-webkit-appearance: none;
}

img{
  height: auto;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;	
}

a {
	text-decoration: none;
}

a:active, a:focus{
	outline:none;
	
}

.clear {
	clear: both;
}

article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary {
  display:block;
}


/* フェードアップ */

.fadeUp{
	opacity: 0;
}

.fadeUp.active {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUp.active.delay-2{
  animation-delay: .5s;
}

.fadeUp.active.delay-3{
  animation-delay: 1s;
}


@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}

@media screen and (max-width: 768px) {

.fadeUp.active{
	animation: none;
	opacity: 1;
}
	
img {
    image-rendering: auto;
}

}


@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}




















