@charset "utf-8";

/**
	Theme Name: wadaka
	Theme URI: 
	Description: 
	Author URI: 
	Template:
	Version: 1.0.0
*/


@media screen and (max-width: 768px) {
	.sp-none {
		display: none !important;
	}

	.pc-none {
		display: block !important;
	}
}

@media screen and (min-width: 769px) {

	.sp-none {
		display: block !important;
	}

	.pc-none {
		display: none !important;
	}

}

a {
	-webkit-transition: 280ms ease-in-out;
	transition: 280ms ease-in-out;
}

a:hover {
	opacity: .7;
}


@-webkit-keyframes blink {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes blink {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes blink {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/* ブログ記事の引用をレスポンシブにする*/
@media screen and (max-width: 768px) {
	iframe.wp-embedded-content {
		width: 100%
	}
}


body {
	font: 14px "FOT-筑紫明朝 Pr6 RB", "TsukuMinPr6-RB", "Yu Mincho", "YuMincho", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	background: #FFF;
	margin: 0;
	padding: 0;
	color: #333333;
}

/* ~~ エレメント / タグセレクター ~~ */
ul,
ol,
dl {
	/* ブラウザー間の相違により、リストの余白とマージンをゼロにすることをお勧めします。一貫性を保つために、量をここで指定するか、リストに含まれるリスト項目 (LI、DT、DD) で指定できます。より詳細なセレクターを記述しない限り、ここで指定する内容が .nav リストにも適用されることに注意してください。 */
	padding: 0;
	margin: 0;
	list-style: none;

}

h1,
h2,
h3,
h4,
h5 {
	font-weight: normal;
}



a img {
	/* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
	border: none;
}



/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
	color: #333333;
	text-decoration: none;
	/* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

a:visited {
	color: #333333;
	text-decoration: underline;
}

a:hover,
a:active,
a:focus {
	/* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
	text-decoration: none;
	opacity: 0.8;
}

.wrapper {
	/*background:url(images/bgimg_500.jpg) repeat;*/
}

.container {
	width: 1040px;
	margin: 0 auto 100px;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.container {
		width: 100%;
		margin: 0 auto 20px;
		padding: 0 20px;
	}
}

.clear {
	clear: both;
}




@media screen and (max-width: 768px) {
	#sp_header {
		background-color: #ffffff;
		width: 100%;
		height: 100px;
		padding: 10px;
	}


	#sp_header .logo {
		width: 100px;
		margin: 0 auto;
	}

	#sp_header img {
		width: 100%;
	}
}

/** グローバルナビゲーション（SPパーツ）
********************************************/
.btn-sp {
	display: block;
	width: 43px;
	height: 43px;
	background: transparent;
	border: none;
	user-select: none;
	-webkit-touch-callout: none;
}

.btn-sp .bar {
	display: block;
	height: 2px;
	border: 2px solid #333;
	background-color: #333;
}

.btn-sp .bar:first-child {
	margin-top: 0;
}

