@charset "UTF-8";

/* 初期設定 */
body {
  color: #444444;
  font-size: 12px;
  font-family: sans-serif;
  padding: 140px 16px;
  text-align: center;
}
a {
  color: #333333;
  text-decoration: none
}
a:hover {
	color: #888888;
}


* {
	float: none;
	position: static;
}

img {
	max-width: 90%;
	height: auto;
	animation-name: fadein;
    animation-duration: 2s;
}
@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
	}
}


/* リスト */
.list {
  display: flex;
  flex-wrap: wrap;
}
.list li {
  width: 25%;
}
@media screen and (max-width: 480px) { /* 最大480pxまで */
  .list li {
    width: 50%;
  }
}

/* アイコン */
.list .icon {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0cf;
  margin: 1.6rem auto 0.8rem;
}

/* タイトル */
.list .title {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {/* 最大768pxまで */
  .list .title {
    font-size: 12px;
  }
}


.p1 {
    font-size: 23px;
    font-weight: bold;
    animation-name: fadein;
    animation-duration: 2s;
}
@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);	
}
}   

.p3 {
    font-size: 16px;
    font-weight: normal;
    animation-name: fadein;
    animation-duration: 2s;
}
@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);	
}
}   