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

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600&family=Cormorant+Garamond:wght@500;700&display=swap');

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

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


/* Variables	JUL-2022 KAZ
----------------------------------------------- */
:root {
	/* Dimensions */
	--viewheight: 100vh;
	--mtca-wall-width: 1100px;
	--mtca-mid-wall-width: 760px;
	--mtca-nav-menu-height: 78px;	/* 2023.9 KAZ */

	/* Colors */
	--mtca-text-color: #333333;	/* 2023.8 KAZ */
	--mtca-green: #1b6d35;
	--mtca-light-green: #d4dcd6;
	--mtca-exlight-green: #f6f9f7;
	--mtca-brown: #a26a1e;
	--mtca-redbrown: #873d26;	/* 2023.10 KAZ: ChkHTML; for page-convention; or #91412a */
	--mtca-grayblue: #184669;	/* 2023.10 KAZ: ChkHTML; for page-association; or #1b4d6d */
	--mtca-pickup-bgcolor: #a23c1e;	/* 2023.10 KAZ: ChkHTML; this was --mtca-redbrown */
	--mtca-beige: #faf7f3;
	--mtca-dark-gray: #5f5f5f;

	/* Font */
	font-size: 100%;	/* 16px */
}
@media print, screen and (min-width: 783px) {	/* WP Admin Bar */
	:root {
		/* Dimensions */
		--wp-admin-bar-height: 32px;

		/* JUN-2023 KAZ: moved width above */
	}
}
@media screen and (max-width: 782px) {	/* WP Admin Bar */
	:root {
		/* Dimensions */
		--wp-admin-bar-height: 46px;

		/* JUN-2023 KAZ: moved width to mtca2023spchild/style.css */
	}
}


/* =Structure
----------------------------------------------- */
html {
	scroll-padding-top: var(--mtca-nav-menu-height);	/* 2023.9 KAZ */
}
html:has(body.admin-bar) {	/* on Firefox, the layout.css.has-selector.enabled preference needs to be set true */
	scroll-padding-top: calc(var(--mtca-nav-menu-height) + var(--wp-admin-bar-height));	/* 2023.9 KAZ */
}
body {
	padding: 0;
	min-width: calc(var(--mtca-wall-width) + 40px);
	font-size: 100%;
	-webkit-text-size-adjust: none;	/* KAZ: was 100% */
	text-size-adjust: none;	/* KAZ */
}
/* #masthead,*/#breadcrumbs,/* #mainwall,*/ #ft_links {
	width: var(--mtca-wall-width);
}
#page {
	background: #fff;
}
#primary {
	float: left;
	margin: 0;
	width: 684px;	/* Width of main area */
}
#primary.nosidebar {
	float: none;
	margin: 0 auto;
	width: 100%;
}
body:not(#my-top) #content {
	padding-bottom: 140px;	/* 06.2023 Aki added */
	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) / 2023.9 Aki c/o */
	width: var(--mtca-wall-width);
	margin: 0 auto;
}

/* 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: var(--mtca-text-color);	/* 2023.8 KAZ: was #333333 */
	font-family: 'Noto Sans JP', sans-serif; /* was "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif * MTL see tips.xls */
	line-height: 1.333;
}
input, textarea, select {
	font-size: 100%;
}

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

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

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

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

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

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

/* Links */
a {
	color: var(--mtca-green);	/* was #1982d1 */
	text-decoration: none;
}
/* a:focus, a:active, */
a.current {
	text-decoration: underline;
}
@media (any-hover: hover) { 
	a:hover {
		text-decoration: underline;
	}
}

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


/* =Header
----------------------------------------------- */
#branding {
	position: relative;
	z-index: 9999;
/*	height: 150px; */
}
#masthead {
/*	height: 150px;  Aki c/o */
	margin: 0 auto;
}
/*body:not(:is(#my-top, #my-studytrip, #my-tourexp_category, .archive#my-tourexp)) #masthead {
 *	background: url(/images/bg.png);
 *	height: 170px;	/ * 2023.8 Aki was 80px :  navメニューと合わせて、右ロゴと高さが合うようにした 2023.9 aki was 92px : 下位designにのっとって調整 * /
 *}
 */	/* 2023.10 KAZ: moved to .page-header */

/* =Menu
-------------------------------------------------------------- */
#headlogo,
/* #headmenu, */	/* 2023.8 KAZ: not #headmenu */
#menu_open_btn,
#menu_close_btn {
	position: absolute;	/* 2023.8 KAZ: was fixed */
	right: 0;
}
#headlogo,	/* 2023.8 KAZ */
#menu_overlay,	/* 2023.8 KAZ */
#headmenu,	/* 2023.8 KAZ: always */
:is(#menu_open_btn, #menu_close_btn).floating,	/* 2023.8 KAZ: was .scrolldown */
#my-top #menu_close_btn:not(.floating) {	/* 2023.8 KAZ */
	top: 0;
}
#headlogo {
	background: var(--mtca-green);
/*	position: absolute; Aki c/o */
	clear: both;
	width: 150px;
	height: 170px;
/*	right: 0; Aki c/o */
	z-index: 10;
/*	padding: 20px 21px; */
}
#headlogo a {
	display: block;	/* 2023.8 KAZ */
	padding: 20px 21px;	/* 2023.8 KAZ: moved */
}
/*#headlogo.scrolldown {
 *	position: absolute;
 *}
 */
#menu_open_btn,
#menu_close_btn {
/*	position: absolute; Aki c/o */
	top: 170px;
/*		right: 0; Aki c/o */
	width: 150px;
	height: var(--mtca-nav-menu-height);	/* 2023.9 KAZ: was 78px; 2023.8 Aki was 124px */
	background-color: var(--mtca-beige);
	border-bottom: solid 4px var(--mtca-brown);
/*	padding: 30px 0; */
	text-align: center;
}
.page-association #menu_open_btn,
.page-association #menu_close_btn {
	border-bottom: solid 4px var(--mtca-grayblue);	/* 2023.10 KAZ: ChkHTML */
}
.page-convention #menu_open_btn,
.page-convention #menu_close_btn {
	border-bottom: solid 4px var(--mtca-redbrown);	/* 2023.10 KAZ: ChkHTML */
}
#my-top #menu_open_btn,
#my-top #menu_close_btn {
	height: var(--mtca-nav-menu-height);	/* 2023.9 KAZ: was 78px; 2023.8 KAZ */
}
.admin-bar :is(#menu_open_btn, #menu_close_btn).floating,
.admin-bar #headmenu {
	top: var(--wp-admin-bar-height);	/* 2023.8 KAZ */
}
:is(#menu_open_btn, #menu_close_btn).floating {
	position: fixed;
}
@media screen and (max-width: 1139px) {	/* (max-width: calc(var(--mtca-wall-width) + 39px)) does not work */
	body.pc :is(#menu_open_btn, #menu_close_btn).floating {
		right: calc(100% - var(--mtca-wall-width) - 40px);
	}
}
#menu_open_btn {
/*	position: absolute; Aki c/o */
}
#my-top #menu_open_btn:not(.floating) {
	top: 642px;	/* 2023.8 KAZ */
	display: none;	/* Aki */
}
#menu_open_btn a,
#menu_close_btn a {
	display: block;
	padding: 12px 0;	/* 2023.8 KAZ: moved / 2023.8 Aki was 30px 0 */
}
#my-top #menu_open_btn a,
#my-top #menu_close_btn a {
	padding: 12px 0;	/* 2023.8 KAZ */
}
#menu_open_btn a {

}
#menu_open_btn img,
#menu_close_btn img {
	width: auto;
	height: 50px;
}
#my-top #menu_open_btn img,
#my-top #menu_close_btn img {
	width: auto;	/* 2023.8 KAZ */
	height: 50px;	/* 2023.8 KAZ */
}
#menu_overlay,
#headmenu {
	display: none;
}
#menu_overlay {
	background-color: rgba(0,0,0,0.3);
	position: fixed;
	width: 100%;
	height: 100vh;
	left: 0;
}
#headmenu {
/*	background: url(/images/line.svg) repeat-x left bottom 20px, url(/images/bg.png); */
	background: url(/images/bg.png);	/* 2023.8 KAZ */
/*	position: absolute; Aki c/o */
	position: fixed;	/* 2023.8 KAZ */
	overflow: auto;	/* 2023.8 KAZ */
	overscroll-behavior: none;	/* 2023.8 KAZ */
	width: 100%;	/* 2023.8 KAZ: was auto; Aki was 100% */
	min-width: calc(var(--mtca-wall-width) + 40px);	/* 2023.8 KAZ */
	max-height: var(--viewheight);	/* 2023.8 KAZ */
	left: 0;	/* 2023.8 KAZ */
/*	right: 0; */
	padding: 20px 150px 20px 50px; /* 2023.8 KAZ: bottom was 50px; was 50px 0 100px 150px */
}
#headmenu::after {	/* 2023.8 KAZ */
	background: url(/images/line.svg) repeat-x left bottom;
	display: block;
	clear: left;
	height: 8px;
	margin: 22px -150px 0 -50px;
	content: '';
}
.admin-bar #headmenu {
	max-height: calc(var(--viewheight) - var(--wp-admin-bar-height));	/* 2023.8 KAZ */
}
#menu_close_btn {
/*	position: absolute; Aki c/o */
	z-index: 10;
}
#menu_close_btn a {
}
#headmenu .sitename {
	padding-bottom: 20px;
	color: white;
	font-size: 1.25rem;
}
:is(#headmenu, #colophon) ul {
	margin: 0;
}
:is(#headmenu, #colophon) ul li {
	list-style-type: none;
	position: relative;
}
:is(#headmenu, #colophon) ul li:not(.contact) a {
	display: block;
	padding-bottom: 33px;
	line-height: 1;
	color: white;
	font-weight: 500;
}
:is(#headmenu, #colophon) ul li.contact {	/* 2023.10 Aki */
	margin-bottom: 33px;
}
/* メインメニュー header & footer */
:is(#headmenu, #colophon) ul.menu_main {
	float: left;
}
#headmenu ul.menu_main {
	width: 350px;	/* Aki was 450px */
	margin-right: 50px;	/* Aki was 78px */
}
:is(#headmenu, #colophon) ul.menu_main li {
	border-top: solid 1px var(--mtca-dark-gray);
}
:is(#headmenu, #colophon) ul.menu_main li:last-child {
	border-bottom: solid 1px var(--mtca-dark-gray);
}
:is(#headmenu, #colophon) ul.menu_main li::before,
:is(#headmenu, #colophon) ul.menu_main li:last-child::after {
	content: "";
	border-bottom: solid 1px var(--mtca-brown);
	display: block;
	position: absolute;
	height: 1px;
	top: -1px;
}
.page-association :is(#headmenu, #colophon) ul.menu_main li::before,
.page-association :is(#headmenu, #colophon) ul.menu_main li:last-child::after {
	border-bottom: solid 1px var(--mtca-grayblue);	/* 2023.10 KAZ: ChkHTML */
}
.page-convention :is(#headmenu, #colophon) ul.menu_main li::before,
.page-convention :is(#headmenu, #colophon) ul.menu_main li:last-child::after {
	border-bottom: solid 1px var(--mtca-redbrown);	/* 2023.10 KAZ: ChkHTML */
}
#headmenu ul.menu_main li::before,
#headmenu ul.menu_main li:last-child::after {
	width: 77px;
}
:is(#headmenu, #colophon) ul.menu_main li:last-child::after {
	top: auto;
	bottom: -1px;
}
:is(#headmenu, #colophon) ul.menu_main li:not(.contact) a {
	background: url(/images/arrow_right.svg) no-repeat center left 30px;
}
#headmenu ul.menu_main li:not(.contact) a {
	padding: 31px 0 29px 77px;
	font-size: 1.25rem;	/* 20px was 1.5rem=24px */
}
@media (any-hover: hover) {
	:is(#headmenu, #colophon) ul.menu_main li:not(.contact) a:hover, :is(#headmenu, #colophon) ul.menu_main li:not(.contact) a.current {
		text-decoration: none;
		background: url(/images/arrow_right.svg) no-repeat center left 30px rgba(162,106,30,0.1);
	}
	#colophon ul.menu_main li:not(.contact) a:hover, #colophon ul.menu_main li:not(.contact) a.current {
		background-position: center left 10px;
		background-size: 14px auto;
	}
}
#headmenu ul.menu_main li.contact {
	border-bottom: 0;
	padding-top: 20px;
}
#headmenu ul.menu_main li.contact a {
	width: 350px;
}
#headmenu ul.menu_main li.contact::after {
	content: none;
}

