



/* casestudy 用途例 */


/* ラジオボタン */
.radioDesign,
.checkboxDesign{
	position: relative;
	display: flex;
	align-items: center;
	white-space: nowrap;
	margin-top: 0.5em;
	color: #000;
	cursor: pointer;
}
.radioDesign input ,
.checkboxDesign input {
	opacity: 0;
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	cursor: pointer;
}

.radioDesign input + span,
.checkboxDesign input + span {
	position: relative;
	border: #CBCBCB solid 1px; 
	width: 18px;
	height: 18px;
	display: inline-block;
	margin-right: 7px;
	background: #fff;
	border-radius: 20px;
}
.radioDesign input + span:before {
	content: "";
	display: inline-block;
	width: 19px;
	height: 19px;
}
.radioDesign input:checked + span:before{
	content: "";
	background: #2355A1;
	width: 14px;
	height: 14px;
	position: absolute;
	bottom: 1px;
	left: 1px;
	border-radius: 20px;
}


#casestudyCategory{
	/*background: #E8EDF5;*/
	max-width: 1280px;
	padding: 3em 40px;
	margin: 0 auto;
}
#casestudyCategory .lead{
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 1.5em;
	line-height: 1.5em;
}
#casestudyCategoryIn{
	background: #fff;
	margin: 0 auto;
	box-shadow: 0 0 8px #e5e5e5;
	position: relative;
}

#casestudyCategory .CCList{
	/*display: flex;
	align-items: center;*/
}
#casestudyCategory .CCList.select02{
	min-height: 9.6em;
}
/* #casestudyCategory .CCList:nth-of-type(n+2){
	margin-top: 1.2em;
	padding-top: 1.2em;
	border-top: #6D747F solid 1px;
} */
#casestudyCategory .CCList .title{
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	min-width: 2em;
	background: #2355A1;
	color: #fff;
	padding: 0.5em;
}




#casestudyCategory .CCList ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 18px;
	padding: 1.5em 0;
	min-height: 5em;
}
#casestudyCategory .CCList ul li{
}
#casestudyCategory .CCList.select01 ul li:nth-of-type(n+2){
	margin-left: 10em;
}
#casestudyCategory .CCList.select02 ul li{
	color: #fff;
	text-align: center;
	margin: 0.3em 1em;
}
#casestudyCategory .checkbox,
#casestudyCategory button{
	position: relative;
	padding-left: 1.3em;
}
#casestudyCategory button{
	background: #fff;
	display: block;
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "HiraginoKaku W3", Meiryo, sans-serif;
	cursor: pointer;
	padding: 0.4em 0;
}
#casestudyCategory .checkbox:before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	border: #CBCBCB solid 1px;
	width: 18px;
	height: 18px;
	display: inline-block;
	background: #fff;
}
#casestudyCategory .checkbox input{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	appearance: none;
	background: none;
	border: none;
	cursor: pointer;
	transform: none !important;
	display: block;
	z-index: 10;
}
#casestudyCategory .checkbox label{
	/*display: block;
	padding: 0.3em 1em;
	background: #fff;*/
	position: relative;
	color: #000;
}
/*#casestudyCategory .checkbox input:checked + label {
	background: #fff;
}
*/
#casestudyCategory .checkbox label:before {
	content: "";
	opacity: 0;
	position: absolute;
	top: 9px;
	left: -21px;
	width: 7px;
	height: 3px;
	display: block;
	background: #2355A1;
	transform: rotate(45deg);
}
#casestudyCategory .checkbox label:after {
	content: "";
	opacity: 0;
	position: absolute;
	top: 9px;
	left: -17px;
	width: 13px;
	height: 3px;
	display: block;
	background: #2355A1;
	transform: rotate(-45deg);
}

#casestudyCategory .checkbox input:checked + label:before,
#casestudyCategory .checkbox input:checked + label:after{
	opacity: 1;
}


