@charset "utf-8";
@import url("./boilerplate.css");
@import url("./Untitled-1.css?template=defult");

h1,h2,h3 {
	margin-left: 10px;
}

/* 文字色 */
.red {
	color: #FF0000;		/* 赤 */
}
.blue {
	color: #0000FF;		/* 青 */
}
.green {
	color: #009900;		/* 緑 */
}
.yellow {
	color: #FFFF00;		/* 黄 */
}
.black{
	color: #000000;		/* 黒 */
}
.gray{
	color: #999999;		/* グレー */
}
.purple{
	color: #9900CC;		/* 紫 */
}
.orange{
	color: #FF6633;		/* 橙 */
}
.pink{
	color: #FF00FF;		/* ピンク */
}
.white{
	color :#FFFFFF;		/* 白 */
}

/* 背景色 */
.bg-red {
	background-color: #ff0000;	/* 赤 */
}
.bg-blue {
	background-color: #0000FF;	/* 青 */
}
.bg-green {
	background-color: #009900;	/* 緑 */
}
.bg-yellow {
	background-color: #FFFF00;	/* 黄 */
}
.bg-black {
	background-color: #000000;	/* 黒 */
}
.bg-gray {
	background-color: #999999;	/* グレー */
}
.bg-purple {
	background-color: #9900CC;	/* 紫 */
}
.bg-orange {
	background-color: #FF6633;	/* 橙 */
}
.bg-pink {
	background-color: #FF00FF;	/* ピンク */
}
.bg-white {
	background-color: #FFFFFF;	/*	白	*/
}

pre, blockquote, ins {
    background: #f9f9f9;
    border-radius: 5px;
}