/* メインメニュー以外 */
:is(#headmenu, #colophon) .menu_right {
	overflow: hidden;
/*	display: flex;
	flex-wrap: wrap; 2023.8 Aki c/o */
}
#headmenu .menu_right li.shinmatsu {
	white-space: nowrap;	/* 2023.10 KAZ: copied; iPad safari閲覧時にiconが下に落ちるのを防ぐため */
}
:is(#headmenu, #colophon) ul.menu_child {
	display: flex;	/* 2023.8 Aki */
	padding-bottom: 13px;
	margin-top: -13px;
}
:is(#headmenu, #colophon) ul.menu_child li a {
	padding-left: 20px;
	padding-bottom: 20px;
	line-height: 40px;
}
:is(#headmenu, #colophon) ul.menu_child li a::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 10px;
	width: 1px;
	height: 40px;
	background-color: var(--mtca-dark-gray);
}
/* 外部リンク類 */
:is(#headmenu, #colophon) ul.menu_blank {
	white-space: nowrap;	/* Aki:iPad safari閲覧時にiconが下に落ちるのを防ぐため */
/*	margin-top: 15px; */
	padding-right: 50px;
/*	padding-left: 50px;	/* 2023.8 Aki c/o  */
}
:is(#headmenu, #colophon) ul.menu_blank li a {
	display: inline-block;
	font-size: 0.875rem;	/* 14px */
	line-height: 1.25;
	padding-bottom: 17px;
}
#headmenu .menu_right li.shinmatsu a::after,	/* 2023.10 KAZ: added */
#headmenu ul.menu_blank li:not(.sns_wrap) a::after,
#colophon ul.menu_blank li a::after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background: url(/images/icon_blank.svg) no-repeat center /cover;
	margin-left: 6px;
}
:is(#headmenu, #colophon) ul.menu_blank li.sns_wrap {
	color: white;
	font-size: 0.75rem;	/* 12px */
	display: flex;
	align-items: center;
	gap: 0 8px;
	margin-top: 15px;
}
:is(#headmenu, #colophon) ul.menu_blank li.sns_wrap span {
	padding-right: 6px;
}
:is(#headmenu, #colophon) ul.menu_blank li.sns_wrap a {
	padding-bottom: 0;
}

/* 他言語menu用 */
#headlangbar {
	position: relative;
	float: right;
	right: -12px;	/* == padding-right of #headmenu ul#headlangbar li */
	height: 25px;	/* 30-5 */
	padding-top: 5px;
	margin: 0;
}
#headmenu ul#headlangbar {
	height: 25px;
	line-height: 25px;
}
#headmenu ul#headlangbar li {
	border-left: #ccc solid 1px;
	float: left;
	font-size: 80%;
	padding: 0 12px;
}
#headmenu ul#headlangbar li:first-child {
	border-left: none;
}

/* 投稿 & 固定ページタイトル用 */
#my-tourexp.single .page-header,
.page-header {
	background: url(/images/bg.png);	/* 2023.10 KAZ: moved */
/*	width: var(--mtca-wall-width); */	/* 2023.10 KAZ: moved to .page-header > * */
	height: 170px;	/* 2023.10 KAZ: moved; 2023.8 Aki was 80px :  navメニューと合わせて、右ロゴと高さが合うようにした 2023.9 aki was 92px : 下位designにのっとって調整 */
/*	margin: 0 auto; */	/* 2023.10 KAZ: moved to .page-header > * */
	padding-top: 0;	/* 2023.10 Aki added */
}
.page-header > * {
	width: var(--mtca-wall-width);	/* 2023.10 KAZ: moved */
	margin: 0 auto;	/* 2023.10 KAZ: moved */
	padding-right: calc(150px - (100% - var(--mtca-wall-width)) / 2);	/* 2023.10 KAZ */
}
.page-title {	/* 2023.10 KAZ: was .page-header h1 */
	padding-top: 60px;	/* 2023.10 KAZ: moved and merged */
	padding-bottom: 15px;	/* 2023.10 KAZ: moved and merged */
	line-height: inherit;
	color: white;
	font-size: 2.25rem;	/* 36px: 2023.10 KAZ: moved and merged; was 1rem */
	font-weight: 500;
	letter-spacing: 0.1em;
}
.page-title:not(:only-child) {	/* 2023.10 KAZ: moved; was .page-header h1:has(+ p) but this does not work on Firefox */
	padding-top: 30px;
}
.page-header > p,
.page-header > span {	/* 2023.10 KAZ: moved */
	display: block;	/* 2023.10 Aki added */
	line-height: 1.5;
	color: white;
}
/* ぱんくず用 */
#breadcrumbs {
	font-size: 0.75rem;		/* =12px * 16px * 94% * 80% = 12.03px */
	line-height: 1;
	margin: 20px auto;
}
#breadcrumbs a {
	text-decoration: underline;
}


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

/* Author Info */
#author-info {
	font-size: 12px;
	overflow: hidden;
}
.singular #author-info {
	background: #f9f9f9;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	margin: 2.2em -35.6% 0 -35.4%;
	padding: 20px 35.4%;
}
.archive #author-info {
	border-bottom: 1px solid #ddd;
	margin: 0 0 2.2em;
	padding: 0 0 2.2em;
}
#author-avatar {
	float: left;
	margin-right: -78px;
}
#author-avatar img {
	background: #fff;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 1px 2px #bbb;
	-moz-box-shadow: 0 1px 2px #bbb;
	box-shadow: 0 1px 2px #bbb;
	padding: 3px;
}
#author-description {
	float: left;
	margin-left: 108px;
}
#author-description h2 {
	color: #000;
	font-size: 15px;
	font-weight: bold;
	margin: 5px 0 10px;
}

/* Comments link */
.entry-header .comments-link a {
	background: #eee url(/wp-content/themes/matsumoto-tca/images/comment-bubble.png) no-repeat;
	color: #666;
	font-size: 13px;
	font-weight: normal;
	line-height: 35px;
	overflow: hidden;
	padding: 0 0 0;
	position: absolute;
	top: 1.5em;
	right: 0;
	text-align: center;
	text-decoration: none;
	width: 43px;
	height: 36px;
}
.entry-header .comments-link a:focus,
.entry-header .comments-link a:active {
	background-color: #1982d1;
	color: #fff;
	color: rgba(255,255,255,0.8);
}
@media (any-hover: hover) {
	.entry-header .comments-link a:hover {
		background-color: #1982d1;
		color: #fff;
		color: rgba(255,255,255,0.8);
	}
}
.entry-header .comments-link .leave-reply {
	visibility: hidden;
}


/* =error404
----------------------------------------------- */
.error404 .entry-title {	/* MAY-2023 KAZ: added */
	padding: 200px 0;
	text-align: center;
}
.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; Aki c/o */
}
#content div.wp-pagenavi {	/* Aki added */
	display: flex;
	justify-content: center;
	align-items: center;
}
#content nav .pages {	/* Aki added */
	order: 2;
}
#content nav .previouspostslink {	/* Aki added */
	order: 1;
}
#content nav .nextpostslink {	/* Aki added */
	order: 3;
}
#nav-above {
	padding: 0 0 1.625em;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous {
/*	float: left;
	width: 50%; Aki c/o */
}
.nav-next {
/*	float: right;
	text-align: right;
	width: 50%; Aki c/o */
}
#content #nav-single span:not(.nav-top) {
	min-width: 109px;
}
.nav-previous a, .nav-next a {
	display: block;
	color: white;
	background: url(/images/icon_arrow_left.svg) no-repeat center left 30px var(--mtca-green);
	line-height: 55px;
	padding: 0 30px 0 47px;
}
.nav-next a {
	background: url(/images/icon_arrow_right.svg) no-repeat center right 30px var(--mtca-green);
	padding-right: 47px;
	padding-left: 30px;
}
.nav-top a {
}
@media (any-hover: hover) { 
	.nav-previous a:hover, .nav-next a:hover {
		text-decoration: none;
		background-color: var(--mtca-light-green);
	}
}
#content nav .meta-nav {
	font-weight: normal;
}

/* Singular navigation */
#content #nav-single {
	width: var(--mtca-wall-width);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 60px;
	font-weight: 500;
	padding-top: 80px;
	margin: 0 auto;
}

#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;
	color: var(--mtca-green);	/* Aki added */
}
#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: white;
}
#content div.wp-pagenavi a.page,
#content div.wp-pagenavi a.previouspostslink,
#content div.wp-pagenavi a.nextpostslink {
/*	background-color: #d2caba; Aki c/o */
	width: 106px;
	background: url(/images/icon_arrow_right.svg) no-repeat center right 30px var(--mtca-green);
	font-size: 0.875rem;	/* 14px */
	text-align: left;
	line-height: 60px;
	padding-left: 30px;
}
#content div.wp-pagenavi a.previouspostslink {
	background:  url(/images/icon_arrow_left.svg) no-repeat center left 30px var(--mtca-green);
	padding-right: 30px;
	padding-left: 47px;
}
#content div.wp-pagenavi span.current {
	background-color: #42210b;
	color: white;
}
@media (any-hover: hover) {
	#content div.wp-pagenavi a.page:hover,
	#content div.wp-pagenavi a.previouspostslink:hover,
	#content div.wp-pagenavi a.nextpostslink:hover{
		background-color: var(--mtca-light-green);	/* was #42210b */
		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 {
	display: none;	/* 2023.9 Aki */
}
.widget ul {
	margin: 0;
	list-style-type: none;
}
.widget ul ul {
	margin-left: 1.5em;
}

/* Search Widget */
.widget_search form {
	margin: 0 0 1.625em;
}
.widget_search #s {
	width: 77%;
}
.widget_search #searchsubmit {
	background: #ddd;
	border: 1px solid #ccc;
	-webkit-box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.09);
	box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.09);
	color: #888;
	font-size: 13px;
	line-height: 25px;
	position: relative;
	top: -2px;
}
.widget_search #searchsubmit:active {
	background: #1982d1;
	border-color: #0861a5;
	-webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
	color: #bfddf3;
}

/* Widget Image */
.widget_image img {
	border: 0;
	padding: 0;
	height: auto;
	max-width: 100%;
}

/* Calendar Widget */
.widget_calendar #wp-calendar {
	color: #555;
	width: 95%;
	text-align: center;
}
.widget_calendar #wp-calendar caption,
.widget_calendar #wp-calendar td,
.widget_calendar #wp-calendar th {
	text-align: center;
}
.widget_calendar #wp-calendar caption {
	font-size: 11px;
	font-weight: 500;
	padding: 5px 0 3px 0;
	text-transform: uppercase;
}
.widget_calendar #wp-calendar th {
	background: #f4f4f4;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-weight: bold;
}
.widget_calendar #wp-calendar tfoot td {
	background: #f4f4f4;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
#secondary {
	width: var(--mtca-mid-wall-width);
	display: flex;
	justify-content: flex-end;
	gap: 0 16px;
	padding: 10px 0 0;
}
#secondary select {
	font-size: 0.75rem;	/* 12px */
/*	text-align: center; Aki c/o */
	width: 186px;
	height: 44px;
	border-color: var(--mtca-brown);
	padding-left: 40px;
}

/* =Footer
----------------------------------------------- */
#ft_nav_top {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 50%;
	z-index: 9000;
	margin: 0 -600px 0 0;
	opacity: 0;
	z-index: 9000;
}
#ft_nav_top a {
	width: 77px;
	height: 80px;
	background: var(--mtca-green);
	text-align: center;
	padding-top: 19px;
}
#ft_nav_top a img {
}
#colophon {
	clear: both;
	overflow: hidden;
