@charset "UTF-8";
/*
	Theme Name: Usuki Shokubunka
	Description:臼杵食文化創造都市推進協議会のテーマです。
	Theme URI:
	Author: Usuki Shokubunka
	Author URI: https://gastronomy-usuki.com/
	Version: 1.0
	License: GNU General Public License

*/

/* ********** css reset ********** */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* html {
  scroll-behavior: smooth;
} */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd  {
	margin: 0;
}
ul,
ol {	
	padding: 0;
}
ul {
	list-style: none;	
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}
address {
	font-style: normal;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
body {
	color: #333;
	font-family: "Inter", "Noto Sans", Arial, Helvetica, sans-serif;
	word-break: normal;
	overflow-wrap: anywhere;
	scroll-behavior: smooth;
}
html {	
	font-size: 100%;
}

a img:hover {
	opacity: 0.8;
}

/* pdf link */
a[href$=".pdf"] {
	padding-top: 3px;
	padding-bottom: 3px;
	/*background-color: transparent;*/
	background-image: url(images/icon/pdf.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 22px;
}
.no_link {
	background-image: none!important;
	padding: 0px!important;
}
a[href$=".doc"], a[href$=".docx"] {
	padding-top: 3px;
	padding-bottom: 3px;
	/*background-color: transparent;*/
	background-image: url(images/icon/doc.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 22px;
}
a[href$=".xls"], a[href$=".xlsx"] {
	padding-top: 3px;
	padding-bottom: 3px;
	/*background-color: transparent;*/
	background-image: url(images/icon/xls.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 22px;
}
a[href$=".zip"]  {
	padding-top: 3px;
	padding-bottom: 3px;
	/*background-color: transparent;*/
	background-image: url(images/icon/zip.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 22px;
}
.external {
	min-height: 16px;
	padding-right: 22px;
	background-repeat: no-repeat;
	background-image: url(images/icon/external.svg);
	background-position: right center;
}

hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}


/* Clearfix */
.clearfix:after {
    content:" ";
    display:block;
    clear:both;
}
/* parallax */
/* 下から */
.fadein {
    transform : translate(0, 50px);
    transition : all 1.5s;
    }

.fadein.scrollin {
    transform : translate(0, 0);
    }
/* トップバナー専用 */
.fadein_short {
    transform : translate(0, 25px);
    transition : all 1.5s;
    }

.fadein_short.scrollin {
    transform : translate(0, 0);
    }

/* ************************************************** 

	Link
		  
************************************************** */

a {
	color: #3B3B34;
}	
a:hover {
    color: #6d6d61;
}
a:focus {
    outline:none;
}
a img:hover {
	opacity: 0.75;
}

/* ************************************************** 

	Layout footer bottom
		  
************************************************** */
#wrapper {
}
#container {
	width: 100%;
	max-width: 1200px;
	padding: 0px 10px;
	margin: 0px auto;
}
#main {
	margin-bottom: 100px;
}
#footer {
  margin-top: auto;
}
/* Footer bottom */ 
#wrapper {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}
#container {
  flex: 1;
}

@media screen and (max-width: 768px) {
#container {
	margin: 0px auto;
}	
}

/* ************************************************** 

	Header
		  
************************************************** */

#header {
	position: relative;
	border-bottom: 1px solid #ccc;
}
.header_inner {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0px auto;
	display: flex;
	justify-content: space-between;
}
.logo_mark_area {
	text-align: center;
	width: 25%;
	display: grid;
	place-content: center;
}
.navigation_area {
	text-align: right;
	width: 75%;
}
#logo a {
	display: block;
}
.logo img {
	display: block;
	width: 100%;
	height: auto;
}

/* ***** 多言語セレクトボタン ***** */
.language_area {
	display: flex;
	justify-content: flex-end;	
	align-items: center;
	padding-top: 16px;		
	margin-bottom: 32px;
}
.language_select {
	display: flex;
	align-items: center;
	font-size: 0.813rem;
	padding: 5px 12px;
	border: 1px solid #ccc;
	border-radius: 100vh;
	background-color: #fff;
	cursor: pointer;
}
.language_select:focus {
	outline: none;
	border-color: #aaa;
}
/* New Type */
.language_dropdown {
	position: relative;
	display: inline-block;
}
/* Mark 通常時 */
.language_select::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  vertical-align: middle;
  transition: transform 0.2s ease;
}
/* Mark 回転時 */
.language_dropdown.open .language_select::after {
  transform: rotate(-135deg);
}
/* ドロップダウン */
.language_menu {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 5px;
	width: fit-contet;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 5px;
	list-style: none;
	margin: 0;
	padding: 4px 0;
	z-index: 999;
}
.language_menu {
	width: 100%;
}
.language_menu li a {
	display: block;
	padding: 6px 1em;
	text-align: left;
	text-decoration: none;
	color: #333;
	font-size: 0.813rem;
}
.language_menu li a:hover {
  background: #f2f2f2;
}

/* 開いた状態 */
.language_dropdown.open .language_menu {
  display: block;
}


/*.english_site {
	width: 124px;
	margin-right: 24px;
}
.english_site a {
	color: #fff;
	display: block;
	font-size: 0.8rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	background-color: #293E73;
	padding: 0.25em 1em;
	border-radius: 3px;
}
.english_site a:hover{
    background-color: #3F5EAD;
}*/

