/*
Theme Name:W-Asobi'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
*/

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


/* =Structure
----------------------------------------------- */
body {
	min-width: 1100px;
	padding: 0;
	font-size: 125%;	/* 20px */
	-webkit-text-size-adjust: 100%;
}
#masthead,
#breadcrumbs,
section .wall,
#my-blog.blog #content,
#my-blog.archive #content,
#my-search #content,
#my-news.archive #content,
#my-tour.archive #content,
#my-tour_type #content,
#ft_links {
	width: 1032px;
}
#page {
	background: #fff;
}
#primary {
	float: left;
	margin: 0;
	width: 684px;	/* Width of main area */
}
#primary.nosidebar {
	float: none;
	margin: 0 auto;
	width: 100%;
}
#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: #032859;
	font-family: "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif; /* MTL see tips.xls */
	line-height: 1.2;	/* 24 / 20 */
}
.fa_arrow, .fa_icon {
	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: #1982d1;
	text-decoration: none;
}
/* a:focus, a:active, */
a.current,
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 {
	border-top: #fc6a2c 3px solid;
	position: relative;
	z-index: 9999;
	height: 190px;
	margin-top: 20px;
}
#masthead {
	margin: 0 auto;
}


/* =Menu
-------------------------------------------------------------- */
#headmenu {
	background-color: white;
	height: 150px;
	padding-top: 23px;
}
#headlogo {
	background-color: #dc6634;
	float: left;
	margin: -46px 0 -16px;
	text-align: center;
}
h1#headlogo,
div#headlogo a {
	width: 226px;
	height: 226px;
	padding-top: 31px;
}
div#headlogo a {
	display: block;
}
#headlogo img {
	width: 198px;
}
#headmenu ul {
	margin: 0 0 0 345px;
}
#headmenu ul li {
	list-style-type: none;
	float: left;
}
#headmenu ul li a {
	display: block;
	font-weight: bold;
}
#headmenu ul li a.current,
#headmenu ul li a:hover {
	text-decoration: none;
}
#headmenu ul#subnavi {
	height: 23px;
	margin-bottom: 38px;
}
#headmenu ul#subnavi li {
	line-height: 23px;
}
#headmenu ul#subnavi li.tour {
	margin-right: 7px;
}
#headmenu ul#subnavi li.langswitch {
	margin-left: 5px;
/*	display: none;	/* 05.2022 Aki:ENサイト完成時に削除 */
}
#headmenu ul#subnavi li a {
}
#headmenu ul#subnavi li.tour a,
#headmenu ul#subnavi li.langswitch a {
	border-radius: 7px;
	color: white;
	text-align: center;
}
#headmenu ul#subnavi li.tour a {
	background-color: #242f60;
	width: 121px;
	font-size: 13px;	/* FIXED */
}
#headmenu ul#subnavi li.langswitch a {
	background-color: #dd6634;
	width: 45px;
	font-size: 15px;	/* FIXED */
}
#headmenu ul#subnavi li a.current,
#headmenu ul#subnavi li a:hover {
	opacity: 0.75;
}
#headmenu ul#subnavi li.tour a img.icon {
	margin-right: 5px;
	vertical-align: middle;
}
#headmenu ul#subnavi li.hiketour a img.icon {
	width: 16px;
}
#headmenu ul#subnavi li.biketour a img.icon {
	width: 21px;
}
#headmenu ul#subnavi li.othertour a img.icon {
	width: 18px;
}
#headmenu ul#subnavi li.search form {
}
#headmenu ul#subnavi li.search form input {
	-webkit-appearance: none;
	appearance: none;
	background-color: #e4e4e4;
	border: 0;
	box-shadow: none;
	vertical-align: top;
}
#headmenu ul#subnavi li.search form input[type="text"] {
	width: 172px;
	height: 23px;
	margin-left: 3px;
	margin-right: 5px;
	line-height: 23px;
	padding: 0 0.5em;
	color: #4d4d4d;
	font-size: 16px;	/* FIXED */
}
#headmenu ul#subnavi li.search form input[type="submit"] {
	width: 23px;
	padding: 0;
	line-height: 23px;
	color: #808080;
	font-size: 17px;	/* FIXED */
}
#headmenu ul#subnavi li.search form input {
}
#headmenu ul#gnavi {
	overflow: hidden;
}
#headmenu ul#gnavi li {
}
#headmenu ul#gnavi li:first-child {
	margin-left: -13px;	/* OCT-2021 KAZ: was -33px */
}
/*#headmenu ul#gnavi li.links {
 *	margin-right: -24px;
 *}
 */
#headmenu ul#gnavi li.contact {
	margin-right: -13px;	/* OCT-2021 KAZ */
}
#headmenu ul#gnavi li a {
/*	min-width: 125px; */
	padding: 0 10px;	/* OCT-2021 KAZ: side was 1em */
	color: #4d4d4d;
	font-size: 13px;	/* FIXED */
	text-align: center;
}
#headmenu ul#gnavi li.blog a,
#headmenu ul#gnavi li.links a {
	min-width: 90px;	/* OCT-2021 KAZ: was 100px */
}
#headmenu ul#gnavi li a span.icon {
	display: inline-block;
	height: 50px;
	margin-bottom: 9px;
}
#headmenu ul#gnavi li a span.icon img {
	vertical-align: top;
}
#breadcrumbs {
	font-size: 80%;		/* 16px * 94% * 80% = 12.03px */
	line-height: 1;
	margin: 12px auto 15px;
}


/* =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;
}
section .wall {
	margin: 0 auto;
}
.page-header,
.page .entry-header {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	clear: both;
	padding: 4.1% 0 calc(54% - 52px);	/* 54% = 58.1% - 4.1% */
}
.page-title,
.entry-title {
	font-size: 180%;	/* 36px */
	font-weight: bold;
	text-align: center;
}
.page-title,
.entry-title.hasicon {
	color: white;
	text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}
