@charset "UTF-8";

/*--基本--*/

.composite_box01 .wrapper_item{
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.composite_box01 .inner_item{
	width: 23.5%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}
.composite_box01 .inner_item a{
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.composite_box01 .inner_item_img{
	text-align: center;
	margin: 0 auto 10px;
	width: 100%;
}
.composite_box01 .inner_item_img img{
	width: 100%;
	object-fit: cover;
}
.composite_box01 .inner_item_img:nth-last-of-type(1){
	/*画像だけのとき*/
	margin-bottom: 0;
}
.composite_box01 .inner_item a *{
	transition: 0.3s ease-in-out;
}
.composite_box01 .inner_item a:hover *{
	opacity: 0.8;
}

.composite_box01 .inner_item .heading{
	margin-bottom: 10px;
	width: 100%;
}
.composite_box01 .inner_item_txt .heading:last-child{
	margin-bottom: 0;
}

/*.inner_itemが3個*/
.composite_box01 .inner_item:nth-of-type(1):nth-last-of-type(3),
.composite_box01 .inner_item:nth-of-type(2):nth-last-of-type(2),
.composite_box01 .inner_item:nth-of-type(3):nth-last-of-type(1){
	width: 31%;
}

/*.inner_itemが2個*/
.composite_box01 .inner_item:nth-of-type(1):nth-last-of-type(2),
.composite_box01 .inner_item:nth-of-type(2):nth-last-of-type(1){
	width: 48%;
	margin-left: auto;
	margin-right: auto;
}

/*.inner_itemが6,7,8個*/
.composite_box01 .inner_item:nth-of-type(4n+2):nth-last-of-type(1),
.composite_box01 .inner_item:nth-of-type(4n+3):nth-last-of-type(1){
	margin-left: 2%;
	margin-right: auto;
}
.composite_box01 .inner_item:nth-of-type(4n+2):nth-last-of-type(2){
	margin-left: 2%;
	margin-right: inherit;
}
.composite_box01 .inner_item:nth-of-type(3):nth-of-type(4n+3):nth-last-of-type(1){
	margin-right: inherit;
}

@media screen and (max-width: 920px){
	.composite_box01:not(.no_responsive) .inner_item{
		width: 48%;
	}
	.composite_box01:not(.no_responsive) .inner_item:nth-of-type(1):nth-last-of-type(4),
	.composite_box01:not(.no_responsive) .inner_item:nth-of-type(2):nth-last-of-type(3){
		margin-bottom: 30px;
	}
	.composite_box01:not(.no_responsive) .inner_item:nth-of-type(4n+2):nth-last-of-type(1),
	.composite_box01:not(.no_responsive) .inner_item:nth-of-type(4n+3):nth-last-of-type(1),
	.composite_box01:not(.no_responsive) .inner_item:nth-of-type(4n+2):nth-last-of-type(2){
		margin-left: inherit;
		margin-right: inherit;
	}
}
@media screen and (max-width: 650px){
	/*.inner_itemが2個*/
	.composite_box01:not(.no_responsive) .inner_item:nth-of-type(1):nth-last-of-type(2),
	.composite_box01:not(.no_responsive) .inner_item:nth-of-type(2):nth-last-of-type(1),
	/*.inner_itemが3個*/
	.composite_box01:not(.no_responsive) .inner_item:nth-of-type(1):nth-last-of-type(3),
	.composite_box01:not(.no_responsive) .inner_item:nth-of-type(2):nth-last-of-type(2),
	.composite_box01:not(.no_responsive) .inner_item:nth-of-type(3):nth-last-of-type(1){
		width: 100%;
	}
	/*.inner_itemが2個*/
	.composite_box01:not(.no_responsive) .inner_item:nth-of-type(1):nth-last-of-type(2),
	/*.inner_itemが3個*/
	.composite_box01:not(.no_responsive) .inner_item:nth-of-type(1):nth-last-of-type(3),
	.composite_box01:not(.no_responsive) .inner_item:nth-of-type(2):nth-last-of-type(2){
		margin-bottom: 30px;
	}
}

/*--レイアウト--*/

/*-block_images_1 画像↓サブタイトル↓テキスト-*/

.block_images_1,
.block_images_4{
}

/*-block_images_2 サブタイトル↓テキスト↓画像-*/

.composite_box01.block_images_2 .inner_item_img,
.composite_box01.block_images_5 .inner_item_img{
	order: 2;
	margin-bottom: 0;
}
.composite_box01.block_images_2 .inner_item_txt,
.composite_box01.block_images_5 .inner_item_txt{
	order: 1;
	margin-bottom: 10px;
}
.composite_box01.block_images_2 .inner_item_txt:nth-of-type(1),
.composite_box01.block_images_5 .inner_item_txt:nth-of-type(1){
	margin-bottom: 0;
}

/*-block_images_3 サブタイトル↓画像↓テキスト js使用-*/

.composite_box01.block_images_3 .inner_item>.heading:nth-last-of-child(1),
.composite_box01.block_images_6 .inner_item>.heading:nth-last-of-child(1){
	margin-bottom: 0;
}

/*-.block_images_456 円形画像-*/

.composite_box01.block_images_4 .inner_item_img,
.composite_box01.block_images_5 .inner_item_img,
.composite_box01.block_images_6 .inner_item_img{
	position: relative;
	padding-top: 50%;
	width: 50%;
}
.composite_box01.block_images_4 .inner_item_img img,
.composite_box01.block_images_5 .inner_item_img img,
.composite_box01.block_images_6 .inner_item_img img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	border-radius: 100%;
}

/*-block_images_7 画像背景-*/

.composite_box01.block_images_7.width_full>.content_wrapper{
	padding-left: 0;
	padding-right: 0;
}
.composite_box01.block_images_7 .inner_item{
	flex-direction: row;
	align-items: stretch;
	margin: 1px 0 !important;
	position: relative;
	margin-top: 1px;
	margin-bottom: 1px;
}
/*.inner_itemが2個*/
.composite_box01.block_images_7 .inner_item:nth-of-type(1):nth-last-of-type(2),
.composite_box01.block_images_7 .inner_item:nth-of-type(2):nth-last-of-type(1){
	width: calc((100% - 1px)/2);
}
/*.inner_itemが3個*/
.composite_box01.block_images_7 .inner_item:nth-of-type(1):nth-last-of-type(3),
.composite_box01.block_images_7 .inner_item:nth-of-type(2):nth-last-of-type(2),
.composite_box01.block_images_7 .inner_item:nth-of-type(3):nth-last-of-type(1){
	width: calc((100% - 2px)/3);
}
/*.inner_itemが4個*/
.composite_box01.block_images_7 .inner_item:nth-of-type(1):nth-last-of-type(4),
.composite_box01.block_images_7 .inner_item:nth-of-type(2):nth-last-of-type(3),
.composite_box01.block_images_7 .inner_item:nth-of-type(3):nth-last-of-type(2),
.composite_box01.block_images_7 .inner_item:nth-of-type(4):nth-last-of-type(1){
	width: calc((100% - 3px)/4);
}
.composite_box01.block_images_7 .inner_item a{
	position: relative;
	flex-direction: row;
	align-items: stretch;
}
.composite_box01.block_images_7 .inner_item a:hover *{
	opacity: 1;
}
.composite_box01.block_images_7 .inner_item_txt{
	position: relative;
	z-index: 2;
	padding: 30px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	min-height: 260px;
	transition: 0.3s;
	width: 100%;
	box-sizing: border-box;
	background: rgba(0,0,0,0.6);
}
.composite_box01.block_images_7 .inner_item a:hover .inner_item_txt{
	background-color: rgba(0,0,0,0.3);
}
.block_images_7 .inner_item_txt,
.block_images_7 .inner_item_txt .h,
.block_images_7 .inner_item_txt .h *{
	color: #fff !important;
}
.composite_box01.block_images_7 .inner_item_txt>*{
	width: 100%;
	box-sizing: border-box;
}
.composite_box01.block_images_7 .inner_item_img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}
.composite_box01.block_images_7 .inner_item_img img{
	display: block;
	width: 100% !important;
	height: 100% !important;
	transition: 0.8s !important;
}
.composite_box01.block_images_7 .inner_item a:hover .inner_item_img img{
	transform: scale(1.05);
}
@media screen and (max-width: 920px){
	/*.inner_itemが4個*/
	.composite_box01:not(.no_responsive).block_images_7 .inner_item:nth-of-type(1):nth-last-of-type(4),
	.composite_box01:not(.no_responsive).block_images_7 .inner_item:nth-of-type(2):nth-last-of-type(3),
	.composite_box01:not(.no_responsive).block_images_7 .inner_item:nth-of-type(3):nth-last-of-type(2),
	.composite_box01:not(.no_responsive).block_images_7 .inner_item:nth-of-type(4):nth-last-of-type(1){
		width: calc((100% - 1px)/2);
	}
	.composite_box01:not(.no_responsive).block_images_7 .inner_item:nth-of-type(1):nth-last-of-type(4),
	.composite_box01:not(.no_responsive).block_images_7 .inner_item:nth-of-type(2):nth-last-of-type(3){
		margin-bottom: 1px !important;
	}
}
@media screen and (max-width: 600px){
	.composite_box01.block_images_7 .inner_item_txt{
		padding: 20px 10px;
	}
	.composite_box01:not(.no_responsive).block_images_7 .inner_item_txt{
		min-height: 0;
	}
	/*.inner_itemが2個*/
	.composite_box01:not(.no_responsive).block_images_7 .inner_item:nth-of-type(1):nth-last-of-type(2),
	.composite_box01:not(.no_responsive).block_images_7 .inner_item:nth-of-type(2):nth-last-of-type(1),
	/*.inner_itemが3個*/
	.composite_box01:not(.no_responsive).block_images_7 .inner_item:nth-of-type(1):nth-last-of-type(3),
	.composite_box01:not(.no_responsive).block_images_7 .inner_item:nth-of-type(2):nth-last-of-type(2),
	.composite_box01:not(.no_responsive).block_images_7 .inner_item:nth-of-type(3):nth-last-of-type(1){
		width: 100%;
	}
	/*.inner_itemが2個*/
	.composite_box01:not(.no_responsive).block_images_7 .inner_item:nth-of-type(1):nth-last-of-type(2),
	/*.inner_itemが3個*/
	.composite_box01:not(.no_responsive).block_images_7 .inner_item:nth-of-type(1):nth-last-of-type(3),
	.composite_box01:not(.no_responsive).block_images_7 .inner_item:nth-of-type(2):nth-last-of-type(2){
		margin-bottom: 1px !important;
	}
}

