@charset "UTF-8";

/* ----------------------------------- */
/* PC版とスマホ版の表示切替            */
/* ----------------------------------- */

.limit-width {
	max-width: 1140px;
}

/* パソコンの場合 */
@media screen and (min-width: 600px) {
	.pc-none {
		display: none !important;
	}
	.limit-width {
		margin: 0 auto;
		padding: 0px 40px;
	}
	.main-padding {
		padding-top: 60px;
	}
}
/* メニューの表示非表示、幅調整（スマホの場合） */
@media screen and (max-width: 600px) {
	.sp-none {
		display: none !important;
	}
	.limit-width {
		margin: 0px 25px;
		padding: 0px;
	}
	.main-padding {
		padding-top: 60px;
	}
}

/* ----------------------------------- */
/* 可変とするスタイル                  */
/* ----------------------------------- */
.zobutare {
	color: #000; /* 黒 */
	background-color: #FFF; /* 白 */
	font-family: 'Shippori Mincho', serif;
}

/* ヘッダー */
.sp-header {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 500;
}
.pc-header {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 500;
}
.hamburger-line {
	background-color: #000; /* 黒 */
}
.sp-header .sp-nav a {
	border-bottom: 1px solid #BFB7B1; /* 暗めの薄茶 */
}
.label {
	background-color: #F4EBE5; /* 淡い薄茶 */
}

/* コンテンツ部 */
.section {
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	background-color: #FDD000; /* 山吹色 */
	/* background-color: #FFB6C1; ピンク */
}
.svg-title text {
	stroke: #FFFFFF; /* 白(フチ) */
	fill: #B29354; /* 金(文字) */
}

.blank {
	padding: 10px 30px;
	border-radius: 10px; /* ※角を丸める */
	background-color: #F7F7F7; /* 淡いグレー */
}

/* 各種アイコン画像 */
.icon-shopping {
	background: url('../img/zoburu/shopping_black.png');
}
.shop-icon {
	background: url('../img/zoburu/shopping_black.png');
}

/* レシピ（サブタイトル） */
.svg-sub-label
{
	background-color: #ffb; /* 淡い黄色 */
}
.svg-sub-title text {
	stroke: #000000; /* 黒(フチ) */
	fill: #FDD000; /* 山吹色 */
}

/* お問い合わせ(ボタン) */
.info-area .btn a {
	border: 1px solid #008CD6; /* 青 */
	color: #fff;
	background-color: #008CD6; /* 青 */
}
.info-area .btn a:hover {
	color: #008CD6; /* 青 */
	background-color: #fff;
}

/* お問い合わせ(ボタン) */
.mw_wp_form .btn input {
	border: 1px solid #008CD6; /* 青 */
	color: #fff;
	background-color: #008CD6; /* 青 */
}
.mw_wp_form .btn input:hover {
	color: #008CD6; /* 青 */
	background-color: #fff;
}

/* ----------------------------------- */
/* フォントサイズのレスポンシブ対応    */
/* ----------------------------------- */
.has-x-medium-font-size { /* WordPressにないスタイルなので注意(caption用) */
	font-size: 28px;
}
@media screen and (max-width: 600px) {
	.has-x-large-font-size {
		font-size: 23px !important;
	}
	.has-large-font-size {
		font-size: 21px !important;
	}
	.has-x-medium-font-size { /* WordPressにないスタイルなので注意 */
		font-size: 19px !important;
	}
	.has-medium-font-size {
		font-size: 18px !important;
	}
	.has-small-font-size {
		font-size: 15px !important;
	}
}

/* ----------------------------------- */
/*   各種画像アイコン                  */
/* ----------------------------------- */

.icon-shopping {
	background-size: contain;
	background-repeat: no-repeat;
}

/* ----------------------------------- */
/*   PC版のメニュー                    */
/* ----------------------------------- */
.pc-header {
	line-height: 45px; 
	white-space: nowrap;
}
.pc-header .pc-nav {
	width: 100%;
	
	/* メニューを中央に表示
	width: 970px; */
	margin: 0px auto;
}
.pc-header .pc-nav ul {
	display: flex;
	margin: 0;
}
.pc-header .pc-nav ul li {
	list-style: none;
	padding: 15px 20px;
}
.pc-header .pc-nav a {
	text-decoration: none; /* 下線を表示しない */
	color: inherit; /* 文字を青くしない */
}

/* ----------------------------------- */
/*   スマホ版のメニュー                */
/* ----------------------------------- */
.sp-header {
	position: relative;
}

.hamburger {
	position: fixed;
	top: 14px;
	right: 20px;
	z-index: 100;
	width: 48px;
	height: 48px;
	border: none;
	background: transparent;
	cursor: pointer;
	padding: 5px;
}
.hamburger-line {
	position: absolute;
	left: 11px;
	width: 26px;
	height: 2px;
	transition: all .4s;
}
.hamburger-line:nth-of-type(1) {
	top: 14px;
}
.hamburger-line:nth-of-type(2) {
	top: 23px;
}
.hamburger-line:nth-of-type(3) {
	top: 32px;
}

/* メニューオープン時 */
.hamburger.active .hamburger-line:nth-of-type(1) {
	transform: translateY(9px) rotate(-45deg);
}
.hamburger.active .hamburger-line:nth-of-type(2) {
	opacity: 0;
}
.hamburger.active .hamburger-line:nth-of-type(3) {
	transform: translateY(-9px) rotate(45deg);
}

