@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; }

html {
  -ms-text-size-adjust: 100%;  /* IE on Windows Phone用 */
  -webkit-text-size-adjust: 100%;  /* iOS用 */
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%; 
  height: auto;
  -webkit-touch-callout: none; /*3Dタッチ禁止*/
}

body {
  margin-top: 0px;
  padding: 0;
  color: #222;
  background-color: #e8e8e8;
  font: 13px/1.55 Arial,sans-serif,NotoSansCJKjp, YuGothicM, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  /* ユーザによる選択禁止 */
  user-select:none;
  -webkit-user-select:none;
  -ms-user-select: none;
  -moz-user-select:none;
  -khtml-user-select:none;
  -webkit-user-drag:none;
  -khtml-user-drag:none;
}

/*------------------------------------------------------------
                     　　　wrapper
-------------------------------------------------------------*/
#wrapper { /* スマホ縦 */
    position: relative;
	width: 100%;
    min-height: 100%;
	margin: 0px auto;
	background-color: #f2eee5;
/*	position: absolute;*/
	overflow: hidden;
}

#container {
  position: relative;
  padding: 5px 5px 10px 5px;
  margin: 0;
/*  height: calc(100vh - 42px - 60px); */
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#container_step {
  position: relative;
  padding: 5px;
  margin: 0;
/*  height: calc(100vh - 42px - 83px);　*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*----- 体験版ロゴ ----*/
.taiken {
	margin: 0;
	height: 21px;
	padding: 2px 8px;
}

img.taiken_img{
	margin: 0;
	width: 70px;
	height: 21px;
	float: right;
}
.clear{
	clear:both;
}
/*---------------------*/

header {
/*  position: fixed; */
/*  position: absolute; */
 /* top: 0px;
  left: 0px;
  right: 0px; */
  z-index: 100;
  margin: 0px auto;
  max-width: 760px;
  padding: 6px 8px;
  height: 42px;
  background-color: #fe9223;
} 

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.section {
  display: inline-block;
  padding: 4px 20px;
  height: 30px;
  background-color: #fff;
  font-size: 1.1em;
  line-height: 1.8em;
  font-weight: 550;
  border-radius: 20px;
}


.menu-btn {
  display: inline-block;
  height: 30px;/*高さ*/
  width: 90px;/*幅*/
  padding-top: 2px;
  background: #fe9223;
  border: 2px solid #fff;
  border-radius: 15px;/*角丸に*/
  text-align: center;/*中身を中央寄せ*/
  float: right;
  cursor: pointer;
}

#house {
    position: relative;
    width: auto;
    height: 90%;
    margin: 0 auto;
}
/*
.menu-btn:hover {
  background: #ffc181;
}
*/
.menu-btn:active {
  background: #fe850a;
}

.title {
	text-align: center;
	font-size: 1.15em;
	margin: 5px 0px 20px 0px;
    font-weight: 550;
    background-color: #e0e0e0;
    padding: 4px 5px;
    border-radius: 14px;
    text-align: center;
}

/* 「さらなるステップアップ～」は文字数が多すぎるのでフォントサイズを下げる */
@media only screen and (max-width:350px) { /* iPhone SE */
.section {
 font-size: 95%;
 padding: 5px 10px 5px 10px;
}
	
.menu-btn {
	width: 77px;/*幅*/	
}
}
/*--------------- wrapper PC ---------------*/
@media only screen and (min-width:481px) { /* PC */
#wrapper {
    max-width: 760px;
    margin: 0px auto;
  }

#container{
    padding: 10px 15px 20px 15px;
}

/* 体験版 */
.taiken {
	height: 25px;
	padding: 2px 20px;
}
img.taiken_img{
	width: 84px;
	height: 25px;
}
/*---------*/

header {
  max-width: 760px;
  margin: 0px auto;
  padding: 6px 15px;
　font-size: 1.2em;
} 

.section {
  font-size: 1.1em;
  line-height: 1.6em;
}

