/*縦表示ブロック
---------------------------------------------------------------------------*/

#vertical-sec h2 {
  margin-bottom: 30px;
}

/*写真とメニュー解説テキストを囲むブロック*/
.list1 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
	align-items: center;	/*垂直揃えの指定。上下中央に配置されるように。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 40px;	/*下に空けるスペース*/
}

/*list1ブロック内のh4タグ*/
.list1 h4 {
	margin: 20px;
	font-size: 1.2rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	font-weight: normal;	/*hタグはデフォルトで太字なので、これを標準にする*/
	text-align: center;		/*テキストをセンタリング*/
	letter-spacing: 3px;
	border-bottom: solid 1px #dac089;
}

/*写真下の小さなテキスト*/
.list1 figcaption {
	margin-top: 20px;	/*写真とテキストとの間に空けるスペース*/
	font-size: 0.7rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*list1ブロック内のfigureタグ。写真を囲むブロック。*/
.list1 figure {
	width: 90%;				/*幅*/
	text-align: center;		/*テキストをセンタリング*/
}

/*list1内のtextブロック*/
.list1 .text {
	width: 100%;	/*幅*/
}

/*list1内のリストタグ*/
.list1 li {
	margin-bottom: 10px;	/*上下間にとるスペース*/
}

/*list1内のリストタグ内のspanタグ。文字サイズの小さい説明テキスト部分です。*/
.list1 li span {
	display: block;
	font-size: 0.7rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	opacity: 0.5;		/*透明度。0.5は色が50%出た状態の事。*/
}

.list1 p {
	margin-top: 5px;
	margin-left: 10%;
}

.list1 img {
	width: 80%;
}

.list1 .small-img {
	width: 50%;
}


/*右画像表示ブロック
---------------------------------------------------------------------------*/
/*写真とメニュー解説テキストを囲むブロック*/
.list2 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: row-reverse;	/*子要素を縦並びにする*/
	align-items: center;	/*垂直揃えの指定。上下中央に配置されるように。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 40px;	/*下に空けるスペース*/
}

/*list2ブロック内のh4タグ*/
.list2 h4 {
	margin: 0;
	font-size: 1.2rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	font-weight: normal;	/*hタグはデフォルトで太字なので、これを標準にする*/
	text-align: center;		/*テキストをセンタリング*/
	letter-spacing: 3px;
	border-bottom: solid 1px #dac089;
}

/*写真下の小さなテキスト*/
.list2 figcaption {
	margin-top: 20px;	/*写真とテキストとの間に空けるスペース*/
	font-size: 0.7rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*list2ブロック内のfigureタグ。写真を囲むブロック。*/
.list2 figure {
	width: 90%;				/*幅*/
	text-align: center;		/*テキストをセンタリング*/
}

/*list2内のtextブロック*/
.list2 .text {
	width: 100%;	/*幅*/
}

/*list2内のリストタグ*/
.list2 li {
	margin-bottom: 10px;	/*上下間にとるスペース*/
}

/*list2内のリストタグ内のspanタグ。文字サイズの小さい説明テキスト部分です。*/
.list2 li span {
	display: block;
	font-size: 0.7rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	opacity: 0.5;		/*透明度。0.5は色が50%出た状態の事。*/
}

.list2 p {
	margin-top: 5px;
}

.list2.top {
	margin-top: 10px;
}
.list2.top h2{
	margin-right: 150px;
}


/*左画像表示ブロック
---------------------------------------------------------------------------*/
/*写真とメニュー解説テキストを囲むブロック*/
.list3 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: row;	/*子要素を縦並びにする*/
	align-items: center;	/*垂直揃えの指定。上下中央に配置されるように。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 40px;	/*下に空けるスペース*/
}

/*list2ブロック内のh4タグ*/
.list3 h4 {
	margin: 0;
	font-size: 1.2rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	font-weight: normal;	/*hタグはデフォルトで太字なので、これを標準にする*/
	text-align: center;		/*テキストをセンタリング*/
	letter-spacing: 3px;
	border-bottom: solid 1px #dac089;
}

/*写真下の小さなテキスト*/
.list3 figcaption {
	margin-top: 20px;	/*写真とテキストとの間に空けるスペース*/
	font-size: 0.7rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*list3ブロック内のfigureタグ。写真を囲むブロック。*/
.list3 figure {
	width: 90%;				/*幅*/
	text-align: center;		/*テキストをセンタリング*/
	margin-right: 70px;
}

/*list3内のtextブロック*/
.list3 .text {
	width: 100%;	/*幅*/
}

/*list3内のリストタグ*/
.list3 li {
	margin-bottom: 10px;	/*上下間にとるスペース*/
}

/*list3内のリストタグ内のspanタグ。文字サイズの小さい説明テキスト部分です。*/
.list3 li span {
	display: block;
	font-size: 0.7rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	opacity: 0.5;		/*透明度。0.5は色が50%出た状態の事。*/
}

.list3 p {
	margin-top: 5px;
}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1050px){

/*縦表示ブロック
---------------------------------------------------------------------------*/

#vertical-sec img {
  width: 70%;
  height: 70%;
}

.list2 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
	align-items: center;	/*垂直揃えの指定。上下中央に配置されるように。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 40px;	/*下に空けるスペース*/
}

.list2.top{
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column-reverse;	/*子要素を縦並びにする*/
	align-items: center;	/*垂直揃えの指定。上下中央に配置されるように。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 40px;	/*下に空けるスペース*/
	margin-top: 90px;
}

/*list2ブロック内のh4タグ*/
.list2 h4 {
	margin: 20px;
	font-size: 1.2rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	font-weight: normal;	/*hタグはデフォルトで太字なので、これを標準にする*/
	text-align: center;		/*テキストをセンタリング*/
	letter-spacing: 3px;
	border-bottom: solid 1px #dac089;
}

.list2 p {
	margin-top: 5px;
}

.list2 img {
	width: 80%;
}

.list2 .small-img {
	width: 50%;
}

.list2.top h2{
	margin-right: 0px;
}



.list3 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
	align-items: center;	/*垂直揃えの指定。上下中央に配置されるように。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 40px;	/*下に空けるスペース*/
}

/*list3ブロック内のh4タグ*/
.list3 h4 {
	margin: 20px;
	font-size: 1.2rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	font-weight: normal;	/*hタグはデフォルトで太字なので、これを標準にする*/
	text-align: center;		/*テキストをセンタリング*/
	letter-spacing: 3px;
	border-bottom: solid 1px #dac089;
}

.list3 p {
	margin-top: 5px;
}

.list3 img {
	width: 80%;
}

.list3 .small-img {
	width: 50%;
}

.list3 figure {
	margin-right: 0px;
}


}