.sp-header .sp-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 300px;
	height: 100vh;
	box-shadow: 2px 0 4px rgba(0,0,0,.1);
	transform: translateX(-100%);
	transition: transform .4s;
	z-index: 90;
}
.sp-header .sp-nav.active {
	transform: translateX(0);
}
.sp-header .sp-nav ul {
	margin: 0;
	padding: 100px 0 0;
	list-style: none;
}
.sp-header .sp-nav li {
	padding: 0 20px;
}
.sp-header .sp-nav a {
	display: block;
	padding: 15px 0;
	text-decoration: none;
	color: inherit; /* 文字を青くしない */
}

/* 左上のショップアイコン */
.shop-icon
{
	/* 常に左上に表示。hamburgerと合わせるとよい */
	position: fixed;
	top: 14px;
	left: 90px;
	z-index: 100;

	border: none;
	width: 48px;
	height: 48px;
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: center;
}

/* ----------------------------------- */
/*   コンテンツ部                      */
/* ----------------------------------- */

.section {
	padding: 10px 40px;
}
.svg-title {
	width: 100%;
}
.svg-title text {
	paint-order: stroke fill;
	stroke-linejoin: square;
}

/* 中央寄せ */
.align-center {
	text-align: center;
}

/* 文字のキャプションを中央に配置 */
.caption-center figure figcaption
{
	text-align: center;
}

/* 背景ミカンのラベル */
.mikan-label
{
	background-color: #ffb;
	background-image: url('../img/zobutare/mikan-left.png'); 
	background-position: left top; 
	background-repeat: no-repeat;
	background-size: 150px; 
}

/* 左に地図のアイコンを配置 */
.map-red {
	display: inline-block;
	background-image: url('../img/zobutare/map-red.png');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 50px 63px;
	padding-left: 70px;
}
.map-orange {
	display: inline-block;
	background-image: url('../img/zobutare/map-orange.png');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 50px 63px;
	padding-left: 70px;
}

/* お問合せ */
.info-area {
	text-align: center;
}
.info-area .btn {
	text-align: center;
}
.info-area .btn a {
	width: 150px;
	border-radius: 10px;
	padding: 13px 15px;
	font-weight: bold;
	
	text-decoration: none;
}

/* レシピ（サブタイトル） */
.svg-sub-img
{
	height: 0px;
}
.svg-sub-img img
{
	height: 150px;
	transform: translateY(-50px);
}
@media (max-width: 600px) {
	.svg-sub-img img
	{
		height: 100px;
		transform: translateY(-20px);
	}
}
.svg-sub-label
{
	margin-bottom: 20px;
}
.svg-sub-title {
	width: 100%;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 500;
}
.svg-sub-title text {
	paint-order: stroke fill;
	stroke-linejoin: square;
}

/* ----------------------------------- */
/* お問い合わせ                        */
/* ----------------------------------- */

/* 入力欄 */
.mw_wp_form form dl {
	margin-top: 50px;
}
.mw_wp_form form dl div {
	padding: 25px;
	border-top: 1px solid #E3E3E3;
}
.mw_wp_form form dl div:last-child {
	border-bottom: 1px solid #E3E3E3;
}
.mw_wp_form form dl div {
	display: flex;
	justify-content: space-between;
}
.mw_wp_form form dl dt {
	width: 30%;
	margin-bottom: 20px;
}
.mw_wp_form form dl dd {
	width: 70%;
}
.mw_wp_form form dl dd input + span {
	display: block;
}

/* 入力欄（スマホの場合） */
@media screen and (max-width: 600px) {
	.mw_wp_form form dl div {
		display: block;
		padding-left: 0px;
	}
	.mw_wp_form form dl dt {
		width: 100%;
	}
	.mw_wp_form form dl dd {
		margin-left: 0px;
		width: 100%;
	}
}

/* 入力項目（input、textarea） */
.mw_wp_form form dl dd input, 
.mw_wp_form form dl dd textarea {
	width: 100%;
	border-radius: 10px;
	padding: 13px 15px;
	background-color: #FFF;
	border: 1px solid #E3E3E3;
}

/* エラーメッセージ */
.mw_wp_form form dl dd .error,
.mw_wp_form form .check .error {
	font-weight: bold;
	color: red;

}
.mw_wp_form form .bold {
	font-weight: bold;
}

/* 必須のラベル */
.mw_wp_form form dl dt span {
	color: #FFF;
	background-color: #F92931;
	border-radius: 20px;
	padding: 2px 8px;
	margin-left: 20px;
}

/* お問い合わせ項目（radio） */
.mwform-radio-field label {
	display: flex;
	justify-content: space-between;
	margin: 7px 0px;
}
.mwform-radio-field label input {
	width: 20px !important;
	min-width: 20px;
}
.mwform-radio-field label span {
	width: 100%;
	white-space: nowrap;
}

/* プライバシーポリシー（check） */
.mw_wp_form .check {
	text-align: center;
}
.mwform-checkbox-field label {
	display: flex;
	justify-content: center;
}
.mwform-checkbox-field label input {
	width: 20px;
}
.mwform-checkbox-field label span {
	width: 270px;
	white-space: nowrap;
	text-align: left;
}

.mw_wp_form .text_wrap {
	margin: 50px 0px;
}

/* ボタン */
.mw_wp_form .btn {
	text-align: center;
}
.mw_wp_form .btn input {
	width: 150px;
	border-radius: 10px;
	padding: 13px 15px;
	font-weight: bold;
}

/* ----------------------------------- */
/*   フッター                          */
/* ----------------------------------- */

.footer {
	padding: 30px 20px;
}
.footer li {
	padding: 5px 0px;
}
.footer a {
	text-decoration: none;
	color: inherit; /* 文字を青くしない */
}
.footer table td {
	padding-right: 30px;
}




