@charset "utf-8";
/* CSS Document */
/*第9回css
**********************/
body{
  min-width:1150px;
  transition: all 1s;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff;  /* 背景カラー */
  z-index: 9999;  /* 一番手前に */
  pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;  /* 初期値 : 透過状態 */
  -webkit-transition: opacity .8s ease;  /* アニメーション時間は 0.8秒 */
  transition: opacity .8s ease;
}
body.fadeout::before {
  opacity: 1; 
}
#main {
  background: url(/image/global/science-edu/micro_ko/content9/index_17.png) #eee repeat left top;
}
#main * {
  font-family: 'td','ng','Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  box-sizing: border-box;
  -webkit-transition: transform .8s ease-out;
  transition: transform .8s ease-out;
}
.content-wrap{
  background: url(/image/global/science-edu/micro_ko/content9/index_16.png) no-repeat left top,url(/image/global/science-edu/micro_ko/content9/index_15.png) no-repeat center bottom;
}
body.fadeout .content-wrap{
  -webkit-transform:scale(1.1);
  transform:scale(1.1);
}
#main.mappage .content-wrap{
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {
      opacity: 0;
      -webkit-transform:scale(1.1);
      transform:scale(1.1);
    }
    100% {
      opacity: 1;
      -webkit-transform:scale(1);
      transform:scale(1);
    }
}
/*--タイトル--*/
#pageTitle {
  background: url(/image/global/science-edu/micro_ko/content9/index_01.png) repeat center top;
  width: 671px;
  height: 649px;
  margin: 90px auto 0 auto;
  padding-top: 200px;
  position: relative;
}
#pageTitle p.label{
  text-align: center;
}
#pageTitle p.label span{
  background: #E60027;
  color: #FFF;
  font-size: 13px;
  display: inline-block;
  border-radius: 50px;
  padding: 3px 15px;
  text-align: center;
  min-width: 68px;
  margin-bottom: 8px;
}
#main.index #pageTitle div p {
  display: block;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  letter-spacing: .05em;
  text-indent: .05em;
}
#main.index #pageTitle div p ruby rt{
  font-weight: 400;
  line-height: 1.2;
}
#main.index #pageTitle p.read{
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
  line-height: 2.2;
}
#pageTitle .arrow{
  text-align: center;
  position: absolute;
  left: 10px;
  right: 0;
  bottom: -20px;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 140px;
  animation: bound 3s infinite;
}
#pageTitle .arrow a{
  padding-top: 20px;
  display: inline-block;
}
#pageTitle .arrow img{
  position: relative;
}
#pageTitle .arrow:hover{
  bottom: -20px;
}
@keyframes bound {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-25px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-15px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}
/*モーダル*/
.modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 98;
}
.modalBg {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99;
}
.modalCont {
  display: block;
  width: 80%;
  height: 80%;
  max-width: 900px;
  max-height: 580px;
  background: #FFF;
  border-radius: 6px;
  padding: 50px 55px 40px 55px;
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border: #a6d8e3 solid 3px;
  margin-top: 30px;
  z-index: 100;
}
.modalCont::before{
  content: '';
  display: block;
  position: absolute;
  right: -2%;
  top: -4%;
  width: 4vw;
  height: 6vw;
  background: url(/image/global/science-edu/micro_ko/content9/index_18.png) no-repeat center center / contain;
  z-index: 101;
}
.modalCont::after{
  content: '';
  display: block;
  position: absolute;
  left: -3%;
  bottom: -5%;
  width: 5vw;
  height: 5vw;
  background: url(/image/global/science-edu/micro_ko/content9/index_19.png) no-repeat center center / contain;
  z-index: 101;
}
.modal .modal_sc{
  height: 90%;
  overflow: auto;
}
.modal .m_img02 img{
  max-height: 100%;
}
.modalCont .boxWrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.modalCont .boxWrap .leftBox{
  width: 100%;
  margin-bottom: 30px;
}
.modalCont .boxWrap .leftBox h3{
  margin-bottom: 20px;
}
#main.index .modalCont .boxWrap .leftBox p{
  line-height: 1.8;
  font-size: 14px;
}
.modalCont .boxWrap .rightBox{
  width: 100%;
}
.modalCont .boxWrap .rightBox ul.imgBox{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.modalCont .boxWrap .rightBox ul.imgBox li{
  width: 300px;
}
.modalCont .boxWrap .rightBox ul.imgBox li + li{
  margin-left: 15px;
}
.modalCont .boxWrap .rightBox ul.imgBox li .imgclip{
  min-height: 202px;
}
.modalCont .boxWrap .rightBox ul.imgBox li img{
  max-width: 100%;
}
.modalCont .boxWrap .rightBox ul.imgBox li .cap{
  display: block;
  margin-top: 8px;
  background: url(/image/global/science-edu/micro_ko/content9/index_20.png) no-repeat left 2px / 10px auto;
  padding-left: 20px;
  font-size: 12px;
  color: #707176;
}
.modalCont .modalcloseBtn{
  display: block;
  margin: 15px auto 0 auto;
  text-align: center;
  position: relative;
  text-decoration: none;
  width: 187px;
  /*border: #e5e5e5 solid 2px;
  border-radius: 50px;
  padding: 10px 10px 10px 20px;
  font-size: 15px;
  font-weight: 700;
  background: url(/image/global/science-edu/micro_ko/content9/index_21.png) #FFF no-repeat 8px 50%;
  -moz-box-shadow: 0px 5px 0px 0px rgba(229, 229, 229, 1);
  -webkit-box-shadow: 0px 5px 0px 0px rgba(229, 229, 229, 1);
  -ms-box-shadow: 0px 5px 0px 0px rgba(229, 229, 229, 1);
  box-shadow: 0px 5px 0px 0px rgba(229, 229, 229, 1);
  color: #000;*/
}
.modalCont .modalcloseBtn:hover{
  cursor: pointer;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  top: 3px;
}
.modalCont .modalcloseBtn.map{
  background: none;
  padding: 0;
  width: 288px;
  border-radius: 0;
  border: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
/*コンテンツ*/
#meteoriteIntro{
  min-height: 2180px;
  margin-top: 370px;
  position: relative;
}
#meteoriteIntro .meteorite{
  position: absolute;
  text-align: center;
  z-index: 2;
}
#meteoriteIntro .meteorite .m_image{
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#meteoriteIntro .meteorite .m_image:hover{
  filter:alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  cursor: pointer;
}
#meteoriteIntro .m_btn{
  position: relative;
}
#meteoriteIntro .m_btn:hover{
  top: 2px;
}
#meteoriteIntro .m_btn img{
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#meteoriteIntro .m_btn img:hover{
  filter:alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  cursor: pointer;
}
#meteoriteIntro #meteorite01{
  left: 220px;
}
#meteoriteIntro #meteorite01 .m_image{
  animation-name: m01_anime;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;  
}
@keyframes m01_anime {
    0% {
        transform: translate(0,0px);
    }

    100% {
        transform: translate(0,-15px)
    }
}
#meteoriteIntro #meteorite02{
  top: 680px;
  right: 180px;
}
#meteoriteIntro #meteorite02 .m_image{
  animation-name: m02_anime;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 2s;  
}
@keyframes m02_anime {
    0% {
        transform: translate(0,-20px);
    }

    100% {
        transform: translate(0,0px)
    }
}
#meteoriteIntro #meteorite03{
  top: 515px;
  left: 100px;
}
#meteoriteIntro #meteorite03 .m_image{
  animation-name: m03_anime;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.2s;  
}
@keyframes m03_anime {
    0% {
        transform: translate(0,0);
    }

    100% {
        transform: translate(0,-20px)
    }
}
#meteoriteIntro #meteorite04{
  top: 1120px;
  left: 130px;
}
#meteoriteIntro #meteorite04 .m_image{
  animation-name: m04_anime;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;  
}
@keyframes m04_anime {
    0% {
        transform: translate(0,-20px);
    }

    100% {
        transform: translate(0,0px)
    }
}
#meteoriteIntro #meteorite05{
  top: 1200px;
  right: 95px;
}
#meteoriteIntro #meteorite05 .m_image{
  animation-name: m05_anime;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.2s;  
}
@keyframes m05_anime {
    0% {
        transform: translate(0,0);
    }

    100% {
        transform: translate(0,-10px)
    }
}
#meteoriteIntro #meteorite06{
  top: 170px;
  right: 70px;
}
#meteoriteIntro #meteorite06 .m_image{
  animation-name: m04_anime;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;  
}
@keyframes m06_anime {
    0% {
        transform: translate(0,-20px);
    }

    100% {
        transform: translate(0,0px)
    }
}
#earthLink{
  width: 100%;
  position: absolute;
  text-align: center;
  bottom: 40px;
}
#earthLink .heading{
  text-align: center;
  margin-bottom: 20px;
}
#earthLink .nextLink{
  text-align: center;
  animation: bound02 4s infinite;
}
#earthLink .nextLink a{
  display: inline-block;
}
#earthLink .nextLink img{
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#earthLink .nextLink img:hover{
  filter:alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  cursor: pointer;
}
@keyframes bound02 {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-15px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-10px) }
  50% { transform:translateY(0) }
  90% { transform:translateY(0) }
}


