@charset "UTF-8";
/* AUTHOR:t-styles */

/* ------------------------------------ */
/* ▼スマホ用＆共通デザイン */
/* ------------------------------------ */
.flex {
	display: flex;
	flex-wrap: wrap;/*入りきれない要素は2段、三段になる*/	
}
.flexNowrap {
	display: flex;
	flex-wrap: nowrap;/*横に無理やり入れる*/	
}
.flex_block{
	display: block;	
}
.jjc{/*センター*/
	display:flex;
	justify-content: center;
}
.iic {
	align-items: center;
}
.between{ /*スマホは縦並びとなる*/
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.around{ /*スマホは縦並びとなる*/
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.center{ /*スマホは縦並びとなる*/
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.start{ /*スマホは縦並びとなる*/
	display: flex;
	flex-direction: column;
	justify-content: start;
}
/*flex 横幅%指定*/
.basis10 {
	flex-basis: 10%;
}
.basis20 {
	flex-basis: 20%;
}
.basis30 {
	flex-basis: 30%;
}
.basis40 {
	flex-basis: 40%;
}
.basis50 {
	flex-basis: 50%;
}
.basis60 {
	flex-basis: 60%;
}
.basis70 {
	flex-basis: 70%;
}
.basis80 {
	flex-basis: 80%;
}
.basis90 {
	flex-basis: 90%;
}


/* ------------------------------------ */
/* ▼パソコン （1280px〜）*/
/* ------------------------------------ */

@media screen and (min-width: 1280px) {
.flex_block{/*PCはflex　スマホはBlock*/
	display: flex;
	flex-wrap: wrap;/*入りきれない要素は2段、三段になる*/	
}
.flex50p { 
	display: flex;
	flex-wrap: nowrap;/*無理やり入れる*/
}
.flex50p li { 
	flex-basis: 50%; 
}
.flex50p img{
	width: 100%;
}	
}
	
	
	
	
	
