/*
Theme Name: MT Labs 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
*/

/*
Description: Style common to PC & Smartphone for A New Site
Note: CSS variable definitions are also included in this file
*/


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&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 */
	--pagewidth: calc(100vw - 17px);	/* 2024.11 KAZ: was - 16px; 2024.7 KAZ: added */
	--viewheight: 100vh;

	/* Colors */
	--mtl-txt-blue: #445591;
	--mtl-dark-blue: #24377c;
	--mtl-light-blue: #4e67ac;
	--mtl-text-light-blue: #B6C0E0;
	--mtl-yellow: #e2e341;
	--mtl-pale-green: #A1CBBD;
	--mtl-pink: #de5f90;
	--mtl-light-gray: #F7F7F7;
	--mtl-border-gray: #e8e8eb;
	--mtl-border-blue: #5F6D9B;
}

@media print, screen and (min-width: 768px) {	/* PC */
	:root {
		--mtl-floating-header-height: 102px;
	}
}
@media screen and (max-width: 767px) {	/* SP */
	:root {
		--mtl-floating-header-height: 102px;
	}
}

@media screen and (min-width: 783px) {	/* WP Admin Bar */
	:root {
		/* Dimensions */
		--wp-admin-bar-height: 32px;
	}
}
@media screen and (max-width: 782px) {	/* WP Admin Bar */
	:root {
		/* Dimensions */
		--wp-admin-bar-height: 46px;
	}
}
@media print {	/* WP Admin Bar */
	:root {
		/* Dimensions */
		--wp-admin-bar-height: 0px;
	}
}


/* =Structure
----------------------------------------------- */
html:has(body.admin-bar) {	/* on Firefox, the layout.css.has-selector.enabled preference needs to be set true */
	scroll-padding-top: calc(var(--mtl-floating-header-height) + var(--wp-admin-bar-height));
}
body {
	padding: 0;
	min-width: 1200px;	/* MTL: This should be equal to the width of content areas such as #masthead and #mainwall if the content areas should have no paddings or margins or a little wider if a margin is required between browser and the text in the content. */
	font-size: 100%;
	letter-spacing: 0.05em;
	-webkit-text-size-adjust: none;	/* KAZ: was 100% */
	text-size-adjust: none;	/* KAZ */
}
/*#masthead, #mainwall, */header .page-title, #breadcrumbs, #ft_links, section > .wall {
	width: 1200px;
	margin: 0 auto;
}
#page {
	background: #fff;
}
#primary {
	float: left;
	margin: 0;
	width: 684px;	/* Width of main area */
}
#primary.nosidebar {
	float: none;
	margin: 0 auto;
	width: 100%;
}
#content {
	margin: 0;
}
#secondary {
	float: right;
	width: 261px;	/* width of sidebar, if no margin between the sidebar and the main area, this can be commented out (MAT) */
}

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


/* =Global
----------------------------------------------- */
body, input, textarea {
	color: var(--mtl-txt-blue);
	font-family: "Noto Sans JP", sans-serif; /* MTL see tips.xls */
	font-weight: 400;
	font-optical-sizing: auto;
	font-style: normal;
	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;
	display: inline-block;	/* 2026.1 Aki */
	line-height: 1.5;	/* 2026.1 Aki */
}

/* 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 {
	background-color: var(--mtl-light-gray);
	padding: 20px 40px 15px;
	margin: 0;
}
ul {
	list-style: disc;
}
ol {
	list-style-type: decimal;
	margin-left: 40px;
}
ol li::marker {
	font-family: "montserrat", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.08em;
}
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;
	margin-bottom: 0;	/* Aki */
}
dt {
	font-weight: bold;
}
dd {
	margin-bottom: 35px; /*  was 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(--mtl-txt-blue);
}
/* 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;
	min-height: 533px;
	background: url(/images/bg_childpage_header.svg)no-repeat left top, url(/images/bg_line_blue.svg) repeat-y top center/ 1200px auto, var(--mtl-light-blue);
	background-color: var(--mtl-light-blue);
}
.admin-bar :is(#page, #masthead) {
	top: var(--wp-admin-bar-height);
}
#my-top #branding {
	height: 936px;
	background: url(/images/bg_header_mv.svg)no-repeat top center / cover , url(/images/bg_line_blue.svg) repeat-y top center/ 1200px auto, var(--mtl-light-blue);
}
.contact_wrap_follow {
	display: flex;
	flex-direction: column;
	gap: 15px 0;
	position: fixed;
	bottom: 220px;
	right: 15px;
	z-index: 9999;
}
.contact_wrap_follow a.linkbtn {
	min-width: 265px;
}
.contact_wrap_follow .contact a.linkbtn {
	color: var(--mtl-dark-blue);
	background-color: white;
	border-color: var(--mtl-border-gray);	/* Aki 〃背景色の上だと同化してしまうため */
}
.contact_wrap_follow.firstview {
}
#masthead {
	width: 100%;
	min-width: 1200px;	/* 2026.2 KAZ: script.js で横スクロール可能にした */
	min-height: 102px;
	position: fixed;
	top: 0;
	background: var(--mtl-light-blue);
	margin: 0 auto;
	z-index: 9999;
}
#masthead.firstview {
	background: transparent;
}
#branding .text {
	width: 500px;
	color: white;
	flex-shrink: 0;
}
#my-top #branding .text {
	position: absolute;
	left: 55px;
	bottom: 95px;
	text-shadow: 0 0 3px black;	/* 2025.12 KAZ */
}
#branding .text .ja,
#branding .copy {
	font-size: 1.6875rem;	/* 27px */
	font-weight: 500;
	line-height: 1.6296;	/* 27/44 */
}
#branding .text .en {
	font-size: 0.9375rem;	/* 15px */
	line-height: 1.6666;	/* 15/25 */
}

/* =Menu
-------------------------------------------------------------- */
#headmenu {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 50px;
}
#headmenu #menu {
	display: flex;
	padding-left: 280px;
}
#headmenu #menu a.current {
	text-decoration: none;
}
#headmenu ul.parent > li a {
	display: inline-block;
	color: white;
	font-weight: 500;
	letter-spacing: 0.05em;	/* was 0.1em from chkHTML */
	text-decoration: none;
	white-space: nowrap;
	padding: 23px 24px;
}
#headmenu ul.parent li.haschild {
	position: relative;
}
#headmenu ul.parent li a.current {
}

/* 以下childメニュー用 */
#headmenu ul.child {
	display: none;
	gap: 17px 0;
	background-color: var(--mtl-yellow);
	position: absolute;
	top: 0;	/* was 40px */
	width: auto;	/* was 100% */
	min-width: 100%;
	border-radius: 0 0 7px 7px;
	padding-top: 63px;
	padding-bottom: 25px;
	z-index: 1;
/*	max-height: 0;
	overflow: hidden;
	opacity: 0; */
	transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
#headmenu ul.child li a {
	display: inline-block;
	width: 100%;
	color: var(--mtl-dark-blue);
	font-size: 0.9375rem;	/* 15px */
	white-space: nowrap;
	padding: 0 25px;
}


#headlangbar {
	background-color: var(--mtl-dark-blue);
	display: flex;
	border-radius: 0 0 0 6px;
	padding: 20px 30px 26px 25px;
}
#headlangbar li {
	flex-shrink: 0;
}
#headlangbar a {
	color: rgba(255,255,255,0.5);
	text-decoration: none;
}
#headlangbar a.current {
	color: white;
	text-decoration: none;
}
#headlangbar li:first-child::after {
	content:"/";
	display: inline-block;
	color: white;
	margin: 0 5px;
}
#headlogo {
	clear: both;
}
h1#headlogo,
div#headlogo a {
	position: absolute;
	left: 25px;
	top: 25px;
}
#breadcrumbs {
	font-size: 0.75rem;	/* 12px */
	line-height: 1;
	padding: 15px 0 15px 20px;
	position: absolute;
	bottom: 0;
	left: calc((100% - 1200px) / 2);
}
#breadcrumbs, #breadcrumbs a {
	color: var(--mtl-text-light-blue)
}

#searchform {
	position: relative;
	max-width: 50%;
	margin-top: 10px;
	margin-bottom: 10px;
}
.search_wrap #searchform {
	max-width: none;
}

#searchform input[type=text] {
/*	max-width: 245px; */
	width: 100px;
	color: white;
	border: solid 1px white;
	border-radius: 50px;
	background: url(/images/ic_search.svg)no-repeat center left 10px,transparent;
	padding: 6px 33px;
	transition: all 0.5s;
}
#searchform input[type=text]:focus {
	width: 245px;
}
#searchform input[type="submit"] {
	color: transparent;
	border: none;
	background: url(/images/arrow_default.svg)no-repeat center;
	position: absolute;
	top: 50%;
	transform: translatey(-50%);
	right: 0;
	padding: 0;
}


@media (hover: hover) {
	#headmenu ul.parent li.haschild:hover a {
		position: relative;
		z-index: 2;
		color: var(--mtl-dark-blue);
		text-decoration: none;
	}
	#headmenu ul.parent > li:not(.haschild) a:hover {
		color: var(--mtl-dark-blue);
		background-color: var(--mtl-yellow);
	}
	#headmenu ul li.haschild:hover ul.child {
		display: flex;
		flex-direction: column;
/*		max-height: 1000px;
		opacity: 1; */
	}
	#headmenu ul.parent li.haschild a:hover,
	#headmenu ul.child li a:hover {
		color: var(--mtl-light-blue) !important;
	}
	#headlangbar a:hover {
		color: white;
		text-decoration: none;
	}
}

/* Special Break Point */
@media (max-width: 1650px) {
	#headmenu {
/*		align-items: flex-start;
		flex-wrap: wrap; 2026.1 Aki c/o from chkHTML */
		gap: 0 15px;
	}
	#headmenu #menu {
/*		flex-wrap: wrap; 2026.11 Aki c/o from chkHTML */
		justify-content: flex-end;
	}
	#headmenu ul.parent > li a {
		padding-left: 10px;
		padding-right: 10px;
	}
}