@media screen and (max-width: 768px) {
	.header_inner {
		width: auto;
	}
	.logo_mark_area {
		width: 50%;
		min-height: 115px;
	}
	.navigation_area {
	 width: 50%;
	}	
	.language_area {
		padding-top: 10px;
		padding-right: 10px;
		margin-bottom: 0px;
	}	
	.english_site {
		width: 124px;
		margin-right: 0px;
		margin-bottom: 8px;
	}
	.english_site a {
		font-size: 0.8rem;
		padding: 0.15em 0.5em;
	}	
	.website_translator {
	}		
}


/* ************************************************** 

	Global Navi
		  
************************************************** */
.menu-global-container {
	margin-bottom: 10px;
}
.menu {
	display: flex;
	justify-content: flex-end;
	list-style: none;
}
.menu li {
	position: relative;
    width: 150px;
}
.menu li a {
    position: relative;
	color: #2b2b2b;
	display: flex;
    justify-content: center;
    align-items: center;
	text-decoration: none;
	padding: 0.5em 0.2em;
  }
.menu li a::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background: #293e73;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: transform .3s;
	border-radius: 3px;
}
.menu li a:hover {
	color: #fff;
}
.menu li a:hover::before {
transform: scale(1, 1);
}

.menu-global-container .current-menu-item::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 3px;
	background-color: #293e73;
}

/* Toggle(Button) */
.toggle_wrap {
/*	position: relative;*/
}
#navToggle {
	display: none;
	position: absolute;/*to #header*/
	top: 64px;
	right: 24px;
	width: 30px;
	height: 25px;
	cursor: pointer;
	z-index: 100;
}
#navToggle div {
	position: relative;
}
#navToggle span {
	display: block;
	position: absolute;/*to div*/
	width: 100%;
	border-bottom: solid 3px #000;
	transition: .35s ease-in-out;
}
#navToggle span:nth-child(1) {
	top: 0;
}
#navToggle span:nth-child(2) {
	top: 11px;
}
#navToggle span:nth-child(3) {
	top: 22px;
}
#tglmenu_title {
	font-size: 12px;
	font-weight: bold;
	position: absolute;
	top: 68px;
	right: 72px;
	display: none;
}

@media screen and (max-width: 768px) {
	/* Toggle(Button) */
	#navToggle {
		display: block;
	}
	#tglmenu_title {
		display: block;
	}
	/* Click Toggle(Button) */
	.openNav #navToggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg)
	}
	.openNav #navToggle span:nth-child(2),
	.openNav #navToggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg)
	}
	/*header menu*/

	.menu {
		display: flex;
		flex-direction: column;
	}
	.menu-global-container {
		position: absolute;
		left: -768px; /*通常時はビュー外*/
		top: 100%;
		width: 100%;
		padding: 0px;
		transition: .5s ease-in-out;
		text-align: left;
		z-index: 300;
		box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
	}
	.openNav .menu-global-container {
		transform: translateX(768px);
	}	
	.menu {
		width: auto;
		height: auto;
		margin: 0;
	}
	.menu li {
		border-right: none;
		width: 100%;
		border-bottom: 1px solid #6C84C2;
	}
	.menu li a {
		color: #fff;
		font-size: 1rem;
		font-weight: normal;
		text-align: center;
		background-color: #293e73;
		height: 40px;
		margin: 0px;
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
		border-radius: 0px; 
	}
	.menu li a .menu_ja {
		font-size: 1rem;
	}
	.menu li a:hover {
	  background-color: #f5f5f5;
	  color: #1e50a2;
	}
	.menu-global-container .current-menu-item::after {
		background-color: inherit;
	}	
}

/* ************************************************** 

	BREADCRUMB
		  
************************************************** */
.breadcrumbs {
	font-size:85%;
	line-height: 1.5em;
	padding: 15px 0px 0px 0px;
}

/* ************************************************** 

		Typography
		  
************************************************** */
.hentry h1 {
	color: #293e73;
	font-size: 2.75rem;
	font-weight: bold;
	text-align: center;
	margin-top: 1em;
	margin-bottom: 1em;
}

.hentry h2 {
	color: #333;
	font-size: 2.438rem;
	text-align: center;
	margin-top: 2em;
	margin-bottom: 1em;
}
.hentry h3 {
	color: #fff;
    font-size: 1.75rem;
	font-weight: bold;
    padding: 0.4em 1.5em;
    margin-top: 3em;
    margin-bottom: 2em;
    background-color: #293e73;
	border-radius: 3px;
}
.hentry h4 {
	font-size: 1.5rem;
	font-weight: bold;
	padding: 0.2em 1em;
	margin-bottom: 1.5em;
	border-left: 6px solid #293E73;
}
.hentry h5 {
	color: #293E73;
	font-size: 1.375rem;
	font-weight: bold;
	margin: 0px 0px 1em 0px;
}
.hentry h6 {
	font-size: 1.188rem;
	font-weight: bold;
	margin: 0px 0px 1em 0em;
}


