/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */
.sp {display: none;}
.pc {display: inline-block;}
@media screen and (max-width: 767px) {
	.sp {display: inline-block;}
	.pc {display: none;}
}
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}
.remodal-wrapper {
  /*padding: 10px 10px 0;*/
}
.remodal {
  box-sizing: border-box;
  width: 84%;
  /*margin-bottom: 10px;
  padding: 35px;*/
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  overflow: visible;
  width: 32px;
  height: 30px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity:1.0;
  transition: opacity 0.2s;
  text-decoration: none;
  border: 0;
  outline: 0;
  background: transparent;
}
.remodal-close:hover,
.remodal-close:focus {
  opacity: 0.7;
}

/*.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\00d7";
  text-align: center;
}*/

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    transform: none;

    opacity: 1;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);

    opacity: 1;
  }
  to {
    transform: scale(0.95);

    opacity: 0;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

/*@media only screen and (min-width: 768px) {
  .remodal {
    max-width: 82%;
  }
}*/

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/******************************* modalカスタム *******************************/
.remodal-wrapper {
  padding: 0;
}
.remodal{
	min-width: 800px;
	max-width: 1040px;
	background-color: #fff;
	/*border: 3px solid #333333;*/
}
/*.remodal .modalBox{
	padding:50px 5% 30px;
	font-size: 15px;
	text-align:left;
	color:#4c4948;
}*/
.remodal .modalBox .modalInnerBox{
	margin-bottom: 30px;
}
.remodal .modalBox .modalInnerBox:last-child{
	margin-bottom: 0px;
}
.remodal h3{
	margin-bottom: 20px;
}
.remodal h4{
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}
.remodal p.regnumber{
	font-size: 18px;
	font-weight: 700;
	display: inline-block;
	letter-spacing: 0.05em;
	color: #ffffff;
	background-color: #4c4948;
	padding:3px 10px;
	margin-bottom: 30px;
}
.remodal p{
	margin:0 0 10px 0;
	padding:0;
	vertical-align: baseline;
	font-size:100%;
	line-height:1.8;
}
.remodal a{
	color: #ff0000;
}
.remodal a:hover{
	text-decoration: none;
}
.remodal img{
	width:100%;
	height:100%;
}
.remodal ol li{
	line-height: 1.8;
}
.remodal .floatLeft,
.remodal .floatRight{
	margin:0; 
}
.remodal .modalBox .modalInnerBox p:last-child{
	margin-bottom: 0px;
}
/*.remodal .remodal-cancel{
	text-align:center;
	vertical-align:middle;
	width:260px;
	height:46px;
	display:block;
	margin:5px auto 45px;
	padding-left:20px;
	letter-spacing:3px;
	border:1px solid #4c4948;
	background:url(../images/btn_close_off2.png) no-repeat 75px center;
	background-color:transparent;
	line-height:1;
	color:#4c4948;
	transition: all .25s;
}
.remodal .remodal-cancel:hover{
	border:1px solid #aaaaaa;
	color:#aaaaaa;
	background:url(../images/btn_close_on2.png) no-repeat 75px center;
}*/
.remodal .modalBox .floatLeft{
	width:70%;
}
.remodal .modalBox .floatRight{
	width:25%;
}
.remodal .pcView{
	display:block;
}
.remodal .spView{
	display:none;
}

.remodal .modalBox .detailBox{
	padding:20px;
	border:1px solid #ff0000;
	box-sizing:border-box;
	margin-bottom:20px;
}
.remodal .modalBox .detailBox h5{
	color:#ff0000;
	font-size:22px;
	font-weight:800;
	margin-bottom:10px;
}
.remodal .modalBox .detailBox strong{
	font-weight:bold;
	font-size:18px;
}
.remodal .modalBox .detailBox strong span{
	display:inline-block;
	border: 1px solid #4c4948;
	padding: 0px 5px;
}

.remodal .modalBox .modalLink{
	display: table;
	width: 100%;
}
.remodal .modalBox .modalLink a{
	border: 5px solid #ff0000;
	box-sizing: border-box;
	padding: 10px;
	float: left;
	font-size: 14px;
	width: 32%;
	display: inline-table;
	margin-right: 2%;
	opacity:1;
	transition: opacity .3s;
}
.remodal .modalBox .modalLink a:hover{
	opacity:0.65;
}
.remodal .modalBox .modalLink a:last-child{
	margin-right: 0;
}
.remodal .modalBox .modalLink a p{
	display:table-cell;
	margin: 0;
	vertical-align: middle;
	line-height: 1.7;
	font-size:0.9em;
	text-align:left;
	padding-left:15px;
}
.remodal .modalBox .modalLink a p.thumbimg{
	width:84px;
	height:120px;
	padding-left:0px;
}
.remodal .modalBox .modalLink a p.thumbimg img{
	width:84px;
	height:120px;
}
.remodal .modalBox .modalLink a p span{
	color:#4c4948;
	display:inline-block;
	text-decoration:none;
}
.remodal table{
	border-top:#999999 1px solid;
	border-left:#999999 1px solid;
	width:100%;
	font-size:13px;
	border-collapse:collapse;
}
.remodal table tr th,
.remodal table tr td {
	border-right:#999999 1px solid;
	border-bottom:#999999 1px solid;
	padding:8px 5px;
	text-align:center;
	border-collapse:collapse;
	vertical-align:middle;
}
.remodal table tr th {
	background:#ebebeb;
	font-weight: normal;
}




/*#modalwindow01 .modalBox .icomerit01{
	padding-left: 90px;
	background: url(../images/ico_merit01.gif) no-repeat left center;
	background-size: 80px;
}*/
/*#modalwindow01 .modalBox .floatLeft img{
	max-width: 387px;
	max-height: 32px;
}
#modalwindow02 .modalBox .icomerit02{
	padding-left: 90px;
	background: url(../images/ico_merit02.gif) no-repeat left center;
	background-size: 80px;
}
#modalwindow02 .modalBox .floatLeft{width: 60%;}
#modalwindow02 .modalBox .floatRight{width: 35%;}
#modalwindow02 .modalBox .floatLeft img{
	max-width: 504px;
	max-height: 106px;
}

#modalwindow03 .modalBox .floatLeft,
#modalwindow04 .modalBox .floatLeft,
#modalwindow05 .modalBox .floatLeft{width:55%;}
#modalwindow03 .modalBox .floatRight,
#modalwindow04 .modalBox .floatRight,
#modalwindow05 .modalBox .floatRight{width: 40%;}

#modalwindow03 .modalBox .detailBox .floatLeft img{
	width: 65%;
	height: 65%;
}

#modalwindow04 .modalBox .img_teisouon{
	min-height:70px;
	font-size:85%;
	padding-left:1em;
	text-indent:-1em;
	padding-right:85px;
	background: url(../images/img_shovel2_3.gif) no-repeat right center;
	background-size:70px;
}
#modalwindow05 .modalBox .floatLeft img{
	width: 65%;
	height: 65%;
}
#modalwindow06 .modalBox .half .floatLeft,
#modalwindow06 .modalBox .half .floatRight{
	width: 48.5%;
}

#modalwindow06 .modalBox ul{margin-bottom:10px;}
#modalwindow06 .modalBox ul li{
	margin-bottom:5px;
	padding-left:1em;
	text-indent:-1em;
}
#modalwindow06 .modalBox .modalLink a,
#modalwindow09 .modalBox .modalLink a{
	width: 48.5%;
	margin-right: 3%;
}
#modalwindow06 .modalBox .modalLink a:last-child,
#modalwindow09 .modalBox .modalLink a:last-child{
	margin-right: 0;
}

#modalwindow07 .modalBox .modalLink a {
    width: 48.5%;
    margin-right: 3%;
}

#modalwindow07 .modalBox .modalLink a:last-child{
	margin-right: 0;
}

#modalwindow07 .modalBox h3,
#modalwindow08 .modalBox h3{
	margin-bottom: 10px;
}
#modalwindow07 .modalBox .floatLeft{
	width: 60%;
}
#modalwindow07 .modalBox .floatRight{
	width: 35%;
}

#modalwindow08 .modalBox ol li{
	margin-bottom: 20px;
}
#modalwindow08 .modalBox ol li strong{
	display: block;
	font-weight: normal;
	font-size: 20px;
}
#modalwindow08 .modalBox .strongtext{
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 0;
}
#modalwindow08 .modalBox .strongtext span{
	font-weight: normal;
	font-size: 15px;
}

#modalwindow08 .modalBox .half .floatLeft,
#modalwindow08 .modalBox .half .floatRight{
	width: 48.5%;
}

#modalwindow08 .modalBox .modalLink a{
	width: 48.5%;
	margin-right: 3%;
}


#modalwindow09 .modalBox .floatLeft,
#modalwindow10 .modalBox .floatLeft{width: 62%;}

#modalwindow09 .modalBox .floatRight,
#modalwindow10 .modalBox .floatRight{width: 35%}

#modalwindow09 .modalInnerBox .floatLeft dl{
    line-height: 1.8;
    margin-bottom: 1em;
}

#modalwindow09 .modalInnerBox .floatLeft dt{
    float: left;
}

#modalwindow09 .modalInnerBox .floatLeft dd{
    margin-left: 8em;
}

#modalwindow10 .modalInnerBox ol{
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}
#modalwindow10 .modalInnerBox ol ol{
    padding-left: 1em;
}
#modalwindow10 .modalInnerBox li{
    padding-left: 1em;
}
#modalwindow10 .modalInnerBox li:before {
counter-increment: item;
    content: counter(item)'';
    background-color: #DA7F00;
    color: #ffffff;
    display: block;
    float: left;
    line-height: 17px;
    margin: 5px 0 0 -14px;
    text-align: center;
    height: 17px;
    width: 17px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.8em;
}

#modalwindow10 .modalBox .modalInnerBox li>div{
	margin: 0 0 0 10px;
}

#modalwindow10 .modalBox .modalLink {
    width: 48.5%;
    margin: 0 auto;
}

#modalwindow10 .modalBox .modalLink a{
	width: 100%;
}
*/

/****************************** SP調整 ******************************/
@media screen and (max-width: 767px){

.remodal-wrapper {
  padding: 0 10px;
}
.remodal{
	min-width:inherit;
	max-width:inherit;
	width:100%;
	box-sizing:border-box;
	/*background-color: #fff;
	border: 3px solid #333333;*/
}
.remodal .modalBox{
	/*padding:50px 5% 30px;*/
	font-size: 14.5px;
	/*text-align:left;
	color:#4c4948;*/
}
.remodal .modalBox .modalInnerBox{
	/*margin-bottom: 30px;*/
}
.remodal .modalBox .modalInnerBox:last-child{
	/*margin-bottom: 0px;*/
}
.remodal h3{
	/*margin-bottom: 20px;*/
}
.remodal h4{
	font-size: 18px;
	/*font-weight: 700;
	margin-bottom: 10px;*/
}
.remodal p.regnumber{
	font-size: 15px;
	font-weight: 500;
	padding:3px 8px;
	/*display: inline-block;
	letter-spacing: 0.05em;
	color: #ffffff;
	background-color: #4c4948;
	margin-bottom: 30px;*/
}
.remodal p{
	/*margin:0 0 10px 0;
	padding:0;
	vertical-align: baseline;
	font-size:100%;
	line-height:1.8;*/
}
/*.remodal a{
	color: #ff0000;
}
.remodal a:hover{
	text-decoration: none;
}*/
.remodal ol li{
	line-height: 1.8;
}
.remodal .floatLeft,
.remodal .floatRight{
	margin:0;
	float:none;
}
/*.remodal .modalBox .modalInnerBox p:last-child{
	margin-bottom: 0px;
}
.remodal .modalBox .floatRight img{
	width: 100%;
	height: 100%;
}*/
.remodal-close {
  top: 12px;
  right: 10px;
	z-index: 1;
}
.remodal .remodal-cancel{
	width:90%;
	margin:0 auto 40px;
	/*text-align:center;
	vertical-align:middle;
	height:46px;
	display:block;
	padding-left:20px;
	letter-spacing:3px;
	border:1px solid #4c4948;
	background:url(../images/btn_close_off2.png) no-repeat 75px center;
	background-color:transparent;
	line-height:1;
	color:#4c4948;
	transition: all .25s;*/
}
.remodal .remodal-cancel:hover{
	/*border:1px solid #aaaaaa;
	color:#aaaaaa;
	background:url(../images/btn_close_on2.png) no-repeat 75px center;*/
}
.remodal .modalBox .floatLeft{
		width:100% !important;
}
.remodal .modalBox .floatRight{
		width:80% !important;
		margin:20px 10% 0 !important;
}
.remodal .pcView{
	display:none;
}
.remodal .spView{
	display:block;
}
.remodal .modalBox .detailBox{
	padding:5%;
	/*border:1px solid #ff0000;
	box-sizing:border-box;
	margin-bottom:20px;*/
}
.remodal .modalBox .detailBox h5{
	font-size:18px;
	/*color:#ff0000;
	font-weight:800;
	margin-bottom:10px;*/
}
.remodal .modalBox .detailBox strong{
	/*font-weight:bold;*/
	font-size:16px;
}
/*.remodal .modalBox .detailBox strong span{
	display:inline-block;
	border: 1px solid #4c4948;
	padding: 0px 5px;
}*/

.remodal .modalBox .modalLink{
	display: table;
	width: 100%;
}
.remodal .modalBox .modalLink a{
	float: none;
	width: 100%;
	margin:0 0 5px 0;

	/*border: 5px solid #ff0000;
	box-sizing: border-box;
	padding: 10px;
	font-size: 14px;
	display: inline-table;
	margin-right: 2%;
	opacity:1;
	transition: opacity .3s;*/
}
.remodal .modalBox .modalLink a:hover{
	opacity:1;
}
/*.remodal .modalBox .modalLink a:last-child{
	margin-right: 0;
}*/
.remodal .modalBox .modalLink a p{
	/*display:table-cell;
	margin: 0;
	vertical-align: middle;
	line-height: 1.7;
	font-size:0.9em;
	text-align:left;
	padding-left:15px;*/
}
.remodal .modalBox .modalLink a p.thumbimg{
	width:70px;
	height:100px;
	padding-left:0px;
}
.remodal .modalBox .modalLink a p.thumbimg img{
	width:70px;
	height:100px;
}
.remodal .modalBox .modalLink a p span{
	/*color:#4c4948;
	display:inline-block;
	text-decoration:none;*/
}
/*.remodal table{
	border-top:#999999 1px solid;
	border-left:#999999 1px solid;
	width:100%;
	font-size:13px;
	border-collapse:collapse;
}
.remodal table tr th,
.remodal table tr td {
	border-right:#999999 1px solid;
	border-bottom:#999999 1px solid;
	padding:8px 5px;
	text-align:center;
	border-collapse:collapse;
	vertical-align:middle;
}
.remodal table tr th {
	background:#ebebeb;
	font-weight: normal;
}*/

















#modalwindow01 .modalBox .icomerit01{
	padding-left: 70px;
	background-size: 65px;
	/*background: url(../images/ico_merit01.gif) no-repeat left center;*/
}
#modalwindow02 .modalBox .icomerit02{
	padding-left: 70px;
	background-size: 65px;
	/*background: url(../images/ico_merit02.gif) no-repeat left center;*/
}
/*#modalwindow02 .modalBox .floatLeft{
	width: 60%;
}
#modalwindow02 .modalBox .floatRight{
	width: 35%;
}
#modalwindow02 .modalBox .floatLeft img{
	width: 100%;
	height: 100%;
}*/