/* =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 {
	color: white;
	font-size: 1.4375rem;	/* 23px */
	line-height: 1.5;
	font-weight: 700;
	padding-top: 300px;
}
.page-title .en {
	display: block;
	text-align: left;
}
.page-title .en img {
	width: auto;
	max-height: 90px;
	margin-left: 0;
}
.page-title .ja {
	display: block;
	padding-top: 25px;
}
.page-title a {
}
.hentry,
.no-results {
	position: relative;
}
.hentry:last-child,
.no-results {
/*	border-bottom: none; Aki c/o */
}
.blog .sticky .entry-header .entry-meta {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}
.entry-title {
}
.entry-title a {
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) { 
	.entry-title a:hover {
		color: inherit;
		text-decoration: underline;
	}
}
.entry-title img {
	vertical-align: middle;
}
.entry-title-top {
	display: none;
}
.entry-meta {
	color: #666;
	clear: both;
	font-size: 12px;
	line-height: 18px;
}
.entry-meta a {
	font-weight: bold;
}
.single-author .entry-meta .by-author {
	display: none;
}
.entry-content,
.entry-summary {
/*	margin-bottom: 20px; */
}
.entry-content h1, .entry-content h2
{
	margin: 0 0 20px;
}
.entry-content h1 {
	line-height: 1.5;	/* 42px */
	font-size: 1.75rem;	/* 28px */
}
.entry-content :is(h2, h3, h4, h5) {
	clear: both;
	letter-spacing: 0.08em;
}
.entry-content h2 {
/*	margin-top: 90px;	/* 2026.1 Aki moved to #primary section / Aki added from chkHTML */
}
.entry-content :is(h2, h3, h4, h5).has_bottomborder {
	border-color: var(--mtl-dark-blue);
	padding-bottom: 15px;
	margin-top: 0;
	margin-bottom: 40px;
}
.entry-content h2,
:is(#my-tran, #my-mt, #my-web) #secondary h2 {
	line-height: 1.6667;	/* 40px */
	font-size: 1.75rem;	/* 28px */
	font-weight: bold;
	margin-bottom: 45px;
}
.entry-content p + h2 {
	margin-top: 90px;
}
.entry-content h3 {
	line-height: 1.5;
	font-weight: bold;
	border-bottom: dashed 1px;
	padding-bottom: 10px;
	margin-top: 40px;
}
.entry-content h4 {
	font-size: 1.4375rem;	/* 23px */
	line-height: 1.5;	/* 24px */
	font-weight: bold;
	margin-top: 40px;
	margin-bottom: 23px;
}
.entry-content h5 {
	font-size: 1.75rem;	/* 28px */
	line-height: 1.5;	/* 24px */
	font-weight: 500;
	background: url(/images/ic_point.svg)no-repeat center left;
	padding-left: 53px;
	margin-top: 40px;
	margin-bottom: 23px;
}
.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);
}
.entry-content p {	/* 2026.1 Aki added from chkHTML */
	line-height: 2;
}
.entry-content li {	/* 2026.1 Aki added from chkHTML */
	line-height: 1.5;
	margin-bottom: 12px;
}
 	/* -- Mat copied from the original twentyeleven .css after pointed out by Viex and talking with kaz 2021.1 */
.entry-content table {
	border-top: 1px solid var(--mtl-text-light-blue);
	width: 100%;
}
.entry-content table :is(th, td) {
	width: 250px;
	border-bottom: 1px solid var(--mtl-text-light-blue);
	padding: 20px;
}
.entry-content table th {
	border-right: 1px dashed var(--mtl-text-light-blue);
	font-weight: 500;
}
.entry-content table tr:has(td:nth-child(4)):not(:has(td:nth-child(5))) th {	/* tr内にセルが4つの場合 */
	width: 250px;
}
.entry-content table th.hasleft {
	border-left: 1px solid var(--mtl-text-light-blue);
}
.entry-content table td a.has_round-arrow {
	display: block;
	text-decoration: none;
	text-align: right;
	padding-right: 50px;
}
.entry-content table td a.has_round-arrow::after,
.entry-content ul.sponly li a.has_round-arrow::after {
	left: auto;
	right: 0;
}
@media (any-hover: hover) {
	.entry-content td a.has_round-arrow:hover {
		color: var(--mtl-text-light-blue);
	}
}
dl.gallery-item {
	margin: 0;
}
.page-link {
	clear: both;
	display: block;
	margin: 0 0 1.625em;
}
.page-link a {
	background: #eee;
	color: #373737;
	margin: 0;
	padding: 2px 3px;
	text-decoration: none;
}
@media (any-hover: hover) { 
	.page-link a:hover {
		background: #888;
		color: #fff;
		font-weight: bold;
	}
}
.page-link span {
	margin-right: 6px;
}
.entry-meta .edit-link a {
	background: #eee;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #666;
	float: right;
	font-size: 12px;
	line-height: 1.5em;
	font-weight: 300;
	text-decoration: none;
	padding: 0 8px;
	position: absolute;	/* Aki */
	bottom: 0;	/* Aki */
	right: 0;	/* Aki */
}
@media (any-hover: hover) { 
	.entry-meta .edit-link a:hover
	{
		background: #888;
		color: #fff;
	}
}
.entry-content .edit-link {
	clear: both;
	display: block;
}
#searchform .screen-reader-text {
	display: none;
}

/* Gutenberg blocks */
/* Counter-styles against /wp-includes/css/dist/block-library/style.min.css */
.entry-content figure {
	display: inline-block;
/*	margin-bottom: 45px; Aki c/o */
	margin-top: 30px;
}
.entry-content figure a.blank {
	background-position-y: bottom;
	padding-right: 0;
}
.entry-content figure figcaption {
	line-height: 1;
	font-size: 0.875rem;	/* 14px design is 16px */
	letter-spacing: normal;	/* desin is 0.08em */
	padding-top: 10px;	/* was 20px */
}
.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;
	line-height: 1.25 !important;
}
.wp-caption + .wp-caption {	/* Aki added from chkHTML */
	position: relative;
}
.wp-caption + .wp-caption::before {	/* Aki added from chkHTML */
	content: url(/images/arrow_blue.svg);
	display: inline-block;
	position: absolute;
	top: 50%;
	left: -18px;
}
#content .gallery {
	margin: 0 auto 1.625em;
}
#content .gallery a img {
	border: none;
}
img#wpstats {
	display: block;
	margin: 0 auto 1.625em;
}
#content .gallery-columns-4 .gallery-item {
	width: 23%;
	padding-right: 2%;
}
#content .gallery-columns-4 .gallery-item img {
	width: 100%;
	height: auto;
}

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


/* =error404
----------------------------------------------- */
.error404 .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;
}
article.not-found {
	max-width: 1200px;
	padding: 95px 20px 100px;
	margin: 0 auto;
}
.inpage_search {
}
.inpage_search #searchform input[type=text] {
	max-width: none;
	width: 100%;
	background-color: var(--mtl-light-blue);
	border-color: var(--mtl-dark-blue);
}


/* =Navigation
-------------------------------------------------------------- */
#content nav {
	clear: both;
	overflow: hidden;
	font-family: "montserrat", sans-serif;
	margin: 80px 0;
}
#content nav.nobottom {
	margin-bottom: 0;
}
#content nav a {
	color: inherit;
}
#nav-above {
	padding: 0 0 1.625em;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous {
	float: left;
	width: 50%;
}
.nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
#content nav .meta-nav {
	font-weight: normal;
}

/* Singular navigation */
#content #nav-single {
	width: 1200px;
	margin: 30px auto;
}

#content div.wp-pagenavi {
	clear: both;
	text-align: center;
}
#content div.wp-pagenavi a,
#content div.wp-pagenavi span {
	font-family: "montserrat", sans-serif;
	font-size: 1.6875rem;	/* 27px */
	display: inline-block;
	border: 0;
	margin: 0 10px;
	padding: 5px;
	line-height: 1;
}
#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: var(--mtl-text-light-blue);
}
#content div.wp-pagenavi span.current {
	color: var(--mtl-dark-blue);
}
#content div.wp-pagenavi a.previouspostslink,
#content div.wp-pagenavi a.nextpostslink {
	color: transparent;
	background: url(/images/arrow_blue.svg)no-repeat center top 9px / 6px auto transparent;
	border: solid 1px var(--mtl-dark-blue);
	width: 25px;
	height: 25px;
	border-radius: 50%;
	vertical-align: -7px;
	margin: 0 13px;
}
#content div.wp-pagenavi a.previouspostslink {
	transform: rotate(180deg);
}
@media (any-hover: hover) {
	#content div.wp-pagenavi a.page:hover {
		color: var(--mtl-dark-blue);
	}
}


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

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


/* =Footer
----------------------------------------------- */
.addtoany_share_save_container {	/* Mat added for share buttons */
	text-align: center;
}

#ft_nav_top {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;	/* KAZ: was 50% */
	z-index: 9000;
	margin: 0;	/* KAZ: was 0 -600px 0 0 */
	opacity: 0;
	z-index: 9000;
}
#ft_nav_top a {
	color: var(--mtl-dark-blue);
	background: white;
	border: solid 1px var(--mtl-dark-blue);
	border-radius: 50%;
	padding: 22px;
	height: 61px;
}
#ft_nav_top a svg {
	width: 15px;
	transform: rotate(-90deg);
}

#ft_shinshu {
}
#my-top section#ft_shinshu .wall {
	border: 0;
	padding: 55px 20px 60px;
}
#ft_shinshu .wrapper {
	display: flex;
	align-items: center;
}
#ft_shinshu h2 {
	font-size: 1.5rem;	/* 24px designではol化されているため正確なフォントサイズ不明 */
	font-weight: 700;
	padding-left: 60px !important;
}
#ft_shinshu p {
	line-height: 2;
	padding-left: 100px;
	padding-right: 165px;
	margin-bottom: 0;
}

#ft_contact {
	background: url(/images/bg_line_contact.svg)repeat-y center top, url(/images/bg_contact.webp)no-repeat center top -88px /100% auto,var(--mtl-light-blue);
}
#ft_contact .overlay {
	background-color: #ft_contact;
}
#ft_contact .wall {
	border-left: solid 1px rgba(232,232,235,0.2) !important;
	border-right: solid 1px rgba(232,232,235,0.2) !important;
	line-height: normal !important;
	padding: 105px 0px 0px !important;
}
#ft_contact h2 {
	color: white;
	border-bottom: solid 1px rgba(232,232,235,0.2);
	padding-left: 20px;
	padding-bottom: 43px;
}
#ft_contact h2::before, #ft_contact h2::after {
	background-color: rgba(232,232,235,0.2);
}
#ft_contact .wrapper {
	display: flex;
}
#ft_contact .wrap {
	position: relative;
	width: 50%;
}
#ft_contact .wrap a {
	position: relative;
	display: inline-block;
	width: 100%;
	color: white;
	font-weight: 300;
	letter-spacing: 0.1em;
	text-decoration: none;
	padding: 125px 0 112px 20px;
}
#ft_contact .wrap a::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(77, 77, 77, 0.4);
	mix-blend-mode: multiply;
	opacity: 0;
}
#ft_contact .wrap span:not(.imgonly) {
	position:relative;
}
#ft_contact .wrap .ttl {
	display: block;
	font-size: 1.3125rem;	/* 21px */
	font-weight: 500;
	margin-bottom: 8px;
}
#ft_contact .wrap#wrap_contact {
}
#ft_contact .wrap#wrap_quot {
}
@media (any-hover: hover) {
	#ft_contact .wrap a:hover {
		text-decoration: none;
		color: var(--mtl-yellow);
	}
	#ft_contact .wrap a:hover::before {
		opacity: 1;
	}
	#ft_contact .wrap a:hover .imgonly.arrow {
		background: var(--mtl-yellow);
	}
}

