@charset "utf-8";
/* CSS Document */





/*-------------------------------
見出し
-------------------------------*/
.title01 {
	margin-bottom: 30px;
	padding: 10px 20px 10px 60px;
	background-position: left 10px center,top center;
	background-repeat: no-repeat,repeat;
	border: 1px solid rgba(255,255,255,0.8);
	border-radius: 4px;
	font-size: 19px;
	text-align: left;
	line-height: 1.4;
	color: #7e6b5a;
	letter-spacing: 0.05em;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.06);
}
.title01.-deco01 {
	background-image: url(img/title01_deco01.png),url(img/title01_bg.png);
}
.title01.-deco02 {
	background-image: url(img/title01_deco02.png),url(img/title01_bg.png);
}
.photo_ttl {
	width: fit-content;
	margin-inline: auto;
	padding-right: 18px;
	padding-left: 18px;
	background-image: url(img/caption_bg.gif), url(img/caption_bg.gif);
	background-repeat: no-repeat, no-repeat;
	background-position: left top, right top;
	font-size: 18px;
	color: #7e6b5a;
}


/*-------------------------------
flex box
-------------------------------*/
/*flex01*/
.flex01 {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-flow: row wrap;
	gap: 17px;
}
.flex01 li {
	width: calc(100%/2 - 17px/2);
}
/*flex02*/
.flex02 {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-flow: row wrap;
	gap: 30px 50px;
}
.flex02 li {
	width: calc(100%/2 - 50px/2);
}



/*================================
TABLET横 1080px～0px
================================*/
@media screen and (max-width: 1080px) {}


/*================================
TABLET縦 834px～0px
================================*/
@media screen and (max-width: 834px) {}


/*================================
SP表示 667px～0px
================================*/
@media (max-width: 667px) {

	/*-------------------------------
	見出し
	-------------------------------*/
	.title01 {
		font-size: 16px;
	}

	/*-------------------------------
	flex box
	-------------------------------*/
	/*flex01*/
	.flex01 {}
	.flex01 li {}
	/*flex02*/
	.flex02 {}
	.flex02 li {
		width: 100%;
	}
	
}