#casestudyCategory .CCList.field ul li{
	background: #6D747F;
}
#casestudyCategory .CCList.field ul li .checkbox input + label {
	color: #6D747F;
}
#casestudyCategory .CCList.field ul li .checkbox label,
#casestudyCategory .CCList.field ul li button{
	border: #6D747F solid 2px;
	color: #6D747F;
}
#casestudyCategory .CCList.field ul li .checkbox input:checked + label,
#casestudyCategory .CCList.field ul li button.mixitup-control-active{
	color: #fff;
	background: #6D747F;
}

#casestudyCategory .CCList.use .title{
	color: #2355A1;
}
#casestudyCategory .CCList.use ul li{
	background: #2355A1;
	width: 6em;
}
#casestudyCategory .CCList.use ul li .checkbox input + label {
	color: #2355A1;
}
#casestudyCategory .CCList.use ul li .checkbox label,
#casestudyCategory .CCList.use ul li button{
	border: #2355A1 solid 2px;
	color: #2355A1;
}
#casestudyCategory .CCList.use ul li .checkbox input:checked + label,
#casestudyCategory .CCList.use ul li button.mixitup-control-active {
	color: #fff;
	background: #2355A1;
}



#casestudyCategory .allContentBtn{
	margin: 2em auto 0;
	max-width: 20em;
}
#casestudyCategory .allContentBtn .checkbox,
#casestudyCategory .allContentBtn button{
	background: #fff;
	text-align: center;
	font-size: 16px;
	border: #2355A1 solid 1px;
	font-weight: bold;
	color: #2355A1;
	padding: 1em 0;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "HiraginoKaku W3", Meiryo, sans-serif;
	transition: 0.3s;
}
#casestudyCategory .allContentBtn .checkbox label{
	color: #2355A1 ;
	transition: 0.3s;
}
#casestudyCategory .allContentBtn .checkbox input:checked + label {
	background: transparent;
}
#casestudyCategory .allContentBtn .checkbox:before,
#casestudyCategory .allContentBtn .checkbox label:before,
#casestudyCategory .allContentBtn .checkbox label:after{
	display: none;
}
#casestudyCategory .allContentBtn .checkbox:hover{
	background: #2355A1;
}
#casestudyCategory .allContentBtn .checkbox:hover label{
	color: #fff;
}



.casestudy .UnderlayerOuterIn {
	max-width: calc(1280px + 2.3%);
}
.casestudyPhotoList{
	display: flex;
	flex-wrap: wrap;
}
.casestudyPhotoList .mix{
	width: 30%;
	margin: 0 1.66% 2.5em;
	cursor: pointer;
}
.casestudyPhotoList .mix .photo{
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #c9dff4;
}
.casestudyPhotoList .mix .photo img{
	transition: 0.2s;
	object-fit: cover;
	width: 100%;
	height: 20em;
	max-height: 330px;
}
.casestudyPhotoList .mix:hover .photo img {
  transform: scale(1.1, 1.1);
}
.casestudyPhotoList .mix .name{
	font-size: 18px;
	font-weight: bold;
	margin-top: 1em;
}
.casestudyPhotoList .mix ul{
	display: flex;
	flex-wrap: wrap;
	margin-top: 0.5em;
}
.casestudyPhotoList .mix ul li{
	width: fit-content;
	padding: 0.2em 0.7em;
	text-align: center;
	color: #fff;
	margin-right: 0.5em;
}
.casestudyPhotoList .mix ul li.field{
	background: #6D747F;
}
.casestudyPhotoList .mix ul li.use{
	background: #2355A1;
}


/* .slick-slider.thumbnail{
	margin-top: 1.5em;
}
.slick-slider.thumbnail li{
	margin: 0 0.2em;
	display: block;
} */

#modalContent .modalAreaDescIn .flexBox .photo .thumbs_dots {
	margin: 10px 0 0;
}
#modalContent .modalAreaDescIn .flexBox .photo .thumbs_dots .thumbs_list{
	display: flex;
	flex-wrap: wrap;
}
#modalContent .modalAreaDescIn .flexBox .photo .thumbs_dots .thumbs_list li {
	width: 23.5%;
	margin-right: 2%;
	height: 80px;
	opacity: 0.4;
	cursor: pointer;
	transition: opacity 0.3s;
}
#modalContent .modalAreaDescIn .flexBox .photo .thumbs_dots .thumbs_list li:nth-of-type(5n){
	margin-right: 0;
}
#modalContent .modalAreaDescIn .flexBox .photo .thumbs_dots .thumbs_list li.slick-active {
	opacity: 1;
}