:root {
	--psize: 1.188rem;
}
.hentry p {
	font-size: var(--psize);
	line-height: 1.8em;
	letter-spacing: 0.012em;
	padding: 0px 3em;
	margin-bottom: 1em;	
}
.hentry ul {
	font-size: var(--psize);
	list-style: disc;
	line-height: 1.8em;
	padding-left: 2em;
	margin: 0 2em 2em 2em;
}
.hentry ol {
	font-size: var(--psize);
	line-height: 1.8em;
	padding-left: 2em;
	margin: 0 2em 2em 2em;
}
/*.hentry ul[class] {
	padding: 0px;
}*/

/*.hentry ol[class] {
	padding: 0px;
}*/
.hentry figcaption {
	font-size: 0.9rem;
/*	text-align: center;*/
/*	margin-bottom: 2em;*/
}
.wp-block-gallery ul {
	margin-bottom: 0px!important;
}
.hentry figure {
	margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	.hentry h1 {
		font-size: 1.5rem;
		margin: 1em 0px;
	}
	.hentry h2 {
		font-size: 1.4rem;
		margin-top: 0px;
		margin-bottom: 20px;
	}
	.hentry h3 {
		font-size: 1.3rem;
		margin-top: 2em;
		margin-bottom: 2em;
	}
	.hentry p {
		padding: 0px 1em;
	}
	.hentry ul {
		margin: 0 0.5em 2em 0.5em;
	}
	.hentry ol {
		margin: 0 0.5em 2em 0.5em;
	}
	.hentry figure {
		margin: 0px 16px 32px 16px !important;
	}
}

/* ********** table ********** */

.hentry table {
	width: auto;
	margin: 0px auto 40px auto;
}
.hentry table td,
.hentry table th {
	border: 1px solid #b0b3b9;
	line-height: 1.5em;
	vertical-align: middle;
	padding: 0.4em;
}

.hentry table caption {
	margin-bottom: 10px;
	text-align: left;
}
.hentry table th {
	background-color: #e8eff0;
	font-weight: normal;
	text-align: left;
}
.hentry table td {
	background-color: #fff;
}
@media screen and (max-width: 768px) {
.hentry table {
	width: 100%;
	margin: 0px auto 20px auto;
}
.hentry table td,
.hentry table th {
	padding: 0.5em 0.3em;
}
.hentry table td p,
.hentry table th p {
	margin: 0px!important;
}		
}

/* ************************************************** 

		WORDPRESS MISC
		  
************************************************** */

.wp-element-button,
.wp-block-button__link {
	margin: 0 3em 2em 3em;
}
.wp-block-table thead {
	border-bottom: none !important;
}
/* Related links（関連リンク）ボタンの幅を上書き */
.wp-block-buttons .wp-block-button__link {
	width: auto !important;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
	width: auto!important;
}



.wp-caption {
	text-align: center;
}

.gallery-caption{
	font-size: 80%;
}

.wp-caption img {
	margin: 0;
	padding: 0;
	border: 0 none;
}

.wp-caption-dd {
	margin: 0;
	padding: 0 4px 5px;
	font-size: 11px;
	line-height: 17px;
}

img.alignright {
    display: inline-block;
    margin: 0 0 1em 1.5em;
}

img.alignleft {
    display: inline-block;
    margin: 0 1.5em 1em 0;
}

img.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}*/

/* 2020/10/06 */
/*.wp-block-image {
}
.wp-block-image img {
	height: auto!important;
}*/
/* 20201023 */
/*.wp-block-image .aligncenter>figcaption,
.wp-block-image .alignleft>figcaption,
.wp-block-image .alignright>figcaption,
.wp-block-image.is-resized>figcaption {
	text-align: center;
}*/
/* 20210412 */
/*.columns-6 figcaption,
.columns-5 figcaption,
.columns-4 figcaption,
.columns-3 figcaption,
.columns-2 figcaption {
	text-align: center;
}
p.has-background {
	margin-bottom: 30px;
}*/

/* 20210903 WP5.8 対応 */
/*.wp-block-media-text__media img {
    height: auto;
}*/
/* 20221226 ボタンブロック */
/*.wp-block-button__link:hover {
    opacity: 0.8;
}*/

/* ************************************************** 

		検索
		  
************************************************** */
/* キーワードハイライト */
span.search-highlight {
	background: #fef263;
}
.result_area {
	padding: 0.8em 2em;
	border: 1px solid #dedede;
	margin-bottom: 30px;
}
.result_title {
	font-size: 1.2rem;
}
.result_title a {
	color: #2b2b2b;
}
.result_title a:hover {
	color: #c9171e;
}
.result_view {
	text-align: right;
}

/* ************************************************** 

		Slideshow
		  
************************************************** */
.key_visual {
}
.slider {
	width: 100%;
	margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
/* .slider {
	width: auto;
	height: 120px;
	margin-bottom: 60px;
}
.slider img {
	width: auto;
	height: 120px;
} */
}

/* Slick css 上書き */
.flex-control-paging li a {
    background-color: #eeeee9!important;
}
.flex-control-paging li a.flex-active {
    background-color: #c5c5b4!important;
}

/* ************************************************** 

		Homes
		  
************************************************** */

