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

/* ------------------------------------ */
/* ▼スマホ用＆共通デザイン */
/* ------------------------------------ */
.flex {  /*縦を揃える*/
	display: flex;
	flex-wrap: wrap;/*入りきれない要素は2段、三段になる*/
	
}
.between{ /*スマホは縦並びとなる*/
	flex-direction: column;
	justify-content: center;
}
.around{ /*スマホは縦並びとなる*/
	flex-direction: column;
	justify-content: center;
	margin-right: 1%;
	margin-left: 1%;
}
.center{ /*スマホは縦並びとなる*/
	flex-direction: column;
	justify-content: center;
}
.start{ /*スマホは縦並びとなる*/
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.item_center {
align-items: center;
}
.block2 {
	flex-basis: 100%;
}
.block2 img{
	width: 100%;
}
.block3 {
	width: 100%;
}
.block4 {
	flex-basis: 100%;
}
.block4 img{
	width: 100%;
}
.pic {
	margin-bottom: 2em;
}
.pic dl {
}

.pic dt {
	padding-bottom: 0.5em;
	text-align: center;
}
.pic dd {
}


/* ------------------------------------ */
/* ▼PCのみデザイン */
/* ------------------------------------ */
@media screen and (min-width: 760px)  { 
.between{ /*左端から右端へ（横並び）*/
	flex-direction: row;
	justify-content: space-between;
}
.around{ /*左端から右端へ（両端隙間あり）（横並び）*/
	flex-direction: row;
	justify-content: space-around;
	margin-right: 0;
	margin-left: 0;
}
.center{ /*センター（横並び）*/
	flex-direction: row;
	justify-content: center;
}
.start{ /*スマホは縦並びとなる*/
	flex-direction: row;
	justify-content: flex-start;
}
.block2 {
	flex-basis: 48%;
}
.block3 {
	flex-basis: 31%;
}
.block4 {
	flex-basis: 23%;
}
.margin1 {
	margin: 1%;
}
}