blockquote {
    background-image: url(images/quote-l.png), url(images/quote-r.png);
    background-repeat: no-repeat, no-repeat;
    background-position: top left, bottom right;
    margin: 0;
    padding: 65px 30px;
}
style.css?ver=4.8.1:241
blockquote, q {
    quotes: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

a:hover img {
   filter:alpha(opacity=50);
   -moz-opacity: 0.5;
   opacity: 0.5;
}



.btn-cv {
  padding: .5em 0;
  overflow: hidden;
  position: relative;
}
.btn-cv a {
  border: solid #fff 10px;
/*   border-radius: 12px; */
  border-radius: 50px; 
/*  box-shadow: 1px 1px 10px 0 #a1a1a1;*/
  box-shadow: 0 0 0 1px #999, 10px 10px 10px 0 #a1a1a1;
  color: #fff;
  display: block;
/*  font-size: 1.6em;*/
  font-size: 1.7em;
  font-weight: bold;
  line-height: 1.3;
  margin: 0.5em auto;
/*  padding: 1em 2em .8em;*/
  padding: 1em 0 .8em;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  vertical-align: middle;
  width: 59%;
}
.btn-cv.is-fz20 a {
  font-size: 20px;
}
.btn-cv a img {
  vertical-align: middle;
}
.btn-cv a:after {
  content: ' ' !important;
}
/*テキストにspanタグをつけるとアイコン被り防止*/
.btn-cv a span{
    width: 85%;
    margin-left: 5%;
    display: inherit;
}
/* ボタン内のアイコン */
.btn-cv a:before {
  content: "\f138";
  font-family: "fontawesome";
  font-weight: normal;
  font-size: 1.1em;
  margin-top: -.6em;
  position: absolute;
  right: 15px;
  top: 50%;
}
.btn-cv a:hover {
  box-shadow: 1px 1px 2px 0 #a1a1a1;
  filter: alpha(opacity=70);
  opacity: .7;
}
 
/* 2つ連続で並べる場合の余白 */
.btn-cv + .btn-cv a {
  margin-top: 0;
}
 
/* 緑ボタン */
.btn-cv a {
  background: #00a23f;
/*   background: -webkit-linear-gradient(#00a23f, #39900a);
  background: linear-gradient(#00a23f, #39900a);*/
  background: -webkit-linear-gradient(#77e83a, #39900a);
  background: linear-gradient(#77e83a, #39900a);
  text-shadow: 0 0 10px rgba(255,255,255,.8), 1px 1px 1px rgba(0,0,0,1);
}
 
/* ボタンの光沢 */
.is-reflection a {
  overflow: hidden;
}
.is-reflection a:after {
  -moz-animation: is-reflection 4s ease-in-out infinite;
  -moz-transform: rotate(45deg);
  -ms-animation: is-reflection 4s ease-in-out infinite;
  -ms-transform: rotate(45deg);
  -o-animation: is-reflection 4s ease-in-out infinite;
  -o-transform: rotate(45deg);
  -webkit-animation: is-reflection 4s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  animation: is-reflection 4s ease-in-out infinite;
  background-color: #fff;
  content: " ";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: -180px;
  transform: rotate(45deg);
  width: 30px;
}
/* アニメーションを遅延させる */
.is-reflection + .is-reflection a:after {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@keyframes is-reflection {
  0% { -webkit-transform: scale(0) rotate(45deg); transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes is-reflection {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
 
/* CVボタン矢印揺れ */
.is-trembling a:before {
  -webkit-animation-name:is-trembling;
  -webkit-animation-duration:.8s;
  -webkit-animation-iteration-count:infinite;
  -webkit-animation-timing-function:ease;
  -moz-animation-name:is-trembling;
  -moz-animation-duration:1s;
  -moz-animation-iteration-count:infinite;
  -moz-animation-timing-function:ease;
}
@-webkit-keyframes is-trembling {
  0% {-webkit-transform:translate(-3px, 0);}
  100% {-webkit-transform:translate(0, 0);}
}
 
/* ボタンをバウンドさせる */
.is-bounce {
  animation: bounce 4s infinite;
  -moz-animation: bounce 4s infinite;
  -webkit-animation: bounce 4s infinite;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
@-webkit-keyframes bounce {
  0%, 4%, 10%, 18%, 100% {-webkit-transform: translateY(0);}
  5% {-webkit-transform: translateY(-6px);}
  12% {-webkit-transform: translateY(-4px);}
}
@keyframes bounce {
  20%, 24%, 30%, 34%, 100% {-webkit-transform: translateY(0);transform: translateY(0);}
  25% {-webkit-transform: translateY(-6px);transform: translateY(-6px);}
  32% {-webkit-transform: translateY(-4px);transform: translateY(-4px);}
}
/* アニメーションを遅延させる */
.is-bounce + .is-bounce {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}
 
/* ぷるるるるん！ */
.is-purun {
  -webkit-animation: is-purun 5s infinite;
  -moz-animation: is-purun 5s infinite;
  animation: is-purun 5s infinite;
}
@-webkit-keyframes is-purun {
   0% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
   4% { -webkit-transform: scale(0.9, 0.9) translate(0%, 3%); }
   8% { -webkit-transform: scale(1.1, 0.8) translate(0%, 7%); }
  12% { -webkit-transform: scale(0.9, 0.9) translate(0%, -7%); }
  18% { -webkit-transform: scale(1.1, 0.9) translate(0%, 3%); }
  25% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
}
@keyframes is-purun {
   0% { transform: scale(1.0, 1.0) translate(0%, 0%); }
   4% { transform: scale(0.9, 0.9) translate(0%, 3%); }
   8% { transform: scale(1.1, 0.8) translate(0%, 7%); }
  12% { transform: scale(0.9, 0.9) translate(0%, -7%); }
  18% { transform: scale(1.1, 0.9) translate(0%, 3%); }
  25% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}
/* アニメーションを遅延させる */
.is-purun + .is-purun {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

@keyframes horizontal {
    0% { transform:translateX( -5px); }
  100% { transform:translateX(  0px); }
}

.yurayura {
  animation: horizontal 1s ease-in-out infinite alternate;
}

@media screen and (max-width: 1050px) {
  .btn-cv a {
  width: 85%;
}
}

@media screen and (max-width: 500px) {
  .btn-cv a {
  font-size: 1.4em;
  border: solid #fff 7px;
}
}

@media screen and (max-width: 360px) {
  .btn-cv a {
  font-size: 1.2em;
}
/*	.btn-cv a:before {
  content: none;
}*/
}


.buru {
    display: inline-block;
    animation: hurueru .1s  infinite;
}

@keyframes hurueru {
    0% {transform: translate(0px, 0px) rotateZ(0deg)}
    25% {transform: translate(2px, 2px) rotateZ(1deg)}
    50% {transform: translate(0px, 2px) rotateZ(0deg)}
    75% {transform: translate(2px, 0px) rotateZ(-1deg)}
    100% {transform: translate(0px, 0px) rotateZ(0deg)}
}
