@charset "UTF-8";
/*
* {
	box-sizing: border-box;
}
*/
html {
  overflow-y: scroll;
}
/* html5doctor.com Reset Stylesheet v1.6.1
	Last Updated: 2010-09-17 Author: Richard Clark - http://richclarkdesign.com Twitter: @rich_clark */
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details,
dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup,
html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section,
small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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

ul,li {
  list-style: none;
}

body {
  font-family: "メイリオ", sans-serif;
  font-size: 16px;
}
ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
img {
	max-width: 100%;
}
p {
  letter-spacing: 1px;
  line-height: 1.75;
  margin-bottom: 30px;
}
a {
	text-decoration: none;
}
#container{
  margin: 0 auto;
  padding: 4%;
  max-width: 740px;
  width: 100%;
  box-sizing: border-box;
}


h2 {
    padding: 0.6em 0.5em 0.4em;
    color: #ffffff;
    background: #6da7e3;
    border-left: solid 5px #566bb7;
    border-bottom: solid 3px #c7c7c7;
    margin: 40px auto 20px ;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
}

/*画像キラン*/
.kiran {
  opacity: 1;
  overflow: hidden;
  position: relative;
}
.kiran::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
  animation: kiran 3s linear infinite;
}
@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

/*画像ポヨン*/
.poyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}

.amazon {
  margin: 15px 0;
}

.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.text02 {
	color: red;
	font-weight: bold;
	font-size: 25px;
	line-height: 1.5em;
}
.text_big {
	font-size: 120%;
	font-weight: bold;
}
.bld {
	font-weight: bold;
}
.cap {
	font-size: 13px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}

.mb0 {
	margin-bottom: 0px;
}
.mb4p {
	margin-bottom: 4%;
}
.mb2p {
	margin-bottom: 2%;
}
.marker01 {
    background: linear-gradient(transparent 50%, #ffff94 0%);
    line-height: 2em;
	color: red;
	font-size: 25px;
	font-weight: bold;
}
.marker02 {
    background: linear-gradient(transparent 50%, #ffff94 0%);
    line-height: 1.8em;
	color: red;
	font-size: 20px;
	font-weight: bold;
}
.marker01_blue {
    background: linear-gradient(transparent 50%, #ffff94 0%);
    line-height: 2em;
	color: blue;
	font-size: 25px;
	font-weight: bold;
}
.marker02_blue {
    background: linear-gradient(transparent 50%, #ffff94 0%);
    line-height: 1.8em;
	color: blue;
	font-size: 20px;
	font-weight: bold;
}
.example{
	border: solid 2px #f9bb14;
	padding: 3%;
}

.fc_blue{
	color: blue;
}

/*ul.check li:before {
	content: "";
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("../img/check.png") no-repeat;
  background-size: 80%;
  top: 15px;
}*/
ul.check li {
	background-image: url(../img/check.png);
    background-repeat: no-repeat;
    background-position: left 3px;
    line-height: 30px;
    padding-left: 30px;
    font-weight: bold;
    background-size: 24px;
}
ul.circle li {
	background-image: url(../img/circle.png);
    background-repeat: no-repeat;
    background-position: left 3px;
    line-height: 30px;
    padding-left: 30px;
    font-weight: bold;
    background-size: 24px;
}

.box01 {
    background-color: #fefbf2;
    border: solid 2px #f9e1af;
    padding: 0.6rem;
}