/*
Theme Name: ai-safs.jp's Main Theme
Version: 1.0
Derived from the Original Theme: Twenty Eleven
Original Theme URI: http://wordpress.org/extend/themes/twentyeleven
Original Author: the WordPress team
Original Author URI: http://wordpress.org/
Original Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

@import url('https://fonts.googleapis.com/css2?family=Chelsea+Market&family=Noto+Serif+JP:wght@400;600;700;900&family=Noto+Sans+JP:wght@300&display=swap');

/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-size: 100%;
	margin: 0;
	outline: 0;
	padding: 0;
	max-height: 999999px;	/* against Android Chrome Font Boosting */
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend {
	vertical-align: baseline;
}
table, caption, tfoot, thead {
	vertical-align: middle;
}
:focus {/* remember to define focus styles! */
	outline: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
img[usemap^="#"],	/* MTL KAZ: added for IE 9 or older */
a img {
	border: 0;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

*, *:before, *:after {
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}


/* Variables	JUL-2022 KAZ
----------------------------------------------- */
:root {
	/* Dimensions */
	--viewheight: 100vh;

	/* Colors */
	--saf-darkgreen: #2a3e21;
	--saf-green: #3a7976;
	--saf-brown: #655146;
	--saf-beige: #e9ead8;
	--saf-lightpink: #eae1d8;
}
@media print, screen and (min-width: 783px) {	/* WP Admin Bar */
	:root {
		/* Dimensions */
		--wp-admin-bar-height: 32px;
	}
}
@media screen and (max-width: 782px) {	/* WP Admin Bar */
	:root {
		/* Dimensions */
		--wp-admin-bar-height: 46px;
	}
}
@media print, screen and (min-width: 768px) {	/* PC */
	:root {
		/* Dimensions */
		--saf-body-min-width: 1200px;
		--saf-wall-width: 1000px;
	}
}
@media screen and (max-width: 767px) {	/* SP */
	:root {
		/* Dimensions */
		--saf-body-min-width: 320px;
		--saf-wall-width: 85.33%;	/* 320 / 375 */
	}
}


/* =Structure
----------------------------------------------- */
body {
	min-width: var(--saf-body-min-width);
	padding: 0;
	font-size: 100%;
	-webkit-text-size-adjust: none;	/* KAZ: was 100% */
	text-size-adjust: none;	/* KAZ */
}
section > .wall, section .wall, #ft_links {
	width: var(--saf-wall-width);
	margin-left: auto;
	margin-right: auto;
}
#page {
	background: #fff;
	position: relative;
}
#primary {
	float: left;
	margin: 0;
	width: 684px;	/* Width of main area */
}
#primary.nosidebar {
	float: none;
	width: 100%;
	margin: 0 auto;
/*	padding-bottom: 48px; */	/* Aki */
}
body:not(#my-top) #primary.nosidebar {
	padding-bottom: 48px;	/* KAZ; Aki */
}
#content {
	margin: 0;
}
#secondary {
	float: right;
	width: 261px;	/* width of sidebar, if no margin between the sidebar and the main area, this can be commented out (MAT) */
}

/* Alignment */
.alignleft {
	float: left;
	margin-right: 1.625em;
	 /* display: inline; */
}
.alignright {
	float: right;
	margin-left: 1.625em;
	 /* display: inline; */
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/* =Global
----------------------------------------------- */
body, input, textarea {
	color: black;
	font-family: "Noto Serif JP", serif;
	line-height: 1.333;
}
.fa_icon, .fa_arrow {
	font-family: FontAwesome;
}
input, textarea, select {
	font-size: 100%;
}

/* Headings */
h1,h2,h3,h4,h5,h6 {
	clear: both;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
}

/* Text elements */
hr, p {
	margin-bottom: 16px;
}
strong, .strong  {
	font-weight: bold;
}
cite, em, i {
	font-style: italic;
}
blockquote {
	font-family: Georgia, "Bitstream Charter", serif;
	font-style: italic;
	font-weight: normal;
	margin: 0 3em;
}
blockquote em, blockquote i, blockquote cite {
	font-style: normal;
}
blockquote cite {
	color: #666;
	font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
pre {
	background: #f4f4f4;
	font: 13px "Courier 10 Pitch", Courier, monospace;
	line-height: 1.5;
	margin-bottom: 1.625em;
	overflow: auto;
	padding: 0.75em 1.625em;
}
code, kbd, samp, var {
	font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym, dfn {
	border-bottom: 1px dotted #666;
	cursor: help;
}
address {
	display: block;
	margin: 0 0 1.625em;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 10px;
	height: 0;
	line-height: 1;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: smaller;
}

/* Table */
table {/* tables still need 'cellspacing="0"' in the markup */
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 16px;
}
tbody {
	vertical-align: top;
}

/* List */
ul {
	list-style: none;
}
ul, ol {
	margin: 0 0 16px 22px;
}
ul {
	list-style: square;
}
ol {
	list-style-type: decimal;
}
ol ol {
	list-style: upper-alpha;
}
ol ol ol {
	list-style: lower-roman;
}
ol ol ol ol {
	list-style: lower-alpha;
}
ul ul, ol ol, ul ol, ol ul {
	margin-bottom: 0;
}

/* Data list */
dl {
	margin: 0 0 1.625em;
}
dt {
	font-weight: bold;
}
dd {
	margin-bottom: 1.625em;
}

/* Forms */
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=number],
textarea {
	background: white;
	box-shadow: none;
	border: 1px solid #ddd;
}
textarea {
	padding-left: 3px;
	width: 98%;
}
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=number] {
	padding: 3px;
}
input[type=submit],
input[type=image],
input[type=button],
button {
	cursor: pointer;
}
form :-ms-input-placeholder { color: #aaaaaa; }	/* IE 10+ */
form ::-webkit-input-placeholder { color: #aaaaaa; }	/* Google Chrome, Safari, Opera 15+, Android, iOS */
form :-moz-placeholder { color: #aaaaaa; opacity: 1; }	/* Firefox 18- */
form ::-moz-placeholder { color: #aaaaaa; opacity: 1; }	/* Firefox 19+ */
form :placeholder-shown { color: #aaaaaa; }

/* Links */
a {
	color: var(--saf-darkgreen);
	text-decoration: none;
}
/* a:focus, a:active, */
a.current {
	text-decoration: underline;
}
@media (any-hover: hover) { 
	a:hover {
		text-decoration: underline;
	}
}

/* Assistive text */
.assistive-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
#access a.assistive-text:active,
#access a.assistive-text:focus {
	background: #eee;
	border-bottom: 1px solid #ddd;
	color: #1982d1;
	clip: auto !important;
	font-size: 12px;
	position: absolute;
	text-decoration: underline;
	top: 0;
	left: 7.6%;
}


/* =Header
----------------------------------------------- */
#branding {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.admin-bar #branding {
	top: var(--wp-admin-bar-height);
}
#masthead {
}


/* =Menu
-------------------------------------------------------------- */
#menu_overlay {
	background-color: rgba(0,0,0,0.5);
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 9999;
}
#headlogo,
#footlogo {
	line-height: 24px;
	font-size: 87.5%;	/* 14px */
	font-weight: 600;
	text-align: center;
}
#headlogo {
	margin-bottom: 14px;
}
#headlogo a,
#menulogo a,
#footlogo a {
	color: inherit;
}
@media (any-hover: hover) {
	#headlogo a:hover,
	#menulogo a:hover,
	#footlogo a:hover {
		text-decoration: none;
	}
}
#headlogo a img,
#menulogo a img,
#footlogo a img {
	vertical-align: bottom;
}
#headlogo a img.logomark,
#footlogo a img.logomark {
	width: 54px;
	height: auto;
}
#headlogo a img.logomark,
#footlogo a img.logomark {
	margin: -1px 11px -3px -10px;
}
#menu_btn {
	text-align: center;
}
#headmenu {
	background-color: var(--saf-darkgreen);
	display: none;
	position: absolute;
	overflow-y: auto;
	max-height: var(--viewheight);
	top: 0;
	left: 0;
	color: white;
}
.admin-bar #headmenu {
	max-height: calc(var(--viewheight) - var(--wp-admin-bar-height));
}
#menu_close_btn {
	position: absolute;
	top: 0;
	text-align: center;
}
#menu_close_btn a {
	display: block;
}
#menulogo {
	font-weight: bold;
}
#menulogo a {
	/* See #headlogo a above */
}
#headmenu ul#gnavi {
	margin: 0;
	line-height: 62px;
	font-size: 112.5%;	/* 18px */
	font-weight: 900;
}
#headmenu ul#gnavi li {
	list-style-type: none;
}
#headmenu ul#gnavi li a {
	display: block;
	color: inherit;
}
@media (any-hover: hover) {
	#headmenu ul#gnavi li a:not(.current):hover {
		text-decoration: none;
	}
}
#headmenu ul#gnavi li a img.icon {
	width: 77px;
	height: auto;
	vertical-align: middle;
}
#headmenu ul#gnavi li a span.hyphen {
	background-color: white;
	display: inline-block;
	width: 10px;
	height: 1px;
	margin-left: 9px;
	margin-right: 15px;
	vertical-align: middle;
}
#headmenu ul#gnavi li.sns a,
#ft_sns a {
	display: inline-block;
	height: 40px;
	padding: 0 10px;
	line-height: 40px;
	font-weight: normal;
	text-align: center;
}
#headmenu ul#gnavi li.sns a.facebook,
#ft_sns a.facebook {
	font-size: 26px;
}
#headmenu ul#gnavi li.sns a.instagram,
#ft_sns a.instagram {
	margin-left: 16px;
	font-size: 32px;
}
@media (any-hover: hover) {
	#headmenu ul#gnavi li.sns a:hover,
	#ft_sns a:hover {
		opacity: 0.7;
		text-decoration: none;
	}
}
#breadcrumbs {
/*	margin: 12px auto 15px; Aki */
	padding: 14px 0 0 20px;
	line-height: 1;
	font-family: "Noto Sans JP";
	font-size: 87.5%;		/* 14px */
	font-weight: 300;
}
#breadcrumbs a {
	color: inherit;
}


/* =Content
----------------------------------------------- */
#topmain, #main {
	clear: both;
	overflow: hidden;
	position: relative;
}
#topmain {
}
#main {
}
#mainwall {
		/* Mat c/o for slide show buttons like http://kobabo-s.com  overflow: hidden; */
	margin: 0 auto;
}
.page-title {
	margin: 0 0 2.6em;
	line-height: 2.6em;
	font-weight: 500;
	letter-spacing: 0.1em;
}
.page-title a {
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0;
	text-transform: none;
}
.hentry,
.no-results {
	position: relative;
}
.hentry:last-child,
.no-results {
	border-bottom: none;
}
.blog .sticky .entry-header .entry-meta {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}
.entry-title {
	clear: both;
	font-size: 25px;
	font-weight: bold;
	line-height: 54px;
}
.entry-title a {
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) { 
	.entry-title a:hover {
		color: inherit;
		text-decoration: underline;
	}
}
.entry-title img {
	vertical-align: middle;
}
.entry-title-top {
	display: none;
}
.entry-meta {
	color: #666;
	clear: both;
	font-size: 12px;
	line-height: 18px;
}
.entry-meta a {
	font-weight: bold;
}
.single-author .entry-meta .by-author {
	display: none;
}
.entry-content,
.entry-summary {
/*	margin-bottom: 20px; */
}
.entry-content h1, .entry-content h2
{
	margin: 0 0 20px;
}
.entry-content h1
{
	font-size: 28px;
	height: 50px;
	line-height: 50px;
}
.entry-content h2
{
	font-weight: bold;
}
.entry-content h3
{
	font-size: 122%;
	font-weight: bold;
	min-height: 24px;
	line-height: 1.41;
	margin: 0 0 12px;
}
.entry-content h4
{
	font-weight: bold;
	min-height: 20px;
	line-height: 1.43;
	margin: 0 0 12px;
}
.entry-content #s {
	width: 75%;
}
.entry-content p, .entry-content li {	/* to avoid Android's bug, see wordpress\todo.txt in MTL */
	background-color: rgba(255,255,255,0.01);
}
 	/* -- Mat copied from the original twentyeleven .css after pointed out by Viex and talking with kaz 2021.1 */
.entry-content table {
	border-bottom: 1px solid #ddd;
	width: 100%;
}
.entry-content td {
	border-top: 1px solid #ddd;
	padding: 6px 10px 6px 0;
}
dl.gallery-item {
	margin: 0;
}
.page-link {
	clear: both;
	display: block;
	margin: 0 0 1.625em;
}
.page-link a {
	background: #eee;
	color: #373737;
	margin: 0;
	padding: 2px 3px;
	text-decoration: none;
}
@media (any-hover: hover) { 
	.page-link a:hover {
		background: #888;
		color: #fff;
		font-weight: bold;
	}
}
.page-link span {
	margin-right: 6px;
}
.entry-meta .edit-link a {
	background: #eee;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #666;
	float: right;
	font-size: 12px;
	line-height: 1.5em;
	font-weight: 300;
	text-decoration: none;
	padding: 0 8px;
}
@media (any-hover: hover) { 
	.entry-meta .edit-link a:hover {
		background: #888;
		color: #fff;
	}
}
.entry-content .edit-link {
	clear: both;
	display: block;
}
#searchform .screen-reader-text {
	display: none;
}

/* Gutenberg blocks */
/* Counter-styles against /wp-includes/css/dist/block-library/style.min.css */
.entry-content figure {
	margin-bottom: 45px;
}
.entry-content .wp-block-image {
	line-height: 0;
}
.entry-content .wp-block-image .alignleft {
	margin-right: 40px;
}
.entry-content .wp-block-image .alignright {
	margin-left: 40px;
}
.entry-content .wp-block-image figcaption {
	line-height: 1.5;
	color: inherit;
	font-size: 100%;
}

/* Images */
.entry-content img {
	max-width: 100%;
	height: auto;
}
p img,
.wp-caption {
	margin-top: 0.4em;
}
.wp-caption {
	max-width: 96%;
	background: #eee;
	margin-bottom: 1em;
	padding: 5px 0;
}
.wp-caption img {
	display: block;
	margin: 0 auto;
	max-width: 98%;
}
.wp-caption img[class*='wp-image-'] {	/* MTL: added against img[class*='wp-image-'] */
	border: 0;
	padding: 0;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	color: #666;
	font-size: 12px;
}
.wp-caption .wp-caption-text {
	margin-bottom: 1px;
	padding: 2px 0 0 5px;
	position: relative;
	background: transparent;
	text-align: center;
}
#content .gallery {
	margin: 0 auto 1.625em;
}
#content .gallery a img {
	border: none;
}
img#wpstats {
	display: block;
	margin: 0 auto 1.625em;
}
#content .gallery-columns-4 .gallery-item {
	width: 23%;
	padding-right: 2%;
}
#content .gallery-columns-4 .gallery-item img {
	width: 100%;
	height: auto;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}


/* =error404
----------------------------------------------- */
.error404 #primary #searchform {
	background: #f9f9f9;
	border: 1px solid #ddd;
	overflow: hidden;
	margin: 0 0 25px;
}
.error404 #primary #s {
	width: 95%;
}
.error404 #primary .widget {
	clear: none;
	float: left;
	width: 45%;
}
.error404 #primary .widget_archive {
	clear: both;
}


/* =Navigation
-------------------------------------------------------------- */
#content nav {
	clear: both;
	overflow: hidden;
}
#content nav a {
/*	color: inherit; */	/* KAZ: c/o */
}
#nav-above {
	padding: 0 0 1.625em;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous {
	float: left;
	width: 50%;
	text-align: left;	/* KAZ */
}
.nav-next {
	float: right;
	width: 50%;
	text-align: right;	/* KAZ */
}
.nav-previous.linkbtn a,
.nav-next.linkbtn a {
	display: inline-block;
	text-align: right;
}
.nav-previous.linkbtn a {
/*	margin-left: 7%; */
	text-align: right;	/* KAZ */
}
.nav-next.linkbtn a {
/*	margin-right: 7%; */
	text-align: left;	/* KAZ */
}
.nav-previous.linkbtn a::after,
.nav-gotolist.linkbtn a::after {
	left: 15px;
	right: auto;
	content: "\f177";
}
#content nav .meta-nav {
	font-weight: normal;
}
.nav-gotolist.linkbtn a {
	width: 275px;
	padding: 32px 0 30px 132px;
}
.nav-gotolist.linkbtn a::after {
	top: 32px;	/* KAZ */
}


/* Singular navigation */
#content #nav-single {
	width: 100%;
}

#content div.wp-pagenavi {
	clear: both;
	text-align: center;
}
#content div.wp-pagenavi a,
#content div.wp-pagenavi span {
	border: var(--saf-darkgreen) 1px solid;
	border-radius: 4px;
	display: inline-block;
	font-weight: 600;
}
#content div.wp-pagenavi span.extend {
	color: var(--saf-darkgreen);
}
#content div.wp-pagenavi span.current {
	background-color: var(--saf-darkgreen);
	color: white;
}
@media (any-hover: hover) {
	#content div.wp-pagenavi a.page:hover,
	#content div.wp-pagenavi a.previouspostslink:hover,
	#content div.wp-pagenavi a.nextpostslink:hover{
		background-color: var(--saf-darkgreen);
		color: white;
	}
}


/* =Widgets
----------------------------------------------- */
.widget {
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	clear: both;
	margin: 0 0 10px;
}
.widget h3.widget-title {
}
.widget ul {
	margin: 0;
	list-style-type: none;
}
.widget ul ul {
	margin-left: 1.5em;
}


/* =Footer
----------------------------------------------- */
#ft_nav_top {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 50%;
	z-index: 9000;
	margin: 0 -600px 0 0;
	opacity: 0;
	z-index: 9000;
}
#ft_nav_top a {
	display: block;
	position: relative;
	overflow: hidden;
	width: 64px;
	height: 128px;
}
#ft_nav_top a img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	display: block;
}
#ft_nav_top a img:nth-of-type(2) {
	opacity: 0;
}
@media (any-hover: hover) {
	#ft_nav_top:hover a img:nth-of-type(2) {
		opacity: 1;
	}
}
#colophon {
	background: url(/images/footer_bg.png) no-repeat left calc(50% + 285px) top 50px / 671.5px auto;
	clear: both;
}
#ft_links {
}
#ft_links a {
	color: inherit;
}
#footlogo {
	/* See #headlogo above */
}
#footlogo a {
	/* See also #headlogo a above */
	display: block;
}
#footmenu {
}
#footmenu ul {
/*	height: 30px; */
	margin: 0;
	padding-left: 30px;
/*	padding-right: 34px; */
}
#footmenu ul.one {
	width: 277px;	/* KAZ: added for Safari */
}
#footmenu ul.two,
#footmenu ul.three {
	padding-bottom: 3px;
}
#footmenu ul.two {
	width: 188px;	/* KAZ: added for Safari */
}
#footmenu ul.three {
	width: 160px;	/* KAZ: added for Safari */
}
#footmenu ul li {
	list-style-type: none;
	padding-left: 12px;
	line-height: 1.5;	/* 21px */
}
#footmenu ul.one li {
	padding-bottom: 9px;
}
#footmenu ul.two li,
#footmenu ul.three li {
	padding-bottom: 18px;
}
#footmenu ul li.submenu {
	padding-left: 31px;
}
#footmenu ul li::before {
	border-top: transparent 3px solid;
	border-bottom: transparent 3px solid;
	border-left: black 6px solid;
	display: inline-block;
	margin-left: -12px;
	margin-right: 6px;
	vertical-align: middle;
	content: '';
}
#footmenu ul li.submenu::before {
	border: 0;
	width: 13px;
	margin-left: -19px;
	vertical-align: baseline;
	content: '-';
}
#ft_onlinestore {
	text-align: center;
}
#ft_onlinestore a {
	background: url(/images/ft_onlinestore_bg.png) no-repeat left top / 100% auto;
	display: inline-block;
}
#ft_sns {
	/* See #headmenu ul#gnavi li.sns above */
}
#ft_sns a {
	vertical-align: bottom;
}
#ft_copyright {
	line-height: 24px;
}


/* Common entries
-------------------------------------------------------------- */
.left {
	text-align: left;
	display: block;	/* Mat added these. If you use these for table, list, etc. and can't cover by the following td.right .., please override these invidually. */
}
.center {
	text-align: center;
	display: block;
}
.right {
	text-align: right;
	display: block;
}
td.right, th.right, td.center, th.center, td.left, th.left {
	display: table-cell;
}
li.right, li.right, li.center {
	display: list-item
}
.middle {
	vertical-align: middle;
}
.imgonly {
	line-height: 0;
}
.imgonly a,
a.imgonly {
	display: inline-block;
}
.bold {
	font-weight: bold;
}
.clear {
	clear: both;
}
a.current img {
	opacity: 0.75;
	filter: alpha(opacity=75);
}
a.current img.notransbtn {
	opacity: 1;
	filter: none;
}
@media (any-hover: hover) {
	.transbtn:hover, a:hover img {
		opacity: 0.75;
		filter: alpha(opacity=75);
	}
	.notransbtn:hover, a:hover img.notransbtn, #headlogo a:hover img, #ft_links a:hover img {
		opacity: 1;
		filter: none;
	}
}
/*.ios .transbtn:hover { */
/* iOS 8.4.1 で :hover に opacity が指定してあると 2 回タップしないとリンク先に飛ばない。script.js でユーザーエージェントを見て body に class="ios" を追加。 */
/*	opacity: 1;
 *	filter: none;
 *}
 */
.nomargin {
	margin: 0 !important;
}
.topbottommargin {
	margin: 20px auto !important;
}
.topmargin {
	margin-top: 60px !important;
}
.topmarginbig {
	margin-top: 80px !important;
}
.notopmargin {
	margin-top: 0 !important;
}
.bottommargin {
	margin-bottom: 20px !important;
}
.bottommarginbig {
	margin-bottom: 60px !important;
}
.nobottommargin {
	margin-bottom: 0 !important;
}
.onlymarginright{
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	margin-left: 0 !important;
}
.onlymarginleft{
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	margin-right: 0 !important;
}
.nopadding {
	padding: 0 !important;
}
.noborder {
	border: 0px !important;
}
.border {
	border: 1px solid gray;
}
.noclear {
	clear: none !important;
}
.nobackground {
	background: transparent none !important;
}
.illust_hover a {
	display: block;
	position: relative;
	overflow: hidden;
}
.illust_hover a img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	display: block;
}
.illust_hover a img:nth-of-type(2) {
	opacity: 0;
}
@media (any-hover: hover) {
	.illust_hover a:hover img:nth-of-type(1) {
		opacity: 0;
	}
	.illust_hover a:hover img:nth-of-type(2) {
		opacity: 1;
	}
}
.linkbtn a,
#my-blog .news_sns .instagram #sb_instagram .sbi_follow_btn a {
	background-color: white;
	border-radius: 4px;
	display: block;
	position: relative;
	margin: 0 auto;
	transition: all 0.3s ease-out;
}
.linkbtn a {
	border: solid 1px;
	width: 245px;
	padding: 15px 15px 14px 19px;
	color: black;
}
.linkbtn.dark a {
	border: var(--saf-darkgreen) solid 1px;
}
@media (any-hover: hover) {
	.linkbtn a:hover,
	#my-blog .news_sns .instagram #sb_instagram .sbi_follow_btn a:hover {
		color: white;
		text-decoration: none;
	}
	.linkbtn a:hover {
		background-color: var(--saf-green);
	}
	.linkbtn.dark a:hover {
		background-color: var(--saf-darkgreen);
	}
}
.linkbtn a::after,
#my-blog .news_sns .instagram #sb_instagram .sbi_follow_btn a::after {
	content: "\f178";
	display: block;
	font-family: FontAwesome;
	position: absolute;
	right: 15px;
}
.linkbtn a::after {
	top: 17px;
}
h3.lined {
	font-size: 112.5%;	/* 18px */
	border-top: solid 1px;
	border-bottom: solid 1px;
	text-align: center;
}
h4.colored {
	font-size: 112.5%;	/* 18px */
	font-weight: 600;
	background: var(--saf-beige);
	border-radius: 10px;
	display: flex;
	align-items: center;
}


/* Front Page Components
----------------------------------------------- */
#my-top {
	color: white;
	text-shadow: 2px 2px 30px rgba(0,0,0,0.8);
}
#my-top #top_loading {
	background-color: white;
	position: fixed;
	width: 100%;
	height: var(--viewheight);
	top: 0;
	left: 0;
	z-index: 99999;
}
#my-top.admin-bar #top_loading {
	height: calc(var(--viewheight) - var(--wp-admin-bar-height));
	top: var(--wp-admin-bar-height);
}
#my-top #top_loading .bglayer,
#my-top #top_loading #top_loading_skipbtn {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
#my-top #top_loading .bglayer {
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 100%;
	max-height: 100%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
