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

* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 150%;
  line-height: 180%;
}

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

img {
  border: 0;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* CSS Document */

header h1 {
  text-align: center;
  background-color: #fbd8c4;
}

/* CSS Document */

#wrap {
  background: #fff;
  width: 950px;
  margin: 20px auto;
  padding: 50px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.point {
  border: dashed 3px #ccc;
  padding: 30px;
  margin-bottom: 80px;
}
.point p {
  margin: 0;
}
.point ul {
  margin: 30px 0 0;
}
.point ul li {
  list-style: disc;
  margin: 10px 0 0 1.5em;
}

h2 {
  font-size: 150%;
  line-height: 180%;
  text-align: center;
  margin: 150px 0;
  color: #f00;
}

p {
  margin: 30px 0;
}

input[type="submit"] {
  font-weight: bold;
  display: block;
  background: #06c755;
  border: solid 2px #203916;
  width: 100%;
  font-size: 200%;
  line-height: 130%;
  text-align: center;
  margin: 50px 0;
  padding: 30px 0;
  border-radius: 20px;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
input[type="submit"]:hover {
  background: #267507;
  border: solid 2px #203916;
}
.updown {
  animation-name: updown1; /* アニメーション名の指定 */
  animation-delay: 0s; /* アニメーションの開始時間指定 */
  animation-duration: 3s; /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  65% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

/* CSS Document */

footer {
  padding: 20px 0;
  margin: 20px 0 0;
  text-align: center;
  color: #666;
  font-size: 70%;
  line-height: 130%;
}

footer nav {
  color: #ccc;
  margin: 0 0 8px;
}
footer nav a {
  color: #666;
  text-decoration: none;
  margin: 0 20px;
}
footer nav a:hover {
  color: #999;
  text-decoration: underline;
}

/* ################## Color Document ####################### */

.red {
  color: #ff0000;
}

.bold {
  font-weight: bold;
}

.yellow {
  background-color: #ffff00;
  display: inline;
}

.u {
  text-decoration: underline;
}

.revocation {
  text-decoration: line-through;
}

.center {
  text-align: center;
}

/* ################## お客様の声 ####################### */

.reviews li {
  display: flex;
  margin-bottom: 20px;
}

.reviews li .age {
  flex: 1;
  text-align: center;
  font-weight: bold;
  border: solid 1px #ccc;
  border-left: none;
  padding: 20px;
}
.reviews li .age img {
  display: block;
  width: 100%;
  margin: 0 0 10px;
}
.reviews li .age small,
.reviews li .age span {
  font-size: 50%;
  line-height: 150%;
  display: block;
}
.reviews li .age span {
  color: orangered;
  letter-spacing: -1px;
}

.reviews li .voice {
  flex: 9;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  padding: 20px;
  font-size: 80%;
  line-height: 180%;
}