/*-block_images_8 画像背景2-*/

.composite_box01.block_images_8 .wrapper_item{
	justify-content: center;
}
.composite_box01.block_images_8 .inner_item{
	position: relative;
	margin: 0 !important;
	width: 25% !important;
	overflow: hidden;
	background: var(--i_bg_color);
}
/*.inner_itemが3個*/
.composite_box01.block_images_8 .inner_item:nth-of-type(1):nth-last-of-type(3),
.composite_box01.block_images_8 .inner_item:nth-of-type(2):nth-last-of-type(2),
.composite_box01.block_images_8 .inner_item:nth-of-type(3):nth-last-of-type(1){
	width: 33.3% !important;
}
/*.inner_itemが2個*/
.composite_box01.block_images_8 .inner_item:nth-of-type(1):nth-last-of-type(2),
.composite_box01.block_images_8 .inner_item:nth-of-type(2):nth-last-of-type(1){
	width: 50% !important;
}
.composite_box01.block_images_8 .inner_item_img{
	z-index: 2;
	position: absolute;
	top: 140px;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	transition: 0.3s cubic-bezier(.22,.61,.36,1) !important;
	background: #000;
}
.composite_box01.block_images_8 .inner_item a{
	height: 100%;
}
.composite_box01.block_images_8 .inner_item a:hover *{
	opacity: 1;
}
.composite_box01.block_images_8 .inner_item_img img{
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	transition: 0.3s cubic-bezier(.22,.61,.36,1) !important;
}
.composite_box01.block_images_8 .inner_item:hover .inner_item_img{
	top: 0;
}
.composite_box01.block_images_8 .inner_item:hover .inner_item_img img{
	opacity: 0.6;
}
.composite_box01.block_images_8 .inner_item_txt{
	z-index: 3;
	min-height: 500px;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: center;
	padding: calc(140px + 10px) 20px 10px;
	box-sizing: border-box;
	pointer-events: none;
}
.composite_box01.block_images_8 .inner_item_txt .contenteditable{
	pointer-events: auto;
}
.composite_box01.block_images_8 .inner_item_txt>*{
	width: 100%;
}
.composite_box01.block_images_8 .inner_item_txt .heading{
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	height: 140px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	box-sizing: border-box;
	padding: 10px;
	overflow: hidden;
	transition: 0.3s cubic-bezier(.22,.61,.36,1) !important;
	border-top: 1px solid var(--i_border_color, rgba(125,125,125,0.3));
	border-left: 1px solid var(--i_border_color, rgba(125,125,125,0.3));
}
.composite_box01.block_images_8 .inner_item:last-child .inner_item_txt .heading{
	border-right: 1px solid var(--i_border_color, rgba(125,125,125,0.3));
}
.composite_box01.block_images_8 .inner_item_txt .heading>*{
	width: 100%;
}
.composite_box01.block_images_8 .inner_item_txt .heading *{
	transition: none;
}
.composite_box01.block_images_8 .inner_item_txt .heading .h{
	font-size: 2.6rem !important;
	margin-bottom: 0;
}
.composite_box01.block_images_8 .inner_item_txt p:empty{
	display: none;
}
.composite_box01.block_images_8 .inner_item_txt>p{
	margin: 0;
	padding-bottom: 10px;
	box-sizing: border-box;
	opacity: 0;
	transition: 0.2s !important;
	color: #fff;
}
.composite_box01.block_images_8 .inner_item_txt .heading+div p{
	color: #fff;
}
.composite_box01.block_images_8 .inner_item:hover .inner_item_txt .heading{
	color: #fff;
}
.composite_box01.block_images_8 .inner_item:hover .inner_item_txt>p{
	opacity: 1;
}
@media screen and (max-width: 940px){
	.composite_box01.block_images_8 .inner_item_txt{
		min-height: 40vw;
	}
	/*.inner_itemが4個*/
	.composite_box01.block_images_8 .inner_item:nth-of-type(1):nth-last-of-type(4),
	.composite_box01.block_images_8 .inner_item:nth-of-type(2):nth-last-of-type(3),
	.composite_box01.block_images_8 .inner_item:nth-of-type(3):nth-last-of-type(2),
	.composite_box01.block_images_8 .inner_item:nth-of-type(4):nth-last-of-type(1){
		width: 50% !important;
	}
	.composite_box01.block_images_8 .inner_item:nth-of-type(2):nth-last-of-type(3) .heading,
	.composite_box01.block_images_8 .inner_item:nth-of-type(4):nth-last-of-type(1) .heading{
		border-right: 1px solid var(--i_border_color, rgba(125,125,125,0.3));
	}
}
@media screen and (max-width: 750px){
	.composite_box01.block_images_8 .inner_item_img{
		top: 83px;
	}
	.composite_box01.block_images_8 .inner_item_txt{
		min-height: 40vw;
		padding-top: calc(83px + 10px);
	}
	.composite_box01.block_images_8 .inner_item_txt .heading{
		height: 83px;
	}
	/*.inner_itemが3個*/
	.composite_box01.block_images_8 .inner_item:nth-of-type(1):nth-last-of-type(3),
	.composite_box01.block_images_8 .inner_item:nth-of-type(2):nth-last-of-type(2),
	.composite_box01.block_images_8 .inner_item:nth-of-type(3):nth-last-of-type(1){
		width: 100% !important;
	}
	.composite_box01.block_images_8 .inner_item:nth-of-type(1):nth-last-of-type(3) .heading,
	.composite_box01.block_images_8 .inner_item:nth-of-type(2):nth-last-of-type(2) .heading{
		border-right: 1px solid var(--i_border_color, rgba(125,125,125,0.3));
	}
}
@media screen and (max-width: 600px){
	/*.inner_itemが2個*/
	.composite_box01.block_images_8 .inner_item:nth-of-type(1):nth-last-of-type(2),
	.composite_box01.block_images_8 .inner_item:nth-of-type(2):nth-last-of-type(1){
		width: 100% !important;
	}
	.composite_box01.block_images_8 .inner_item:nth-of-type(1):nth-last-of-type(2) .heading{
		border-right: 1px solid var(--i_border_color, rgba(125,125,125,0.3));
	}
}
@media screen and (max-width: 400px){
	.composite_box01.block_images_8 .inner_item_txt{
		min-height: 40vw;
		padding: calc(83px + 10px) 10px 10px;
	}
}