#my-top #top_loading #top_loading_skipbtn {
	width: 92px;
	height: 35px;
	left: calc(50% - 46px);
}
#my-top #top_loading #top_loading_skipbtn a {
	border-bottom: var(--saf-brown) 2px solid;
	display: block;
	height: 100%;
	line-height: 1;
	color: var(--saf-brown);
	font-family: "Chelsea Market", sans-serif;
	font-size: 87.5%;	/* 14px */
	letter-spacing: 0.4em;
	text-align: center;
}
@media (any-hover: hover) {
	#my-top #top_loading #top_loading_skipbtn a:hover {
		opacity: 0.7;
		text-decoration: none;
	}
}
#my-top #top_loading #top_loading_skipbtn a span.arrow {
	margin-left: 16px;
}
#topmain #mainwall {
	width: 100%;
}
#my-top #content {
}
#my-top #content .slick-slide {
	border: 0;
}
#my-top #content section.snap {
	position: relative;
	overflow: hidden;
}
#my-top #content section.snap .bglayer,
#my-top #content section.snap .bgimage {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#my-top #content section.snap .bglayer {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	transition: transform 3s 0.5s ease;
}
#my-top #content .slick-active #top_aboutus .bglayer,
#my-top #content .slick-active #top_onlinestore .bglayer,
#my-top #content .slick-active #top_producer .bglayer,
#my-top #content .slick-active #top_yaoya .bglayer,
#my-top #content .slick-active #top_recipe .bglayer,
#my-top #content .slick-active #top_experience .bglayer {
	transform: none;
}
#my-top #content #top_yaoya .bgimage img {
	display: inline-block;
	object-fit: cover;
}
#my-top #content #top_yaoya .bgimage img:last-child {
	object-position: right 25%;
}
#my-top #content section.snap .wall {
	display: flex;
	flex-direction: column;
	position: relative;
	width: auto;
	font-weight: bold;
	justify-content: center;
	text-align: center;
}
#my-top #content section.snap .wall > * {
	width: 100%;
}
#my-top #content section.snap h2 {
	position: relative;
	padding-left: 0.25em;
	letter-spacing: 0.25em;
}
#my-top #content section.snap h2::after {
	background-color: white;
	display: block;
	position: absolute;
	width: 40px;
	height: 3px;
	bottom: 0;
	left: calc(50% - 20px);
	content: '';
}
#my-top #content section.snap .catchline {
}
#my-top #content section.snap .descr {
}
#my-top #content section.snap .readmore {
	font-weight: 900;
	letter-spacing: 0.08em;
}
#my-top #content section.snap .readmore a {
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
	display: inline-block;
	color: inherit;
}
#my-top #content #top_aboutus .readmore a {
	background-image: url(/images/top_aboutus_readmore_bg.png);
}
#my-top #content #top_onlinestore .readmore a {
	background-image: url(/images/top_onlinestore_readmore_bg.png);
}
#my-top #content #top_producer .readmore a {
	background-image: url(/images/top_producer_readmore_bg.png);
}
#my-top #content #top_yaoya .readmore a {
	background-image: url(/images/top_yaoya_readmore_bg.png);
}
#my-top #content #top_recipe .readmore a {
	background-image: url(/images/top_recipe_readmore_bg.png);
}
#my-top #content #top_experience .readmore a {
	background-image: url(/images/top_experience_readmore_bg.png);
}
@media (any-hover: hover) {
	#my-top #content #top_aboutus .readmore a,
	#my-top #content #top_onlinestore .readmore a,
	#my-top #content #top_producer .readmore a,
	#my-top #content #top_yaoya .readmore a,
	#my-top #content #top_recipe .readmore a,
	#my-top #content #top_experience .readmore a {
		background-image: url(/images/top_readmore_bg.png);
	}
	#my-top #content section.snap .readmore a:hover {
		text-decoration: none;
	}
	#my-top #content #top_aboutus .readmore a:hover {
		background-image: url(/images/top_aboutus_readmore_bg.png);
	}
	#my-top #content #top_onlinestore .readmore a:hover {
		background-image: url(/images/top_onlinestore_readmore_bg.png);
	}
	#my-top #content #top_producer .readmore a:hover {
		background-image: url(/images/top_producer_readmore_bg.png);
	}
	#my-top #content #top_yaoya .readmore a:hover {
		background-image: url(/images/top_yaoya_readmore_bg.png);
	}
	#my-top #content #top_recipe .readmore a:hover {
		background-image: url(/images/top_recipe_readmore_bg.png);
	}
	#my-top #content #top_experience .readmore a:hover {
		background-image: url(/images/top_experience_readmore_bg.png);
	}
}
#my-top #content .slick-dots {
/*	background-color: #f4f4f4; */	/* NOV-2021 KAZ: c/o */
	position: fixed;
	width: 100%;
	left: 0;
	margin: 0;
	line-height: 0;
	text-align: center;
}
#my-top #content .slick-dots li,
#my-top #content .slick-dots li button {
	width: 32px;
	height: 32px;
}
#my-top #content .slick-dots li {
	display: inline-block;
	margin: 0 8px;
	padding: 0;
}
#my-top #content .slick-dots li button {
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	border: 0;
	border-radius: 50%;
	box-shadow: none;
	padding: 10px;
	color: transparent;
}
#my-top #content .slick-dots li button::before {
	background-color: rgba(255,255,255,0.3);
	border-radius: 50%;
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.8);
	display: block;
	position: static;
	width: 12px;
	height: 12px;
	opacity: 1;
	content: '';
}
#my-top #content .slick-dots li.slick-active button::before {
	background-color: white;
	opacity: 1;
}
@media (any-hover: hover) {
	#my-top #content .slick-dots li button:hover {
		background-color: rgba(255,255,255,0.3);
	}
	#my-top #content .slick-dots li button:hover::before {
		background-color: white;
		box-shadow: none;
		opacity: 1;
	}
}
#top_news {
	background-color: white;
	bottom: 0;
	color: black;
	text-shadow: none;	/* OCT-2022 KAZ: missing */
}
#top_news h2,
#top_news h2 a {
	height: 100%;
}
#top_news h2 {
	float: left;
	margin-bottom: 0;	/* OCT-2022 KAZ: missing */
	font-size: 100%;
	font-weight: 900;
	letter-spacing: 0;
	text-align: center;
}
#top_news h2 a {
	background-color: var(--saf-darkgreen);
	display: block;
	color: white;
	overflow: hidden;
}
/* #top_news .entry {
 *}
 */	/* OCT/NOV-2022 KAZ: c/o */
/*#top_news .entry .arrow, */	/* OCT/NOV-2022 KAZ: c/o */
#my-blog ul.news_list li > a .arrow {
/*	font-weight: 900; */
}
/*#top_news .entry .arrow {
 *	float: right;
 *}
 */	/* OCT/NOV-2022 KAZ: c/o */
/*#top_news .entry .arrow a, */	/* OCT/NOV-2022 KAZ: c/o */
#my-blog ul.news_list li > a .arrow span.inner {
	border: var(--saf-darkgreen) 2px solid;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
}
/*#top_news .entry .category,
 *#top_news .entry .date {
 *	line-height: 24px;
 *}
 *#top_news .entry .category {
 *	float: left;
 *}
 */	/* OCT/NOV-2022 KAZ: c/o */
/*#top_news .entry .category a, */	/* OCT/NOV-2022 KAZ: c/o */
#my-blog ul.news_list li > a .category,
#my-blog .entry-header-meta .category a {
	background-color: var(--saf-darkgreen);	/* fallback */
	color: white;
	text-align: center;
}
/*#top_news .entry .category a {
 *	display: inline-block;
 *	overflow: hidden;	/$ for text-overflow: ellipsis; $/
 *	white-space: nowrap;	/$ for text-overflow: ellipsis; $/
 *	width: 94px;
 *	padding: 0 0.5em;
 *	text-overflow: ellipsis;
 *	vertical-align: bottom;
 *}
 */	/* OCT/NOV-2022 KAZ: c/o */
/*#top_news .entry .category a.news, */	/* OCT/NOV-2022 KAZ: c/o */
#my-blog ul.news_list li > a .category.news,
#my-blog .entry-header-meta .category a.news {
	background-color: var(--saf-green);
}
/*#top_news .entry .category a.exp_news, */	/* OCT/NOV-2022 KAZ: c/o */
#my-blog ul.news_list li > a .category.exp_news,
#my-blog .entry-header-meta .category a.exp_news {
	background-color: var(--saf-brown);
}
/*#top_news .entry .date {
 *}
 *#top_news .entry .title {
 *	font-weight: 600;
 *}
 *#top_news .entry .title a {
 *	display: block;
 *	color: inherit;
 *}
 */	/* OCT/NOV-2022 KAZ: c/o */
@media (any-hover: hover) {
/*	#top_news .entry .link a:hover, */
/*	#top_news .entry .category a:hover, */	/* OCT/NOV-2022 KAZ: c/o */
	#top_news h2 a:hover {
		text-decoration: none;
	}
}
#top_news > .arrow {	/* OCT/NOV-2022 KAZ */
	float: right;
	text-align: center;
}
#top_news > .arrow a {	/* OCT/NOV-2022 KAZ */
	display: block;
}
@media (any-hover: hover) {
	#top_news > .arrow a:hover {	/* OCT/NOV-2022 KAZ */
		text-decoration: none;
	}
}
#top_news .news-slider-wrapper {	/* OCT/NOV-2022 KAZ */
	position: relative;
	overflow: hidden;
}
#top_news .news-slider-wrapper .news-slider {	/* OCT/NOV-2022 KAZ */
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
}
#top_news .news-slider-wrapper .news-slider a {	/* OCT/NOV-2022 KAZ */
	border-right: 2px solid;
	padding-left: 1em;
	padding-right: 1em;
	white-space: nowrap;
	word-break: keep-all;
	color: black;
}


/* Page header Components
----------------------------------------------- */
body.page .entry-header,
.page-header {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
body.page .entry-header h1.entry-title,
.page-header .page-title {
	background: white;
	font-size: 187.5%;	/* 30px */
	line-height: 1;
	letter-spacing: 0.25em;
	text-align: center;
	margin: 0 auto;
	position: relative;
}
body.page .entry-header h1.entry-title::after,
.page-header .page-title::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	background: #000000;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translatex(-50%);
}


/* Fixed Page Components
----------------------------------------------- */
section h2 {
	font-size: 225%;	/* 36px */
	letter-spacing: 0.25em;
	margin-bottom: 25px;
}


/* Blog Page Components
----------------------------------------------- */
/* 共通 */
#my-blog .wall {
	width: var(--saf-wall-width);
	margin-left: auto;
	margin-right: auto;
}
#my-blog .news_sns {
}
#my-blog .news_sns h2 {
	line-height: 1.5;	/* 30px */
	font-family: "Chelsea Market";
	font-size: 125%;	/* 20px */
	font-weight: normal;
	letter-spacing: 0.2em;
	text-align: center;
}
#my-blog .news_sns h2 a {	/* KAZ: ChkHTML */
	display: inline-block;
	color: inherit;
}
@media (any-hover: hover) {	/* KAZ: ChkHTML */
	#my-blog .news_sns h2 a:hover {
		text-decoration: none;
	}
	#my-blog .news_sns h2 a:hover span.text {
		text-decoration: underline;
	}
}
#my-blog .news_sns h2 a span {
	vertical-align: middle;	/* KAZ: ChkHTML */
}
#my-blog .news_sns h2 a span.fa_icon {
	margin-right: 50px;
	font-size: 26px;
}
#my-blog .news_sns .facebook {
}
#my-blog .news_sns .facebook .feed iframe {
	height: 413px;
}
#my-blog .news_sns .instagram {
	background-color: #eae1d8;
}
#my-blog .news_sns .instagram #sb_instagram {
	width: calc(100% + 16px);
}
#my-blog .news_sns .instagram #sb_instagram .sbi_follow_btn {
}
#my-blog .news_sns .instagram #sb_instagram .sbi_follow_btn a {
	/* See also .linkbtn above */
	border: var(--saf-darkgreen) solid 1px;
	width: 275px;
	padding: 0 22px;
	line-height: 84px;
	color: var(--saf-darkgreen);
	font-size: 100%;
	font-weight: 600;
	text-align: left;
}
#my-blog .news_sns .instagram #sb_instagram .sbi_follow_btn a::after {
	top: 0;
}
#my-blog .news_sns .instagram #sb_instagram .sbi_follow_btn a svg {
	display: none;
}
@media (any-hover: hover) {
	#my-blog .news_sns .instagram #sb_instagram .sbi_follow_btn a:hover {
		background-color: var(--saf-darkgreen);
		box-shadow: none;
	}
}
/* 一覧 */
#my-blog ul.category_menu,
#my-recipe ul.category_menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	text-align: center;
}
#my-blog ul.category_menu li,
#my-recipe ul.category_menu li {
	list-style-type: none;
}
#my-blog ul.category_menu li a,
#my-recipe ul.category_menu li a {
	border: var(--saf-darkgreen) 1px solid;
	border-radius: 4px;
	display: block;
	color: var(--saf-darkgreen);
	transition: all 0.3s ease-out;
}
#my-blog ul.category_menu li.news a {
	border: var(--saf-green) 1px solid;
	color: var(--saf-green);
}
#my-blog ul.category_menu li.exp_news a {
	border: var(--saf-brown) 1px solid;
	color: var(--saf-brown);
}
#my-blog ul.category_menu li.current a,
#my-recipe ul.category_menu li.current a,
#my-blog ul.category_menu li.news.current a,
#my-blog ul.category_menu li.exp_news.current a {
	color: white;
}
#my-blog ul.category_menu li.current a,
#my-recipe ul.category_menu li.current a {
	background-color: var(--saf-darkgreen);
}
#my-blog ul.category_menu li.news.current a {
	background-color: var(--saf-green);
}
#my-blog ul.category_menu li.exp_news.current a {
	background-color: var(--saf-brown);
}
@media (any-hover: hover) {
	#my-blog ul.category_menu li a:hover,
	#my-recipe ul.category_menu li a:hover,
	#my-blog ul.category_menu li.news a:hover,
	#my-blog ul.category_menu li.exp_news a:hover {
		color: white;
		text-decoration: none;
	}
	#my-blog ul.category_menu li a:hover,
	#my-recipe ul.category_menu li a:hover {
		background-color: var(--saf-darkgreen);
	}
	#my-blog ul.category_menu li.news a:hover {
		background-color: var(--saf-green);
	}
	#my-blog ul.category_menu li.exp_news a:hover {
		background-color: var(--saf-brown);
	}
}
#my-blog .archive_menu {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
#my-blog .archive_menu .heading {
}
#my-blog .archive_menu .heading a {
	border: var(--saf-darkgreen) 1px solid;
	border-radius: 4px;
	display: block;
	line-height: 42px;
	color: inherit;
	font-weight: 600;
}
#my-blog .archive_menu.expanded .heading a {
	border-radius: 4px 4px 0 0;
}
@media (any-hover: hover) {
	#my-blog .archive_menu .heading a:hover {
		color: inherit;
		text-decoration: none;
	}
}
#my-blog .archive_menu .heading a::after {
	background-color: var(--saf-darkgreen);
	border-radius: 50%;
	display: inline-block;
	width: 24px;
	height: 24px;
	line-height: 22px;
	color: white;
	content: '+';
}
#my-blog .archive_menu.expanded .heading a::after {
	content: '–';
}
#my-blog .archive_menu ul {
	background-color: rgba(42,62,33,0.85);
	display: none;
	margin: 0;
	padding: 11px 0 12px;
	line-height: 2.188;	/* 35px */
	color: white;
}
#my-blog .archive_menu.expanded ul {
	display: block;
}
#my-blog .archive_menu ul li {
	list-style-type: none;
}
#my-blog .archive_menu ul li a {
	display: block;
	color: inherit;
}
#my-blog ul.news_list {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
#my-blog ul.news_list li {
	list-style-type: none;
	margin-bottom: 20px;
}
#my-blog ul.news_list li > a {
	/* See also #top_news .entry above */
	border: var(--saf-darkgreen) 1px solid;
	border-radius: 6px;
	display: block;
	position: relative;
	height: 140px;
	padding: 37px 6.25% 0;	/* side 20 / 320 */
	color: inherit;
	transition: all 0.3s ease-out;
}
@media (any-hover: hover) {
	#my-blog ul.news_list li > a:hover {
		background-color: var(--saf-darkgreen);
		color: white;
		text-decoration: none;
	}
}
#my-blog ul.news_list li > a .category {
	border-radius: 6px 0 6px 0;
	position: absolute;
	width: 146px;
	top: -1px;
	left: -1px;
	line-height: 28px;
	font-size: 87.5%;	/* 14px */
}
#my-blog ul.news_list li > a .new,
#my-blog .entry-header-meta .new {
	color: white;
}
#my-blog ul.news_list li > a .new {
	position: absolute;
	width: 86px;
	height: 43px;
	top: -1px;
	left: 176px;
	line-height: 35px;
	font-size: 112.5%;	/* 18px */
	text-align: center;
}
#my-blog ul.news_list li > a .new::before,
#my-blog .entry-header-meta .new::before {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: ''
}
#my-blog ul.news_list li > a .new::before {
	border-top: #cbba68 33px solid;
	border-left: #cbba68 43px solid;
	border-right: #cbba68 43px solid;
	border-bottom: transparent 10px solid;
}
#my-blog ul.news_list li > a .new span.inner,
#my-blog .entry-header-meta .new span.inner {
	position: relative;
}
#my-blog ul.news_list li > a .date {
	margin-bottom: 8px;
}
#my-blog ul.news_list li > a h2 {
	float: left;
	width: 226px;
	line-height: 1.875;	/* 30px */
	font-weight: normal;
}
#my-blog ul.news_list li > a .arrow {
	/* See #top_news .entry .arrow above */
	height: 60px;
	margin-left: calc(226px + 5.4%);	/* 15 / 278 */
	padding-top: 9px;
	line-height: 33px;
/*	font-size: 112.5%; */	/* 18px */
}
#my-blog ul.news_list li > a .arrow span.inner {
	background-color: white;
	width: 37px;
	height: 37px;
	color: var(--saf-darkgreen);
}
#my-blog ul.news_list li > a .arrow span.inner img {
	vertical-align: 2px;	/* KAZ: ChkHTML */
}
#my-blog ul.news_list li .entry-meta .edit-link a {
	position: absolute;
	right: 1px;
	bottom: 1px;
}
/* 個別 */
#my-blog .entry-header-meta {
	text-align: center;
}
#my-blog .entry-header-meta .category {
	margin-bottom: 10px;
}
#my-blog .entry-header-meta .category a {
	/* See also #top_news .entry .category a and #my-blog ul.news_list li > a .category abovve */
	border-radius: 4px;
	display: block;
	min-width: 114px;
	padding: 0 0.5em;
	line-height: 30px;
	font-size: 87.5%;	/* 14px */
}
#my-blog .entry-header-meta .date {
	width: 114px;
}
#my-blog .entry-header-meta .new {
	/* See also #my-blog ul.news_list li > a .new above */
	position: relative;
	width: 112px;
	height: 56px;
	font-size: 143.75%;	/* 23px */
	line-height: 45px;
}
#my-blog .entry-header-meta .new::before {
	border-top: #cbba68 43px solid;
	border-left: #cbba68 56px solid;
	border-right: #cbba68 56px solid;
	border-bottom: transparent 13px solid;
}
#my-blog .entry-header {
}
#my-blog .entry-header .entry-title {
	line-height: 1.278;	/* 46px */
	font-size: 225%;	/* 36px */
	font-weight: 600;
	text-align: center;
}
#my-blog .entry-content {
	font-weight: 600;
}

/* Producer Page Components
----------------------------------------------- */
/* 共通 */
#my-producer .wall {
	width: var(--saf-wall-width);
	margin-left: auto;
	margin-right: auto;
}
/* 一覧 */
#my-producer .intro {
}
#my-producer section.descr {
	color: white;
	background: var(--saf-green);
	text-align: center;
}
#my-producer section.descr_mark {
	text-align: center;
}
#my-producer section.descr_mark .imgonly img {
	width: 55px;
	height: auto;
}
#my-producer .mainlist {
}
#my-producer ul.producer_list {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
#my-producer ul.producer_list li {
	list-style-type: none;
}
#my-producer ul.producer_list li > a {	/* AUG-2022 KAZ: correction */
	display: block;
	color: inherit;
}
@media (any-hover: hover) {	/* AUG-2022 KAZ: correction */
	#my-producer ul.producer_list li > a:hover {
		text-decoration: none;
	}
	#my-producer ul.producer_list li > a:hover h2 {
		text-decoration: underline;
	}
}
#my-producer ul.producer_list li .photo_wrap {
	position: relative;
}
#my-producer ul.producer_list li .photo img {
	width: 100%;
}
#my-producer ul.producer_list li .photo_wrap .video_avail {
	position: absolute;
	left: 10px;
}
#my-producer ul.producer_list li h2 {
	color: var(--saf-darkgreen);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	border-left: solid 8px var(--saf-green);
}
/*#my-producer ul.producer_list li h2 a, #my-producer ul.producer_list li .location a, #my-producer ul.producer_list li ul.product_list a {
 *	display: block;
 *	color: inherit;
 *}
 *#my-producer ul.producer_list li .location a:hover, #my-producer ul.producer_list li ul.product_list a:hover {
 *	text-decoration: none;
 *}
 */
#my-producer ul.producer_list li .location {
}
#my-producer ul.producer_list li ul.product_list {
	margin: 0;
}
#my-producer ul.producer_list li ul.product_list li,
#my-producer.single .entry-content .details ul.product_list li {
	background-color: var(--saf-beige);
}
#my-producer ul.producer_list .linkbtn {
}

/* 個別 */
#my-producer.single article {
}
#my-producer.single h1 {
	color: white;
	background: var(--saf-darkgreen);
	text-align: center;
	letter-spacing: 0.25em;
	line-height: 1.642;
}
#my-producer.single .entry-content {
}
#my-producer.single .entry-content .catchline {
	color: var(--saf-darkgreen);
	text-align: center;
	font-weight: 600;
	border-left: solid 1px;
	border-right: solid 1px;
	border-bottom: solid 1px;
	position: relative;
}
#my-producer.single .entry-content .catchline::after {
	content: "";
	display: block;
	background: url(/images/catchline_arrow.svg)no-repeat center /cover;
	position: absolute;
	left: 50%;
}
#my-producer.single .entry-content .descr {
	font-weight: 600;
	line-height: 2.22;
}
#my-producer.single .entry-content .details {
}
#my-producer.single .entry-content .details .photo {
}
#my-producer.single .entry-content .details .video_avail {
	float: right;
}
#my-producer.single .entry-content .details .name {
}
#my-producer.single .entry-content .details .location {
}
#my-producer.single .entry-content .details .name .label,
#my-producer.single .entry-content .details .location .label {
	display: inline-block;
	color: var(--saf-darkgreen);
	border: solid 1px;
	border-radius: 4px;
}
#my-producer.single .entry-content .details .name .value,
#my-producer.single .entry-content .details .location .value {
	display: inline-block;
	font-weight: 600;
	vertical-align: middle;
}
#my-producer.single .entry-content .details .product_title,
#my-producer.single .entry-content .details ul.product_list {
	font-weight: 600;
}
#my-producer.single .entry-content .details ul.product_list {
	margin-left: 0;
}
#my-producer.single .entry-content .details ul.product_list li {
	list-style: none;
	border-radius: 4px;
	overflow: hidden;
	clear: both;
}
#my-producer.single .entry-content .details ul.product_list li:not(:last-child) {
	margin-bottom: 8px;
}
#my-producer.single .entry-content .details ul.product_list li .product_season {
	display: inline-block;
	float: right;
}
#my-producer.single .entry-content .details .product_details {
}
#my-producer.single .producer_yaoya, #my-producer.single .producer_linkwrap {
	background-color: var(--saf-beige);
}
#my-producer.single .producer_yaoya .sub_title,
#my-producer.single .producer_yaoya h2 {
	font-weight: 600;
	text-align: center;
}
#my-producer.single .producer_yaoya .sub_title {
	margin-bottom: 13px;
	font-size: 112.5%;	/* 18px */
}
#my-producer.single .producer_yaoya h2 {
	position: relative;
	padding-bottom: 30px;
	font-size: 187.5%;	/* 30px */
}
#my-producer.single .producer_yaoya h2::after {
	background-color: black;
	display: block;
	position: absolute;
	width: 40px;
	height: 3px;
	bottom: 0;
	left: calc(50% - 20px);
	content: "";
}
#my-producer.single .producer_yaoya .box {
	background-color: var(--saf-green);
	color: white;
}
#my-producer.single .producer_yaoya .box .title {
	font-weight: 600;
	letter-spacing: 0.25em;
	text-align: center;
}
#my-producer.single .producer_yaoya .box .descr {
	line-height: 1.563;	/* 25px (平均); 30px in design */
}
#my-producer.single .producer_yaoya .howto,
#my-producer.single .producer_yaoya .note,
#my-producer.single .producer_linkwrap .linkbtn {
	text-align: center;
}
#my-producer.single .producer_yaoya .howto,
#my-producer.single .producer_yaoya .note {
	font-weight: 600;
}
#my-producer.single .producer_yaoya .howto {
	line-height: 2.222;	/* 40px */
	font-size: 112.5%;	/* 18px */
}
#my-producer.single .producer_yaoya .note {
	line-height: 1.875;	/* 30px */
}
#my-producer.single .producer_yaoya .linkbtn {
}
#my-producer.single .producer_linkwrap .wall {
}
#my-producer.single .producer_linkwrap .linkbtn a {
	display: inline-block;
	width: 275px;
	line-height: 1.625;	/* 26px */
	font-weight: 600;
	vertical-align: top;
}
#my-producer.single .producer_linkwrap .linkbtn a.gotolist {
	padding: 29px 52px;
	text-align: right;
}
#my-producer.single .producer_linkwrap .linkbtn a.instruction {
	padding: 16px 22px;
	text-align: left;
}
#my-producer.single .producer_linkwrap .linkbtn a::after {
	top: 29px;
}
#my-producer.single .producer_linkwrap .linkbtn a.gotolist::after {
	left: 23px;
	right: auto;
	content: "\f177";
}


