@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;
}

ol {
  margin-bottom: 30px;
}

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;
/*  padding: 20px 0 0 0;*/
}
a {
	text-decoration: none;
}
#container{
  margin: 0 auto;
  padding: 4% 4% 2%;
  max-width: 740px;
  width: 100%;
/*  text-align: center;*/
  box-sizing: border-box;
}
.main {
/*    width: 700px;*/
/*    padding: 20px 40px;*/
    background-color: #fff;
/*    margin-bottom: 30px;*/
/*    margin: 0;*/
}
.main_1{
/*  width: 600px;*/
/*  text-align: center;*/
}
/*header*/
/*
.aligncenter {
    text-align: center;
}
*/

/*FV*/

.fv h1{
  width: 100%;
  text-align: center;
  line-height: 1;
  margin: 0 0 20px;
}
.fv_img{
  margin: 10px auto;
}
.fv h2{
  margin: 0 auto;
}
.highlight {
    background: linear-gradient(transparent 50%, #ffff94 0%);
    line-height: 1.3em;
}
.img_place1{
  text-align: center;
}
.img_place2 {
  margin: 30px;
  text-align: center;
}
.img_place3 {
  margin: 20px 0px 20px;
  text-align: center;
}
.img_place4 {
  margin-bottom: 30px;
}
ol  {
  margin: 0;
  padding: 0
}
ol li  {
  list-style: none;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
h3 {
    padding: 1em 0.5em;
    color: #494949;
    background: #F7F4DF;
    border-left: solid 5px #666666;
    border-bottom: solid 3px #d7d7d7;
    margin: 20px auto;
}
.img_g{
  text-align: center;
  margin: 30px auto;
}
.img_g2{
    margin-bottom: 50px;
}
.img_g3{
  text-align: center;
  margin: 10px auto;
}
.img_g4{
  text-align: center;
  margin: 50px auto 10px;
}
.img_g5{
  text-align: center;
  margin: 0 auto;
}
.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);
  }
}
.ex-1{
  text-align: center;
  margin: 20px auto;
}
.ex-2{
  text-align: center;
  margin: 0 auto 10px;
}
.p2{
  margin-bottom: 10px;
}
.p3{
  margin: 0 auto 30px;
}
.p4{
  margin: 30px auto 0;
}
.p5{
  margin-bottom: 5px;
  line-height: 1.2;
}
@media screen and (max-width: 700px) {

.main{
    float: left;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 0px;
    border: none;
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 30px;
    margin: 0;
}
img {
	width: 100%;
}
}

.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 1.5s 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;
  }
}

.bg .bg-wrap {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}
.bg .bg-wrap::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: linear-gradient(to right, #362ae0 0%,#3b79cc 50%,#42d3ed 100%);
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
.bg .bg-wrap .inn {
  display: inline-block;
  position: relative;
  z-index: 1;
}

@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}

.right {
  display: block;
  margin: 15px 0 0;
  font-size: 10pt;
  text-align: right;
  font-weight: normal;
}

.footer_inner {
  border-top: 1px solid #FF7200;
  padding: 30px 0;
  text-align: center;
  font-weight: normal;
}