/*-block_images_9 バナー-*/

.composite_box01.block_images_9 .inner_item{
	position: relative;
}
.composite_box01.block_images_9 .inner_item a *{
	transition: 0;
}
.composite_box01.block_images_9 .inner_item_img{
	height: 110px;
}
.composite_box01.block_images_9 .inner_item_txt .heading{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 110px;
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	padding: 15px;
	box-sizing: border-box;
	transition: 0.2s !important;
}
/*.inner_itemが3個*/
.composite_box01.block_images_9 .inner_item:nth-of-type(1):nth-last-of-type(3) .inner_item_img,
.composite_box01.block_images_9 .inner_item:nth-of-type(2):nth-last-of-type(2) .inner_item_img,
.composite_box01.block_images_9 .inner_item:nth-of-type(3):nth-last-of-type(1) .inner_item_img,
.composite_box01.block_images_9 .inner_item:nth-of-type(1):nth-last-of-type(3) .inner_item_txt .heading,
.composite_box01.block_images_9 .inner_item:nth-of-type(2):nth-last-of-type(2) .inner_item_txt .heading,
.composite_box01.block_images_9 .inner_item:nth-of-type(3):nth-last-of-type(1) .inner_item_txt .heading{
	height: 120px;
}
/*.inner_itemが2個*/
.composite_box01.block_images_9 .inner_item:nth-of-type(1):nth-last-of-type(2) .inner_item_img,
.composite_box01.block_images_9 .inner_item:nth-of-type(2):nth-last-of-type(1) .inner_item_img,
.composite_box01.block_images_9 .inner_item:nth-of-type(1):nth-last-of-type(2) .inner_item_txt .heading,
.composite_box01.block_images_9 .inner_item:nth-of-type(2):nth-last-of-type(1) .inner_item_txt .heading{
	height: 140px;
}
@media screen and (max-width: 920px){
	.composite_box01.block_images_9 .inner_item_img,
	.composite_box01.block_images_9 .inner_item_txt .heading{
		height: 110px !important;
	}
}
.composite_box01.block_images_9 .inner_item_img img{
	height: 100% !important;
}
.composite_box01.block_images_9 a:hover .inner_item_txt .heading.align-left{
	padding-left: 25px;
	padding-right: 5px;
}
.composite_box01.block_images_9 a:hover .inner_item_txt .heading.align-right{
	padding-left: 5px;
	padding-right: 25px;
}
.composite_box01.block_images_9 .inner_item_txt .heading:before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: var(--i_main_color, #000);
	opacity: 0.3;
	transition: 0.2s;
}
.composite_box01.block_images_9 a .inner_item_txt .heading:before{
	opacity: 0;
}
.composite_box01.block_images_9 a:hover .inner_item_txt .heading:before{
	opacity: 0.6;
}
.composite_box01.block_images_9 .inner_item_txt .heading .h{
	margin-bottom: 0;
}
.composite_box01.block_images_9 .inner_item_txt .heading .h,
.composite_box01.block_images_9 .inner_item_txt .heading p{
	width: 100%;
	font-weight: 600;
	position: relative;
	z-index: 2;
}
.composite_box01.block_images_9[style*=" color: inherit"] .inner_item_txt .heading .h,
.composite_box01.block_images_9[style*=" color: inherit"] .inner_item_txt .heading p,
.composite_box01.block_images_9:not([style*=" color:"]) .inner_item_txt .heading .h,
.composite_box01.block_images_9:not([style*=" color:"]) .inner_item_txt .heading p{
	color: #fff;
}
.composite_box01.block_images_9 .inner_item_txt p:empty{
	display: none;
}
.composite_box01.block_images_9 .inner_item a:hover *{
	opacity: 1;
}