.page-title::before,
.entry-title.hasicon::before,
.page-title::after,
.entry-title.hasicon::after {
	display: inline-block;
	vertical-align: -15px;
	content: '';
}
.page-title::before,
.entry-title.hasicon::before {
	background: url(/images/icon_hike_white_shadowed.png) no-repeat center / contain;
	width: 49px;
	height: 52px;
	margin-left: -49px;
}
.page-title::after,
.entry-title.hasicon::after {
	background: url(/images/icon_bike_white_shadowed.png) no-repeat center / contain;
	width: 62px;
	height: 51px;
	margin-left: 2px;
	margin-right: -64px;
}
.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-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-size: 120%;	/* 24px */
	font-weight: bold;
}
.entry-content h2.lined {
	border-bottom: #032859 2px solid;
	margin-bottom: 13px;
	line-height: 1.667;	/* 40px */
}
.entry-content h2.hasicon,
#my-top h2 {
	font-size: 180%;	/* 36px */
	text-align: center;
}
.entry-content h2.hasicon::before,
.entry-content h2.hasicon::after,
#my-top h2::before,
#my-top h2::after {
	display: inline-block;
	vertical-align: -3px;
}
.entry-content h2.hasicon::before,
#my-top h2::before {
	margin-left: -49px;
	margin-right: 16px;
	content: url(/images/icon_hike_blue.svg);
}
.entry-content h2.hasicon::after,
#my-top h2::after {
	margin-left: 13px;
	margin-right: -58px;
	content: url(/images/icon_bike_blue.svg);
}
.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;
}
	margin-bottom: 1.625em;
}
	margin-bottom: 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;
}
.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;
}
.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;
	padding: 0 0 1.625em;
}
#content nav a {
	color: inherit;
}
#nav-above {
	padding: 0 0 1.625em;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous {
	float: left;
	width: 50%;
}
.nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
#content nav .meta-nav {
	font-weight: normal;
}

/* 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 {
	display: inline-block;
	border: 0;
	min-width: 18px;
	margin: 0 5px;
	padding: 5px;
	line-height: 1;
	font-size: 18px;
}
#content div.wp-pagenavi span.current {
	font-weight: inherit;
}
#content div.wp-pagenavi a.page,
#content div.wp-pagenavi a.previouspostslink,
#content div.wp-pagenavi a.nextpostslink,
#content div.wp-pagenavi span.extend {
	color: inherit;
}
#content div.wp-pagenavi a.page,
#content div.wp-pagenavi a.previouspostslink,
#content div.wp-pagenavi a.nextpostslink {
	background-color: #d2caba;
}
#content div.wp-pagenavi a.page:hover,
#content div.wp-pagenavi a.previouspostslink:hover,
#content div.wp-pagenavi a.nextpostslink:hover,
#content div.wp-pagenavi span.current {
	background-color: #42210b;
}
#content div.wp-pagenavi a.page:hover,
#content div.wp-pagenavi a.previouspostslink:hover,
#content div.wp-pagenavi a.nextpostslink:hover,
#content div.wp-pagenavi span.current {
	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;
}
#ft_nav_top a {
	background-color: #242f60;
	border-radius: 50%;
	display: block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	color: white;
	text-align: center;
}
#ft_nav_top a:hover {
	opacity: 0.75;
	text-decoration: none;
}
#colophon {
	background-color: #242f60;
	clear: both;
	line-height: 1.75;
	color: white;
	text-align: center;
}
#ft_links {
	margin: 0 auto;
	padding: 13px 0 12px;
}
#footlogo {
	margin-bottom: 12px;
}
#footlogo a {
}
#footlogo a img {
	width: 160px;
}
#footinfo {
	margin-bottom: 20px;
	font-size: 55%;		/* 11px */
}
#ft_copyright {
	font-size: 45%;		/* 9px */
}


/* 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, .transbtn:hover, a:hover img {
	opacity: 0.75;
	filter: alpha(opacity=75);
}
.notransbtn:hover, a.current img.notransbtn, 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;
}
.sponly {
	display: none;
}
ul.nostyle {
	list-style: none;
	margin: 0;
}
#content section.none {
	display: none;
}


/* Blog/News/Tour 共通
----------------------------------------------- */
#my-blog #content,
#my-search #content,
#my-news #content,
#my-tour #content,
#my-tour_type #content {
	margin: 0 auto;
	padding: 108px 0 98px;
}
#my-blog.search-no-results #content,	/* FEB-2023 KAZ: added */
#my-blog.single #content,
#my-news.single #content,
#my-tour.single #content {
	width: 810px;
}


/* Blog Page Components
----------------------------------------------- */
ul.category_menu {
	overflow: hidden;
	margin: -12px 0 76px -16px;
}
ul.category_menu li {
	list-style-type: none;
	float: left;
	margin-top: 12px;
	margin-left: 16px;
}
ul.category_menu li a {
	background-color: #dd6634;
	border-radius: 10px;
	display: block;
	padding: 0 0.9em;
	line-height: 55px;
	color: white;
	font-size: 20px;	/* FIXED */
	text-align: center;
}
ul.category_menu li a.current,
ul.category_menu li a:hover {
	background-color: #032859;
/*	opacity: 0.75; */
	text-decoration: none;
}