/*	text-align: center; AKi c/o */
	min-height: 651px;	/* 2025.2 Aki was heigt / was 290px */
	color: white;
	background: url(/images/line.svg)repeat-x left bottom 21px, url(/images/bg_castle.png)no-repeat left bottom, url(/images/bg.png);
	padding-top: 38px;
	padding-bottom: 30px;	/* 2025.2 Aki added */
}
#colophon .wall {
	width: var(--mtca-wall-width);
	margin: 0 auto;
}
#ft_logo, #ft_add, #ft_copyright, .ft_menu_wrapper {
	padding-left: 45%;	/* 2025.2 Aki was 49% */
} 
#ft_logo {
	padding-bottom: 10px;
}
#ft_add {
	line-height: 2;
	padding-bottom: 23px;
}
#colophon .ft_menu_wrapper {
}
#colophon .ft_menu_wrapper ul.menu_main {
	width: 248px;
	margin-right: 30px;
}
#colophon .ft_menu_wrapper ul.menu_main li a {
	font-size: 1rem;	/* 16px */
	background-position: center left 10px;
	background-size: 14px auto;
	padding: 23px 0 23px 39px;
}
#colophon ul.menu_main li::before, #colophon ul.menu_main li:last-child::after {
	width: 40px;
}
#colophon .ft_menu_wrapper .menu_right {
	display: block !important;
	overflow: hidden;
}
ul.menu_main > li.linkbtn.contact a,
#colophon .ft_menu_wrapper .linkbtn.contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 10px;
	height: 64px;
	font-size: 1rem;	/* 16px */
	background: var(--mtca-brown);
	padding: 12px 0;
}
ul.menu_main > li.linkbtn.contact a::before,
#colophon .ft_menu_wrapper .linkbtn.contact a::before {
	content:"";
	display: inline-block;
	background: url(/images/icon_contact.svg)no-repeat center /cover;
	width: 40px;
	height: 40px;
}
#searchform {	/* 2023.10 KAZ: ChkHTML */
	overflow: hidden;
}
ul.menu_main > li.linkbtn.contact #searchform,
#searchform input,
#searchform button {	/* 2023.10 KAZ: ChkHTML */
	height: 48px;
}
ul.menu_main > li.linkbtn.contact #searchform {	/* 2023.10 KAZ: ChkHTML */
	background-color: white;
	border-radius: 24px;
	margin: 20px 20px 0;
}
.not-found .entry-content #searchform {	/* 2023.10 KAZ: ChkHTML */
	border: #333 1px solid;
	border-radius: 25px;
	width: 500px;
	height: 50px;
}
#searchform input,
#searchform button {	/* 2023.10 KAZ: ChkHTML */
	background-color: transparent;
	border: 0;
	box-shadow: none;
}
#searchform input {	/* 2023.10 KAZ: ChkHTML */
	width: calc(100% - 60px);
	padding: 12px 0 12px 12px;
	line-height: 24px;
}
#searchform button {	/* 2023.10 KAZ: ChkHTML */
	-webkit-appearance: none;
	appearance: none;
	width: 60px;
	line-height: 0;
	text-align: center;
	vertical-align: top;
}
#searchform button img {	/* 2023.10 KAZ: ChkHTML */
	vertical-align: middle;
}
#colophon .ft_menu_wrapper .menu_right ul > li {
}
#colophon .ft_menu_wrapper .menu_right ul:not(:is(.menu_blank, .menu_child)) {
	float: left;
}
#colophon .ft_menu_wrapper .menu_right ul:not(.menu_child)  {
	padding-top: 30px;	/* 2023.10 KAZ: 1項目増やした; was 50px */
/*	padding-right: 35px; 2023.9 Aki moved */
	padding-left: 0;	/* 2023.8 Aki */
	margin-right: 20px;	/* 2025.2 Aki */
}
#colophon .ft_menu_wrapper .menu_right ul:not(.menu_blank) > li a {
	font-size: 0.875rem;	/* 14px */
	padding-bottom: 23px;
}
#colophon .ft_menu_wrapper .menu_right ul.menu_child > li a {
	line-height: 32px;
	padding: 3px 0 10px 20px;
}
#colophon .ft_menu_wrapper .menu_right ul.menu_blank {
	padding-left: 130px;
}
#colophon .ft_menu_wrapper .menu_right ul.menu_blank > li a {
	font-size: 0.75rem;	/* 12px */
}
#colophon .ft_menu_wrapper .menu_right .sns_wrap {
	clear: both;
	text-align: right;
}
#colophon .ft_menu_wrapper .menu_right .sns_wrap a {
	padding-right: 7px;
}
#ft_copyright {
/*	line-height: 30px;
	height: 30px; Aki c/o */
	padding-top: 23px;	/* 2023.10 KAZ: 1項目増やした; was 35px */
	font-size: 0.75rem;	/* 12px */
	text-align: right;
}




/* Common entries
-------------------------------------------------------------- */
.left {
	text-align: left;
	display: block;	/* Mat added these. If you use these for table, list, etc. and can't cover by the following td.right .., please override these invidually. */
}
.center {
	text-align: center;
	display: block;
}
.right {
	text-align: right;
	display: block;
}
td.right, th.right, td.center, th.center, td.left, th.left {
	display: table-cell;
}
li.right, li.right, li.center {
	display: list-item
}
.middle {
	vertical-align: middle;
}
.imgonly {
	line-height: 0;
}
.imgonly a,
a.imgonly {
	display: inline-block;
}
.bold {
	font-weight: bold;
}
.clear {
	clear: both;
}
a.current img {
	opacity: 0.75;
	filter: alpha(opacity=75);
}
@media (any-hover: hover) {
	.transbtn:hover, a:hover img {
		opacity: 0.75;
		filter: alpha(opacity=75);
	}
	.notransbtn:hover, a:hover img.notransbtn, #headlogo a:hover img, #ft_links a:hover img {
		opacity: 1;
		filter: none;
	}
}
/*.ios .transbtn:hover { */
/* iOS 8.4.1 で :hover に opacity が指定してあると 2 回タップしないとリンク先に飛ばない。script.js でユーザーエージェントを見て body に class="ios" を追加。 */
/*	opacity: 1;
 *	filter: none;
 *}
 */
.nomargin {
	margin: 0 !important;
}
.topbottommargin {
	margin: 20px auto !important;
}
.topmargin {
	margin-top: 60px !important;
}
.topmarginbig {
	margin-top: 80px !important;
}
.notopmargin {
	margin-top: 0 !important;
}
.bottommargin {
	margin-bottom: 20px !important;
}
.bottommarginbig {
	margin-bottom: 60px !important;
}
.nobottommargin {
	margin-bottom: 0 !important;
}
.onlymarginright{
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	margin-left: 0 !important;
}
.onlymarginleft{
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	margin-right: 0 !important;
}
.nopadding {
	padding: 0 !important;
}
.noborder {
	border: 0px !important;
}
.border {
	border: 1px solid gray;
}
.noclear {
	clear: none !important;
}
.nobackground {
	background: transparent none !important;
}
.sponly {	/* スマホ専用のコンテンツ */
	display: none !important;
}
.mincho {
	font-family: "Noto Serif JP", serif;
}
section .wall {
	width: var(--mtca-wall-width);
	margin: 0 auto;
}
section .imgonly img {
	width: 100%;
	height: auto;
}
.linkbtn a {
	display: inline-block;
	color: white;
	font-size: 0.875rem;	/* 14px */
	font-weight: 500;
	text-align: center;
	width: 279px;
	height: 74px;
	background-color: var(--mtca-green);
	padding: 28px 0 25px;
}
.linkbtn:not(.contact) a::after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background: url(/images/icon_arrow_right.svg) no-repeat center / cover;
	margin-left: 0.5em;
}
@media (hover: hover) {
	.linkbtn a:hover {
		text-decoration: none;
		opacity: 0.8;
	}
}
.linkbtn.over a {	/* Aki : for 404 */
	background: var(--mtca-dark-gray);
}
a.ext_link::after {
	content :"";
	display: inline-block;
	width: 14px;
	height: 14px;
	background: url(/images/icon_exlink.svg) no-repeat center / cover;
	margin-left: 10px;
}
a.pdf::after {
	content :"";
	display: inline-block;
	width: 16px;
	height: 20px;
	background: url(/images/icon_pdf.svg) no-repeat center / cover;
	vertical-align: -3px;
	margin-left: 10px;
}

ul.nostyle {
	list-style: none;
	margin: 0;
}
h2 .en {
	color: var(--mtca-brown);
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;	/* 24px */
}
.page-association h2 .en {
	color: var(--mtca-grayblue);	/* 2023.10 KAZ: ChkHTML */
}
.page-convention h2 .en {
	color: var(--mtca-redbrown);	/* 2023.10 KAZ: ChkHTML */
}
h2 .ja {
	display: block;
	color: inherit;
	font-size: 2.25rem;	/* 36px */
}
h2::before {
	content:"";
	display: block;
	background: url(/images/icon_triangle.svg)no-repeat center /cover;
	width: 24px;
	height: 15px;
	margin: 0 auto 8px;
}


/* 遅延表示効果: 2023.10 KAZ
----------------------------------------------- */
section > .wall:not(.no-slide-in),
.slide-from-bottom {	/* script.js 内の $objects のセレクターと同期が必要 */
	/* See also @media print */
	visibility: hidden;
}
.delighter.started {
	animation-duration: 1.5s;
	animation-fill-mode: both;
	animation-name: mtlSlideInFromBottom;
	animation-timing-function: ease;
	visibility: visible !important;
}
@keyframes mtlSlideInFromBottom {
	0% { opacity: 0; transform: translateY(100px); }
	100% { opacity: 1; transform: translateY(0); }
}


/* Nav Menu
----------------------------------------------- */
#nav_menu {
	height: var(--mtca-nav-menu-height);	/* 2023.10 KAZ */
}
#nav_menu ul {	/* 2023.10 KAZ: added ul */
/*	background-color: white; */
	background: url(/images/bg_navmenu.png);	/* Aki */
	display: flex;
	margin: 0;
	padding-right: 150px;	/* #menu_open_btn の幅 */
	padding-left: calc((100% - var(--mtca-wall-width)) / 2);	/* Aki */
	color: var(--mtca-brown);
}
.page-association #nav_menu ul {
	color: var(--mtca-grayblue);	/* 2023.10 KAZ: ChkHTML */
}
.page-convention #nav_menu ul {
	color: var(--mtca-redbrown);	/* 2023.10 KAZ: ChkHTML */
}
#nav_menu.floating ul {	/* 2023.10 KAZ: added ul */
	position: fixed;
	width: 100%;
	min-width: calc(var(--mtca-wall-width) + 40px);
	top: 0;
	left: 0;
	z-index: 9000;
	padding-left: max(calc((100% - var(--mtca-wall-width)) / 2), 20px);	/* 2023.10 KAZ: ウィンドウ幅が狭く横スクロールが必要な場合のために max(..., 20px) を追加 (min-padding-left) */
}
.admin-bar #nav_menu.floating ul {	/* 2023.10 KAZ: added ul */
	top: var(--wp-admin-bar-height);
}
#nav_menu ul li {
	list-style-type: none
}
#nav_menu ul li a {
	display: block;
	height: var(--mtca-nav-menu-height);	/* 2023.9 KAZ: was 78px */
	color: inherit;
	font-weight: 600;	/* Aki */
	padding: 28px 25px 0;
	position: relative;	/* Aki */
}
#nav_menu ul li:is(.fortour, .studytrip) a {	/* 2023.10 KAZ: was :is(:nth-child(4), :nth-child(5)) */
/*	color: white;
	background-color: var(--mtca-brown); 2023.10 Aki */
}
#nav_menu ul li.fortour a {	/* 2023.10 KAZ: was li:nth-child(4) */
/*	border-right: solid 1px white; 2023.10 Aki c/o */
}
#nav_menu ul li.video a {
	padding-top: 18px;	/* 2023.9 KAZ */
}
#nav_menu ul li.external a::after {	/* 2023.10 KAZ: was li:last-child */
	content: url(/images/icon_blank_brown.svg);
	display: inline-block;
	margin-left: 9px;
}
#nav_menu ul li a:is(:hover, .current) {
	text-decoration: none;
}
@media (any-hover: hover) {
	#nav_menu ul li.external a:hover {	/* 2023.10 KAZ: was li:last-child */
		opacity: 0.8;
	}
	#nav_menu ul li:not(.external) a:hover::after {	/* 2023.10 KAZ: was li:not(:last-child) */
		content: "";
		background-color: var(--mtca-brown);
		display: block;
		position: absolute;
		width: 99%;
		height: 4px;
		bottom: 1px;
		left: 50%;
		transform: translatex(-50%);
	}
	.page-association #nav_menu ul li:not(.external) a:hover::after {
		background-color: var(--mtca-grayblue);	/* 2023.10 KAZ: ChkHTML */
	}
	.page-convention #nav_menu ul li:not(.external) a:hover::after {
		background-color: var(--mtca-redbrown);	/* 2023.10 KAZ: ChkHTML */
	}
	#nav_menu ul li:is(.fortour, .studytrip) a:hover::after {	/* 2023.10 KAZ: was :is(:nth-child(4), :nth-child(5)) */
	/*	background-color: white; 2023.10 AKi c/o */
	}
	#nav_menu ul li:not(.external) a[href^="#"]:hover::after {	/* 2023.10 KAZ: added */
		content: url(/images/arrow_down_brown.svg);
		background-color: transparent;
		height: auto;
		bottom: 8px;
		left: 0;
		line-height: 0;
		text-align: center;
		transform: none;
	}
	.page-association #nav_menu ul li:not(.external) a[href^="#"]:hover::after {
		content: url(/images/arrow_down_grayblue.svg);	/* 2023.10 KAZ: ChkHTML */
	}
	.page-convention #nav_menu ul li:not(.external) a[href^="#"]:hover::after {
		content: url(/images/arrow_down_redbrown.svg);	/* 2023.10 KAZ: ChkHTML */
	}
}
#nav_menu ul li a.current::after {
	content: "";
	display: block;
	width: 99%;
	height: 4px;
	background-color: var(--mtca-brown);
	position: absolute;
	bottom: 1px;
	left: 50%;
	transform: translatex(-50%);
}
.page-association #nav_menu ul li a.current::after {
	background-color: var(--mtca-grayblue);	/* 2023.10 KAZ: ChkHTML */
}
.page-convention #nav_menu ul li a.current::after {
	background-color: var(--mtca-redbrown);	/* 2023.10 KAZ: ChkHTML */
}
#nav_menu ul li:is(.fortour, .studytrip) a.current::after {	/* 2023.10 KAZ: was :is(:nth-child(4), :nth-child(5)) */
/*	background-color: white; 2023.10 Aki c/o */
}