/*-block_images_10-*/

.composite_box01.block_images_10.width_full .content_wrapper{
	padding-left: 0;
	padding-right: 0;
}
.composite_box01.block_images_10 .wrapper_item{
	justify-content: center;
}
.composite_box01.block_images_10 .inner_item{
	position: relative;
}
/*2個*/
.composite_box01.block_images_10 .inner_item:nth-of-type(1):nth-last-of-type(2),
.composite_box01.block_images_10 .inner_item:nth-of-type(2):nth-last-of-type(1){
	width: 50%;
	margin: 0;
}
/*3個*/
.composite_box01.block_images_10 .inner_item:nth-of-type(1):nth-last-of-type(3),
.composite_box01.block_images_10 .inner_item:nth-of-type(2):nth-last-of-type(2),
.composite_box01.block_images_10 .inner_item:nth-of-type(3):nth-last-of-type(1){
	width: 33.3%;
	margin: 0;
}
/*4個*/
.composite_box01.block_images_10 .inner_item:nth-of-type(1):nth-last-of-type(4),
.composite_box01.block_images_10 .inner_item:nth-of-type(2):nth-last-of-type(3),
.composite_box01.block_images_10 .inner_item:nth-of-type(3):nth-last-of-type(2),
.composite_box01.block_images_10 .inner_item:nth-of-type(4):nth-last-of-type(1){
	width: 25%;
	margin: 0;
}
.composite_box01.block_images_10 .inner_item_img{
	margin-bottom: 0;
	overflow: hidden;
}
.composite_box01.block_images_10 .inner_item_img img{
	height: 300px !important;
	transition: 0.75s ease;
}
.composite_box01.block_images_10 .inner_item a:hover .inner_item_img img{
	transform: scale(1.15);
}
.composite_box01.block_images_10 .inner_item_txt{
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 10% 0;
}
.composite_box01.block_images_10 .inner_item_txt>*{
	width: 80%;
}
.composite_box01.block_images_10 .inner_item a:hover *{
	opacity: 1;
}
@media screen and (max-width: 1100px){
	.composite_box01.block_images_10 .inner_item_txt>*{
		width: 90%;
	}
	.composite_box01.block_images_10 .inner_item_img img{
		height: 250px !important;
	}
	.composite_box01.block_images_10 .inner_item_txt{
		padding: 8% 0;
	}
}
@media screen and (max-width: 900px){
	/*4個*/
	.composite_box01.block_images_10 .inner_item:nth-of-type(1):nth-last-of-type(4),
	.composite_box01.block_images_10 .inner_item:nth-of-type(2):nth-last-of-type(3),
	.composite_box01.block_images_10 .inner_item:nth-of-type(3):nth-last-of-type(2),
	.composite_box01.block_images_10 .inner_item:nth-of-type(4):nth-last-of-type(1){
		width: 50%;
	}
}
@media screen and (max-width: 600px){
	.composite_box01.block_images_10 .inner_item_txt>p{
		font-size: 1.4rem;
		line-height: 1.6;
	}
}
@media screen and (max-width: 500px){
	.composite_box01.block_images_10 .inner_item{
		width: 100% !important;
	}
	.composite_box01.block_images_10 .inner_item_img img{
		height: 200px !important;
	}
	.composite_box01.block_images_10 .inner_item_txt{
		padding: 30px 0;
	}
}