/* 一覧 */
ul.blog_list {
	margin: 0;
}
ul.blog_list li {
	list-style-type: none;
	margin-bottom: 80px;
}
ul.blog_list li a,
ul.blog_list li a > span,
ul.blog_list li a > span.content > span {
	display: block;
}
ul.blog_list li a {
	overflow: hidden;
	color: inherit;
}
ul.blog_list li a:hover {
	text-decoration: none;
}
ul.blog_list li a .photo {
	float: left;
	width: 243px;
}
ul.blog_list li a .content {
	margin-left: 262px;
	position: relative;	/* 11.2021 Aki */
}
ul.blog_list li a .content .date,
ul.blog_list li a .content .title {
	line-height: 1.625;	/* 39px */
	font-size: 120%;	/* 24px */
	font-weight: bold;
}
ul.blog_list li a .content .date {
/*	float: right; 11.2021 Aki */
/*	margin-left: 1.5em; 11.2021 Aki */
	position: absolute;
	top: 0;
	right: 0;
}
ul.blog_list li a .content .title {
	border-bottom: #032859 1px solid;
	padding-right: 160px;	/* 05.2022 Aki */
}
ul.blog_list li a:hover .content .title {
	text-decoration: underline;
}
ul.blog_list li a .content .excerpt {
	line-height: 1.45;	/* 29px */
}
/* 個別 */
#my-blog.single .entry-title {
	text-align: left;
}
#my-blog.single .entry-header-meta {
}
#my-blog.single .entry-header-meta .date,
#my-blog.single .entry-header-meta .category {
	text-align: right;
}
#my-blog.single .entry-header-meta .category {
	margin-bottom: 33px;
}
#my-blog.single .entry-header-meta .category a {
	background-color: #d96634;
	border-radius: 6px;
	display: inline-block;
	padding: 0 0.7em;
	margin-top: 5px;
	line-height: 32px;
	color: white;
}
#my-blog.single .entry-header-meta .category a:not(:first-child) {
	margin-left: 7px;
}
#my-blog.single .entry-header-meta .category a:hover {
	background-color: #032859;
	text-decoration: none;
}


/* News Page Components
----------------------------------------------- */
/* 一覧 */
ul.news_list {
	overflow: hidden;
	margin: 0;
}
ul.news_list li {
	list-style-type: none;
	float: left;
	width: 320px;
	padding-bottom: 30px;	/* FEB-2023 KAZ: added */
}
ul.news_list li:nth-child(3n+1) {	/* FEB-2023 KAZ: added */
	clear: left;
}
ul.news_list li:not(:nth-child(3n+1)) {	/* FEB-2023 KAZ: was :not(:first-child) */
	margin-left: 36px;
}
ul.news_list li a,
ul.news_list li a > span {
	display: block;
}
ul.news_list li a {
	color: inherit;
}
ul.news_list li a:hover {
	text-decoration: none;
}
ul.news_list li a .photo {
	margin-bottom: 20px;
}
ul.news_list li a .photo img {
	width: 100%;
	height: 230px;
	object-fit: cover;
}
ul.news_list li a .date {
	margin-bottom: 12px;
}
ul.news_list li a .title {
}
ul.news_list li a:hover .title {
	text-decoration: underline;
}

/* 個別 */
#my-news.single .entry-header-meta .date {
	text-align: center;
	border-top: solid;
	padding-top: 10px;
}