#modalwindow07 .modalBox h3,
#modalwindow08 .modalBox h3{
	margin-bottom: 6px;
}
/*#modalwindow07 .modalBox .floatLeft{
	width: 60%;
}
#modalwindow07 .modalBox .floatRight{
	width: 35%;
}*/

.remodal .spView table{
	display:block;
	position:relative;
	/*border-top:#999999 1px solid;
	border-left:#999999 1px solid;
	width:100%;
	font-size:13px;
	border-collapse:collapse;*/
}
.remodal .spView table thead{
	display:block;
	float:left;
}
.remodal .spView table tbody{
	display:block;
	width:auto;
	position:relative;
	overflow-x:auto;
	white-space:nowrap;
	-webkit-overflow-scrolling: touch;
}
.remodal .spView table tr{
	display:inline-block;
}
.remodal .spView table tbody tr{
	margin-right:-5px;
}
.remodal .spView table tr th,
.remodal .spView table tr td {
	display:block;
	/*border-right:#999999 1px solid;
	border-bottom:#999999 1px solid;
	padding:8px 5px;
	text-align:center;
	border-collapse:collapse;
	vertical-align:middle;*/
}
.remodal .spView table tr .heightfix {
	height:38px;
}
.remodal .spView table tr th {
	/*background:#ebebeb;
	font-weight: normal;*/
}