/* PickUp */
.pickup_area {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.pickup_item {
	width: 232px;
	height: 232px;
}
.pickup_item a {
	display: block;
}
.pickup_item img {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 768px) {
.pickup_item {
	width: 18%;
	height: auto;
}
}

/* ************************************************** 

		新着情報
		  
************************************************** */
.news_title {
	font-size: 1.5rem;
	text-align: center;
	letter-spacing: 0.15em;
	text-indent: 0.15em;
	margin: 30px 1em 20px 1em;
}
.news_list {
	list-style: none;
	margin-bottom: 30px;
	border-top: 1px solid #d0d0d0;
}
.news_list li {
	vertical-align: middle;
	background-color: #fff;
	padding: 20px;
	border-bottom: 1px solid #d0d0d0;
	transition: 0.4s ;
}
.news_list li:hover {
    color: #000;
    background-color: #EFF3FC;
}
.news_list li a {
	color: #000;
	display: flex;
	align-items: center;
	text-decoration: none;
}
.news_list li dl dt {
	margin-bottom: 15px;
}
.news_list li dl dt div {
	display:inline-block;
	vertical-align: middle;
}
.news_date {	
	font-size: 0.9rem;
	color: #666;
	margin-right: 1em;
}
.new_mark {
    font-size: 0.7rem;
    font-weight: bold;
    color: #e2041b;
    margin-left: 0.5em;
}

/* ***** カテゴリアイコン　新着一覧 ***** */
.news_cat {
	margin-right: 1em;
}
.category_label {
	color: #fff;
	font-size: 0.65rem;
	text-align: center;
	line-height: 1;
	padding: 0.3em 0.6em;
	margin-right: 20px;
	border-radius: 3px;
}

/* news　一覧を見るボタン */
.news_all a {
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.9rem;
	text-decoration: none;
	background-color: #293e73;
	width: 16em;
	padding: 0.5em 2em;
	margin: 0px auto 80px auto;
}
.news_all a:hover {
    background-color: #7E91BF;
}
@media screen and (max-width: 768px) {
.news_list li {
	padding: 10px 20px;
}	
.news_list li a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}	
.news_cat {
	display: inline-block;
}	
.news_date {	
	display: inline-block;
}
.news_text {
	display: block;
}
}

/* //////////////////// トップメニューバナー //////////////////// */

/*.menu_banner_area {	
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0px auto 80px auto;
}
.menu_banner {	
    position: relative;
	width: 21.4%;
}
.menu_banner:before {
    content:"";
    display: block;
    padding-top: 100%;
}*/
/*
.menu_banner a {
    color: #161616;
    font-size: 1.6rem;
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0);
	box-shadow:  0px 5px 10px rgba(0,0,0,0.15);
	transition: 0.6s ;
}
.menu_banner a:hover {
	color: #fff;
    background-color: rgba(0,0,0,0.2);
}

#mbnr01 {
    background-image: url(images/top_menu/gm01.svg);
    background-repeat: no-repeat;
    background-position: center center;
	background-color: #BA9CB8;
}
#mbnr02 {
    background-image: url(images/top_menu/gm02.svg);
    background-repeat: no-repeat;
    background-position: center center;
	background-color: #D1CEB0;
}
#mbnr03 {
    background-image: url(images/top_menu/gm03.svg);
    background-repeat: no-repeat;
    background-position: center center;
	background-color: #B1C7A7;
}
#mbnr04 {
    background-image: url(images/top_menu/gm04.svg);
    background-repeat: no-repeat;
    background-position: center center;
	background-color: #99BFBF;
}

@media screen and (max-width: 768px) {
.menu_banner_area {
}
.menu_banner {
	width: 45%;
	margin: 0px auto 15px auto;
}
.menu_banner a {
	font-size: 1rem;
}	
}
*/

/* ********** トップページ　広告バナー　********** */
.banner_title {
	font-size: 1.5rem;
	text-align: center;
	letter-spacing: 0.15em;
	text-indent: 0.15em;
	padding-bottom: 16px;
	margin-bottom: 56px;
	border-bottom: 1px solid #d0d0d0;
}
.link_banner_area {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	width: 100%;
	margin: 0px auto;
}
.link_banner {
	width: 200px;
	text-align: center;
	margin: 0 auto;
}
.link_banner a img {
	display: block;
	width: 100%;
	height: auto;
}
.monkasho {
	border: 1px solid #efefef;
}

/* ************************************************** 

		お問合せフォーム
		  
************************************************** */
.contact_form_list {
	width: 40%;
	margin: 0px auto 50px auto;
}
.contact_form_list dt {
	font-weight: bold;
	letter-spacing: 0.05em;
	padding-left: 0.5em;
	margin-bottom: 10px;
	border-left: 5px solid #293E73;
}
.add_must:after {
	content: "※必須";
	color: #D12D26;
	padding-left: 0.5em;
	font-size: 0.8rem;
}