/* Tour Page Components
----------------------------------------------- */
ul.tour_type_menu {
	overflow: hidden;
	width: 760px;
	margin: 0 auto 76px;
}
ul.tour_type_menu li {
	list-style-type: none;
	float: left;
	width: 240px;
}
ul.tour_type_menu li:not(:first-child) {
	margin-left: 20px;
}
ul.tour_type_menu li a {
	background-color: #242f60;
	border-radius: 10px;
	display: block;
	line-height: 48px;
	color: white;
	font-size: 20px;	/* FIXED */
	text-align: center;
}
ul.tour_type_menu li a.current,
ul.tour_type_menu li a:hover {
	opacity: 0.75;
	text-decoration: none;
}
ul.tour_type_menu li a img.icon {
	margin-right: 8px;
	vertical-align: middle;
}
ul.tour_type_menu li.hiketour a img.icon {
}
ul.tour_type_menu li.biketour a img.icon {
}
ul.tour_type_menu li.othertour a img.icon {
}
/* 一覧 */
ul.tour_list {
	display: flex;		/* OCT-2021 KAZ */
	align-items: stretch;	/* OCT-2021 KAZ */
	flex-wrap: wrap;	/* OCT-2021 KAZ */
/*	overflow: hidden; */
	margin: 0;
}
ul.tour_list li {
	list-style-type: none;
/*	float: left; */
	width: 330px;
	margin-bottom: 30px;	/* OCT-2021 KAZ */
	position: relative;	/* 11.2021 Aki */
}
ul.tour_list li:not(:nth-child(3n+1)) {	/* OCT-2021 KAZ: was :not(:first-child) */
	margin-left: 21px;
}
ul.tour_list li a,
ul.tour_list li a > span,
ul.tour_list li a > span.upper > span,	/* OCT-2021 KAZ */
ul.tour_list li a > span.content > span {
	display: block;
}
ul.tour_list li a {
	background-color: white;
/*	position: relative; */
	height: 100%;		/* OCT-2021 KAZ: stretched */
	color: inherit;
}
ul.tour_list li a:hover {
	text-decoration: none;
}
ul.tour_list li a .upper {	/* OCT-2021 KAZ */
	position: relative;
}
ul.tour_list li a .upper .photo {
}
ul.tour_list li a .upper .photo img {
	width: 100%;
	height: 332px;
	object-fit: cover;
}
ul.tour_list li a .upper .category,
ul.tour_list li a .upper .fee,		/* OCT-2021 KAZ */
ul.tour_list li a .upper .date {	/* OCT-2021 KAZ */
	background-color: #242f60;
	border-radius: 7px;
	position: absolute;
	color: white;
	line-height: 23px;
	font-size: 13px;	/* FIXED */
}
ul.tour_list li a .upper .category {
	width: 121px;
	top: 6px;
	left: 7px;
	text-align: center;
}
ul.tour_list li a .upper .category img.icon {
	margin-right: 5px;
	vertical-align: middle;
}
ul.tour_list li.hiketour a .upper .category img.icon {
	width: 16px;
}
ul.tour_list li.biketour a .upper .category img.icon {
	width: 21px;
}
ul.tour_list li.othertour a .upper .category img.icon {
	width: 18px;
}
ul.tour_list li a .upper .fee,
ul.tour_list li a .upper .date {	/* OCT-2021 KAZ */
	padding: 0 0.5em;
	right: 7px;
}
ul.tour_list li a .upper .fee {		/* OCT-2021 KAZ */
	bottom: 35px;
}
ul.tour_list li a .upper .date {	/* OCT-2021 KAZ */
	bottom: 6px;
}
ul.tour_list li a .content {
	padding: 20px 18px 24px;
}
ul.tour_list li a .content .title {
	margin-bottom: 8px;
	color: #333;
	font-size: 120%;	/* 24px */
	font-weight: bold;
	text-align: center;
	min-height: 2.5em;	/* 11.2021 Aki */
}
ul.tour_list li a .content .excerpt {
	margin-bottom: 27px;
	line-height: 1.75;	/* 24.5px */
	color: #333;
	font-size: 70%;		/* 14px */
	min-height: 7em;	/* 11.2021 Aki */
}
ul.tour_list li a .content .btn_line {
	text-align: center;
	position: absolute;	/* 11.2021 Aki */
	bottom: 20px;	/* 11.2021 Aki */
	left: 50%;	/* 11.2021 Aki */
	transform: translatex(-50%);	/* 11.2021 Aki */
}
ul.tour_list li a .content .btn_line .link_btn {
	background-color: #dd6634;
	border-radius: 12px;
	display: inline-block;
	width: 130px;		/* OCT-2021 KAZ: was 110px */
	line-height: 30px;
	color: white;
	font-size: 90%;		/* 18px */
	font-weight: bold;
}
ul.tour_list li a:hover .content .btn_line .link_btn {
	opacity: 0.75;
}
/* 個別 */
#my-tour.single #content {
	padding: 136px 0 50px;
}
#my-tour.single .entry-title {
	border-bottom: #032859 2px solid;
	padding-right: 120px;
	line-height: 1.667;	/* 40px */
	font-size: 120%;	/* 24px */
	font-weight: bold;
	text-align: left;
}
#my-tour.single .entry-header-meta {
	position: relative;
	padding-top: 6px;
}
#my-tour.single .entry-header-meta .skilllevel {
	background-color: #ffff00;
	position: absolute;
	width: 105px;
	height: 64px;
	top: -78px;
	right: 0;
	color: black;
	font-weight: bold;
	text-align: center;
}
#my-tour.single .entry-header-meta .skilllevel .label {
	font-size: 60%;		/* 12px */
}
#my-tour.single .entry-header-meta .skilllevel .value {
	font-size: 160%;	/* 32px */
}
#my-tour.single .entry-header-meta .skilllevel sup.ref {
	line-height: inherit;
	font-size: 60%;		/* 12px */
	vertical-align: text-top;
}
#my-tour.single .entry-header-meta .slnote {
	margin-bottom: 26px;
	color: black;
	font-size: 70%;		/* 14px */
	text-align: right;
}
#my-tour.single .entry-header-meta .types {
	margin-bottom: 33px;
}
#my-tour.single .entry-header-meta .types span {
	border-radius: 12px;
	display: inline-block;
	padding: 0 0.7em;
	line-height: 55px;
	color: white;
}
#my-tour.single .entry-header-meta .types span.tour_type {
	background-color: #016f8e;
}
#my-tour.single .entry-header-meta .types span.tour_subtype {
	background-color: #d96634;
	margin-left: 35px;
}
#my-tour.single h2 {
	background-color: #032859;
	line-height: 52px;
	color: white;
	text-align: center;
}
#my-tour.single #tour_content {
	padding: 20px 0 49px;
}
#my-tour.single #tour_movie {
	padding: 20px 0 43px;
}
#my-tour.single #tour_movie h2 {
	margin-bottom: 50px;
}
#my-tour.single #tour_movie .movie video {
	width: 100%;
}
#my-tour.single #tour_movie .descr {
	margin-top: 38px;
}
#my-tour.single #tour_photos {
	padding: 20px 0 56px;
}
#my-tour.single #tour_photos h2 {
	margin-bottom: 100px;
}
#my-tour.single #tour_photos .phototext {
	display: flex;
	margin-top: 64px;
}
#my-tour.single #tour_photos .phototext:nth-of-type(odd) {
	flex-direction: row;
}
#my-tour.single #tour_photos .phototext:nth-of-type(even) {
	flex-direction: row-reverse;
}
#my-tour.single #tour_photos .phototext .photo {
	width: 475px;
}
#my-tour.single #tour_photos .phototext:nth-of-type(odd) .photo {
}
#my-tour.single #tour_photos .phototext:nth-of-type(even) .photo {
}
#my-tour.single #tour_photos .phototext .photo img {
	width: 100%;
}
#my-tour.single #tour_photos .phototext .descr {
	width: 315px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#my-tour.single #tour_photos .phototext:nth-of-type(odd) .descr {
	margin-left: 20px;
}
#my-tour.single #tour_photos .phototext:nth-of-type(even) .descr {
	margin-right: 20px;
}
#my-tour.single #tour_summary {
	padding: 20px 0 34px;	/* OCT-2021 KAZ: bottom was 0 */
}
#my-tour.single #tour_summary h2 {
	margin-bottom: 0;
}
#my-tour.single #tour_summary table {
}
#my-tour.single #tour_summary table th,
#my-tour.single #tour_summary table td {
}
#my-tour.single #tour_summary table tr.continue th,
#my-tour.single #tour_summary table tr.continue td {
	padding-bottom: 0;
}
#my-tour.single #tour_summary table tr:not(.continue) th,
#my-tour.single #tour_summary table tr:not(.continue) td,
#my-tour.single #tour_apply table tr th,
#my-tour.single #tour_apply table tr td {
	border-bottom: #032859 2px solid;
}
#my-tour.single #tour_summary table th,
#my-tour.single #tour_apply table th {
	padding: 40px 0.5em 40px 0;
	font-size: 120%;	/* 24px */
	font-weight: bold;
}
#my-tour.single #tour_summary table th {
	width: 160px;
}
#my-tour.single #tour_summary table th small {
	font-size: 62.5%;	/* 15px */
}
#my-tour.single #tour_summary table td,
#my-tour.single #tour_apply table td {
	border-top: 0;
	padding: 40px 0;
}
#my-tour.single #tour_summary table tr.area td .text {	/* OCT-2021 KAZ */
	margin-bottom: 10px;
}
#my-tour.single #tour_summary table td dl {
	overflow: hidden;
	margin: -2px 0 0;
	padding-top: 2px;
}
#my-tour.single #tour_summary table td dl dt {
	background-color: #032859;
	border-radius: 13.5px;
	float: left;
	width: 78px;
	margin-top: -2px;
	line-height: 27px;
	color: white;
	font-style: italic;
	font-weight: normal;
	text-align: center;
}
#my-tour.single #tour_summary table td dl dd {
	margin-bottom: 1.2em;
	margin-left: 86px;
}
#my-tour.single #tour_summary table td dl dd:last-child {
	margin-bottom: 0;
}
#my-tour.single #tour_summary table tr.notes td {
	position: relative;
}
#my-tour.single #tour_summary table tr.notes a {
	display: inline-block;
	line-height: 37px;
	color: white;
	background-color: #032859;
	border-radius: 10px;
	padding: 0 20px 0 30px;
	position: absolute;
	right: 35px;
}
#my-tour.single #tour_summary table tr.notes a:hover {
	text-decoration: none;
}