#colophon {
	clear: both;
	overflow: hidden;
	background: url(/images/bg_ft_line.svg)repeat-y center top,var(--mtl-light-gray);
	border-top: solid 1px var(--mtl-border-gray);
}
#colophon .wall {
	width: 1200px;
	border-left: solid 1px var(--mtl-border-gray);
	border-right: solid 1px var(--mtl-border-gray);
	padding-top: 105px;
	padding-bottom: 40px;
	margin-inline: auto;
}
.ft_add, .ft_wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0 340px;
	border-bottom: solid 1px var(--mtl-border-gray);
	padding: 0 0 32px 15px;
}
.ft_add #ft_logo {
}
.ft_add p.add {
	line-height: 1.875;	/* 16/30 */
	letter-spacing: 0.1em;
	padding-top: 5px;
}
#ft_links {
	position: relative;
	border-bottom: solid 1px var(--mtl-border-gray);
	padding-top: 30px;
}
ul#footmenu {
	display: flex;
}
ul:is(#footmenu, #footmenu2) > li {
	width: 300px;
	list-style-type: none;
	padding-left: 20px;
}
ul:is(#footmenu, #footmenu2) > li a {
	display: inline-block;
	color: inherit;
	letter-spacing: 0.1em;
	font-size: 1.125rem;	/* 18px */
	font-weight: 700;
	text-decoration: none;
	padding-bottom: 10px;
}
ul#footmenu > li.haschild {
}
ul#footmenu ul.child {
	margin-top: 5px;
}
ul#footmenu ul.child > li {
}
ul#footmenu ul.child > li a {
	font-size: 1rem;	/* 16px */
	font-weight: 400;
	padding-bottom: 10px;	/* was 18px from chkHTML  */
}
ul#footmenu2 {
	width: 300px;
	position: absolute;
	top: 4rem;
	right: 0;
}
ul#footmenu2 > li.policy a {
	font-size: 0.8125rem;	/* 13px */
	font-weight: 300;
	padding-top: 10px;
}
.ft_wrap {
	justify-content: space-between;
	gap: 0;
	padding: 0;
}
#ft_banner {
	width: 599px;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 50px;
	border-left: solid 1px var(--mtl-border-gray);
	padding: 10px 0;
}
#ft_banner img {
	max-height: 60px;
}
#ft_copyright {
	font-size: 0.875rem;	/* 14px */
}

@media (any-hover: hover) {
	ul:is(#footmenu, #footmenu2) > li a:hover {
		color: var(--mtl-text-light-blue);
	}
	#ft_nav_top a:hover {
		background: var(--mtl-dark-blue);
	}
	#ft_nav_top a:hover svg {
		color: var(--mtl-yellow);
	}
}


/* 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;
}
figure:is(.left, .right) {
	margin-bottom: 40px;
}
figure.left {
	float: left;
	margin-right: 30px;
}
figure.right {
	float: right;
	margin-left: 30px;
}
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;
}
.nobr {
	white-space: nowrap;
}
:is(ul, ol).nostyle {
	list-style: none;
	background-color: transparent;
	padding: 0;
	margin: 0;
}
ol.has_bignum {
	list-style: none;
	border-top: solid 1px var(--mtl-border-gray);
	margin: 0;
}
ol.has_bignum li {
	clear: both;
	border-bottom: solid 1px var(--mtl-border-gray);
	padding: 30px 30px 25px 40px;
}
ol.has_bignum li .num {
	font-family: "montserrat", sans-serif;
	font-size: 2.5rem;	/* 40px */
	font-weight: 600;
	line-height: 1;
	float: left;
	margin-right: 55px;
}
ol.has_bignum li .ttl {
	display: inline-block;
	font-size: 1.125rem;	/* 18px */
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	background: linear-gradient(to top, var(--mtl-yellow) 0 8px, transparent 8px 100%);
	margin-top: 6px;
	margin-bottom: 15px;
}
ol.has_bignum li p {
	overflow: hidden;
	line-height: 1.5 !important;	/* Aki from chkHTML */
	margin-bottom: 0;
}
a.linkbtn {
	display: inline-block;
	min-width: 220px;
	color: white;
	font-size: 0.875rem;	/* 14px */
	font-weight: 500;
	text-decoration: none;
	text-align: left;
	line-height: 1;
	background: url(/images/arrow_default.svg)no-repeat center right 25px, var(--mtl-dark-blue);
	border: solid 1px var(--mtl-dark-blue);
	border-radius: 30px;
	padding: 22px 38px;
}
a.linkbanner {
	position: relative;
	display: inline-block;
	min-width: 400px;	/* was 350px from chkHTML / was 560px from chkHTML */
	text-align: left;
	text-decoration: none;
	background: white;
	border: solid 1px var(--mtl-dark-blue);
	border-radius: 20px;
	padding: 30px 30px;	/* was 30px 0 30px 80px from chkHTML */
}
a.blank {
	display: inline-block;
	letter-spacing: 0.08em;
	background: url(/images/ic_blank.svg)no-repeat center right;
	padding-right: 20px;
}
.link + .link {
	margin-top: 20px;
}
.linkbanner + .linkbanner {
	margin-left: 10px;
}
a.linkbanner :is(.en, .ja) {
	display: block;
	line-height: 1;
}
a.linkbanner .en {
	font-size: 1.6875rem;	/* 27px */
	font-weight: 600;
}
a.linkbanner .ja {
	font-size: 1.25rem;	/* 20px en表記が無い場合を考え、jaのフォントサイズを大きくした from chkHTML */
	font-weight: 700;
	letter-spacing: 0.088em;
	margin-top: 3px;
}
.has_round-arrow {
	position: relative;
}
.has_round-arrow::after {
	content: "";
	display: block;
	background: url(/images/arrow_default.svg)no-repeat center / 10px auto var(--mtl-dark-blue);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translatey(-50%);
	left: 0;
}
a.linkbanner::after {
	top: 50%;	/* 2026.1 Aki was 59px */
	left: auto;
	right: 30px;	/* was 74px from chkHTML */
/*	transform: none; 2026.1 Aki c/o */
}
a .imgonly.round-arrow {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: white;
	padding: 15px;
	position: absolute;
	top: 145px;
	right: 50px;
	left: auto;
}
@media (any-hover: hover) {
	a.linkbtn:hover,
	.contact_wrap_follow .contact a.linkbtn:hover,
	#top_works a.linkbtn:hover {
		text-decoration: none;
		color: var(--mtl-dark-blue);
		background: url(/images/arrow_hover.svg)no-repeat center right 25px, var(--mtl-yellow);
		border-color: var(--mtl-yellow);
	}
	#ft_contact .wrap a:hover .imgonly.round-arrow,
	a.has_round-arrow:hover::after {
		background-color: var(--mtl-yellow);
	}
}
.mont, .en {
	font-family: "montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.hasborder {
	position:relative;
}
.hasborder::before, .hasborder::after {
	content: "";
	display: block;
	width: calc((var(--pagewidth) - 1200px) / 2);
	height: 1px;
	background-color: var(--mtl-border-gray);
	position: absolute;
	bottom: -1px;
	left: calc((var(--pagewidth) - 1200px) / 2 * -1);
}
.hasborder::after {
	left: auto;
	right: calc((var(--pagewidth) - 1200px) / 2 * -1);
}
.has_sideborder .wall {
	border-left: solid 1px var(--mtl-border-gray);
	border-right: solid 1px var(--mtl-border-gray);
	padding-bottom: 90px;
}
.has_sideborder.blue .wall {
	border-color: var(--mtl-border-blue);
}
.has_bgborder .wall {
	background: url(/images/bg_section.svg)repeat-y center top;
}
.has_bottomborder {
	border-bottom: solid 1px var(--mtl-border-gray);
}
h2 picture {	/* h2内のpicture */
	display: block;
}
/* aタグのtransition */
a.linkbtn,
#headmenu ul li a, #headmenu ul.parent li.haschild a,
#ft_contact .wrap a::before,
ul:is(#footmenu, #footmenu2) > li a,
:is(#my-tran, #my-mt, #my-web) #secondary ul > li a,
:is(#my-tran, #my-mt, #my-web) #secondary ul > li a::after,
#ft_nav_top a {
	transition: all 0.3s;
}


/* Blog Page Components
----------------------------------------------- */
/* Archive */
#news_archive {
}
#my-blog ul.news_list {
/*	padding-top: 80px; Aki c/o from chkHTML */
	margin-top: 0;
}

#blog-widget_wrap {
}
#blog-widget_wrap .wall {
	display: flex;
	justify-content: center;
	gap: 0 50px;
	padding: 50px 0 !important;
}
#blog-widget_wrap .widget {
	overflow: hidden;
}
#blog-widget_wrap .widget h3 {
	float: left;
	margin-right: 1em;	/* 2026.2 KAZ */
}
#blog-widget_wrap .widget_categories form {	/* 2026.2 KAZ */
	display: inline-block;
}
#blog-widget_wrap .widget select {	/* 2026.2 KAZ */
	border-color: inherit;
	border-radius: 10px;
	padding: 5px 10px;
	color: inherit;
}
/*
#blog-widget_wrap .widget ul {
	overflow: hidden;
	background-color: transparent;
	padding-top: 0;
	padding-bottom: 0;
}
*/


/* Single */
#my-blog article {
	width: 1200px;
	border-bottom: solid 1px var(--mtl-border-gray);
	margin: 0 auto;
}
#my-blog article .wall {
	padding: 80px 20px;
}
.categories a {
	display: inline-block;
	text-decoration: none;
	border: solid 1px;
	border-radius: 5px;
	padding: 0 10px;
	margin-left: 10px;
}
#my-blog .entry-title {
	font-size: 1.5rem;	/* no design */
	margin-top: 10px;	/* no design */
	margin-bottom: 50px;	/* no design */
}