/*--mapPage--*/
.content-wrap.map{
  background: url(/image/global/science-edu/micro_ko/content9/map_01.png) repeat left top;
	padding-bottom: 40px;
}

/*--見出し--*/
#pageTitle_map {
  margin-top: 40px;
  margin-bottom: 10px;
}
#pageTitle_map p.label {
  background: #E60027;
  color: #FFF;
  font-size: 13px;
  display: inline-block;
  border-radius: 50px;
  padding: 3px 15px;
  text-align: center;
  min-width: 68px;
  margin-bottom: 12px;
}
#pageTitle_map h2{
  display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}
#pageTitle_map h2::after{
	content: "";
	display: inline-block;
	width: 670px;
	height: 1px;
	border-bottom: #000 dotted 1px;
}
#pageTitle_map h2 span{
  display: inline-block;
  font-weight: 700;
  font-size: 28px;
}

/*--マップ--*/
#mapArea{
  position: relative;
}
#mapArea ul{
	display: block;
	width: 1100px;
	height: 675px;
	background: url(/image/global/science-edu/micro_ko/content9/map_02.png) no-repeat left top;
	position: relative;
}
#mapArea ul li{
	display: inline-block;
	position: absolute;
	cursor: pointer;
}
#mapArea ul li img{
	animation-duration: 3.5s;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
  backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