.contact_form_list dd {
	margin-bottom: 2em;
}
#post-88 .contact_dl dd {
    background-color: #FFF6AB;
    padding: 0.5rem 1em;
}
.contact_form_list dd input,
.contact_form_list dd textarea {
	padding: 0.5em;
}
.your_name {
	width: 50%;
}
.your_mail01,
.your_mail02,
.your_message {
	width: 100%;
}
/*確認ボタン*/
.form_btn_area {
	display: flex;
	justify-content: center;
	margin: 0px auto;
}
.contact_check {
    display: block;
    color: #fff;
    font-size: 105%;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding: 7px 1em;
    background-color: #293E73;
    border: 1px solid #293E73;
    border-radius: 4px;
    box-shadow: 0px 1px 4px rgba(0,0,0,0.2);
    cursor: pointer;
}
.contact_check:hover {
    background-color: #405A9B;
    border: 1px solid #405A9B;
}
/*戻るボタン*/
.contact_back {
	display: block;
	font-size: 100%;
	font-weight: bold;
	letter-spacing: 0.05em;
	padding: 7px 1em;
	margin-right: 30px;
	background-color: #cac3bb;
	border: 1px solid #cac3bb;
	border-radius: 4px;
	box-shadow: 0px 1px 4px rgba(0,0,0,0.2);
	cursor: pointer;
}
.contact_back:hover {
    background-color: #d8d2cc;
	border-color: #d8d2cc;
}
/*送信ボタン*/
.contact_submit {
	display: block;
	color: #fff;
	font-size: 105%;
	font-weight: bold;
	letter-spacing: 0.05em;
	padding: 7px 1em;
	background-color: #6d6d61;
	border: 1px solid #6d6d61;
	border-radius: 4px;
	box-shadow: 0px 1px 4px rgba(0,0,0,0.2);
	cursor: pointer;
}
.contact_submit:hover {
	background-color: #a1a18f;
	border-color: #a1a18f;
}
@media screen and (max-width: 768px) {
.contact_dl {
	width: 90%;
}
.contact_form_list {
	width: 90%;
}
.contact_form_list dd input {
	max-width: 100%;
}	
}

/* 2022年3月16日のぼり貸与フォーム用スタイル */
.nobori_title {
    font-size: 1.2rem!important;
    background-color: #ededef;
    width: 45%;
    padding: 0.25em 1.5em;
    margin: 0px auto;
}
.nobori_sample {
    width: 400px;
    margin: 0px auto 40px auto;
}
.nobori_sample img {
    width: 100%;
    height: auto;
}
.nobori_text {
	width: 40%;
	margin: 0px auto;
}

@media screen and (max-width: 768px) {
.nobori_title {
    width: 90%;
}
.nobori_sample {
    width: 90%;
}	
}


/* ************************************************** 

		Single
		  
************************************************** */
.en_post_date {
	font-size: 0.875rem;
	color: #777;
	text-align: right;
	margin-bottom: 40px;
}

/* Single Pager */
.post_navigation {
	display: flex;
	justify-content: space-between;
	margin: 100px 10px 50px 10px;
}
.navi_left a,
.navi_right a{
    font-size: 0.9rem;
    color: #2b2b2b;
    text-decoration: none;
    background-color: #CCD6F0;
    padding: 0.5em 1em;
    border-radius: 3px;
}
.navi_left a:hover,
.navi_right a:hover {
	color: #000;
	background-color: #b9b9a5;
}

/* ************************************************** 

		category.php
		  
************************************************** */
.cat_archive_list {
	list-style: none;
	margin-bottom: 30px;
	border-top: 1px solid #d0d0d0;
}
.cat_archive_list li {
	vertical-align: middle;
	padding: 20px;
	border-bottom: 1px solid #d0d0d0;
}
.cat_archive_list li:hover {
	color: #000;
	background-color: #fff;
}

/* ************************************************** 

		Page Navi
		  
************************************************** */
.post_pagenavi {
	margin: 30px;
}

/* ************************************************** 

	Search Form
		  
************************************************** */
.search_form_box {
	width: 30%;
	margin: 0px auto 30px auto;
}
.search-form {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
}
#s { 
	width: 100%;
	height: 26px;
	font-size: 0.75rem;
	padding-left: 5px;
	border: 1px solid #b9b9a5;
}
.search-submit {
	position: absolute;
	right: 8px;
	width: 20px;
	height: 20px;
	border: none;
	background-position: center center;
	background-image: url(images/search_icon.svg);
	background-color: inherit;
}
@media screen and (max-width: 768px) {

.search_form_box {
	width: 90%;
}
}

/* ************************************************** 

		footer
		  
************************************************** */
#footer {
	color: #fff;
	background-color: #293E73;
	padding-top: 20px;
	padding-bottom: 15px;
}
.footer_inner {
	width: 100%;
	max-width: 1200px;
	margin: 0px auto;
}

/* address */
.footer_address {
	display: flex;
	width: 60%;
	margin: 0px auto 30px auto;
}
.footer_name {
	width: 40%;
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 0.5em;
}
.footer_address dl {
	width: 60%;
	font-size: 0.9rem;
}
.footer_address dl dt {
    width: 5em;
    float: left;
    text-align: right;
}
.footer_address dl dd {
	margin-left: 5.5em;
}
.copyright {
	display: block;
	text-align: center;
	font-size: 0.65rem;	
}
@media screen and (max-width: 768px) {
.footer_inner {
	width: auto;
	margin-left: 1em;	
	margin-right: 1em;
}
.footer_address {
	flex-direction: column;
	width: 100%;
}
.footer_name {
	width: 100%;
}	
.footer_address dl{
	width: 100%;
}		
.footer_address dl dt {
	width: 100%;
	float: none;
	text-align: left;
	font-weight: bold;
}	
.footer_address dl dd {
	width: 100%;
	margin-left: 0px;
}	
}