/* Blog Page Components
----------------------------------------------- */
:is(#my-blog, #my-search) article:is(.list, .single) {	/* 2023.10 KAZ: ChkHTML; #my-search */
	width: var(--mtca-mid-wall-width);
	background: url(/images/line_blog.svg)repeat-x top left;
	margin: 0 auto;
}
#my-blog article:is(.list, .single) {
	padding: 36px 0 64px;
}
#my-blog .page-header,	/* 2023.10 KAZ: was #masthead */
#my-search .page-header {	/* 2023.10 KAZ: ChkHTML */
	background: url(/images/ashirai_brown.png) repeat left top;	/* !important */
}
#my-blog article header :is(.blogdate, .categories) {
	font-size: 0.875rem;	/* 14px */
}
#my-blog article header .blogdate {
	float: left;
	padding-right: 1em;
}
#my-blog article header .categories ul {
	list-style: none;
	display: flex;
	margin: 0;
}
#my-blog article header .categories ul > li {
}
#my-blog article header .categories ul > li:not(:last-child)::after {
	content: ",";
	display: inline-block;
	margin-right: 5px;
}
#my-blog article header .categories ul > li	a {
/*	font-size: 1rem; Aki c/o */
	padding-right: 0;
}
:is(#my-blog, #my-search) article header .entry-title {	/* 2023.10 KAZ: ChkHTML; #my-search */
	clear: both;
	color: var(--mtca-green);
	font-size: 2.25rem;	/* 36px */
	background: url(/images/line.svg) repeat-y;
	padding-left: 20px;
	margin-top: 30px;
}
#my-blog .entry-content,
#my-search .entry-summary {	/* 2023.10 KAZ: ChkHTML */
	line-height: 2;
	padding-top: 10px !important;
}

p.nocomments {
	width: var(--mtca-mid-wall-width);
	font-size: 0.75rem;	/* 12px */
	margin: 0 auto;
	display: none;	/* Aki */
}
#my-blog section.entry-content .wall {
	width: auto;
}

/* 2026.2 Aki added for Event table */
table.event_table {
	border-color: var(--mtca-dark-gray);
	margin-top: 50px;
}
.event_table :is(th, td) {
	border-top: solid 1px var(--mtca-dark-gray);
	padding-top: 5px;
	padding-bottom: 5px;
}
.event_table th {
	width: 180px;
}
.event_table .note {
	padding-left: 0.25rem;
}
.event_table .start_note {
	padding-left: 0.2rem;
	padding-right: 0.2rem;
}

/* Front Page Components
----------------------------------------------- */
#top_mainvisual,
#top_menu,
#slideshow,
#ss_img_wrapper,
#ss_img_wrapper .ss_img,
#ss_panel {
	height: calc(var(--viewheight) - var(--mtca-nav-menu-height));	/* 2023.10 KAZ: was 642px */
	min-height: 930px;	/* 2026.05 KAZ: was 674px; 2023.10 KAZ */
}
.pc.admin-bar #top_mainvisual,
.pc.admin-bar #top_menu,
.pc.admin-bar #slideshow,
.pc.admin-bar #ss_img_wrapper,
.pc.admin-bar #ss_img_wrapper .ss_img,
.pc.admin-bar #ss_panel {
	height: calc(var(--viewheight) - var(--mtca-nav-menu-height) - var(--wp-admin-bar-height));	/* 2023.10 KAZ */
}
#top_mainvisual {
}
#top_menu {
/*	background-color: var(--mtca-text-color); */
	background: url(/images/bg_mv_sidemenu.png);	/* Aki */
	position: relative;	/* 2023.10 KAZ */
	float: right;
	width: 243px;
	color: white;
}
#top_menu a {
	color: inherit;
}
#top_menu #top_logo {
	background-color: var(--mtca-green);
	height: 257px;	/* Aki was 170px */
	text-align: center;	/* Aki */
	padding-top: 16px;	/* Aki */
}
#top_menu .sns_wrap, #top_menu .menu_item {
	border-bottom: solid 1px var(--mtca-dark-gray);
}
#top_menu .menu_item, #top_menu ul.ext_links {
	padding-left: 16px;
}
#top_menu .sns_wrap {
	text-align: center;
	padding: 25px 0 20px;
}
#top_menu .sns_wrap a {
	margin: 0 4px;
}
#top_menu .menu_item {
	line-height: 64px;
	background: url(/images/arrow_right.svg) no-repeat center right 18px /14px auto;
}
#top_menu .menu_item a {
	display: block;
}
#top_menu ul.ext_links {
	position: absolute;	/* 2023.10 KAZ */
	bottom: 0;	/* 2023.10 KAZ */
	left: 0;	/* 2023.10 KAZ */
	margin: 0;
	padding: 20px 16px;	/* 2023.10 KAZ: was padding-top: 20px */
	font-size: 0.875rem;	/* 14px */
}
#top_menu ul.ext_links li {
	list-style-type: none;
	line-height: 1.571;
}
#top_menu ul.ext_links li:not(:last-child) {
	padding-bottom: 10px;
}
#top_menu ul.ext_links li a::after,
#ss_img_wrapper .ss_img .link .linkbtn::after {	/* 2023.10 KAZ: ChkHTML; was a.linkbtn */
	content: "";
	display: inline-block;
	background: url(/images/icon_blank.svg) no-repeat center /cover;
	width: 12px;
	height: 12px;
	margin-left: 9px;
}
#top_menu .jsts {	/* 2026.5 Aki added */
	width: 100%;
/*	margin-top: 20px; */	/* KAZ: c/o */
}
#top_menu .jsts img,
#headmenu .menu_right .jsts img {	/* 2026.5 Aki added */
	max-width: 100%;
}
#top_menu .jsts a::after {	/* 2026.5 Aki added */
	content: none !important;
}

#slideshow {
	position: relative;
	margin-right: 243px;
}
#ss_img_wrapper {
	position: relative;
}
#ss_img_wrapper .ss_img,
#ss_img_wrapper .ss_img .caption,
/* #ss_img_wrapper .ss_img .link, */	/* 2023.10 KAZ: c/o */
#ss_panel {
	position: absolute;
}
#ss_img_wrapper .ss_img {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -9999;
}
#ss_img_wrapper .ss_img#ss1 {
	z-index: 0;
}
#ss_img_wrapper .ss_img .caption {
/* #ss_img_wrapper .ss_img .link, */	/* 2023.10 KAZ: c/o */
	bottom: 32px;
}
#ss_img_wrapper .ss_img .caption {
/*	background-color: var(--mtca-text-color); */
/*	background: url(/images/line.svg) repeat-x top left, url(/images/bg.png) repeat; */	/* 2023.10 KAZ: moved to ::before; Aki */
	width: 640px;	/* Aki was 53.24% */
/*	padding: 38px 30px 35px 57px; */	/* 2023.10 KAZ: moved to .inner; Aki */
	left: 0;
	line-height: 1.5;	/* Aki */
	color: white;
/*	font-size: 2.25rem;	/* 36px 2023.8 Aki:大きすぎるためc/o */
}
#ss_img_wrapper .ss_img .caption::before {	/* 2023.10 KAZ */
	background: url(/images/line.svg) repeat-x top left, url(/images/bg.png) repeat;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: '';
}
#ss_img_wrapper .ss_img .caption .inner {	/* 2023.10 KAZ */
	position: relative;
	padding: 38px 30px 15px 50px;	/* 2013.10 KAZ: moved; left was 57px bottom was 35px */
}
#ss_img_wrapper .ss_img .caption .inner .ttl {
	display: block;
	font-size: 1.5rem;	/* 24px */
	font-weight: 600;
	padding-bottom: 10px;
}
#ss_img_wrapper .ss_img .link {
	/* 2023.10 KAZ: revised completely; moved inside .caption */
/*	right: 32px; */
	background-color: white;
	display: block;	/* 2023.10 Aki was inline-block */
	position: relative;	/* 2023.10 KAZ */
	float: right;
/*	margin-top: 4px; 2023.10 Aki */
	margin: 10px;
}
#ss_img_wrapper .ss_img .link .linkbtn {	/* 2023.10 KAZ: ChkHTML; was a.linkbtn */
	background-color: var(--mtca-green);
	display: block;
/*	position: relative; */	/* 2023.10 Aki */
/*	width: 194px; */	/* Aki */
/*	padding: 0 0.5em; */	/* 2023.10 KAZ: revised; moved inside .caption */
	padding: 10px 15px;	/* Aki */
/*	line-height: 78px; */	/* Aki */
	color: white;
	font-size: 0.875rem;	/* 2023.10 KAZ: revised; moved inside .caption */
	text-align: center;	/* Aki */
	text-decoration: none;
}
@media (hover: hover) {
	#ss_img_wrapper .ss_img .link .linkbtn:hover {	/* 2023.10 KAZ: ChkHTML; was a.linkbtn */
		opacity: 0.8;
	}
}
#ss_panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 24px;
	top: 0;
	right: 25px;	/* 32 - 7 */
	z-index: 100;
	line-height: 0;
}
#ss_panel a {
	display: block;
	padding: 7px;
}
#ss_panel a span.square {
	border: white 2px solid;
	background-color: white;
	display: inline-block;
	width: 10px;
	height: 10px;
}
#ss_panel a.current span.square {
	background-color: var(--mtca-brown);
}
@media (any-hover: hover) {
	#ss_panel a:hover span.square {
		background-color: var(--mtca-brown);
	}
}