/* Recipe Page Components
----------------------------------------------- */
/* 共通 */
#my-recipe .wall {
	width: var(--saf-wall-width);
	margin-left: auto;
	margin-right: auto;
}
/* 一覧 */
#my-recipe .catchline,
#my-recipe ul.creator_list li .restaurant,
#my-recipe ul.creator_list li .name {
	font-weight: 600;
}
#my-recipe ul.recipe_list,
#my-recipe ul.creator_list {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
#my-recipe ul.recipe_list li,
#my-recipe ul.creator_list li {
	list-style-type: none;
}
#my-recipe ul.creator_list li .restaurant,
#my-recipe ul.creator_list li .name {
	text-align: center;
}
#my-recipe ul.creator_list li,
#my-recipe ul.creator_list li .restaurant,
#my-recipe ul.recipe_list li {
	position: relative;
}
#my-recipe ul.creator_list li .photo {
	position: relative;
	margin: 0 auto;
	z-index: 1;
/*	filter: drop-shadow(2px 2px 30px rgba(0,0,0,0.2)); */
}
#my-recipe ul.creator_list li .photo img {
	border-radius: 50%;	/* AUG-2022 KAZ: correction */
	box-shadow: 2px 2px 30px 0 rgba(0,0,0,0.2);	/* AUG-2022 KAZ: correction */
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#my-recipe ul.creator_list li .restaurant {
	color: white;
	background: var(--saf-darkgreen);
}
#my-recipe ul.creator_list li::before,
#my-recipe ul.creator_list li .restaurant::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
}
#my-recipe ul.creator_list li .restaurant::before {
	background: #cbba68;
}
#my-recipe ul.creator_list li .name {
	background: #cbba68;
}
#my-recipe ul.creator_list li .link a,
#my-recipe.single section.creator .link a {
	display: block;
	color: black;
	text-decoration: underline;
}
#my-recipe ul.creator_list li .link a .arrow,
/* #my-recipe ul.creator_list li .link a:hover .arrow, */
#my-recipe.single section.creator .link a .arrow
/* , #my-recipe.single section.creator .link a:hover .arrow, */ {
	display: inline-block;
	text-decoration: none;
	padding-left: 12px;
}
#my-recipe ul.category_menu {
	/* See also #my-blog ul.category_menu above */
}
#my-recipe ul.recipe_list li .photo a {
	display: block;	/* 2024.5 KAZ: debugged */
}
#my-recipe ul.recipe_list li .photo a img {
	width: 100%;
	object-fit: cover;	/* AUG-2022 KAZ: per request */
}
#my-recipe ul.recipe_list li .category a {
	background: var(--saf-darkgreen);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	color: white;
	font-size: 75%;	/* 12px */
	font-weight: 600;
}
#my-recipe ul.recipe_list li h2 a {
	display: block;
	font-weight: 600;
}


/* 個別 */
#my-recipe.single article {
/*	padding-top: 95px; Aki */
}
#my-recipe.single article .category a {
	background: var(--saf-darkgreen);
	display: inline-block;	/* KAZ */
	color: white;
	font-size: 75%;	/* 12px */
	font-weight: 600;
	text-align: center;
}
#my-recipe.single article h1, #my-recipe.single section.creator h2 {
	font-size: 187.5%;	/* 30px */
	line-height: 1.333;
	letter-spacing: 0.25em;
	font-weight: 600;
}
#my-recipe.single article .entry-summary, #my-recipe.single article .entry-content {
	font-size: 112.5%;	/* 18px */
	font-weight: 600;
	line-height: 2.22;
}
#my-recipe.single article .entry-content {
}
#my-recipe.single section.creator {
	background: url(/images/triangle_white.svg)no-repeat center top, url(/images/bg_creaters.png)no-repeat right calc(50% - 385px)  bottom 41px /159px auto var(--saf-beige);
	overflow: hidden;
}
#my-recipe.single section.creator h2 {
	text-align: center;
}
#my-recipe.single section.creator h2::after {
	content: "";
	display: block;
	background: black;
	width: 40px;
	height: 3px;
}
#my-recipe.single section.creator .restaurant {
	position: relative;
	color: white;
	background: var(--saf-darkgreen);
	text-align: center;
	font-size: 150%;	/* 24px */
	font-weight: 600;
	line-height: 52px;
}
#my-recipe.single section.creator .restaurant::before, #my-recipe.single section.creator .restaurant::after {
	content: "";
	display: block;
	width: 57px;
	height: 1px;
	background: white;
	position: absolute;
	top: 25px;
	left: 0;
}
#my-recipe.single section.creator .restaurant::after {
	left: auto;
	right: 0;
}
#my-recipe.single section.creator .name {
	background: #CBBA68;
	text-align: center;
	font-weight: 600;
}
#my-recipe.single section.creator .photo {
}
#my-recipe.single section.creator .photo img {
	width: 100%;
}
#my-recipe.single section.creator .descr {
	font-weight: 600;
}
#my-recipe.single section.creator link a {
}






/* Contact Page Components
----------------------------------------------- */
.required {
	display: inline-block;
	color: white;
	font-size: 87.5%;	/* 14px */
	text-align: center;
	background: var(--saf-green);
	width: 74px;
	line-height: 23px;
	margin-right: 16px;
}
#contact {
}
table.contactform {
	font-size: 112.5%;	/* 18px */
	font-weight: 600;
	border-bottom: 0;
}
table.contactform tr {
}
table.contactform tr#type {
}
table.contactform th, table.contactform td {
	font-weight: 600;
}
table.contactform td {
	border-top: 0;
}
#privacy-policy {
}
#privacy-policy h2 {
	font-size: 175%;	/* 28px */
	letter-spacing: inherit;
	text-align: center;
}
.privacy_wrapper {
	font-weight: 500;
	line-height: 2.22;
	border: solid 1px rgba(0,0,0,0.2);
}
p.accept_line {
	font-size: 112.5%;	/* 18px */
	font-weight: 600;
	text-align: center;
}
table.contactform .wpcf7-list-item {
	display: block;
	margin: 0;
}
table.contactform textarea {
	width: 100%;
}
table.contactform input[type=text], table.contactform input[type=email] {
	height: 50px;
	width: 100%;
}
table.contactform tr#zip input[type=text] {
	width: 33%;
}
.buttons-area {
	text-align: center;
}
.buttons-area-confirm .submit-button input[type=submit], 
.buttons-area input[type=submit],
.buttons-area input.button-proceed, 
.buttons-area-confirm input[type=button],
.buttons-area input[type=button] {
	width: 275px;
	color: var(--saf-darkgreen);
	text-align: left;
	background: url(/images/arrow_right.svg)no-repeat center right 17px white;
	border: solid 1px var(--saf-darkgreen);
	border-radius: 4px;
	padding: 32px 0 31px 24px;
}
.buttons-area input.button-rewrite {
	background: url(/images/arrow_left.svg)no-repeat center left 17px white;
	padding-left: 132px;
}
@media (any-hover: hover) {
	.buttons-area-confirm .submit-button .button-confirm:hover,
	.buttons-area input[type=submit]:hover,
	.buttons-area input.button-proceed:hover,
	.buttons-area-confirm input[type=button]:hover,
	.buttons-area input[type=button]:hover {
		color: white;
		background: url(/images/arrow_right_white.svg)no-repeat center right 17px var(--saf-darkgreen);
	}
	.buttons-area input.button-rewrite:hover {
		background: url(/images/arrow_left_white.svg)no-repeat center left 17px var(--saf-darkgreen);
		padding-left: 132px;
	}
}
.wpcf7-form-control-wrap {
	position: intial;
}
p.accept_agree {
	display: none;
}

#thanks {
	text-align: center;
}
#thanks .descr {
	font-size: 112.5%;	/* 18px */
	font-weight: 600;
	line-height: 2.22;
}
#thanks .descr.sub_text {
	font-size: 100%;
	line-height: 1.875;
	font-weight: 500;
}

/* Aboutus Page Components
----------------------------------------------- */
#introduction {
}
#introduction .intro_img_wrap {
	margin: 0 auto;
	position: relative;
}
#introduction .intro_img_wrap .green_wrap {
	background: var(--saf-green);
	color: white;
	text-align: center;
	position: absolute;
	bottom: 0;
}
#introduction .intro_img_wrap .green_wrap .text {
	font-size: 162.5%;
	line-height: 1.38;
}
#introduction .intro_img_wrap .green_wrap .text::before {
	content: "";
	display: block;
	height: 1px;
	background: white;
}
#introduction .message_wrap {
	position: relative;
}
#introduction .message_wrap h2,
#introduction .message_wrap .descr {
	font-weight: 600;	/* KAZ */
}
#introduction .message_wrap .descr {
	font-size: 112.5%;	/* 18px */
	line-height: 2.22;
}
#introduction .imgonly#intro_cicle {
	text-align: center;
	margin: 0 auto;
}
#introduction  .descr#nature_cicle {
	margin: 0 auto;
	background: var(--saf-beige);
	line-height: 1.875;
	position: relative;
}
#introduction  .descr#nature_cicle::after {
	content: "";
	display: block;
	background: var(--saf-beige);
	width: 4px;
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
}
#attempt {
	position: relative;
}
#attempt h2,
#attempt .descr#attempt_message {
	font-weight: 600;	/* KAZ */
}
#attempt h2 {
	text-align: center;
}
#attempt h2::before {
	content: "";
	display: block;
	background: url(/images/img_tree.svg)no-repeat center /cover;
	position: absolute;
}
#attempt .descr#attempt_message {
	font-size: 112.5%;	/* 18px */
	text-align: center;
	line-height: 2.22;
}
#attempt .wrapper {
	color: white;
	background: var(--saf-green);
	position: relative;
}
#attempt .wall .ttl {
	font-size: 175%;	/* 28px */
	font-weight: 600;
	line-height: 1.642;
}
#attempt .wall .descr {
	font-size: 112.5%;	/* 18px */
	line-height: 2.22;
}
#attempt .imgonly#wall_after {
	position: absolute;
}
#experience {
}
#experience h3 {
	font-size: 175%;	/* 28px */
	text-align: center;
	font-weight: 600;
	color: white;
	background: var(--saf-green);
}
#experience .wrapper01, #experience .wrapper02 {
	position: relative;
}
#experience .wrapper01 {
	background: var(--saf-beige);
}
#experience .wrapper01 .imgonly, #experience .wrapper02 .imgonly, #experience .imgonly.sponly#expe_img02_sp {
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
}
#experience .wrapper01 .ttl, #experience .wrapper02 .ttl {
	font-size: 175%;	/* 28px */
	font-weight: 600;
	line-height: 1.64;
}
#experience .wrapper01 .descr, #experience .wrapper02 .descr  {
	font-size: 112.5%;	/* 18px */
	font-weight: 600;	/* KAZ */
	line-height: 2.22
}
#experience .wrapper02 {
	background: var(--saf-lightpink);
}
#experience .wrapper02 .imgonly {
}
#experience .note {
	font-size: 112.5%;	/* 18px */
	text-align: center;
	font-weight: 900;
	line-height: 2.22;
	color: #2A3E21;
}
#experience .imgonly#expe_img03 {
}
#greeting {
	clear: both;
}
#greeting h2,	/* KAZ */
#greeting .descr#message {
	font-weight: 600;
}
#greeting .descr#message {
	font-size: 112.5%;	/* 18px */
	line-height: 2.22;
}
#greeting .imgonly {
}
#greeting .descr#name {
	font-size: 112.5%;	/* 18px */
	font-weight: 900;
}
#greeting .aboutnakano {
	font-size: 112.5%;	/* 18px */
	font-weight: 600;
	line-height: 2.22;
	background: var(--saf-beige);
}
#greeting .aboutnakano .ttl {
	display: inline-block;
	width: 130px;
	padding-right: 20px;
	text-align:justify;
	text-align-last:justify;
	text-justify:inter-ideograph
}
#greeting .aboutnakano .detail {
}


/* Yaoya Page Components
----------------------------------------------- */
ul.yaoya_menu {
	list-style: none;
}
ul.yaoya_menu > li {
}
ul.yaoya_menu > li a {
	display: block;
	color: black;
	font-size: 112.5%;	/* 18px */
	font-weight: 600;
	text-align: center;
	border: solid 1px;
	border-radius: 4px;
}
@media (any-hover: hover) {
	ul.yaoya_menu > li a::hover {
		text-decoration: none;
	}
}
#my-yaoya .descr {
	font-size: 112.5%;	/* 18px */
	font-weight: 600;
	line-height: 2.22;
}
#my-yaoya .descr.sub_text {
	font-size: 100%;
	font-weight: 400;
	line-height: 1.875;
}
#my-yaoya section h2 {
	text-align: center;
}
#my-yaoya section h2::after {
	content: url(/images/yaoya_arrow_black.svg);
	display: block;
	margin: 10px 0 0;
}
#yaoya_intro {
}
#my-yaoya section#yaoya_intro h2::after {
	content: url(/images/yaoya_arrow_white.svg);
}
#yaoya_intro .descr {
}
#yaoya_intro .imgonly#img01 {
}
#yaoya_intro .wrapper_whatis {
	color: white;
	background: var(--saf-green);
}
#yaoya_intro .imgonly#arrow {
	text-align: center;
}
#yaoya_intro .wrapper_whatis .ttl {
	font-size: 150%;	/* 24px */
	line-height: 1.66;
	text-align: center;
}
#yaoya_intro .wrapper_whatis .descr#note {
	text-align: center;
}
#yaoya_intro .wrapper_whatis .descr#aboutvideo {
}
#yaoya_intro .wrapper_whatis .descr#aboutmark {
}
#yaoya_intro .imgonly#img03 {
}
#yaoya_intro .imgonly#img04 {
}
#yaoya_intro .imgonly#mark {
}
#yaoya_payment {
	background: var(--saf-lightpink);
}
#yaoya_payment .wall, #yaoya_order .wall {
	background: white;
}
#yaoya_payment .wrap_price {
}
#yaoya_payment .wrap_price dt {
	color: white;
	font-size: 125%;	/* 20px */
	font-weight: 600;
	text-align: center;
	background: var(--saf-green);
	width: 246px;
	line-height: 73px;
	border-radius: 38px;
}
#yaoya_payment .wrap_price dt#size {
	background: #655146;
}
#yaoya_payment .wrap_price dd {
	font-size: 150%;
	font-weight: 600;
	line-height: 1.66;
	margin-bottom: 0;
}
#yaoya_payment .wrap_price .imgonly {
}
#yaoya_payment .wrap_payment {
	padding-top: 50px;
	margin-top: -50px;
}
#yaoya_payment .descr.left_wrap {
}
#yaoya_payment .right_wrap {
}
#yaoya_payment .right_wrap ul {
	list-style: none;
	font-size: 112.5%;	/* 18px*/
	line-height: 1.77;
	background: var(--saf-beige);
	padding: 25px 0 0 25px;
	margin: 0;
}
#yaoya_payment .right_wrap ul > li {
	position: relative;
	padding-bottom: 20px;
	font-weight: 600;	/* KAZ */
}
#yaoya_payment .right_wrap ul > li:last-child {
	padding-bottom: 15px;
}
#yaoya_payment .right_wrap ul > li:first-child {
	padding-bottom: 35px;
}
#yaoya_payment .right_wrap ul > li .number {
	display: inline-block;
	width: 40px;
	height: 40px;
	border: solid 2px;
	border-radius: 50%;
	text-align: center;
	float: left;
	padding: 2px;
	margin-right: 4px;
}
#yaoya_payment .right_wrap ul > li .text {
	display: block;
	overflow: hidden;
}
#yaoya_payment .right_wrap ul > li:not(:first-child)::before {
	content: "\f175";
	display: block;
	font-family: FontAwesome;
	position: absolute;
	left: 15px;
	top: -35px;
}
#yaoya_payment .right_wrap ul > li:nth-child(3)::before {
	top: -40px;
}
#yaoya_payment .right_wrap ul > li:nth-child(4)::before {
	top: -50px;
}
#yaoya_payment .right_wrap .descr.sub_text {
}
#linktoshop {
}
#linktoshop .banner a, #producer_onlinestore .banner a {
	display: block;
	color: inherit;		/* KAZ */
}
@media (any-hover: hover) {
	#linktoshop .banner a:hover, #producer_onlinestore .banner a:hover {
		text-decoration: none;
	}
}
#linktoshop .banner .descr, #producer_onlinestore .banner .descr {
	line-height: 1.8;
}
#linktoshop .banner .ttl, #producer_onlinestore .banner .ttl {
	display: block;
	font-size: 275%;	/* 44px */
}
#yaoya_order {
	background: var(--saf-beige);
}
#yaoya_order .wrapper {
}
#yaoya_order .wrapper#step1 {
	background-image: url(/images/yaoya_order_img01.png);
	background-repeat: no-repeat;
}
#yaoya_order .wrapper#step2 {
}
#yaoya_order .wrapper#step3 {
}
#yaoya_order .imgonly.banner_wrap {
}
.imgonly .bn_app {
	width: 180px;
	height: auto;
}
.imgonly .bn_google {
	width: 218px;
	height: auto;
}
#yaoya_order .blank_link {
}
#yaoya_order .blank_link a {
	color: inherit;
	display: inline-block;
	background: url(/images/icon_blank.svg)no-repeat top 20px right 16px white;
	border: solid 1px;
	padding: 33px 28px 30px 27px;
	position: relative;
	z-index: 1;
}
@media (any-hover: hover) {
	#yaoya_order .blank_link a:hover {
		text-decoration: none;
	}
}
#yaoya_order .blank_link::before {
	content: "";
	display: block;
	border: solid 1px;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 4px;
	right: -4px;
}
#yaoya_order .ttl.app::before {
	content: "";
	display: inline-block;
	background-repeat: no-repeat;
	background-size: cover;
	width: 55px;
	height: 55px;
}
#yaoya_order .wrap_messenger, #yaoya_order .wrap_line {
	position: relative;
}
#yaoya_order .wrap_messenger {
}
#yaoya_order .wrap_messenger .ttl.app::before {
	background-image: url(/images/icon_messenger.png);
}
#yaoya_order .wrap_line {
}
#yaoya_order .wrap_line .ttl.app::before {
	background-image: url(/images/icon_line.png);
}
#yaoya_order .descr.sub_text.link_howtopay a {
	font-size: 88.9%;	/* 18px → 16px*/
	text-decoration: underline;
	color: inherit;
}
#yaoya_delivery {
}
#yaoya_delivery .delivery_wrap1 {
}
#yaoya_delivery .price_wrap {
}
#yaoya_delivery .price_wrap::before {
	content: "";
	display: inline-block;
}
#yaoya_delivery .linkbtn a {
	width: 310px;
}






/* =Responsive
----------------------------------------------- */
/* General breakpoint for PC */
@media print, screen and (min-width: 768px) {
	.sponly {
		display: none !important;
	}

	/* Structure */
	body {
	}
	#masthead,
	#headmenu {
		padding-top: 42px;
	}
	#masthead {
		background-color: white;
		width: 290px;
		height: 209px;
	}
	#my-top #masthead {
		width: auto;
		height: auto;
		padding-top: 0;
	}

	/* Header */
	#my-top #headlogo,
	#my-top #menu_btn,
	#my-top #menu_close_btn {
		display: none;
	}
	#menu_btn a {
		padding: 10px;
	}
	#headmenu {
		width: 345px;
/*		height: 731px; */
		padding-bottom: 29px;
	}
	#my-top #headmenu {
		background-color: transparent;
		display: block !important;
		scrollbar-width: none;	/* Firefox */
	}
	#my-top #headmenu::-webkit-scrollbar {	/* Chromium */
		display: none;
	}
	#menu_close_btn {
		right: 0;
	}
	#menu_close_btn a {
		width: 46px;
		height: 46px;
		padding-top: 14px;
	}
	#menulogo {
		margin-bottom: 22px;
		line-height: 34px;
	}
	#menulogo a {
		display: block;
		padding-left: 45px;
	}
	#menulogo a img.logomark {
		width: 54px;
		height: auto;
		margin: -1px 11px -3px -6px;
	}
	#headmenu ul#gnavi {
		padding: 0 20px 0 32px;
	}
	#headmenu ul#gnavi li.sns {
		padding-left: 25px;
	}
	#headmenu ul#gnavi li a {
		height: 62px;
	}
	#headmenu ul#gnavi li.sns a {
		vertical-align: bottom;
	}

	/* Content */

	/* Navigation */
	.nav-previous.linkbtn a,
	.nav-next.linkbtn a {
		width: 200px;	/* KAZ */
	}
	.nav-gotolist.linkbtn a {
		margin-top: 78px;
	}
	#content div.wp-pagenavi {
		margin: 73px 0 20px;
	}
	#content div.wp-pagenavi a,
	#content div.wp-pagenavi span {
		min-width: 52px;
		margin: 0 9px;
		padding: 0 14px;
		line-height: 50px;
		font-size: 18px;
	}

	/* Footer */
	body:not(#my-top) #colophon {
		padding-top: 217px;
	}
	#my-top #colophon {
		background: none;
		position: fixed;
		bottom: 0;
		left: 0;
	}
	#footlogo a {
		width: 266px;
	}
	#footmenu {
		display: flex;
		align-items: flex-end;
		font-size: 87.5%;	/* 14px */
	}
	#ft_onlinestore {
		padding: 0 22px 12px 59px;	/* KAZ: left was 60px */
	}
	#ft_onlinestore a {
		width: 193px;
		height: 151px;
		padding-top: 95px;
		padding-right: 38px;
		line-height: 56px;
	}
	#ft_sns {
		width: 101px;	/* KAZ: added for Safari */
		padding-bottom: 8px;
	}
	body:not(#my-top) #ft_copyright {
		padding: 19px 23px 20px;
	}
	#my-top #ft_copyright {
		padding: 10px 23px;
	}

	/* Front Page Components
	----------------------------------------------- */
	#my-top,
	#my-top #content,
	#my-top #content .slick-list,
	#my-top #content .slick-slide,
	#my-top #content section.snap,
	#my-top #content section.snap .bglayer,
	#my-top #content section.snap .bgimage,
	#my-top #content section.snap .wall {
		height: var(--viewheight);
		min-height: 400px;
	}
	#my-top.admin-bar,
	#my-top.admin-bar #content,
	#my-top.admin-bar #content .slick-list,
	#my-top.admin-bar #content .slick-slide,
	#my-top.admin-bar #content section.snap,
	#my-top.admin-bar #content section.snap .bglayer,
	#my-top.admin-bar #content section.snap .bgimage,
	#my-top.admin-bar #content section.snap .wall {
		height: calc(var(--viewheight) - var(--wp-admin-bar-height));
	}
	#my-top #top_loading {
		min-height: 400px;
	}
	#my-top #top_loading .bglayer {
		height: 900px;
	}
	#my-top #top_loading #top_loading_img01 {
		background-image: url(/images/loading01.png);
	}
	#my-top #top_loading #top_loading_img03 {
		background-image: url(/images/loading03.png);
	}
	#my-top #top_loading #top_loading_img04 {
		background-image: url(/images/loading04.png);
	}
	#my-top #top_loading #top_loading_img06 {
		background-image: url(/images/loading06.png);
	}
	#my-top #top_loading #top_loading_img07 {
		background-image: url(/images/loading07.png);
	}
	#my-top #top_loading #top_loading_img08 {
		background-image: url(/images/loading08.png);
	}
	#my-top #top_loading #top_loading_img09 {
		background-image: url(/images/loading09.png);
	}
	#my-top #top_loading #top_loading_img23 {
		background-image: url(/images/loading23.png);
	}
	#my-top #top_loading #top_loading_img25 {
		background-image: url(/images/loading25.png);
	}
	#my-top #top_loading #top_loading_skipbtn {
		bottom: 7.31%;		/* 79 / 1080 */
	}
	#my-top #top_loading #top_loading_skipbtn.shifted {
		left: auto;
		right: 4.17%;
	}
	#my-top #headmenu {
		max-height: calc(var(--viewheight) - 44px);
	}
	#my-top.admin-bar #headmenu {
		max-height: calc(var(--viewheight) - 44px - var(--wp-admin-bar-height));
	}
	#my-top #content section.snap .wall {
		margin: 0 345px;