/* Web Works Page Components
----------------------------------------------- */
#works_menu {
}
#works_menu ul {
	display: flex;
	gap: 25px;
}
#works_menu ul > li a,
ul.works_list > li .term a {
	display: inline-block;
	text-decoration: none;
	font-size: 0.875rem;	/* 14px */
	font-weight: 500;
	background-color: white;
	border: solid 1px var(--mtl-dark-blue);
	border-radius: 10px;
	padding: 5px 25px;
}
#works_menu ul > li a.current {
	color: white;
	background-color: var(--mtl-dark-blue);
}
@media (any-hover: hover) {
	#works_menu ul > li a:hover,
	ul.works_list > li .term a:hover {
		color: white;
		background-color: var(--mtl-dark-blue);
	}
}

#works_archive {
}
#works_archive ul.works_list {
	display: flex;
	flex-wrap: wrap;
	gap: 100px 50px;
}
ul.works_list > li {
	width: calc((100% - 100px) / 3);
}
ul.works_list > li > a {
	display: block;
	text-decoration: none;
}
ul.works_list > li .imgonly {
	overflow: hidden;
}
ul.works_list > li .imgonly img {
	width: 100%;
	height: 100%;
	aspect-ratio: 177/100;
	object-fit: cover;
}
ul.works_list > li .term a {	/* no design */
	font-size: 0.75rem;	/* 12px */
	padding: 0 5px;
	margin-top: 15px;
}
ul.works_list > li .title {
	font-size: 1.25rem;	/* 20px */
	font-weight: 700;
	line-height: 1.75;	/* 20/35 */
	margin-top: 10px;
}
ul.works_list > li .content {
	color: var(--mtl-text-light-blue);
	line-height: 1.5;	/* design is 2.1875 広すぎるので狭めた */
	margin-top: 5px;
}
.wp-pagenavi {
}


/* 固定ページの内容部分 */
#works_clients .contents {
	padding-left: 20px;
}


/* Front Page Components
----------------------------------------------- */
/* animation */
/* IMG Translate */







#my-top section .wall {
	border-left: solid 1px var(--mtl-border-gray);
	border-right: solid 1px var(--mtl-border-gray);
	padding-top: 105px;
	padding-bottom: 175px;
}
#my-top section h2 {
	padding-left: 20px;
}
#my-top section h2 .ja,
#ft_contact h2 .ja {
	display: block;
	font-size: 1.375rem;	/* 22px */
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	padding-top: 22px;
}

#my-top section h2 img {
	height: 55px;
}
#top_about {
}
#top_about h2 {
}
#top_about .wrapper {
	display: flex;
	gap: 0 70px;
	padding: 0 20px;
}
#top_about .img_wrap {
	position: relative;
	width: calc(100% - 520px);	/* 450px(テキスト幅) + 70px(gap) */
}
#top_about .img_wrap svg {	/* 2025.12 KAZ: was img */
	position: absolute;
}
#top_about .img_wrap svg#img_about_coding {	/* 2025.12 KAZ: was img.img_about01 */
	top: 12px;
	right: 0;
}
#top_about .img_wrap svg#img_about_inbound {	/* 2025.12 KAZ: was img.img_about02 */
	top: 155px;	/* 2025.12 Aki: was 200px / KAZ: was 145px (design) */
	left: -50px;
}
#top_about .img_wrap svg#img_about_translation {	/* 2025.12 KAZ: was img.img_about03 */
	right: 0;
	bottom: 205px;	/* 2025.12 Aki: was 35px */
}
#top_about .txt_wrap {
	width: 450px;
}
#top_about .txt_wrap .ttl {
	font-size: 1.625rem;	/* 26px */
	font-weight: 600;
	line-height: 2.1538;	/* 26/56 */
	letter-spacing: 0.1em;
	margin-top: 90px;
}
#top_about .txt_wrap p:not(.ttl) {
	line-height: 2;	/* 16/32 */
	margin-top: 42px;
	margin-bottom: 58px;
}
#top_about .txt_wrap .link {
}


#my-top #top_strengths {
	background-color: var(--mtl-light-gray);
	border-bottom: solid 1px var(--mtl-border-gray);
}
#my-top #top_strengths .wall {
	padding-bottom: 155px;
}
#top_strengths h2 {
}
#top_strengths ul {
	width: 73.3333%;	/* 880/1200 */
	margin-left: auto;
	margin-top: 108px;
}
#top_strengths ul li {
	display: flex;
	justify-content: space-between;
	padding: 50px 20px 50px 0;
}
#top_strengths ul li:not(:last-child) {
	border-bottom: solid 1px var(--mtl-border-gray);
}
#top_strengths ul li .ttl {
	width: 250px;
	flex-shrink: 0;
	margin-top: 8px;
}
#top_strengths ul li .ttl .mont {
	display: block;
	font-size: 0.875rem;	/* 14px */
	margin-bottom: 8px;
}
#top_strengths ul li .ttl .ja {
	font-size: 1.375rem;	/* 22px */
	font-weight: 500;
	line-height: 1.5;	/* 33/22 */
}
#top_strengths ul li p:not(.ttl) {
	width: 300px;	/* design is 260px */
	line-height: 2;	/* 16/32 */
}
#top_strengths ul li#item_translate .imgonly {
	padding-top: 40px;
}
#top_strengths ul li#item_tech .imgonly {
	padding-top: 13px;
}
#top_strengths ul li#item_quot .imgonly {
	padding-top: 18px;
}
#top_strengths ul li#item_web .imgonly {
	padding-top: 27px;
}
#top_strengths ul li#item_inbound .imgonly {
	padding-top: 24px;
}

#my-top #top_services {
}
#top_services h2 {
}
#top_services .desc {
	width: 100%;
	font-size: 1rem;
	line-height: 2.1875;	/* 16/35 */
	padding-left: 20px;
	margin-bottom: 165px;
}
ul.service-list {
	clear: both;
	display: flex;
	flex-wrap: wrap;
	margin-top: 125px;
}
ul.service-list li {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: calc((100% - 2px) / 3);
	padding: 0 30px;
}
ul.service-list li:not(:last-child) {
	border-right: solid 1px var(--mtl-border-gray);
}
ul.service-list li .imgonly {
	text-align: center;
	height: 220px;	/* Aki:画像高さを設定する事で下のタイトル位置を揃える  */
}
ul.service-list li .ttl {
	font-size: 1.3125rem;	/* 21px */
	font-weight: 700;
	text-align: center;
	margin: 30px 0 18px;
}
ul.service-list li p:not(.ttl) {	/* font-weight=300 in design */
	line-height: 2.1875;	/* 16/35 */
}
ul.service-list li .link {
	text-align: center;
	margin-top: auto;	/* Aki was 40px */
}


#my-top #top_works {
	background: url(/images/bg_top_works.svg)repeat-y center top var(--mtl-dark-blue);
	margin-bottom: 0;
}
#my-top #top_works .wall {
/*	border-color: #2e4b8c; Aki c/o */
}
#top_works h2 {
	color: white;
	width: 1200px;
	padding-top: 105px;
	margin: 0 auto 94px;
}
#top_works h2 a {
	color: white;
}
#top_works a {
	text-decoration: none;
}
#top_works .link {
	text-align: center;
	padding-bottom: 170px;
	margin-top: 95px;
}
#top_works a.linkbtn {
	color: var(--mtl-dark-blue);
	background-color: white;
}

#top_news {
	background-color: var(--mtl-light-gray);
}
#my-top section#top_news .wall {
	padding-bottom: 155px;
}
#top_news h2 {
}
#top_news h2::before, #top_news h2::after {
	bottom: auto;
	top: 0;
}
#top_news h2 a,  ul.news_list li a {
	text-decoration: none;
}
#top_news h2 a,
ul.news_list li a,
ul.news_list li a svg {
	color: inherit;
}
ul.news_list li a {
	display: flex;
	align-items: center;
	padding: 30px 20px;
}
ul.news_list {
	margin-top: 50px;
}
ul.news_list li {
	clear: both;
	border-bottom: solid 1px var(--mtl-border-gray);
}
ul.news_list li .date {
	width: 120px;
	font-size: 0.875rem;	/* 14px */
	padding-right: 40px;
}
ul.news_list li .title {
	width: calc(100% - 130px);
	letter-spacing: 0.1em;
	padding-right: 40px;
}
ul.news_list li svg {
	width: 10px;
}
#top_news .link {
	text-align: center;
	margin-top: 90px;
}
@media (any-hover: hover) {
	#top_news h2 a:hover {
		text-decoration: none;
	}
	ul.news_list li a:hover {
		color: var(--mtl-light-blue);
		text-decoration: none;
	}
}

