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

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


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

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

/* 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.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: 16px;
	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: 16px;
	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 {
	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_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: 12px;
	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;
	}
}