#modalwindow01 .modalBox .icomerit01{
	padding-left: 75px;
	background-size: 70px;
	/*background: url(../images/ico_merit01.gif) no-repeat left center;*/
}
#modalwindow01 .modalBox .floatLeft img{
	max-width:inherit;
	max-height:inherit;
}
#modalwindow02 .modalBox .icomerit02{
	padding-left: 75px;
	background-size: 70px;
	/*background: url(../images/ico_merit02.gif) no-repeat left center;*/
}
/*#modalwindow02 .modalBox .floatLeft{width: 60%;}
#modalwindow02 .modalBox .floatRight{width: 35%;}*/
#modalwindow02 .modalBox .floatLeft img{
	max-width:inherit;
	max-height:inherit;
}

/*#modalwindow03 .modalBox .floatLeft,
#modalwindow04 .modalBox .floatLeft,
#modalwindow05 .modalBox .floatLeft{width:55%;}
#modalwindow03 .modalBox .floatRight,
#modalwindow04 .modalBox .floatRight,
#modalwindow05 .modalBox .floatRight{width: 40%;}*/

/*#modalwindow03 .modalBox .detailBox .floatLeft img{
	width: 75%;
	height: 75%;
}
#modalwindow04 .modalBox .img_teisouon{
	min-height:70px;
	font-size:85%;
	padding-left:1em;
	text-indent:-1em;
	padding-right:85px;
	background: url(../images/img_shovel2_3.gif) no-repeat right center;
	background-size:70px;
}*/
#modalwindow05 .modalBox .floatRight{
	width: 100% !important;
	margin:20px 0 0 !important;
}
#modalwindow06 .modalBox .half .floatLeft,
#modalwindow06 .modalBox .half .floatRight{
	width: 80% !important;
	margin: 20px 10% 0 !important;
}
/*#modalwindow06 .modalBox ul{margin-bottom:10px;}
#modalwindow06 .modalBox ul li{
	margin-bottom:5px;
	padding-left:1em;
	text-indent:-1em;
}*/
#modalwindow06 .modalBox .modalLink a{
	width: 100%;
	margin-right:0;
}
#modalwindow06 .modalBox .modalLink a:last-child{
	margin-right: 0;
}