/* Animation: 2025.12 KAZ */
@keyframes mtl_fade_in_up_first {
	  0% { opacity: 0; transform: translateY(50px); }
	 10% { opacity: 0; transform: translateY(50px); }
	 30% { opacity: 1; transform: translateY(0); }
	100% { opacity: 1; transform: translateY(0); }
}
@keyframes mtl_fade_in_up_last {
	  0% { opacity: 0; transform: translateY(50px); }
	 30% { opacity: 0; transform: translateY(50px); }
	 50% { opacity: 1; transform: translateY(0); }
	100% { opacity: 1; transform: translateY(0); }
}
@keyframes mtl_slide_up_right {
	  0% { transform: translate(-50px,50px); }
	 50% { transform: translate(0,0); }
	100% { transform: translate(0,0); }
}
@keyframes mtl_slide_down_left {
	  0% { transform: translate(50px,-50px); }
	 50% { transform: translate(0,0); }
	100% { transform: translate(0,0); }
}
@keyframes mtl_slide_right {
	  0% { transform: translateX(-50%); }
	 50% { transform: translateX(0); }
	100% { transform: translateX(0); }
}
@keyframes mtl_slide_right_slow {
	  0% { transform: translateX(-33%); }
	 50% { transform: translateX(0); }
	100% { transform: translateX(0); }
}
@keyframes mtl_slide_right_fast {
	  0% { transform: translateX(-75%); }
	 50% { transform: translateX(0); }
	100% { transform: translateX(0); }
}
@keyframes mtl_slide_left {
	  0% { transform: translateX(50%); }
	 50% { transform: translateX(0); }
	100% { transform: translateX(0); }
}
@keyframes mtl_slide_strengths01_arrow {
	  0% { transform: translateX(-75px); }
	 50% { transform: translateX(0); }
	100% { transform: translateX(0); }
}
@keyframes mtl_slide_strengths02_doc_left {
	  0% { transform: translate(70px,20px); }
	 50% { transform: translate(0,0); }
	100% { transform: translate(0,0); }
}
@keyframes mtl_slide_strengths02_doc_right {
	  0% { transform: translate(-70px,-20px); }
	 50% { transform: translate(0,0); }
	100% { transform: translate(0,0); }
}
@keyframes mtl_fade_in_strengths03_left {
	  0% { opacity: 0; }
	 10% { opacity: 0; }
	 20% { opacity: 1; }
	100% { opacity: 1; }
}
@keyframes mtl_slide_strengths03_arrow1 {
	  0% { transform: translate(-43px,34px); }
	 20% { transform: translate(-43px,34px); }
	 40% { transform: translate(0,0); }
	100% { transform: translate(0,0); }
}
@keyframes mtl_slide_strengths03_arrow2 {
	  0% { transform: translate(-43px,-34px); }
	 20% { transform: translate(-43px,-34px); }
	 40% { transform: translate(0,0); }
	100% { transform: translate(0,0); }
}
@keyframes mtl_fade_in_strengths03_right {
	  0% { opacity: 0; }
	 40% { opacity: 0; }
	 50% { opacity: 1; }
	100% { opacity: 1; }
}
@keyframes mtl_fade_in_strengths04_win1 {
	  0% { opacity: 0; }
	  8% { opacity: 0; }
	 17% { opacity: 1; }
	100% { opacity: 1; }
}
@keyframes mtl_fade_in_strengths04_win2 {
	  0% { opacity: 0; }
	 17% { opacity: 0; }
	 25% { opacity: 1; }
	100% { opacity: 1; }
}
@keyframes mtl_fade_in_strengths04_win3 {
	  0% { opacity: 0; }
	 25% { opacity: 0; }
	 33% { opacity: 1; }
	100% { opacity: 1; }
}
@keyframes mtl_fade_in_strengths04_win4 {
	  0% { opacity: 0; }
	 33% { opacity: 0; }
	 42% { opacity: 1; }
	100% { opacity: 1; }
}
@keyframes mtl_fade_in_strengths04_win5 {
	  0% { opacity: 0; }
	 42% { opacity: 0; }
	 50% { opacity: 1; }
	100% { opacity: 1; }
}
@keyframes mtl_rotate_strengths05_arc_countercw {
	  0% { transform: rotate(90deg); }
	 50% { transform: rotate(0deg); }
	100% { transform: rotate(0deg); }
}
@keyframes mtl_rotate_strengths05_arc_clockwise {
	  0% { transform: rotate(-90deg); }
	 50% { transform: rotate(0deg); }
	100% { transform: rotate(0deg); }
}
#top_about .img_wrap svg#img_about_translation #about_translation_char_ja,
#top_about .img_wrap svg#img_about_translation #about_translation_char_en,
ul.service-list li .imgonly svg#img_service_translation #service_translation_char_ja,
ul.service-list li .imgonly svg#img_service_translation #service_translation_char_en {
	opacity: 0;
	transform: translateY(50px);
}
#top_about .img_wrap svg#img_about_translation #about_translation_char_ja,
ul.service-list li .imgonly svg#img_service_translation #service_translation_char_ja {
	animation: mtl_fade_in_up_first 6s linear 1s infinite;
}
#top_about .img_wrap svg#img_about_translation #about_translation_char_en,
ul.service-list li .imgonly svg#img_service_translation #service_translation_char_en {
	animation: mtl_fade_in_up_last 6s linear 1s infinite;
}
#top_about .img_wrap svg#img_about_coding #about_coding_picture,
#top_about .img_wrap svg#img_about_coding #about_coding_lines,
ul.service-list li .imgonly svg#img_service_coding #service_coding_picture,
ul.service-list li .imgonly svg#img_service_coding #service_coding_lines,
ul.service-list li .imgonly svg#img_service_coding #service_coding_small {
	animation: mtl_slide_up_right 6s linear 1s infinite;
	transform: translate(-50px,50px);
}
#top_about .img_wrap svg#img_about_coding #about_coding_window,
#top_about .img_wrap svg#img_about_coding #about_coding_dots {
	animation: mtl_slide_down_left 6s linear 1s infinite;
	transform: translate(50px,-50px);
}
#top_about .img_wrap svg#img_about_inbound #about_inbound_cloud_right,
ul.service-list li .imgonly svg#img_service_inbound #service_inbound_cloud_right {
	animation: mtl_slide_right 6s linear 1s infinite;
	transform: translateX(-50%);
}
#top_about .img_wrap svg#img_about_inbound #about_inbound_cloud_left,
ul.service-list li .imgonly svg#img_service_inbound #service_inbound_cloud_left {
	animation: mtl_slide_left 6s linear 1s infinite;
	transform: translateX(50%);
}
#top_about .img_wrap svg#img_about_inbound #about_inbound_airplane,
ul.service-list li .imgonly svg#img_service_inbound #service_inbound_airplane {
	animation: mtl_slide_right_slow 6s linear 1s infinite;
	transform: translateX(-50%);
}
ul.service-list li .imgonly svg#img_service_inbound #service_inbound_traveler {
	animation: mtl_slide_right_fast 6s linear 1s infinite;
	transform: translateX(-75%);
}
#top_strengths ul li .imgonly svg#img_strengths01 #strengths01_arrow {
	animation: mtl_slide_strengths01_arrow 6s linear 1s infinite;
	transform: translateX(-75px);
}
#top_strengths ul li .imgonly svg#img_strengths02 #strengths02_doc_left {
	animation: mtl_slide_strengths02_doc_left 6s linear 1s infinite;
}
#top_strengths ul li .imgonly svg#img_strengths02 #strengths02_doc_right {
	animation: mtl_slide_strengths02_doc_right 6s linear 1s infinite;
}
#top_strengths ul li .imgonly svg#img_strengths03 #strengths03_left,
#top_strengths ul li .imgonly svg#img_strengths03 #strengths03_right {
	opacity: 0;
}
#top_strengths ul li .imgonly svg#img_strengths03 #strengths03_left {
	animation: mtl_fade_in_strengths03_left 6s linear 1s infinite;
}
#top_strengths ul li .imgonly svg#img_strengths03 #strengths03_arrow1 {
	animation: mtl_slide_strengths03_arrow1 6s linear 1s infinite;
	transform: translate(-43px,34px);
}
#top_strengths ul li .imgonly svg#img_strengths03 #strengths03_arrow2 {
	animation: mtl_slide_strengths03_arrow2 6s linear 1s infinite;
	transform: translate(-43px,-34px);
}
#top_strengths ul li .imgonly svg#img_strengths03 #strengths03_right {
	animation: mtl_fade_in_strengths03_right 6s linear 1s infinite;
}
#top_strengths ul li .imgonly svg#img_strengths04 #strengths04_win1,
#top_strengths ul li .imgonly svg#img_strengths04 #strengths04_win2,
#top_strengths ul li .imgonly svg#img_strengths04 #strengths04_win3,
#top_strengths ul li .imgonly svg#img_strengths04 #strengths04_win4,
#top_strengths ul li .imgonly svg#img_strengths04 #strengths04_win5 {
	opacity: 0;
}
#top_strengths ul li .imgonly svg#img_strengths04 #strengths04_win1 {
	animation: mtl_fade_in_strengths04_win1 6s linear 1s infinite;
}
#top_strengths ul li .imgonly svg#img_strengths04 #strengths04_win2 {
	animation: mtl_fade_in_strengths04_win2 6s linear 1s infinite;
}
#top_strengths ul li .imgonly svg#img_strengths04 #strengths04_win3 {
	animation: mtl_fade_in_strengths04_win3 6s linear 1s infinite;
}
#top_strengths ul li .imgonly svg#img_strengths04 #strengths04_win4 {
	animation: mtl_fade_in_strengths04_win4 6s linear 1s infinite;
}
#top_strengths ul li .imgonly svg#img_strengths04 #strengths04_win5 {
	animation: mtl_fade_in_strengths04_win5 6s linear 1s infinite;
}
#top_strengths ul li .imgonly svg#img_strengths05 #strengths05_arc_north,
#top_strengths ul li .imgonly svg#img_strengths05 #strengths05_arc_tokyo,
#top_strengths ul li .imgonly svg#img_strengths05 #strengths05_arc_south {
	transform-box: fill-box;
}
#top_strengths ul li .imgonly svg#img_strengths05 #strengths05_arc_north,
#top_strengths ul li .imgonly svg#img_strengths05 #strengths05_arc_tokyo {
	animation: mtl_rotate_strengths05_arc_countercw 6s linear 1s infinite;
	transform: rotate(90deg);
	transform-origin: bottom right;
}
#top_strengths ul li .imgonly svg#img_strengths05 #strengths05_arc_south {
	animation: mtl_rotate_strengths05_arc_clockwise 6s linear 1s infinite;
	transform: rotate(-90deg);
	transform-origin: bottom left;
}


/* Inquiry & Mitsumori Page Components
----------------------------------------------- */
.security_note {
	font-size: 0.875rem;	/* 14px */
	padding-left: 50px;
	margin: 20px 0;
}
.security_note a {	/* 02.2022 Aki */
	text-decoration: underline;
}
.security_note::after {
	left: 0;
}
body:not(#my-top) section#mitsumori_calc .wall {
	padding-bottom: 0;
}
body:not(#my-top) section:is(#mitsumori_quotation, #mitsumori_contact) .wall {
	padding-top: 0;
	padding-bottom: 0;
}
:is(#my-inquiry, #my-mitsumori) table :is(th, td) {
	border-bottom: 0;
}

#mitsumori_main td .note::before {
	content: "※";
	display: inline-block;
}
#mitsumori_main .transition {
	background: url(/images/bg_gray_triangle02.png) no-repeat center bottom;
	min-height: 116px;	/* KAZ: temporarily */
	padding: 25px 0 15px;
	text-align: center;
}
#mitsumori_main .transition::after {
	content: "";	/* Aki was (/images/arrow_down.png) */
	display: block;
	width: 100%;	/* Aki added */
	height: 36px;	/* Aki added */
	background: url(/images/arrow_down.png)no-repeat center bottom;
/*	padding-top: 10px; Aki c/o */
}
#mitsumori_main .inner_wall {
	width: 90%;
	margin: 0 auto;
}
#mitsumori_main .auto_quotation {
	background: url(/images/arrow_down.png) no-repeat center bottom, url(/images/bg_gray_triangle01.png) no-repeat center bottom #F4F4F4;
	padding-bottom: 25px;
}
#mitsumori_main .auto_quotation table.separate {
	border-collapse: separate;
	border-spacing: 0 20px;
	border-top: 0;
	border-bottom: 0;
}
#mitsumori_main .auto_quotation tr {
/*	background-color: white; Aki c/o*/
	box-shadow: 0px 2px 6px rgb(0 0 0 / 16%);
	border-radius: 10px;
}
#mitsumori_main .auto_quotation th, #mitsumori_main .auto_quotation td,
#mitsumori_main .inquiry_wrapper table#order th, #mitsumori_main .inquiry_wrapper table#order td {
	background-color: white;