.menu-btn {
  height: 30px;/*高さ*/
  width: 100px;/*幅*/
  border-radius: 16px;/*角丸に*/
  font-size: 1.3em;/*文字のサイズ*/
  line-height: 30px;/*高さと合わせる*/
}

.title { 
   margin: 5px 0 20px 0;
   font-size: 1.2em;
}
}

/*------------------------------------------------------------
                          　基本設定
-------------------------------------------------------------*/
p {
  font-size: 1.15em;
  padding: 2px 5px;
  line-height: 1.6em;
}

h2{
 margin-top: 10px;
 margin-bottom: 4px;
 margin-left: 1px;
 font-size: 1.4em;
 font-weight: normal;
 padding: 0.08em 0.5em;
 background: transparent;
 border-left: solid 8px #fe9223;
}

h3{
 margin-top: 10px;
 margin-bottom: 3px;
 margin-left: 5px;
 font-size: 1.2em;
 font-weight: 550;
}

/* 取り消し線 */
.del{
  text-decoration: line-through;
}

/* 中央揃え */
.center {
   display: block;
   margin-left: auto;
   margin-right: auto;
   text-align: center;
}

/* 強調（赤字）*/
em{
  font-style: normal;
  font-weight: 500;
  color: #e57501;
}

/* 語訳（コースカラー）*/
blue {
  color: #0091d4; 
}

/* 注釈 */
.caption {
   margin: 0px;
   padding: 5px 0px;
   font-size: 0.9em;
} 

a { /* 初期設定のボーダー削除 */
	border: none;
	text-decoration: none;
}
a:link {
	color: #06F;
}
a:hover {
	text-decoration: none;
}
a:visited {
	color: #002e5c;
}

/*---------- 基本設定 PC -------------*/
@media screen and (min-width: 481px) {  /* PC */  
p {
  font-size: 1.2em;
  line-height: 1.7em;
}
h1 {
  font-size: 1.8em;
}
h2 {
  font-size: 1.6em;
  padding: 0.15em 0.5em;
}
h3 {
  margin: 10px 5px 3px 5px;
  font-size: 1.2em;
}
}

/*===================================================
                   表紙
===================================================*/
.cover {
 padding: 12px 3px;
}
.cover-img {
 margin-top: 20px;
 margin-right:auto; 
 margin-left:auto;
 width: 90%;
}
/* TOEICレギュレーション */
.regulation {
 margin: 0px auto;
 width: 95%;
}
.regulation p {
	font-size: 0.8em;
    line-height: 1.4em;
	color: #e57501;
	text-align: center;
}

/*---------------- 表紙 PC ----------------*/
@media screen and (min-width: 481px) {  /* PC */
.cover {
 padding: 10px 5px;
}
.cover-img {
 width: 65%;
}
.regulation {
	 margin: 3px auto;
}
.regulation p {
	font-size: 0.9em;
    line-height: 1.5em;
}
}

@media screen and (max-height: 481px) {  /* PC高さ低 */
.cover {
 padding: 5px 5px;
}
.cover-img {
 margin-top: 0px;
}
.regulation {
 position: inherit;
}
}
/*===================================================
                   学習の流れ
===================================================*/
.course-box {
	display: flex;
	margin-top: 15px;
	margin-bottom: 15px;
/*    align-items: flex-start; */
	justify-content: center;
	flex-direction:row;
	flex-wrap: wrap;
	align-self: center;
}

.unit_bundle {
	padding:8px 5px;
	background-color: #fff;
	border: #e0e0e0 2px solid;
	border-radius: 5px;
	text-align: center;
}

.day {
	font-size: 1.5em;
	font-weight: 550;
}
.course {
	padding: 5px 0px 10px 10px;
	
} 
.unit{
	width: 14rem;
	height: 2.8rem;
	margin: 4px 14px;
	background-color: #e0e0e0;
	padding: 8px 15px;

	text-align: center;
	vertical-align: middle;
}