.btn-sp .txt {
	position: absolute;
	top: 27px;
	left: 23px;
	display: block;
	line-height: 16px;
	letter-spacing: -1px;
	font-weight: bold;
	font-size: 8px;
	color: #333;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
	body.openbody .overlay {
		z-index: 1;
		display: block;
		width: 100%;
		background: rgba(51, 51, 51, 0.3);
	}

	.overlay {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		display: none;
		width: 0;
		height: 100%;
		margin: auto;
		background: transparent;
		-webkit-transition: 180ms ease-in-out;
		transition: 180ms ease-in-out;
	}

	.sp-navi-wrap {
		position: fixed;
		top: 0;
		left: 100%;
		z-index: 101;
		width: 280px;
		height: 100%;
		background: #fff;
		-webkit-transition: 380ms ease-in-out;
		transition: 380ms ease-in-out;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	.sp-navi-wrap.openbody {
		box-shadow: -3px 0 3px 1px rgba(51, 51, 51, 0.3);
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	.sp-navi-wrap .btn-sp {
		position: absolute;
		top: 15px;
		right: 101%;
		z-index: 999;
		cursor: pointer;
		outline: 0;
		-webkit-transition: 280ms ease-in-out;
		transition: 280ms ease-in-out;
	}

	.sp-navi-wrap .btn-sp.open {
		right: 101%;
		/*right: 2%;*/
	}

	.sp-navi-wrap .btn-sp:before {
		content: "";
		position: absolute;
		top: 0px;
		left: 0;
		width: 45px;
		height: 45px;
		border-radius: 5px;
		background-color: transparent;
	}

	.sp-navi-wrap .btn-sp .bar {
		position: absolute;
		width: 70%;
		left: 0;
		top: 10px;
		right: 0;
		margin: auto;
		-webkit-transform-origin: center;
		-ms-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate(1800deg) translateX(0) translateY(0);
		-ms-transform: rotate(1800deg) translateX(0) translateY(0);
		transform: rotate(1800deg) translateX(0) translateY(0);
		-webkit-transition: 280ms ease-in-out;
		transition: 280ms ease-in-out;
	}

	.sp-navi-wrap .btn-sp .bar:nth-child(1) {
		-webkit-transform: translateY(-9px);
		-ms-transform: translateY(-9px);
		transform: translateY(-9px);
	}

	.sp-navi-wrap .btn-sp .bar:nth-child(3) {
		-webkit-transform: translateY(9px);
		-ms-transform: translateY(9px);
		transform: translateY(9px);
	}

	.sp-navi-wrap .btn-sp .bar:nth-child(3):before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 100%;
		opacity: 0;
		background: rgb(78, 78, 78);
		border-radius: 80%/30px;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: 280ms ease-in-out;
		transition: 280ms ease-in-out;
	}

	.sp-navi-wrap .btn-sp .txt:before {
		-webkit-transition: 280ms ease-in-out;
		transition: 280ms ease-in-out;
	}

	.sp-navi-wrap .btn-sp.open .bar {
		background: rgb(78, 78, 78);
	}

	.sp-navi-wrap .btn-sp.open .bar:nth-child(1) {
		-webkit-transform: rotate(-45deg) translateX(0) translateY(0);
		-ms-transform: rotate(-45deg) translateX(0) translateY(0);
		transform: rotate(-45deg) translateX(0) translateY(0);
	}

	.sp-navi-wrap .btn-sp.open .bar:nth-child(2) {
		opacity: 0;
	}

	.sp-navi-wrap .btn-sp.open .bar:nth-child(3) {
		-webkit-transform: rotate(45deg) translateX(0) translateY(0);
		-ms-transform: rotate(45deg) translateX(0) translateY(0);
		transform: rotate(45deg) translateX(0) translateY(0);
	}

	.sp-navi-wrap .btn-sp.open .bar:nth-child(3):before {
		opacity: 1;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}

	.sp-navi-wrap .btn-sp.open .txt {}

	.sp-navi-wrap .btn-sp.open .txt:before {
		content: "";
		color: #383D53;
	}

	.sp-navi-wrap .sp-navi {
		height: 100%;
		background-color: #fff;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}

	.sp-navi-wrap #sp_gnavi {
		margin-top: 0;
		background-color: #fff;
		color: #333;
	}

	#sp_gnavi li a span {
		display: inline-block;
		margin-right: 10px;
	}

	#sp_gnavi>li {
		margin-top: 0;
		border-bottom: 1px solid #333;
	}

	#sp_gnavi>li.snavi1 img {
		width: 120px;
	}

	#sp_gnavi>li a {
		display: block;
		padding: 15px 20px;
		letter-spacing: 1px;
		font-size: 16px;
		color: #333;
		text-decoration: none;
	}

	#sp_gnavi>li:before {
		content: "";
		padding-right: 0;
	}

	#sp_gnavi>li>a {
		position: relative;
	}

	#sp_gnavi>li>a i {
		position: absolute;
		right: 15px;
		top: 10px;
		font-size: 30px;
		color: #333;
	}

	#sp_gnavi>li>a i.fa-plus-circle {
		top: 15px;
		font-size: 22px;
	}

	#sp_gnavi>li>ul {
		padding-left: 0;
	}

	#sp_gnavi>li>ul>li {
		border-top: 1px solid #333;
		line-height: 1.4em;
		font-size: 16px;
	}

	#sp_gnavi>li>ul>li:first-child {
		border-top: none;
	}

	#sp_gnavi>li>ul>li a {
		position: relative;
		background-color: #fff;
		color: #333;
	}

	#sp_gnavi>li>ul>li>a i {
		position: absolute;
		right: 15px;
		top: 10px;
		font-size: 30px;
		color: #333;
	}

	#sp_gnavi>li>ul>li:before {
		content: "";
		margin-top: 0;
		padding-right: 0;
	}
}



/* ヘッダー
-----------------------------------------------------------------------------*/


#headercontainer {
	height: auto;
	border-bottom: solid #71604B 1px !important;
	overflow: hidden;
}

#top #headercontainer {
	border-bottom: none;
}



header#header {
	margin: 0 auto;
	min-width: 1040px;
	max-width: 1040px;

}

.sns_menu {
	float: right;
}

.sns_menu li {
	display: inline-block;
	margin-right: 20px;
}

.sns_menu li a {
	font-size: 30px;
}

.sub_menu {
	position: relative;
	top: 20px;
}


.sub_menu ul li {
	float: right;
	display: inline-block;
	width: 120px;
}

.sub_menu ul li a {
	font-size: 11px;
}

.sub_menu ul li img {
	width: 12px;
}

header#header .logo {
	clear: both;
	margin: 0 auto;
	width: 120px;
}


.mainmenu {
	width: 1040px;
	padding: 0;
}


.gnavi {
	width: 880px;
	margin: 20px auto 0;
}

.gnavi li {
	display: inline-block;
	margin-left: 50px;
	list-style-type: none;

}

.gnavi li a {
	margin: 0;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	color: #333333;
	width: 180px;
	line-height: 45px;
}

.gnavi li .current {
	color: #71604B;
	opacity: 1;

}

.gnavi li a:hover {
	color: #71604B;
	opacity: 1;
}



@media screen and (max-width: 768px) {


	#headercontainer {
		height: auto;
		padding: 0;
		border: none;
	}

	header#header {
		min-width: 100%;
		max-width: 100%;
	}

	header#header .logo {
		position: relative;
		top: -50px;
	}

	.sns_menu {
		float: left;
		margin-top: 8px;
		margin-left: 20px;
	}

}


/* クローンナビ

-----------------------------------------------------------------------------*/

#clone-nav_container {
	width: 100%;
	height: auto;
	background: #f5f5f0;
	opacity: 0.95;
}


.navbar-fixed-top {
	position: fixed;
	top: 0;
	left: 0;
	animation: translate 1s;
	/* アニメーション */
	animation-iteration-count: 1;
	-webkit-animation: translate 1s;
	/* Safari & Chrome */
	-webkit-animation-iteration-count: 1;
}

@keyframes translate {
	0% {
		transform: translate(0px, -50px);
	}

	100% {
		transform: translate(0px, 0px);
	}
}

@-webkit-keyframes translate {
	0% {
		-webkit-transform: translate(0px, -50px);
	}

	100% {
		-webkit-transform: translate(0px, 0px);
	}
}

.clone-nav {
	margin: 0px auto;
	min-width: 1040px;
	max-width: 1040px;
	height: 40px;
}

.clone-nav .cnav {
	margin: 0 auto;

}