/*-block_images_11-*/

.composite_box01.block_images_11.width_full .content_wrapper{
	padding-left: 0;
	padding-right: 0;
}
.composite_box01.block_images_11 .wrapper_item{
	justify-content: center;
}
.composite_box01.block_images_11 .inner_item{
	position: relative;
}
/*2個*/
.composite_box01.block_images_11 .inner_item:nth-of-type(1):nth-last-of-type(2),
.composite_box01.block_images_11 .inner_item:nth-of-type(2):nth-last-of-type(1){
	width: 50%;
	margin: 0;
}
/*3個*/
.composite_box01.block_images_11 .inner_item:nth-of-type(1):nth-last-of-type(3),
.composite_box01.block_images_11 .inner_item:nth-of-type(2):nth-last-of-type(2),
.composite_box01.block_images_11 .inner_item:nth-of-type(3):nth-last-of-type(1){
	width: 33.3%;
	margin: 0;
}
/*4個*/
.composite_box01.block_images_11 .inner_item:nth-of-type(1):nth-last-of-type(4),
.composite_box01.block_images_11 .inner_item:nth-of-type(2):nth-last-of-type(3),
.composite_box01.block_images_11 .inner_item:nth-of-type(3):nth-last-of-type(2),
.composite_box01.block_images_11 .inner_item:nth-of-type(4):nth-last-of-type(1){
	width: 25%;
	margin: 0;
}
.composite_box01.block_images_11 .inner_item_img{
	margin-bottom: 0;
	overflow: hidden;
}
.composite_box01.block_images_11 .inner_item_img img{
	display: block;
	height: 300px !important;
	transition: 0.75s ease;
	transform: scale(1.05);
}
.composite_box01.block_images_11 .inner_item a:hover .inner_item_img img,
.composite_box01.block_images_11 a:hover .inner_item_txt .pwrap .iwrap img{
	transform: scale(1.2);
}
.composite_box01.block_images_11 .inner_item_txt{
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
.composite_box01.block_images_11 .inner_item_txt .heading{
	width: auto;
	margin: auto;
	background: var(--i_btn_color, #fff);
	color: var(--i_btn_txt_color, #000);
	box-sizing: border-box;
	padding: 10px;
	min-width: 40%;
}
.composite_box01.block_images_11 .inner_item_txt .pwrap{
	width: 100%;
	box-sizing: border-box;
	padding: 7px 10px;
	position: relative;
	overflow: hidden;
}
.composite_box01.block_images_11 .inner_item_txt .pwrap .iwrap{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 300px;
	z-index: 1;
	background: var(--i_bg_color, rgba(0,0,0,0));
}
.composite_box01.block_images_11 .inner_item_txt .pwrap .iwrap img{
	display: block;
	transition: 0.75s ease;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(5px) brightness(150%) !important;
	opacity: 0.5;
	transform: scale(1.05);
}
.composite_box01.block_images_11 .inner_item_txt .pwrap p{
	font-size: 1.4rem;
	line-height: 1.5;
	position: relative;
	z-index: 2;
}
.composite_box01.block_images_11 .inner_item a:hover *{
	opacity: 1;
}
@media screen and (max-width: 1100px){
	.composite_box01.block_images_11 .inner_item_img img,
	.composite_box01.block_images_11 .inner_item_txt .pwrap .iwrap{
		height: 250px !important;
	}
}
@media screen and (max-width: 900px){
	/*4個*/
	.composite_box01.block_images_11 .inner_item:nth-of-type(1):nth-last-of-type(4),
	.composite_box01.block_images_11 .inner_item:nth-of-type(2):nth-last-of-type(3),
	.composite_box01.block_images_11 .inner_item:nth-of-type(3):nth-last-of-type(2),
	.composite_box01.block_images_11 .inner_item:nth-of-type(4):nth-last-of-type(1){
		width: 50%;
	}
}
@media screen and (max-width: 500px){
	.composite_box01.block_images_11 .inner_item{
		width: 100% !important;
	}
	.composite_box01.block_images_11 .inner_item_img img,
	.composite_box01.block_images_11 .inner_item_txt .pwrap .iwrap{
		height: 200px !important;
	}
}

/*-block_images_12-*/

.composite_box01.block_images_12.width_full .content_wrapper{
	padding-left: 0;
	padding-right: 0;
}
.composite_box01.block_images_12 .wrapper_item{
	justify-content: space-between;
}
.composite_box01.block_images_12 .inner_item{
	position: relative;
}
/*2個*/
.composite_box01.block_images_12 .inner_item:nth-of-type(1):nth-last-of-type(2),
.composite_box01.block_images_12 .inner_item:nth-of-type(2):nth-last-of-type(1){
	width: 48%;
	margin: 0;
}
/*3個*/
.composite_box01.block_images_12 .inner_item:nth-of-type(1):nth-last-of-type(3),
.composite_box01.block_images_12 .inner_item:nth-of-type(2):nth-last-of-type(2),
.composite_box01.block_images_12 .inner_item:nth-of-type(3):nth-last-of-type(1){
	width: 31%;
	margin: 0;
}
/*4個*/
.composite_box01.block_images_12 .inner_item:nth-of-type(1):nth-last-of-type(4),
.composite_box01.block_images_12 .inner_item:nth-of-type(2):nth-last-of-type(3),
.composite_box01.block_images_12 .inner_item:nth-of-type(3):nth-last-of-type(2),
.composite_box01.block_images_12 .inner_item:nth-of-type(4):nth-last-of-type(1){
	width: 23%;
	margin: 0;
}
.composite_box01.block_images_12 .inner_item_img{
	margin-bottom: 0;
	overflow: hidden;
}
.composite_box01.block_images_12 .inner_item_img img{
	display: block;
	height: 250px !important;
	transition: 0.75s ease;
	transform: scale(1.05);
}
.composite_box01.block_images_12 .inner_item:nth-of-type(1):nth-last-of-type(2) .inner_item_img img,
.composite_box01.block_images_12 .inner_item:nth-of-type(2):nth-last-of-type(1) .inner_item_img img{
	height: 300px !important;
}
.composite_box01.block_images_12 .inner_item a:hover .inner_item_img img,
.composite_box01.block_images_12 a:hover .inner_item_txt .pwrap .iwrap img{
	transform: scale(1.2);
}
.composite_box01.block_images_12 .inner_item_txt{
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: flex-end;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
.composite_box01.block_images_12 .inner_item_txt .heading{
	width: 100%;
	position: static;
}
.composite_box01.block_images_12 .inner_item_txt .heading .h{
	margin-bottom: 0;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--i_btn_color, #fff);
	color: var(--i_btn_txt_color, #000);
	font-size: 1.2rem !important;
	padding: 5px 10px !important;
	line-height: 1.3 !important;
	font-weight: 500 !important;
}
.composite_box01.block_images_12 .inner_item_txt .heading:before,
.composite_box01.block_images_12 .inner_item_txt .heading:after,
.composite_box01.block_images_12 .inner_item_txt .heading .h:before,
.composite_box01.block_images_12 .inner_item_txt .heading .h:after{
	display: none !important;
}
.composite_box01.block_images_12 .inner_item_txt .pwrap{
	width: 100%;
	box-sizing: border-box;
	padding: 7px 10px;
	position: relative;
	overflow: hidden;
}
.composite_box01.block_images_12 .inner_item_txt .pwrap .h{
	font-weight: bold;
	margin-bottom: 5px;
}
.composite_box01.block_images_12 .inner_item_txt .pwrap .iwrap{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 250px;
	z-index: 1;
	background: var(--i_bg_color, rgba(0,0,0,0));
}
.composite_box01.block_images_12 .inner_item:nth-of-type(1):nth-last-of-type(2) .inner_item_txt .pwrap .iwrap,
.composite_box01.block_images_12 .inner_item:nth-of-type(2):nth-last-of-type(1) .inner_item_txt .pwrap .iwrap{
	height: 300px !important;
}
.composite_box01.block_images_12 .inner_item_txt .pwrap .iwrap img{
	display: block;
	transition: 0.75s ease;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(5px) brightness(150%) !important;
	opacity: 0.5;
	transform: scale(1.05);
}
.composite_box01.block_images_12 .inner_item_txt .pwrap p{
	font-size: 1.4rem;
	line-height: 1.5;
	position: relative;
	z-index: 2;
}
.composite_box01.block_images_12 .inner_item a:hover *{
	opacity: 1;
}
@media screen and (max-width: 900px){
	/*4個*/
	.composite_box01.block_images_12 .inner_item:nth-of-type(1):nth-last-of-type(4),
	.composite_box01.block_images_12 .inner_item:nth-of-type(2):nth-last-of-type(3),
	.composite_box01.block_images_12 .inner_item:nth-of-type(3):nth-last-of-type(2),
	.composite_box01.block_images_12 .inner_item:nth-of-type(4):nth-last-of-type(1){
		width: 48%;
	}
	.composite_box01.block_images_12 .inner_item:nth-of-type(1):nth-last-of-type(4),
	.composite_box01.block_images_12 .inner_item:nth-of-type(2):nth-last-of-type(3){
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 500px){
	.composite_box01.block_images_12 .wrapper_item .inner_item:nth-of-type(n){
		width: 100% !important;
		margin-bottom: 20px;
	}
	.composite_box01.block_images_12 .wrapper_item .inner_item:nth-last-of-type(1){
		margin-bottom: 0;
	}
	.composite_box01.block_images_12 .wrapper_item .inner_item:nth-of-type(n) .inner_item_img img,
	.composite_box01.block_images_12 .wrapper_item .inner_item:nth-of-type(n) .inner_item_txt .pwrap .iwrap{
		height: 200px !important;
	}
}