/* OCT-2021 KAZ: the form moved into #tour_apply */
#my-tour.single #tour_apply {
	padding: 20px 0 0;
}
#my-tour.single #tour_apply h2 {
}
#my-tour.single #tour_apply table {
}
#my-tour.single #tour_apply table th,
#my-tour.single #tour_apply table td {
}
#my-tour.single #tour_apply table th {
	width: 200px;	/* 05.2022 Aki was 180px */
}
#my-tour.single #tour_apply table td {
	width: 610px;	/* 05.2022 Aki */
}
#my-tour.single #tour_apply input[type="text"],
#my-tour.single #tour_apply input[type="email"],
#my-tour.single #tour_apply input[type="date"],
#my-tour.single #tour_apply textarea {
	-webkit-appearance: none;
	appearance: none;
	border: #032859 1px solid;
	border-radius: 8px;
	box-shadow: none;
}
#my-tour.single #tour_apply input[type="text"],
#my-tour.single #tour_apply input[type="email"],
#my-tour.single #tour_apply input[type="date"] {
	max-width: 100%;
	height: 40px;
	margin: -5px 0;
}
#my-tour.single #tour_apply input[type="date"] {	/* 05.2022 Aki */
	width: 225px;
}
#my-tour.single #tour_apply textarea {
	width: 100%;
}
#my-tour.single #tour_apply .your-party input.number {
	padding-right: 0.5em;
	text-align: right;
}
#my-tour.single #tour_apply p.submit-button,	/* FEB-2023 KAZ: was p.buttons-area */
#my-tour.single #tour_apply p.buttons-area-confirm,
#my-tour.single #tour_apply .contact {
	text-align: center;
}
#my-tour.single #tour_apply p.submit-button,	/* FEB-2023 KAZ: was p.buttons-area */
#my-tour.single #tour_apply p.buttons-area-confirm {
	margin: 56px 0 0;
}
#my-tour.single #tour_apply p.buttons-area {
	position: relative;
}
#my-tour.single #tour_apply p.submit-button input[type="submit"],	/* FEB-2023 KAZ: was p.buttons-area */
#my-tour.single #tour_apply p.buttons-area input[type="button"],
#my-tour.single #tour_apply p.buttons-area-confirm input[type="button"] {
/* #my-tour.single #tour_apply .contact a */
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 10px;
	box-shadow: none;
	width: 300px;
	line-height: 60px;
	color: white;
	font-size: 180%;	/* 36px */
	font-weight: bold;
}
#my-tour.single #tour_apply p.submit-button input[type="submit"],	/* FEB-2023 KAZ: was p.buttons-area */
#my-tour.single #tour_apply p.buttons-area-confirm input[type="button"] {
	background-color: #d96634;
}
#my-tour.single #tour_apply p.buttons-area input[type="button"] {
	background-color: #666666;
}
#my-tour.single #tour_apply p.submit-button input[type="submit"]:hover,	/* FEB-2023 KAZ: was p.buttons-area */
#my-tour.single #tour_apply p.buttons-area input[type="button"]:hover,
#my-tour.single #tour_apply p.buttons-area-confirm input[type="button"]:hover,
#my-tour.single #tour_apply .contact a:hover {
	opacity: 0.75;
}
#my-tour.single #tour_apply p.buttons-area-confirm {
	padding: 0;
}
/*#my-tour.single #tour_apply .contact {
 *	margin-top: 16px;
 *}
 *#my-tour.single #tour_apply .contact a {
 *	background-color: #7f8913;
 *	display: inline-block;
 *}
 *#my-tour.single #tour_apply .contact a:hover {
 *	text-decoration: none;
 *}
 */