#topmain #mainwall {
	background: url(/images/bg_opacity.png);
}
#my-top section {
	padding-bottom: 60px;
}
#my-top section h2 {
	text-align: center;
	padding-bottom: 45px;
}
#my-top section .linkbtn {
	text-align: right;
}
#my-top section .linkbtn a {
	font-size: 1rem;	/* 16px */
}
#my-top section#top_emergency {
	background: url(/images/bg_emergency.png);
	padding-bottom: 0;
}
#top_emergency .wrap {
	padding: 24px 0;
}
#top_emergency .wrap a, #top_emergency .title {
	display: flex;
	align-items: center;
}
#top_emergency .wrap a {
	color: white;
	font-size: 1.25rem;	/* 20px */
}
#top_emergency .title {
	gap: 0 80px;
	padding-left: 32px;
}
#top_emergency .title::after {
	content: "";
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url(/images/icon_emergency.svg)no-repeat center /cover;
}
#top_banner {	/* 2024.7 KAZ: was #my-top section#top_news */
	padding-top: 64px;
	text-align: center;
}
#top_banner a.banner_link {	/* 2024.7 KAZ */
	width: 970px;
}
#top_banner a.banner_link img {	/* 2024.7 KAZ */
	max-width: 100%;
}
@media (any-hover: hover) {
	#top_banner a.banner_link:hover img {	/* 2024.7 KAZ */
		opacity: 1;
	}
}
#top_news {
	padding-top: 64px;	/* 2025.3 KAZ: re-in */
}
#top_news ul.news_list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 78px;	/* 2023.8 KAZ: was 30px 78px */
	margin-bottom: 56px;	/* 2023.8 KAZ */
}
#top_news ul.news_list li {
	position: relative;
	width: 314px;
}
#top_news ul.news_list li .photo {
	width: 100%;
	height: auto;
	line-height: 0;
}
#top_news ul.news_list li .photo a {	/* 2023.8 KAZ */
	display: block;
}
#top_news ul.news_list li .photo a img {	/* 2023.8 KAZ */
	width: 100%;
	height: 210px;
	object-fit: cover;
	object-position: center top;	/* 2023.11 KAZ: added */
}
#top_news ul.news_list li .category {
	background: url(/images/line.svg) repeat-y #333333;
	display: inline-block;
	position: absolute;
	top: 0;		/* 2023.11 KAZ: was 11px */
	left: -8px;
	padding: 0 14px 0 18px;
	line-height: 30px;	/* 2023.11 KAZ: was 40px */
	color: white;
}
#top_news ul.news_list li .pickup_marker {	/* 2023.8 KAZ */
	background: var(--mtca-pickup-bgcolor) url(/images/icon_pickup.svg) no-repeat 10px center;
	border-radius: 16px;
	float: right;
	width: 90px;
	height: 32px;
	line-height: 30px;
	margin-top: 14px;
	padding-left: 15px;
	color: white;
	font-size: 0.875rem;	/* 14px */
	text-align: center;
}
#top_news ul.news_list li .date {
	font-size: 0.875rem;	/* 14px */
	padding: 20px 0;
}
#top_news ul.news_list li .title {
	font-size: 1.5rem;	/* 24px */
	padding-bottom: 10px;
}
#top_news ul.news_list li .excerpt {
	line-height: 2;
}
#top_news ul.news_list li a div:is(.date, .excerpt) {
	color: initial;
}
#top_news ul.news_list li a:hover {
	text-decoration: none;
}
#my-top section#top_news .link_wrap {
	display: flex;
	justify-content: flex-end;
	gap: 0 15px;
}

#top_instagram {
}
#top_instagram p {
	color: var(--mtca-brown);
	text-align: center;
	font-weight: 500;
	margin-top: -25px;
}
#top_instagram .instagram_link {
	 color: inherit;
}
<?php /* MTL Mac 2024.4.19 matsumoto_kanko changed color back */ ?>
#top_instagram #sb_instagram {
	width: auto !important;	/* KAZ */
	margin: 47px -1px 45px;	/* KAZ */
}
#top_instagram .linkbtn a::after {
	background-image: url(/images/icon_blank.svg);
}
#my-top section#top_matsumoto {
	background: var(--mtca-exlight-green);
	padding: 50px 0;
}
#top_matsumoto .wrap {
	float: right;
	width: 424px;
	padding-left: 51px;
}
#my-top section#top_matsumoto h2 {
	display: inline-block;
	text-align: left;
	padding: 40px 0 30px;
}
#top_matsumoto h2::before {
	content: none;
}
#top_matsumoto h2 .en {
	color: var(--mtca-green);
}
#top_matsumoto p {
	line-height: 2.5;
}
#top_matsumoto .imgonly {
	width: 676px;
}
#top_youtube {
	background: url(/images/bg_washi.png)repeat;
	padding-top: 60px;
}
#top_youtube ul {
}
#top_youtube ul > li {
	display: flex;
	margin-bottom: 48px;
}
#top_youtube ul > li .wrap {
	width: 542px;
	padding-right: 64px;
}
#top_youtube ul > li a {
	display: block;
	color: inherit;
}
#top_youtube ul > li a, #top_youtube ul > li h3 {
	color: var(--mtca-brown);
}
#top_youtube ul > li p.id {
	font-size: 0.875rem;	/* 14px */
}
#top_youtube ul > li h3 {
	font-size: 1.5rem;	/* 24px */
	padding: 15px 0;
}
#top_youtube ul > li p {
	line-height: 2;
}
#top_youtube ul > li iframe {
	width: 558px;
	height: auto;
	aspect-ratio: 16/9;
}
#top_youtube ul.en {
}
#top_youtube .status {
	letter-spacing: inherit;
	padding: 0 9px;
	margin-bottom: 25px;
}
#top_youtube hr {
	margin-bottom: 48px;
}


/* Fixed Page Components
----------------------------------------------- */
#my-404 section h2 {
	text-align: center;
	padding: 150px 0;
}
#my-404 section .wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
}
article:is(.list, .single) h2::before,
:is(#my-studytrip, #my-memberlist, #my-facilitylist) h2::before {
	content: none;
}
body:not(#my-top) .entry-content, #my-blog #content {
	padding-top: 30px;	/* 2023.10 Aki was 60px */
}

/*  Contact Page Components
----------------------------------------------- */
#contact_message .wall {
	width: var(--mtca-mid-wall-width);
}
#contact_message p {
	text-align: center;
}
#contactform {
}
#contactform .required {
	color: white;
	font-size: 0.75rem;	/* 12px */
	font-weight: 600;
	background: red;
	padding: 0 5px 2px;
	margin-left: 10px;
}
#contactform .notice {
	display: block;
	color: red;
	font-size: 0.75rem;	/* 12px */
}
#contactform .wrap {
	font-size: 0.875rem;	/* 14px */
	border: solid 1px var(--mtca-exlight-green);
	background-color: var(--mtca-exlight-green);
	padding: 20px 20px 0;
}
#contactform .accept_line {
	text-align: center;
	padding: 20px;
}
section:is(#contact_message, #contactform) table {
	border-collapse: separate;
	border-spacing: 5px;
	border-bottom: 0;
}
section:is(#contact_message, #contactform) table :is(th, td) {
	padding: 10px;
}
section:is(#contact_message, #contactform) table :is(th, td) p {
	margin-bottom: 0;
}
section:is(#contact_message, #contactform) table th {
	width: 350px;
	background-color: var(--mtca-beige);
}
#contact_message table th {
	width: 250px !important;
}
section:is(#contact_message, #contactform) table td {
	border: 0;
}
#contactform :is(input[type=text], input[type=password], input[type=email], input[type=url], input[type=number], textarea, select) {
	width: 100%;	/* 2023.10 Aki */
	padding: 10px;
}
#contactform :is(input[type=button], input[type=submit]) {
	color: white;
    font-weight: 500;
    text-align: center;
    width: 279px;
    height: 74px;
    background-color: var(--mtca-green);
	border: 0;
    padding: 28px 0 25px;
}
@media (hover: hover) {
	#contactform :is(input[type=button], input[type=submit]):hover {
		opacity: 0.8;
	}
}
.wpcf7 form.sent .wpcf7-response-output {
	width: var(--mtca-wall-width);
	border-color: var(--mtca-green);
	text-align: center;
	margin: 0 auto;
}

/*  Child Page Components Common
----------------------------------------------- */
/*-----
 * 2023.10 KAZ: moved above and some merged into above
body:not(:is(#my-tourexp, #my-tourexp_category, #my-studytrip, #my-studytrip_category)) .page-header h1 {
	font-size: 2.25rem;	/ * 36px * /
	padding: 60px 0 15px;
	margin-bottom: 0;
}
body:not(:is(#my-tourexp, #my-tourexp_category, #my-studytrip, #my-studytrip_category)) .page-header h1:has(+ p) {
	padding-top: 30px;
}
body:not(:is(#my-tourexp, #my-tourexp_category, #my-studytrip, #my-studytrip_category)) .page-header p {
	color: white;
	line-height: 1.5;
}
-----*/
body:not(#my-top, #my-studytrip, #my-tours, #my-tourexp) #content section h2,	/* 2023.12 KAZ: #my-tours */
#my-tours #content #fortour_travel h2 {	/* 2023.12 KAZ: added */
	text-align: center;
	margin-bottom: 20px;
}
body:not(#my-top, #my-studytrip) :is(.entry-content, #content) section h3 {
	color: var(--mtca-green);
	font-size: 1.5rem;	/* 24px */
	text-align: left;
	background: url(/images/icon_dot.svg) no-repeat top 5px left;
	border-bottom: solid 1px;
	padding: 0 0 16px 44px;
	margin-bottom: 30px;
}
body:not(#my-top) .entry-content section h3 a {
	color: var(--mtca-green);
}
body:not(#my-top) .entry-content section {
	padding-bottom: 50px;	/* 2023.10 Aki was 65px */
}


/*  Tourexp, Studytrip, Tic & Fortour Page Components
----------------------------------------------- */
:is(#my-tours, #my-tourexp, #my-tourexp_category, #my-studytrip, #my-studytrip_category, #my-tic, #my-fortour) .page-header {	/* 2023.12 KAZ: #my-tours */
	background: url(/images/mv_default.jpg) no-repeat center / cover;
	width: 100%;
	height: 700px;
	padding-top: 220px;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category, #my-studytrip, #my-studytrip_category, #my-tic, #my-fortour) .page-title {	/* 2023.12 KAZ: #my-tours; 2023.10 KAZ: was h1.page-title */
	background: url(/images/line.svg) repeat-x top left, url(/images/bg.png) repeat;
	width: 585px;	/* 2023.10 KAZ: ChkHTML; was 42.85% */
	margin: 0;	/* 2023.10 KAZ: added */
	padding: 38px 30px 35px 133px;	/* 2023.10 KAZ: ChkHTML; was left calc((100% - var(--mtca-wall-width)) / 2) */
	font-size: 1rem;	/* 2023.10 KAZ: added */
	letter-spacing: initial;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category, #my-studytrip, #my-studytrip_category, #my-tic, #my-fortour) .page-title span,	/* 2023.12 KAZ: #my-tours; 2023.10 KAZ: was h1.page-title */
#fortour_studytrip .content h2 span {	/* 2023.10 KAZ: added */
	display: block;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category, #my-studytrip, #my-studytrip_category, #my-tic, #my-fortour) .page-title .en,	/* 2023.12 KAZ: #my-tours; 2023.10 KAZ: was h1.page-title */
#fortour_studytrip .content h2 .en {	/* 2023.10 KAZ: added */
	color: var(--mtca-brown);
	font-size: 1.25rem;	/* 20px */
	font-weight: 600;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category, #my-studytrip, #my-studytrip_category, #my-tic, #my-fortour) .page-title .ja,	/* 2023.12 KAZ: #my-tours; 2023.10 KAZ: was h1.page-title */
#fortour_studytrip .content h2 .ja {	/* 2023.10 KAZ: added */
	color: white;
	font-size: 2.25rem;	/* 36px */
	padding: 13px 0 25px;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category, #my-studytrip, #my-studytrip_category, #my-tic, #my-fortour) .page-title .text,	/* 2023.12 KAZ: #my-tours; 2023.10 KAZ: was h1.page-title */
#fortour_studytrip .content .text {	/* 2023.10 KAZ: added */
	color: white;
	line-height: 2;
}