/* ************************************************** 

		トップへ戻るボタン
		  
************************************************** */
#page-top {
    position: fixed;
    bottom: 50px;
    right: 15px;
}
#page-top a {
    font-size: 14px;
    color: #fff;
    font-family: "Arial Black", Gadget, sans-serif;
    text-decoration: none;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #7E91BF;
    display: block;
    opacity: 0.8;
    border-radius: 50%;
    transition: all 0.3s;
}
#page-top a:hover {
    text-decoration: none;
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}

/* For IE11 Hack */
@media screen and (-ms-high-contrast: none) {
#wrapper {
	display: block;
}
}

/* ************************************************** 

		ENGLISH PAGE
		  
************************************************** */
#logo_en {
	position: relative;
	width: 100%;
	padding-top: 8px;
}
.site_name {
	width: 220px;
	margin: 0px auto;
}
.site_name a img {
	width: 100%;
	height: auto;
}
.ja_link {
	position: absolute;
	right: 32px;
	top: 16px;
}

/* Englishサイト用新着情報用 */
/*.return_en_home {
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
}
.view_archives {
	text-align: center;
}*/
/*.main_en h1 {	
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
	margin-top: 1.5em;
	margin-bottom: 1em;
}*/

/* typography */
/*.main_en .hentry h1 {	
	font-size: 2.6rem;
	font-weight: bold;
	margin-top: 1.5em;
}
.main_en .hentry h2 {
	font-size: 2.3rem;
	text-align: center;
}
.main_en .hentry h3 {
	font-size: 1.7rem;
	font-weight: bold;
	padding: 0.55em 1.5em;
	border-radius: 3px;
}
.main_en .hentry h4 {
	font-size: 1.5rem;
	margin-top: 1em;
}
.main_en .hentry h5 {
	font-size: 1.5rem;
}
.main_en .hentry h6 {
	font-size: 1.3rem;
	margin-bottom: 4px;
}
.en_post_date {
	font-size: 1rem;
	text-align: right;
	margin-bottom: 40px;
}*/

/* footer */
.footer_inner_en {
	width: 100%;
	max-width: 1200px;
	text-align: center;
	margin: 10px auto;
}
.footer_address_en {
	margin-bottom: 30px;
}
.footer_name_en {
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 1em;
}
.footer_address_en dl {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 1.05rem;
}
.footer_address_en dl dt {
	font-weight: bold;
    width:28%;
    text-align: right;
}
.footer_address_en dl dd {
	width: 72%;
	text-align: left;
	padding-left: 0.5em;
	margin-bottom: 0.4em;
}
.footer_inner_en small {
	font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
.site_name {
	 width: 190px
}
.ja_link {
	position: absolute;
	right: 16px;
	top: 8px;
	font-size: 90%;
}	

.footer_inner_en {
	padding: 0px 15px;
}
.footer_address_en dl {
	flex-direction: column;
}
.footer_address_en dl dt {
    width:100%;
    text-align: left;
}
.footer_address_en dl dd {
	width: 100%;
	text-align: left;
	padding-left: 0em;
	margin-bottom: 0.8em;
}	
.footer_inner_en small {
	font-size: 0.7rem;
}	
}

/* 2022年2月24日シンポジュームバナー */
.symposium_banner {
	text-align: center;
	padding-bottom: 32px;
}
.symposium_banner a {
    display: inline-block;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    background-color: #4369BA;
    padding: 0.7em 2em;
    border-radius: 5px;
    border-top: 2px solid #6487D1;
    border-bottom: 3px solid #2D55AB;
	box-shadow: 0px 2px 8px rgba(0,0,0,0.15);
}
.symposium_banner a:hover {
    background-color: #325CB6;
}

/* 20220715 酒まつりバナー */
.sakematsuri_banner {	
	width: 400px;
	margin: 0px auto;
}
.sakematsuri_banner img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 50px;
	box-shadow: 0px 2px 6px rgba(0,0,0,0.3);
}
@media screen and (max-width: 768px) {
.sakematsuri_banner {	
	width: 80%;
}
}


/* ************************************************** 

		New　食文化プロジェクトページ
		  
************************************************** */
.project_hentry_wrapper {
	margin-bottom: 64px;
}
.project_header {
    margin-bottom: 40px;
}
.project_header img {
    width: 100%;
    height: auto;
}

/* Term一覧リスト*/
.project_tax_list {
	display: flex;
    margin: 64px auto;
}
.project_tax_list li {
	width: 21%;
	margin: 0 2% 32px 2%;
}
@media screen and (max-width: 768px) {
.project_tax_list li {
	width: 30%;
	margin: 0 2% 32px 2%;
}    
}

.project_tax_list li a {
	display: block;
}
.ptax_title {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0.3em;
}
.ptax_image {
    position: relative;
	width: 100%;
	aspect-ratio: 1 / 1 ;
}
.ptax_image img {
    position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
}