.unit_titel{
  font-size: 1.2em;
  position: relative;
  top: 15%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
}
.course p {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
  font-size: 2.3em;
  font-weight: 550;
}

.arrows {
	height: 10px;
	background-image: url(../images/s-trgl.gif);
	background-repeat: no-repeat;
	background-position: center center;
}
/*
.course-area{
  margin: 15px auto;
}
.course-area img {
  display: inline;
  width: 100%;
}
*/

/* 学習の流れ table */

table#flow  {
	width: 100%;
	margin: 10px 0px 5px 0px;
	padding: 0px;
	border-collapse: collapse;
}

table#flow  th {
	text-align:left;
	padding: 2px 2px 2px 10px;
}

table#flow  td {
	padding: 5px 15px;
}
#main-line {
	height: 70px;
	border-left:#e0e0e0 2px solid;
}
#main-line>#main-cell {
	background-color: #e0e0e0;
	font-size: 1.1em;
	text-align: center;
	width: 25%;
	border: none;
	padding-right: 5px;
	padding-left: 5px;
	vertical-align: middle;
	line-height: 1.7em;
    border-top:#e0e0e0 2px solid;
	border-left:#e0e0e0 2px solid;
	border-bottom:#e0e0e0 2px solid;
}

#main-line > #main-cell_t{
	background-color: #e0e0e0;
	font-size: 1.1em;
	text-align: center;
	width: 25%;
	border: none;
	padding-right: 5px;
	padding-left: 5px;
	vertical-align: middle;
	line-height: 1.7em;
    border-top:#e0e0e0 2px solid;
	border-left:#e0e0e0 2px solid;
    border-bottom:#fff 2px solid;
}

#sub-cell {
	text-align: left;
	width: 75%;
	padding-left: 10px;
	font-size: 1.15em;
	line-height: 1.6em;
    background-color: #fefefe;
	border-top:#e0e0e0 2px solid;
	border-right:#e0e0e0 2px solid;
	border-bottom:#e0e0e0 2px solid;
	border-left:#e0e0e0 2px solid;
}
#sub-line {
	height: 20px;
}
#sub-line>#main-cell {
	background-image: url(../images/s-trgl.gif);
	background-repeat: no-repeat;
	background-position: center center;
}

.beta {
	display: inline-block;
	background-color: #fbd8ac;
	border-radius: 12px;
	padding: 1px 10px;
	font-size: 0.9em;
	text-align: center;
	margin: 8px 5px 2px 0;
}
.beta_sam {
	margin: 5px 0 30px 0;
	font-size: 1.15em;
	background-color: #fbd8ac;
	border-radius: 10px;
	padding: 2px 10px;
	text-align: center;
	font-weight: 600;
}
.small_cap {
	display: block;
	margin-top: 8px;
	padding-top: 8px;
	border-top: dashed 1px #c4c4c4;
	font-size: 0.9em;
}
.toeic-area{
  margin: 10px auto;
  text-align: center;
}
.toeic-area img {
  display: inline;
  width: 100%;
}

/*---------------- 学習の流れ PC ----------------*/
@media screen and (min-width: 481px) {  /* PC */
.course-area img{
  width: 60%;
}
/* 学習の流れ table*/
#main-line > #main-cell{
  padding: 2px;
  font-size: 1.2em;
}

#main-line > #main-cell_t{
  padding: 2px;
  font-size: 1.2em;
}

#sub-line {
  height: 40px;
}
#sub-cell {
  padding-left: 10px;
  font-size: 1.2em;
}
.beta_sam {
  padding: 5px 10px;
  font-size: 1.2em;
}
.small_cap {
  padding-left: 15px;
}
}

/*===================================================
                  　　操作説明
===================================================*/
/*---------------- 操作説明 PC ----------------*/
.tutorial-area {
  margin-top: 5px;
  margin-bottom: 30px;
  margin-right: auto;
  margin-left: auto;
/*  padding: 10px 20px; */
/*  background-color: #fff; */
  border-radius: 8px;
}