/* Tourexp & Studytrip Page Components
----------------------------------------------- */
#my-tourexp.single .page-header .page-title {
	width: auto;
	background: url(/images/bg.png) repeat;
	padding-bottom: 0;
}
#my-tourexp.single .page-header .page-title .ja {
	padding: 0;
}
#my-tourexp.single .page-header .page-title .text {
}
article.list, /* article.single, */
:is(#my-studytrip, #my-memberlist, #my-facilitylist) .entry-content,
#my-studytrip section#studytrip_pdf {
	clear: both;
	overflow: hidden;
	width: var(--mtca-wall-width);
	margin: 0 auto;
}
:is(#my-memberlist, #my-facilitylist) .categories_wrap ul {	/* 2023.9 Aki added #my-memberlist, #my-facilitylist */
	margin-bottom: 63px;
}
.categories_wrap ul {
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0;
}
.categories_wrap ul > li a {
	display: block;
	color: inherit;
	line-height: 42px;
	font-weight: 500;
	border-left: solid 1px var(--mtca-light-green);
	padding: 0 21px;
}
.categories_wrap ul > li:last-child a {
	border-right: solid 1px var(--mtca-light-green);
}
.categories_wrap ul > li a::before,
#my-tours #tours_menu a::before {	/* 2023.12 KAZ */
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(/images/icon_arrow_down.svg) no-repeat center / cover;
	vertical-align: middle;
	margin-right: 9px;
}
:is(#tourexp_detail, .entry-wrapper) dd a.gmap {
	display: inline-block;
	font-size: 0.875rem;	/* 14px */
	font-weight: 500;
	background: url(/images/icon_mappin.svg) no-repeat center left;
	padding-left: 20px;
	margin-left: 20px;
}


/* Tourexp Page Components
----------------------------------------------- */
:is(#my-tours, #my-tourexp) .page-header {	/* 2023.12 KAZ: #my-tours */
	background-image: url(/images/mv_tourexp.jpg);
}
/* archive */
#my-tours #tours_menu {	/* 2023.12 KAZ */
	width: var(--mtca-wall-width);
	margin: 0 auto;
	text-align: right;
}
#my-tours #tours_menu a {	/* 2023.12 KAZ */
	display: inline-block;
	color: inherit;
	font-weight: 500;
}
#my-tours #tours_menu a::before {	/* 2023.12 KAZ */
	/* See also .categories_wrap ul > li a::before */
	vertical-align: -2px;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list {	/* 2023.12 KAZ: #my-tours */
	padding-top: 60px;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list .entry-title,	/* 2023.12 KAZ: #my-tours */
#my-tourexp article.single .entry-content h2 {
	color: var(--mtca-green);
	background: url(/images/line.svg) repeat-y;
	font-size: 1.5rem;
	text-align: left;
	line-height: 1.5;
	font-weight: 500;
	padding: 0 0 0 20px;
	margin: 20px 0 25px;
}
 .status,
article header .status {
	display: inline-block;
	min-width: 82px;
	color: white;
	background: #333333;
	border-left: solid 4px var(--mtca-brown);
	border-right: solid 4px var(--mtca-green);
	text-align: center;
	font-weight: 500;
	line-height: 28px;
	letter-spacing: 0.2em;
	padding-left: 0.2em;
}
article header .status:is(.over, .neither) {
	color: white;
	background: #c3c3c3;
	border: 0;
/*	padding: 0 14px; Aki c/o */
}
article header .status.neither {
	display: none;
}
article header .categories, article header .categories a {
	font-size: 0.875rem;	/* 14px */
}
article header .categories a {
	display: inline-block;
	color: initial;
	padding-right: 10px;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list header,	/* 2023.12 KAZ: #my-tours */
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list .wrapper {	/* 2023.12 KAZ: #my-tours */
	float: left;
	width: 50%;
	padding-right: 60px;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list .wrapper {	/* 2023.12 KAZ: #my-tours */
	clear: left;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list .wrapper .entry-introduction {	/* 2023.12 KAZ: #my-tours */
	line-height: 2;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list .entry-movie .movieonly,	/* 2023.12 KAZ: #my-tours */
#my-tourexp article.single #tourexp_movie .movieonly,
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list .entry-movie .imgonly {	/* 2023.12 KAZ: #my-tours */
	overflow: hidden;
	width: 50%;
	height: auto;
	aspect-ratio: 16/9;
	margin-bottom: 20px;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list .entry-movie .imgonly {	/* 2023.12 KAZ: #my-tours */
	aspect-ratio: inherit;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list .entry-movie img {	/* 2023.12 KAZ: #my-tours */
	width: 100%;
	height: 100%;
	object-fit: cover;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list .entry-movie iframe,	/* 2023.12 KAZ: #my-tours */
#my-tourexp article.single  #tourexp_movie iframe,
#my-studytrip section .entry-wrapper .entry-movie :is(iframe, img) {
	width: 100%;
	height: 100%;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list .linkbtn {	/* 2023.12 KAZ: #my-tours */
	float: right;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list .linkbtn a {	/* 2023.12 KAZ: #my-tours */
}
:is(#my-tours, #my-tourexp, #my-tourexp_category, #my-studytrip) :is(.entry-detail, #tourexp_detail) dl {	/* 2023.12 KAZ: #my-tours */
	margin-bottom: 0;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category, #my-studytrip) :is(.entry-detail, #tourexp_detail) dt {	/* 2023.12 KAZ: #my-tours */
	float: left;
	min-width: 82px;
	background-color: var(--mtca-beige);
	text-align: center;
	font-weight: 400;
	line-height: 28px;
	padding: 2px 0;	/* Aki added */
}
:is(#my-tours, #my-tourexp, #my-tourexp_category, #my-studytrip) :is(.entry-detail, #tourexp_detail) dd {	/* 2023.12 KAZ: #my-tours */
	overflow: hidden;
	white-space: pre-wrap;
	line-height: 2;
	margin-bottom: 12px;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list .entry-detail {	/* 2023.12 KAZ: #my-tours */
	padding-top: 20px;
}
:is(#my-tours, #my-tourexp, #my-tourexp_category) article.list .entry-detail dd,	/* 2023.12 KAZ: #my-tours */
#my-studytrip .entry-detail dd {
	margin-left: 100px;
}
#my-tours #fortour_travel .wall {	/* 2023.12 KAZ */
	padding-top: 80px;
}

/* single */
#my-tourexp article.single {
	padding-top: 45px;
}
#my-tourexp article.single header,
#my-tourexp article.single .wall, #my-tourexp article.single #tourexp_pdf {
	width: var(--mtca-mid-wall-width);
	margin: 0 auto;
}
#my-tourexp article.single header {
	background: url(/images/line.svg) repeat-x;
	padding: 40px 0;
}
#my-tourexp article.single header .entry-title {
	color: var(--mtca-green);
	font-size: 2.25rem;	/* 36px */
	background: url(/images/line_long.svg) repeat-y left center;
	line-height: 1.45;	/* was 1.5 bgが途中で途切れないようにするため */
	padding-left: 20px;
	margin: 20px 0;
}
#my-tourexp article.single header .entry-title::before {
/*	content: "";
	display: inline-block;
	width: 8px;
	height: 32px;
	background: url(/images/line.svg) repeat-y;
	margin-right: 10px; Aki c/o */
}
#my-tourexp article.single header .place {
}
#my-tourexp article.single header .place span {
	display: inline-block;
	width: 82px;
	text-align: center;
	line-height: 28px;
	background: var(--mtca-beige);
	margin-right: 20px;
}
#my-tourexp article.single #tourexp_movie .movieonly, #my-tourexp article.single #tourexp_movie .imgonly {
	width: 760px;
	margin: 0 auto 40px;
}
#my-tourexp article.single #tourexp_movie .imgonly img {
	width: 100%;
	height: auto;
}
#my-tourexp article.single #tourexp_introduction {
	line-height: 2;
	padding-bottom: 40px;
}
#my-tourexp article.single #tourexp_pdf,
#my-studytrip #studytrip_pdf {
	background: url(/images/bg_pdf.png);
	display: flex;
	justify-content: center;
	gap: 0 90px;
	padding: 63px 0;
}
#my-tourexp article.single #tourexp_pdf h2 .en, #my-tourexp article.single #tourexp_pdf h2 .ja,
#my-studytrip #studytrip_pdf h2 .en, #my-studytrip #studytrip_pdf h2 .ja {
	display: block;
}
#my-tourexp article.single #tourexp_pdf h2 .en,
#my-studytrip #studytrip_pdf h2 .en {
	color: var(--mtca-brown);
	font-size: 1.25rem;	/* 20px */
}
#my-tourexp article.single #tourexp_pdf h2 .ja,
#my-studytrip #studytrip_pdf h2 .ja {
	font-size: 1.5rem;	/* 24px */
	padding: 15px 0;
}
#my-tourexp article.single #tourexp_pdf .thumbnail {
}
#my-tourexp article.single #tourexp_pdf .thumbnail img {
}
#my-tourexp article.single #tourexp_pdf .content {
}
#my-tourexp article.single #tourexp_pdf h3 {
}
#my-tourexp article.single #tourexp_pdf ul {
}
#my-tourexp article.single .entry-content {
}
#my-tourexp article.single .entry-content h2 {
	margin-top: 0;	/* Aki was 50px */
}
#my-tourexp article.single .entry-content p {
	line-height: 2;
}
#my-tourexp #tourexp_detail {
	padding: 40px 0;
}
#my-tourexp #tourexp_detail dt {
	width: 132px;
}
#my-tourexp #tourexp_detail dd {
	margin-left: 150px;
}
#my-tourexp #tourexp_detail dd.price p {
	margin-bottom: 0;
}