.clone-nav .cnav li {
	float: left;
	list-style-type: none;
	display: block;
	width: 150px;
	padding: 0;
	height: 30px;
	color: #378531;
	font-size: 14px;
	line-height: 24px;
	margin: 0;
	text-align: center;
	text-decoration: none;
	position: relative;
	top: 10px;
}

.clone-nav .cnav .menulogo {
	width: 60px;
	margin-right: 50px;
}

.clone-nav .cnav .menulogo img {
	width: 60px;
	position: absolute;
	top: -16px;
	left: 20px;
}


/* スライダー（トップページ）
-----------------------------------------------------------------------------*/

.slider {
	width: 100%;
	margin: 0 auto 20px;
}

.slider img {
	width: 100%;
}


@media screen and (max-width: 768px) {
	.slider {
		width: 100%;
		margin: 0 auto;
	}

	.slider img {
		width: 100%;
	}
}

/* SPメニュー
-----------------------------------------------------------------------------*/

@media screen and (max-width: 768px) {
	.sp-menu {
		width: 100%;
		margin: 0 auto;
		background-color: #71604B;
		overflow: hidden;
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;

	}


	.sp-menu .sp-gnavi li a {
		float: left;
		display: inline-block;
		margin: 0;
		padding: 0 0 0 0;
		text-align: center;
		text-decoration: none;
		font-size: 14px;
		font-weight: bold;
		color: #fff;
		background-color: #71604B;
		width: 33%;
		height: 60px;
		line-height: 60px;
	}

	.sp-menu .sp-gnavi .menu1 a,
	.sp-menu .sp-gnavi .menu2 a {
		border-right: 1px solid #fff;
	}

}


.nyc_ban_pc {
	width: 1040px;
	margin: 20px auto;
}

.nyc_ban_sp {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.nyc_ban_pc img,
.nyc_ban_sp img {
	width: 100%;
}


/* バナーメニュー（トップページ）
-----------------------------------------------------------------------------*/

#top #ban_nav {
	width: 1040px;
	margin: 0 auto;
}


#top #ban_nav h2 .en {
	font-size: 8px;
	color: #71604B;
	display: block;
}

#top #ban_nav h2 {
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
	line-height: 24px;
	font-weight: normal;
}

#top #ban_nav ul {
	display: flex;
	justify-content: space-between;
}

#top #ban_nav ul li {
	width: 340px;
}


@media screen and (max-width: 768px) {

	#top #ban_nav {
		width: 100%;
	}

	#top #ban_nav ul {
		display: flex;
		flex-flow: column nowrap;
	}

	#top #ban_nav ul li {
		width: 100%;
		margin-bottom: 10px;
		padding: 0 20px;
	}

	#top #ban_nav ul li img {
		width: 100%;
	}
}



/* お知らせ（トップページ）
-----------------------------------------------------------------------------*/

#top #news {
	clear: both;
	background-image: url(assets/images/top/newsbg.png);
	overflow: hidden;
	margin: 20px auto;
	padding: 40px 0 40px;
}



#top #news .title_blk h2 {
	width: 40px;
	position: relative;
	left: 65px;
	top: -10px;
}



#top #news .news_container {
	margin: 0 auto;
	padding: 0;
	width: 1040px;
}

#top #news .title_blk {
	float: left;
	width: 180px;
	margin-right: 40px;
}

#top #news .title_blk p {
	font-size: 24px;
	line-height: 135px;
}


#top #news .row {
	width: 800px;
	float: left;
}


#top #news .row .list {
	margin: 0 0 0 20px;
}

#top #news .row .list:after {
	content: "";
	clear: both;
	display: block;
}

#top #news .row .list .date {
	font-size: 11px;
	line-height: 24px;
	float: left;
	margin-right: 2%;
	width: 15%;
}

#top #news .row .list .title {
	float: left;
	width: 80%;
}

#top #news .row .list .title a {
	color: #333;
	text-decoration: underline;
}

#top #news .row .list .title span {
	margin-left: 10px;
	padding: 3px 8px;
	text-align: center;
	background-color: #71604B;
	font-size: 11px;
	color: #fff;
}


.more_btn a {
	color: #71604B;
	background-color: #ffffff;
	display: block;
	border: 1px solid #71604B;
	text-align: center;
	float: right;
	padding: 6px 60px;
	position: relative;
	bottom: -20px;
}


.more_btn a:hover {
	color: #ffffff;
	background-color: #71604B;
}




@media screen and (max-width: 768px) {

	#top #news {
		clear: both;
		background-color: #fff;
		height: auto;
		overflow: hidden;
		padding: 0;

	}

	#top #news .news_container {
		margin: 20px auto 10px;
		padding: 10px 0;
		width: auto;
		overflow: hidden;
	}


	#top #news .title_blk_sp {
		float: none;
		text-align: center;
		width: auto;
		margin: 0 0 20px 0;
	}



	#top #news .title_blk p {
		color: #71604B;
		font-size: 18px;
		line-height: 0px;
	}


	#top #news .row {
		width: auto;
		margin-top: 10px;
		float: none;
		border: none;
		overflow: hidden;

	}


	#top #news .row .list .date {
		float: none;
		margin-right: 2%;
		width: auto;
		font-size: 11px;
	}

	#top #news .row .list .title {
		float: none;
		width: auto;
	}

	.more_btn a {
		float: none;
		padding: 5px 20px;
		margin: 20px auto 0;
		position: static;
		top: 0;
		width: 80%;
	}
}

/* 和高醸造について（トップページ）
-----------------------------------------------------------------------------*/
#about_blk {
	width: 100%;
	margin: 0 auto;
}

#about_blk p {
	padding: 20px 0 0 0px;
}

@media screen and (max-width: 768px) {
	#about_blk {
		overflow: hidden;
	}

	#about_blk img {
		width: 100%
	}

	#about_blk p {
		padding: 20px 0 0 0px;
	}
}

/* アクセスマップ（トップページ）
-----------------------------------------------------------------------------*/