.tutorial-area .box-title {
  padding: 7px 0 4px 14px;
  font-size: 1.2em;
  border-radius: 8px 8px 0 0;
  background-color: #e0e0e0;
 /* font-weight: bold; */
  letter-spacing: 0.05em;
}

.box-wrapper{
  padding: 15px 10px;
}

table.tutorial-table {
  margin: 0px 0px 40px 0px;
  border-bottom: none;
}
table.tutorial-table th {
  padding: 0px;
  vertical-align: top;  
}
table.tutorial-table td {
  padding: 0px 0px 5px 10px;
  vertical-align: top;
}

table.tutorial-table td p{
 padding-bottom: 5px;
 margin-bottom: 5px;
 border-bottom: dashed 1px #a5a5a5;
 font-size: 1.1em;
 line-height: 1.5em;
 color: #e57501;
}

img.tutorial_image {
  margin: 0px auto;
  max-width: 370px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .3);
}

img.tutorial_image_sub {
  margin: 6px 0;
  max-width: 200px;
/*  border: 1px solid #8e8e8e; */
}

ol.tutorial {
 padding: 0px 0px 0px 22px;
 margin: 0px;
 font-size: 1.15em;
/* list-style: none; */
}

ol.tutorial li{
 padding: 3px 0;
/* text-indent: -1em; */
}

img.inline-img {
 display:inline;
 width: 24px;
 vertical-align: top;
}

img.inline-img2 {
 display:inline;
 width: 17px;
 vertical-align: middle;
}
/*---------------- 操作説明 SP ----------------*/
@media screen and (max-width:480px) {
.tutorial-area {
  padding: 0;
  border-radius: 8px;
}

.box-wrapper{
  padding: 8px;
}

table.tutorial-table {
　width: 100%;
  margin: 0px auto;
  margin-bottom: 20px;
}
.last td:last-child {
  width: 100%;
}

table.tutorial-table th {
  width: 100%;
  text-align: center;
  display: block;
}
table.tutorial-table td {
  padding: 5px 0px;
  display: block;
  width: 100%;
}

img.tutorial_image {
  margin: 0px auto;
  width: 98%;
}
ol.tutorial {
  padding: 5px 0px 0px 16px;
  margin-left: 8px;
}
}


/*-------------------------------------------
          　　　 凡例
---------------------------------------------*/
table.hanrei{
   margin-top: 5px;
   margin-bottom: 30px;
   margin-right: auto;
   margin-left: auto;
   background-color: #fff;
   font-size: 1.2em;
   border-collapse: collapse;
   border: #e0e0e0 2px solid;
   width: 95%;
}

.hanrei th{
  border-right: #e0e0e0 2px solid;
  border-bottom: #e0e0e0 2px solid;
  text-align: center;
  padding: 10px 10px 5px 10px;
}

.hanrei td {
  padding: 10px 10px 5px 10px;
  border-bottom: #e0e0e0 2px solid;
}
/*　国旗アイコン */
img.flag-icon{
   display: inline;
   max-width: 40px;
}

.cube{
	border-style: solid;/* ボーダーを実線に */
	border-width: 1px;/* ボーダー線の太さを1pxに  */
	border-color: #c0c0c0;/* ボーダー線の色を指定 */
	color:#000000;  /* ボーダー線の色を指定 */
	font-size: 1.0em;/* フォントのサイズを80%に縮小して表示 */
	font-weight: normal;
	border-radius: 20%;    /* 囲い四角の四隅に丸みをつける  */ 
/*	padding: 0.25% 1.5%; /*文字と四角の間に余白をつくる  */
    padding: 5px 7px; 
	margin-left : 0.25%;/* 左隣りの文字とのスペースを2pxつくる  */
	margin-right: 0.25%;/* 右隣りの文字とのスペースを2pxつくる  */
	vertical-align: 6%;  /* 上下のずれを微修正；少し上に移動  */
	background-color: #f5f5f5;/* 背景に色を付ける  */       
}