#modalContent{
	display: flex;
	align-items: center;
	justify-content: center;
}
#modalContent .modalBox{
	display: none;
	/*opacity: 0;
	pointer-events: none;
	transition: 0.5s;*/
	right: 0;
	margin: auto;
	z-index: 10000;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: 1080px;
	padding: 0 40px;
}
#modalContent .modalBG{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: fixed;
	top: 0;
	left: 0;
    width: 100%;
	display: none;
	z-index: 1000;
}
#modalContent .modalAreaDesc{

}
#modalContent .modalAreaDescIn{
	margin: 0 auto;
	background: #fff;
	position: relative;
	padding: 60px;
}
#modalContent .modalAreaDescIn .modalClose{
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	font-size: 30px;
	background: #2355A1;
	width: 1.2em;
	height: 1.2em;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	z-index: 10000;
}
#modalContent .modalAreaDescIn .flexBox{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#modalContent .modalAreaDescIn .flexBox .photo{
	width: 50%;
}
#modalContent .modalAreaDescIn .flexBox .desc{
	width: 45%;
}
#modalContent .modalAreaDescIn .flexBox .desc .title{
	font-weight: bold;
	text-align: center;
	color: #2355A1;
	margin-bottom: 1em;
	font-size: 30px;
	line-height: 1.3em;
}
#modalContent .modalAreaDescIn .flexBox .desc .txt{
	padding-bottom: 0.5em;
	margin-top: 0.5em;
	border-bottom: #6D747F solid 1px;
	font-size: 16px;
	display: flex;
	align-items: center;
}
#modalContent .modalAreaDescIn .flexBox .desc .txt span{
	display: block;
	margin-right: 1.5em;
	font-weight: bold;
	text-align: center;
	min-width: 5em;
	padding: 0.3em 0;
}
#modalContent .modalAreaDescIn .flexBox .desc .txt span.example{
	background: #E8EDF5;
	color: #2355A1;
}
#modalContent .modalAreaDescIn .flexBox .desc .txt span.field{
	background: #6D747F;
	color: #fff;
}
#modalContent .modalAreaDescIn .flexBox .desc .txt span.use{
	background: #2355A1;
	color: #fff;
}
#modalContent .modalAreaDescIn .flexBox .desc .btn{
	margin: 1.5em auto 0;
	max-width: 20em;
}
#modalContent .modalAreaDescIn .thumbnail{
	margin-top: 1em;
}
#modalContent .modalAreaDescIn .thumbnail .slick-track{

}
#modalContent .modalAreaDescIn .thumbnail .slick-track li{

	/*padding-right: 1em;*/
}
#modalContent .modalAreaDescIn .thumbnail .slick-track li img{
	/*margin-right: 1em;*/
}

#modalContent .modalAreaDescIn .thumbnail .slick-track .slick-slide{
	opacity: 0.5;
	cursor: pointer;
	transition: 0.2s;
}
#modalContent .modalAreaDescIn .thumbnail .slick-track .slick-current {
	opacity: 1;
}


.product.casestudy .btnArea{
	display: flex;
	justify-content: center;
	margin-top: 3em;
}
.product.casestudy .btnArea .btn{
	width: 20em;
}
.product.casestudy .btnArea .btn:nth-of-type(n+2){
	margin-left: 3em;
}



#modalContent .modalAreaDescIn .swiperThumbnail {
	margin-top: 1em;
}
#modalContent .modalAreaDescIn .swiper-slide img {
	width: 100%;
}
/*#modalContent .modalAreaDescIn .swiperThumbnail .swiper-slide{
	opacity: 0.5;
	cursor: pointer;
	transition: 0.2s;
}
#modalContent .modalAreaDescIn .swiperThumbnail .swiper-slide-thumb-active{
	opacity: 1;
} */
/* .swiperThumbnail .swiper-slide-thumb-active {
        border: 3px solid #007aff;
}*/

