/*
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;
	}

}
/**
 * Smash Balloon design tokens — local plugin mirror.
 *
 * Single source of truth for design tokens used by Instagram Feed Pro.
 * Mirrored verbatim from `@smashballoons/tokens` v0.4.0 (npm). To bump
 * the snapshot: copy the relevant slice of `dist/tokens.css` from the
 * package and update the `Mirror version` line below. Consumer CSS
 * references the aliases at the bottom of this file and does not need
 * to be touched when values change.
 *
 * Future migration: when sb-common centralizes token distribution, the
 * `Package mirror` block can be replaced with an @import / wp_enqueue
 * of the official package without breaking the alias contract below.
 *
 * Mirror version: @smashballoons/tokens@0.4.0
 * Slice scope:    fg + focus + opacity-disabled + duration (semantic
 *                 layer required by SMASH-1378 a11y PRs). Extend in
 *                 follow-up PRs as new tokens (border, bg, motion) are
 *                 adopted.
 */

:root {
	/* ===== Package mirror — @smashballoons/tokens@0.4.0 ===== */

	/* Color primitives referenced by the semantic layer below. */
	--sb-color-gray-600: #4a5565;
	--sb-color-gray-700: #364153;
	--sb-color-wp-light-blue-600: #007ca8;

	/* Duration primitives — referenced directly by consumer transitions
	   and overridden by the reduced-motion @media block below. */
	--sb-duration-75:   75ms;
	--sb-duration-100:  100ms;
	--sb-duration-150:  150ms;
	--sb-duration-200:  200ms;
	--sb-duration-300:  300ms;
	--sb-duration-500:  500ms;
	--sb-duration-700:  700ms;
	--sb-duration-1000: 1000ms;

	/* Opacity */
	--sb-opacity-disabled: 0.5;

	/* Semantic foreground */
	--sb-fg-muted:  var(--sb-color-gray-700);
	--sb-fg-subtle: var(--sb-color-gray-600);

	/* Semantic focus */
	--sb-focus-ring: var(--sb-color-wp-light-blue-600);

	/* ===== Plugin-local aliases (stable consumer-site names) =====
	   Bump the package values above; consumers reference these aliases
	   and do not need to be renamed. Drop an alias here when a follow-up
	   PR migrates its usage sites to the package name directly. */
	--sb-text-secondary: var(--sb-fg-muted);
	--sb-text-tertiary:  var(--sb-fg-subtle);
}

/* Reduced-motion override — zeroes every duration token so any consumer
   transition that uses `var(--sb-duration-*)` inherits the override
   automatically. Transforms / @keyframes still need an explicit
   `prefers-reduced-motion: no-preference` wrap at the consumer site. */