@media screen and (min-width:481px) {  /*------PC------*/
table.hanrei{
   font-size: 1.3em;
   width: 60%;
}
.hanrei th{
  text-align: center;
}
.hanrei td{
  padding-left: 15px;
}
.cube{ 
	font-size: 1.0em;
}
}
/*------------------------------------------------------------
						学習資料集
-------------------------------------------------------------*/

.download-area{
  margin: 30px auto;
  text-align: center;
}

a.pdf {
  margin: 0 auto;
  display: block;
  width: 300px;
  height: 62px;
  background: url("../0001/images/pdf_icon.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  cursor: pointer;

}

a.pdf:active {
  background: url("../0001/images/pdf_icon_active.png") no-repeat;
  background-size: contain;
}

@media screen and (min-width: 481px) {  /* PC */
a.pdf {
  width: 390px;
  height: 80px;
}
}
/*------------------------------------------------------------
						ステップアップ
-------------------------------------------------------------*/
.stepup-title {
   font-size: 0.95em;
}

.acquisition-box {
	display: flex;
	display: -ms-flexbox; /*IE9~用*/
	width: 100%;
	margin-top: 0px;
	margin-bottom: 10px;
/*    align-items: flex-start; */

	justify-content: center;
    -ms-flex-pack: center; /*IE9~用*/
	
	flex-direction:row;
	-ms-flex-direction: row;
	
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	
	align-self: center;
	-ms-flex-item-align: center;
}

.acquisition {

}

.acquisition img{
	margin: 0 auto;
	max-width: 90%;
	height: auto;
}

.crown_box{
   margin: 10px auto;
   padding: 8px 5px;
   background:#fff; 
   display: flex;
   width: 95%;
   align-items: center;
   border:#e0e0e0 2px solid;
}
.crown_box p {
   font-size: 1.1em;
   line-height: 1.3em;
   padding: 0 2px;
}
.crown_box img {
	display: inline;
	padding-bottom: 4px;
	max-width: 50px;
	margin:5px;
    float: left;
    clear: both;
}

table.recommend  {
	margin: 15px auto;
	width: 95%;
	padding: 0px;
    font-size: 1.1em;
	border-collapse: collapse;
}

table.recommend th{
	text-align:center;
	padding: 5px;
    border: #e0e0e0 solid 2px;
    background-color: #e0e0e0;
	font-weight: 300;
}

table.recommend td{
    padding: 5px 8px;
    background-color: #fff;
	border-right: #e0e0e0 solid 2px;
	border-bottom: #e0e0e0 solid 2px;
	border-left: #e0e0e0 solid 2px;
}

@media screen and (min-width: 481px) {  /* PC */
	
.crown_box {
   width: 90%;		
}
.stepup-title {
   font-size: 1.1em;
}
.acquisition-box {
	flex-wrap: nowrap;
}
.acquisition img{
	max-width: 100%;
	height: auto;
}

table.recommend {
   width: 80%;		
}
	
table.recommend th{
	padding: 8px 15px;
}

table.recommend td{
	padding: 10px 20px;
}	
}

/*------------------------------------------------------------
                        pager&footer
-------------------------------------------------------------*/
.slide {
display: none;
clear:right;
}

.base_blank {
 width: 100%;
 height: 20px;
}

.pagination-holder {
 margin: 0px 0px;
/* position: fixed; */
 height: 83px;
 padding: 5px 8px 2px 8px;
 bottom: 0px; /*下に固定*/
 z-index: 100;
 background-color: #fe9223;
/* left: 0px;
 right: 0px; */
 color: #fff;
}

.pagination-holder_step {
 height: 83px;
}

.change-btn {
/*  text-shadow: 1px 1px 0px #222; */
  display: block;
  color: #FFF;
  font-size: 1.0rem;
  width: 130px;
  height: 36px;
  padding-top: 5px;
  padding-bottom: 9px;
  border: 2px solid #fff;
  text-align: center;
  margin: auto;
  margin-bottom: 1px;
  background-color: #fe9223;
  border-radius: 21px;
  cursor: pointer;
}
/*
.change-btn:hover {
  background-color: #feaf5e;
}
*/
.change-btn:active {
  background-color: #fe850a;
}

.change-btn span {
  display:inline-block;
}

.prev-btn {
  display: none;
  float: left;
}

.next-btn {
  float: right;
}

.gonext,.gonext_step {
 background-color: #fe9223;
 /* ページ遷移のボタンを点滅 */
 animation: flash 0.8s infinite;
}

@keyframes flash {
  0%, 100%{
    background-color: #feaf5e;
	color:#fff;
  }

  50%{
    background-color: #f97f01;
	color:#fff;
  }
}

.active {
  display: block;
}

footer {
    clear: both;
    padding: 7px 0px;
    text-align: center;
    font-size: 0.7em;
}

.fotter_comment {
    visibility: hidden;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 0.85em;
    margin: 0 0 4px 0;
    color: #ffffff;
    line-height: 1.0em;
}
.fotter_comment_step{
   display: block;
}

/*コピーライト*/
.copyright {
 clear: both;
 color: #ffd7ae;
 font-size: 0.8em;
 text-align: right;
}

@media screen and (min-width: 481px) {  /* PC */  
.pagination-holder {
 margin: 0px auto;
 max-width: 760px;
 padding: 10px 15px;
 left: 15px;
 right: 15px;
}
.change-btn {
  font-size: 1.0rem;
  padding-top: 6px;
  padding-bottom: 6px;
  height: 40px;
  width: 160px;
}
.gonext,.gonext_step {
 padding-right: 46px;
 padding-left: 46px;
}
.fotter_comment {
	margin: 0 0 5px 0;
    font-size: 1.1em;
	line-height: 0.8em;
}
.copyright {
	 font-size: 0.82em;
	}
}
/*iPhone SEでメッセージが改行されてしまう問題に対応*/
@media only screen and (max-width:350px) { /* iPhone SE */
.pagination-holder {
padding-right: 2px;
padding-left: 2px;
}
.fotter_comment {
    font-size: 0.7em;
}
.copyright {
	 font-size: 0.8em;
	}
}
/*------------------------------------------------------------
　　　　　　　　　　　　　TOPへ戻る
-------------------------------------------------------------*/
#pageTop {
	background: #666;
	border-radius: 8px;
	color: #FFF;
	padding: 10px;
	position: fixed;
	bottom: 5px;
	right: 5px;
	text-decoration: none;
	opacity: 0.7;
	font-family: "icon-fonts";
	font-size: 1.5em;
	line-height: 1em;
	text-transform: none;
	text-decoration: none;
	display: inline-block;
	width: 1.1em;
	margin-right: .2em;
	margin-left: .2em;
	text-align: left;
}
#pageTop:hover {
	background: #e4007f;
}