#top #access {
	margin: 50px 0 180px;
	overflow: hidden;
}

#top #access h2 {
	width: 40px;
	position: relative;
	left: 65px;
	float: left;
}

#top #access .gmaps {
	float: right;
}

@media screen and (max-width: 768px) {
	#top #access {
		margin: 20px 0 60px;
		overflow: hidden;
	}

	#top #access h2 {
		width: 100%;
		position: static;
		float: none;
	}

	#top #access .gmaps {
		float: none;
		text-align: center;
	}
}



/* SNS（トップページ）
-----------------------------------------------------------------------------*/
#top #sns_blk {
	clear: both;
	max-width: 740px;
	margin: 0 auto;
}

#top #sns_blk .l_blk {
	width: 100%;
	/*float: left;*/
	margin-bottom: 90px;
}

#top #sns_blk .titInsta{
	content: url("assets/images/top/tit_insta.svg");
	margin: 0 auto 33px;
}


#top #sns_blk .r_blk {
	width: 100%;
	/*float: right;*/
}

#top #sns_blk .r_blk ul li {
	margin-bottom: 10px;
}

.store_btn a {
	font-size: 16px;
	width: 500px;
	height: 80px;
	color: #71604B;
	display: block;
	border: 1px solid #71604B;
	text-align: center;
	padding: 15px 60px;
	line-height: 50px;
}

.store_btn a:hover {
	background-color: #71604B;
	color: #ffffff;
}

.insta_btn a {
	font-size: 20px;
	width: 500px;
	height: 80px;
	color: #e4405f;
	display: block;
	border: 1px solid #e4405f;
	text-align: center;
	padding: 15px 60px;
}

.insta_btn.fb a {
	color: #0866ff;
	border: 1px solid #0866ff;
	display: flex;
  justify-content: center;
  align-items: center;
	border-radius: 6px;
}

.insta_btn a:hover {
	background-color: #e4405f;
	color: #ffffff;
}

.insta_btn.fb a:hover {
	color: #ffffff;
	background-color: #0866ff;
}


.insta_btn span {
	position: relative;
	top: 0px;
	left: 5px;
}

.insta_btn i {
	font-size: 50px;
}

.insta_btn.fb i {
	font-size: 17px;
}


@media screen and (max-width: 768px) {
	#top #sns_blk .l_blk {
		width: 100%;
		float: none;
		margin: 0 auto 20px;
		text-align: center;
	}

	#top #sns_blk .r_blk {
		width: 100%;
		float: none;
	}

#top #sns_blk .titInsta{
	margin: 0 auto 25px;
}

	.insta_btn a,
	.store_btn a,
	.photog_btn a {
		width: 100%;
	}

	.photog_btn a img {
		width: 100%;
	}

}


/* ページトップへ戻るボタン
-----------------------------------------------------------------------------*/
#back-top {
	bottom: 180px;
	position: absolute;
	right: 20px;
}

#back-top img {
	position: relative;
	top: 8px;
	padding-bottom: 5px;
}


#back-top a {
	color: #FFF;
	display: block;
	font-size: 8px;
	font-weight: bold;
	line-height: 18px;
	text-align: center;
	text-decoration: none;
	width: 120px;
	height: 50px;
	border-radius: 3px;
	background-color: #71604B;
	margin-bottom: 50px;
	opacity: 0.9;
}


/* フッター
-----------------------------------------------------------------------------*/
footer {
	color: #333333;
	background: #FAFAF5;
	margin: 50px 0 0 0;
	padding: 10px 0 0 0;
	clear: both;
	text-align: center;
	position: relative;
}


footer .inner {
	margin: 30px auto;
}

footer .f_logo {
	width: 120px;
	margin: 0 auto;
}

footer p {
	margin: 10px 0 0 0;
	font-size: 12px;
}

.copyright {
	display: block;
	text-align: center;
	font-size: 8px;
	margin: 0 auto;
	background-color: #000000;
	color: #ffffff;
	padding: 5px 0;
	line-height: 10px;
}

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


	footer .inner {
		width: 100%;
		margin: 10px 0;
	}

	footer .inner .banner {
		width: 100%;
		text-align: center;
	}

	.copyright {
		width: 100%;
		line-height: 5px;
		padding: 5px 0;
		vertical-align: middle;
	}
}

/** 下層ページ
********************************************/

.cover {
	width: 100%;
}

h2 .en {
	font-size: 10px;
	color: #71604B;
	display: block;
}

h2 {
	font-size: 24px;
	text-align: center;
	margin: 20px 0;
	line-height: 24px;
	font-weight: normal;
}

.l-photo_blk {
	margin: 100px 0;
	display: flex;
	flex-direction: row;
}

.r-photo_blk {
	margin: 100px 0;
	display: flex;
	flex-direction: row-reverse;
}

.l-photo_blk .img_blk,
.r-photo_blk .img_blk {
	width: 520px;
}

.l-photo_blk .text_blk,
.r-photo_blk .text_blk {
	width: 520px;
	padding: 0px 0 0 40px;
}

.text_blk h3 {
	font-size: 24px;
	color: #71604B;
	line-height: 34px;
	font-weight: normal;
}

.text_blk p {
	margin-top: 20px;
}