#modalwindow07 .modalBox h3,
#modalwindow09 .modalBox h3{
	margin-bottom: 10px;
}
#modalwindow07 .modalBox .floatLeft{
	width: 60%;
}
#modalwindow07 .modalBox .floatRight{
	width: 35%;
}
#modalwindow07 .modalBox .modalLink a{
	width: 100%;
	margin-right:0;
}
#modalwindow07 .modalBox .modalLink a:last-child{
	margin-right: 0;
}
#modalwindow10 .modalBox .half .floatLeft,
#modalwindow10 .modalBox .half .floatRight{
	width: 80% !important;
	margin: 20px 10% 0 !important;
}
#modalwindow09 .modalBox .modalLink a{
	width: 100%;
	margin-right:0;
}
#modalwindow09 .modalBox .modalLink a:last-child{
	margin-right: 0;
}





#modalwindow09 .modalBox ol li{
	margin-bottom: 15px;
}
#modalwindow09 .modalBox ol li strong{
	font-size: 18px;
	/*display: block;
	font-weight: normal;*/
}
#modalwindow09 .modalBox .strongtext{
	font-size: 14.5px;
	/*font-weight: bold;
	margin-bottom: 0;*/
}
#modalwindow09 .modalBox .strongtext span{
	font-size: 14px;
	/*font-weight: normal;*/
}
    