#modalContent .modalAreaDescIn .swiperThumbnail .swiper-wrapper > div{
	opacity: 0.5;
	cursor: pointer;
}
#modalContent .modalAreaDescIn .swiperThumbnail .swiper-wrapper.active > div:first-child,
#modalContent .modalAreaDescIn .swiperThumbnail .swiper-wrapper > div.swiper-slide-thumb-active{
	opacity: 1;
}
#modalContent .modalAreaDescIn .swiperThumbnail .swiper-wrapper.active > div:nth-of-type(2){
	opacity: 0.5;
}


.swiper-button{
	width: 38px !important;
	height: 38px !important;
	background-color: rgba(255,255,255,0.8);
}
.swiper-button:before,
.swiper-button:after{
	content: "" !important;
	opacity: 1;
	width: 15px;
	height: 1px;
	background: #2355A1;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.swiper-button:after {
	width: 7px;
	top: -5px;
}
.swiper-button-next{
	right: 0 !important;
}
.swiper-button-next:after{
	transform: rotate(45deg);
	left: 9px;
}
.swiper-button-prev{
	left: 0 !important;
}
.swiper-button-prev:after {
  transform: rotate(-45deg);
  right: 9px;
}


/*221209追加*/
.product #LinkProductBottom{
	background: #F4F4F4;
	margin-bottom: -10em;
}
.product .LinkProductBottomIn{
    display: flex;
    justify-content: space-between;
	max-width: 1280px;
    margin: 3em auto 0;
    padding: 5em 40px 7em;
}
.product #LinkProductBottom .menuLink{
    width: 31%;
    position: relative;
	background: #fff;
}
.product #LinkProductBottom .menuLink a{
	display: block;
}
.product #LinkProductBottom .menuLink .title{
	display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 80%;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	border: solid 1px;
}
.product #LinkProductBottom .menuLink .title span{
	position: relative;
	padding-right: 1.2em;
}
.product #LinkProductBottom .menuLink .title span:before,
.product #LinkProductBottom .menuLink .title span:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -0.5em;
    margin: auto;
    width: 1.2em;
    height: 1px;
    background: #fff;
}
.product #LinkProductBottom .menuLink .title span:after {
	width: 0.5em;
	transform: rotate(45deg);
	top: -0.3em;
}
.product #LinkProductBottom .menuLink a .photo{
    overflow: hidden;
}
.product #LinkProductBottom .menuLink a .photo img{
    transition: 0.2s;
}
.product #LinkProductBottom .menuLink a:hover{
    text-decoration: none;
}
.product #LinkProductBottom .menuLink a:hover .photo img{
    transform: scale(1.1, 1.1);
}
.flexWrap{
	flex-wrap: wrap;
}

/*221214追加*/
.blue{color: #2355A1;}
.bg_blue{
	background: #E8EDF5;
	padding: 40px;
}
.bg_white{
	background: #fff;
	padding: 40px;
}
.bg_blue ol li{
	position: relative;
	padding: 20px 0;
}
.bg_blue ol li::after{
	content: "";
	height: 1px;
	width: calc( 100% + 1.5em );
	background: #2355A1;
	position: absolute;
	bottom: 0;
	left: -1.5em;
}
ol.list li{
    list-style: decimal;
}
ol.list li::marker {
    color: #2355A1;
}
.tableFlex01{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.tableDesign01 table tr .tableFlex01 .list.height01{
	width: 80%;
	max-height: 12em;
}
.tableDesign01 table tr .tableFlex01 .list.height01 li{
	width: 47%;
}
.tableFlex01 img{
	width: 20%;
}
/*開閉*/
.accordionArea .btn{
    cursor: pointer;
    margin: 40px auto ;
	width: 20em;
}
.accordionArea .btn span{
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 1.2em 60px 1.2em 0;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    z-index: 2;
}
.accordionArea .btn .icon_accordion{
    padding: 0;
    position: absolute;
    right: 0;
    height: 100%;
    width: 60px;
    background: #2F3948;
}
.icon_accordion:before,
.icon_accordion:after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #fff;
  left: 50%;
  top: 50%;
  width: 35%;
  height: 2px;
  transform: translate(-50%, -50%);
}
.icon_accordion:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.icon_accordion.open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}
/*221220追加*/
.tableDesign01 table tr th.right, .tableDesign01 table tr td.right{
	text-align: right;
}
.disc .left{
	display: inline-block;
	text-align: left;
}
.w45p{width: 45%;}



