

/*--------------------------------------------------------------------
スライダー
--------------------------------------------------------------------*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_cssslider {
	width:350px;
	padding-top: 335px; /* 画像の高さ */
	position: relative;
	margin: 2em auto;
	text-align: center;
}
.cp_cssslider > img {
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.5s;
	border-radius: 3px;
	box-shadow:0px 0px 5px 0px rgba(0,0,0,0.3);
}
.cp_cssslider input[name='cp_switch'] {
	display: none;
}
/* サムネイル */
.cp_cssslider label {
	margin-top: 30px;
	border: 2px solid #ffffff;
	display: inline-block;
	cursor: pointer;
	transition: all 0.5s ease;
	opacity: 0.6;
	border-radius: 3px;
}
.cp_cssslider label:hover {
	opacity: 0.9;
}
.cp_cssslider label img {
	display: block;
	width: 40px;
	border-radius: 2px;
}
.cp_cssslider input[name='cp_switch']:checked + label {
	border: 2px solid  #0069cc;
	opacity: 1;
}
.cp_cssslider input[name='cp_switch'] ~ img {
	opacity: 0;
}
.cp_cssslider input[name='cp_switch']:checked + label + img {
	opacity: 1;
}


/*--------------------------------------------------------------------
.goods
--------------------------------------------------------------------*/
  .goods{
	background: #eaf6fd;
	margin-top: 4rem;
	display:flex;
	flex-direction: column;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", 'ヒラギノ角ゴ W3', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 500;
    font-size: 16px;
  }
  img{
	max-width: 100%;
	display: block;
	margin: 0 auto;
  }

  h1.header_logo img {
	  margin: 0;
  }

  h1.header_logo img, h1.footer_logo img {
	  margin-bottom: 1rem;
  }
  
  @media screen and (min-width:700px) { 
	.goods{
		flex-direction: row;
	  flex-wrap:nowrap;
	  justify-content:space-between;
	}
	.explanation+.explanation{
	  margin-left:1.0em;
	}
  }
  

/*--------------------------------------------------------------------
h4
--------------------------------------------------------------------*/
  h4{
	padding: 0.5em 1em;
    margin: 2em 0;
    color: #474747;
    background: whitesmoke;/*背景色*/
    border-left: double 7px #0069cc;/*左線*/
    border-right: double 7px #0069cc;/*右線*/
  }


/*--------------------------------------------------------------------
.explanation
--------------------------------------------------------------------*/
.explanation{
	margin: 5px;
}

/*--------------------------------------------------------------------
.template
--------------------------------------------------------------------*/
.template{
	margin-top: 3em;
	width: 300px;
    padding: 5px 10px;
    color:  #474747;
    background:  whitesmoke;
    border-top: solid 2px#0069cc;
    border-bottom: solid 2px#0069cc;
  }

/*--------------------------------------------------------------------
.zip
--------------------------------------------------------------------*/
.zip a {
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	background:  #4291db;/*ボタン色*/
	color: #FFF;
	border-bottom: solid 3px #0069cc;
	border-radius: 2px;
  }
  .zip a:active {
	/*ボタンを押したとき*/
	-webkit-transform: translateY(4px);
	transform: translateY(3px);/*下に動く*/
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
	border-bottom: none;
  }

  /*--------------------------------------------------------------------
.btn
--------------------------------------------------------------------*/
.btn {
	display: block;
	text-decoration: none;
	color: #0069cc;
	border: solid 2px #0069cc;
	border-radius: 3px;
	transition: .4s;

	text-align: center;
	margin: 30px auto 0px;
	width: 120px;
  }
  
  .btn:hover {
	background: #0069cc;
	color: white;
  }