/* 子ページから取得するタイプ */
.business_item_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
	gap: 64px;
	margin-bottom: 80px;
}
.business_item a {
	text-decoration: none;
}
.business_item a:hover {
	text-decoration: underline;
}
.business_item a:hover .business_thumb img {
	transform: scale(1.1);
}
.business_item h2 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0.3em;
}
.business_thumb {
    width: 100%;
    aspect-ratio: 4 / 3 ;
    position: relative;
	overflow: hidden;
	margin-bottom: 8px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.3);
}
.business_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;	
	transition: transform 0.5s;
}
.project_noimage {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #65909a;
    background-color: #e8eff0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 960px) {
	.business_item_wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}
@media screen and (max-width: 600px) {
	.business_item_wrapper {
		display: block;
	}
	.business_item {
		width: 90%;
		margin: 0 auto 40px auto;
	}
}



/* 各プロジェクトの見出し２ */
.project_h2 {
    color: #fff!important;
    background-color: #293E73;
    padding: 0.2em 1em;
    margin-bottom: 1.5em!important;
}
/* 各プロジェクトへのリンクボタン */
.project_linkbtn a {
    font-size: 1rem;
    text-decoration: none;
    color: #fff!important;
    background-color: #293E73;
    padding: 0.6em 1.5em;
    border-radius: 4px;
    box-shadow: 0px 3px 0px rgba(220, 220, 220, 1);
}
.project_linkbtn a:hover {
    background-color: #425C9E;
}