#mapArea ul li:nth-child(odd) img{
	animation-name: kira2;
}
#mapArea ul li:nth-child(even) img{
	animation-name: kira2;
	animation-delay: -1s;
}
#mapArea ul li#kira_01{
	top: 385px;
	left: 280px;
}
#mapArea ul li#kira_02{
	top: 402px;
	left: 258px;
}
#mapArea ul li#kira_03{
	top: 362px;
	left: 168px;
}
#mapArea ul li#kira_04{
	top: 273px;
	left: 283px;
}
#mapArea ul li#kira_05{
	top: 363px;
	left: 756px;
}
#mapArea ul li#kira_06{
	top: 418px;
	left: 807px;
}
#mapArea ul li#kira_07{
	top: 250px;
	left: 508px;
}
#mapArea ul li#kira_08{
	top: 518px;
	left: 184px;
}
#mapArea ul li#kira_09{
	top: 470px;
	left: 205px;
}
#mapArea ul li#kira_10{
	top: 389px;
	left: 134px;
}
#mapArea ul li#kira_a{
	top: 372px;
	left: 209px;
}
#mapArea ul li#kira_b{
	top: 294px;
	left: 174px;
}
#mapArea ul li#kira_c{
	top: 566px;
	left: 493px;
}
#mapArea .boxcheck{
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 97;
}
#mapArea .boxcheck a{
  display: block;
}
#mapArea .boxcheck img{
  display: block;
}
/*--ケース--*/
#stoneLine{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: stretch;
	width: 980px;
	height: 360px;
	padding: 14px;
	margin: 40px auto 0 auto;
	background: url(/image/global/science-edu/micro_ko/content9/map_03.png) no-repeat left top;
	box-sizing: border-box;
	position: relative;
}
#stoneLine li{
	opacity: 0;
	margin-right: 9px;
	margin-bottom: 10px;
}
#stoneLine li.crr{
	opacity: 1;
	cursor: pointer;
}
#stoneLine li:nth-child(-n+6){
	width: 151px;
}
#stoneLine li:nth-child(6){
	margin-right: 0;
}
#stoneLine li:nth-child(n+7){
	width: 128px;
}
#stoneLine li:nth-child(7){
	width: 127px;
}
#stoneLine li:nth-child(13){
	margin-right: 0;
}
#stoneLine li figure{
	display: block;
	height: 131px;
	margin: 0 0 5px 0;
	padding: 0;
	box-sizing: border-box;
  text-align: center;
}
#stoneLine li figure img{
  max-width: 95%;
}
#stoneLine li figcaption{
	display: block;
	width: 100%;
	height: 25px;
	padding: 5px 0 0 0;
	margin-left: auto;
	margin-right: auto;
	line-height: 100%;
	font-size: 13px;
	text-align: center;
	font-weight: bold;
	background: #f3f3f3;
	box-sizing: border-box;
}
#stoneLine li#stone_01 figure{
	padding: 15px 0 0 7px;
}
#stoneLine li#stone_02 figure{
	padding: 22px 0 0 15px;
}
#stoneLine li#stone_03 figure{
	padding: 18px 0 0 16px;
}
#stoneLine li#stone_04 figure{
	padding: 17px 0 0 11px;
}
#stoneLine li#stone_04 figcaption{
	font-size: 10px;
	padding-top: 8px;
}
#stoneLine li#stone_05 figure{
	padding: 9px 0 0 13px;
}
#stoneLine li#stone_06 figure{
	padding: 10px 0 0 5px;
}
#stoneLine li#stone_07 figure{
	padding: 18px 0 0 12px;
}
#stoneLine li#stone_08 figure{
	padding: 38px 0 0 3px;
}
#stoneLine li#stone_09 figure{
	padding: 5px 0 0 13px;
}
#stoneLine li#stone_09 figcaption{
	font-size: 10px;
	padding-top: 8px;
}
#stoneLine li#stone_10 figure{
	padding: 10px 0 0 9px;
}
#stoneLine li#stone_a figure{
	padding: 15px 0 0 9px;
}
#stoneLine li#stone_b figure{
	padding: 12px 0 0 6px;
}
#stoneLine li#stone_c figure{
	padding: 29px 0 0 2px;
}
/*--TOPへ戻る--*/
.topanc{
  text-align: center;
  margin-top: 15px;
}
.topanc a{
  display: inline-block;
}
.topanc a:hover{
  filter:alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
/*--まとめへ--*/
.compBtn{
  display: none;
  text-align: center;
  margin-top: 15px;
}
.compBtn img{
  cursor: pointer;
}
.compBtn.active:hover{
  filter:alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
/*--モーダル--*/
.content-wrap.map .modal .mapScroll{
	overflow-y: auto;
	max-height: 90%;
  padding: 0 15px 10px 15px;
}
.content-wrap.map .modal .textArea{
	display: block;
  width: 100%;
  margin-bottom: 30px;
}
#main.index .content-wrap.map .modal .textArea p{
  line-height: 1.6;
}
.content-wrap.map .modal .textArea p sup{
  font-size: 90%;
  top: -5px;
  position: relative;
}
.content-wrap.map .modal .textArea::after{
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
.content-wrap.map .modal .textArea h3{
	display: block;
  width: 100%;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 22px;
  line-height: 1.2;
  position: relative;
  padding-left: 20px;
  box-sizing: border-box;
}
.content-wrap.map  .modal .textArea h3::before{
  content: '';
  position: absolute;
  background: #e60027;
  width: 5px;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  border-radius: 3px;
}
.content-wrap.map  .modal .textArea h3 small{
	font-size: 16px;
}
.content-wrap.map  .modal .textArea .att{
  font-size: 15px;
  margin-top: 20px;
}
.content-wrap.map  .modal .textArea ul{
	display: block;
  width: 410px;
  width: -webkit-calc(100% - 330px);
  width: -moz-calc(100% - 330px);
  width: calc(100% - 330px);
	background: #F2F2F2;
	padding: 15px;
	margin-bottom: 15px;
	box-sizing: border-box;
}
.content-wrap.map  .modal .textArea ul li{
	font-size: 13px;
	line-height: 150%;
	padding-left: 1em;
	text-indent: -1em;
  margin-bottom: 5px;
}
.content-wrap.map  .modal .textArea ul li:last-of-type{
  margin-bottom: 0;
}
.content-wrap.map  .modal .textArea ul li::before{
	content: "・";
}
.content-wrap.map .modal .sideImg{
  display: block;
  float: right;
  max-width: 300px;
  margin-left: 20px;
}
.content-wrap.map .modal .sideImg figure{
  margin: 0;
  padding: 0;
}
.content-wrap.map .modal .sideImg img{
  max-width: 100%;
}
.content-wrap.map .modal .imgArea{
  width: 100%;
}
.content-wrap.map .modal .imgArea .comparisonImg{
  display: flex;
  justify-content: center;
  width: 100%;
}
.content-wrap.map  .modal .imgArea figure{
	margin: 0 0 15px 0;
	padding: 0;
}
.content-wrap.map  .modal .imgArea figure img{
  max-width: 100%;
}
@media all and (-ms-high-contrast: none){
  .content-wrap.map .modal .imgArea .comparisonImg {
    width: 100% !important;
    display: block !important;
    font-size: 0 !important;
    text-align: center !important;
  }
  .content-wrap.map .modal .imgArea .comparisonImg figure{
    display: inline-block !important;
    font-size: 12px !important;
  }
}
.content-wrap.map .modal .imgArea figcaption{
	display: block;
	margin: 8px 0 0 0;
	padding: 0 0 0 20px;
	font-size: 12px;
	color: #707176;
	background: url(/image/global/science-edu/micro_ko/content9/index_20.png) no-repeat left 2px / 10px auto;
  text-align: left;
}
.content-wrap.map .modal .imgArea .comparisonImg figure:not(:first-of-type) figcaption{
  margin-left: 20px;
}
.content-wrap.map .modal .imgArea .comparisonImg.three figure:nth-of-type(2) figcaption{
  margin-left: 14px;
}
.content-wrap.map .modal .imgArea .comparisonImg.three figure:nth-of-type(3) figcaption{
  margin-left: 25px;
}
.content-wrap.map .modal .imgArea .nomalImg{
  display: flex;
  justify-content: center;
  width: 100%;
}
.content-wrap.map .modal .imgArea .nomalImg figure{
  margin-right: 40px;
}
.content-wrap.map .modal .imgArea .nomalImg figure:last-of-type{
  margin-right: 0;
}
@media all and (-ms-high-contrast: none){
  .content-wrap.map .modal .imgArea .nomalImg {
    width: 100% !important;
    display: block !important;
    font-size: 0 !important;
    text-align: center !important;
  }
  .content-wrap.map .modal .imgArea .nomalImg figure{
    display: inline-block !important;
    font-size: 12px !important;
  }
}
.content-wrap.map .modal .imgArea .otherImg{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 15px auto 0 auto;
  width: 527px;
}
#main.index .content-wrap.map .modal .imgArea .otherImg .cap{
  font-size: 13px;
  text-align: center;
  width: 100%;
  background: #f2f2f2;
  padding: 5px 10px;
  line-height: 1.6;
}
#successModal.modal .modalCont{
  max-height: 580px;
}
#successModal.modal .successScroll{
  display: block;
	overflow-y: auto;
  text-align: center;
	max-height: 90%;
  padding: 0 15px;
}
#successModal.modal .successScroll .suc_head{
  background: url("/image/global/science-edu/micro_ko/content9/map_46.png") no-repeat right 70px bottom / 55px auto;
}
#successModal.modal .successScroll h3{
  display: inline-block;
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  padding-left: 50px;
  padding-right: 40px;
  margin-bottom: 22px;
  position: relative;
}
#successModal.modal .successScroll h3 img{
	display: inline-block;
	animation-duration: 1s;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
  position: absolute;
}
#successModal.modal .successScroll h3 img:first-child{
	animation-name: kira;
  top: -12px;
  left: 0;
}
#successModal.modal .successScroll h3 img:last-child{
	animation-name: kira;
	animation-delay: -0.5s;
  bottom: -12px;
  right: 0;
}
#successModal.modal .successScroll p.read{
  display: block;
  text-align: center;
  margin-bottom: 24px;
  font-size: 20px;
}
#successModal.modal .successScroll .captionCont{
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 25px;
  background: #d7f2f7;
  border-radius: 8px;
  margin-bottom: 8px;
}
#successModal.modal .successScroll .captionCont .textWrap{
  width: 100%;
}
#successModal.modal .successScroll .captionCont strong{
  display: block;
  font-weight: bold;
  line-height: 1.4;
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}
#successModal.modal .successScroll p.text{
  margin-bottom: 25px;
  line-height: 2;
}
#successModal.modal .successScroll p.thanks{
  margin-top: 30px;
  font-size: 13px;
}
#successModal.modal .successScroll p.thanks a{
  color: #09729d;
}
#successModal.modal .successScroll .captionCont li{
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 10px;
  line-height: 1.8;
}
#successModal.modal .successScroll .captionCont li a{


  color: #09729d;
}
#successModal.modal .successScroll .captionCont li::before{
  content: "・";
}
#successModal.modal .successScroll .captionCont li:last-child{
  margin-bottom: 0;
}
#successModal.modal .successScroll .captionCont li a{
  color: #000;
}
#successModal.modal .successScroll .captionCont li a:hover{
  text-decoration: none;
}
#successModal.modal .successScroll .captionCont .imgWrap{
  width: 150px;
  padding-right: 20px;
}
#successModal.modal .successScroll .captionCont .imgWrap img{
  max-width: 100%;
}

/*--アニメーション--*/
@keyframes kira {
    0% { transform :rotate(5deg) scale(0.6);}
    50% { transform: rotate(0deg) scale(0.9); }
    100%   { transform: rotate(5deg) scale(0.6); }
}
@keyframes kira2 {
    0% { transform : rotate(0deg) scale(0.4); opacity: 0.4;}
    20% { transform : rotate(10deg) scale(1); opacity: 1;}
    60%   { transform:  rotate(0deg) scale(0.4); opacity: 0.4;}
    100%   { transform:  rotate(0deg) scale(0.4); opacity: 0.4;}
}