/* Studytrip Page Components : archive only
----------------------------------------------- */
#my-studytrip .page-header {
	background-image: url(/images/mv_studytrip.jpg);
}
#my-studytrip .entry-content {
	padding-top: 40px;
}
#my-studytrip .categories_wrap ul {
	margin-bottom: 20px;
}
#my-studytrip .linkbtn.studytrip {
	text-align: center;
	margin-bottom: 63px;
}
:is(#my-studytrip, #my-memberlist, #my-facilitylist) .categories_wrap h2 {	/* 2023.9 Aki added #my-memberlist, #my-facilitylist */
	text-align: center;
}
:is(#my-studytrip, #my-memberlist, #my-facilitylist) .categories_wrap h2 .en {	/* 2023.9 Aki added #my-memberlist, #my-facilitylist */
	display: block;
	color: var(--mtca-brown);
	font-size: 1.25rem;	/* 20px */
	padding-bottom: 10px;
}
:is(#my-studytrip, #my-memberlist, #my-facilitylist) .categories_wrap h2 .ja {	/* 2023.9 Aki added #my-memberlist, #my-facilitylist */
	font-size: 1.5rem;	/* 24px */
}
:is(#my-studytrip, #my-memberlist, #my-facilitylist) .entry-content section {	/* 2023.9 Aki added #my-memberlist, #my-facilitylist */
	padding-bottom: 10px;	/* 2023.10 Aki was 30px */
}
#my-studytrip section:not(:is(#studytrip_map, #studytrip_pdf)) h2 {
	color: var(--mtca-green);
	font-size: 1.5rem;	/* 24px */
	text-align: left;
	background: url(/images/icon_dot.svg) no-repeat top 5px left;
	border-bottom: solid 1px;
	padding: 0 0 16px 44px;
	margin-bottom: 30px;
}
#my-studytrip #studytrip_map h2 {
	text-align: center;
	margin-bottom: 20px;
}
#my-studytrip #studytrip_map h2 .en {
	display: block;
	color: var(--mtca-brown);
	font-size: 1.25rem;	/* 20px */
	padding-bottom: 10px;
}
#my-studytrip #studytrip_map h2 .ja {
	font-size: 1.5rem;	/* 24px */
}
#my-studytrip section .entry-wrapper {
}
#my-studytrip section .entry-wrapper .wrap {
	overflow: hidden;
}
#my-studytrip section .entry-wrapper .wrap:not(:last-child) {
	padding-bottom: 40px;
}
#my-studytrip section .entry-wrapper .entry-movie {
	float: left;
	width: 465px;
	height: auto;
}
#my-studytrip section .entry-wrapper .entry-movie .movieonly {
	aspect-ratio: 16/9;
}
#my-studytrip section .entry-wrapper .entry-movie .imgonly {
	aspect-ratio: 8/5;
	overflow: hidden;
}
#my-studytrip section .entry-wrapper .entry-movie .imgonly img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#my-studytrip section .entry-wrapper .entry-detail {
	overflow: hidden;
	padding-top: 5px;
	margin-left: 515px;
}
#my-studytrip section .entry-wrapper .entry-detail h3 a,
#my-studytrip section .entry-wrapper .entry-detail h3 .nolink {
	display: block;
	font-size: 1.5rem;	/* 24px */
	padding-bottom: 15px;
}
#my-studytrip section .entry-wrapper .entry-detail h3 a {
	text-decoration: underline;
}
#my-studytrip section .entry-wrapper .entry-detail h3 a::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	background: url(/images/icon_exlink.svg) no-repeat center / cover;
	margin-left: 10px;
}
#my-studytrip section .entry-wrapper .entry-detail p {
	line-height: 2;
	padding-bottom: 15px;
	margin-bottom: 0;
}
#my-studytrip section .entry-wrapper .entry-detail dd.dd_room {
	float: left;
	width: 160px;
	margin-left: 20px;
}
#my-studytrip section .entry-wrapper .entry-detail dd.dd_parking {
	padding-left: 20px;
}
#my-studytrip section#studytrip_map {
	padding: 25px 0 80px;
}
#my-studytrip section#studytrip_map .gmap {
	height: 560px;
}
#my-studytrip section#studytrip_pdf {
	padding: 63px 94px;
}
#my-studytrip section#studytrip_pdf .wrap {
	overflow: hidden;
}
#my-studytrip section#studytrip_pdf .thumbnail {
	float: left;
	width: 261px;
	height: 370px;
}
#my-studytrip section#studytrip_pdf .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
}
#my-studytrip section#studytrip_pdf .wrap .content {
	margin-left: 290px;
}
#my-studytrip section#studytrip_pdf h3 {
	display: inline-block;
	font-size: 1.5rem;
	margin-bottom: 12px;
}
#my-studytrip section#studytrip_pdf .descr {
	line-height: 2;
	margin-bottom: 8px;
}
#my-studytrip section#studytrip_pdf ul {
	line-height: 2;
	margin-bottom: 20px;
}
#my-studytrip .entry-detail dd.add {	/* 2026.3 Aki added */
	display: flex;
	align-items: center;
}
#my-studytrip .entry-detail dd.add p {	/* 2026.3 Aki added */
	padding-bottom: 0;
}


/* TIC & For Tour Page Components
----------------------------------------------- */
:is(#my-tic, #my-fortour) section h2 {
}
:is(#my-tic, #my-fortour) section h2 .en,
#my-tours #fortour_travel h2 .en {	/* 2023.12 KAZ: added */
	display: block;	/* KAZ */
	padding-bottom: 10px;
	font-size: 1.25rem;	/* 20px */
}
:is(#my-tic, #my-fortour) section h2 .ja,
#my-tours #fortour_travel h2 .ja {	/* 2023.12 KAZ: added */
	font-size: 1.5rem;	/* 24px */
}
:is(#my-tic, #my-fortour) section h2::before {
	content: none;
}
:is(#my-tic, #my-fortour) p {
	line-height: 2;
}

/* Tourist Information Center Page Components
----------------------------------------------- */
#my-tic .page-header {
	background-image: url(/images/mv_tic.webp);	/* 2026.5 Aki was .jpg / 2023.11 KAZ */
	padding-top: 320px;	/* 2023.11 KAZ */
}
#my-tic section#tic_map .gmap {	/* 2023.10 KAZ */
	width: 100%;	/* 2023.10 KAZ: ChkHTML; use MyMap */
	height: 560px;
}
#my-tic #content section h2.entry-title {
	display: inline-block;
	color: var(--mtca-green);
	background: url(/images/line.svg) repeat-y;
	font-size: 1.5rem;
	text-align: left;
	line-height: 1.5;
	font-weight: 500;
	padding: 0 0 0 20px;
	margin: 20px 0 25px;
}
#my-tic section h2.entry-title::before {
	content: none;
}
#my-tic section:is(#tic_center, #tic_station) .wall {
	display: flex;
	justify-content: space-between;
}
#my-tic .wrapper {
}
#my-tic .entry-detail {
}
#my-tic .entry-detail dl {
}
#my-tic .entry-detail dt {
	float: left;
	min-width: 92px;
	background-color: var(--mtca-beige);
	text-align: center;
	font-weight: 400;
	line-height: 28px;
	padding: 2px 0;
}
#my-tic .entry-detail dd {
	overflow: hidden;
	white-space: pre-wrap;
	line-height: 2;
	margin-bottom: 12px;
	margin-left: 110px;
}
#my-tic .img_wrap {
	width: 542px;
}
#my-tic .img_wrap .imgonly {
	margin-bottom: 19px;
}
#my-tic section:is(#tic_center, #tic_station) {
	padding-bottom: 0;
}
#my-tic section:is(#tic_center, #tic_station) .wall {
	border-bottom: solid 1px var(--mtca-light-green);
	padding-bottom: 20px;
}
#my-tic section#tic_station {
	padding-top: 40px;
}
#my-tic section#tic_map {
	padding-top: 45px;
}

/* For Tour Page Components
----------------------------------------------- */
#my-fortour .page-header {
	background-image: url(/images/mv_fortour.jpg);
}
#fortour_news {
	padding-bottom: 80px;
}
#fortour_news ul {
	list-style: none;
	padding-bottom: 32px;
	margin: 0;
}
#fortour_news ul > li {
	display: flex;
	justify-content: space-between;
	border-bottom: solid 1px var(--mtca-light-green);
	padding: 15px 0;
}
#fortour_news ul > li .detail {
	width: calc(100% - 370px);
}
#fortour_news ul > li .detail .categories a {
	display: inline-block;
	color: white;
	line-height: 40px;
	background: url(/images/line.svg) repeat-y top left var(--mtca-text-color);
	padding: 0 14px 0 18px;
}
#fortour_news ul > li .detail .date{
	font-size: 0.875rem;	/* 14px */
	padding-left: 20px;
}
#fortour_news ul > li .detail .ttl {
	font-size: 1.5rem;
	padding: 15px 0;
}
#fortour_news ul > li .detail .excerpt {
}
#fortour_news ul > li .imgonly {
	width: 315px;
}
#fortour_news .linkbtn {
	text-align: right;
}
#fortour_subsidy {
	padding-bottom: 35px;
}
#fortour_subsidy .wrapper {
	padding-bottom: 45px;
}
#fortour_subsidy .wrapper .detail_wrap {
	display: flex;
	justify-content: space-between;
	padding-top: 10px;
}
#fortour_subsidy .wrapper .detail_wrap h4 {
	color: var(--mtca-green);
	background: url(/images/line.svg) repeat-y;
	font-size: 1.5rem;
	text-align: left;
	line-height: 1.5;
	font-weight: 500;
	padding: 0 0 0 20px;
	margin-bottom: 20px;
}
#fortour_subsidy .wrapper .detail_wrap .detail {
}
#fortour_subsidy dl {
	margin-bottom: 0;
}
#fortour_subsidy dt {
	float: left;
	min-width: 186px;
	background-color: var(--mtca-beige);
	text-align: center;
	font-weight: 400;
	line-height: 28px;
	padding: 2px 0;
}
#fortour_subsidy dd {
	overflow: hidden;
	white-space: pre-wrap;
	line-height: 2;
	margin-bottom: 12px;
	margin-left: 206px;
}
#fortour_subsidy .wrapper .documents_wrap {
	display: flex;
	gap: 0 16px;
}
#fortour_subsidy .wrapper#airport .imgonly {
	width: 542px;
}
#fortour_subsidy .wrapper#airport .detail_wrap .detail p {
	margin-top: -10px;
}
#fortour_subsidy .wrapper#other .link_wrap {
	padding-bottom: 20px;
}
#fortour_subsidy .wrapper#other .link_wrap p {
	margin-bottom: 0;
}
#fortour_subsidy .wrapper#other .link_wrap a::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	background: url(/images/icon_exlink.svg) no-repeat center / cover;
	 margin-left: 10px;
}
#fortour_subsidy .wrapper#other .youtube_wrap {
	display: flex;
	gap: 0 16px;
}
#fortour_subsidy .wrapper#other .youtube_wrap iframe {
	width: 449px;
	height: auto;
	aspect-ratio: 16/9;
}
#fortour_travel {
}
#fortour_travel .wrapper {
}
#fortour_travel .wrapper#hokkaido {
}
#fortour_travel .wrapper#kansai {
}
#fortour_travel .wrapper#kyusyu {
}
#my-tours #fortour_travel .wrapper h3 {	/* 2023.12 KAZ: was #my-fortour */
	line-height: 44px;