/*  Single*/
.sdgs_icon_list {
	display: flex;
    margin: 64px 0;
}
.sdgs_icon_list li {
	width: 5%;
	aspect-ratio: 1 /1 ;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
    margin: 0px 4px 8px 4px;
}
@media screen and (max-width: 768px) {
.sdgs_icon_list {
    flex-wrap: wrap;
}    
.sdgs_icon_list li {
	width: 14%;
}    
}
.sdgs01 {
    background-color: #e5021e;
    background-image: url(images/project/sdgs/sdgs01.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs02 {
	background-color: #d7a601;
    background-image: url(images/project/sdgs/sdgs02.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs03 {
	background-color: #1b963b;
    background-image: url(images/project/sdgs/sdgs03.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs04 {
	background-color: #c50e2a;
    background-image: url(images/project/sdgs/sdgs04.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs05 {
	background-color: #e83517;
    background-image: url(images/project/sdgs/sdgs05.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs06 {
	background-color: #00a6d8;
    background-image: url(images/project/sdgs/sdgs06.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs07 {
	background-color: #fabd00;
    background-image: url(images/project/sdgs/sdgs07.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs08 {
	background-color: #970b32;
    background-image: url(images/project/sdgs/sdgs08.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs09 {
	background-color: #ed6905;
    background-image: url(images/project/sdgs/sdgs09.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs10 {
	background-color: #dc097a;
    background-image: url(images/project/sdgs/sdgs10.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs11 {
	background-color: #f3a20b;
    background-image: url(images/project/sdgs/sdgs11.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs12 {
	background-color: #d49206;
    background-image: url(images/project/sdgs/sdgs12.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs13 {
	background-color: #417a36;
    background-image: url(images/project/sdgs/sdgs13.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs14 {
	background-color: #0075ba;
    background-image: url(images/project/sdgs/sdgs14.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs15 {
	background-color: #28a839;
    background-image: url(images/project/sdgs/sdgs15.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs16 {
	background-color: #004c88;
    background-image: url(images/project/sdgs/sdgs16.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.sdgs17 {
	background-color: #022f66;
    background-image: url(images/project/sdgs/sdgs17.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

/* Business テンプレート */

/* アンカー */
.bus_year_anchor {
    list-style: disc;
	padding-left: 2em;
    margin-bottom: 64px;
}
.bus_year_anchor li {
    margin-bottom: 1em;
}

.p_business_year_title {
    font-size: 1.4rem;
    font-weight: bold;
    border-bottom: 3px solid #293E73;
	padding-bottom: 0.2em;
    margin-bottom: 1.5em;
}

/* 日付とタイトルだけの一覧表示 */
.p_business_item {
    padding-bottom: 1em;
    margin: 0 1em 1em 1em;
    border-bottom: 1px dotted #dedede;
}
.bus_post_box {
    margin-bottom: 16px;
}
.bus_post_box a {
    display: flex;
    align-items: center;
}
.bus_date {
    font-size: 1rem; 
    margin-right: 2em;
}
.bus_title {
    font-size: 1.25rem;
    font-weight: bold;
}
/* ここまで */

.project_bus_item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #dedede;
}
.project_thumb {
    position: relative;
    width: 30%;
}
.project_thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.jigyo_noimage {
    display: flex;
    justify-content: center;
    align-items: center;
    /*color: #65909a;*/
    background-color: #e8eff0;
    width: 100%;
    aspect-ratio: 3 / 2;
}
.jigyo_noimage img {
	display: block;
	width: 60%;
	height: auto;
	object-fit: contain;
}
.project_outline {
    width: 65%;
}
/* 食文化プロジェクトの投稿記事のスタイル */
.project_outline h2 {
    font-size: 1.5rem;
	font-weight: bold;
    margin-bottom: 0.8em;
}
.project_outline_content h3 {	
	font-size: 1.063rem;
	font-weight: bold;
	padding: 0.15em 0.5em;
	margin-bottom: 1em;
	border-left: 4px solid #293E73;
}
.project_outline_content h4 {
	color: #293E73;
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 0.5em;
}
.project_outline_content h5 {
	font-size: 0.938rem;
	font-weight: bold;
	margin-bottom: 0.3em;
}
.project_outline_content h6 {
	color: #666;
	font-size: 0.938rem;
	font-weight: bold;
	margin-bottom: 0.3em;
}
.project_outline p {
    font-size: 1rem;
    line-height: 1.5em;
	margin: 0 1em 1.5em 1em;
}
.project_outline ul {
	list-style: disc;
	line-height: 1.5em;
	padding-left: 2em;
    margin-bottom: 1em;
}
.project_outline ol {
	list-style: decimal;
	padding-left: 2em;
	line-height: 1.7em;
    margin-bottom: 1em;
}
.project_outline ul li,
.project_outline ul li {
	margin-bottom: 0.4em;
}

.project_url {
    margin: 2em 0 1em 0;
}
.project_url a {
    font-size: 0.9rem;
    text-decoration: none;
    color: #fff!important;
    background-color: #293E73;
    padding: 0.5em 1em;
    border-radius: 4px;
    box-shadow: 0px 3px 0px rgba(220, 220, 220, 1);
}
.project_url a:hover {
    background-color: #44598D;
}

.bus_post_category {
    display: flex;
    align-items: center;
}
.bus_post_category dt {
    font-size: 0.8rem;
    background-color: #f2f2f2;
    padding: 0.2em 1em;
    margin-right: 1.5em;
}
.bus_post_category dd {
    font-size: 0.9rem;
}
@media screen and (max-width: 768px) {
	.project_bus_item {
		display: block;
		width: 90%;
		margin: 0 auto 24px auto;
	}
	.project_thumb {
		position: relative;
		width: 100%;
	}
	.project_outline {
		width: 100%;
	}
}

/* ************************************************** 

		トピックス
		  
************************************************** */
.topix_list_area {
    margin-bottom: 80px;
    border-top: 1px solid #dedede;
}
.topix_item {
    padding: 1em;
    border-bottom: 1px solid #dedede;
}
.topix_icon a {
    color: #fff;
    font-size: 0.75rem;
    padding: 0.3em 0.5em;
    text-decoration: none;
}
.topix_postdata {
    display: flex;
    align-items: center;
	margin-top: 0.5em;
}
.topix_date {
    font-size: 0.95rem;
	width: 12em;
}
.topix_title {
    font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
	.topix_postdata {
		display: block;
	}
	.topix_date {
		/*margin-right: 0;*/
	}
}

/* ********** コントロール部分 ********** */
.topix_control_area {
	display: flex;
	justify-content: space-between;
	background-color: #e8eff0;
	padding: 15px 0px;
	border-radius: 8px;
}
.topix_ctrl_archive_area {
	width: 25%;
	text-align: center;
	border-right: 1px solid #999;
}
.topix_ctrl_cat_area {
	width: 65%;
	margin: 0px auto;
}
.topix_archive_title {
	margin-bottom: 8px;
}
.topix_category_title {	
	margin-bottom: 8px;
}
.topix_cal_list {
	display: flex;
	flex-wrap: wrap;
}
.topix_cal_list li {
	margin-right: 1em;
}
.topix_cal_list li a {
	font-size: 0.85rem;
	text-decoration: none;
	background-color: #fff;
	padding: 0.4em 0.8em;
	text-align: center;
	border: 1px solid #555;
	border-radius: 6px;
}
.topix_cal_list li a:hover {
	color: #fff;
	background-color: #2b2b2b;
}
@media screen and (max-width: 768px) {
.topix_box {
	flex-direction: column;
}
.topix_thumbnail_box {
	width: auto;
}
.topix_thumbnail {
	width: 150px;
	height: 150px;
	margin: 0px auto 20px auto;
}
.topix_thumbnail img {
	width: 100%;
	height: 100%!important;
}	
.topix_content {
	width: auto;
}
.topix_control_area {
	flex-direction: column;
	padding: 10px;
}
.topix_ctrl_archive_area {
	width:  100%;
	margin: 0px auto 20px auto;
	border: none;
}
.topix_ctrl_cat_area {
	width: 100%;
}
.topix_archive_title {
	width: 100%;
	margin-bottom: 10px;
	border-bottom: 1px solid #777;
}
.topix_category_title {	
	text-align: center;
	margin-bottom: 10px;
	border-bottom: 1px solid #777;
}	
}



/* ************************************************** 

		ページャー
		  
************************************************** */
.page-numbers {
    display: flex;
	margin-top: 24px;
}
.page-numbers li a {
    color:#0b1734;
    padding:4px 10px;
    margin: 0px 4px;
    border:1px solid #293E73;
    border-radius:3px;
}
.page-numbers li a {
    text-decoration: none;
}
.current{
    color:#fff;
    background-color:#293E73;
    padding:4px 10px;
    margin: 0px 4px;
    border:1px solid #293E73;
    border-radius:3px;
}
.page-numbers.next,
.page-numbers.prev{
    color: #fff;
    background-color: #7485B1;
}


