#container_features {
	overflow: hidden;
	padding-bottom: 0;
	flex: 1;
}
.carousel img {
	width: 100%;
/*	min-height: 400px;*/
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
#container_aboutus {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 80px 80px;
	height: auto;
	gap: 50px;
}
.css_aboutus_content {
	width: 60%;
	color: var(--theme-color);
	font-size: 1.4rem;
	font-weight: normal;
	letter-spacing: normal;
	padding-bottom: 40px;
	text-align: justify;
}
.css_about_img {
	flex: 1;
	align-self: stretch;
}
.css_about_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#container_menu {
	display: flex;
	flex-direction: column;
}
#section_menu_header {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background-color: var(--theme-color);
	color: var(--theme-text-color);
	padding: 80px 0;
	gap: 50px;
}
#wrapper_menu_note {
	width: 100%;
	font-size: 1.2rem;
	color: var(--theme-text-color);
	line-height: 2;
	padding: 10px 0;
	text-align: center;
	font-style: italic;
}
#wrapper_menu_button {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}
.css_menu_button {
	font-size: 1.4rem;
	border: 2px solid white;
	padding: 15px 45px;
	color: var(--theme-text-color);
	cursor: pointer;
}
.css_menu_button.selected {
	background-color: var(--theme-text-color);
	color: var(--theme-color);
}
.css_menu_button:hover {
	background-color: #A56D05;
}
#section_menu_details {
	width: 80%;
	height: auto;
	position: relative;
	padding-left: 100px;
	padding-right: 100px;
	margin-left: auto;
	margin-right: auto;
}
#section_menu_details .css_menu_details {
	width: 100%;
	height: 0;
	opacity: 0;
	transition-property: height;
	transition-duration: 10s;
}
.css_menu_details .css-multi-block {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: start;
	gap: 40px
}
.css_menu_details .css-multi-block .css-inner-block {
	line-height: 1.2;
	flex: 1;
}
#section_menu_details .css_menu_details.expand {
	padding-top: 100px;
	padding-bottom: 100px;
	height: auto;
	opacity: 1;
	transition-property: opacity, height, padding-top, padding-bottom;
	transition-duration: 1s, 2s, 1s, 1s;
}
#section_menu_gallery {
	overflow: hidden;
	width: 100%;
	height: 80vh;
	background-image: url(/images/20_fish_FINAL01.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
@supports (-webkit-touch-callout: none) {
	#section_menu_gallery {
		background-attachment: scroll;
	}
}
@supports not (-webkit-touch-callout: none) {
	#section_menu_gallery {
		background-attachment: fixed;
	}
}

#container_press {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;
	padding: 80px 0;
}
#section_press_slider {
	width: 80%;
}
#carouselPress {
	padding-top: 30px;
	padding-bottom: 30px;
}
.wrapper_press_frame {
	width: 80%;
	display: flex;
	flex-direction: row;
	gap: 50px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.wrapper_press_frame a {
	font-size: 1.4rem;
}
.wrapper_press_frame .css_art_box {
	flex: 1;
}
.wrapper_press_frame .css_art_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wrapper_press_frame .css_content_box {
	flex: 2;
	text-align: justify;
	font-size: 1.4rem;
}
.wrapper_press_frame .css_content_box a {
	color: var(--theme-color);
	line-height: 1;
}


/*#aboutus_link {
	font-size: 1.2rem;
	color: var(--theme-color);
	padding: 10px 40px;
	border: 2px solid var(--theme-color);
}
#aboutus_link:hover, .css_gallery_link:hover {
	color: var(--theme-text-color);
	background-color: var(--theme-color);
	transition-property: background-color, color;
	transition-duration: 0.3s, 0.3s;
}
.css_gallery_link {
	color: var(--theme-color);
	padding: 10px 40px;
	border: 2px solid var(--theme-color);
}
*/