/* Front Page Components
----------------------------------------------- */
#my-top h2 a {
	color: inherit;
}
#my-top .btn_line {
	text-align: center;
}
#my-top .btn_line a.more {
	background-color: #032859;
	border-radius: 10px;
	display: inline-block;
	width: 171px;
	line-height: 37px;
	color: white;
	font-weight: bold;
}
#my-top .btn_line a.more:hover {
	opacity: 0.75;
	text-decoration: none;
}
#top_mainvisual {
	background: #242f60 url(/images/top_mainvisual.png) no-repeat center top / 100% auto;
	position: relative;
	aspect-ratio: 1100 / 656;
}
#top_mainvisual .text {
	position: absolute;
	top: 32%;
	left: calc(50% - 516px);
	line-height: 1.4;
	color: white;
	font-size: 150%;	/* 30px */
	font-weight: bold;
}
#top_mainvisual .text .helvetica {
	font-family: "Helvetica LT Std Condensed", "Helvetica Neue", Calibri, sans-serif;
	font-size: 146.7%;	/* 44px */
	font-weight: 800;
}
#top_news {
	background-color: #242f60;
	color: white;
}
#top_news .wall {
	padding: 28px 0 64px;
}
#top_news h2 {
	margin-bottom: 22px;
}
#top_news h2::before {
	content: url(/images/icon_hike_white.svg);
}
#top_news h2::after {
	content: url(/images/icon_bike_white.svg);
}
#top_news ul.news_list {
	/* See also ul.news_list above */
	margin-bottom: 66px;
}
#top_news .btn_line {
}
#top_news .btn_line a.more,
#top_aboutus .btn_line a.more {
	background-color: white;
	color: black;
}
#top_aboutus {
	background: url(/images/top_aboutus_bg.jpg) no-repeat center top / 100% auto;
	position: relative;
	aspect-ratio: 1100 / 720;
}
#top_aboutus::after {
	display: inline-block;
	position: absolute;
	bottom: -5px;
	left: calc(50% - 516px);
	content: url(/images/icon_hike_white20.svg);
}
#top_aboutus h2,
#top_aboutus .box,
#top_aboutus .btn_line {
	position: absolute;
	width: 810px;
	left: calc(50% - 405px);
}
#top_aboutus h2 {
	top: 60px;
	color: #231815;
}
#top_aboutus h2::before {
	content: url(/images/icon_hike_darkbrown.svg);
}
#top_aboutus h2::after {
	content: url(/images/icon_bike_darkbrown.svg);
}
#top_aboutus .box {
	background-color: rgba(255,255,255,0.2);
	bottom: 118px;
	padding: 10px 1em 24px;	/* OCT-2021 KAZ: side was 0 */
	color: white;
}
#top_aboutus .box .heading,
#top_azumino .box .heading {
	margin-bottom: 13px;
	line-height: 1.667;	/* 40px */
	font-size: 120%;	/* 24px */
	font-weight: bold;
}
#top_aboutus .box .heading {
	border-bottom: white 2px solid;
}
#top_aboutus .box .descr,
#top_azumino .box .descr {
	line-height: 1.15;	/* 23px */
}
#top_aboutus .btn_line {
	bottom: 48px;
}
#top_azumino {
	background: url(/images/top_azumino_bg.png) no-repeat center bottom / 100% auto;
	padding: 55px 0 165px;
}
#top_azumino h2 {
	margin-bottom: 40px;
}
#slideshow {
	position: relative;
	margin-bottom: 34px;
}
#ss_img_wrapper {
	position: relative;
/*	overflow: hidden; */
	padding-top: 58.36%;	/* 642 / 1100 */
}
#ss_img_wrapper .ss_img {
	position: absolute;
	width: 100%;
	aspect-ratio: 1100 / 642;
	top: 0;
	left: 0;
	z-index: -9999;
}
#ss_img_wrapper .ss_img#ss1 {
	z-index: 0;
}
#ss_panel {
	padding-top: 17px;
	line-height: 0;
	text-align: center;
}
#ss_panel a {
	display: inline-block;
	padding: 11px;
}
#ss_panel a span {
	background-color: #979797;
	border-radius: 50%;
	display: block;
	width: 10px;
	height: 10px;
}
#ss_panel a.current span,
#ss_panel a:hover span {
	background-color: black;
}
#top_azumino .box {
	width: 810px;
	margin: 0 auto 58px;
}
#top_azumino .box .heading {
	border-bottom: #032859 2px solid;
}
#top_azumino .box .descr {
}
#top_tour {
	background-color: #f0f0f0;
}
#top_tour .wall {
	padding: 56px 0;
}
#top_tour h2 {
	margin-bottom: 43px;
}
#top_tour ul.tour_list {
	/* See also ul.tour_list above */
	margin-bottom: 64px;
}
#top_blog {
}
#top_blog .wall {
	padding: 66px 0 81px;
}
#top_blog h2 {
	margin-bottom: 78px;
}
#top_blog ul.blog_list {
	/* See ul.blog_list above */
}
#top_blog .btn_line {
}
#top_sns {
}
#top_sns .wall {
	width: 810px;
	padding: 81px 0;
}
#top_sns .instagram,
#top_sns .facebook {
	width: 390px;
	height: 600px;
}
#top_sns .instagram {
	float: left;
	overflow-y: scroll;
}
#top_sns .facebook {
	margin-left: 420px;
}


/* Fixed Page Components
----------------------------------------------- */
/* W-Asobiとは */
#aboutus_wasobi {
	border-bottom: #7F8913 70px solid;
	position: relative;
}
#aboutus_wasobi::before,
#aboutus_wasobi::after {
	display: block;
	position: absolute;
	height: 128px;
	bottom: 0;
	content: '';
}
#aboutus_wasobi::before {
	background: url(/images/icon_hike_black.svg) no-repeat center / contain;
	width: 113px;
	left: 48px;
}
#aboutus_wasobi::after {
	background: url(/images/icon_bike_black.svg) no-repeat center / contain;
	width: 160px;
	right: 38px;
}
#aboutus_wasobi .wall {
	width: 810px;
	padding: 50px 0 175px;
}
#aboutus_wasobi .descr.intro {
	margin-bottom: 40px;
}
#aboutus_wasobi h2.naming {
}
#aboutus_staff {
}
#aboutus_staff .wall {
	width: 920px;
	padding: 60px 0 95px;
	padding-bottom: 50px;	/* 05.2022 Aki added */
}
#aboutus_staff h2 {
	margin-bottom: 54px;
}
#aboutus_staff .staff_wrapper {
/*	overflow: hidden; 05.2022 Aki */
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#aboutus_staff .staff {
	width: 400px;
	padding-bottom: 45px;	/* 05.2022 Aki added */
}
#aboutus_staff .staff:nth-child(1) {
/*	float: left; 05.2022 Aki */
}
#aboutus_staff .staff:nth-child(2) {
/*	margin-left: 520px; 05.2022 Aki */
}
#aboutus_staff .staff .photo {
	margin-bottom: 29px;
}
#aboutus_staff .staff .name {
	margin-bottom: 25px;
	line-height: 1.417;	/* 34px */
	font-size: 120%;	/* 24px */
	font-weight: bold;
	text-align: center;
}
#aboutus_staff .staff ul.qualifications {
	min-height: 7.2em;
	margin: 0 0 1.2em;
}
#aboutus_staff .staff ul.qualifications li {
	list-style-type: none;
	margin-left: -0.2em;
	padding-left: 1em;
}
#aboutus_staff .staff ul.qualifications li::before {
	display: inline-block;
	width: 1em;
	margin-left: -1em;
	content: '＊';
}
#aboutus_staff .staff .descr {
	line-height: 1.4;	/* 28px */
}