#modalwindow09 .modalInnerBox .floatLeft dt{
    float: none;    
}
    
#modalwindow09 .modalInnerBox .floatLeft dd{
    margin: 0;    
}

#modalwindow10 .modalBox .modalLink {
    width: 100%;
    margin: 0;
}
	

}

/*モーダル　CAMPAIGN*/
#modalwindow01.remodal {
	max-width: 800px;
}
#modalwindow01 .conBox .ttl {
	font-size: 28px;
    color: #ffdc43;
    font-weight: 600;
    position: absolute;
    top: 23%;
    left: calc(50% - 205px);
}
#modalwindow01 .conBox .txt {
	font-size: 16px;
	color: #fff;
    text-align: left;
    font-weight: 600;
    position: absolute;
    top: 31%;
    left: calc(50% - 204px);
}
#modalwindow01 .conBox .link {
    position: absolute;
    top: 67%;
    left: calc(50% - 204px);
}
#modalwindow01 .conBox ul {
	display: -webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
#modalwindow01 .conBox ul li {
	width: 49%;
	margin-right: 2%;
}
#modalwindow01 .conBox ul li:nth-child(even) {
	margin-right: 0;
}
#modalwindow02.remodal {
	max-width: 800px;
}
#modalwindow02 .conBox .ttl {
	font-size: 28px;
    color: #ffdc43;
    font-weight: 600;
    position: absolute;
    top: 23%;
    left: calc(50% - 205px);
}
#modalwindow02 .conBox .txt {
	font-size: 16px;
	color: #fff;
    text-align: left;
    font-weight: 600;
    position: absolute;
    top: 31%;
    left: calc(50% - 204px);
}
#modalwindow02 .conBox .link {
    position: absolute;
    top: 67%;
    left: calc(50% - 204px);
}
#modalwindow02 .conBox ul {
	display: -webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