/*		margin: 0 17.97%; */
	}
	#my-top #content section.snap h2 {
		margin-bottom: 4.63vh;	/* 50 / 1080 */
		padding-bottom: 3.24vh;	/* 35 / 1080 */
		line-height: 1.5;	/* 45px */
		font-size: clamp(125%, 1.56vw, 187.5%);	/* 20 - 30px */
	}
	#my-top #content section.snap .catchline {
		margin-bottom: 2.41vh;	/* 26 / 1080 */
		line-height: 1.524;	/* 64px */
		font-size: clamp(162.5%, 2.19vw, 262.5%);	/* 26 - 42px */
	}
	#my-top #content section.snap .descr {
		margin-bottom: 1.48vh;	/* 16 / 1080 */
		line-height: 1.667;	/* 40px */
		font-size: clamp(100%, 1.25vw, 150%);	/* 16 - 24px */
	}
	#my-top #content section.snap .readmore {
		font-size: clamp(87.5%, 0.94vw, 112.5%);	/* 14 - 18px */
	}
	#my-top #content section.snap .readmore a {
		width: 14.74vw;		/* 283 / 1920 */
		min-width: 177px;
		height: 10.05vw;	/* 193 / 1920 */
		min-height: 121px;
		padding-top: max(6.51vw, 78px);	/* 125 / 1920 */
		line-height: max(3.54vw, 43px);	/* 68 / 1920 */
	}
	#my-top #content .slick-dots {
		bottom: 8.98%;	/* 97 / 1080; OCT/NOV-2022 KAZ: was bottom: 3.52% = 38 / 1080 */
	}
	#top_news {
		position: absolute;
		width: 775px;	/* OCT/NOV-2022 KAZ: was 470px */
		height: 80px;	/* OCT/NOV-2022 KAZ: was 106px */
		right: 0;
		transition: bottom 0.3s ease-out;	/* OCT/NOV-2022 KAZ */
	}
	#top_news.closed {	/* OCT/NOV-2022 KAZ */
		bottom: -80px;
	}
	#top_news h2,
	#top_news h2 a {	/* OCT/NOV-2022 KAZ */
		height: 100%;
	}
	#top_news h2 {
		float: left;	/* OCT/NOV-2022 KAZ */
		width: 180px;	/* OCT/NOV-2022 KAZ: was 124px */
		line-height: 80px;	/* OCT/NOV-2022 KAZ */
		font-size: 112.5%;	/* 18px; OCT/NOV-2022 KAZ */
		letter-spacing: 0.1em;	/* OCT/NOV-2022 KAZ */
	}
	#top_news h2 a img {
		width: 93px;	/* OCT/NOV-2022 KAZ: was 117px */
		height: auto;
		margin: 0 -17px 0 -5px;	/* OCT/NOV-2022 KAZ: was -3px -5px -11px 12px */
		vertical-align: -22px;	/* OCT/NOV-2022 KAZ */
	}
/*	#top_news .entry {
 *		margin-left: 124px;
 *		padding-top: 10px;
 *		padding-left: 23px;
 *	}
 *	#top_news .entry .arrow {
 *		width: 89px;
 *		padding-top: 25px;
 *		padding-left: 20px;
 *		line-height: 33px;
 *		font-size: 112.5%;	/$ 18px $/
 *	}
 *	#top_news .entry .arrow a {
 *		width: 37px;
 *		height: 37px;
 *	}
 *	#top_news .entry .arrow a img {
 *		vertical-align: 2px;	/$ KAZ: ChkHTML $/
 *	}
 *	#top_news .entry .category,
 *	#top_news .entry .date {
 *		margin-bottom: 7px;
 *	}
 *	#top_news .entry .category {
 *		margin-right: 19px;
 *		font-size: 87.5%;	/$ 14px $/
 *	}
 *	#top_news .entry .date {
 *	}
 *	#top_news .entry .title {
 *		line-height: 1.875;	/$ 30px $/
 *	}
 *	#top_news .entry .title a {
 *		height: 3.75em;
 *	}
 */	/* OCT/NOV-2022 KAZ: c/o */
	#top_news .openclose {	/* OCT/NOV-2022 KAZ */
		background-color: white;
		position: absolute;
		top: -36px;
		right: 0;
	}
	#top_news .openclose a {	/* OCT/NOV-2022 KAZ */
		display: block;
		width: 36px;
		height: 36px;
		line-height: 36px;
		color: var(--saf-darkgreen);
		font-size: 125%;	/* 20px */
		font-weight: 900;
		text-align: center;
		vertical-align: middle;
	}
	@media (any-hover: hover) {
		#top_news .openclose a:hover {	/* OCT/NOV-2022 KAZ */
			text-decoration: none;
		}
	}
	#top_news > .arrow {	/* OCT/NOV-2022 KAZ */
	}
	#top_news > .arrow a {	/* OCT/NOV-2022 KAZ */
		width: 62px;
		height: 80px;
		line-height: 80px;
	}
	#top_news > .arrow a img {	/* OCT/NOV-2022 KAZ */
		width: 18px;
		vertical-align: 2px;
	}
	#top_news .news-slider-wrapper,
	#top_news .news-slider-wrapper .news-slider {	/* OCT/NOV-2022 KAZ */
		height: 40px;
	}
	#top_news .news-slider-wrapper {	/* OCT/NOV-2022 KAZ */
		margin: 20px 62px 20px 200px;
	}
	#top_news .news-slider-wrapper .news-slider {	/* OCT/NOV-2022 KAZ */
		line-height: 40px;
		font-size: 125%;	/* 20px */
	}
	#top_news .news-slider-wrapper .news-slider a {	/* OCT/NOV-2022 KAZ */
	}

	/* Page header Components
	----------------------------------------------- */
	body.page .entry-header,
	.page-header {
		height: 440px;
		padding-top: 320px;
	}
	body.page .entry-header h1.entry-title,
	.page-header .page-title {
		width: 620px;
		padding: 60px 0 30px;
	}


	/* Fixed Page Components
	----------------------------------------------- */
	body.page .entry-content {
		padding-top: 82px;
	}
	section .wall h2 {
		font-size: 225%;	/* 36px */
		letter-spacing: 0.25em;
		font-weight: 600;
		margin-bottom: 25px;
	}
	h3.lined {
		line-height: 48px;
		margin-bottom: 40px;
	}
	h4.colored {
		line-height: 70px;
		padding-left: 28px;
		margin-bottom: 25px;
	}
	h4.colored .number {
		padding-right: 16px;
	}
	h4.colored .ttl {
	}


	/* Blog Page Components
	----------------------------------------------- */
	/* 共通 */
	#my-blog .wall {
		padding: 70px 0 110px;
	}
	#my-blog .news_sns {
	}
	#my-blog .news_sns h2 {
		margin-bottom: 38px;
	}
	#my-blog .news_sns .facebook,
	#my-blog .news_sns .instagram {
		padding-top: 52px;	/* KAZ: ChkHTML; was 58px */
	}
	#my-blog .news_sns .facebook {
		float: right;
		width: calc(50% - 135px);
		padding-right: calc(50% - 500px);
	}
	#my-blog .news_sns .facebook .feed iframe {
		width: 365px;
	}
	#my-blog .news_sns .instagram {
		margin-bottom: 53px;
		margin-right: calc(50% - 40px);
		padding-bottom: 67px;
		padding-left: calc(50% - 500px);
		padding-right: 44px;
	}
	#my-blog .news_sns .instagram h2 {
		clear: none;
	}
	#my-blog .news_sns .instagram #sb_instagram {
		margin: -8px;
	}
	#my-blog .news_sns .instagram #sb_instagram .sbi_follow_btn {
		margin: -60px 0 0;
	}
	/* 一覧 */
	#my-blog ul.category_menu {
		margin-bottom: 62px;
	}
	#my-blog ul.category_menu li:not(:first-child) {
		margin-left: 20px;
	}
	#my-blog ul.category_menu li a,
	#my-recipe ul.category_menu li a {
		height: 48px;
		line-height: 46px;
	}
	#my-blog ul.category_menu li a {
		width: 200px;
	}
	#my-blog .archive_menu {
		position: relative;
		width: 330px;
		margin-bottom: 81px;
		z-index: 100;
	}
	#my-blog .archive_menu .heading a {
	}
	#my-blog .archive_menu .heading a::after {
		margin-left: 34px;
	}
	#my-blog .archive_menu ul {
		position: absolute;
		width: 100%;
		top: 44px;
		left: 0;
	}
	#my-blog ul.news_list li {
		width: 320px;
	}
	#my-blog ul.news_list li:not(:nth-child(3n+1)) {
		margin-left: 20px;
	}
	/* 個別 */
	#my-blog .entry-header-meta {
		float: left
	}
	#my-blog .entry-header-meta .date {
		margin-bottom: 17px;
	}
	#my-blog .entry-header {
		width: 700px;
		min-height: 135px;
		margin: 0 auto 74px;
	}
	#my-blog .entry-header .entry-title {
		clear: none;
	}
	#my-blog .entry-content,
	#my-blog #nav-single {
		width: 860px;
		margin-left: auto;
		margin-right: auto;
	}
	#my-blog .entry-content {
		line-height: 2.222;	/* 40px */
		font-size: 112.5%;	/* 18px */
	}
	#my-blog #nav-single,
	#my-blog .nav-gotolist {
		margin-top: 81px;
	}
	#my-blog .nav-gotolist {
		margin-bottom: 76px;
	}


	/* Producer Page Components
	----------------------------------------------- */
	/* 共通 */
	/* 一覧 */
	#my-producer .intro, #my-producer section.descr {
		font-size: 175%;	/* 28px */
		font-weight: 600;
		line-height: 1.642;
	}
	#my-producer .intro {
		background: url(/images/producer_img01.svg)no-repeat top 90px right calc(50% - 250px), url(/images/producer_img02.jpg)no-repeat left bottom 106px /41.3% auto;
		padding: 75px 0 605px;
	}
	#my-producer section.descr {
		padding: 40px 0 45px;
	}
	#my-producer section.descr_mark {
		padding-top: 40px;
	}
	#my-producer section.descr_mark .imgonly img {
		vertical-align: middle;
	}
	#my-producer .mainlist {
		padding: 40px 0 0;	/* KAZ: bottom was 120px *//* 08.2022 Aki top was 120px */
	}
	#my-producer ul.producer_list {
		margin-bottom: -75px;	/* KAZ */
	}
	#my-producer ul.producer_list li {
		width: 440px;
		margin-bottom: 120px;
	}
	#my-producer ul.producer_list li:nth-child(2n) {
		margin-left: 120px;
	}
	#my-producer ul.producer_list li .photo {
		width: 440px;
		height: 280px;
		overflow: hidden;
		margin-bottom: 20px;
	}
	#my-producer ul.producer_list li .photo img {
		object-fit: cover;
	}
	#my-producer ul.producer_list li .photo_wrap .video_avail {
		bottom: 30px;
	}
	#my-producer ul.producer_list li h2 {
		font-size: 175%;	/* 28px */
		padding: 4px 0 4px 13px;
		margin-bottom: 11px;
	}
	#my-producer ul.producer_list li .location {
		padding-bottom: 13px;
	}
	#my-producer ul.producer_list li ul.product_list {
		min-height: 114px;	/* KAZ */
	}
	#my-producer ul.producer_list li ul.product_list li,
	#my-producer.single .entry-content .details ul.product_list li {
		margin-bottom: 0;
/*		padding: 2px 0 2px 10px; */
		padding-left: 10px;	/* KAZ */
		line-height: 32px;	/* KAZ: moved */
		font-size: 112.5%;	/* 18px */
		font-weight: 600;
	}
	#my-producer ul.producer_list li ul.product_list li:not(:last-child) {
		margin-bottom: 9px;
	}
	#my-producer ul.producer_list li ul.product_list li:nth-child(2n) {
		margin-left: 0;
	}
	#my-producer ul.producer_list .linkbtn {
		padding-top: 50px;
	}


	/* 個別 */
	#my-producer.single article {
		padding-top: 55px;
	}
	#my-producer.single h1 {
		font-size: 225%;	/* 36px */
		padding: 32px 0 35px;
	}
	#my-producer.single .entry-content {
	}
	#my-producer.single .entry-content .catchline {
		font-size: 175%;	/* 28px */
		line-height: 1.642;
		padding: 20px 0 22px;
	}
	#my-producer.single .entry-content .catchline::after {
		width: 19px;
		height: 18px;
		bottom: -18px;
	}
	#my-producer.single .entry-content .descr {
		font-size: 112.5%;	/* 18px */
		padding: 45px 0 40px;
	}
	#my-producer.single .entry-content .details {
		width: 640px;
		margin: 0 auto;
	}
	#my-producer.single .entry-content .details .photo {
		padding-bottom: 21px;
		margin: 0 auto;
	}
	#my-producer.single .entry-content .details .video_avail {
		padding-top: 22px;
	}
	#my-producer.single .entry-content .details .name {
		margin-bottom: 12px;
	}
	#my-producer.single .entry-content .details .location {
	}
	#my-producer.single .entry-content .details .name .label,
	#my-producer.single .entry-content .details .location .label {
		line-height: 38px;
		padding: 0 16px;
		margin-right: 21px;
	}
	#my-producer.single .entry-content .details .name .value,
	#my-producer.single .entry-content .details .location .value {
		font-size: 150%;	/* 24px */
	}
	#my-producer.single .entry-content .details .product_title {
		padding-top: 37px;
		padding-bottom: 8px;
		font-size: 112.5%;	/* 18px */
	}
	#my-producer.single .entry-content .details ul.product_list {
	}
	#my-producer.single .entry-content .details ul.product_list li {
/*		line-height: 32px; */	/* KAZ: moved above */
	}
	#my-producer.single .entry-content .details ul.product_list li .product_season {
		padding-right: 95px;
	}
	#my-producer.single .entry-content .details .product_details {
		padding-top: 15px;
		line-height: 1.875;
	}
	#my-producer.single .entry-content #producer_onlinestore {
		padding: 70px 0 90px;
	}
	#my-producer.single .producer_yaoya {
	}
	#my-producer.single .producer_yaoya .wall {
		padding: 83px 0 30px;	/* Aki bottom was 88px */
	}
	#my-producer.single .producer_yaoya .sub_title {
	}
	#my-producer.single .producer_yaoya h2 {
		margin-bottom: 46px;
	}
	#my-producer.single .producer_yaoya .box {
		margin: 0 80px 50px;
		padding: 37px 100px 45px;
	}
	#my-producer.single .producer_yaoya .box .title {
		margin-bottom: 24px;
		font-size: 225%;	/* 36px */
	}
	#my-producer.single .producer_yaoya .contact {
		margin: 0 80px 44px;
	}
	#my-producer.single .producer_yaoya .contact .messenger,
	#my-producer.single .producer_yaoya .contact .line {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 50%;
		height: 100px;
	}
	#my-producer.single .producer_yaoya .contact .messenger {
		border-right: black 1px solid;
		float: left;
		padding-right: 39px;
	}
	#my-producer.single .producer_yaoya .contact .line {
		margin-left: 50%;
		padding-left: 20px;
	}
	#my-producer.single .producer_yaoya .contact .messenger img.icon,
	#my-producer.single .producer_yaoya .contact .line img.icon {
		width: 83px;
		height: auto;
	}
	#my-producer.single .producer_yaoya .contact .messenger span.text,
	#my-producer.single .producer_yaoya .contact .line span.text {
		display: inline-block;
		padding: 0 20px;
		line-height: 1.875;	/* 30px */
	}
	#my-producer.single .producer_yaoya .contact .messenger img.qrcode,
	#my-producer.single .producer_yaoya .contact .line img.qrcode {
		width: 93px;
		height: auto;
	}
	#my-producer.single .producer_yaoya .howto {
		margin-bottom: 3px;
	}
	#my-producer.single .producer_yaoya .note {
		margin-bottom: 60px;
	}
	#my-producer.single .producer_yaoya .linkbtn a {
	}
	#my-producer.single .producer_linkwrap {
		margin-top: -30px;
	}
	#my-producer.single .producer_linkwrap .wall {
		padding: 0 0 88px;
	}
	#my-producer.single .hentry + .producer_linkwrap .wall {
		padding: 60px 0;	/* KAZ: ビデオ通話非対応のとき */
	}
	#my-producer.single .producer_linkwrap .linkbtn a.gotolist {
		margin-right: 100px;
	}


	/* Recipe Page Components
	----------------------------------------------- */
	/* 共通 */
	/* 一覧 */
	#my-recipe .catchline {
		font-size: 175%;	/* 28px */
		line-height: 1.642;
		padding: 70px 0 75px;
	}
	#my-recipe ul.creator_list {
		justify-content: space-between;
		padding-bottom: 75px;
	}
	#my-recipe ul.creator_list li .photo {
/*		border-radius: 50%; */	/* AUG-2022 KAZ: moved to img of common rules */
/*		overflow: hidden; */
		width: 150px;
		height: 150px;
	}
	#my-recipe ul.creator_list li::before,
	#my-recipe ul.creator_list li .restaurant::before {
		width: 185px;
	}
	#my-recipe ul.creator_list li::before {
		border: solid 55px transparent;
		border-bottom: solid 27px #CBBA68;
		top: 35px;
	}
	#my-recipe ul.creator_list li .restaurant,
	#my-recipe ul.creator_list li .name {
		width: 185px;
		font-size: 112.5%;	/* 18px */
	}
	#my-recipe ul.creator_list li .restaurant {
		padding: 16px 0 13px;
		margin-top: -10px;
	}
	#my-recipe ul.creator_list li .restaurant::before {
		height: 23px;
		top: -23px;
	}
	#my-recipe ul.creator_list li .name {
		padding: 8px 0 13px;
	}
	#my-recipe ul.creator_list li .link a {
		padding-top: 13px;
	}
	#my-recipe ul.category_menu {
		/* See also #my-blog ul.category_menu above */
		padding-top: 250px;
		margin-top: -250px;
		margin-bottom: 60px;
	}
	#my-recipe ul.category_menu li:not(:first-child) {
		margin-left: 10px;
	}
	#my-recipe ul.category_menu li a {
		width: 158px;
	}
	#my-recipe ul.recipe_list li {
		width: 316px;
		margin-bottom: 46px;	/* Aki was 120px */
	}
	#my-recipe ul.recipe_list li:not(:nth-child(3n+1)) {
		margin-left: 26px;
	}
	#my-recipe ul.recipe_list li .photo a img {
		height: 260px;	/* AUG-2022 KAZ: per request */
	}
	#my-recipe ul.recipe_list li .category a {
		line-height: 25px;
		padding: 0 47px;
	}
	#my-recipe ul.recipe_list li h2 a {
		font-size: 112.5%;	/* 18px */
		padding-top: 20px;
	}

	/* 個別 */
	#my-recipe.single article {
		padding: 95px 0;
	}
	#my-recipe article .category a {
		width: 140px;	/* KAZ */