.UnderlayerOuterIn .btnArea{
	display: flex;
	justify-content: center;
	margin-top: 3em;
}
.UnderlayerOuterIn .btnArea.mT0{
	margin-top: 0;
}
.UnderlayerOuterIn .btnArea .btn{
	width: 20em;
	margin: 0;
}
.UnderlayerOuterIn .btnArea .btn:nth-of-type(n+2){
	margin-left: 2em;
}





@media screen and (max-width:1199.5px){
	.casestudyPhotoList .mix .photo img{
		height: 22vw;
	}
	.tableDesign01 table tr .tableFlex01 .list.height01{
		max-height: 17em;
	}
}

@media screen and (max-width:999.5px){
	.tabScroll{
		overflow-x: scroll;
		font-size: 90%;
	}
	.tabScroll table{
		width: 1000px;
	}
	.w20em {
		width: 15em;
	}
	
	
	.product.top #TopProductIn .ProductSquare{
		width: 32%;
	}
	.product.top #TopProductIn .ProductSquare:nth-of-type(n+4) {
		margin-top: 2em;
	}
	
	
	
	#casestudyCategoryIn{

	}
	
	.product.casestudy .btnArea .btn:nth-of-type(n+2) {
		margin-left: 1em;
	}
	.product.casestudy .btnArea .btn {
		width: 16em;
	}
	
	
}