#modalwindow02 .conBox ul li {
	width: 49%;
	margin-right: 2%;
}
#modalwindow02 .conBox ul li:nth-child(even) {
	margin-right: 0;
}
@media screen and (min-width:769px){
	#modalwindow01 .modalBox .sp_modal,
	#modalwindow01 img.sp_modal_btn,
	#modalwindow01 .sp_modal_close2{
	display: none;
	}
	#modalwindow02 .modalBox .sp_modal,
	#modalwindow02 img.sp_modal_btn,
	#modalwindow02 .sp_modal_close2{
	display: none;
	}
}
@media screen and (max-width:768px){
	#modalwindow01 .modalBox .pc_modal,
	#modalwindow01 img.pc_modal_btn,
	#modalwindow01 .pc_modal_close2,
	#modalwindow01 .conBox .pc_modal {
		display: none;
	}
	#modalwindow02 .modalBox .pc_modal,
	#modalwindow02 img.pc_modal_btn,
	#modalwindow02 .pc_modal_close2,
	#modalwindow02 .conBox .pc_modal{
		display: none;
	}
	#modalwindow01 .conBox {
		
	}
	#modalwindow02 .conBox {
		
	}
	#modalwindow01 .conBox .ttl {
		font-size: 18px;
		font-size: 4.2vw;
		top: 19%;
		left: 8.5%;
	}
	#modalwindow01 .conBox .txt {
		font-size: 13px;
		font-size: 3.5vw;
		top: 27%;
		left: 8.5%;
	}
	#modalwindow01 .conBox .link {
		top: 71%;
		left: 9%;
		width: 82%;
	}
	#modalwindow02 .conBox .ttl {
		font-size: 18px;
		font-size: 4.2vw;
		top: 19%;
		left: 8.5%;
	}
	#modalwindow02 .conBox .txt {
		font-size: 13px;
		font-size: 3.5vw;
		top: 27%;
		left: 8.5%;
		width: 83%;
	}
	#modalwindow02 .conBox .link {
		top: 71%;
		left: 9%;
		width: 82%;
	}
}

/*モーダル　SOLUTION*/
#modalwindow03 .modal_download_img {
	position: absolute;
	bottom: 12.5%;
	left: 61.5%;
	width: auto;
	height: auto;
}
#modalwindow03 .conBox .ttl {
	font-size: 28px;
    color: #ffdc43;
    font-weight: 600;
    position: absolute;
    top: 15%;
    left: 7%;
}
#modalwindow03 .conBox .txt {
	font-size: 16px;
    color: #fff;
    text-align: left;
    font-weight: 600;
    position: absolute;
    top: 21%;
    left: 7%;
}
#modalwindow03 .conBox .list01 {
	font-size: 14px;
    width: 34%;
    color: #fff;
    text-align: left;
    font-weight: 600;
    position: absolute;
    top: 29.5%;
    left: 59.5%;
}
#modalwindow03 .conBox .list01 ul li {
	background: url(../images/icon_img02.png) no-repeat 0px 5px;
    padding-left: 1.2em;
    margin-bottom: 1%;
}
#modalwindow03 .conBox .link {
    position: absolute;
    top: 67%;
    left: calc(50% - 204px);
}