/*	border-top: solid 1px #707070;
	border-bottom: solid 1px #707070;
	border-left: solid 1px #707070; */
	padding: 16px 20px 10px;
}
#mitsumori_main .auto_quotation th,
#mitsumori_main .inquiry_wrapper table#order th,
#mitsumori_main .inquiry_wrapper table#orderer_info th,
#my-inquiry table th {
	width: 260px;	/* 05.2022 Aki was 240px */
	font-size: 1.25rem;	/* 20px */
	line-height: 1.5;	/* 2025.12 Aki added */
	font-weight: bold;
	border-right: 0;
	border-radius: 10px 0 0 10px;
	padding-right: 0;
}
#mitsumori_main .inquiry_wrapper table#orderer_info tr:first-child th {
	border-top-left-radius: 10px;
}
#mitsumori_main .inquiry_wrapper table#orderer_info tr:first-child td {
	border-top-right-radius: 10px;
}
#mitsumori_main .auto_quotation td,
#mitsumori_main .inquiry_wrapper table#order td {
	font-size: 1.125rem;	/* 18px */
	line-height: 1.5;	/* 2025.12 Aki added */
	border-right: solid 1px var(--mtl-border-gray);
	border-left: 0;
	border-bottom: 0;
	border-radius: 0 10px 10px 0;
	padding-left: 0;
}
#mitsumori_main .auto_quotation table.noborder :is(th, td) {
	font-size: 100%;
	font-weight: normal;
	border: 0;
	padding: 0;
}
#mitsumori_main .auto_quotation table.noborder {
	margin: 0;
}
#mitsumori_main .auto_quotation table.noborder tr {
	box-shadow: none;
}
#mitsumori_main .auto_quotation table.noborder th {
	width: 115px;
}
#mitsumori_main .auto_quotation tr.fromja th {
	padding-top: 3px;
}
#mitsumori_main .auto_quotation tr.fromeng th {
	padding-top: 23px;
}
#mitsumori_main .auto_quotation tr.fromja th, #mitsumori_main .auto_quotation tr.fromja td {
	padding-bottom: 20px;
}
#mitsumori_main .auto_quotation tr.fromeng {
	border-top: solid 1px #B4AFAF;
}
#mitsumori_main .auto_quotation tr.fromeng td {
	padding-top: 20px;
}
#mitsumori_main .auto_quotation td .note {
	font-size: 0.875rem;	/* 14px */
	line-height: 1.57;
	background: url(/images/arrow_right.png) no-repeat bottom 2px left 5px;
	padding: 10px 0 0 10px;
}
#mitsumori_main #quotation,
#mitsumori_main .inquiry_wrapper table#order tr,
#mitsumori_main .inquiry_wrapper table#orderer_info,
#my-inquiry #contactform table {
	border-radius: 10px;
	box-shadow: 0px 2px 6px rgb(0 0 0 / 16%);
}
#mitsumori_main .inquiry_wrapper table p,
#my-inquiry #contactform table p {
	margin-top: 0;	/* 2025.12 Aki added */
	margin-bottom: 0;
}
#mitsumori_main #quotation {
	border: solid 1px var(--mtl-border-gray);
	border-radius: 10px;
	padding: 16px 0 10px 20px;
}
#mitsumori_main #quotation h3 {
	font-size: 1.25rem;	/* 20px */
	color: var(--mtl-pink);
	height: auto;
	line-height: 1.5;
	border: 0;
	margin: 0;
}
#mitsumori_main #quotation h3::before, #mitsumori_main .after_order h3::before {
	content: none;
}
#mitsumori_main #quotation table {
	border-bottom: 0;
	margin-bottom: 0;
}
#mitsumori_main #quotation th, #mitsumori_main #quotation td {
	background-color: white;
	font-size: 1.25rem;	/* 20px */
	line-height: 1.5;	/* 2025.12 Aki added */
	border: 0;
	padding: 0;
}
#mitsumori_main #quotation th {
	width: 210px;
	text-align: right;
	font-weight: bold;
	padding-right: 50px;
}
#mitsumori_main #quotation td#amount {
	font-weight: bold;
}
#mitsumori_main #quotation td .note {
	display: inline-block;
	font-size: 0.875rem;	/* 14px */
	padding-left: 30px;
}
#mitsumori_main .entry-content .wall .quotation_wrap {
	padding-top: 20px;
}
#mitsumori_main .inquiry_wrapper {
	background: var(--mtl-light-gray);
}
#mitsumori_main .inquiry_wrapper table,
#my-inquiry #contactform table {
	border-collapse: separate;
	border-top: 0;
	margin: 0 auto;
}
#my-inquiry table tr:first-child th {
	border-top-left-radius: 10px;
}
#my-inquiry table tr:last-child th {
	border-bottom-left-radius: 10px;
}
#my-inquiry table tr:first-child td {
	border-top-right-radius: 10px;
}
#my-inquiry table tr:last-child td {
	border-bottom-right-radius: 10px;
}
#mitsumori_main .inquiry_wrapper th, #mitsumori_main .inquiry_wrapper td {
	border: 0;
}
#mitsumori_main .inquiry_wrapper table#order td .wpcf7-list-item {
	display: block;
}
#mitsumori_main .inquiry_wrapper table#orderer_info,
#my-inquiry #contactform table {
	background: white;
	border: solid 1px var(--mtl-border-gray);
	border-radius: 10px;
	margin-top: 20px;
}
#mitsumori_main .inquiry_wrapper table#orderer_info th, #mitsumori_main .inquiry_wrapper table#orderer_info td,
#my-inquiry table :is(th, td) {
	background: white;
	border-top: solid 1px var(--mtl-border-gray);
}
#my-inquiry table th,
#mitsumori_main .inquiry_wrapper table#orderer_info th {
	color: var(--mtl-light-blue);
	border-right: 0;
	border-radius: 0;
	padding: 20px 0 16px 10px;	/* 2025.12 Aki top was 16px */
}
#mitsumori_main .inquiry_wrapper table#orderer_info th .required,
#my-inquiry table th .required {
	color: red;
	font-size: 0.75rem;	/* 12px */
	font-weight: normal;
	vertical-align: text-top;
}
#mitsumori_main .inquiry_wrapper table#orderer_info :is(th, td) .note,
#my-inquiry table :is(th, td) .note {
	display: inline-block;
	width: 90%;
	font-size: 0.875rem;	/* 14px */
	font-weight: normal;
	padding-top: 22px;
}
#mitsumori_main .inquiry_wrapper table#orderer_info tr.phone td .note {	/* DEC-2021 KAZ: added tr.phone */
	padding-top: 0;
}
#mitsumori_main .inquiry_wrapper table#orderer_info td {
	padding: 9px 0;
}
#mitsumori_main .inquiry_wrapper .wpcf7-form-mode-confirm table#orderer_info td {
	padding: 19px 0;	/* NOV-2021 KAZ */
}
#mitsumori_main .inquiry_wrapper table#orderer_info th.last_line,
#mitsumori_main .inquiry_wrapper table#orderer_info td.last_line,
#my-inquiry table th.last_line,
#my-inquiry table td.last_line {
	border-bottom: 0;
}
#mitsumori_main .inquiry_wrapper table#orderer_info th.last_line,
#my-inquiry table th.last_line {
	border-bottom-left-radius: 10px;
}
#mitsumori_main .inquiry_wrapper table#orderer_info td.last_line,
#my-inquiry table td.last_line {
	border-bottom-right-radius: 10px;
}
/* #mitsumori_main .inquiry_wrapper p {	/* 05.2022 Aki * /
	margin-top: 25px; 2026.2 Aki c/o */
}
#mitsumori_main .after_order,
#my-inquiry #note .descr {	/* 09.2022 Aki added */
	overflow: hidden;
	background-color: white;
	border: solid 1px var(--mtl-border-gray);
	border-radius: 10px;
	padding: 16px 0 12px 20px;
}
#mitsumori_main .after_order h3 {
	display: inline-block;
	font-size: 1.25rem;	/* 20px */
	border-bottom: 0;
	width: auto;
	height: auto;
	line-height: inherit;
	float: left;
	margin: 0 100px 0 0;
}
#mitsumori_main .after_order .descr {
	float: left;
	font-size: 1.125rem;	/* 18px */
	margin-bottom: 0;
}
#mitsumori_main #after .general_note {
	width: 784px;
	padding-top: 43px;
	margin: auto;
}
#mitsumori_main .general_inquiry_banner {
	text-align: center;
	margin-top: -40px;
}
#after #main section::before {
	content: none;
}
#mitsumori_main .bottom_wrap,
#my-inquiry .bottom_wrap {
}

/* Form Parts */
#mitsumori_main .auto_quotation td .droparea {
	border: dashed 1px;
	border-radius: 5px;
	position: relative;	/* KAZ */
	height: 140px;
	padding: 20px 0;
	text-align: center;
}
#mitsumori_main .auto_quotation td .droparea #docx_progress {	/* KAZ */
	background-color: #000080;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: white;
}
#mitsumori_main .auto_quotation label, #my-inquiry .auto_quotation label {
	display: inline-block;
/*	padding: 2px 0;	10.2021 Aki */
}
#mitsumori_main input[type="file"] {
}
#mitsumori_main textarea[name="source"],
#mitsumori_main input[name="direct_charwords"] {	/* NOV-2021 KAZ */
	background: white;
	border-color: #969393;
	border-radius: 5px;
	box-shadow: none;
}
#mitsumori_main textarea[name="source"] {
	height: 140px;
	padding: 17px 24px 0;	/* NOV-2021 KAZ: was 17px 0 0 24px */
}
#mitsumori_main input[name="direct_charwords"] {	/* NOV-2021 KAZ */
	padding: 17px 24px;
}
p.submit-button {
	text-align: center;
}
.wpcf7-spinner {
	display: block !important;
}
#mitsumori_main button[type=submit],
#mitsumori_main input[type=submit],
#mitsumori_main .buttons-area input[type="button"],	/* KAZ */
#mitsumori_main .buttons-area-confirm input[type="button"],
#my-inquiry form:not(#searchform) .submit-button input[type=submit],
#my-inquiry form:not(#searchform) .buttons-area input[type="button"],
#my-inquiry form:not(#searchform) .buttons-area-confirm input[type="button"] {	/* KAZ *//* 05.2022 Aki */
	-webkit-appearance: none;	/* KAZ */
	appearance: none;	/* KAZ */
	background-color: var(--mtl-dark-blue);	/* was white from chkHTML */
	border: solid 1px var(--mtl-border-gray);
	border-radius: 30px;	/* was 5px from chkHTML */
	width: 200px; /* was 340px */
	height: 60px;	/* was 40px */