.items h3,
.dealer h3 {
	font-size: 24px;
	font-weight: normal;
	display: block;
	border-bottom: 4px solid #C5BB9A;
	width: 120px;
	text-align: center;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {

	.cover {
		display: none;
	}

	.l-photo_blk,
	.r-photo_blk {
		width: 100%;
		margin: 2px 0;
		display: flex;
		flex-direction: column;
	}

	.l-photo_blk .img_blk,
	.r-photo_blk .img_blk {
		width: 100%;
	}

	.l-photo_blk .img_blk img,
	.r-photo_blk .img_blk img {
		width: 100%;
	}

	.l-photo_blk .text_blk,
	.r-photo_blk .text_blk {
		width: 100%;
		padding: 0;
		margin: 30px 0;
	}

	.text_blk h3 {
		font-size: 24px;
		color: #71604B;
		line-height: 40px;
		font-weight: normal;
	}

	.text_blk p {
		margin-top: 20px;
	}
}

/** 下層ページ（背景画像）
********************************************/
#about .wrapper {
	background-image: url(assets/images/about/aboutbg01.jpg), url(assets/images/about/aboutbg02.jpg);
	background-repeat: no-repeat, no-repeat;
	background-position: 1000px 800px, 0px 2000px;
}


#miso .wrapper {
	background-image: url(assets/images/miso/misobg01.jpg);
	background-repeat: no-repeat;
	background-position: 800px 1450px;
}


#amazake .wrapper {
	background-image: url(assets/images/amazake/amazakebg01.jpg);
	background-repeat: no-repeat;
	background-position: 0px 1000px;

}


#ubsauce .wrapper {
	background-image: url(assets/images/ubsauce/ubsbg01.jpg);
	background-repeat: no-repeat;
	background-position: 0px 1500px;

}


@media screen and (max-width: 768px) {

	#about .wrapper,
	#miso .wrapper,
	#amazake .wrapper,
	#ubsauce .wrapper {
		background-image: none;

	}
}

/** 下層ページ（商品一覧　みそ・醤油）
********************************************/
.item_box_container {
	margin: 20px 0 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}


.item_box {
	width: 230px;
	margin: 40px 40px 0 0;
}



.item_box:nth-child(4n) {
	margin-right: 0;
}

.item_box img {
	width: 230px;

}

.item_box .name {
	margin-top: 10px;
	font-size: 15px;
}

.item_box .price {
	font-size: 15px;
	color: #71604B;
}

@media screen and (max-width: 768px) {

	.items {
		width: 100%;
		margin: 0;
	}

	.item_box_container {
		width: 100%;
		justify-content: space-between;
	}

	.item_box {
		width: 48%;
		margin: 10px 0;
	}

	.item_box img {
		width: 100%;
	}

	.item_box .name {
		line-height: 20px;
	}
}

/** 下層ページ（商品一覧　甘酒・アップビートソース）
********************************************/
.item_blk_container {
	margin: 40px 0 0 0;
}

.item_blk {
	clear: both;
	overflow: hidden;
	margin-bottom: 25px;
}

.item_blk .img_blk {
	float: left;
	margin-right: 40px;
}

.item_blk .img_blk img {
	width: 320px;
}

.item_blk .txt_blk {
	width: 680px;
	float: right;
}

.item_blk .txt_blk .name {
	font-size: 20px;
}

.item_blk .txt_blk .price {
	font-size: 18px;
	color: #71604B;
	margin: 0 0 20px;
}

.item_blk .txt_blk .data {
	margin: 20px 0;
}

.item_blk .txt_blk .name .newtag {
	font-size: 16px;
	color: #ffffff;
	padding: 1px 5px;
	background-color: #ff0000;
	margin-left: 10px;
	border-radius: 2px;
}

@media screen and (max-width: 768px) {
	.item_blk_container {
		width: 100%;
	}

	.item_blk .img_blk {
		float: none;
		margin-right: 0;
	}

	.item_blk .img_blk img {
		width: 100%;
	}

	.item_blk .txt_blk {
		width: 100%;
		float: none;
	}

	.item_blk .txt_blk .name {
		line-height: 30px;
		margin-top: 20px;
	}

	.item_blk .txt_blk .price {
		font-size: 18px;
		margin: 10px 0;
	}

	.item_blk .txt_blk .data {
		margin: 10px 0;
	}

}

/** 下層ページ（取扱店）
********************************************/

.dealer {
	margin-top: 50px;
}

.dealer .dealer__txt {
	text-align: center;
	margin-top: 20px;
}


.dealer_list {
	margin: 40px auto 0;
	width: 1040px;
	border-top: 1px solid #eeeeee
}

.dealer_list tr {
	border-bottom: 1px solid #eeeeee;
}

.dealer_list th {
	text-align: left;
	padding: 3px 0;
}

.dealer_list .siteurl a {
	color: #008CC7;
	font-size: 11px;
}

.dealer_list .siteurl a i {
	color: #cccccc;
}

.dealer .dealer__txt {
	text-align: center;
}


.store_link a {
	width: 500px;
	height: 70px;
	color: #71604B;
	display: block;
	border: 1px solid #71604B;
	text-align: center;
	padding: 15px 60px;
	margin: 40px auto 0;
	line-height: 40px;
}

.store_link a:hover {
	background-color: #71604B;
	color: #ffffff;
}

@media screen and (max-width: 768px) {

	.dealer {
		width: 100%;
	}

	.dealer .dealer__txt {
		text-align: left;
	}


	.dealer_list {
		width: 100%;
	}

	.dealer_list th,
	.dealer_list td {
		display: block;
		width: 100%;
	}

	.dealer_list th {
		padding: 10px 0 0 0;
	}

	.dealer_list td.siteurl a {
		float: right;
	}

	.store_link a {
		width: 100%;
		padding: 15px 60px;
		margin: 40px auto 0;
		line-height: 40px;
	}

	.store_link a:hover {
		background-color: #71604B;
		color: #ffffff;
	}
}


/** 下層ページ（NOVOL）
********************************************/
.novol_blk {
	margin: 20px 0 0 0;
}

.novol_blk img {
	float: left;
}

.nobol_blk .above {
	overflow: hidden;
}

.novol_blk .profile {
	padding-top: 5px;
	padding-left: 120px;
	height: 100px;

}

.novol_blk .profile .name {
	font-size: 24px;
}

.novol_blk .profile p {
	line-height: 20px;
}

.novol_blk .works {
	line-height: 24px;
}