#modalwindow04 .modal_download_img {
	position: absolute;
	bottom: 12.5%;
	left: calc(90% - 294px);
	width: auto;
	height: auto;
}
#modalwindow04 .conBox .ttl {
	font-size: 28px;
    color: #ffdc43;
    font-weight: 600;
    position: absolute;
    top: 15%;
    left: 7%;
}
#modalwindow04 .conBox .txt {
	font-size: 16px;
    color: #fff;
    text-align: left;
    font-weight: 600;
    position: absolute;
    top: 26.5%;
    left: 7%;
}
#modalwindow04 .conBox .list01 {
	font-size: 14px;
    width: 34%;
    color: #fff;
    text-align: left;
    font-weight: 600;
    position: absolute;
    top: 31.5%;
    left: 59.5%;
}
#modalwindow04 .conBox .list01 ul li {
	background: url(../images/icon_img02.png) no-repeat 0px 5px;
    padding-left: 1.2em;
    margin-bottom: 1%;
}
#modalwindow04 .conBox .link {
    position: absolute;
    top: 67%;
    left: calc(50% - 204px);
}

@media screen and (min-width:769px){
	#modalwindow03 .modalBox .sp_modal {
	display: none;
	}
	#modalwindow03 img.sp_modal_btn {
	display: none;
	}
	#modalwindow04 .sp_modal_close2 {
		display: none;
	}
}

@media screen and (max-width:768px){
	#modalwindow03 .modalBox .pc_modal {
	display: none;
	}
	#modalwindow03 img.pc_modal_btn {
	display: none;
	}
	#modalwindow03 img.sp_modal_btn {
	position: absolute;
    bottom: 15%;
    left: 43%;
    height: auto;
    width: 43%;
	}
	#modalwindow03 .sp_modal_close2 {
	width: 100%;
    background: unset;
	position: absolute;
    bottom: 2%;
    left: 0;
	padding: 0 30%;
	}
	#modalwindow03 .conBox .ttl {
		font-size: 18px;
		font-size: 4.2vw;
		top: 7%;
		left: 8.5%;
		text-align: left;
	}
	#modalwindow03 .conBox .txt {
		font-size: 13px;
		font-size: 3.5vw;
		font-weight: normal;
		top: 11.5%;
		left: 8.5%;
		width: 80%;
	}
	#modalwindow03 .conBox .link {
		top: 71%;
		left: 9%;
		width: 82%;
	}
	#modalwindow03 .conBox .list01 {
		top: 52.5%;
		left: 8.5%;
		width: 83%;
		font-weight: normal;
		line-height: 1.46;
	}
}


@media screen and (min-width:769px){
	#modalwindow04 .modalBox .sp_modal {
	display: none;
	}
	#modalwindow04 img.sp_modal_btn {
	display: none;
	}
	#modalwindow04 .sp_modal_close2 {
		display: none;
	}
	#modalwindow03 .sp_modal_close2 {
		display: none;
	}
}

@media screen and (max-width:768px){
	#modalwindow04 .modalBox .pc_modal {
	display: none;
	}
	#modalwindow04 img.pc_modal_btn {
	display: none;
	}
	#modalwindow04 img.sp_modal_btn {
	position: absolute;
    bottom: 14%;
    left: 43%;
    height: auto;
    width: 43%;
	}
	#modalwindow04 .sp_modal_close2 {
	width: 100%;
    background: unset;
	position: absolute;
    bottom: 2%;
    left: 0;
	padding: 0 30%;
	}
	#modalwindow04 .conBox .ttl {
		font-size: 18px;
		font-size: 4.2vw;
		top: 7%;
		left: 8.5%;
		text-align: left;
	}
	#modalwindow04 .conBox .txt {
		font-size: 13px;
		font-size: 3.5vw;
		font-weight: normal;
		top: 16%;
		left: 8.5%;
		width: 80%;
	}
	#modalwindow04 .conBox .list01 {
		font-size: 13px;
		font-size: 3.5vw;
	}
	#modalwindow04 .conBox .link {
		top: 71%;
		left: 9%;
		width: 82%;
	}
	#modalwindow04 .conBox .list01 {
		top: 52.5%;
		left: 8.5%;
		width: 83%;
		font-weight: normal;
		line-height: 1.46;
	}
}