/* スマホ
------------------------------------------------*/
@media screen and (max-width:767.5px){
	
	
	

	.disc{
		font-size: 16px;
		padding: 1.5em 20px;
	}
	



	.spScroll.MW700 table{
		width: 700px;
	}
	
	
	.tableDesign01 table tr .l01{
		min-width: 9.5em;
		left: -2.5em;
	}
	.tableDesign01 table tr .l02 {
		min-width: 7em;
		padding-right: 1em;
	}
	.tableDesign01 table tr .l03 {
		min-width: 7em;
		left: -2.5em;
	}
	
	
	.flexBox.style01{
		display: block;
		margin-bottom: 0.5em;
	}
	.flexBox.style01 .R{
		display: flex;
		justify-content: flex-end;
		margin-top: 0.5em;
	}

	.halfTable{
		display: block
	}
	.halfTable > div{
		width: auto;
	}
	.halfTable > div:nth-of-type(n+2){
		margin-top: 1em;
	}
	
	
	#productContactArea{
		padding: 2em 20px;
		display: block;
	}
	#productContactArea .txt{
		text-align: center;
		font-size: 18px;
		margin: 0;
	}
	#productContactArea .btn{
		margin: 1em auto 0;
	}
	#TopProductIn .ProductSquare .name{
		font-size: 14px;
		line-height: 1.3em;
	}
	#TopProductIn .ProductSquare .photoOuter .hover{
		display: none;
	}
	
	
	#othersProductSlider{
		padding: 2em 20px;
	}
	#TopProductIn .ProductSquare a{
		margin: 0 0.4em;
	}
	
	
	#casestudyCategory{
		padding: 2em 20px;
	}
	#casestudyCategoryIn {

	}
	#casestudyCategory .lead{
		font-size: 14px;
	}
	#casestudyCategoryIn .CCList{
		display: block;
	}
	#casestudyCategoryIn .CCList .title{
		font-size: 14px;
		margin-bottom: 0;
	}
	#casestudyCategoryIn .CCList ul{
		font-size: 14px;
		padding: 1em 0;
	}
	#casestudyCategoryIn .CCList ul li {

	}
	#casestudyCategory .CCList.select01 ul li:nth-of-type(n+2) {
		margin-left: 2em;
	}
	#casestudyCategoryIn .checkbox label{

	}
	#casestudyCategoryIn .CCList.use ul li {
		width: 5em;
	}
	#casestudyCategory .checkbox, #casestudyCategory button{
		padding-left: 1.7em;
	}
	#casestudyCategory .checkbox label:before,
	#casestudyCategory .checkbox label:after{
		top: 7px;
	}
	#casestudyCategory .checkbox input{
		-webkit-appearance: none;
	}
	
	.casestudyPhotoList .mix {
		width: 47%;
		margin: 0 1.5% 2em;
	}
	.casestudyPhotoList .mix .photo img {
		height: 28vw;
	}
	.casestudyPhotoList .mix .name {
		font-size: 16px;
		margin-top: 0.7em;
	}
	.casestudyPhotoList .mix ul{
		font-size: 12px;
	}
	.casestudyPhotoList .mix ul li{
		line-height: 1.5em;
	}
	#modalContent .modalBox{
		padding: 0 20px;
	}
	#modalContent .modalAreaDescIn{
		padding: 20px;
	}
	#modalContent .modalAreaDescIn .flexBox{
		flex-direction: column-reverse;
	}
	#modalContent .modalAreaDescIn .flexBox .photo,
	#modalContent .modalAreaDescIn .flexBox .desc{
		width: 100%;
	}
	#modalContent .modalAreaDescIn .flexBox .photo{
		margin-top: 1.5em;
	}
	#modalContent .modalAreaDescIn .flexBox .desc{
		margin-top: 1em;
	}
	#modalContent .modalAreaDescIn .flexBox .desc .title{
		font-size: 22px;
		margin-bottom: 0.5em;
	}
	#modalContent .modalAreaDescIn .flexBox .desc .txt{
		font-size: 14px;
	}
	#modalContent .modalAreaDescIn .flexBox .desc .txt span{
		margin-right: 1em;
	}
	.slick-prev, .slick-next{
		width: 30px;
		height: 30px;
		bottom: -31px;
	}
	.slick-dots{
		bottom: -23px;
	}
	.slick-dots li button{
		padding: 5px;
	}
	
	.product.top #TopProductIn .ProductSquare {
		width: 49%;
	}
	.product.top #TopProductIn .ProductSquare:nth-of-type(n+3) {
		margin-top: 1em;
	}
	/*221209追加*/
	.product #LinkProductBottom{
		margin-bottom: 0;
	}
	.product .LinkProductBottomIn{
        display: block;
		padding: 5em 40px;
    }
    .product #LinkProductBottom .menuLink{
        width: 100%;
        margin-bottom: 30px;
    }
    .product #LinkProductBottom .menuLink .title{
		font-size: 20px;
    }
	.flexWrap .w80p{
		width: 100%;
	}
	.flexWrap .w15p{
		width: 60%;
	}
	/*221214追加*/
	.accordionArea .btn span {
		font-size: 14px;
	}
	
	
	
	.product.casestudy .btnArea {
		display: block;
		width: 100%;
		margin-top: 1em;
	}
	.product.casestudy .btnArea .btn{
		width: 100%;
	}
	.product.casestudy .btnArea .btn:nth-of-type(n+2) {
		margin-left: 0;
		margin-top: 1em;
	}
	
	#modalContent .modalAreaDescIn .flexBox .desc .btn {
		margin: 1em auto 0;
		max-width: 75%;
	}
	#modalContent .modalAreaDescIn .flexBox .desc .btn a{
		padding: 0.8em 2em;
	}
	
	
	#modalContent .modalAreaDescIn .flexBox .photo .thumbs_dots .thumbs_list li{
		height: 45px;
	}
	/*221220追加*/
	.flexBox.flexThree{
		display: block;
	}
	.flexBox.flexThree > div{
		width: 100%;
		margin-bottom: 30px;
	}
	
	
	.UnderlayerOuterIn .btnArea{
		display: block;
		margin-top: 2em;
	}
	.UnderlayerOuterIn .btnArea .btn{
		width: auto;
		margin: 0;
	}
	.UnderlayerOuterIn .btnArea .btn:nth-of-type(n+2){
		margin-top: 1em;
		margin-left: 0 !important;
	}
	
	
	.bg_blue{
		padding: 1em;
	}
	
	
}