/*		padding: 0 47px; */
		line-height: 25px;
	}
	#my-recipe.single article h1 {
		padding: 30px 0 35px;
	}
	#my-recipe.single article .entry-summary {
		padding-bottom: 55px;
	}
	#my-recipe.single article .entry-content {
		width: 77.3%;
		margin: 0 auto;
	}
	#my-recipe.single article .entry-content img {
		padding-bottom: 20px;
	}
	#my-recipe.single section.creator {
		padding: 85px 0;
		margin-bottom: 91px;
	}
	#my-recipe.single section.creator .wall {
		width: 626px;
	}
	#my-recipe.single section.creator h2 {
	}
	#my-recipe.single section.creator h2::after {
		margin: 23px auto 55px;
	}
	#my-recipe.single section.creator .restaurant {
		width: 365px;
		float: left;
	}
	#my-recipe.single section.creator .restaurant::before, #my-recipe.single section.creator .restaurant::after {
		top: 25px;
	}
	#my-recipe.single section.creator .name {
		font-size: 112.5%;	/* 18px */
		line-height: 52px;
	}
	#my-recipe.single section.creator .photo {
		width: 204px;
		height: auto;
		padding-top: 35px;
		float: right;
	}
	#my-recipe.single section.creator .photo img {
		width: 100%;
	}
	#my-recipe.single section.creator .descr {
		font-size: 112.5%;	/* 18px */
		line-height: 2.22;
		padding-top: 35px;
		padding-right: 245px;
	}
	#my-recipe.single section.creator link a {
	}
	#my-recipe.single #content #nav-single {	/* KAZ */
		width: 860px;
		margin-left: auto;
		margin-right: auto;
	}


	/* Contact Page Components
	----------------------------------------------- */
	#contact {
		padding-bottom: 65px;
	}
	table.contactform {
	}
	table.contactform tr {
	}
	table.contactform th {
		width: 37.5%;
		padding: 15px 0 15px 55px;
	}
	table.contactform tr.single-line th {
		padding-top: 25px;
	}
	table.contactform th.norequired {
		padding-left: 145px;
	}
	table.contactform td {
		padding-top: 15px;
		padding-bottom: 28px;
	}
	table.contactform tr#type td {
		padding-bottom: 58px;
	}
	#privacy-policy {
	}
	#privacy-policy h2 {
	}
	.privacy_wrapper {
		padding: 25px 60px 0;
	}
	p.accept_line {
		padding: 65px 0 50px;
	}
	table.contactform .wpcf7-list-item {
		padding-bottom: 1em;
	}
	.submit-button input[type=submit], .buttons-area input.button-proceed, .buttons-area-confirm input[type=button] {
	}

	#thanks {
		padding-bottom: 35px;
	}
	#thanks .descr {
		padding: 20px 0 50px;
	}


	/* Aboutus Page Components
	----------------------------------------------- */
	#introduction {
		padding-bottom: 100px;
	}
	#introduction .intro_img_wrap {
		width: 1500px;
		padding-bottom: 128px;
	}
	#introduction .intro_img_wrap .green_wrap {
		width: 344px;
		padding: 74px 64px 67px;
		position: absolute;
		right: 276px;
	}
	#introduction .intro_img_wrap .green_wrap img.logo {
		width: 138px;	/* KAZ */
		height: auto;
	}
	#introduction .intro_img_wrap .green_wrap .text::before {
		width: 215px;
		margin: 24px auto;
	}
	#introduction .message_wrap {
		padding-bottom: 110px;
	}
	#introduction .message_wrap .descr p {
		margin-bottom: 2em;
	}
	#introduction .message_wrap .imgonly {
		width: 349px;
		height: auto;
		position: absolute;
		right: 0;
		bottom: 0;
	}
	#introduction  .descr#nature_cicle {
		width: 800px;
		padding: 52px 70px 50px;
		margin-top: 125px;
	}
	#introduction  .descr#nature_cicle::after {
		height: 100px;
		bottom: -100px;
	}
	#attempt {
		padding-top: 80px;
	}
	#attempt h2 {
	}
	#attempt h2::before {
		width: 108px;
		height: 160px;
		top: 110px;
		left: calc(50% - 470px);
	}
	#attempt .descr#attempt_message {
		padding-bottom: 87px;
	}
	#attempt .wrapper {
		padding: 82px 0	72px;
	}
	#attempt .wall {
	}
	#attempt .wall .ttl {
	}
	#attempt .wall .descr {
		width: 580px;
		padding-top: 30px;
	}
	#attempt .imgonly#wall_after {
		width: 38.3%;
		max-width: 737px;
		height: auto;
		right: 0;
		bottom: -205px;
	}
	#attempt .illust_hover {
		padding-left: calc(50% - 400px);
	}
	#attempt .illust_hover a {
		width: 375px;
		height: 225px;
	}
	#experience {
		padding-top: 450px;
	}
	#experience h3 {
		display: inline-block;
		width: 414px;
		padding: 55px 0 47px;
		position: absolute;
		top: 109px;
		left: -35px;
	}
	#experience .wrapper01 {
		padding: 300px 212px 87px;
	}
	#experience .wrapper01 .imgonly, #experience .wrapper02 .imgonly {
		width: 737px;
		height: auto;
		top: -320px;
	}
	#experience .wrapper01 .ttl, #experience .wrapper02 .ttl {
		padding-bottom: 31px;
	}
	#experience .wrapper01 .descr, #experience .wrapper02 .descr {
	}
	#experience .wrapper02 {
		padding: 79px 212px 345px;
	}
	#experience .wrapper02 .ttl {
	}
	#experience .wrapper02 .descr {
	}
	#experience .wrapper02 .imgonly {
		top: auto;
		bottom: -205px;
	}
	#experience .note {
		padding: 235px 0 70px;
	}
	#experience .imgonly#expe_img03 {
		width: 297px;
		height: auto;
		margin-left: auto;
	}
	#greeting {
		padding-top: 230px;
		padding-bottom: 130px;
		margin-top: -300px;
	}
	#greeting .descr#message {
		padding-bottom: 41px;
	}
	#greeting .imgonly {
		width: 460px;
		height: auto;
	}
	#greeting .descr#name {
		padding-top: 12px;
	}
	#greeting .aboutnakano {
		width: calc(50% + 160px);
		padding: 92px 0 96px 188px;
		margin-top: -255px;
		margin-left: auto;
	}
	#greeting .aboutnakano .ttl {
	}
	#greeting .aboutnakano .ttl::before {
		content: "・";
		color: white;
		padding-right: 8px;
	}
	#greeting .aboutnakano .detail {
	}


	/* Yaoya Page Components
	----------------------------------------------- */
	#menu {
		padding-bottom: 65px;
	}
	ul.yaoya_menu {
		display: flex;
		justify-content: space-between;
	}
	ul.yaoya_menu > li {
		position: relative;
	}
	ul.yaoya_menu > li a {
		width: 236px;
		padding: 17px 0;
	}
	ul.yaoya_menu > li::after {
		content: url(/images/yaoya_arrow_black.svg);
		display: block;
		position: absolute;
		bottom: -30px;
		left: 50%;
		transform: translatex(-50%);
	}
	#my-yaoya section h2 {
		margin-bottom: 45px;
	}
	#yaoya_intro {
	}
	#yaoya_intro .descr {
	}
	#yaoya_intro .descr#first {
		padding-left: 70px;
		padding-bottom: 45px;
	}
	#yaoya_intro .imgonly#img01 {
		width: 673px;
		height: auto;
		padding-left: 10px;
	}
	#yaoya_intro .wrapper_whatis {
		position: relative;
		padding: 85px 94px 138px 112px;
		margin-top: -15px;
	}
	#yaoya_intro .wrapper_whatis::before {
		content: "";
		display: block;
		width: 289px;
		height: 361px;
		background: url(/images/yaoya_intro_img02.png)no-repeat center /cover;
		position: absolute;
		top: -335px;
		right: 5px;
	}
	#yaoya_intro .imgonly#img03 {
		width: 494px;
		height: auto;
		padding-bottom: 35px;
		margin: 0 auto;
	}
	#yaoya_intro .wrapper_whatis .ttl {
	}
	#yaoya_intro .wrapper_whatis .descr#note {
		padding: 37px 0 41px;
	}
	#yaoya_intro .wrapper_whatis .descr#aboutvideo {
		width: 430px;
		padding-top: 151px;
	}
	#yaoya_intro .descr#aboutmark {
		text-align: center;
		padding-top: 47px;
		padding-bottom: 51px;
	}
	#yaoya_intro .imgonly#img04 {
		width: 366px;
		height: auto;
		position: absolute;
		right: 94px;
		bottom: 75px;
	}
	#yaoya_intro .imgonly#mark {
		vertical-align: middle;
		padding: 0 20px;
	}
	#yaoya_payment, #yaoya_order {
		padding: 82px 0;
	}
	#yaoya_payment .wall, #yaoya_order .wall, #yaoya_delivery .wall {
		padding: 72px 80px 63px;
	}
	#yaoya_payment .wrap_price {
		position: relative;
		padding-bottom: 48px;
	}
	#yaoya_payment .wrap_price dl {
		padding-top: 35px;
		margin-bottom: 0;
	}
	#yaoya_payment .wrap_price dt, #yaoya_payment .wrap_price dd {
		margin-bottom: 35px;
	}
	#yaoya_payment .wrap_price dt {
		width: 246px;
		line-height: 73px;
		border-radius: 38px;
		float: left;
		margin-right: 25px;
	}
	#yaoya_payment .wrap_price dd {
		overflow: hidden;
	}
	#yaoya_payment .wrap_price .imgonly {
		width: 188px;
		height: auto;
		position: absolute;
		top: 10px;
		right: 30px;
	}
	#yaoya_payment .wrap_price .descr.sub_text {
		padding: 19px 0;
	}
	#yaoya_payment .wrap_payment {
	}
	#yaoya_payment .descr.left_wrap {
		width: 412px;
		float: left;
	}
	#yaoya_payment .descr.left_wrap p.second {
		padding-top: 25px;
	}
	#yaoya_payment .right_wrap {
		margin-left: 465px;
	}
	#yaoya_payment .right_wrap ul {
	}
	#yaoya_payment .right_wrap ul > li {
	}
	#yaoya_payment .right_wrap ul > li .number {
	}
	#yaoya_payment .right_wrap ul > li .text {
	}
	#yaoya_payment .right_wrap .descr.sub_text {
		padding-top: 12px;
	}
	#linktoshop {
		padding: 34px 0 68px;
	}
	#linktoshop .banner a,
	#producer_onlinestore .banner a {
		height: 240px;
		background: url(/images/shop_link.png)no-repeat top left 48px/ 375px auto, url(/images/icon_arrow_circle.svg)no-repeat top 112px right 131px;
		padding: 87px 0 0 403px;
	}
	@media (any-hover: hover) {
		#linktoshop .banner a:hover,
		#producer_onlinestore .banner a:hover {
			background: url(/images/shop_link_hover.png)no-repeat top left 48px/ 375px auto, url(/images/icon_arrow_circle.svg)no-repeat top 112px right 131px;
		}
	}
	#linktoshop .banner .ttl {
	}
	#yaoya_order {
	}
	#yaoya_order .wrapper {
		padding-left: 50px;
		padding-bottom: 30px;
	}
	#yaoya_order .wrapper#step1 {
		background-position: top 63px right 25px;
		background-size: 189px auto;
	}
	#yaoya_order .wrapper#step2 {
	}
	#yaoya_order .wrapper#step2 .linkbtn {
		margin: 23px 0 7px;
	}
	#yaoya_order .wrapper#step3 {
		padding-bottom: 50px;
	}
	#yaoya_order .ttl.app::before {
		vertical-align: middle;
		margin-right: 24px;
	}
	#yaoya_order .blank_link {
		position: absolute;
		right: 0;
	}
	#yaoya_order .wrap_messenger {
		margin-top: -30px;
		padding-bottom: 70px;
	}
	#yaoya_order .wrap_messenger .blank_link {
		bottom: -32px;
	}
	#yaoya_order .wrap_messenger .ttl.app::before {
	}
	#yaoya_order .wrap_line {
		padding-bottom: 137px;
	}
	#yaoya_order .wrap_line .blank_link {
		bottom: 40px;
	}
	#yaoya_order .wrap_line .ttl.app::before {
	}
	#yaoya_order .imgonly.banner_wrap {
		display: flex;
		align-items: center;
	}
	#yaoya_order .imgonly.banner_wrap a {
		margin-right: 40px;
	}
	#yaoya_order .descr.sub_text.link_howtopay a {
		display: inline-block;
		padding-left: 100px;
	}
	#yaoya_delivery {
		padding: 42px 0 51px;
	}
	#yaoya_delivery .delivery_wrap1 {
		padding-bottom: 80px;
	}
	#yaoya_delivery .descr.center {
		padding-bottom: 7px;
	}
	#yaoya_delivery .price_wrap {
		display: flex;
		align-items: center;
		padding-bottom: 9px;
	}
	#yaoya_delivery .price_wrap::before {
		width: 6px;
		height: 64px;
		background: black;
		margin-right: 19px;
	}
	#yaoya_delivery .descr.sub_text {
		padding: 25px 0;
	}
	#yaoya_delivery .linkbtn a {
		margin-right: 0;
	}








}

/* General breakpoint for SP */
@media screen and (max-width: 767px) {
	a.current img /* , .transbtn:hover, a:hover img */ {
		opacity: 1;
		filter: none;
	}
	.pconly {
		display: none !important;
	}

	/* Structure */
	body {
	}

	/* Header */
	#menu_btn a {
		background-color: rgba(255,255,255,0.6);
		width: 80px;
		height: 80px;
		padding-top: 25px;
	}
	#menu_btn a img {
		width: 45px;
		height: 30px;
		object-fit: cover;
	}
	#headmenu {
		width: 100vw;
		padding: 26px 0 16px;
	}
	#menu_close_btn {
		left: 0;
	}
	#menu_close_btn a {
		width: 74px;
		height: 74px;
		padding-top: 23px;
	}
	#menu_close_btn a img {
		width: 32px;
		height: auto;
	}
	#menulogo {
		margin-bottom: 17px;
		line-height: 22px;
		font-size: 11px;
		text-align: center;
	}
	#menulogo a {
		display: inline-block;
		text-align: left;
	}
	#menulogo a img.logomark {
		width: 38px;
		height: auto;
		margin: -1px 8px -1px -4px;
	}
	#menulogo a img.logotype {
		width: 105px;
		height: auto;
	}
	#headmenu ul#gnavi {
		width: 275px;
		margin-left: auto;
		margin-right: auto;
	}
	#headmenu ul#gnavi li.sns {
		text-align: center;
	}
	#headmenu ul#gnavi li a {
		height: 60px;
	}
	#headmenu ul#gnavi li.sns a {
		line-height: 32px;
		vertical-align: middle;
	}
	#breadcrumbs {
		display: none;
	}

	/* Content */

	/* Navigation */
	.nav-previous.linkbtn a,
	.nav-next.linkbtn a {
		width: 114px;
	}
	.nav-gotolist.linkbtn a {
		margin-top: 31px;
	}
	#content div.wp-pagenavi {
		margin: 27px 0 20px;
	}
	#content div.wp-pagenavi a,
	#content div.wp-pagenavi span {
		min-width: 28px;
		margin: 0 7px;
		padding: 0 7px;
		line-height: 26px;
		font-size: 12px;
	}

	/* Footer */
	body:not(#my-top) #colophon {
		background-position: right 6.93vw top 37px;
		background-size: 297px auto;
		height: 338px;
		padding-top: 127px;
	}
	#my-top #colophon {
		display: none;
	}
	#ft_links,
	#ft_copyright {
		max-width: 375px;
	}
	#ft_links {
		width: auto;
	}
	#ft_onlinestore {
		float: right;
		margin-right: 6%;
	}
	#ft_onlinestore a {
		width: 156px;
		height: 122px;
		padding-top: 77px;
		padding-right: 30px;
		line-height: 45px;
		font-size: 11px;
	}
	#ft_sns {
		margin-bottom: 16px;
		margin-left: 11.73%;
		padding-top: 45px;
	}
	#ft_sns a {
		color: var(--saf-brown);
	}
	#ft_copyright {
		margin-left: auto;
		margin-right: auto;
		padding-left: 8.27%;
	}
	#ft_nav_top a img:nth-of-type(2) {
		opacity: 1;
	}

	/* Front Page Components
	----------------------------------------------- */
	#my-top,
	#my-top #content,
	#my-top #content .slick-list,
	#my-top #content .slick-slide,
	#my-top #content section.snap,
	#my-top #content section.snap .bglayer,
	#my-top #content section.snap .wall {
		height: calc(var(--viewheight) - 73px);	/* OCT/NOV-2022 KAZ: was calc(var(--viewheight) - 68px) */
	}
	#my-top.admin-bar,
	#my-top.admin-bar #content,
	#my-top.admin-bar #content .slick-list,
	#my-top.admin-bar #content .slick-slide,
	#my-top.admin-bar #content section.snap,
	#my-top.admin-bar #content section.snap .bglayer,
	#my-top.admin-bar #content section.snap .wall {
		height: calc(var(--viewheight) - 73px - var(--wp-admin-bar-height));	/* OCT/NOV-2022 KAZ: was calc(var(--viewheight) - 68px - var(--wp-admin-bar-height)) */
	}
	#my-top #top_loading .bglayer {
		height: 375px;
	}
	#my-top #top_loading #top_loading_img01 {
		background-image: url(/images/sp/loading01.png);
	}
	#my-top #top_loading #top_loading_img03 {
		background-image: url(/images/sp/loading03.png);
	}
	#my-top #top_loading #top_loading_img04 {
		background-image: url(/images/sp/loading04.png);
	}
	#my-top #top_loading #top_loading_img06 {
		background-image: url(/images/sp/loading06.png);
	}
	#my-top #top_loading #top_loading_img07 {
		background-image: url(/images/sp/loading07.png);
	}
	#my-top #top_loading #top_loading_img08 {
		background-image: url(/images/sp/loading08.png);
	}
	#my-top #top_loading #top_loading_img09 {
		background-image: url(/images/sp/loading09.png);
	}
	#my-top #top_loading #top_loading_img23 {
		background-image: url(/images/sp/loading23.png);
		height: 325px;
	}
	#my-top #top_loading #top_loading_img25 {
		background-image: url(/images/sp/loading25.png);
		height: 425px;
		top: max(calc(50% - 250px), 0px);
		transform: none;
	}
	#my-top #top_loading #top_loading_skipbtn {
		bottom: 8.03%;		/* 53 / 660; 69px in design */
	}
	#my-top #content section.snap .wall {
	}
	#my-top #content section.snap h2 {
		margin-bottom: calc(var(--viewheight) * 0.0333);	/* 22 / 660 */
		padding-top: calc(var(--viewheight) * 0.0303);	/* KAZ: 20 / 660 */
		padding-bottom: calc(var(--viewheight) * 0.0242);	/* 16 / 660 */
		line-height: 1.2;
	}
	#my-top #content section.snap .catchline {
		margin-bottom: calc(var(--viewheight) * 0.0212);	/* 14 / 660 */
		line-height: 1.25;
	}
	#my-top #content section.snap .descr {
		margin-bottom: calc(var(--viewheight) * 0.0227);	/* KAZ: 22 / 660 */
		line-height: 1.625;
	}
	#my-top #content section.snap .readmore {
		font-size: 12px;
	}
	#my-top #content section.snap .readmore a {
		width: 174px;
		height: 119px;
		padding-top: 77px;
		line-height: 42px;
	}
	#my-top #content .slick-dots {
		bottom: calc(var(--viewheight) * 0.0167 + 73px);	/* 11 / 660; OCT/NOV-2022 KAZ: was calc(var(--viewheight) * 0.0333 + 62px) = 22 / 660 */
	}
	#top_news {
		position: fixed;
		width: 100%;
		height: 73px;	/* OCT/NOV-2022 KAZ: was 68px */
		left: 0;
		font-size: 14px;
	}
	#top_news h2 {
		float: none;	/* OCT/NOV-2022 KAZ */
/*		width: 105px; */	/* OCT/NOV-2022 KAZ: c/o */
		height: 34px;	/* OCT/NOV-2022 KAZ */
		line-height: 34px;	/* OCT/NOV-2022 KAZ */
	}
	#top_news h2 a img {
		width: 71px;	/* OCT/NOV-2022 KAZ: was 85px */
		height: auto;
		margin: -8px -10px -6px -4px;	/* OCT/NOV-2022 KAZ: was -6px 4px -11px 16px */
		vertical-align: -11px;	/* OCT/NOV-2022 KAZ */
	}
/*	#top_news .entry {
 *		margin-left: 105px;
 *		padding-top: 11px;
 *		padding-left: 4.27vw;	/$ 16 / 375 $/
 *	}
 *	#top_news .entry .arrow {
 *		width: 53px;
 *		padding-top: 8px;	/$ KAZ: ChkHTML; was 19px $/
 *		padding-left: 10px;
 *		line-height: 26px;
 *		font-size: 13px;
 *	}
 *	#top_news .entry .arrow a {
 *		width: 30px;
 *		height: 30px;
 *	}
 *	#top_news .entry .arrow a img {
 *	}
 *	#top_news .entry .category,
 *	#top_news .entry .date {
 *		margin-bottom: 5px;
 *	}
 *	#top_news .entry .category {
 *		margin-right: 4.8vw;	/$ 18 / 375 $/
 *	}
 *	#top_news .entry .date {
 *	}
 *	#top_news .entry .title {
 *	}
 *	#top_news .entry .title a {
 *		overflow: hidden;	/$ for text-overflow: ellipsis; $/
 *		white-space: nowrap;	/$ for text-overflow: ellipsis; $/
 *		height: 1.35em;
 *		text-overflow: ellipsis;
 *	}
 */	/* OCT/NOV-2022 KAZ: c/o */
	#top_news .openclose {	/* OCT/NOV-2022 KAZ */
		display: none;
	}
	#top_news > .arrow a {	/* OCT/NOV-2022 KAZ */
		width: 30px;
		height: 39px;
		line-height: 39px;
	}
	#top_news > .arrow a img {	/* OCT/NOV-2022 KAZ */
		width: 13px;
		vertical-align: 2px;
	}
	#top_news .news-slider-wrapper,
	#top_news .news-slider-wrapper .news-slider {	/* OCT/NOV-2022 KAZ */
		height: 20px;
	}
	#top_news .news-slider-wrapper {	/* OCT/NOV-2022 KAZ */
		margin: 9px 30px 10px 9px;
	}
	#top_news .news-slider-wrapper .news-slider {	/* OCT/NOV-2022 KAZ */
		line-height: 20px;
	}
	#top_news .news-slider-wrapper .news-slider a {	/* OCT/NOV-2022 KAZ */
	}

	/* Page header Components
	----------------------------------------------- */
	body.page .entry-header,
	.page-header {
		height: 180px;
		padding-top: 120px;
	}
	body.page .entry-header h1.entry-title,
	.page-header .page-title {
		width: 280px;
		font-size: 20px;
		font-weight: 600;
		padding: 23px 0 21px;
	}

	/* Fixed Page Components
	----------------------------------------------- */
	body:not(#my-top) #primary.nosidebar {
		padding-bottom: 0;
	}
	body.page .entry-content {
		padding-top: 29px;
	}
	section h2, section .wall h2 {
		font-size: 20px;	/* Aki was 32px */
		margin-bottom: 10px;
	}
	h3.lined {
		width: 82.18%;
		line-height: 1.666;
		padding: 9px 0;
		margin: 20px auto 25px;
	}
	#yaoya_delivery h3.lined {
		width: 100%;
	}
	h4.colored {
		width: 82.18%;
		padding: 25px 20px 21px 18px;
		margin: 0 auto 15px;
	}
	h4.colored .number {
		padding-right: 14px;
	}
	h4.colored .ttl {
	}
	#linktoshop .banner .descr, #producer_onlinestore .banner .descr, #my-producer.single .entry-content .banner .descr.banner_descr {
		display: block;		/* KAZ */
		margin: 4px 0 6px;	/* KAZ */
		padding: 0;
		line-height: 1;
		font-size: 100%;
	}
	#linktoshop .banner .ttl, #producer_onlinestore .banner .ttl {
		font-size: 41px;
		line-height: 1.219;
	}

	/* Blog Page Components
	----------------------------------------------- */
	/* 共通 */
	#my-blog #primary.nosidebar {
		padding-bottom: 38px;
	}
	#my-blog .news_sns h2,
	#my-blog .news_sns .facebook .feed {
		width: var(--saf-wall-width);
		margin-left: auto;
		margin-right: auto;
	}
	#my-blog .news_sns h2 {
		margin-bottom: 18px;
	}
	#my-blog .news_sns .facebook,
	#my-blog .news_sns .instagram {
		padding-top: 52px;
	}
	#my-blog .news_sns .facebook {
		padding-bottom: 52px;
	}
	#my-blog .news_sns .facebook h2 {
		padding-right: 22px;
	}
	#my-blog .news_sns .facebook .feed {
		max-width: 365px;
	}
	#my-blog .news_sns .facebook .feed iframe {
		width: 100%;
	}
	#my-blog .news_sns .instagram {
		padding-bottom: 59px;
		margin-bottom: 40px;	/* Aki added */
	}
	#my-blog .news_sns .instagram h2 {
		padding-right: 15px;
	}
	#my-blog .news_sns .instagram #sb_instagram {
		width: calc(var(--saf-wall-width) + 16px) !important;
		margin: -8px auto;
	}
	#my-blog .news_sns .instagram #sb_instagram .sbi_follow_btn {
		margin: 27px 0 0;
	}
	/* 一覧 */
	#my-blog.blog .wall,
	#my-blog.archive .wall {
		padding: 40px 0 8px;
	}
	#my-blog ul.category_menu {
	}
	#my-blog ul.category_menu li,
	#my-blog ul.category_menu li a,
	#my-blog .archive_menu,
	#my-blog ul.news_list li {
		width: 100%;
		max-width: 330px;
	}
	#my-blog ul.category_menu li {
		margin-bottom: 11px;
	}
	#my-blog ul.category_menu li a,
	#my-recipe ul.category_menu li a {
		height: 46px;
		line-height: 44px;
	}
	#my-blog .archive_menu {
		margin-bottom: 63px;
	}
	#my-blog .archive_menu .heading a {
	}
	#my-blog .archive_menu .heading a::after {
		margin-left: 17px;
	}
	#my-blog ul.news_list li {
		margin-left: auto;
		margin-right: auto;
	}
	/* 個別 */
	#my-blog.single .wall {
		padding: 50px 0 20px;
	}
	#my-blog .entry-header-meta {
		overflow: hidden;
	}
	#my-blog .entry-header-meta .category,
	#my-blog .entry-header-meta .date {
		float: left
	}
	#my-blog .entry-header-meta .category a {
		display: block;
	}
	#my-blog .entry-header-meta .date {
		clear: left;
		margin-bottom: 24px;
	}
	#my-blog .entry-header-meta .new {
		margin-bottom: 24px;
		margin-left: calc(100% - 112px);
	}
	#my-blog .entry-header {
		margin-bottom: 28px;
	}
	#my-blog .entry-header .entry-title {
	}
	#my-blog .entry-content {
		line-height: 30px;
		font-size: 16px;
	}
	#my-blog #nav-single,
	#my-recipe.single #nav-single {
		width: 85.94%;	/* 275 / 320 */
		margin-left: auto;
		margin-right: auto;
	}
	#my-blog #nav-single {
		margin-top: 44px;
	}
	#my-blog .nav-gotolist {
		margin-top: 31px;
	}


	/* Producer Page Components
	----------------------------------------------- */
	/* 共通 */
	/* 一覧 */
	#my-producer .intro, #my-producer section.descr {
	}
	#my-producer .intro {
		font-size: 112.5%;	/* 18px */
		font-weight: 600;
		line-height: 2.22;
		background: url(/images/sp/producer_img01.svg)no-repeat top 237px left calc(50% + 20px), url(/images/producer_img02.jpg)no-repeat left bottom 50px /320px auto;
		padding: 27px 0 504px;
	}
	#my-producer section.descr {
		font-size: 175%;	/* 28px */
		font-weight: 600;
		line-height: 1.642;
		padding: 32px 0;
	}
	#my-producer section.descr_mark {
		padding-top: 30px;
	}
	#my-producer .mainlist {
		padding-top: 38px;
	}
	#my-producer ul.producer_list {
		justify-content: space-between;
	}
	#my-producer ul.producer_list > li {
		width: 46.2%;
		margin-bottom: 42px;
	}
	#my-producer ul.producer_list li:nth-child(2n) {
	}
	#my-producer ul.producer_list li .photo {
		padding-bottom: 15px;
	}
	#my-producer ul.producer_list li .photo img {
	}
	#my-producer ul.producer_list li .photo_wrap .video_avail {
		left: 5px;
		bottom: 20px;
	}
	#my-producer ul.producer_list li .video_avail img {
		width: 40%;
	}
	#my-producer ul.producer_list li h2 {
		font-size: 100%;
		border-left-width: 6px;
		padding-left: 7px;
		margin-bottom: 5px;
	}
	#my-producer ul.producer_list li .location {
		font-size: 87.5%;	/* 14px */
		padding-bottom: 10px;
	}
	#my-producer ul.producer_list li ul.product_list {
	}
	#my-producer ul.producer_list li ul.product_list li,
	#my-producer.single .entry-content .details ul.product_list li {
		font-size: 87.5%;	/* 14px */
		padding: 2px 0 2px 5px;
	}
	#my-producer ul.producer_list li ul.product_list li:not(:last-child) {
		margin-bottom: 6px;
	}
	#my-producer ul.producer_list li ul.product_list li:nth-child(2n) {
	}
	#my-producer ul.producer_list .linkbtn {
		padding-top: 10px;
	}
	#my-producer ul.producer_list .linkbtn a {
		font-size: 75%;	/* 12px */
		width: 100%;
		padding: 6px 0 6px 7px;
	}
	#my-producer ul.producer_list .linkbtn a::after {
		top: 7px;
		right: 3px;
	}


	/* 個別 */
	#my-producer.single article {
		padding-top: 67px;
	}
	#my-producer.single h1 {
		font-size: 175%;	/* 28px */
		font-weight: 600;
		padding: 16px 0;
	}
	#my-producer.single .entry-content {
	}
	#my-producer.single .entry-content .catchline {
		font-size: 125%;	/* 20px */
		font-weight: 600;
		text-align: center;
		line-height: 1.7;
		padding: 8px 10px 15px;
	}
	#my-producer.single .entry-content .catchline::after {
		width: 15px;
		height: 15px;
		bottom: -15px;
	}
	#my-producer.single .entry-content .descr {
		font-size: 112.5%;	/* 18px */
		padding: 43px 0 25px;
	}
	#my-producer.single .entry-content .details {
	}
	#my-producer.single .entry-content .details .photo {
		padding-bottom: 30px;
	}
	#my-producer.single .entry-content .details .video_avail {
		position: relative;
		padding-right: 5px;
		margin-top: -70px;
	}
	#my-producer.single .entry-content .details .name {
		margin-bottom: 7px;
	}
	#my-producer.single .entry-content .details .location {
	}
	#my-producer.single .entry-content .details .name .label,
	#my-producer.single .entry-content .details .location .label {
		font-size: 87.5%;	/* 14px */
		line-height: 35px;
		padding: 0 15px;
		margin-right: 12px;
	}
	#my-producer.single .entry-content .details .name .value,
	#my-producer.single .entry-content .details .location .value {
		font-size: 137.5%;	/* 22px */
		line-height: 1.68;
	}
	#my-producer.single .entry-content .details .product_title {
		font-size: 112.5%;	/* 18px */
		padding: 30px 0 15px;
	}
	#my-producer.single .entry-content .details ul.product_list {
	}
	#my-producer.single .entry-content .details ul.product_list li {
		font-size: 112.5%;	/* 18px */
		line-height: 1.14;
		padding: 7px;
	}
	#my-producer.single .entry-content .details ul.product_list li .product_season {
	}
	#my-producer.single .entry-content .details .product_details {
		font-weight: 600;
		line-height: 1.875;
		padding-top: 25px;
	}
	#my-producer.single .entry-content #producer_onlinestore {
		padding: 50px 0 35px;
	}
	#my-producer.single .producer_yaoya {
	}
	#my-producer.single .producer_yaoya .wall {
		padding: 50px 0 0;
	}
	#my-producer.single .producer_yaoya .sub_title {
	}
	#my-producer.single .producer_yaoya h2 {
		padding-bottom: 28px;
		margin-bottom: 30px;
	}
	#my-producer.single .producer_yaoya .box {
		margin: 0 -8.6% 33px;	/* KAZ: added side */
		padding: 35px 7.34% 55px;	/* KAZ */
	}
	#my-producer.single .producer_yaoya .box .title {
		margin-bottom: 20px;