/*	padding-left: 20px; */
	line-height: 37px;
	color: white;	/* was var(--mtl-pink) from chkHTML */
	font-size: 1rem;	/* was 1.25rem = 20px from chkHTML */
	text-align: center;	/* was left */
}
#mitsumori_main button[type=submit] {	/* KAZ */
	width: 340px;
	padding-left: 20px;
}
#mitsumori_main input[type=submit],
#mitsumori_main .buttons-area input[type="button"],
#mitsumori_main .buttons-area-confirm input[type="button"],
#my-inquiry form:not(#searchform) input[type=submit],
#my-inquiry form:not(#searchform) .buttons-area input[type="button"],
#my-inquiry form:not(#searchform) .buttons-area-confirm input[type="button"] {	/* KAZ *//* 05.2022 Aki */
	padding: 0 1em;	/* 2025.11 Aki was 0.15em 0.5em 0 */
}
#mitsumori_main input[type=submit], #my-inquiry .submit-button input[type=submit] {	/* 05.2022 Aki */
	width: 120px;
	text-align: center;	/* KAZ */
}
#mitsumori_main .inquiry_wrapper input[type=text],
#mitsumori_main .inquiry_wrapper input[type=email],
#mitsumori_main .inquiry_wrapper select,
#mitsumori_main .inquiry_wrapper textarea,
#my-inquiry form:not(#searchform) input[type=text],
#my-inquiry form:not(#searchform) input[type=email],
#my-inquiry form:not(#searchform) select
{
	height: 44px;
	background-color: white;
	border-color: var(--mtl-border-gray);
	border-radius: 5px;
}
#mitsumori_main .inquiry_wrapper select,
#my-inquiry form:not(#searchform) select {
	width: 250px;
}
#mitsumori_main .inquiry_wrapper textarea {
	height: 147px;
}
#mitsumori_main input[type="radio"], 
#my-inquiry form:not(#searchform) input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	background: white;
	border: 1px solid var(--mtl-border-gray);
	border-radius: 50%;
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	left: 5px;
	margin-top: -10px;
	position: absolute;
	top: 50%;
	box-shadow: 2px 3px 6px rgb(0 0 0 / 16%) inset;
}
#mitsumori_main .radio01,
#mitsumori_main .wpcf7-radio label,
#my-inquiry form:not(#searchform) .wpcf7-radio label {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	padding: 2px 0 0 35px;
	position: relative;
	width: auto;
}
#mitsumori_main input[type="radio"]:checked, 
#my-inquiry form:not(#searchform) input[type="radio"]:checked {
	background: radial-gradient(var(--mtl-pink) 45%, #FFFFFF 60%);
	box-shadow: none;
}
#mitsumori_main .inquiry_wrapper input[type="radio"]:disabled {
	border-style: dashed;	/* MAY-2022 KAZ; ChkHTML */
}
#mitsumori_main .inquiry_wrapper input[type="radio"]:disabled + .wpcf7-list-item-label {
	color: #b7b7b7;	/* MAY-2022 KAZ; ChkHTML */
}
#mitsumori_main .inquiry_wrapper .wpcf7-response-output.wpcf7-mail-sent-ok,
#my-inquiry .wpcf7-form .wpcf7-mail-sent-ok {	/* JAN-2022 KAZ */
	display: none !important;	/* NOV-2021 KAZ */
}
#mitsumori_main section#after .wall {	/* 2025.12 Aki */
	width: 1160px;
	background: white;
	padding-top: 20px;
	padding-bottom: 50px;
	margin-bottom: 100px;
}
#mitsumori_main .after_order {	/* 2026.2 Aki */
	overflow: hidden;
	background: white;
	border: solid 1px var(--mtl-border-gray);
	border-radius: 10px;
	padding: 20px;
}

/* 問い合わせページ */
#my-inquiry #contactform .wall {
	padding-bottom: 0;
}
#my-inquiry section#note {
	padding-top: 20px;
}
#my-inquiry section#note .wall {
	padding-top: 0;
}
#my-inquiry section#note p {
	border: solid 1px var(--mtl-border-gray);
	border-radius: 10px;
	padding: 20px;
}
#my-inquiry table td {
	vertical-align: middle;
	padding: 16px;
}
div.wpcf7-display-none {	/* 09.2022 Aki added */
	display: none !important;
}

/* Thanksページ */
#my-mitsumori .entry-content #thanks, #my-inquiry .entry-content #thanks {
	overflow: inherit;
	text-align: center;
}
#my-mitsumori .entry-content #thanks .wall, #my-inquiry .entry-content #thanks .wall {
	padding-bottom: 25px;
}
#thanks .descr.second {
	font-size: 120%;
	font-weight: bold;
}
#thanks .btn_line.linkbtn a {
	width: 400px;
	font-weight: bold;
	margin: 0 auto 25px;
}
#thanks .btn_line.linkbtn a:hover {
	text-decoration: none;
}


/* Fixed Page Components
----------------------------------------------- */
.pconly {
	display: block;
}
.sponly {
	display: none;
}
section > .wall {
	margin-inline: auto;
}

/* Child Page Header */
#branding .introdction {
	padding-top: 90px;
}
#branding .introdction .wall {
	display: flex;
}
#branding .introdction p {
	color: white;
}
#branding .introdction .copy {
	flex-shrink: 0;
	width: 600px;
	font-size: 1.875rem;	/* 30px */
}
#branding .introdction p:not(.copy) {
	font-size: 1.125rem;	/* 18px */
	line-height: 2;	/* 18/36 */
}
#branding .page-title {
	text-align: left;
	padding-left: 20px;
}

/* Child Page Common */
body:not(#my-top) section .wall {
	line-height: 2.1875;	/* 16/35 */
	letter-spacing: 0.02em;
	padding: 95px 20px 100px;
}
body:not(#my-top) section .wall.flex {
	display: flex;
}
body:not(#my-top) section .wall.flex .side {
	width: 280px;
	flex-shrink: 0;
}
section .wall.flex .contents {
	width: calc(100% - 280px);
	padding-left: 20px;
}
section .wall.flex .contents.has_leftborder {
	position: relative;
	padding-left: 0;
}
section .wall.flex .contents.has_leftborder::before {
	content: "";
	display: block;
	width: 1px;
	height: calc(100% + 195px);	/* wallについているpadding上下の分(95px+100px) */
	background-color: var(--mtl-border-gray);
	position: absolute;
	left: 0;
	top: -95px;
}
section.blue .wall.flex .contents.has_leftborder::before {
	background-color: var(--mtl-border-blue);
}
section .wall.flex .contents.has_leftborder p {
	padding-left: 20px;
}
section h2 .ja,
:is(#my-tran, #my-mt, #my-web) #secondary h2 .ja {
	display: block;
	font-size: 1.75rem;	/* 28px */
	letter-spacing: 0.08em;
}
section h2 .en,
:is(#my-tran, #my-mt, #my-web) #secondary h2 .en {
	display: block;
	color: var(--mtl-text-light-blue);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: normal;
}
body:not(#my-top) section h2 .notice {
	font-size: 0.875rem;	/* 14px */
	font-weight: 400;
}
body:not(#my-top) section h2 .text {
	display: block;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 2;	/* 18/36 */
	margin-top: 15px;
}
body:not(#my-top) section.gray {
	background-color: var(--mtl-light-gray);
}
body:not(#my-top) section.blue {
	color: white;
	background-color: var(--mtl-txt-blue);
}
body:not(#my-top) section .wall ul > li {
}
h3, p.hasmark {
	display: flex;
	align-items: center;
}
p.hasmark {
	font-size: 1.25rem;	/* 20px */
	font-weight: 700;
	letter-spacing: 0.02em;
}
h3::before,
p.hasmark::before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: var(--mtl-pale-green);
	margin-right: 12px;
	flex-shrink: 0;
}
section h2.hasdesc {
	float: left;
	font-size: 1.875rem;	/* 30px */
	line-height: 2;	/* 30/60 */
	letter-spacing: 0.088em;
}
section p.desc {
	overflow: hidden;
	width: 50%;
	font-size: 1.125rem;	/* 18px */
	line-height: 2;	/* 18/36 */
	padding-left: 20px;
	margin-left: auto;
}
.contents.has_leftborder :is(dl, ul) {
	width: calc(100% + 20px);	/* wall外のpadding分 */
}
dl.hasline {
	border-bottom: solid 1px var(--mtl-border-gray);
	margin-bottom: 90px;
}
dl.hasline.last {
	margin-bottom: 0;
}
dl.hasline :is(dt, dd) {
	border-top: solid 1px var(--mtl-border-gray);
	padding-top: 15px;
	padding-bottom: 20px;
	margin: 0;
}
dl.hasline dt {
	width: 160px;
	float: left;
	font-weight: 500;
	padding-left: 20px;
}
dl.hasline dd {
	overflow: hidden;
	line-height: 2.1875;	/*16/35 */
}
ul.links {
	list-style: none;
	border-top: solid 1px var(--mtl-border-gray);
	margin: 0;
}
ul.links > li {
	border-bottom: solid 1px var(--mtl-border-gray);
}
ul.links > li a {
	display: block;
	font-size: 1.125rem;	/* 18px */
	font-weight: 700;
	text-decoration: none;
	padding: 50px 0 50px 20px;
}
ul.links > li a::after {
	left: auto;
	right: 20px;
}
@media (any-hover: hover) {
	ul.links > li a:hover {
		color: var(--mtl-light-blue);
		background-color: white;
	}
}
.page-template-page-sidebar:is(#my-tran, #my-mt, #my-web) #primary section.faq {
	width: calc(100% + 40px);
	margin-left: -20px;
}
section.faq h2 {
	padding-left: 20px;
}
section.faq details {
	font-weight: 500;
	line-height: 1.5;
}
section.faq details :is(summary, .answer) {
	list-style-type: none;
	background: url(/images/ic_question.svg)no-repeat left 20px top 40px;
	padding: 30px 70px 24px;
}
section.faq details summary {
	position: relative;
	cursor: pointer;
	font-size: 1.125rem;	/* 18px */
	border-top: solid 1px var(--mtl-border-gray);
	padding: 30px 70px 24px;
}
section.faq details[open] summary {
	border-bottom: solid 1px var(--mtl-border-gray);
}
section.faq details summary::after {
	content: "";
	display: inline-block;
	background: url(/images/ic_plus.svg)no-repeat center/cover;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translatey(-50%);
}
section.faq details[open] summary::after {
	background-image: url(/images/ic_minus.svg);
	height: 3px;
}
section.faq summary::-webkit-details-marker {
	display: none;
}
section.faq details .answer {
	background-image: url(/images/ic_answer.svg);
	background-position-y: 28px;
	background-color: var(--mtl-light-gray);
	padding: 20px 70px 15px;
	margin-bottom: 0;
}

