/*==================================================
スライダーのためのcss
===================================*/

.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content:space-between;
  align-items: stretch;
}

.flex-3child {
	flex-basis: 30%;
	background-color: #fff;
	padding: 20px;
}

.flex-3child-img {
	flex-basis: 30%;
	background-color: #fff;
}

.flex-4child {
	flex-basis: 22%;
	background-color: #fff;
	padding: 20px;
}

.strong-num{
   width:50px;
   height:50px;
   margin: 0 auto 20px auto;
   border-radius:50%;
   background:#2a83a2;
   /*display:flexで中央配置*/
   display:flex;
   align-items:center;
   justify-content:center;
}

.strong-num p {
	color: #fff;
	font-size: 1.5rem;
}

.flex-3child h4, .flex-4child h4 {
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
	font-weight: normal !important;
	font-size: 1.3em !important;
}

#laser h3 {
	text-align: center;
	font-size: 2.6rem;
	letter-spacing: 0.05em;
}

/*画像の横幅を100%にしてレスポンシブ化*/
img{
	width: 100%;
	height: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

.gallery-wrapp {
	max-width: 900px;
	margin: 0 auto;
	border-bottom: 2px solid #cccccc;
	padding-bottom: 100px;
}

.mt100 {
	margin-top: 100px;
}

.mt150 {
	margin-top: 150px;
}

.video video {
	max-width: 800px;
}

.laser-v-under {
	border-top:2px solid #ccc;
}

.laser-v-under h4 {
	font-weight: normal !important;
	margin-top: 60px;
	margin-bottom: 40px !important;
	text-align: left !important;
	font-size: 2rem !important;
}

.laser-v-under p {
	padding-bottom: 20px;
}

/*メイン画像下に余白をつける*/
.gallery{
	margin:0 0 20px 0;
}

.gallery li{
list-style:none;
}
/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/

.choice-btn li{
	cursor: pointer;
	outline: none;
	background:#333;
list-style:none;
}

.choice-btn li img{
	opacity: 0.4;/*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
}

/*======================================
レスポンシブ
=======================================*/
@media screen and (max-width: 767px) {
	#laser h3{font-size: 1.5rem;}
	.gallery-wrapp {padding-bottom: 50px;}
	.mt100 {margin-top: 50px;}
	.mt150 {margin-top: 50px;}
	.flex-3child {
		flex-basis: 100%;
		background-color: #fff;
		padding: 20px;
		margin-bottom: 30px;
	}

	.flex-3child-img {flex-basis: 100%; margin-bottom: 30px;}
	.flex-4child {flex-basis: 100%; padding: 20px; margin-bottom: 30px;}
	.video video {max-width: 100%;}
	.laser-v-under h4{font-size: 1.5rem!important;}
}