/*------------------------------------------------------------
                         clear_both
-------------------------------------------------------------*/
.clear_both {
  clear: both;
  height: 0;
  line-height: 0px;
}

/*------------------------------------------------------------
                         loading
-------------------------------------------------------------*/
.loader-wrap {
	position: relative;
	display: flex;
    /*align-items: center;
    justify-content: center; */
    width: 100%;
 /*   max-width: 760px; */
 /*   margin: 0px auto; */
    height: 100vh;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 9999;
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
/*  margin: 100px auto; */
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%);
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #c9c9c9, 1.8em -1.8em 0 0em rgba(201,201,201, 0.2), 2.5em 0em 0 0em rgba(201,201,201, 0.2), 1.75em 1.75em 0 0em rgba(201,201,201, 0.2), 0em 2.5em 0 0em rgba(201,201,201, 0.2), -1.8em 1.8em 0 0em rgba(201,201,201, 0.2), -2.6em 0em 0 0em rgba(201,201,201, 0.5), -1.8em -1.8em 0 0em rgba(201,201,201, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(201,201,201, 0.7), 1.8em -1.8em 0 0em #c9c9c9, 2.5em 0em 0 0em rgba(201,201,201, 0.2), 1.75em 1.75em 0 0em rgba(201,201,201, 0.2), 0em 2.5em 0 0em rgba(201,201,201, 0.2), -1.8em 1.8em 0 0em rgba(201,201,201, 0.2), -2.6em 0em 0 0em rgba(201,201,201, 0.2), -1.8em -1.8em 0 0em rgba(201,201,201, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(201,201,201, 0.5), 1.8em -1.8em 0 0em rgba(201,201,201, 0.7), 2.5em 0em 0 0em #c9c9c9, 1.75em 1.75em 0 0em rgba(201,201,201, 0.2), 0em 2.5em 0 0em rgba(201,201,201, 0.2), -1.8em 1.8em 0 0em rgba(201,201,201, 0.2), -2.6em 0em 0 0em rgba(201,201,201, 0.2), -1.8em -1.8em 0 0em rgba(201,201,201, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(201,201,201, 0.2), 1.8em -1.8em 0 0em rgba(201,201,201, 0.5), 2.5em 0em 0 0em rgba(201,201,201, 0.7), 1.75em 1.75em 0 0em #c9c9c9, 0em 2.5em 0 0em rgba(201,201,201, 0.2), -1.8em 1.8em 0 0em rgba(201,201,201, 0.2), -2.6em 0em 0 0em rgba(201,201,201, 0.2), -1.8em -1.8em 0 0em rgba(201,201,201, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(201,201,201, 0.2), 1.8em -1.8em 0 0em rgba(201,201,201, 0.2), 2.5em 0em 0 0em rgba(201,201,201, 0.5), 1.75em 1.75em 0 0em rgba(201,201,201, 0.7), 0em 2.5em 0 0em #c9c9c9, -1.8em 1.8em 0 0em rgba(201,201,201, 0.2), -2.6em 0em 0 0em rgba(201,201,201, 0.2), -1.8em -1.8em 0 0em rgba(201,201,201, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(201,201,201, 0.2), 1.8em -1.8em 0 0em rgba(201,201,201, 0.2), 2.5em 0em 0 0em rgba(201,201,201, 0.2), 1.75em 1.75em 0 0em rgba(201,201,201, 0.5), 0em 2.5em 0 0em rgba(201,201,201, 0.7), -1.8em 1.8em 0 0em #c9c9c9, -2.6em 0em 0 0em rgba(201,201,201, 0.2), -1.8em -1.8em 0 0em rgba(201,201,201, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(201,201,201, 0.2), 1.8em -1.8em 0 0em rgba(201,201,201, 0.2), 2.5em 0em 0 0em rgba(201,201,201, 0.2), 1.75em 1.75em 0 0em rgba(201,201,201, 0.2), 0em 2.5em 0 0em rgba(201,201,201, 0.5), -1.8em 1.8em 0 0em rgba(201,201,201, 0.7), -2.6em 0em 0 0em #c9c9c9, -1.8em -1.8em 0 0em rgba(201,201,201, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(201,201,201, 0.2), 1.8em -1.8em 0 0em rgba(201,201,201, 0.2), 2.5em 0em 0 0em rgba(201,201,201, 0.2), 1.75em 1.75em 0 0em rgba(201,201,201, 0.2), 0em 2.5em 0 0em rgba(201,201,201, 0.2), -1.8em 1.8em 0 0em rgba(201,201,201, 0.5), -2.6em 0em 0 0em rgba(201,201,201, 0.7), -1.8em -1.8em 0 0em #c9c9c9;
  }
}
@keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #c9c9c9, 1.8em -1.8em 0 0em rgba(201,201,201, 0.2), 2.5em 0em 0 0em rgba(201,201,201, 0.2), 1.75em 1.75em 0 0em rgba(201,201,201, 0.2), 0em 2.5em 0 0em rgba(201,201,201, 0.2), -1.8em 1.8em 0 0em rgba(201,201,201, 0.2), -2.6em 0em 0 0em rgba(201,201,201, 0.5), -1.8em -1.8em 0 0em rgba(201,201,201, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(201,201,201, 0.7), 1.8em -1.8em 0 0em #c9c9c9, 2.5em 0em 0 0em rgba(201,201,201, 0.2), 1.75em 1.75em 0 0em rgba(201,201,201, 0.2), 0em 2.5em 0 0em rgba(201,201,201, 0.2), -1.8em 1.8em 0 0em rgba(201,201,201, 0.2), -2.6em 0em 0 0em rgba(201,201,201, 0.2), -1.8em -1.8em 0 0em rgba(201,201,201, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(201,201,201, 0.5), 1.8em -1.8em 0 0em rgba(201,201,201, 0.7), 2.5em 0em 0 0em #c9c9c9, 1.75em 1.75em 0 0em rgba(201,201,201, 0.2), 0em 2.5em 0 0em rgba(201,201,201, 0.2), -1.8em 1.8em 0 0em rgba(201,201,201, 0.2), -2.6em 0em 0 0em rgba(201,201,201, 0.2), -1.8em -1.8em 0 0em rgba(201,201,201, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(201,201,201, 0.2), 1.8em -1.8em 0 0em rgba(201,201,201, 0.5), 2.5em 0em 0 0em rgba(201,201,201, 0.7), 1.75em 1.75em 0 0em #c9c9c9, 0em 2.5em 0 0em rgba(201,201,201, 0.2), -1.8em 1.8em 0 0em rgba(201,201,201, 0.2), -2.6em 0em 0 0em rgba(201,201,201, 0.2), -1.8em -1.8em 0 0em rgba(201,201,201, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(201,201,201, 0.2), 1.8em -1.8em 0 0em rgba(201,201,201, 0.2), 2.5em 0em 0 0em rgba(201,201,201, 0.5), 1.75em 1.75em 0 0em rgba(201,201,201, 0.7), 0em 2.5em 0 0em #c9c9c9, -1.8em 1.8em 0 0em rgba(201,201,201, 0.2), -2.6em 0em 0 0em rgba(201,201,201, 0.2), -1.8em -1.8em 0 0em rgba(201,201,201, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(201,201,201, 0.2), 1.8em -1.8em 0 0em rgba(201,201,201, 0.2), 2.5em 0em 0 0em rgba(201,201,201, 0.2), 1.75em 1.75em 0 0em rgba(201,201,201, 0.5), 0em 2.5em 0 0em rgba(201,201,201, 0.7), -1.8em 1.8em 0 0em #c9c9c9, -2.6em 0em 0 0em rgba(201,201,201, 0.2), -1.8em -1.8em 0 0em rgba(201,201,201, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(201,201,201, 0.2), 1.8em -1.8em 0 0em rgba(201,201,201, 0.2), 2.5em 0em 0 0em rgba(201,201,201, 0.2), 1.75em 1.75em 0 0em rgba(201,201,201, 0.2), 0em 2.5em 0 0em rgba(201,201,201, 0.5), -1.8em 1.8em 0 0em rgba(201,201,201, 0.7), -2.6em 0em 0 0em #c9c9c9, -1.8em -1.8em 0 0em rgba(201,201,201, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(201,201,201, 0.2), 1.8em -1.8em 0 0em rgba(201,201,201, 0.2), 2.5em 0em 0 0em rgba(201,201,201, 0.2), 1.75em 1.75em 0 0em rgba(201,201,201, 0.2), 0em 2.5em 0 0em rgba(201,201,201, 0.2), -1.8em 1.8em 0 0em rgba(201,201,201, 0.5), -2.6em 0em 0 0em rgba(201,201,201, 0.7), -1.8em -1.8em 0 0em #c9c9c9;
  }
}