@media screen and (max-width: 768px) {
	.novol_blk .profile {
		height: auto;
	}

	.novol_blk {
		border-top: #cccccc solid 1px;
		border-bottom: #cccccc solid 1px;
		padding: 10px 0;
	}
}

/** アップビートソース購入特典
********************************************/
.sec-gifts__wrapper {
	overflow: hidden;
}

.sec-gifts {
	display: flex;
	align-items: center;
	margin: 0 0 100px 0;
	padding: 0;
	background-color: #efefef;
}

.sec-gifts__img-box {}

.sec-gifts__img-box img {
	height: 300px;
	object-fit: cover;
}


.sec-gifts__txt-box {
	padding: 30px;
}

.sec-gifts__title {
	text-align: center;
	font-size: 26px;
	color: #71604B;
	margin-bottom: 10px;
}

.sec-gifts__title::after {
	content: "";
	width: 52px;
	height: 1px;
	background-color: #71604B;
	text-align: center;
	display: block;
	margin: 15px auto 30px;
}


.sec-gifts__txt {}

.sec--gifts__more-btn {}



.sec--gifts__more-btn a {
	color: #71604B;
	background-color: #ffffff;
	display: block;
	border: 1px solid #71604B;
	text-align: center;
	padding: 6px 60px;
	width: 50%;
	margin: 35px auto 0;
}

@media screen and (max-width: 768px) {
	.sec-gifts {
		flex-direction: column;
		margin: 0 0 50px 0;
		padding: 0;
	}

	.sec--gifts__more-btn a {
		width: 100%;
	}
}


/** 下層ページ（レシピ集）
********************************************/
#recipe #tab {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

#recipe #tab li {
	margin-right: 30px;
}

#recipe #tab li a {
	border: 1px solid #7e6f5c;
	color: #7e6f5c;
	background-color: #ffffff;
	padding: 10px 20px;
}

#recipe #tab li.present a {
	color: #ffffff;
	background-color: #7e6f5c;
}

#recipe h3.amazake,
#recipe h3.ubsauce {
	font-size: 24px;
	font-weight: normal;
	display: block;
	border-bottom: 4px solid #C5BB9A;
	width: 200px;
	text-align: center;
	margin: 50px auto;
}

#recipe h3.ubsauce {
	width: 380px;
}

#recipe h4 {
	margin-top: 0;
	font-size: 24px;
	color: #71604B;
}

#recipe h5 {
	font-size: 16px;
	font-weight: bold;
	margin-top: 10px;
}

#recipe h6 {
	font-size: 14px;
	font-weight: bold;
	margin-top: 10px;
}

#recipe .recipe_blk {
	display: flex;
	flex-direction: row;
	margin-bottom: 40px;
}

#recipe .recipe_blk .img_blk {
	width: 320px;
}

#recipe .recipe_blk .img_blk img {
	width: 320px;
}


#recipe .recipe_blk .text_blk {
	width: 680px;
	margin-left: 40px;
}

#recipe .recipe_blk ul li {
	list-style: none;
}


#recipe .recipe_blk .note {
	margin-top: 0;
	font-size: 12px;
}

#recipe .recipe_blk .message {
	margin-top: 0;
	font-size: 12px;
	color: #71604B;
}


@media screen and (max-width: 768px) {
	#recipe #tab li {
		margin-right: 10px;
	}

	#recipe #tab li a {
		padding: 10px 10px;
	}


	#recipe .recipe_blk {
		display: flex;
		flex-direction: column;
		margin-bottom: 40px;
	}

	#recipe .recipe_blk .img_blk {
		width: 100%;
	}

	#recipe .recipe_blk .img_blk img {
		width: 100%;
	}

	#recipe .recipe_blk .text_blk {
		width: 100%;
		margin-left: 0;
	}

	#recipe h3.amazake,
	#recipe h3.ubsauce {
		font-size: 20px;
		width: 100%;
		margin: 20px auto;
	}

	#recipe h4 {
		margin-top: 20px;
		font-size: 18px;
		line-height: 30px;
	}
}


/** 会社概要
********************************************/

.company_data {
	margin: 40px auto 0;
	width: 1040px;
}



.company_data tr {
	border-top: 1px solid #eeeeee;
}

.company_data th {
	text-align: left;
	padding: 10px 0;
}

.map {
	margin-top: 20px;
}



@media screen and (max-width: 768px) {

	.company_data {
		width: 100%;
	}

	.company_data tr,
	.company_data th {
		display: block;
		width: 100%;
	}

	.company_data th {
		padding: 3px 0;
		width: 100%;
	}

	.company_data th {
		padding: 0;
		margin: 2px 0 0 0;
	}

	.company_data td {
		padding: 0;
		margin: 0;
	}
}

/** フォトギャラリー
********************************************/

#gallery p {
	text-align: center;
	margin-bottom: 30px;
}



.gallery {
	/** ギャラリーを囲むボックス **/
	width: 100%;
	margin-bottom: 20px !important;
	overflow: hidden;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.gallery br {
	display: none;
}

/** 自動で挿入される clearfix の余白解除 **/

.gallery-item {
	/** 画像共通のスタイル **/
	float: left;
	margin-bottom: 0 !important;
}

.gallery-icon {
	/** 画像を囲む dt のスタイル **/
	text-align: center;
}

.gallery-icon img {
	width: 100%;
	height: auto;
	margin-bottom: 10px !important;
}

.gallery-caption {
	/** キャプション **/
	color: #222;
	font-size: 12px;
	margin: 0 0 10px;
	text-align: center;
}

.gallery-columns-1 .gallery-item {
	/** カラムなし **/
	width: 100%;
	margin-right: 0;
}

.gallery-columns-2 .gallery-item {
	/** 2カラム **/
	width: 48%;
	margin: 0 1%;
}

.gallery-columns-3 .gallery-item {
	/** 3カラム **/
	width: 31.33333%;
	margin: 0 1%;
}

.gallery-columns-4 .gallery-item {
	/** 4カラム **/
	width: 23%;
	margin: 0 1%;
}

.gallery-columns-5 .gallery-item {
	/** 5カラム **/
	width: 18%;
	margin: 0 1%;
}


@media screen and (max-width: 768px) {

	/* 640px以下用の記述 */
	.gallery-columns-3 .gallery-item,
	.gallery-columns-4 .gallery-item {
		width: 48%;
		margin: 0 1%;
	}

	.gallery-columns-5 .gallery-item {
		width: 31.33333%;
		margin: 0 1%;
	}
}

/** お知らせ
********************************************/


#NEWS .post {
	min-height: 500px
}