section .flex_wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}
section .flex_wrapper.center {
	justify-content: center;
}
section .flex_wrapper figure {
	max-width: calc((100% - 50px) / 3);
}
section .flex_wrapper figure img {
	aspect-ratio: 4/3;
	object-fit: cover;
	object-position: top;
}

/* エムティラボとは */
#my-company #branding {
	height: 900px;
}
#company_profile .wall {
	padding-bottom: 50px;
}
#company_profile dl, :is(#company_clients, #works_clients) ul {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	max-height: 970px;	/* 2026.1 Aki was 850px from chkHTML */
}
#company_profile :is(dt, dd) {
	width: 50%;
	padding-right: 20px;
}

:is(#company_clients, #company_philosophy) p {
	letter-spacing: 0.05em;
}
:is(#company_clients, #works_clients) ul {
	height: 250px;
}
:is(#company_clients, #works_clients) > li {
	width: 50%;
}

#company_philosophy p.hasmark {
	font-size: 1.4375rem;	/* 23px */
	font-weight: 500;
	letter-spacing: 0.088em;
	margin: 45px 0 5px;
}
#company_philosophy p:not(.hasmark) {
	margin-bottom: 0;
}

#company_history {
}
section#company_history .wall {
	padding-right: 0;
}
table.history {
	letter-spacing: 0.05em;
	border: 0;
}
table.history :is(th, td) {
	border-top: 0;
	border-bottom: solid 1px var(--mtl-border-gray);
}
table.history th {
	border-right: 0;
}
table.history th.year {
	width: 100px;
	font-size: 1.5625rem;	/* 25px */
	font-weight: 500;
	padding: 9px 0;
}
table.history th.month {
	width: 60px;
	padding: 18px 0;
}
table.history td {
	line-height: 2.5;	/* 16/40 */
	padding: 15px 30px 15px 0;
}

#company_service h2 {
	display: inline-block;
	float: left;
	margin-right: 120px;
}
#company_service p.desc {
	font-size: 1.125rem;	/* 18px */
	margin-top: 5px;
}

/* 採用情報 */
#recruit_contact .link {
	text-align: right;
	margin-top: 8px;
}

/* プライバシーポリシー */
#policy_link .banner_wrap img {
	margin-right: 20px;
}

/* 翻訳 / WEB */
:is(#my-tran, #my-mt, #my-web) #secondary h2 a {
	text-decoration: none;
}
.page-template-page-sidebar:is(#my-tran, #my-mt, #my-web) #mainwall {
	width: calc( 1200px + ( (100% - 1200px) / 2 ) );
	display: flex;
	justify-content: flex-end;
	margin-left: 0;
	margin-right: auto;
}
.page-template-default:is(#my-tran, #my-mt, #my-web) #mainwall {
}
:is(#my-tran, #my-mt, #my-web) #secondary {
	float: none;
	width: calc(100% - 900px);
	min-width: 400px;
}
:is(#my-tran, #my-mt, #my-web) #secondary .sidebar_inner {
	width: 400px;
	padding-top: 95px;
	padding-right: 20px;
	padding-left: 20px;	/* 2026.1 Aki added from chkHTML */
	margin-left: auto;
	margin-right: 0;
}
#secondary ul.child_menu_list {
	border-top: solid 1px var(--mtl-border-gray);
	margin-bottom: 100px;
}
#secondary ul.child_menu_list > li a {
	text-decoration: none;
	font-weight: 500;
	display: flex;
	align-items: center;
	border-bottom: solid 1px var(--mtl-border-gray);
	padding: 20px 0;
}
#secondary ul.child_menu_list > li a::after {
	content: "";
	display: inline-block;
	background: url(/images/arrow_blue.svg)no-repeat center left 8px / 7px auto;
	width: 24px;
	height: 24px;
	border: solid 1px var(--mtl-dark-blue);
	border-radius: 50%;
	margin-left: auto;
	margin-right: 80px;
}
#secondary ul.child_menu_list > li a.current {
	color: var(--mtl-text-light-blue);
}
#secondary ul.child_menu_list > li a.current::after {
	background-color: var(--mtl-yellow);
	margin-right: 75px;
}
#secondary ul.mt_list {
	margin-top: 100px;
}

@media (any-hover: hover) {
	:is(#my-tran, #my-mt, #my-web) #secondary h2 a:hover {
		opacity: 0.75;
	}
	#secondary ul.child_menu_list > li a:hover {
		color: var(--mtl-text-light-blue);
	}
	#secondary ul.child_menu_list > li a:hover::after {
		background-color: var(--mtl-yellow);
		margin-right: 75px;
	}
}

.page-template-page-sidebar:is(#my-tran, #my-mt, #my-web) #primary {
	float: none;
	width: 900px;
	border-right: solid 1px var(--mtl-border-gray);
	border-left: solid 1px var(--mtl-border-gray);
	padding: 0 20px;
}
.page-template-page-sidebar:is(#my-tran, #my-mt, #my-web) #primary section {
	overflow: hidden;
	line-height: 2;	/* 2026.1 Aki added from chkHTML */
	margin-top: 95px;
	margin-bottom: 90px;
}
.page-template-page-sidebar:is(#my-tran, #my-mt, #my-web) #primary section > .wall {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}
:is(#my-tran, #my-mt, #my-web) #primary section:not(:last-child) > .wall {
	padding-bottom: 0;	/* 空きすぎなので狭めた */
}
.page-template-page-sidebar:is(#my-tran, #my-mt, #my-web) #primary section p:not(.answer) {
	max-width: 680px;
	line-height: 2;	/* 16/32 */
}
.page-template-page-sidebar:is(#my-tran, #my-mt, #my-web) #primary section :is(h2, h3, h4, h5) + p,
.page-template-page-sidebar:is(#my-tran, #my-mt, #my-web) #primary section figure + p {
	max-width: none !important;
	margin-top: 30px;
}

ol.flow {
	width: calc(100% + 40px);
	border-top: solid 1px var(--mtl-border-gray);
	border-bottom: solid 1px var(--mtl-border-gray);
	margin-left: -20px;
}
ol.flow li {
	clear: both;
	position: relative;
	padding-top: 20px;
}
ol.flow li:not(:last-child)::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border-left: 1px dashed;
	position: absolute;
	top: 30px;
	left: 73px;
}
ol.flow li .num {
	position: relative;
	display: inline-block;
	width: 47px;
	height: 47px;
	font-size: 1.125rem;	/* 18px */
	text-align: center;
	letter-spacing: 0.05em;
	background-color: white;
	border: solid 1px var(--mtl-dark-blue);
	border-radius: 50%;
	padding-top: 10px;	/* was 4px  */
	float: left;
	margin-left: 50px;
	z-index: 1;
}
ol.flow li .num.colored {
	color: white;
	background-color: var(--mtl-dark-blue);
}
ol.flow li .ttl {
	font-size: 1.25rem;	/* 20px */
	letter-spacing: 0.08em;
	font-weight: 500;
	margin-top: 5px;
	margin-bottom: 5px;
}
ol.flow li p {
	margin-left: 130px;
	margin-right: 50px;
}
ol.flow li p:not(.ttl) {
	overflow: hidden;
	letter-spacing: 0.05em;
	line-height: 2;	/* 16/32 */
	border-bottom: solid 1px var(--mtl-border-gray);
	padding-bottom: 16px;
	margin-bottom: 0;
}
ol.flow li:last-child p:not(.ttl) {
	border-bottom: 0;
}

/* 翻訳 */
#secondary ul.child_menu_list#tran_list > li:nth-last-child(3) {
	border-top: solid 1px var(--mtl-border-gray);
	margin-top: 100px;
}


/* WEB */
body:not(#my-top) section#web_reason .wall {
	padding-top: 35px;
}
#works_menu .wall {
	padding-left: 20px !important;
	padding-bottom: 100px !important;
}

/* サイトマップ */
section.sitemap {
}
section.sitemap ul li a {
	text-decoration: none;
	font-weight: 600;
}
ul.site_parent {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 25px;
}
ul.site_parent > li:first-child {
	width: 100%;
}
ul.site_parent > li a {
	position: relative;
	background: white;
	padding-right: 5px;
}
ul.site_parent > li.haschild {
	display: flex;
	align-items: flex-start;
}
ul.site_parent > li.haschild .inner {
	position: relative;
	min-width: 150px;
}
ul.site_parent > li.haschild > a {
	position: relative;
}
ul.site_parent > li.alone {
	min-width: 250px;
}
ul.site_parent > li:is(.haschild, .alone)::before {
	content: "";
	display: inline-block;
	width: 13px;
	height: 13px;
	background: var(--mtl-pale-green);
	border-radius: 50%;
	margin-top: 7px;
	margin-right: 5px;
}
ul.site_child {
	position: relative;
	min-width: 200px;
}
ul.site_child > li a {
	position: relative;
}
ul.site_parent > li.haschild .inner::before,
ul.site_child::after,
ul.site_child > li a::before,
ul.site_child > li a::after {
	content: "";
	display: inline-block;
	background: var(--mtl-border-gray);
	height: 1px;
	position: absolute;
}
ul.site_parent > li.haschild .inner::before {
	width: calc(100% - 15px);
	top: 0.8em;
	left: 0;
}
ul.site_child::after {
	background: white;
	width: 4px;
	height: 30px;
	left: -22px;
	bottom: -8px;
}
ul.site_child > li a::before {
	width: 15px;
	left: -20px;
	top: 0.8em;
}
ul.site_child > li a::after {
	width: 35px;
	transform: rotate(90deg);
	left: -38px;
	bottom: -8px;
}

@media (any-hover: hover) {
	section.sitemap ul li a:hover {
		color: var(--mtl-text-light-blue);
	}
}


/* =Print
----------------------------------------------- */
@media print {
	#masthead {
		position: relative;	/* 印刷時は追従させない = 何度も印刷煮出さない */
	}
	.contact_wrap_follow {
		display: none;
	}
}