/*		padding: 27px 0 52px; */
		font-size: 175%;	/* 28px */
	}
	#my-producer.single .producer_yaoya .contact {
		margin-bottom: 10px;
	}
	#my-producer.single .producer_yaoya .contact.linkbtn a {
		position: relative;
		width: 275px;		/* KAZ */
		margin-bottom: 32px;
		padding: 22px 0 20px 100px;
		color: var(--saf-darkgreen);
	}
	#my-producer.single .producer_yaoya .contact.linkbtn a::after {
		top: 33px;	/* KAZ */
	}
	#my-producer.single .producer_yaoya .contact.linkbtn img {
		width: 63px;
		height: auto;
		position: absolute;
		top: 10px;
		left: 16px;
	}
	#my-producer.single .producer_yaoya .howto {
		padding-bottom: 23px;
	}
	#my-producer.single .producer_yaoya .note {
		padding-bottom: 52px;
	}
	#my-producer.single .producer_linkwrap {
		background: white;
	}
	#my-producer.single .producer_linkwrap .wall {
		padding: 50px 0;
	}
	#my-producer.single .producer_linkwrap .linkbtn a.gotolist {
		margin-bottom: 16px;
	}


	/* Recipe Page Components
	----------------------------------------------- */
	/* 共通 */
	/* 一覧 */
	#my-recipe .catchline {
		font-size: 112.5%;	/* 18px */
		font-weight: bold;
		line-height: 2.22;
		padding: 30px 0;
	}
	#my-recipe ul.creator_list {
	}
	#my-recipe ul.creator_list li {
		width: 42%;	/* KAZ: 42.5%; 41.875% in design */
/*		margin-left: 22px; */
/*		margin-bottom: 22px; */
		margin: 0 4% 22px;	/* KAZ */
	}
	#my-recipe ul.creator_list li .photo {
/*		border-radius: 50%; */	/* AUG-2022 KAZ: moved to img of common rules */
/*		overflow: hidden; */
		width: 80%;
		height: auto;
		aspect-ratio: 1/1;
	}
	#my-recipe ul.creator_list li::before {

	}
	#my-recipe ul.creator_list li .photo::before {
		content: "";
		display: block;
	}
	#my-recipe ul.creator_list li .restaurant,
	#my-recipe ul.creator_list li .name {
		font-size: 75%;	/* 12px */
	}
	#my-recipe ul.creator_list li .restaurant {
		padding: 13px 0 8px;
		margin-top: -8px;
	}
	#my-recipe ul.creator_list li .restaurant::before {
		width: 100%;
		height: 57px;
		background: url(/images/recipe_triangle.svg)no-repeat center /cover;
		top: -57px;
	}
	#my-recipe ul.creator_list li .name {
		padding: 8px 0;
	}
	#my-recipe ul.creator_list li .link {
		text-align: center;
	}
	#my-recipe ul.creator_list li .link a {
		font-size: 75%;	/* 12px */
		padding-top: 8px;
	}
	#my-recipe ul.category_menu {
		padding-top: 88px;	/* Aki was 18px */
		margin-top: -70px;
		margin-bottom: 25px;
	}
	#my-recipe ul.category_menu li {
		width: 48%;
		margin-bottom: 15px;
	}
	#my-recipe ul.category_menu li:nth-child(2n) {
		margin-left: 10px;
	}
	#my-recipe ul.category_menu li a {
	}
	#my-recipe ul.recipe_list li {
		width: 46%;
		margin-bottom: 32px;
	}
	#my-recipe ul.recipe_list li:nth-child(2n)  {
		margin-left: 22px;
	}
	#my-recipe ul.recipe_list li .photo a {	/* AUG-2022 KAZ: per request */
		display: block;
		position: relative;
		padding-top: 82.28%;
	}
	#my-recipe ul.recipe_list li .photo a img {	/* AUG-2022 KAZ: per request */
		position: absolute;
		height: 100%;
		top: 0;
		left: 0;
	}
	#my-recipe ul.recipe_list li .category a {
		font-size: 87.5%;	/* 14px */
		padding: 2px 6px;
	}
	#my-recipe ul.recipe_list li h2 a {
		padding-top: 10px;
	}

	/* 個別 */
	#my-recipe .nav-gotolist {
		margin-bottom: 50px;
	}
	#my-recipe.single article {
		padding: 50px 0;
	}
	#my-recipe article .category a {
		padding: 5px 45px;
	}
	#my-recipe.single article h1 {
		padding: 20px 0;
	}
	#my-recipe.single article .entry-summary {
		padding-bottom: 25px;
	}
	#my-recipe.single article .entry-content {
		font-size: 100%;
		line-height: 1.875;
	}
	#my-recipe.single article .entry-content img {
		padding-bottom: 25px;
	}
	#my-recipe.single section.creator {
		background: url(/images/triangle_white.svg)no-repeat center top /74px auto, url(/images/bg_creaters.png)no-repeat right calc(50% - 95px)  bottom 33px /159px auto var(--saf-beige);
		padding: 55px 0 120px;
		margin-bottom: 50px;
	}
	#my-recipe.single section.creator .wall {
	}
	#my-recipe.single section.creator h2 {
	}
	#my-recipe.single section.creator h2::after {
		margin: 20px auto 35px;
	}
	#my-recipe.single section.creator .restaurant {
	}
	#my-recipe.single section.creator .restaurant::before, #my-recipe.single section.creator .restaurant::after {
		width: 47px;
	}
	#my-recipe.single section.creator .name {
		font-size: 112.5%;	/* 18px */
		padding: 13px 0;
	}
	#my-recipe.single section.creator .photo {
		width: 63.7%;
		height: auto;
		margin: 35px auto 0;
	}
	#my-recipe.single section.creator .photo img {
	}
	#my-recipe.single section.creator .descr {
		line-height: 1.875;
		padding-top: 30px;
	}
	#my-recipe.single section.creator link a {
	}
	#my-recipe.single #nav-single {
		/* See #my-blog #nav-single above */
	}


	/* Contact Page Components
	----------------------------------------------- */
	#contact {
		padding-bottom: 0;
	}
	table.contactform {
	}
	table.contactform tr {
	}
	table.contactform th, table.contactform td {
		display: block;
	}
	table.contactform th {
		padding-bottom: 20px;
	}
	table.contactform tr.single-line th {
	}
	table.contactform th.norequired {
	}
	table.contactform td {
		padding-bottom: 45px;
	}
	table.contactform tr#type td {
	}
	#privacy-policy {
		padding-bottom: 30px;
	}
	#privacy-policy h2 {
		margin-bottom: 20px;
	}
	.privacy_wrapper {
		overflow-y: scroll;
		height: 353px;
	}
	p.accept_line {
		margin-bottom: 20px;
	}
	table.contactform .wpcf7-list-item:not(:last-child) {
		padding-bottom: 16px;
	}
	table.contactform .wpcf7-list-item input {
		float: left;
		margin: 6px 16px 0 0;
	}
	table.contactform .wpcf7-list-item-label {
		display: block;
		overflow: hidden;
	}
	.submit-button input[type=submit], .buttons-area input.button-proceed, .buttons-area-confirm input[type=button] {
	}
	form.wpcf7-form-mode-edit {
		margin-bottom: 45px;
	}

	#thanks {
	}
	#thanks .descr {
		font-size: 100%;
		padding-top: 20px;
	}
	#thanks .descr.sub_text {
		padding-bottom: 50px;
	}


	/* Aboutus Page Components
	----------------------------------------------- */
	#introduction {
		padding-bottom: 65px;
	}
	#introduction .intro_img_wrap {
		text-align: center;
		padding-bottom: 50px;
	}
	#introduction .intro_img_wrap img {
		width: 90.6%;
		margin: 0 auto;
	}
	#introduction .intro_img_wrap .green_wrap {
		padding: 15px 30px 17px;
		right: 0;
		bottom: 16px;
	}
	#introduction .intro_img_wrap .green_wrap img.logo {
		width: 54px;
	}
	#introduction .intro_img_wrap .green_wrap .text {
		font-size: 75%;
	}
	#introduction .intro_img_wrap .green_wrap .text::before {
		width: 84px;
		margin: 9px auto 13px;
	}
	#introduction .message_wrap {
	}
	#introduction .message_wrap h2,
	#attempt h2,
	#greeting h2 {
		font-size: 32px;	/* KAZ */
	}
	#introduction .message_wrap .descr p {
		margin-bottom: 38px;
	}
	#introduction .message_wrap .imgonly {
		width: 210px;
		margin: 0 auto;
	}
	#introduction .imgonly#intro_cicle {
		padding-top: 35px;
	} 
	#introduction  .descr#nature_cicle {
		padding: 24px 11.4% 63px;
		margin-top: 45px;
	}
	#introduction  .descr#nature_cicle::after {
		height: 65px;
		bottom: -65px;
	}
	#attempt {
		padding-top: 59px;
	}
	#attempt h2 {
	}
	#attempt h2::before {
		width: 65px;
		height: 97px;
		top: -38px;
		left: calc(50% - 140px);
	}
	#attempt .descr#attempt_message {
		padding-bottom: 38px;
	}
	#attempt .wrapper {
		padding: 38px 0 130px;
	}
	#attempt .wall {
	}
	#attempt .wall .ttl {
		padding-bottom: 30px;
	}
	#attempt .wall .descr {
	}
	#attempt .imgonly#wall_after_sp {
		width: 85.33%;
		margin: -95px auto 0;
		position: relative;
	}
	#attempt .illust_hover {
		padding-top: 19px;
	}
	#attempt .illust_hover a {
		width: 302px;
		height: 182px;
		margin: 0 auto;
	}
	#experience {
		padding-top: 148px;	/* KAZ: was 180px */
	}
	#experience .wall {
		width: 88%;	/* KAZ */
	}
	#experience h3 {
		width: 114%;	/* KAZ: was 122% */
		padding: 20px 0;
		margin-top: -68px;
		margin-left: -7%;	/* KAZ: was -11% */
	}
	#experience .wrapper01 {
	}
	#experience .wrapper01 .imgonly, #experience .imgonly.sponly#expe_img02_sp {
		position: relative;
		width: 81.21%;	/* 268 / 330; KAZ: was 71.46% */
	}
	#experience .wrapper01 .imgonly {
		overflow: hidden;	/* KAZ */
		top: -87px;
	}
	#experience .wrapper01 .imgonly img {	/* KAZ */
		transform-origin: right center;
		transform: scale(1.1);
	}
	#experience .wrapper02 .imgonly {
	}
	#experience .wrapper01 .ttl, #experience .wrapper02 .ttl {
		padding-left: 9.4%;	/* KAZ: was 11.36% */
	}
	#experience .wrapper01 .descr, #experience .wrapper02 .descr {
		width: 81.21%;	/* 268 / 330; KAZ: was 77.27% */
		font-size: 100%;
		line-height: 1.875;
		padding: 12px 0 30px;
		margin: 0 auto;
	}
	#experience .wrapper02 {
		padding: 37px 0 120px;
	}
	#experience .wrapper02 .ttl {
	}
	#experience .wrapper02 .descr {
	}
	#experience .imgonly.sponly#expe_img02_sp {
		top: -120px;
	}
	#experience .note {
		margin-top: -85px;
		padding-bottom: 45px;
	}
	#experience .imgonly#expe_img03_sp {
		width: 79.2%;
		margin-left: auto;
	}
	#greeting {
		padding: 60px 0 10px;
	}
	#greeting .descr#message {
		padding-top: 17px;
		padding-bottom: 60px;
	}
	#greeting .imgonly {
	}
	#greeting .descr#name {
		padding: 13px 0 30px;
	}
	#greeting .aboutnakano {
		padding: 13px 0 13px 7.5%;
	}
	#greeting .aboutnakano .ttl {
		width: 90px;
		padding-right: 15px;
	}
	#greeting .aboutnakano .ttl::before {
	}
	#greeting .aboutnakano .detail {
	}


	/* Yaoya Page Components
	----------------------------------------------- */
	#menu {
	}
	ul.yaoya_menu {
		margin-left: 0;
	}
	ul.yaoya_menu > li:not(:last-child) {
		margin-bottom: 11px;
	}
	ul.yaoya_menu > li a {
		line-height: 46px;
	}
	ul.yaoya_menu > li::after {
	}
	#my-yaoya section h2 {
		font-size: 175%;	/* 28px */
		line-height: 1.642;
	}
	#my-yaoya section#yaoya_intro h2::after {
		margin-top: 5px;
	}
	#yaoya_intro {
		padding-top: 8px;
	}
	#yaoya_intro .wall {
		width: 100%;
	}
	#yaoya_intro .descr {
	}
	#yaoya_intro .imgonly.sponly#img02_sp {
		width: 60.93%;
		padding: 20px 0 10px;
		margin: 0 auto;
	}
	#yaoya_intro .descr#first, #yaoya_intro .wrapper_whatis .descr#aboutvideo, #yaoya_intro .descr#aboutmark, #yaoya_payment .right_wrap {
		width: 85.33%;
		margin: 0 auto;
	}
	#yaoya_intro .imgonly#img01 {
		width: 96%;
		margin-left: auto;
	}
	#yaoya_intro .wrapper_whatis {
		padding: 70px 0 40px;
		margin-top: -33px;
	}
	#yaoya_intro .wrapper_whatis::before {
	}
	#yaoya_intro .imgonly#img03 {
		width: 93.3%;
		margin: 0 auto;
	}
	#yaoya_intro .wrapper_whatis .ttl {
		padding: 15px 0;
	}
	#yaoya_intro .wrapper_whatis .descr#note {
		line-height: 1.77;
		padding-bottom: 28px;
	}
	#yaoya_intro .wrapper_whatis .linkbtn a {	/* KAZ */
		background-color: var(--saf-green);
		color: white;
	}
	#yaoya_intro .wrapper_whatis .descr#aboutvideo {
		font-size: 100%;
		line-height: 1.875;
	}
	#yaoya_intro .descr#aboutmark {
		text-align: center;
		padding: 50px 0 40px;
	}
	#yaoya_intro .imgonly#img04 {
		width: 65.86%;
		padding: 45px 0 30px;
		margin: 0 auto;
	}
	#yaoya_intro .imgonly#mark {
		vertical-align: bottom;
	}
	#yaoya_payment, #yaoya_order {
		padding: 40px 0;
	}
	#yaoya_payment .wall, #yaoya_order .wall, #yaoya_delivery .wall {
		padding: 25px 0;
	}
	#yaoya_payment .descr, #yaoya_order .descr, #yaoya_delivery .descr {
		font-size: 100%;
		line-height: 1.875;
		padding: 0 10%;
	}
	#my-yaoya .descr.sub_text.sub_text_sp {
		font-size: 87.5%;	/* 14px */
		line-height: 1.578;
	}
	#yaoya_payment .descr.center_sp, #yaoya_order .descr.center_sp, #yaoya_delivery .descr.center_sp {
		text-align: center;
	}
	#yaoya_payment .wrap_price {
		padding-bottom: 15px;
	}
	#yaoya_payment .wrap_price dl {
		margin-bottom: 15px;
	}
	#yaoya_payment .wrap_price dt, #yaoya_payment .wrap_price dd {
	}
	#yaoya_payment .wrap_price dt {
		margin: 0 auto;
	}
	#yaoya_payment .wrap_price dd {
		padding: 15px 0 32px;
		text-align: center;
	}
	#yaoya_payment .wrap_price dd span {
		font-size: 50%;	/* 12px */
		letter-spacing: -0.05em;
	}
	#yaoya_payment .wrap_price .imgonly {
		width: 63.43%;
		margin: 0 auto 25px;
	}
	#yaoya_payment .wrap_price .descr.sub_text {
		padding: 20px 10% 35px;
	}
	#yaoya_payment .wrap_payment {
	}
	#yaoya_payment .descr.left_wrap {
		padding-bottom: 30px;
	}
	#yaoya_payment .descr.left_wrap p.second {
	}
	#yaoya_payment .right_wrap {
	}
	#yaoya_payment .right_wrap ul {
		padding: 20px 29px 10px 15px;
	}
	#yaoya_payment .right_wrap ul > li {
	}
	#yaoya_payment .right_wrap ul > li .number {
	}
	#yaoya_payment .right_wrap ul > li .text {
		font-size: 88.9%;/* 18px → 16px*/
		line-height: 1.375;
	}
	#yaoya_payment .right_wrap .descr.sub_text {
		padding-top: 10px;
	}
	#linktoshop {
		padding: 57px 0 45px;
	}
	#linktoshop .banner,
	#producer_onlinestore .banner {
		text-align: center;	/* KAZ */
	}
	#linktoshop .banner a,
	#producer_onlinestore .banner a {
/*		background: url(/images/sp/shop_link.png) no-repeat top left -37px / 170px auto, url(/images/icon_arrow_circle.svg) no-repeat top 65px left 273px / 35px auto; */
		background: url(/images/sp/shop_link.png) no-repeat top left -40px / 179px auto, url(/images/icon_arrow_circle.svg) no-repeat top 57px right / 35px auto;	/* KAZ */
		display: inline-block;	/* KAZ */
		width: 328px;		/* KAZ: was 320px */
		height: 140px;
/*		margin: 0 auto; */
		margin-left: -8px;	/* KAZ */
		padding-left: 122px;	/* KAZ: was 110px */
		text-align: left;	/* KAZ */
	}
	#linktoshop .banner .ttl {
	}
	#yaoya_order {
	}
	#yaoya_order .wrapper {
	}
	#yaoya_order .wrapper#step1 {
		background-image: url(/images/sp/yaoya_order_img01.png);
		background-size: 141px auto;
		background-position: left calc(50% + 20px) bottom 20px;
		padding-bottom: 172px;
	}
	#yaoya_order .descr.center_sp {
		padding: 15px 0;
	}
	#yaoya_order .wrapper#step2 {
	}
	#yaoya_order .wrapper#step2 .linkbtn {
		margin: 20px 0 40px;
	}
	#yaoya_order .wrapper#step3 .descr.sub_text {
		padding: 10px 10% 30px;
	}
	#yaoya_order .imgonly.video {
		text-align: center;
		padding-bottom: 27px;
	}
	#yaoya_order .ttl.app {
		font-size: 112.5%;	/* 18px */
		text-align: center;
	}
	#yaoya_order .ttl.app::before {
		display: block;
		margin: 0 auto 15px;
	}
	#yaoya_order .blank_link {
		position: relative;
		width: 259px;	/* KAZ: was 80% */
		margin: 20px auto 45px;
	}
	#yaoya_order .blank_link a {
		width: 100%;	/* KAZ */
		padding: 23px 20px 20px;
	}
	#yaoya_order .wrap_messenger {
	}
	#yaoya_order .wrap_messenger .blank_link {
	}
	#yaoya_order .wrap_messenger .ttl.app::before {
	}
	#yaoya_order .wrap_line {
	}
	#yaoya_order .wrap_line .blank_link {
	}
	#yaoya_order .blank_link .descr.sub_text {
		padding: 0;
	}
	#yaoya_order .wrap_line .ttl.app::before {
	}
	#yaoya_order .imgonly.banner_wrap {
		text-align: center;
		padding-bottom: 20px;
	}
	#yaoya_order .imgonly.banner_wrap .bn_app, #yaoya_order .imgonly.banner_wrap .bn_google{
		width: 67.8%;
	}
	#yaoya_order .imgonly.banner_wrap .bn_app {
		margin-bottom: 20px;
	}
	#my-yaoya .descr.sub_text.link_howtopay {
		display: block;
		text-align: center;
	}
	#yaoya_order .descr.sub_text.link_howtopay a {
		font-size: 100%;
	}
	#yaoya_delivery .wall {
		padding-bottom: 45px;
	}
	#yaoya_delivery .delivery_wrap1 {
	}
	#yaoya_delivery .descr {
		padding: 0;
	}
	#yaoya_delivery .descr.center {
		text-align: left;
	}
	#yaoya_delivery .price_wrap {
	}
	#yaoya_delivery .price_wrap::before {
		width: 12px;
		height: 12px;
		background: black;
	}
	#yaoya_delivery .descr.sub_text {
		font-size: 87.5%;	/* 14px */
		padding: 13px 0 30px;
	}
	#yaoya_delivery .linkbtn a {
	}


}


/* Spacial media query for front page and page header: PC または SP横向き */
@media print, screen and (min-width: 768px), screen and (orientation: landscape) {
	.portraitonly {
		display: none !important;
	}

	/* Front Page Components */
	#my-top #content #top_aboutus .bglayer {
		background-image: url(/images/top_aboutus_bg.jpg);
		transform-origin: center 71.5%;
	}
	#my-top #content #top_aboutus .bglayer,
	#my-top #content .slick-active #top_aboutus.init .bglayer {	/* See top.js */
		transform: scale(1.34);
	}
	#my-top #content #top_onlinestore .bglayer {
		background-image: url(/images/top_onlinestore_bg.jpg);
		transform: scale(1.43);
		transform-origin: 39.5% 62%;
	}
	#my-top #content #top_producer .bglayer {
		background-image: url(/images/top_producer_bg.jpg);
		transform: scale(1.26);
		transform-origin: 52.5% 24%;
	}
	#my-top #content #top_yaoya .bglayer {
		background-image: url(/images/top_yaoya_bg.jpg);
		width: 76.56%;	/* 1470 / 1920 */
		left: 23.44%;
		transform: scale(1.5);
		transform-origin: 49% 30%;
	}
	#my-top #content #top_recipe .bglayer {
		background-image: url(/images/top_recipe_bg.jpg);
		transform: scale(1.3);
		transform-origin: 20% 54%;
	}
	#my-top #content #top_experience .bglayer {
		background-image: url(/images/top_experience_bg.jpg);
		transform: scale(1.44);
		transform-origin: 26.5% 53.5%;
	}
	#my-top #content #top_yaoya .bgimage {
		width: 23.44%;	/* 450 / 1920 */
	}
	#my-top #content #top_yaoya .bgimage img {
		width: 100%;
		height: 50%;
	}

	/* Page header Components */
	body.page .entry-header,
	.page-header {
		background-image: url(/images/mv_aboutus.jpg);
	}
	#my-blog .page-header {
		background-image: url(/images/mv_news.jpg);
	}
	#my-producer .page-header {
		background-image: url(/images/mv_producer.jpg);
	}
	#my-recipe .page-header {
		background-image: url(/images/mv_recipe.jpg);
	}
	#my-contact .entry-header {
		background-image: url(/images/mv_contact.jpg);
	}
	#my-yaoya .entry-header {
		background-image: url(/images/mv_yaoya.jpg);
	}
}

/* Special media query for front page: SP横向き */
@media screen and (max-width: 767px) and (orientation: landscape) {
	/* Front Page Components */
	#my-top #top_loading #top_loading_skipbtn {
		left: auto;
		right: 4.17%;
	}
	#my-top #content section.snap .bgimage {
		height: calc(var(--viewheight) - 68px);
	}
	#my-top.admin-bar #content section.snap .bgimage {
		height: calc(var(--viewheight) - 68px - var(--wp-admin-bar-height));
	}
	#my-top #content section.snap h2 {
		font-size: min(var(--viewheight) * 0.0533, 20px);	/* 20 / 375 */
	}
	#my-top #content section.snap .catchline {
		font-size: min(var(--viewheight) * 0.064, 24px);	/* 24 / 375 */
	}
	#my-top #content section.snap .descr {
		margin-bottom: calc(var(--viewheight) * 0.0333 + 22px);
		font-size: min(var(--viewheight) * 0.0427, 16px);	/* 16 / 375 */
	}
	#my-top #content section.snap .readmore {
		position: absolute;
		width: auto;
		bottom: 10px;
		right: 10px;
	}
	#my-top #content section.snap .readmore a {
		background-image: none !important;
		border: white 1px solid;
		width: 110px;
		height: 36px;
		padding-top: 0;
		line-height: 34px;
	}
}