/** お問い合わせ
********************************************/
#CONTACT .announce {
	text-align: center;
}

#CONTACT h3 {
	background-color: #71604B;
	font-size: 18px;
	color: #ffffff;
	padding: 10px;
	margin-top: 30px;
}


#CONTACT .free {
	color: #71604B;
	font-size: 12px;
	font-weight: bold;
	margin-top: 10px;
}

#CONTACT .telnum {
	margin-top: 20px;
}

#CONTACT table {
	margin-top: 20px;
	width: 100%;
}

#CONTACT table th {
	padding: 30px 5px;
	width: 20%;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px dotted #ccc;
}

#CONTACT table tr.adder1 th {
	padding: 30px 5px 0;
}

#CONTACT table tr.adder2 th,
#CONTACT table tr.adder3 th {
	padding: 20px 5px 0;
	border-top: none;
}

#CONTACT table tr.adder4 th {
	padding: 20px 5px 30px;
	border-top: none;
}

#CONTACT table th span {
	display: block;
	font-size: 10px;
	color: #f00;
}

#CONTACT table td {
	padding: 30px 5px;
	width: 80%;
	border-bottom: 1px dotted #ccc;
}

#CONTACT table tr.adder1 td {
	padding: 30px 5px 0;
}

#CONTACT table tr.adder2 td,
#CONTACT table tr.adder3 td {
	padding: 20px 5px 0;
	border-top: none;
}

#CONTACT table tr.adder4 td {
	padding: 20px 5px 30px;
	border-top: none;
}

#CONTACT table td input[type="text"],
#CONTACT table td input[type="email"] {
	padding: 5px 10px;
	border: 1px solid #666;
}

#CONTACT table td input.name1,
#CONTACT table td input.kana1 {
	margin-right: 20px;
}

#CONTACT table td input.name1,
#CONTACT table td input.name2,
#CONTACT table td input.kana1,
#CONTACT table td input.kana2 {
	width: 180px;
}

#CONTACT table td input.post1 {
	width: 80px;
}

#CONTACT table td input.post2 {
	width: 100px;
}

#CONTACT table td input.pref {
	width: 148px;
}

#CONTACT table td input.address1,
#CONTACT table td input.address2 {
	width: 457px;
}

#CONTACT table td input.tel1,
#CONTACT table td input.tel2,
#CONTACT table td input.tel3 {
	width: 70px;
}

#CONTACT table td input.company,
#CONTACT table td input.mail_address {
	width: 500px;
}

#CONTACT table td select,
#CONTACT table td option {
	padding: 5px 10px;
	border-radius: 1px !important;
	border: 1px solid #666;
}

#CONTACT table td textarea {
	padding: 5px 10px;
	width: 620px;
	height: 300px;
	border: 1px solid #666;
}

#policy_blk {
	overflow-y: scroll;
	margin-top: 80px;
	padding: 25px 20px;
	width: 100%;
	height: 177px;
	border: 1px solid #999;
}

#policy_blk .in_midashi {
	margin-top: 0;
	font-weight: bold;
	font-size: 24px;
	color: #71604B;

}

#policy_blk .in_title {
	margin-top: 15px;
	font-weight: bold;
	font-size: 18px;
	color: #71604B;
}

#policy_blk .in_text {
	margin-top: 5px;
}

#policy_blk ol {
	padding-left: 20px;
}

#policy_blk .privacy-contact {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #999;

}

#policy_blk .privacy-contact .desk {
	font-size: 16px;
	font-weight: bold;
	color: #71604B;
}

#CONTACT .send_btn {
	margin-top: 70px;
	text-align: center;
}

#CONTACT .send_btn input {
	display: inline-block;
	margin: 10px 10px 0;
	padding: 13px 0;
	width: 450px;
	text-align: center;
	background-color: #71604B;
	border-radius: 4px;
	border: none;
	font-size: 24px;
	color: #fff;
	cursor: pointer;
}

#CONTACT .send_btn br {
	display: none;
}

.mw_wp_form .error {
	color: #f00;
}