@media (prefers-reduced-motion: reduce) {
	:root {
		--sb-duration-75:   0.01ms;
		--sb-duration-100:  0.01ms;
		--sb-duration-150:  0.01ms;
		--sb-duration-200:  0.01ms;
		--sb-duration-300:  0.01ms;
		--sb-duration-500:  0.01ms;
		--sb-duration-700:  0.01ms;
		--sb-duration-1000: 0.01ms;
	}
}
#sb_instagram a:focus-visible,#sb_instagram button:focus-visible,.sbi_lightbox a:focus-visible,.sbi_lightbox button:focus-visible{
    /* !important needed because pre-existing `outline: none` resets on
       :focus / :active (e.g. .sbi_lightbox a:focus around line 1247)
       would otherwise suppress the focus ring for keyboard users. */outline:2px solid var(--sb-focus-ring)!important;outline-offset:2px!important}#sb_instagram .sbi_item:has(.sbi_photo:focus-visible){outline:2px solid var(--sb-focus-ring);outline-offset:0}#sb_instagram .sb_instagram_header:has(.sbi_header_link:focus-visible){outline:2px solid var(--sb-focus-ring);outline-offset:2px}#sb_instagram{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0 auto;padding:0;width:100%}#sb_instagram:after{clear:both;content:"";display:table}#sb_instagram.sbi_fixed_height{overflow:hidden;overflow-y:auto}#sb_instagram #sbi_images,#sb_instagram.sbi_fixed_height{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#sb_instagram .sbi_header_link{-webkit-box-shadow:none;box-shadow:none}#sb_instagram .sbi_header_link:hover{border:none}#sb_instagram #sbi_images .sbi_item{zoom:1;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:inline-block;margin:0!important;opacity:1;overflow:hidden;text-decoration:none;-webkit-transition:all var(--sb-duration-500) ease;-moz-transition:all var(--sb-duration-500) ease;-o-transition:all var(--sb-duration-500) ease;transition:all var(--sb-duration-500) ease;vertical-align:top;width:100%}#sb_instagram #sbi_images .sbi_item.sbi_transition{opacity:0}#sb_instagram #sbi_images{display:grid;padding:12px 0;width:100%}#sb_instagram.sbi_col_1 #sbi_images{grid-template-columns:repeat(1,1fr)}#sb_instagram.sbi_col_2 #sbi_images{grid-template-columns:repeat(2,1fr)}#sb_instagram.sbi_col_3 #sbi_images{grid-template-columns:repeat(3,1fr)}#sb_instagram.sbi_col_4 #sbi_images{grid-template-columns:repeat(4,1fr)}#sb_instagram.sbi_col_5 #sbi_images{grid-template-columns:repeat(5,1fr)}#sb_instagram.sbi_col_6 #sbi_images{grid-template-columns:repeat(6,1fr)}#sb_instagram.sbi_col_7 #sbi_images{grid-template-columns:repeat(7,1fr)}#sb_instagram.sbi_col_8 #sbi_images{grid-template-columns:repeat(8,1fr)}#sb_instagram.sbi_col_9 #sbi_images{grid-template-columns:repeat(9,1fr)}#sb_instagram.sbi_col_10 #sbi_images{grid-template-columns:repeat(10,1fr)}#sb_instagram.sbi_col_1.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(1,1fr)}#sb_instagram.sbi_col_2.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(2,1fr)}#sb_instagram.sbi_col_3.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(3,1fr)}#sb_instagram.sbi_col_4.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(4,1fr)}#sb_instagram.sbi_col_5.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(5,1fr)}#sb_instagram.sbi_col_6.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(6,1fr)}#sb_instagram.sbi_col_7.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(7,1fr)}#sb_instagram.sbi_col_8.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(8,1fr)}#sb_instagram.sbi_col_9.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(9,1fr)}#sb_instagram.sbi_col_10.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(10,1fr)}#sb_instagram .sbi_photo_wrap{position:relative}#sb_instagram .sbi_photo{display:block;text-decoration:none}#sb_instagram .sbi_photo img{height:inherit;object-fit:cover;scale:1;transition:-webkit-transform var(--sb-duration-500) ease-in-out;transition:transform var(--sb-duration-500) ease-in-out;transition:transform var(--sb-duration-500) ease-in-out,-webkit-transform var(--sb-duration-500) ease-in-out;vertical-align:middle;width:100%}#sb_instagram .sbi_no_js img{display:none}#sb_instagram a,#sb_instagram a:active,#sb_instagram a:focus,#sb_instagram a:hover{outline:none}#sb_instagram img{display:block;margin:0!important;max-width:100%!important;opacity:1!important;padding:0!important}#sb_instagram .sbi_link{background:rgba(0,0,0,.5);bottom:0;color:#fff;display:none;font-size:12px;line-height:1.1;padding:10px 0;position:absolute;right:0;text-align:center;width:100%}#sb_instagram .sbi_link a{zoom:1;color:#fff;display:inline-block;font-size:12px;line-height:1.1;padding:0 6px;text-decoration:none;vertical-align:top}#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{display:inline-block;height:1em}#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{color:#fff;color:hsla(0,0%,100%,.9);display:block!important;font-style:normal!important;position:absolute;text-shadow:0 0 8px rgba(0,0,0,.8);z-index:1}#sb_instagram .sbi_type_carousel .sbi_playbtn,#sb_instagram .sbi_type_video .sbi_playbtn{font-size:48px;left:50%;margin-left:-19px;margin-top:-24px;padding:0;top:50%;z-index:2}#sb_instagram .sbi_type_carousel .fa-clone{font-size:24px;right:12px;text-shadow:0 0 8px rgba(0,0,0,.3);top:12px}#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(0 0 2px rgba(0,0,0,.4));filter:drop-shadow(0 0 2px rgba(0,0,0,.4))}#sb_instagram .sbi_loader{-webkit-animation:sbi-sk-scaleout var(--sb-duration-1000) infinite ease-in-out;animation:sbi-sk-scaleout var(--sb-duration-1000) infinite ease-in-out;background-color:#000;background-color:rgba(0,0,0,.5);border-radius:100%;height:20px;left:50%;margin:-10px 0 0 -10px;position:relative;top:50%;width:20px}#sb_instagram br{display:none}#sbi_load p{display:inline;margin:0;padding:0}#sb_instagram #sbi_load .sbi_loader{background-color:#fff;margin-top:-11px;opacity:1;position:absolute}@-webkit-keyframes sbi-sk-scaleout{0%{-webkit-transform:scale(0)}to{opacity:0;-webkit-transform:scale(1)}}@keyframes sbi-sk-scaleout{0%{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}to{opacity:0;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}#sb_instagram .fa-spin,#sbi_lightbox .fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}#sb_instagram .fa-pulse,#sbi_lightbox .fa-pulse{-webkit-animation:fa-spin var(--sb-duration-1000) infinite steps(8);animation:fa-spin var(--sb-duration-1000) infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.sbi-screenreader{display:block!important;height:0!important;line-height:0!important;overflow:hidden!important;text-align:left!important;text-indent:-9999px!important;width:0!important}#sb_instagram .sb_instagram_header,.sb_instagram_header{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;overflow:hidden;padding:12px 0;position:relative}#sb_instagram .sb_instagram_header a,.sb_instagram_header a{transition:color var(--sb-duration-500) ease}.sb_instagram_header.sbi_header_outside{display:flex;float:none;margin-left:auto!important;margin-right:auto!important}.sbi_no_avatar .sbi_header_img{background:#333;color:#fff;height:50px;position:relative;width:50px}.sb_instagram_header .sbi_header_hashtag_icon{background:rgba(0,0,0,.75);bottom:0;color:#fff;left:0;opacity:0;position:absolute;text-align:center;top:0;width:100%}.sbi_no_avatar .sbi_header_hashtag_icon{color:#fff;display:block;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 var(--sb-duration-200) linear,color var(--sb-duration-200) linear;-moz-transition:background var(--sb-duration-200) linear,color var(--sb-duration-200) linear;-o-transition:background var(--sb-duration-200) linear,color var(--sb-duration-200) linear;transition:background var(--sb-duration-200) linear,color var(--sb-duration-200) linear}@media (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{border-radius:50%;height:80px;width:80px}#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{border-radius:50%;height:120px;width:120px}#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{-moz-border-radius:40px;-webkit-border-radius:40px;border-radius:50%;height:50px;overflow:hidden;position:relative;width:50px}#sb_instagram .sb_instagram_header .sbi_header_img_hover,.sb_instagram_header .sbi_header_img_hover{background:rgba(0,0,0,.75);bottom:0;color:#fff;left:0;opacity:0;position:absolute;text-align:center;top:0;width:100%}#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{font-size:24px;height:24px;left:50%;margin-left:-12px;margin-top:-12px;position:absolute;top:50%;width: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{font-size:36px;height:36px;margin-left:-18px;margin-top:-18px;width: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{font-size:48px;height:48px;margin-left:-24px;margin-top:-24px;width:48px}#sb_instagram .sb_instagram_header .sbi_header_img_hover i{overflow:hidden}#sb_instagram .sb_instagram_header .sbi_header_img_hover,.sb_instagram_header .sbi_header_img_hover{transition:opacity .4s ease-in-out;z-index:2}#sb_instagram .sb_instagram_header .sbi_fade_in,.sb_instagram_header .sbi_fade_in{opacity:1;transition:opacity var(--sb-duration-200) 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_header a:focus .sbi_header_img_hover,.sb_instagram_header a:hover .sbi_header_img_hover{opacity:1}#sb_instagram .sb_instagram_header .sbi_header_text,.sb_instagram_header .sbi_header_text{align-items:center;display:flex;gap:20px;justify-content:flex-start}#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{align-items:flex-start;display:flex;flex:1;flex-direction:column;gap:4px;justify-content:flex-start}#sb_instagram .sb_instagram_header a,.sb_instagram_header a{text-decoration:none}#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 p:empty{display:none}#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{clear:both;float:left;text-align:center;width:100%}#sb_instagram #sbi_load .fa-spinner{display:none;font-size:15px;left:50%;margin:-8px 0 0 -7px;position:absolute;top:50%}#sb_instagram #sbi_load{opacity:1;transition:all var(--sb-duration-500) ease-in}#sb_instagram .sbi_load_btn .sbi_btn_text,#sb_instagram .sbi_load_btn .sbi_loader{opacity:1;transition:all var(--sb-duration-100) ease-in}#sb_instagram .sbi_hidden{opacity:0!important}#sb_instagram #sbi_load .sbi_load_btn,#sb_instagram .sbi_follow_btn a{zoom:1;background:#333;border:none;-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;color:#fff;display:inline-block;font-size:13px;line-height:1.5;margin:5px auto 0;padding:7px 14px;text-decoration:none;vertical-align:top}#sb_instagram #sbi_load .sbi_load_btn{position:relative}#sb_instagram .sbi_follow_btn{zoom:1;display:inline-block;text-align:center;vertical-align:top}#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,#sb_instagram .sbi_follow_btn a{transition:all var(--sb-duration-100) ease-in}#sb_instagram #sbi_load .sbi_load_btn:focus,#sb_instagram #sbi_load .sbi_load_btn:hover{box-shadow:inset 0 0 20px 20px hsla(0,0%,100%,.25);outline:none}#sb_instagram .sbi_follow_btn a:focus,#sb_instagram .sbi_follow_btn a:hover{box-shadow:inset 0 0 10px 20px #359dff;outline:none}#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{font-size:15px;margin-bottom:-1px;margin-right:7px}#sb_instagram .sbi_follow_btn svg{vertical-align:-.125em}#sb_instagram #sbi_load .sbi_follow_btn{margin-left:5px}#sb_instagram .sb_instagram_error{line-height:1.4;text-align:center;width:100%}#sbi_mod_error{background:#eee;border:1px solid #ddd;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;clear:both;color:#333;display:none;font-size:13px;margin:10px 0 0;padding:10px 15px;text-align:center}#sbi_mod_error br{display:initial!important}#sbi_mod_error p{line-height:1.3!important;margin:0!important;padding:5px 0!important}#sbi_mod_error ol,#sbi_mod_error ul{margin:0!important;padding:5px 0 5px 20px!important}#sbi_mod_error li{margin:0!important;padding:1px 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{font-size:23px;margin-left:-9px;margin-top:-12px}#sb_instagram.sbi_medium .sbi_type_carousel .sbi_photo_wrap .fa-clone{font-size:18px;right:8px;top:8px}#sb_instagram.sbi_small .sbi_photo_wrap .svg-inline--fa.fa-play,#sb_instagram.sbi_small .sbi_playbtn{font-size:18px;margin-left:-7px;margin-top:-9px}#sb_instagram.sbi_small .sbi_type_carousel .sbi_photo_wrap .fa-clone{font-size:12px;right:5px;top:5px}@media (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}}@media (max-width:480px){#sb_instagram.sbi_col_10 #sbi_images,#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,#sb_instagram.sbi_col_7 #sbi_images,#sb_instagram.sbi_col_8 #sbi_images,#sb_instagram.sbi_col_9 #sbi_images{grid-template-columns:1fr}#sb_instagram.sbi_mob_col_10 #sbi_images{grid-template-columns:repeat(10,1fr)}#sb_instagram.sbi_mob_col_9 #sbi_images{grid-template-columns:repeat(9,1fr)}#sb_instagram.sbi_mob_col_8 #sbi_images{grid-template-columns:repeat(8,1fr)}#sb_instagram.sbi_mob_col_7 #sbi_images{grid-template-columns:repeat(7,1fr)}#sb_instagram.sbi_mob_col_6 #sbi_images{grid-template-columns:repeat(6,1fr)}#sb_instagram.sbi_mob_col_5 #sbi_images{grid-template-columns:repeat(5,1fr)}#sb_instagram.sbi_mob_col_4 #sbi_images{grid-template-columns:repeat(4,1fr)}#sb_instagram.sbi_mob_col_3 #sbi_images{grid-template-columns:repeat(3,1fr)}#sb_instagram.sbi_mob_col_2 #sbi_images{grid-template-columns:repeat(2,1fr)}#sb_instagram.sbi_mob_col_1 #sbi_images{grid-template-columns:1fr}}#sb_instagram.sbi_no_js #sbi_images .sbi_item .sbi_photo_wrap{box-sizing:border-box;overflow:hidden;position:relative}#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{bottom:0;left:0;position:absolute;right:0;top:0}#sb_instagram.sbi_no_js #sbi_images .sbi_item.sbi_transition{opacity:1}#sb_instagram.sbi_no_js .sbi_load_btn,#sb_instagram.sbi_no_js .sbi_photo img{display:none}#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{background:#ddd;background:rgba(0,0,0,.1);border-radius:5px;color:#444;display:inline-block;margin-top:10px;padding:6px 10px;text-decoration:none}#sb_instagram #sbi_mod_error .sb_frontend_btn:hover{background:#ccc;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:hsla(0,0%,100%,.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:hsla(0,0%,100%,.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{background-color:hsla(0,0%,100%,.75);color:rgba(0,0,0,.85)}#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 (max-width:480px){#sb_instagram.sbi_col_10.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_3.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_4.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_5.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_6.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_7.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_8.sbi_mob_col_auto #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)}}@media (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 (max-width:480px){#sb_instagram.sbi_col_10.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_3.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_4.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_5.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_6.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_7.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_8.sbi_mob_col_auto #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{background-color:#000;display:none;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);left:0;opacity:.9;position:absolute;top:0;z-index:99999}.sbi_lightbox{font-weight:400;left:0;line-height:0;position:absolute;text-align:center;width:100%;z-index:100000}.sbi_lightbox .sbi_lb-image{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;display:block;height:auto;max-width:inherit;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_lightbox a:active,.sbi_lightbox a:focus,.sbi_lightbox a:hover{outline:none}.sbi_lightbox a img{border:none}.sbi_lb-outerContainer{*zoom:1;background-color:#000;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;height:250px;margin:0 auto 5px;position:relative;width:250px}.sbi_lb-outerContainer:after{clear:both;content:"";display:table}.sbi_lb-container-wrapper{height:100%}.sbi_lb-container{bottom:0;height:100%;left:0;padding:4px;position:relative;right:0;top:0;width:100%}.sbi_lb-loader{height:20px;left:0;line-height:0;margin-top:-10px;position:absolute;text-align:center;top:50%;width:100%}.sbi_lb-loader span{background:url(/wp-content/plugins/instagram-feed/img/sbi-sprite.png) no-repeat;display:block;height:14px;margin:0 auto;width:14px}.sbi_lb-nav{left:0;top:0;width:100%;z-index:10}.sbi_lb-container>.nav{left:0}.sbi_lb-nav a{background-image:url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");height:90%;outline:none;position:absolute;top:0;z-index:100}.sbi_lb-next,.sbi_lb-prev{cursor:pointer;display:block;height:100%}.sbi_lb-nav a.sbi_lb-prev{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0.5);float:left;left:-70px;opacity:.5;padding-left:10px;padding-right:10px;-webkit-transition:opacity var(--sb-duration-200);-moz-transition:opacity var(--sb-duration-200);-o-transition:opacity var(--sb-duration-200);transition:opacity var(--sb-duration-200);width:50px}.sbi_lb-nav a.sbi_lb-prev:hover{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}.sbi_lb-nav a.sbi_lb-next{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0.5);float:right;opacity:.5;padding-left:10px;padding-right:10px;right:-70px;-webkit-transition:opacity var(--sb-duration-200);-moz-transition:opacity var(--sb-duration-200);-o-transition:opacity var(--sb-duration-200);transition:opacity var(--sb-duration-200);width:50px}.sbi_lb-nav a.sbi_lb-next:hover{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}.sbi_lb-nav span{background:url(/wp-content/plugins/instagram-feed/img/sbi-sprite.png) no-repeat;display:block;height:45px;left:20px;margin:-25px 0 0;position:absolute;top:55%;width:34px}.sbi_lb-nav a.sbi_lb-prev span{background-position:-53px 0}.sbi_lb-nav a.sbi_lb-next span{background-position:-18px 0;left:auto;right:20px}.sbi_lb-dataContainer{*zoom:1;-moz-border-radius-bottomleft:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;font-family:Open Sans,Helvetica,Arial,sans-serif;margin:0 auto;padding-top:10px;width:100%}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-outerContainer{background:#fff;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;padding-right:300px;position:relative}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-container-wrapper{background:#000;position:relative}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-dataContainer{background:#fff;bottom:0;height:100%;line-height:1.4;overflow:hidden;overflow-y:auto;position:absolute;right:-300px;text-align:left;top:0;width:300px!important}.sbi_lb-commentBox:after,.sbi_lb-data:after,.sbi_lb-dataContainer:after{clear:both;content:"";display:table}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commentBox{display:block!important;margin-top:20px;padding:4px;width:100%}#sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-number{padding-bottom:0}#sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-caption{margin-bottom:20px;max-width:100%;width:100%}#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{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;clear:both;display:block!important;float:left;font-size:12px;margin:0 0 1px;min-width:100%;padding:3px 20px 3px 0;width:100%}.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{color:#ccc;padding:0 4px}.sbi_lb-data .sbi_lb-details{float:left;line-height:1.1;text-align:left;width:85%}.sbi_lb-data .sbi_lb-caption{word-wrap:break-word;color:#ccc;float:left;font-size:13px;font-weight:400;-webkit-hyphens:auto;-moz-hyphens:auto;hyphens:auto;line-height:1.3;overflow-wrap:break-word;padding-bottom:3px;word-break:break-word}.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 a:hover{color:#fff;text-decoration:underline}.sbi_lb-data .sbi_lb-caption .sbi_lightbox_username{color:#ccc;display:block;float:left;margin:0 0 5px;padding-bottom:0;width:100%}.sbi_lb-data .sbi_lb-caption .sbi_lightbox_username:hover p{color:#fff;text-decoration:underline}#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{background:#666;border:none;-moz-border-radius:40px;-webkit-border-radius:40px;border-radius:40px;float:left;height:32px;margin-right:10px;width:32px}.sbi_lightbox_username p{color:#ccc;float:left;font-size:13px;font-weight:700;line-height:32px;margin:0;padding:0}.sbi_lb-data .sbi_lb-number{clear:both;color:var(--sb-text-tertiary);display:block;float:left;font-size:12px;padding:5px 0 15px}.sbi_lb-data .sbi_lb-close{color:var(--sb-text-tertiary);display:block;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70);float:right;font-size:18px;height:30px;opacity:.7;outline:none;text-align:right;-webkit-transition:opacity var(--sb-duration-200);-moz-transition:opacity var(--sb-duration-200);-o-transition:opacity var(--sb-duration-200);transition:opacity var(--sb-duration-200);width:30px}.sbi_lb-data .sbi_lb-close:hover{color:#fff;cursor:pointer;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}.sbi_lb-nav{height:auto}.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;position:relative!important;text-align:center!important;width:100%!important}.sbi-feed-block-cta-img-ctn{float:left!important;margin-bottom:35px!important;margin-top:50px!important;width:100%!important}.sbi-feed-block-cta-img,.sbi-feed-block-cta-img-ctn{align-items:center!important;display:flex!important;justify-content:center!important;position:relative!important}.sbi-feed-block-cta-img{border:2px solid #dcdde1!important;border-radius:16px!important;height:65px!important;-webkit-transform:rotate(-3deg)!important;transform:rotate(-3deg)!important;width:65px!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{bottom:-19px!important;position:absolute!important;right:-15px!important;z-index:1!important}.sbi-feed-block-cta-heading{display:inline-block!important;font-size:19px!important;font-weight:700!important;line-height:1.4em!important;margin:0 0 30px!important;padding:0!important;width:100%!important}.sbi-feed-block-cta-btn{background:#0068a0!important;border-radius:2px!important;color:#fff!important;cursor:pointer!important;margin-bottom:30px!important;padding:8px 20px 8px 38px!important;position:relative!important}.sbi-feed-block-cta-btn:after,.sbi-feed-block-cta-btn:before{background:#fff!important;content:""!important;height:12px!important;left:20px!important;position:absolute!important;top:14px!important;width:2px!important}.sbi-feed-block-cta-btn:after{-webkit-transform:rotate(90deg)!important;transform:rotate(90deg)!important}.sbi-feed-block-cta-desc{align-items:center!important;background:#f9f9fa!important;border-top:1px solid #e8e8eb!important;display:flex!important;flex-direction:column!important;justify-content:center!important;margin-top:35px!important;padding:20px!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{font-weight:600!important;text-decoration:underline!important;text-transform:capitalize!important}.sbi-feed-block-cta-selector{align-items:center!important;display:flex!important;flex-direction:column!important;justify-content:center!important;margin-bottom:45px!important;padding:0 20%!important;width:100%!important}.sbi-feed-block-cta-feedselector{border:1px solid #d0d1d7!important;margin-bottom:15px!important;max-width:100%!important;min-width:400px!important;padding:8px 16px!important}.sbi-feed-block-cta-selector span{color:#2c324c!important}.sbi-feed-block-cta-selector span a{font-weight:600!important;text-decoration:underline!important;text-transform:capitalize!important}.sbi-feed-block-cta-selector span a:after{color:#2c324c!important;font-weight:400!important;margin-left:2px!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{background-position:50%!important;background-repeat:no-repeat!important;content:""!important;font-variant:normal!important;height:16px!important}.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_facebook_feed:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 29 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.906 18.109h.5v-.5h-.5v.5Zm-3.109 0h-.5v.5h.5v-.5Zm0-3.549v-.5h-.5v.5h.5Zm3.109 0v.5h.5v-.5h-.5Zm7.354-7.232h.5v-.424l-.417-.07-.083.494Zm0 3.022v.5h.5v-.5h-.5Zm-3.536 4.21h-.5v.5h.5v-.5Zm3.402 0 .494.077.09-.577h-.584v.5Zm-.55 3.549v.5h.427l.066-.423-.494-.077Zm-2.852 0v-.5h-.5v.5h.5Zm10.328-3.549h-.5v.001h.5ZM17.08 26.614l-.092-.492.092.492Zm-4.531 0 .092-.492-.092.492Zm2.266-24.816c-7.008 0-12.738 5.719-12.738 12.762h1c0-6.492 5.283-11.762 11.738-11.762v-1ZM2.077 14.56c0 6.238 4.473 11.437 10.38 12.545l.184-.983C7.2 25.102 3.077 20.31 3.077 14.56h-1Zm11.329 11.754v-8.205h-1v8.205h1Zm-.5-8.705H9.797v1h3.109v-1Zm-2.609.5V14.56h-1v3.549h1Zm-.5-3.049h3.109v-1H9.797v1Zm3.609-.5v-2.704h-1v2.704h1Zm0-2.704c0-1.437.424-2.488 1.115-3.179.692-.692 1.71-1.082 3.01-1.082v-1c-1.501 0-2.796.454-3.717 1.375-.921.921-1.408 2.25-1.408 3.886h1Zm4.125-4.26c.641 0 1.303.055 1.81.112a20.412 20.412 0 0 1 .824.11l.01.002h.003l.082-.492.082-.494h-.005l-.013-.003a10.294 10.294 0 0 0-.231-.035 21.366 21.366 0 0 0-.64-.081 17.7 17.7 0 0 0-1.922-.12v1Zm2.23-.268v3.022h1V7.328h-1Zm.5 2.522h-1.543v1h1.542v-1Zm-1.543 0c-.867 0-1.518.274-1.944.765-.414.477-.55 1.088-.55 1.644h1c0-.41.102-.754.306-.99.192-.221.538-.419 1.188-.419v-1Zm-2.494 2.41v2.3h1v-2.3h-1Zm.5 2.8h3.402v-1h-3.402v1Zm2.908-.577-.551 3.55.988.153.55-3.55-.987-.153Zm-.057 3.126h-2.851v1h2.851v-1Zm-3.351.5v8.204h1V18.11h-1Zm.949 8.996a12.738 12.738 0 0 0 7.335-4.254l-.761-.648a11.738 11.738 0 0 1-6.76 3.92l.186.982Zm7.335-4.254a12.738 12.738 0 0 0 3.044-8.292l-1 .002c.007 2.8-.988 5.51-2.805 7.642l.76.648Zm3.044-8.29c0-7.044-5.73-12.763-12.737-12.763v1c6.454 0 11.737 5.27 11.737 11.762h1ZM16.224 26.313c0 .492.444.886.949.791l-.185-.983a.198.198 0 0 1 .236.192h-1Zm-3.767.791a.803.803 0 0 0 .949-.791h-1c0-.114.105-.216.235-.192l-.184.983Z' fill='%232b87da'/%3E%3Cpath d='M12.906 18.109h.5v-.5h-.5v.5Zm-3.109 0h-.5v.5h.5v-.5Zm0-3.55v-.5h-.5v.5h.5Zm3.109 0v.5h.5v-.5h-.5Zm7.354-7.232h.5v-.423l-.417-.07-.083.493Zm0 3.023v.5h.5v-.5h-.5Zm-3.536 4.21h-.5v.5h.5v-.5Zm3.402 0 .494.077.09-.577h-.584v.5Zm-.55 3.549v.5h.427l.066-.424-.494-.076Zm-2.852 0v-.5h-.5v.5h.5Zm-3.318 8.257v-8.257h-1v8.257h1Zm-.5-8.757H9.797v1h3.109v-1Zm-2.609.5v-3.55h-1v3.55h1Zm-.5-3.05h3.109v-1H9.797v1Zm3.609-.5v-2.704h-1v2.705h1Zm0-2.704c0-1.436.424-2.487 1.115-3.178.692-.692 1.71-1.082 3.01-1.082v-1c-1.501 0-2.796.454-3.717 1.375-.921.92-1.408 2.25-1.408 3.885h1Zm4.125-4.26c.641 0 1.303.056 1.81.113a20.336 20.336 0 0 1 .824.11l.01.002h.003a183.243 183.243 0 0 1 .165-.986h-.006l-.013-.003a9.144 9.144 0 0 0-.231-.035 21.391 21.391 0 0 0-.64-.082 17.7 17.7 0 0 0-1.922-.119v1Zm2.23-.268v3.023h1V7.327h-1Zm.5 2.523h-1.543v1h1.542v-1Zm-1.543 0c-.867 0-1.518.274-1.944.765-.414.477-.55 1.087-.55 1.644h1c0-.41.102-.754.306-.99.192-.221.538-.419 1.188-.419v-1Zm-2.494 2.41v2.3h1v-2.3h-1Zm.5 2.8h3.402v-1h-3.402v1Zm2.908-.577-.551 3.55.988.152.55-3.548-.987-.154Zm-.057 3.126h-2.851v1h2.851v-1Zm-3.351.5v8.257h1v-8.257h-1Zm.19 8.066h-3.2v1h3.2v-1Zm-.19.191a.19.19 0 0 1 .19-.19v1a.81.81 0 0 0 .81-.81h-1Zm-3.818 0c0 .447.362.81.809.81v-1a.19.19 0 0 1 .19.19h-1Z' fill='%232b87da'/%3E%3C/svg%3E")}.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_instagram_feed:before{background-image:url("data:image/svg+xml;charset=utf-8,%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")}.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_twitter_feed:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 29 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.876 6.788c.058-.082-.03-.187-.122-.149-.728.3-1.494.519-2.284.653-.107.019-.162-.129-.074-.192a5.372 5.372 0 0 0 1.868-2.462c.032-.086-.063-.162-.143-.117-.96.545-2.012.934-3.116 1.167a.1.1 0 0 1-.094-.03C22.926 4.608 21.554 4 20 4c-2.938 0-5.338 2.4-5.338 5.363 0 .378.04.746.11 1.096a.101.101 0 0 1-.104.121A15.243 15.243 0 0 1 3.841 5.1a.099.099 0 0 0-.162.014 5.312 5.312 0 0 0-.654 2.562c0 1.74.819 3.295 2.11 4.257.08.06.038.188-.061.18a5.398 5.398 0 0 1-2.066-.595.023.023 0 0 0-.033.02 5.37 5.37 0 0 0 3.888 5.164c.102.029.103.175 0 .194a5.275 5.275 0 0 1-1.834.023c-.075-.013-.138.058-.113.13A5.35 5.35 0 0 0 9.584 20.6c.093.007.132.127.057.183a10.65 10.65 0 0 1-6.441 2.13c-.281 0-.563-.012-.844-.033-.106-.009-.154.132-.063.186a15.177 15.177 0 0 0 7.857 2.184c9.85 0 15.262-8.175 15.262-15.262 0-.22 0-.428-.01-.646a.102.102 0 0 1 .043-.087 10.655 10.655 0 0 0 2.431-2.467Z' stroke='%232b87da' stroke-width='1.25' stroke-linejoin='round'/%3E%3C/svg%3E")}.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_youtube_feed:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='27' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 13.327a.1.1 0 0 0 .15.086l6.188-3.576a.1.1 0 0 0 0-.174L11.15 6.087a.1.1 0 0 0-.15.086v7.154Zm14.45-9.614c.163.587.275 1.375.35 2.375.087 1 .125 1.862.125 2.612L26 9.75c0 2.738-.2 4.75-.55 6.037-.313 1.126-1.037 1.85-2.162 2.163-.588.163-1.663.275-3.313.35a83.312 83.312 0 0 1-4.488.125L13.5 18.5c-5.238 0-8.5-.2-9.787-.55-1.126-.313-1.85-1.037-2.163-2.162-.163-.588-.275-1.376-.35-2.376-.087-1-.125-1.862-.125-2.612L1 9.75c0-2.737.2-4.75.55-6.037.313-1.126 1.037-1.85 2.162-2.163.588-.163 1.663-.275 3.313-.35a83.312 83.312 0 0 1 4.487-.125L13.5 1c5.238 0 8.5.2 9.788.55 1.125.313 1.85 1.037 2.162 2.162Z' stroke='%232b87da' stroke-width='1.25' stroke-linejoin='round'/%3E%3C/svg%3E")}.et-db #et-boc .et-l .et_pb_module .sbi_follow_btn a{zoom:1;background:#333;border:none;-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;color:#fff;display:inline-block;font-size:13px;line-height:1.5;margin:5px auto 0;padding:7px 14px;text-decoration:none;vertical-align:top}.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}