/* Special media query for front page and page header: SP縦向き */
@media screen and (max-width: 767px) and (orientation: portrait) {
	.landscapeonly {
		display: none !important;
	}

	/* Front Page Components */
	#my-top #content #top_aboutus .bglayer {
		background-image: url(/images/sp/top_aboutus_bg.jpg);
		transform-origin: 51.5% 60%;
	}
	#my-top #content #top_aboutus .bglayer,
	#my-top #content .slick-active #top_aboutus.init .bglayer {	/* See top.js */
		transform: scale(1.82);
	}
	#my-top #content #top_onlinestore .bglayer {
		background-image: url(/images/sp/top_onlinestore_bg.jpg);
		transform: scale(1.63);
		transform-origin: 56% 72%;
	}
	#my-top #content #top_producer .bglayer {
		background-image: url(/images/sp/top_producer_bg.jpg);
		transform: scale(1.42);
		transform-origin: 53% 17%;
	}
	#my-top #content #top_yaoya .bglayer {
		background-image: url(/images/sp/top_yaoya_bg.jpg);
		transform: scale(1.52);
		transform-origin: 4% 64.5%;
	}
	#my-top #content #top_recipe .bglayer {
		background-image: url(/images/sp/top_recipe_bg.jpg);
		transform: scale(1.58);
		transform-origin: 39% 11%;
	}
	#my-top #content #top_experience .bglayer {
		background-image: url(/images/sp/top_experience_bg.jpg);
		transform: scale(1.57);
		transform-origin: 59.5% 87%;
/*		0.57 x = 1.57 * 81 */
	}
	#my-top #content #top_yaoya .bgimage {
		width: calc(100% - 80px);
		height: 80px;
		left: 80px;
	}
	#my-top #content #top_yaoya .bgimage img {
		width: 50%;
		height: 100%;
	}
	#my-top #content section.snap h2 {
		font-size: min(var(--viewheight) * 0.0303, 20px);	/* 20 / 660 */
	}
	#my-top #content section.snap .catchline {
		font-size: min(var(--viewheight) * 0.0364, 24px);	/* 24 / 660 */
	}
	#my-top #content section.snap .descr {
		font-size: min(var(--viewheight) * 0.0242, 16px);	/* 16 / 660 */
	}

	/* Page header Components
	----------------------------------------------- */
	body.page .entry-header,
	.page-header {
		background-image: url(/images/sp/mv_aboutus.jpg);
	}
	#my-blog .page-header {
		background-image: url(/images/sp/mv_news.jpg);
	}
	#my-producer .page-header {
		background-image: url(/images/sp/mv_producer.jpg);
	}
	#my-recipe .page-header {
		background-image: url(/images/sp/mv_recipe.jpg);
	}
	#my-contact .entry-header {
		background-image: url(/images/sp/mv_contact.jpg);
	}
	#my-yaoya .entry-header {
		background-image: url(/images/sp/mv_yaoya.jpg);
	}
}


