﻿@charset "utf-8";
/* ===================================================================
 アニメーション用
*/

.anim1 {
    -webkit-animation: 1.5s forwards anim1;
    animation: 1.5s forwards anim1;
}
    @-webkit-keyframes anim1 {
        0% {
            -webkit-transform: translate(0, 100px);
            opacity: 0;
        }
        100% {
            -webkit-transform: translate(0, 0);
            opacity: 1;
        }
    }
    @keyframes anim1 {
        0% {
            transform: translate(0, 100px);
            opacity: 0;
        }
        100% {
            transform: translate(0, 0);
            opacity: 1;
        }
    }


.anim2 {
    -webkit-animation: 2s forwards anim2;
    animation: 2s forwards anim2;
}
    @-webkit-keyframes anim2 {
        0% {
            -webkit-transform: translate(-200px, 0);
            opacity: 0;
        }
        100% {
            -webkit-transform: translate(0, 0);
            opacity: 1;
        }
    }
    @keyframes anim2 {
        0% {
            transform: translate(-200px, 0);
            opacity: 0;
        }
        100% {
            transform: translate(0, 0);
            opacity: 1;
        }
    }　


.anim3 {
    -webkit-animation: 1.5s forwards anim3;
    animation: 1.5s forwards anim3;
}
    @-webkit-keyframes anim3 {
        0% {
            -webkit-transform: translate(0, 100px);
            opacity: 0;
        }
        100% {
            -webkit-transform: translate(0, 0);
            opacity: 1;
        }
    }
    @keyframes anim3 {
        0% {
            transform: translate(0, 100px);
            opacity: 0;
        }
        100% {
            transform: translate(0, 0);
            opacity: 1;
        }
    }　

.animImg{
/*	left:-100px;*/
	display:none;
	position:relative;
}


/* ボタンのアニメーション
------------------------- */
.button {
  display: inline-block;
  width: 200px;
  height: 54px;
  color: #0095DD !important;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  position: relative;
  z-index: 2;
  background-color: rgba(255,255,255,0.70);
  border: 1px solid #0095DD;
  color: #0095DD;
  /*line-height: 50px;*/
  overflow: hidden;
  margin-top:30px;
}

.button:hover {
  color: #fff !important;
  text-decoration: none;
}

.button:hover::after {
  top: 0;
  left: 0;
  background-color: #0095DD;
}

.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
}

.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* アンカーのリンク
------------------------- */
ul.anchorlink li a:hover{
	color:#FFF;
	text-decoration: none;
}


/* スクロールで出現するページトップボタンdelok
------------------------- */
/*p#ptop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
}

p#ptop a {
    display: block;
    background-color: #ccc;
    text-align: center;
    color: #222;
    font-size: 16px;
    text-decoration: none;
    padding: 20px 20px;
}

p#ptop a:hover {
    display: block;
    background-color: #222;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:20px 20px;
}*/