/* 安曇野について */
#azumino_intro .wall,
#azumino_sustainability .wall,
#azumino_access .wall {
	width: 810px;
}
#azumino_intro .wall {
	padding: 72px 0 38px;
}
#azumino_intro h2 {
}
#azumino_intro .descr {
	margin-bottom: 57px;
}
#azumino_intro .image_wrapper {
}
#azumino_intro .image_wrapper img:nth-child(2) {
	margin-left: 23px;
}
#azumino_intro .image_wrapper img:nth-child(3) {
	margin-top: 25px;
}
#azumino_sustainability {
	border-bottom: #7F8913 70px solid;
	position: relative;
}
#azumino_sustainability::after {
	background:
		url(/images/icon_hike_blue.svg) no-repeat left bottom / auto 130px,
		url(/images/icon_bike_blue.svg) no-repeat right bottom / auto 126px;
	display: block;
	position: absolute;
	width: 327px;
	height: 130px;
	bottom: 1px;
	left: 70px;
	content: '';
}
#azumino_sustainability .wall {
	padding: 40px 0 53px;
}
#azumino_sustainability h2 {
}
#azumino_sustainability .descr {
	margin-bottom: 76px;
}
#azumino_sustainability .image_wrapper {
	position: relative;
	padding-top: 234px;
	text-align: right;
}
#azumino_sustainability .image_wrapper img:nth-child(2) {
	position: absolute;
	top: 0;
	left: 0;
}
#azumino_access {
}
#azumino_access .wall {
	padding: 67px 0 70px;
}
#azumino_access h2 {
	margin-bottom: 30px;
}


/* 注意事項 09.2021 Aki */
.entry-content h2.colored {
	color: white;
	background-color: #003366;
	text-align: center;
	line-height: 50px;
	margin-bottom: 50px;
}
#my-notes section .wall {
	width: 810px;
}
section .ttl_b {
	font-weight: bold;
}
section .descr.message {
	padding: 20px 0;
}
section#menu_wrap {
	padding-top: 50px;
}
section#menu_wrap ul {
	display: flex;
	justify-content: center;
}
section#menu_wrap ul > li {

}
section#menu_wrap ul > li a {
	display: block;
	color: white;
	background: #032859;
	text-align: center;
	text-decoration: none;
	border: solid 1px #032859;
	padding: 5px 10px;
	margin: 0 5px;
}
section#menu_wrap ul > li a:hover {
	color: #032859;
	background: white;
}
section#notes_01 {
	padding: 50px 0 15px;
}
section#notes_01 ul > li{
	position: relative;
	display: flex;
	align-items: center;
	padding-bottom: 50px;
}
section#notes_01 ul > li .number{
	display: inline-block;
	color: white;
	background: #032859;
	width: 55px;
	height: 55px;
	font-weight: bold;
	border: solid 1px #032859;
	border-radius: 50%;
	padding: 15px 20px;
	z-index: 1;
}
section#notes_01 ul > li:not(:last-child)::after {
	content: "↓";
	display: block;
	font-size: 200%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translatex(-50%);
}
section#notes_01 ul > li .text{
	display: inline-block;
	width: 100%;
	font-size: 80%;
	background: #e6e6e6;
	border-radius: 10px;
	padding: 15px 15px 15px 50px;
	margin-left: -27px;
}
section#notes_01 .descr.wrap_02 {
	padding-top: 1.4em;
}
section#notes_02 {
	background-color: #ededed;
	padding: 50px 0 0;
}
section#notes_02 .lv_wrap {
	overflow: hidden;
	padding-bottom: 60px;
}
section#notes_02 .lv_wrap h2.colored {
	margin-bottom: 20px;
}
section#notes_02 .lv_wrap .imgonly {
	width: 400px;
	height: auto;
	float: left;
}
section#notes_02 .lv_wrap .text_wrap {
	overflow: hidden;
	padding-left: 10px;
}
section#notes_02 .lv_wrap .descr {
	font-size: 80%;
	line-height: 1.75;
	padding: 5px 0 20px 5%;
}
section#notes_03 {
	padding: 50px 0 20px;
}
section#notes_03 .detail_wrap {
	overflow: hidden;
}
section#notes_03 .detail_wrap .imgonly {
	width: 400px;
	height: auto;
}
section#notes_03 .detail_wrap ul {	/* 05.2022 Aki */
	font-size: 80%;	/* 16px */
	background: #ededed;
	border-radius: 10px;
	padding: 10px 15px 10px 30px;
	margin-left: 1em;
}
section#notes_03 .detail_wrap .text_wrap {
	overflow: hidden;
	width: auto;
	line-height: 1.75;
	padding-right: 5%;
}
section#notes_03 .detail_wrap .text_wrap .ttl_b span {
	display: block;
	font-size: 87.5%;
	padding-left: 1em;
}
section#notes_03 .detail_wrap .text_wrap .ttl_colored {
	color: white;
	background-color: #032859;
	text-align: center;
	border-radius: 27px;
	width: 50%;	/* 05.2022 Aki was 80px */
	padding: 3px 0 2px;
	margin: 0 auto 15px;
}
section#notes_03 .detail_wrap.wrap01, section#notes_03 .detail_wrap.wrap02 {
	padding: 30px 0 0;
}
section#notes_03 .detail_wrap.wrap01 .imgwrap {
	float: right;
}
section#notes_03 .detail_wrap.wrap01 .imgwrap .imgonly {
	padding-bottom: 20px;
}
section#notes_03 .detail_wrap.wrap01 .descr_wrap .left_wrap {
/*	padding-right: 80px; 05.2022 Aki */
}
section#notes_03 .detail_wrap.wrap01 .descr_wrap .left_right_wrapper {
/*	display: flex;
*	justify-content: center;
 05.2022 Aki */}