/* =Print
----------------------------------------------- */
@media print {
	body {
		width: var(--saf-body-min-width);
	}
	#branding,
	#my-top #content .slick-dots,
	#my-top #colophon,
	#top_news {
		position: absolute;
	}
	.entry-meta .edit-link a {
		display: none;
	}
	#respond {
		display: none;
	}

}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
#sb_instagram{width:100%;margin:0 auto;padding:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#sb_instagram #sbi_images,#sb_instagram.sbi_fixed_height{-webkit-box-sizing:border-box;-moz-box-sizing:border-box}#sb_instagram:after,.sbi_lb-commentBox:after,.sbi_lb-data:after,.sbi_lb-dataContainer:after,.sbi_lb-outerContainer:after{content:"";display:table;clear:both}#sb_instagram.sbi_fixed_height{overflow:hidden;overflow-y:auto;box-sizing:border-box}#sb_instagram #sbi_images{box-sizing:border-box;display:grid;width:100%;padding:12px 0}#sb_instagram .sbi_header_link{-webkit-box-shadow:none;box-shadow:none}#sb_instagram .sbi_header_link:hover,.sbi_lightbox a img{border:none}#sb_instagram #sbi_images .sbi_item{display:inline-block;width:100%;vertical-align:top;zoom:1;margin:0!important;text-decoration:none;opacity:1;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:.5s;-moz-transition:.5s;-o-transition:.5s;transition:.5s}#sb_instagram #sbi_images .sbi_item.sbi_transition{opacity:0}#sb_instagram.sbi_col_1 #sbi_images,#sb_instagram.sbi_col_1.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(1,1fr)}#sb_instagram.sbi_col_2 #sbi_images,#sb_instagram.sbi_col_2.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(2,1fr)}#sb_instagram.sbi_col_3 #sbi_images,#sb_instagram.sbi_col_3.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(3,1fr)}#sb_instagram.sbi_col_4 #sbi_images,#sb_instagram.sbi_col_4.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(4,1fr)}#sb_instagram.sbi_col_5 #sbi_images,#sb_instagram.sbi_col_5.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(5,1fr)}#sb_instagram.sbi_col_6 #sbi_images,#sb_instagram.sbi_col_6.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(6,1fr)}#sb_instagram.sbi_col_7 #sbi_images,#sb_instagram.sbi_col_7.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(7,1fr)}#sb_instagram.sbi_col_8 #sbi_images,#sb_instagram.sbi_col_8.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(8,1fr)}#sb_instagram.sbi_col_9 #sbi_images,#sb_instagram.sbi_col_9.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(9,1fr)}#sb_instagram.sbi_col_10 #sbi_images,#sb_instagram.sbi_col_10.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(10,1fr)}#sb_instagram #sbi_load .sbi_load_btn,#sb_instagram .sbi_photo_wrap{position:relative}#sb_instagram .sbi_photo{display:block;text-decoration:none}#sb_instagram .sbi_photo img{width:100%;height:inherit;object-fit:cover;scale:1;transition:transform .5s ease-in-out;transition:transform .5s ease-in-out,-webkit-transform .5s ease-in-out;vertical-align:middle}#sb_instagram .sbi_no_js img,#sb_instagram br,#sb_instagram p:empty,#sb_instagram.sbi_no_js .sbi_load_btn,#sb_instagram.sbi_no_js .sbi_photo img{display:none}#sb_instagram a,#sb_instagram a:active,#sb_instagram a:focus,#sb_instagram a:hover,.sbi_lightbox a:active,.sbi_lightbox a:focus,.sbi_lightbox a:hover{outline:0}#sb_instagram img{display:block;padding:0!important;margin:0!important;max-width:100%!important;opacity:1!important}#sb_instagram .sbi_link{display:none;position:absolute;bottom:0;right:0;width:100%;padding:10px 0;background:rgba(0,0,0,.5);text-align:center;color:#fff;font-size:12px;line-height:1.1}#sb_instagram .sbi_link a{padding:0 6px;text-decoration:none;color:#fff;font-size:12px;line-height:1.1;display:inline-block;vertical-align:top;zoom:1}#sb_instagram .sbi_link .sbi_lightbox_link{padding-bottom:5px}#sb_instagram .sbi_link a:focus,#sb_instagram .sbi_link a:hover{text-decoration:underline}#sb_instagram .sbi_photo_wrap:focus .sbi_link,#sb_instagram .sbi_photo_wrap:hover .sbi_link{display:block}#sb_instagram svg:not(:root).svg-inline--fa{height:1em;display:inline-block}#sb_instagram .sbi_type_carousel .sbi_playbtn,#sb_instagram .sbi_type_carousel .svg-inline--fa.fa-play,#sb_instagram .sbi_type_video .sbi_playbtn,#sb_instagram .sbi_type_video .svg-inline--fa.fa-play,.sbi_type_carousel .fa-clone{display:block!important;position:absolute;z-index:1;color:rgba(255,255,255,.9);font-style:normal!important;text-shadow:0 0 8px rgba(0,0,0,.8)}#sb_instagram .sbi_type_carousel .sbi_playbtn,#sb_instagram .sbi_type_video .sbi_playbtn{z-index:2;top:50%;left:50%;margin-top:-24px;margin-left:-19px;padding:0;font-size:48px}#sb_instagram .sbi_type_carousel .fa-clone{right:12px;top:12px;font-size:24px;text-shadow:0 0 8px rgba(0,0,0,.3)}#sb_instagram .sbi_type_carousel .svg-inline--fa.fa-play,#sb_instagram .sbi_type_video .svg-inline--fa.fa-play,.sbi_type_carousel svg.fa-clone{-webkit-filter:drop-shadow(0px 0px 2px rgba(0,0,0,.4));filter:drop-shadow( 0px 0px 2px rgba(0,0,0,.4))}#sb_instagram .sbi_loader{width:20px;height:20px;position:relative;top:50%;left:50%;margin:-10px 0 0 -10px;background-color:rgba(0,0,0,.5);border-radius:100%;-webkit-animation:1s ease-in-out infinite sbi-sk-scaleout;animation:1s ease-in-out infinite sbi-sk-scaleout}#sbi_load p{display:inline;padding:0;margin:0}#sb_instagram #sbi_load .sbi_loader{position:absolute;margin-top:-11px;background-color:#fff;opacity:1}@-webkit-keyframes sbi-sk-scaleout{0%{-webkit-transform:scale(0)}100%{-webkit-transform:scale(1);opacity:0}}@keyframes sbi-sk-scaleout{0%{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:0}}#sb_instagram .fa-spin,#sbi_lightbox .fa-spin{-webkit-animation:2s linear infinite fa-spin;animation:2s linear infinite fa-spin}#sb_instagram .fa-pulse,#sbi_lightbox .fa-pulse{-webkit-animation:1s steps(8) infinite fa-spin;animation:1s steps(8) infinite fa-spin}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.sbi-screenreader{text-indent:-9999px!important;display:block!important;width:0!important;height:0!important;line-height:0!important;text-align:left!important;overflow:hidden!important}#sb_instagram .sb_instagram_header,.sb_instagram_header{overflow:hidden;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:12px 0}#sb_instagram .sb_instagram_header a,.sb_instagram_header a{transition:color .5s;text-decoration:none}.sb_instagram_header.sbi_header_outside{float:none;margin-left:auto!important;margin-right:auto!important;display:flex}.sbi_no_avatar .sbi_header_img{background:#333;color:#fff;width:50px;height:50px;position:relative}.sb_instagram_header .sbi_header_hashtag_icon{opacity:0;position:absolute;width:100%;top:0;bottom:0;left:0;text-align:center;color:#fff;background:rgba(0,0,0,.75)}.sbi_no_avatar .sbi_header_hashtag_icon{display:block;color:#fff;opacity:.9;-webkit-transition:background .6s linear,color .6s linear;-moz-transition:background .6s linear,color .6s linear;-o-transition:background .6s linear,color .6s linear;transition:background .6s linear,color .6s linear}.sbi_no_avatar:hover .sbi_header_hashtag_icon{display:block;opacity:1;-webkit-transition:background .2s linear,color .2s linear;-moz-transition:background .2s linear,color .2s linear;-o-transition:background .2s linear,color .2s linear;transition:background .2s linear,color .2s linear}@media all and (min-width:480px){#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img,#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img img,.sb_instagram_header.sbi_medium .sbi_header_img,.sb_instagram_header.sbi_medium .sbi_header_img img{width:80px;height:80px;border-radius:50%}#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,.sb_instagram_header.sbi_medium .sbi_header_text h3{font-size:20px}#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info,.sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,.sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info{font-size:14px}#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info,#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,.sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,.sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info,.sb_instagram_header.sbi_medium .sbi_header_text h3{line-height:1.4}#sb_instagram .sb_instagram_header.sbi_large .sbi_header_img,#sb_instagram .sb_instagram_header.sbi_large .sbi_header_img img,.sb_instagram_header.sbi_large .sbi_header_img,.sb_instagram_header.sbi_large .sbi_header_img img{width:120px;height:120px;border-radius:50%}#sb_instagram .sb_instagram_header.sbi_large .sbi_header_text h3,.sb_instagram_header.sbi_large .sbi_header_text h3{font-size:28px}#sb_instagram .sb_instagram_header.sbi_large .sbi_header_text .sbi_bio,#sb_instagram .sb_instagram_header.sbi_large .sbi_header_text .sbi_bio_info,.sb_instagram_header.sbi_large .sbi_header_text .sbi_bio,.sb_instagram_header.sbi_large .sbi_header_text .sbi_bio_info{font-size:16px}}#sb_instagram .sb_instagram_header .sbi_header_img,.sb_instagram_header .sbi_header_img{position:relative;width:50px;height:50px;overflow:hidden;-moz-border-radius:40px;-webkit-border-radius:40px;border-radius:50%}#sb_instagram .sb_instagram_header .sbi_header_img_hover,.sb_instagram_header .sbi_header_img_hover{opacity:0;position:absolute;width:100%;top:0;bottom:0;left:0;text-align:center;color:#fff;background:rgba(0,0,0,.75);z-index:2;transition:opacity .4s ease-in-out}#sb_instagram .sb_instagram_header .sbi_header_hashtag_icon .sbi_new_logo,#sb_instagram .sb_instagram_header .sbi_header_img_hover .sbi_new_logo,.sb_instagram_header .sbi_header_hashtag_icon .sbi_new_logo,.sb_instagram_header .sbi_header_img_hover .sbi_new_logo{position:absolute;top:50%;left:50%;margin-top:-12px;margin-left:-12px;width:24px;height:24px;font-size:24px}#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_hashtag_icon .sbi_new_logo,.sb_instagram_header.sbi_medium .sbi_header_hashtag_icon .sbi_new_logo{margin-top:-18px;margin-left:-18px;width:36px;height:36px;font-size:36px}#sb_instagram .sb_instagram_header.sbi_large .sbi_header_hashtag_icon .sbi_new_logo,.sb_instagram_header.sbi_large .sbi_header_hashtag_icon .sbi_new_logo{margin-top:-24px;margin-left:-24px;width:48px;height:48px;font-size:48px}#sb_instagram .sb_instagram_header .sbi_header_img_hover i{overflow:hidden}#sb_instagram .sb_instagram_header .sbi_fade_in,.sb_instagram_header .sbi_fade_in{opacity:1;transition:opacity .2s ease-in-out}#sb_instagram .sb_instagram_header a:focus .sbi_header_img_hover,#sb_instagram .sb_instagram_header a:hover .sbi_header_img_hover,#sb_instagram.sbi_no_js #sbi_images .sbi_item.sbi_transition,.sb_instagram_header a:focus .sbi_header_img_hover,.sb_instagram_header a:hover .sbi_header_img_hover,.sbi_lb-nav a.sbi_lb-next:hover,.sbi_lb-nav a.sbi_lb-prev:hover{opacity:1}#sb_instagram .sb_instagram_header .sbi_header_text,.sb_instagram_header .sbi_header_text{display:flex;gap:20px;justify-content:flex-start;align-items:center}#sb_instagram .sb_instagram_header.sbi_large .sbi_feedtheme_header_text,.sb_instagram_header.sbi_large .sbi_feedtheme_header_text{gap:8px}.sb_instagram_header.sbi_medium .sbi_feedtheme_header_text{gap:4px}.sbi_feedtheme_header_text{display:flex;justify-content:flex-start;align-items:flex-start;flex:1;flex-direction:column;gap:4px}#sb_instagram .sb_instagram_header h3,.sb_instagram_header h3{font-size:16px;line-height:1.3;margin:0;padding:0}#sb_instagram .sb_instagram_header p,.sb_instagram_header p{font-size:13px;line-height:1.3;margin:0;padding:0}#sb_instagram .sb_instagram_header .sbi_header_text img.emoji,.sb_instagram_header .sbi_header_text img.emoji{margin-right:3px!important}#sb_instagram .sb_instagram_header .sbi_header_text.sbi_no_bio .sbi_bio_info,.sb_instagram_header .sbi_header_text.sbi_no_bio .sbi_bio_info{clear:both}#sb_instagram #sbi_load{float:left;clear:both;width:100%;text-align:center;opacity:1;transition:.5s ease-in}#sb_instagram #sbi_load .fa-spinner{display:none;position:absolute;top:50%;left:50%;margin:-8px 0 0 -7px;font-size:15px}#sb_instagram #sbi_load .sbi_load_btn,#sb_instagram .sbi_follow_btn a,.et-db #et-boc .et-l .et_pb_module .sbi_follow_btn a{display:inline-block;vertical-align:top;zoom:1;padding:7px 14px;margin:5px auto 0;background:#333;text-decoration:none;line-height:1.5}#sb_instagram .sbi_load_btn .sbi_btn_text,#sb_instagram .sbi_load_btn .sbi_loader{opacity:1;transition:.1s ease-in}#sb_instagram .sbi_hidden{opacity:0!important}#sb_instagram #sbi_load .sbi_load_btn,#sb_instagram .sbi_follow_btn a{border:none;color:#fff;font-size:13px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;transition:.1s ease-in}.sbi_lb-nav a.sbi_lb-next,.sbi_lb-nav a.sbi_lb-prev{width:50px;padding-left:10px;padding-right:10px;opacity:.5;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s}#sb_instagram .sbi_follow_btn{display:inline-block;vertical-align:top;zoom:1;text-align:center}#sb_instagram .sbi_follow_btn.sbi_top{display:block;margin-bottom:5px}#sb_instagram .sbi_follow_btn a{background:#408bd1;color:#fff}#sb_instagram #sbi_load .sbi_load_btn:hover{outline:0;box-shadow:inset 0 0 20px 20px rgba(255,255,255,.25)}#sb_instagram .sbi_follow_btn a:focus,#sb_instagram .sbi_follow_btn a:hover{outline:0;box-shadow:inset 0 0 10px 20px #359dff}#sb_instagram #sbi_load .sbi_load_btn:active,#sb_instagram .sbi_follow_btn a:active{box-shadow:inset 0 0 10px 20px rgba(0,0,0,.3)}#sb_instagram .sbi_follow_btn .fa,#sb_instagram .sbi_follow_btn svg{margin-bottom:-1px;margin-right:7px;font-size:15px}#sb_instagram .sbi_follow_btn svg{vertical-align:-.125em}#sb_instagram #sbi_load .sbi_follow_btn{margin-left:5px}#sb_instagram .sb_instagram_error{width:100%;text-align:center;line-height:1.4}#sbi_mod_error{display:none;border:1px solid #ddd;background:#eee;color:#333;margin:10px 0 0;padding:10px 15px;font-size:13px;text-align:center;clear:both;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}#sbi_mod_error br{display:initial!important}#sbi_mod_error p{padding:5px 0!important;margin:0!important;line-height:1.3!important}#sbi_mod_error ol,#sbi_mod_error ul{padding:5px 0 5px 20px!important;margin:0!important}#sbi_mod_error li{padding:1px 0!important;margin:0!important}#sbi_mod_error span{font-size:12px}#sb_instagram.sbi_medium .sbi_photo_wrap .svg-inline--fa.fa-play,#sb_instagram.sbi_medium .sbi_playbtn{margin-top:-12px;margin-left:-9px;font-size:23px}#sb_instagram.sbi_medium .sbi_type_carousel .sbi_photo_wrap .fa-clone{right:8px;top:8px;font-size:18px}#sb_instagram.sbi_small .sbi_photo_wrap .svg-inline--fa.fa-play,#sb_instagram.sbi_small .sbi_playbtn{margin-top:-9px;margin-left:-7px;font-size:18px}#sb_instagram.sbi_small .sbi_type_carousel .sbi_photo_wrap .fa-clone{right:5px;top:5px;font-size:12px}@media all and (max-width:640px){#sb_instagram.sbi_col_3 #sbi_images,#sb_instagram.sbi_col_4 #sbi_images,#sb_instagram.sbi_col_5 #sbi_images,#sb_instagram.sbi_col_6 #sbi_images{grid-template-columns:repeat(2,1fr)}#sb_instagram.sbi_col_10 #sbi_images,#sb_instagram.sbi_col_7 #sbi_images,#sb_instagram.sbi_col_8 #sbi_images,#sb_instagram.sbi_col_9 #sbi_images{grid-template-columns:repeat(4,1fr)}#sb_instagram.sbi_width_resp{width:100%!important}}#sb_instagram.sbi_no_js #sbi_images .sbi_item .sbi_photo_wrap{box-sizing:border-box;position:relative;overflow:hidden}#sb_instagram.sbi_no_js #sbi_images .sbi_item .sbi_photo_wrap:before{content:"";display:block;padding-top:100%;z-index:-300}#sb_instagram.sbi_no_js #sbi_images .sbi_item .sbi_photo{position:absolute;top:0;left:0;bottom:0;right:0}#sb_instagram #sbi_images .sbi_js_load_disabled .sbi_imgLiquid_ready.sbi_photo,#sb_instagram #sbi_images .sbi_no_js_customizer .sbi_imgLiquid_ready.sbi_photo{padding-bottom:0!important}#sb_instagram #sbi_mod_error .sb_frontend_btn{display:inline-block;padding:6px 10px;background:rgba(0,0,0,.1);text-decoration:none;border-radius:5px;margin-top:10px;color:#444}#sb_instagram #sbi_mod_error .sb_frontend_btn:hover{background:rgba(0,0,0,.15)}#sb_instagram #sbi_mod_error .sb_frontend_btn .fa{margin-right:2px}#sb_instagram.sbi_palette_dark,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lightbox_tooltip,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_share_close,.sbi_header_outside.sbi_header_palette_dark{background-color:rgba(0,0,0,.85);color:rgba(255,255,255,.75)}#sb_instagram.sbi_palette_dark .sbi_caption,#sb_instagram.sbi_palette_dark .sbi_meta,#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_dark_lightbox .sbi_lb-commentBox p,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details .sbi_lb-caption,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-number,.sbi_header_palette_dark,.sbi_header_palette_dark .sbi_bio{color:rgba(255,255,255,.75)}#sb_instagram.sbi_palette_dark .sbi_expand a,#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_dark_lightbox .sbi_lb-commentBox .sbi_lb-commenter,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details a,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details a p,.sbi_header_palette_dark a{color:#fff}#sb_instagram.sbi_palette_light,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lightbox_tooltip,#sbi_lightbox.sbi_palette_light_lightbox .sbi_share_close,.sbi_header_outside.sbi_header_palette_light{color:rgba(0,0,0,.85);background-color:rgba(255,255,255,.75)}#sb_instagram.sbi_palette_light .sbi_caption,#sb_instagram.sbi_palette_light .sbi_meta,#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_light_lightbox .sbi_lb-commentBox p,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details .sbi_lb-caption,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-number,.sbi_header_palette_light,.sbi_header_palette_light .sbi_bio{color:rgba(0,0,0,.85)}#sb_instagram.sbi_palette_light .sbi_expand a,#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_light_lightbox .sbi_lb-commentBox .sbi_lb-commenter,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details a,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details a p,.sbi_header_palette_light a{color:#000}@media all and (max-width:800px){#sb_instagram.sbi_tab_col_10 #sbi_images{grid-template-columns:repeat(10,1fr)}#sb_instagram.sbi_tab_col_9 #sbi_images{grid-template-columns:repeat(9,1fr)}#sb_instagram.sbi_tab_col_8 #sbi_images{grid-template-columns:repeat(8,1fr)}#sb_instagram.sbi_tab_col_7 #sbi_images{grid-template-columns:repeat(7,1fr)}#sb_instagram.sbi_tab_col_6 #sbi_images{grid-template-columns:repeat(6,1fr)}#sb_instagram.sbi_tab_col_5 #sbi_images{grid-template-columns:repeat(5,1fr)}#sb_instagram.sbi_tab_col_4 #sbi_images{grid-template-columns:repeat(4,1fr)}#sb_instagram.sbi_tab_col_3 #sbi_images{grid-template-columns:repeat(3,1fr)}#sb_instagram.sbi_tab_col_2 #sbi_images{grid-template-columns:repeat(2,1fr)}#sb_instagram.sbi_tab_col_1 #sbi_images{grid-template-columns:1fr}}@media all and (max-width:480px){#sb_instagram.sbi_col_10 #sbi_images,#sb_instagram.sbi_col_10.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_3 #sbi_images,#sb_instagram.sbi_col_3.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_4 #sbi_images,#sb_instagram.sbi_col_4.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_5 #sbi_images,#sb_instagram.sbi_col_5.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_6 #sbi_images,#sb_instagram.sbi_col_6.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_7 #sbi_images,#sb_instagram.sbi_col_7.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_8 #sbi_images,#sb_instagram.sbi_col_8.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_9 #sbi_images,#sb_instagram.sbi_col_9.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_mob_col_1 #sbi_images{grid-template-columns:1fr}#sb_instagram.sbi_mob_col_2 #sbi_images{grid-template-columns:repeat(2,1fr)}#sb_instagram.sbi_mob_col_3 #sbi_images{grid-template-columns:repeat(3,1fr)}#sb_instagram.sbi_mob_col_4 #sbi_images{grid-template-columns:repeat(4,1fr)}#sb_instagram.sbi_mob_col_5 #sbi_images{grid-template-columns:repeat(5,1fr)}#sb_instagram.sbi_mob_col_6 #sbi_images{grid-template-columns:repeat(6,1fr)}#sb_instagram.sbi_mob_col_7 #sbi_images{grid-template-columns:repeat(7,1fr)}#sb_instagram.sbi_mob_col_8 #sbi_images{grid-template-columns:repeat(8,1fr)}#sb_instagram.sbi_mob_col_9 #sbi_images{grid-template-columns:repeat(9,1fr)}#sb_instagram.sbi_mob_col_10 #sbi_images{grid-template-columns:repeat(10,1fr)}}#sb_instagram #sbi_images .sbi_item.sbi_num_diff_hide{display:none!important}body:after{content:url(/wp-content/plugins/instagram-feed/img/sbi-sprite.png);display:none}.sbi_lightboxOverlay{position:absolute;top:0;left:0;z-index:99999;background-color:#000;opacity:.9;display:none}.sbi_lightbox{position:absolute;left:0;width:100%;z-index:100000;text-align:center;line-height:0;font-weight:400}.sbi_lightbox .sbi_lb-image{display:block;height:auto;max-width:inherit;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;object-fit:contain}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-image{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;-ms-border-radius:3px 0 0 3px;-o-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.sbi_lb-outerContainer{position:relative;background-color:#000;width:250px;height:250px;margin:0 auto 5px;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px}.sbi_lb-container-wrapper{height:100%}.sbi_lb-container{position:relative;top:0;left:0;width:100%;height:100%;bottom:0;right:0}.sbi_lb-loader{position:absolute;width:100%;top:50%;left:0;height:20px;margin-top:-10px;text-align:center;line-height:0}.sbi_lb-loader span{display:block;width:14px;height:14px;margin:0 auto;background:url(/wp-content/plugins/instagram-feed/img/sbi-sprite.png) no-repeat}.sbi_lb-container>.nav{left:0}.sbi_lb-nav a{position:absolute;z-index:100;top:0;height:90%;outline:0;background-image:url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==')}.sbi_lb-next,.sbi_lb-prev{height:100%;cursor:pointer;display:block}.sbi_lb-nav a.sbi_lb-prev{left:-70px;float:left;transition:opacity .2s}.sbi_lb-nav a.sbi_lb-next{right:-70px;float:right;transition:opacity .2s}.sbi_lb-nav span{display:block;top:55%;position:absolute;left:20px;width:34px;height:45px;margin:-25px 0 0;background:url(/wp-content/plugins/instagram-feed/img/sbi-sprite.png) no-repeat}.sbi_lb-nav a.sbi_lb-prev span{background-position:-53px 0}.sbi_lb-nav a.sbi_lb-next span{left:auto;right:20px;background-position:-18px 0}.sbi_lb-dataContainer{margin:0 auto;padding-top:10px;width:100%;font-family:"Open Sans",Helvetica,Arial,sans-serif;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-outerContainer{position:relative;padding-right:300px;background:#fff;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-container-wrapper{position:relative;background:#000}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-dataContainer{width:300px!important;position:absolute;top:0;right:-300px;height:100%;bottom:0;background:#fff;line-height:1.4;overflow:hidden;overflow-y:auto;text-align:left}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commentBox{display:block!important;width:100%;margin-top:20px;padding:4px}#sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-number{padding-bottom:0}#sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-caption{width:100%;max-width:100%;margin-bottom:20px}#sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-caption .sbi_caption_text{display:inline-block;padding-top:10px}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-comment{display:block!important;width:100%;min-width:100%;float:left;clear:both;font-size:12px;padding:3px 20px 3px 0;margin:0 0 1px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commenter{font-weight:700;margin-right:5px}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commentBox p{text-align:left}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-dataContainer{box-sizing:border-box;padding:15px 20px}.sbi_lb-data{padding:0 4px;color:#ccc}.sbi_lb-data .sbi_lb-details{width:85%;float:left;text-align:left;line-height:1.1}.sbi_lb-data .sbi_lb-caption{float:left;font-size:13px;font-weight:400;line-height:1.3;padding-bottom:3px;color:#ccc;word-wrap:break-word;word-break:break-word;overflow-wrap:break-word;-webkit-hyphens:auto;-moz-hyphens:auto;hyphens:auto}.sbi_lb-data .sbi_lb-caption a{color:#ccc;font-weight:700;text-decoration:none}.sbi_lb-commenter:hover,.sbi_lb-data .sbi_lb-caption .sbi_lightbox_username:hover p,.sbi_lb-data .sbi_lb-caption a:hover{color:#fff;text-decoration:underline}.sbi_lb-data .sbi_lb-caption .sbi_lightbox_username{float:left;width:100%;color:#ccc;padding-bottom:0;display:block;margin:0 0 5px}#sbi_lightbox.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-number,#sbi_lightbox.sbi_lightbox.sbi_lb-comments-enabled .sbi_lightbox_action a,#sbi_lightbox.sbi_lightbox.sbi_lb-comments-enabled .sbi_lightbox_action a:hover,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commenter,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commenter:hover,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption .sbi_lightbox_username p,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption .sbi_lightbox_username:hover p,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption a,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption a:hover,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lightbox_username{color:#333}.sbi_lightbox .sbi_lightbox_username img{float:left;border:none;width:32px;height:32px;margin-right:10px;background:#666;-moz-border-radius:40px;-webkit-border-radius:40px;border-radius:40px}.sbi_lightbox_username p{float:left;margin:0;padding:0;color:#ccc;line-height:32px;font-weight:700;font-size:13px}.sbi_lb-data .sbi_lb-number{display:block;float:left;clear:both;padding:5px 0 15px;font-size:12px;color:#999}.sbi_lb-data .sbi_lb-close{display:block;float:right;width:30px;height:30px;font-size:18px;color:#aaa;text-align:right;outline:0;opacity:.7;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.sbi_lb-data .sbi_lb-close:hover{cursor:pointer;opacity:1;color:#fff}.sbi_lb-nav{top:0;left:0;width:100%;z-index:10;height:auto}.sbi-feed-block-cta,.sbi-feed-block-cta-img-ctn{width:100%!important;position:relative!important}.sbi_lightbox .sbi_owl-item:nth-child(n+2) .sbi_video{position:relative!important}.sbi_lb-container{padding:0}.sbi-feed-block-cta{border:1px solid #e8e8eb!important;border-radius:2px!important;text-align:center!important}.sbi-feed-block-cta-img-ctn{float:left!important;display:flex!important;justify-content:center!important;align-items:center!important;margin-top:50px!important;margin-bottom:35px!important}.sbi-feed-block-cta-img{width:65px!important;height:65px!important;position:relative!important;border:2px solid #dcdde1!important;border-radius:16px!important;-webkit-transform:rotate(-3deg)!important;transform:rotate(-3deg)!important;display:flex!important;justify-content:center!important;align-items:center!important}.sbi-feed-block-cta-img span svg{float:left!important}.sbi-feed-block-cta-img>*{-webkit-transform:rotate(3deg)!important;transform:rotate(3deg)!important}.sbi-feed-block-cta-logo{position:absolute!important;right:-15px!important;bottom:-19px!important;z-index:1!important}.sbi-feed-block-cta-heading{font-size:19px!important;padding:0!important;margin:0 0 30px!important;display:inline-block!important;width:100%!important;font-weight:700!important;line-height:1.4em!important}.sbi-feed-block-cta-btn{background:#0068a0!important;border-radius:2px!important;padding:8px 20px 8px 38px!important;cursor:pointer!important;color:#fff!important;position:relative!important;margin-bottom:30px!important}.sbi-feed-block-cta-btn:after,.sbi-feed-block-cta-btn:before{content:''!important;position:absolute!important;width:2px!important;height:12px!important;background:#fff!important;left:20px!important;top:14px!important}.sbi-feed-block-cta-btn:after{-webkit-transform:rotate(90deg)!important;transform:rotate(90deg)!important}.sbi-feed-block-cta-desc{display:flex!important;justify-content:center!important;align-items:center!important;padding:20px!important;background:#f9f9fa!important;border-top:1px solid #e8e8eb!important;margin-top:35px!important;flex-direction:column!important}.sbi-feed-block-cta-desc strong{color:#141b38!important;font-size:16px!important;font-weight:600!important;margin-bottom:8px!important}.sbi-feed-block-cta-desc span{color:#434960!important;font-size:14px!important;line-height:1.5em!important;padding:0 20%!important}.sbi-feed-block-cta-desc span a,.sbi-feed-block-cta-selector span a{text-transform:capitalize!important;text-decoration:underline!important;font-weight:600!important}.sbi-feed-block-cta-selector{width:100%!important;padding:0 20%!important;display:flex!important;justify-content:center!important;align-items:center!important;flex-direction:column!important;margin-bottom:45px!important}.sbi-feed-block-cta-feedselector{border:1px solid #d0d1d7!important;padding:8px 16px!important;margin-bottom:15px!important;max-width:100%!important;min-width:400px!important}.sbi-feed-block-cta-selector span{color:#2c324c!important}.sbi-feed-block-cta-selector span a:after{color:#2c324c!important;margin-left:2px!important;font-weight:400!important;text-decoration-color:#fff!important}.sbi-feed-block-cta-selector span a:first-of-type:after{content:','!important}.sbi-feed-block-cta-selector span a:nth-of-type(2):after{content:'or'!important;margin-left:5px!important;margin-right:2px!important}.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_facebook_feed::before,.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_instagram_feed::before,.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_twitter_feed::before,.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_youtube_feed::before{content:''!important;height:16px!important;font-variant:normal!important;background-position:center center!important;background-repeat:no-repeat!important}.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_facebook_feed::before{background-image:url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 29 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9056 18.109H13.4056V17.609H12.9056V18.109ZM9.79722 18.109H9.29722V18.609H9.79722V18.109ZM9.79722 14.5601V14.0601H9.29722V14.5601H9.79722ZM12.9056 14.5601V15.0601H13.4056V14.5601H12.9056ZM20.2604 7.32764H20.7604V6.90407L20.3426 6.83444L20.2604 7.32764ZM20.2604 10.3503V10.8503H20.7604V10.3503H20.2604ZM16.7237 14.5601H16.2237V15.0601H16.7237V14.5601ZM20.1258 14.5601L20.6199 14.6367L20.7094 14.0601H20.1258V14.5601ZM19.5751 18.109V18.609H20.0035L20.0692 18.1857L19.5751 18.109ZM16.7237 18.109V17.609H16.2237V18.109H16.7237ZM27.0523 14.5601H26.5523L26.5523 14.5612L27.0523 14.5601ZM17.0803 26.6136L16.9877 26.1222L17.0803 26.6136ZM12.5489 26.6139L12.6411 26.1225L12.5489 26.6139ZM14.8147 1.79797C7.80749 1.79797 2.07703 7.51685 2.07703 14.5601H3.07703C3.07703 8.06849 8.36042 2.79797 14.8147 2.79797V1.79797ZM2.07703 14.5601C2.07703 20.7981 6.54984 25.9974 12.4567 27.1053L12.6411 26.1225C7.19999 25.1019 3.07703 20.3097 3.07703 14.5601H2.07703ZM13.4056 26.3139V18.109H12.4056V26.3139H13.4056ZM12.9056 17.609H9.79722V18.609H12.9056V17.609ZM10.2972 18.109V14.5601H9.29722V18.109H10.2972ZM9.79722 15.0601H12.9056V14.0601H9.79722V15.0601ZM13.4056 14.5601V11.8556H12.4056V14.5601H13.4056ZM13.4056 11.8556C13.4056 10.4191 13.8299 9.36825 14.5211 8.67703C15.2129 7.98525 16.2305 7.59512 17.5314 7.59512V6.59512C16.0299 6.59512 14.7346 7.04939 13.814 7.96992C12.893 8.891 12.4056 10.2204 12.4056 11.8556H13.4056ZM17.5314 7.59512C18.1724 7.59512 18.8342 7.65119 19.3401 7.70823C19.592 7.73664 19.8029 7.76502 19.9504 7.78622C20.0241 7.79681 20.0818 7.8056 20.1208 7.81167C20.1402 7.81471 20.155 7.81706 20.1647 7.81863C20.1695 7.81941 20.1731 7.82 20.1754 7.82037C20.1765 7.82056 20.1773 7.82069 20.1778 7.82077C20.178 7.82081 20.1782 7.82083 20.1782 7.82084C20.1783 7.82085 20.1783 7.82085 20.1783 7.82085C20.1783 7.82085 20.1783 7.82085 20.1783 7.82085C20.1782 7.82084 20.1782 7.82084 20.2604 7.32764C20.3426 6.83444 20.3426 6.83443 20.3425 6.83443C20.3425 6.83442 20.3424 6.83441 20.3424 6.83441C20.3423 6.83439 20.3422 6.83437 20.342 6.83435C20.3418 6.8343 20.3414 6.83425 20.341 6.83417C20.3401 6.83403 20.3389 6.83383 20.3373 6.83357C20.3342 6.83307 20.3298 6.83234 20.3241 6.83142C20.3127 6.82958 20.2962 6.82695 20.2749 6.82362C20.2323 6.81698 20.1707 6.8076 20.0927 6.7964C19.9369 6.774 19.7157 6.74425 19.4521 6.71453C18.927 6.65532 18.2243 6.59512 17.5314 6.59512V7.59512ZM19.7604 7.32764V10.3503H20.7604V7.32764H19.7604ZM20.2604 9.85033H18.7185V10.8503H20.2604V9.85033ZM18.7185 9.85033C17.851 9.85033 17.1997 10.1241 16.7742 10.6148C16.3604 11.0922 16.2237 11.7025 16.2237 12.2594H17.2237C17.2237 11.8495 17.3257 11.5053 17.5298 11.2699C17.7224 11.0477 18.0684 10.8503 18.7185 10.8503V9.85033ZM16.2237 12.2594V14.5601H17.2237V12.2594H16.2237ZM16.7237 15.0601H20.1258V14.0601H16.7237V15.0601ZM19.6317 14.4834L19.081 18.0323L20.0692 18.1857L20.6199 14.6367L19.6317 14.4834ZM19.5751 17.609H16.7237V18.609H19.5751V17.609ZM16.2237 18.109V26.3135H17.2237V18.109H16.2237ZM17.1728 27.105C20.0281 26.5671 22.618 25.068 24.5079 22.8512L23.7469 22.2025C22.0054 24.2452 19.6188 25.6266 16.9877 26.1222L17.1728 27.105ZM24.5079 22.8512C26.4793 20.5388 27.5591 17.5977 27.5523 14.559L26.5523 14.5612C26.5586 17.3614 25.5636 20.0715 23.7469 22.2025L24.5079 22.8512ZM27.5523 14.5601C27.5523 7.51685 21.8218 1.79797 14.8147 1.79797V2.79797C21.2689 2.79797 26.5523 8.06849 26.5523 14.5601H27.5523ZM16.2237 26.3135C16.2237 26.8064 16.6682 27.2 17.1728 27.105L16.9877 26.1222C17.119 26.0975 17.2237 26.2006 17.2237 26.3135H16.2237ZM12.4567 27.1053C12.9603 27.1998 13.4056 26.8073 13.4056 26.3139H12.4056C12.4056 26.2001 12.5107 26.098 12.6411 26.1225L12.4567 27.1053Z' fill='%232b87da' /%3E%3Cpath d='M12.9056 18.1088H13.4056V17.6088H12.9056V18.1088ZM9.79724 18.1088H9.29724V18.6088H9.79724V18.1088ZM9.79724 14.5599V14.0599H9.29724V14.5599H9.79724ZM12.9056 14.5599V15.0599H13.4056V14.5599H12.9056ZM20.2604 7.32749H20.7604V6.90392L20.3426 6.83429L20.2604 7.32749ZM20.2604 10.3502V10.8502H20.7604V10.3502H20.2604ZM16.7237 14.5599H16.2237V15.0599H16.7237V14.5599ZM20.1258 14.5599L20.6199 14.6366L20.7094 14.0599H20.1258V14.5599ZM19.5751 18.1088V18.6088H20.0035L20.0692 18.1855L19.5751 18.1088ZM16.7237 18.1088V17.6088H16.2237V18.1088H16.7237ZM13.4056 26.366V18.1088H12.4056V26.366H13.4056ZM12.9056 17.6088H9.79724V18.6088H12.9056V17.6088ZM10.2972 18.1088V14.5599H9.29724V18.1088H10.2972ZM9.79724 15.0599H12.9056V14.0599H9.79724V15.0599ZM13.4056 14.5599V11.8554H12.4056V14.5599H13.4056ZM13.4056 11.8554C13.4056 10.4189 13.8299 9.3681 14.5212 8.67688C15.2129 7.9851 16.2305 7.59497 17.5314 7.59497V6.59497C16.0299 6.59497 14.7346 7.04924 13.814 7.96977C12.893 8.89085 12.4056 10.2202 12.4056 11.8554H13.4056ZM17.5314 7.59497C18.1724 7.59497 18.8342 7.65103 19.3401 7.70808C19.592 7.73648 19.803 7.76487 19.9504 7.78607C20.0241 7.79666 20.0819 7.80545 20.1208 7.81152C20.1402 7.81455 20.155 7.81691 20.1647 7.81848C20.1695 7.81926 20.1731 7.81984 20.1754 7.82022C20.1765 7.8204 20.1773 7.82054 20.1778 7.82061C20.178 7.82065 20.1782 7.82068 20.1783 7.82069C20.1783 7.8207 20.1783 7.8207 20.1783 7.8207C20.1783 7.8207 20.1783 7.82069 20.1783 7.82069C20.1782 7.82069 20.1782 7.82068 20.2604 7.32749C20.3426 6.83429 20.3426 6.83428 20.3425 6.83427C20.3425 6.83427 20.3424 6.83426 20.3424 6.83425C20.3423 6.83424 20.3422 6.83422 20.3421 6.8342C20.3418 6.83415 20.3414 6.83409 20.341 6.83402C20.3401 6.83387 20.3389 6.83367 20.3374 6.83342C20.3343 6.83291 20.3298 6.83219 20.3241 6.83127C20.3127 6.82943 20.2962 6.82679 20.2749 6.82347C20.2324 6.81683 20.1707 6.80745 20.0927 6.79624C19.9369 6.77385 19.7158 6.7441 19.4522 6.71438C18.927 6.65516 18.2244 6.59497 17.5314 6.59497V7.59497ZM19.7604 7.32749V10.3502H20.7604V7.32749H19.7604ZM20.2604 9.85018H18.7185V10.8502H20.2604V9.85018ZM18.7185 9.85018C17.8511 9.85018 17.1997 10.1239 16.7743 10.6146C16.3604 11.092 16.2237 11.7024 16.2237 12.2592H17.2237C17.2237 11.8493 17.3257 11.5052 17.5298 11.2697C17.7224 11.0476 18.0684 10.8502 18.7185 10.8502V9.85018ZM16.2237 12.2592V14.5599H17.2237V12.2592H16.2237ZM16.7237 15.0599H20.1258V14.0599H16.7237V15.0599ZM19.6317 14.4833L19.081 18.0322L20.0692 18.1855L20.6199 14.6366L19.6317 14.4833ZM19.5751 17.6088H16.7237V18.6088H19.5751V17.6088ZM16.2237 18.1088V26.366H17.2237V18.1088H16.2237ZM16.4146 26.1752H13.2148V27.1752H16.4146V26.1752ZM16.2237 26.366C16.2237 26.2606 16.3092 26.1752 16.4146 26.1752V27.1752C16.8615 27.1752 17.2237 26.8129 17.2237 26.366H16.2237ZM12.4056 26.366C12.4056 26.8129 12.7679 27.1752 13.2148 27.1752V26.1752C13.3202 26.1752 13.4056 26.2606 13.4056 26.366H12.4056Z' fill='%232b87da'/%3E%3C/svg%3E%0A")}.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_instagram_feed::before{background-image:url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='22' height='22' rx='6' stroke='%232b87da' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='12' r='5' stroke='%232b87da' stroke-width='1.5'/%3E%3Ccircle cx='18.5' cy='5.75' r='1.25' fill='%232b87da'/%3E%3C/svg%3E%0A")}.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_twitter_feed::before{background-image:url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 29 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.8762 6.78846C27.9345 6.7065 27.8465 6.60094 27.7536 6.63936C27.0263 6.93989 26.26 7.15757 25.4698 7.29241C25.3632 7.31061 25.3082 7.16347 25.3956 7.09969C26.2337 6.48801 26.8918 5.63649 27.2636 4.63802C27.2958 4.55162 27.2014 4.47574 27.1212 4.52123C26.1605 5.06618 25.1092 5.45524 24.0054 5.68842C23.971 5.69568 23.9354 5.68407 23.9113 5.65844C22.9264 4.60891 21.5545 4 19.9999 4C17.0624 4 14.6624 6.4 14.6624 9.3625C14.6624 9.74071 14.702 10.109 14.7724 10.4586C14.7855 10.5235 14.7342 10.5842 14.6681 10.5803C10.3227 10.3231 6.45216 8.2421 3.84135 5.09864C3.79681 5.04501 3.71241 5.0515 3.67879 5.11257C3.26061 5.8722 3.02493 6.75115 3.02493 7.675C3.02493 9.41548 3.84362 10.9704 5.13417 11.9317C5.2141 11.9913 5.17327 12.12 5.07385 12.1129C4.32811 12.0597 3.63173 11.835 3.00827 11.5171C2.99303 11.5094 2.97493 11.5204 2.97493 11.5375V11.5375C2.97493 13.9896 4.6205 16.0638 6.86301 16.7007C6.96452 16.7295 6.96588 16.8757 6.86218 16.8953C6.25772 17.0096 5.63724 17.0173 5.0289 16.9176C4.95384 16.9052 4.89095 16.9762 4.91633 17.0479C5.26967 18.0466 5.91213 18.9192 6.7637 19.5537C7.58576 20.1661 8.56481 20.5283 9.58351 20.6001C9.67715 20.6067 9.71634 20.7266 9.64124 20.7829C7.78574 22.1744 5.52424 22.9237 3.19993 22.9125C2.91864 22.9125 2.63736 22.9015 2.35608 22.8796C2.25034 22.8714 2.20189 23.0116 2.29272 23.0664C4.58933 24.4509 7.27959 25.25 10.1499 25.25C19.9999 25.25 25.4124 17.075 25.4124 9.9875C25.4124 9.76833 25.4124 9.5598 25.4026 9.34228C25.4011 9.30815 25.4168 9.27551 25.4445 9.2555C26.3819 8.57814 27.1984 7.74079 27.8762 6.78846Z' stroke='%232b87da' stroke-width='1.25' stroke-linejoin='round'/%3E%3C/svg%3E%0A")}.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_youtube_feed::before{background-image:url("data:image/svg+xml,%3Csvg width='27' height='20' viewBox='0 0 27 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 13.3267C11 13.4037 11.0834 13.4518 11.15 13.4133L17.3377 9.83658C17.4043 9.79808 17.4043 9.70192 17.3377 9.66342L11.15 6.08673C11.0834 6.0482 11 6.0963 11 6.17331V13.3267ZM25.45 3.7125C25.6125 4.3 25.725 5.0875 25.8 6.0875C25.8875 7.0875 25.925 7.95 25.925 8.7L26 9.75C26 12.4875 25.8 14.5 25.45 15.7875C25.1375 16.9125 24.4125 17.6375 23.2875 17.95C22.7 18.1125 21.625 18.225 19.975 18.3C18.35 18.3875 16.8625 18.425 15.4875 18.425L13.5 18.5C8.2625 18.5 5 18.3 3.7125 17.95C2.5875 17.6375 1.8625 16.9125 1.55 15.7875C1.3875 15.2 1.275 14.4125 1.2 13.4125C1.1125 12.4125 1.075 11.55 1.075 10.8L1 9.75C1 7.0125 1.2 5 1.55 3.7125C1.8625 2.5875 2.5875 1.8625 3.7125 1.55C4.3 1.3875 5.375 1.275 7.025 1.2C8.65 1.1125 10.1375 1.075 11.5125 1.075L13.5 1C18.7375 1 22 1.2 23.2875 1.55C24.4125 1.8625 25.1375 2.5875 25.45 3.7125Z' stroke='%232b87da' stroke-width='1.25' stroke-linejoin='round'/%3E%3C/svg%3E%0A")}.et-db #et-boc .et-l .et_pb_module .sbi_follow_btn a{border:none;color:#fff;font-size:13px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.et-db #et-boc .et-l .et_pb_module .sbi-feed-block-cta-btn:after,.et-db #et-boc .et-l .et_pb_module .sbi-feed-block-cta-btn:before{top:10px!important}