@charset "UTF-8";
/* CSS Document */

/* ABOUT ----------------------------------------------*/

.about_top_img{
	max-width: 900px;
	height: auto;
	margin-bottom: 100px;
}

.about_topletter{
	padding: 0;
	margin: 0;
}
.about_topletter > h3 {
  color: #231815;
  display: inline-block;
  padding: 10px 20px;
  margin-top: 0;
  margin-bottom: 60px;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.2em;
  font-weight: bold;
  background: #f0f0f0;
	border: dashed 2px #231815;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}

.about_letter_img{
	max-width: 620px;
	height: auto;
}

.about_banner_img{
	max-width: 650px;
	height: auto;
	margin-bottom: 40px;
}

.about_top_30{
	padding-top: 30px;
}

.about_top_50{
	padding-top: 50px;
}

.about_bottom_40{
	padding-bottom: 40px;
}

.about_bottom_60{
	padding-bottom: 60px;
}

.about_icon {
	font-size: 30px;
	padding: 80px 0;
}



/*1.フェードインアニメーションの指定*/
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}
 
/*2.上下の動きを指定*/
.updown {transform: translateY(-100px);}
.downup {transform: translateY(100px);}
 
/*3.左右の動きを指定*/
.sect02{overflow: hidden;} /*横スクロールバーを隠す*/
.slide-right {transform: translateX(200px);}
.slide-left {transform: translateX(-200px);}

.author {
  background: #eae4d1;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.author .icon{
	padding-bottom: 30px;
}

.author .app{
	padding-top: 20px;
}


.author_notes{
	font-size: 14px;
	padding-top: 15px;
	line-height: 1.8em;
}

@media screen and (max-width: 520px) {
	.about_top_img{
	margin-bottom: 60px;
}
	.about_top_50{
	padding-top: 30px;
}
	.about_bottom_60{
	padding-bottom: 40px;
}
	.about_banner_img{
	margin-bottom: 20px;
}
	.about_topletter > h3 {
	margin-bottom: 40px;
}
	.author_notes{
	font-size: 14px;
	text-align: justify;
	padding-top: 15px;
	line-height: 1.6em;
}

}