section#notes_03 .descr.note {
	text-align: center;
}
section#notes_03 .detail_wrap.wrap02 {
	padding-bottom: 30px;
}
section#notes_03 .detail_wrap.wrap02 .text_wrap {
	padding-right: 0;
}
section#notes_03 .detail_wrap.wrap02 ul {
	display: flex;
	flex-wrap: wrap;
}
section#notes_03 .detail_wrap.wrap02 ul > li {
	padding-right: 2em;
}
section#notes_04 {
	background-color: #ededed;
	overflow: hidden;
	padding: 50px 0 20px;
}
section#notes_04 .imgonly {
	width: 400px;
	height: auto;
	float: left;
	margin-right: 50px;
}
section#notes_04 ul {
	color: #000000;
	line-height: 1.8;
	font-size: 80%;	/* 05.2022 Aki */
}
section#notes_04 ul > li {
	padding-bottom: 5px;
}
section#notes_05,
section#notes_06,
section#notes_07 {	/* OCT-2021 KAZ: added #notes_06 and #notes_07 */
	padding: 50px 0;	/* OCT-2021 KAZ: bottom was 20px */
}
section#notes_05 .detail_wrap {
	background: #ededed;
	border-radius: 10px;
	padding: 10px 20px 20px;
	margin-top: 20px;
}
section#notes_05 .detail_wrap .descr {
	font-size: 80%;
	padding-left: 1em;
}
section#notes_05 .ttl_b{
	padding: 10px 0;
}
section#notes_06 {	/* OCT-2021 KAZ */
	background-color: #ededed;
}
section#notes_06 h2,
section#notes_07 h2 {	/* OCT-2021 KAZ */
	margin-bottom: 1.5em;
}
section#notes_06 .pdf_wrapper, section#notes_07 .pdf_wrapper {
	display: flex;
	flex-wrap: wrap;
}
section#notes_06 .pdflink a,
section#notes_07 .pdflink a {	/* OCT-2021 KAZ *//* 05.2022 Aki fixed */
/*	margin-top: 1em; */
	display: inline-block;
	color: inherit;
	text-decoration: none;
	background: url(/images/icon_pdf.png)no-repeat center right 15px white;
	min-width: 250px;
	border: solid 1px;
	border-radius: 30px;
	padding: 10px 15px;
	margin: 10px;
}
section#notes_06 .pdflink a img.icon,
section#notes_07 .pdflink a img.icon {	/* OCT-2021 KAZ */
/*	padding-left: 0.5em;
*	vertical-align: middle;
 05.2022 Aki */}
section#notes_06 .wrapper {
	padding: 15px 0;
}
section#notes_06 .wrapper .ttl_b {
	padding-bottom: 10px;
}
section#notes_06 .wrapper .descr {
	font-size: 80%;
}
section#notes_06 .wrapper table {
	background: white;
	border-bottom: solid 1px;
	margin-bottom: 0;
}
section#notes_06 .wrapper table th, section#notes_06 .wrapper table td {
	border-top: solid 1px;
	border-bottom: solid 1px;
	padding: 10px 0;
}
section#notes_06 .wrapper table th {
	width: 35%;
	padding-left: 15px;
}
section#notes_06 .wrapper table td {
}


/* リンク集 */
#links_main .wall {
	padding: 100px 0;
}
#links_main .descr {
	margin-bottom: 60px;
	text-align: center;
}
#links_main ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
}
#links_main ul li {
	list-style-type: none;
	width: 30%;
}
#links_main ul li:not(:nth-child(3n+1)) {
	margin-left: 5%;
}
#links_main ul li a {
	display: block;
}
#links_main ul li a img {
	max-width: 100%;
}


/* お問い合わせ 09.2021 Aki */
#my-contact section .wall {
	width: 810px;
}
section#contact_01 {
	padding: 50px 0;
}
section#contact_01 .descr {
	padding-bottom: 50px;
}
section#contact_01 table th, section#contact_01 table td {
	border-bottom: #032859 2px solid;
}
section#contact_01 table th {
	width: 200px;		/* OCT-2021 KAZ: was 160px */
	font-size: 120%;
	font-weight: bold;
	padding: 40px 0.5em 40px 0;
}
section#contact_01 table td {
	border-top: 0;
	padding: 40px 0;
}
#my-contact input[type="text"], 
#my-contact input[type="email"], 
#my-contact input[type="date"], 
#my-contact textarea {
	border: #032859 1px solid;
	border-radius: 8px;
	box-shadow: none;
}
#my-contact textarea {
	width: 100%;
}
#my-contact form.wpcf7-form p.buttons-area-confirm,
#my-contact form.wpcf7-form p.submit-button {	/* FEB-2023 KAZ: was p.buttons-area */
	text-align: center;
}
#my-contact form.wpcf7-form input[type=submit],
#my-contact form.wpcf7-form input[type=button] {	/* FEB-2023 KAZ: added form.wpcf7-form */
	border: 0;
	border-radius: 10px;
	box-shadow: none;
	width: 300px;
	margin-top: 16px;
	line-height: 60px;
	color: white;
	background-color: #d96634;
	font-size: 180%;
	font-weight: bold;
}
#my-contact form.wpcf7-form input.button-rewrite {	/* FEB-2023 KAZ: added form.wpcf7-form */
	background-color: #666666;
}





/* =IE8
----------------------------------------------- */
#ie8 section.feature-image.large img {
	width: 100%;
}


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