/*	background: url(/images/img_fromhokkaido.svg) no-repeat left top; 2023.11 AKi c/o */
/*	padding: 0 0 10px 200px !important; 2023.11 AKi c/o */
	background: none;	/* 2023.11 AKi added */
	padding-left: 0;	/* 2023.11 AKi added */
	margin-bottom: 0;
	position: relative;	/* 2023.11 AKi added */
}
#my-tours #fortour_travel .wrapper#kansai h3 {	/* 2023.12 KAZ: was #my-fortour */
/*	background-image: url(/images/img_fromkansai.svg); 2023.11 AKi c/o */
}
#my-tours #fortour_travel .wrapper#kyusyu h3 {	/* 2023.12 KAZ: was #my-fortour */
/*	background-image: url(/images/img_fromkyusyu.svg); 2023.11 AKi c/o */
}
#my-tours #fortour_travel .wrapper h3::before {	/* 2023.12 KAZ: was #my-fortour */
	background: url(/images/icon_arrow_tour.svg)no-repeat center var(--mtca-brown);
	content: "北海道";
	display: inline-block;
	width: 180px;
	height: 44px;
	line-height: 44px;
	margin-right: 20px;
	padding: 0 15px;
	color: white;
	font-size: 1.25rem;	/* 20px */
	font-weight: normal;
	vertical-align: top;	/* 2023.12 KAZ */
}
#my-tours #fortour_travel .wrapper#hokkaido h3::before {	/* 2023.12 KAZ: was #my-fortour */
	background-position: left calc(50% + 6px) center;
}
#my-tours #fortour_travel .wrapper:is(#kansai, #kyusyu) h3::before {	/* 2023.12 KAZ: was #my-fortour */
	content: "関西";
	padding: 0 20px;
}
#my-tours #fortour_travel .wrapper#kyusyu h3::before {	/* 2023.12 KAZ: was #my-fortour */
	content: "九州";
}
#my-tours #fortour_travel .wrapper h3::after {	/* 2023.12 KAZ: was #my-fortour */
	content: "松本";
	color: white;
	font-size: 1.25rem;	/* 20px */
	font-weight: normal;
	line-height: 44px;
	position: absolute;
	top: 0;		/* 2023.12 KAZ: was 1px */
	left: 117px;
}
#fortour_travel .wrapper ul {
	list-style: none;
	padding-bottom: 39px;
	margin: 0;
}
#fortour_travel .wrapper ul > li {
	border-bottom: solid 1px var(--mtca-light-green);
	padding: 20px 0;
}
#fortour_travel .wrapper ul > li .title::before,
#fortour_travel .wrapper ul > li .title:is(.exlink, .pdf) a::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}
#fortour_travel .wrapper ul > li .title::before {
/*	content: "・";
*	display: inline-block;
*	margin-left: 0; 2023.10 Aki c/o */
}
#fortour_travel .wrapper ul > li .title.exlink a::after {
	width: 14px;
	height: 14px;
	background: url(/images/icon_exlink.svg) no-repeat center / cover;
}
#fortour_travel .wrapper ul > li .title.pdf a::after {
	width: 20px;
	height: 24px;
	background: url(/images/icon_pdf.png) no-repeat center / cover;
}
/* KAZ */
#fortour_misc_pdf {
}
#fortour_misc_pdf .wall {
	padding: 60px 0 40px;
}
#fortour_misc_pdf h2 {
	margin-bottom: 32px !important;
}
#fortour_misc_pdf h2 .en {
}
#fortour_misc_pdf h2 .ja {
}
#fortour_misc_pdf .subsection {
	background-color: var(--mtca-beige);
	clear: both;
	overflow: hidden;
	margin-bottom: 40px;
	padding: 63px 94px;
	width: var(--mtca-wall-width);	/* 2023.11 Aki added */
	margin-left: auto;	/* 2023.11 Aki added */
	margin-right: auto;	/* 2023.11 Aki added */
}
#fortour_misc_pdf .subsection .thumbnail {
	float: left;
	width: 261px;
	height: 370px;
}
#fortour_misc_pdf .subsection .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
}
#fortour_misc_pdf .subsection .content {
	margin-left: 290px;
}
#fortour_misc_pdf .subsection .content h3 {
	background: none !important;
	border-bottom: 0 !important;
	clear: none;
	margin-bottom: 12px !important;
	padding: 0 !important;
	line-height: 1.5;	/* 36px */
	color: inherit !important;
}
#fortour_misc_pdf .subsection .content .descr {
	margin-bottom: 8px;
	line-height: 2;	/* 32px */
}
#fortour_misc_pdf .subsection .content ul {
	margin-bottom: 20px;
	line-height: 2;	/* 32px */
}
#fortour_misc_pdf .subsection .content ul li {
}
#fortour_misc_pdf .subsection .content .linkbtn {
}
#fortour_misc_pdf .subsection .content .linkbtn a {
}
#fortour_studytrip {
	clear: both;
	width: var(--mtca-wall-width);
	margin: 0 auto;
}
#fortour_studytrip .wall {
}
#fortour_studytrip .photo,
#fortour_studytrip .content {
	height: 400px;
}
#fortour_studytrip .photo {
	float: right;
	width: 558px;
}
#fortour_studytrip .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
}
#fortour_studytrip .content {
	background: url(/images/line.svg) repeat-x top left, url(/images/bg.png) repeat;
	margin-right: 558px;
	padding: 48px 77px;
}
#fortour_studytrip .content h2 {
	clear: none;
	margin-bottom: 20px !important;
	text-align: left !important;
}
#fortour_studytrip .content h2 span {
	/* See also :is(#my-tourexp, #my-tourexp_category, #my-studytrip, #my-studytrip_category, #my-tic, #my-fortour) .page-title span */
}
#fortour_studytrip .content h2 .en {
	/* See also :is(#my-tourexp, #my-tourexp_category, #my-studytrip, #my-studytrip_category, #my-tic, #my-fortour) .page-title .en */
	padding-bottom: 0;
}
#fortour_studytrip .content h2 .ja {
	/* See also :is(#my-tourexp, #my-tourexp_category, #my-studytrip, #my-studytrip_category, #my-tic, #my-fortour) .page-title .ja */
	padding-bottom: 0;
}
#fortour_studytrip .content .text {
	/* See also :is(#my-tourexp, #my-tourexp_category, #my-studytrip, #my-studytrip_category, #my-tic, #my-fortour) .page-title .text */
	margin-bottom: 20px;
}
#fortour_studytrip .content .linkbtn {
}
#fortour_studytrip .content .linkbtn a {
	width: 220px;
}

/* Association & Convention Page Components
----------------------------------------------- */
:is(#my-association, #my-convention) section p {
	line-height: 2;
	padding: 30px 0 50px;
	margin-bottom: 0;
}
:is(#my-association, #my-convention) section p.nopadding {
	padding: 0;
}
:is(#my-association, #my-convention) section .linkbtn {
	text-align: center;	/* 2023.10 Aki was right */
}
:is(#my-association, #my-convention) section .wrap {
	padding-bottom: 50px;
}
:is(#my-association, #my-convention) section ol {
}
:is(#my-association, #my-convention) section ol > li {
	padding: 10px 0;
}
:is(#my-association, #my-convention) section ol > li .ttl {
}
:is(#my-association, #my-convention) section ol > li .text {
	line-height: 1.5;
	font-weight: 400;
}

/* アコーディオン部分用 */
:is(#my-facilitylist, #my-memberlist) section.expanded h3 {
	margin-bottom: 0 !important;
}
:is(#my-facilitylist, #my-memberlist) section h3 a {
	display: block;
	position: relative;
}
:is(#my-facilitylist, #my-memberlist) section h3 a:hover {
	text-decoration: none;
}
:is(#my-facilitylist, #my-memberlist) section h3 a span.expand {
	position: absolute;
	display: inline-block;
	width: 30px;
	height: 30px;
	top: 5px;
	right: 10px;
	color: white;
}
:is(#my-facilitylist, #my-memberlist) section.expanded h3 a span.expand {
	transform: rotate(180deg);
}
:is(#my-facilitylist, #my-memberlist) section {
}
:is(#my-facilitylist, #my-memberlist) section .content_wrap {	/* 2023.10 KAZ: renamed; was .answer_wrap */
	overflow: hidden;
	height: 0;
}
#my-facilitylist section .content_wrap {	/* 2023.10 Aki */
	height: auto;
}
#my-facilitylist section h3 a span.expand {	/* 2023.10 Aki */
	display: none;
}
:is(#my-facilitylist, #my-memberlist) section.expanded .content_wrap {	/* 2023.10 KAZ: renamed; was .answer_wrap */
	height: auto;
}
ul:is(.disclosure, .newspdfarea, .infopdfarea),
ul:is(.newspdfarea, .infopdfarea) > li {
	list-style: none;
	padding-bottom: 30px;
	margin: 0;
}
ul:is(.newspdfarea, .infopdfarea, .convention_news) > li {
	padding: 15px 15px;
}
ul:is(.newspdfarea, .infopdfarea, .convention_news) > li:nth-child(odd) {
	background-color: var(--mtca-beige);
}
ul:is(.disclosure, .newspdfarea, .infopdfarea, .convention_news) li a,
#association_initiative a.linkpdf {	/* 2026.07 KAZ: added */
	display: inline-block;
	background: url(/images/icon_pdf.png)no-repeat left center;
	padding-left: 30px;
}

/* Association Page Components
----------------------------------------------- */
:is(#my-association, #my-memberlist) .page-header {	/* 2023.10 KAZ: was #masthead */
	background: url(/images/ashirai_blue.png) repeat left top;	/* !important */
}
#my-association section#association_member p {
/*	padding: 0; 2023.10 Aki c/o */
}
#my-association section#association_member h3 + p {
	padding-top: 0;
	padding-bottom: 30px;
}
#my-association section#association_member .linkbtn {
	margin-bottom: 50px;
}
#association_aboutus table {
	border-collapse: separate;
	border-spacing: 5px;
	border-bottom: 0;
	margin-bottom: 50px;
}
#association_aboutus table :is(th, td) {
	background-color: var(--mtca-beige);
	padding: 10px;
}
#association_aboutus table th {
	font-weight: 600;
}
#association_aboutus table td {
	border: 0;
}
#association_aboutus table ol > li:first-child {
	padding-top: 0;
}
#association_aboutus .imgonly {
	width: var(--mtca-mid-wall-width);
	margin: 0 auto;
}
#association_initiative h3 {	/* 2026.07 KAZ: added */
	margin-top: 2em;
}
#association_initiative h4 {	/* 2026.07 KAZ: added */
	background: url(/images/line.svg) repeat-y;
	margin-top: 3em;
	margin-bottom: 2em;
	padding: 0 0 0 20px;
	color: var(--mtca-green);
	font-size: 1.25rem;	/* 20px */
	font-weight: 500;
	line-height: 1.4;	/* 28px */
	text-align: left;
}
#association_initiative h3 + h4 {	/* 2026.07 KAZ: added */
	margin-top: 2em;
}
#my-association #association_initiative p {	/* 2026.07 KAZ: added */
	margin-bottom: 1.5em;
	padding: 0;
}
#association_initiative a.linkpdf.no_pdf_icon {	/* 2026.07 KAZ: added */
	display: inline;
	background: none;
	padding-left: 0;
}
#association_initiative .attachments {	/* 2026.07 KAZ: added */
	margin-top: 2em;
	margin-bottom: 1.5em;
}
#association_initiative .attachments .heading,
#association_initiative .attachments a.linkpdf {	/* 2026.07 KAZ: added */
	margin-bottom: 1em;
}
#association_initiative .attachments .heading {	/* 2026.07 KAZ: added */
	color: var(--mtca-green);
}
#association_initiative .attachments a.linkpdf {	/* 2026.07 KAZ: added */
	display: inline-block;
	line-height: 1.3333;
}
#association_initiative .attachments .note {	/* 2026.07 KAZ: added */
	margin-top: -1.5em;
	font-size: 0.875rem;	/* 14px */
}
#association_zaimu ul > li {
	padding-bottom: 1em;
}
#association_news p {
	text-align: center;
}


/* Convention Page Components
----------------------------------------------- */
:is(#my-convention, #my-facilitylist) .page-header {	/* 2023.10 KAZ: was #masthead */
	background: url(/images/ashirai_red.png) repeat left top;	/* !important */
}
#my-convention section#facility_support ol + p {
	padding: 0;
}



/* Memberlist & Facilitylist Page Components : archive only
----------------------------------------------- */
:is(#my-memberlist, #my-facilitylist) table thead td {
	font-size: 1.125rem;	/* 18px */
	border-top: 0;
}
:is(#my-memberlist, #my-facilitylist) table tbody td {
	padding: 15px 0;
}
:is(#my-memberlist, #my-facilitylist) table td.name a {
}
:is(#my-memberlist, #my-facilitylist) table tbody td.name,
#my-memberlist table tbody td.add {
	width: 450px;
	padding-right: 10px;
}
:is(#my-memberlist, #my-facilitylist) table tbody td.name a::after {	/* 2023.10 KAZ: added .name */
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	background: url(/images/icon_exlink.svg) no-repeat center / cover;
	margin-left: 10px;
}
:is(#my-memberlist, #my-facilitylist) table tbody td.zip {
}
:is(#my-memberlist, #my-facilitylist) table tbody td.add {
}
:is(#my-memberlist, #my-facilitylist) table tbody td.tel {
	position: relative;	/* 2023.10 KAZ */
}
:is(#my-memberlist, #my-facilitylist) table tbody td.tel a.post-edit-link {	/* 2023.10 KAZ */
	position: absolute;
	bottom: 0;
	right: 0;
}

/* Condisions Page Components
----------------------------------------------- */
#conditions {
}
#conditions .wrap {
	width: 90%;
	text-align: center;
	border: solid 1px var(--mtca-light-green);
	padding: 20px;
	margin: 0 auto;
}
#conditions .wrap p {
	line-height: 2;
	margin-bottom: 0;
}


/* PrivacyPolicy Page Components 2025.2 Aki
----------------------------------------------- */
body:not(#my-top, #my-studytrip) :is(.entry-content, #content) section h3.smaller {
	font-size: 1rem;
	background-size: 15px auto;
	background-position: top 12px left;
	padding: 8px 0 8px 25px;
	margin-top: 30px;
}
#privacy ol > li {
	margin-bottom: 10px;
}
#privacy ol.child {
	list-style: upper-alpha;
}
#privacy ol.grandchild {
	list-style: katakana;
}
#privacy .wrap {
	width: 90%;
	border: solid 1px;
	padding: 0 30px 30px;
	margin: 60px auto 0;
}
body:not(#my-top, #my-studytrip) :is(.entry-content, #content) section .wrap h3.smaller {
	text-align: center;
	background: none;
	padding-left: 0;
}


/* Transactions Page Components 2025.2 Aki
----------------------------------------------- */
#transactions table {
	border-color: var(--mtca-green);
}
#transactions table :is(th,td) {
	border-top: solid 1px var(--mtca-green);
	padding: 15px;
}
#transactions table th {
	font-weight: 600;
}

/* =Print
----------------------------------------------- */
@media print {
	body {
		width: calc(var(--mtca-wall-width) + 40px);
	}
	.entry-meta .edit-link a {
		display: none;
	}

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

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

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

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

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

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

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

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

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