@media screen and (max-width: 768px) {
	#CONTACT h3 {
		margin-top: 10px;
	}


	#CONTACT .telnum {
		margin-top: 10px;
		width: 100%;
	}

	#CONTACT table {
		display: block;
		margin-top: 20px;
		width: 100%;
	}

	#CONTACT table tbody,
	#CONTACT table tr {
		display: block;
		width: 100%;
	}

	#CONTACT table th {
		display: block;
		padding: 15px 5px;
		width: 100%;
		border-top: 1px dotted #ccc;
	}

	#CONTACT table tr.adder1 th {
		padding: 15px 5px;
	}

	#CONTACT table tr.adder2 th,
	#CONTACT table tr.adder3 th {
		padding: 15px 5px;
		border-top: 1px dotted #ccc;
	}

	#CONTACT table tr.adder4 th {
		padding: 15px 5px;
		border-top: 1px dotted #ccc;
	}

	#CONTACT table th span {
		display: inline-block;
		margin-left: 10px;
		font-size: 10px;
		color: #f00;
	}

	#CONTACT table td {
		display: block;
		padding: 0 5px 15px 5px;
		width: 100%;
		border-top: none;
	}

	#CONTACT table td input[type="text"],
	#CONTACT table td input[type="email"] {
		width: 100%;
	}

	#CONTACT table td input.name1,
	#CONTACT table td input.kana1 {
		margin-right: 10px;
	}

	#CONTACT table td input.name1,
	#CONTACT table td input.name2,
	#CONTACT table td input.kana1,
	#CONTACT table td input.kana2 {
		width: 45%;
	}

	#CONTACT table tr.adder1 td {
		padding: 0 5px 15px 5px;
	}

	#CONTACT table tr.adder2 td,
	#CONTACT table tr.adder3 td {
		padding: 0 5px 15px 5px;
		border-top: none;
	}

	#CONTACT table tr.adder4 td {
		padding: 0 5px 15px 5px;
		border-top: none;
	}

	#CONTACT table td input.post1 {
		width: 40%;
	}

	#CONTACT table td input.post2 {
		width: 45%;
	}

	#CONTACT table td input.post {
		width: 40%;
	}

	#CONTACT table td input.pref {
		width: 50%;
	}

	#CONTACT table td input.address1,
	#CONTACT table td input.address2 {
		width: 100%;
	}

	#CONTACT table td input.tel1,
	#CONTACT table td input.tel2,
	#CONTACT table td input.tel3,
	#CONTACT table td input.tel {
		width: 25%;
	}

	#CONTACT table td input.mail_address {
		width: 100%;
	}

	#CONTACT table td textarea {
		padding: 5px 10px;
		width: 100%;
		height: 200px;
		border: 1px solid #666;
	}

	#CONTACT #policy {
		margin-top: 30px;
		padding: 15px 10px;
		width: 100%;
		border: 1px solid #999;
	}

	#CONTACT #policy .midashi {
		margin-top: 0;
		font-weight: bold;
		font-size: 18px;
	}

	#CONTACT #policy .title {
		margin-top: 10px;
		font-weight: bold;
		font-size: 14px;
	}

	#CONTACT #policy .text {
		margin-top: 5px;
	}

	#CONTACT .send_btn {
		margin-top: 40px;
		text-align: center;
	}

	#CONTACT .send_btn input {
		display: inline-block;
		padding: 10px 0;
		width: 90%;
		text-align: center;
		background-color: #71604B;
		border-radius: 4px;
		border: none;
		font-size: 18px;
		color: #fff;
	}
}


/**  会社概要
********************************************/


#company table.office {
	width: 100%;
	color: #333333;
	font-size: 14px;
	margin-bottom: 20px;
}

#company table.office tr {
	border-bottom: dotted 1px #d6d6d6;
}

#company table.office tr th.name {
	text-align: left;
	width: 20%;
	font-weight: normal;
	color: #71604B;
}

#company table.office tr td.adress {
	padding: 10px 0;
	width: 40%;
}


#company table.office tr td.tel,
#company table.office tr td.fax {
	width: 15%;
	text-align: right;
}

#company h5 {
	color: #ffffff;
	font-size: 18px;
	background: #71604B;
	margin: 15px 0 10px 0;
	padding: 5px 0 5px 15px;


}

#company h6 {
	font-size: 16px;
	color: #333333;
}

@media screen and (max-width: 768px) {
	#company .map {
		text-align: center;
	}
}

/**  お知らせ個別ページ
********************************************/
.news_box {
	margin: 0 auto;
	width: 780px;
	margin-top: 30px;
	padding: 50px 0;
	min-height: 500px;
}

.news_box h2 {
	text-align: left;
	font-size: 18px;
}

.news_box .socialbuttons {
	margin-top: 100px;
}



.news_box .imgBox {
	display: flex;
	justify-content: center;
	margin: 15px 0;
	gap: 20px;
}

.news_box .imgBox img {
	max-width: 100%;
	height: auto;
	width: 50%;
}



@media screen and (max-width: 768px) {
	.news_box {
		padding: 0 20px;
		width: 100%;
		min-height: 300px;

	}

	.news_box .imgBox {
		flex-wrap: wrap;
	}

	.news_box .imgBox img {
		width: 100%;
	}
}

/**  お知らせ一覧ページ
********************************************/
#NEWSLIST {
	padding: 0 20px;
}


#NEWSLIST .post_block {
	margin-top: 20px;
}


#NEWSLIST .post_block .title a {
	font-size: 24px;
	color: #7e6f5c;
}




/**  GoogleMAPのリンク掲載
********************************************/
.floatBn {
	position: fixed;
	bottom: 20px;
	right: 25px;
	z-index: 20;
}

.floatBn .shopList {
	content: url("assets/images/miso/shoplist_miso.svg");
	width: 150px;
	height: 150px;
}

.floatBn .shopList.ub {
	content: url("assets/images/ubsauce/shoplist_ub.svg");
}

@media screen and (max-width: 768px) {
	.floatBn {
		bottom: 20px;
		right: 15px;
		z-index: 20;
	}

	.floatBn .shopList {
		width: 100px;
		height: 100px;
	}

}






iframe.snapwidget-widget {
	width: 100%;
	height: 500px;
}

.store_link.mar-b {
	margin-bottom: 100px;
}

.store_link.mar-b a {
  margin: 100px auto 0;
}

iframe.snapwidget-widget {
	width: 100%;
	height: 500px;
}

#top #sns_blk .r_blk ul li img{
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	iframe.snapwidget-widget {
		height: calc(100vw * 248 / 414);
	}

	.store_link.mar-b {
		margin-bottom: calc(100vw * 40 / 414);
	}

.store_link.mar-b a {
  margin: calc(100vw * 40 / 414) auto 0;
}
}


iframe.myMap{
	width: 100%;
	height: 500px;
	margin-top: 40px;
}

