@charset "UTF-8";
:root {
	--color-text: #1F2C5C;
	--color-white: #fff;
	--color-line-common: #E9E9E9;
	--color-line: #8A9CA1;
	--color-line-plus: #D2E1DD;
	--color-bt-line: #D9D9D9;
	--color-accent: #138778;
	--color-ijin-main: #764E4E;
	--color-ijin-main-light: #B77A7A;
	--color-yukarimap-main: #C1B284;
	--color-yukarimap-dark: #A49772;
	--color-base-plus: #DEEBED;
	--color-base: #F7F9F7;
	--color-back: #F0EDED;
	--color-link-text: #1F7BAD;
	--color-number-default: #4358A3;
	--font-gothic: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--font-mincho: "Zen Antique Soft", serif;
	--font-lato: "Lato", sans-serif;
}
body {
	background: var(--color-white);
	color: var(--color-text);
	font-family: var(--font-gothic);
	font-size: 16px;
	line-height: 2.2;
	overflow-wrap: break-word;
	letter-spacing: 0.04em;
}
a {
	color: inherit;
}
a:focus-visible {
	outline-color: #025ecc;
	outline-offset: 1px;
	outline-style: auto;
}
a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
	color: inherit;
	pointer-events: none;
}
button:focus-visible {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
textarea,
[type="search"],
[type="date"],
[type="tel"],
[type="email"],
[type="number"],
[type="password"],
[type="text"] {
	-webkit-appearance: none;
	appearance: none;
	font-size: inherit;
	padding: 8px 15px;
	border: 1px solid #aaa;
	border-radius: 4px;
	box-sizing: border-box;
	width: 100%;
	line-height: inherit;
	resize: vertical;
	display: block;
	line-height: 24px;
}
[data-animation] {
	transition-duration: 1s;
	transition-delay: .2s;
	transition-property: opacity;
	opacity: 0;
}
[data-animation="after"] {
	opacity: 1;
}
[data-animation][data-animation-type="fadeInRight"] {
	transition-property: opacity, transform;
	transform: translateX(-20px);
}
[data-animation="after"][data-animation-type="fadeInRight"] {
	transform: translateX(0);
}
[data-animation][data-animation-type="fadeInLeft"] {
	transition-property: opacity, transform;
	transform: translateX(20px);
}
[data-animation="after"][data-animation-type="fadeInLeft"] {
	transform: translateX(0);
}
[data-animation][data-animation-type="fadeInUp"] {
	transition-property: opacity, transform;
	transform: translateY(20px);
}
[data-animation="after"][data-animation-type="fadeInUp"] {
	transform: translateY(0);
}
[data-animation][data-animation-type="fadeZoomOut"] {
	transition-property: opacity, transform;
	transform: scale(1.05);
}
[data-animation="after"][data-animation-type="fadeZoomOut"] {
	transform: scale(1);
}
::-webkit-input-placeholder {
	color: #ccc;
}
:-ms-input-placeholder {
	color: #ccc;
}
::placeholder {
	color: #ccc
}
.icon {
	vertical-align: middle;
	display: inline-block;
	position: relative;
	min-width: 1em;
}
.icon::before {
	display: block;
}
.u-inner {
	max-width: 1152px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
.u-ttl {
	font-size: 26px;
	line-height: 1.4;
	margin-bottom: 34px;
	font-weight: bold;
	border-bottom: 1px solid var(--color-line-plus);
	position: relative;
	padding-left: 20px;
	padding-bottom: 21px;
	letter-spacing: 0.01em;
}
.u-ttl::before {
	content: "";
	display: block;
	width: 6px;
	height: calc(100% - 27px);
	position: absolute;
	top: calc(50% - 10px);
	left: 0;
	background-color: var(--color-accent);
	border-radius: 10px;
	transform: translateY(-50%);
}
.u-ttl-mirai {
	margin-bottom: 20px;
}
.u-ttl-mirai::before {
	background-color: var(--color-yukarimap-dark);
}
.u-ttl-large::before {
	height: calc(100% - 8px);
	top: 50%;
}
.u-tbl {
	width: 100%;
}
.u-tbl > thead {}
.u-tbl > thead > tr {}
.u-tbl > thead > tr > th {
	padding: 7px 10px;
	border: 1px solid #ddd;
	white-space: nowrap;
	background: #efefef;
	font-weight: normal;
	vertical-align: middle;
}
.u-tbl > tbody {}
.u-tbl > tbody > tr {}
.u-tbl > tbody > tr > th {
	padding: 7px 10px;
	border: 1px solid #ddd;
	white-space: nowrap;
	background: #efefef;
	font-weight: normal;
	text-align: left;
	width: 140px;
	vertical-align: top;
}
.u-tbl > tbody > tr > td {
	padding: 7px 10px;
	border: 1px solid #ddd;
	vertical-align: top;
}
.u-tblWrap {
	overflow: auto;
}
.u-tblWrap_caution {
	display: none;
}
.u-list {
	list-style: none;
	line-height: 1.6;
}
.u-list > li {
	margin-top: 5px;
	position: relative;
	z-index: 1;
	padding-left: 11px;
}
.u-list > li:first-child {
	margin-top: 0;
}
.u-list > li::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	width: 6px;
	height: 6px;
	background-color: var(--color-text);
	border-radius: 50%;
	left: 0;
	top: calc(0.8em - 3px);
}
.u-sect {
	padding-top: 50px;
	margin-top: -50px;
}
.u-btn {
	display: flex;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	cursor: pointer;
	border-radius: 8px;
	padding: 10px 10px;
	line-height: 1.2;
	background: var(--color-base);
	justify-content: center;
	align-items: center;
	transition-duration: .3s;
	transition-property: background-color, color, border-color;
	position: relative;
	z-index: 1;
	color: inherit;
	min-height: 55px;
}
.u-btn:active {}
.u-btn::after {
	content: "";
}
.u-btn-cancel {
	background: #666;
	color: #fff;
}
.u-selWrap {
	position: relative;
}
.u-selWrap::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 3;
	top: 50%;
	right: 9px;
	border: 6px solid rgba(255, 255, 255, 0);
	width: 0;
	height: 0;
	border-top-width: 8px;
	border-bottom-width: 0;
	border-top-color: currentColor;
	transform: translateY(-50%);
	pointer-events: none;
}
.u-selWrap::after {}
.u-selWrap > select {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: 0 0;
	border: 0;
	line-height: 32px;
	height: 32px;
	width: 100%;
	border-right: 25px solid rgba(0, 0, 0, 0);
	border-radius: 0;
	cursor: pointer;
	position: relative;
	z-index: 2;
	padding-left: 15px;
	display: block;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding-right: 25px;
	font-family: inherit;
	background-color: var(--color-white);
	color: inherit;
}
.u-selWrap > select::-ms-expand {
	display: none;
}
.u-chkLbl {
	position: relative;
	display: block;
	padding: 5px 0;
	padding-left: 30px;
	line-height: 1.6;
}
.u-chkLbl > [type="checkbox"] {
	position: absolute;
	z-index: 2;
	opacity: 0;
	top: 0;
	left: 0;
}
.u-chkLbl_icon {
	display: block;
	width: 22px;
	height: 22px;
	background: #fff;
	margin-right: 4px;
	transition-duration: .3s;
	transition-property: background-color, color;
	box-sizing: border-box;
	border: 1px solid #666;
	position: absolute;
	z-index: 0;
	top: calc(5px + 0.8em);
	transform: translateY(-50%);
	left: 0;
}
.u-chkLbl > [type="checkbox"]:focus-visible + .u-chkLbl_icon {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
.u-chkLbl_icon::after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 8px;
	box-sizing: border-box;
	border: 3px solid #666;
	border-top: none;
	border-right: none;
	transform: translate(-50%, -50%) rotate(-39deg);
	opacity: 0;
	transition-duration: .3s;
	transition-property: opacity;
	margin-top: -2px;
}
.u-chkLbl_text {
	display: block;
	font-weight: normal;
}
.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {
	opacity: 1;
}
.u-rdoLbl {
	position: relative;
	display: block;
	padding: 5px 0;
	padding-left: 30px;
	line-height: 1.6;
}
.u-rdoLbl > [type="radio"] {
	position: absolute;
	z-index: 1;
	opacity: 0;
	top: 0;
	left: 0;
}
.u-rdoLbl_icon {
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	margin-right: 4px;
	transition-duration: .3s;
	transition-property: background-color, color;
	border: 1px solid #666;
	box-sizing: border-box;
	position: absolute;
	z-index: 0;
	top: calc(0.8em + 5px);
	left: 0;
	transform: translateY(-50%);
}
.u-rdoLbl_icon::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	background: #666;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	transition-duration: .3s;
	transition-property: opacity;
}
.u-rdoLbl > [type="radio"]:focus-visible + .u-rdoLbl_icon {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon::after {
	opacity: 1;
}
.u-rdoLbl_text {
	display: block;
	font-weight: normal;
}
.u-hiddenSVG {
	height: 0;
	width: 0;
	overflow: hidden;
	position: absolute;
}
.u-spBlock {
	display: none;
}
.u-spInline {
	display: none;
}
.u-tabletBlock {
	display: none;
}
.u-tabletInline {
	display: none;
}
.u-spsInline {
	display: none;
}
.u-lowResInline {
	display: none;
}
.u-clamp {
	max-height: 4.4em;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}
.u-switchImg > img:first-child {}
.u-switchImg > img:last-child {
	display: none;
}
.u-fitImg {
	position: relative;
	z-index: 1;
	padding-bottom: 100%;
	overflow: hidden;
}
.u-fitImg > img {
	display: block;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.u-editor {
	word-break: break-all;
}
.u-editor::after {
	content: "";
	display: block;
	clear: both;
}
.u-editor div {
	max-width: 100%;
}
.u-editor img {
	max-width: 100%;
	height: auto;
	display: block;
}
.u-editor iframe {
	max-width: 100%;
}
.u-editor video {
	max-width: 100%;
	height: auto;
}
.u-editor ul {
	padding-left: 1.5em;
}
.u-editor ol {
	padding-left: 1.5em;
}
.u-editor blockquote {
	background-color: #f6f6f6;
	padding: 30px;
	position: relative;
	z-index: 1;
}
.u-editor blockquote::before {
	content: "“";
	font-size: 50px;
	color: #999;
	position: absolute;
	left: 5px;
	top: 5px;
	line-height: 1;
}
.u-editor blockquote::after {
	content: "”";
	font-size: 50px;
	color: #999;
	position: absolute;
	right: 5px;
	bottom: -15px;
	line-height: 1;
}
.u-ttlDot {
	font-size: 21px;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 30px;
	position: relative;
	padding-left: 15px;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
}
.u-ttlDot::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background-color: var(--color-accent);
	border-radius: 50%;
	position: absolute;
	top: 0.75em;
	transform: translateY(-50%);
	left: 0;
}
.u-unberbar {
	background-image: linear-gradient(to top, currentColor 1px, rgba(255, 255, 255, 0) 1px);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 0% 100%;
	transition-property: background-size;
	transition-duration: .3s;
}
.u-editor h2 {
	font-size: 26px;
	line-height: 1.4;
	margin-top: 33px;
	margin-bottom: 33px;
	font-weight: bold;
	border-bottom: 1px solid var(--color-line-plus);
	position: relative;
	padding-left: 20px;
	padding-bottom: 21px;
	letter-spacing: 0.01em;
}
.u-editor h2::before {
	content: "";
	display: block;
	width: 6px;
	height: calc(100% - 27px);
	position: absolute;
	top: calc(50% - 10px);
	left: 0;
	background-color: var(--color-accent);
	border-radius: 10px;
	transform: translateY(-50%);
}
.u-editor h3 {
	font-size: 21px;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 23px;
	margin-bottom: 23px;
	position: relative;
	padding-left: 15px;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
}
.u-editor h3::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background-color: var(--color-accent);
	border-radius: 50%;
	position: absolute;
	top: 0.75em;
	transform: translateY(-50%);
	left: 0;
}
.u-editor p {}
.u-editor p > a {
	color: inherit;
	transition-duration: .3s;
	transition-property: color, background-color;
}
.u-editor .wp-block-image {
	margin-top: 30px;
	margin-bottom: 30px;
}
.u-editor .wp-block-image:first-child {
	margin-top: 0;
}
.u-editor .wp-block-image:last-child {
	margin-bottom: 0;
}
.u-editor .wp-block-image > img {
	display: block;
}
.u-editor .wp-block-image > figcaption {
	margin-top: 10px;
	margin-bottom: 0;
}
.u-editor table {
	border: 1px solid var(--color-line-plus);
}
.u-editor table > tbody {
	border: none;
}
.u-editor table > tbody > tr {}
.u-editor table > tbody > tr:first-child {
	border-top: none;
}
.u-editor table > tbody > tr > th {
	font-weight: inherit;
	text-align: left;
	padding: 12px 23px;
	vertical-align: middle;
	width: 180px;
	box-sizing: border-box;
}
.u-editor table > tbody > tr > td {
	text-align: left;
	vertical-align: middle;
	padding: 12px 23px;
	border: 1px solid var(--color-line-plus);
}
.u-btn > .icon {
	display: block;
	color: var(--color-accent);
	font-size: 12px;
}
.u-ttl-large {
	font-size: 28px;
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 20px;
}
.u-editor .wp-block-table {
	margin-top: 30px;
	margin-bottom: 30px;
}
@media screen and (max-width:1199px) {
	.u-lowResInline {
		display: inline;
	}
	.u-lowResNone {
		display: none;
	}
	img {
		max-width: 100%;
		height: auto;
	}
}
@media screen and (min-width:1000px) and (hover:hover) {
	a:hover {
		text-decoration: none;
	}
	.u-btn:hover {
		color: var(--color-link-text);
	}
	.u-btn-cancel:hover {
		background: #555;
		color: #fff;
	}
	a:hover .u-unberbar {
		background-size: 100% 100%;
		background-position: left bottom;
	}
	.u-editor p > a:hover {
		color: var(--color-link-text);
		text-decoration: underline;
	}
}
@media screen and (max-width:999px) {
	body {}
	a {}
	a[href^="tel:"] {
		pointer-events: auto;
	}
	textarea,
	[type="search"],
	[type="date"],
	[type="tel"],
	[type="email"],
	[type="number"],
	[type="password"],
	[type="text"] {}
	label [type="checkbox"],
	label [type="radio"] {}
	label {}
	label:last-child {}
	.u-mincho {}
	.u-inner {}
	.u-ttl {}
	.u-ttl::before {}
	.u-ttl::after {}
	.u-ttl-large {}
	.u-tbl {}
	.u-tbl > thead {}
	.u-tbl > thead > tr {}
	.u-tbl > thead > tr > th {}
	.u-tbl > tbody {}
	.u-tbl > tbody > tr {}
	.u-tbl > tbody > tr > th {
		padding: 10px 10px;
	}
	.u-tbl > tbody > tr > td {
		padding: 10px 10px;
	}
	.u-tblWrap {}
	.u-tblWrap_caution {}
	.u-list {}
	.u-list > li {}
	.u-list > li:first-child {}
	.u-list > li::before {}
	.u-sect {}
	.u-btn {}
	.u-btn:active {}
	.u-btn::after {}
	.u-btn-cancel {}
	.u-selWrap {}
	.u-selWrap::before {}
	.u-selWrap::after {}
	.u-selWrap > select {}
	.u-chkLbl {}
	.u-chkLbl > [type="checkbox"] {}
	.u-chkLbl_icon {}
	.u-chkLbl_icon::after {}
	.u-chkLbl_text {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {}
	.u-rdoLbl {}
	.u-rdoLbl > [type="radio"] {}
	.u-rdoLbl_icon {}
	.u-rdoLbl_icon::after {}
	.u-rdoLbl_text {}
	.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
	.u-fitImg {}
	.u-fitImg > img {}
	.u-tabletBlock {
		display: block;
	}
	.u-tabletInline {
		display: inline;
	}
	.u-tabletNone {
		display: none;
	}
	.u-editor {}
	.u-editor::after {}
	.u-editor div {}
	.u-editor img {}
	.u-editor ul {}
	.u-editor ol {}
	.u-editor blockquote {}
	.u-editor blockquote::before {}
	.u-editor blockquote::after {}
	.u-ttlDot {}
	.u-ttlDot::before {}
	.u-unberbar {}
	.u-editor h2 {}
	.u-editor h2::before {}
	.u-editor h3 {}
	.u-editor h3::before {}
	.u-editor p {}
	.u-editor p > a {}
	.u-editor .wp-block-image {}
	.u-editor .wp-block-image > img {}
	.u-editor .wp-block-image > figcaption {}
	.u-editor table {}
	.u-editor table > tbody {}
	.u-editor table > tbody > tr {}
	.u-editor table > tbody > tr:first-child {}
	.u-editor table > tbody > tr > th {}
	.u-editor table > tbody > tr > td {}
	.u-btn > .icon {}
}
@media screen and (max-width:767px) {
	body {
		min-width: 320px;
		line-height: 2;
	}
	a {}
	a[href^="tel:"] {}
	textarea,
	[type="search"],
	[type="date"],
	[type="tel"],
	[type="email"],
	[type="number"],
	[type="password"],
	[type="text"] {
		font-size: 16px;
	}
	label [type="checkbox"],
	label [type="radio"] {}
	label {}
	label:last-child {}
	.u-mincho {}
	.u-inner {}
	.u-ttl {
		font-size: 21px;
		border-bottom: none;
		padding-left: 14px;
		padding-bottom: 16px;
		margin-bottom: 25px;
	}
	.u-ttl::before {
		height: calc(100% - 25px);
		top: calc(50% - 7px);
		min-height: 30px;
	}
	.u-ttl::after {
		content: "";
		display: block;
	}
	.u-ttl::after {
		width: calc(100% + 40px);
		height: 1px;
		background-color: var(--color-line-plus);
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.u-ttl-large {
		padding-bottom: 0;
		margin-bottom: 18px;
	}
	.u-ttl-large::before {
		top: 50%;
	}
	.u-ttl-large::after {
		display: none;
	}
	.u-tbl {}
	.u-tbl > thead {}
	.u-tbl > thead > tr {}
	.u-tbl > thead > tr > th {}
	.u-tbl > tbody {}
	.u-tbl > tbody > tr {}
	.u-tbl > tbody > tr > th {
		width: auto;
		padding: 3px 5px;
	}
	.u-tbl > tbody > tr > td {
		padding: 3px 5px;
	}
	.u-tblWrap {}
	.u-tblWrap_caution {
		margin: 0 5px 0 0;
		font-size: 13px;
	}
	.u-list {}
	.u-list > li {}
	.u-list > li:first-child {}
	.u-list > li::before {}
	.u-sect {}
	.u-btn {
		min-height: 50px;
	}
	.u-btn:active {}
	.u-btn::after {}
	.u-btn-cancel {}
	.u-selWrap {}
	.u-selWrap::before {}
	.u-selWrap::after {}
	.u-selWrap > select {}
	.u-chkLbl {}
	.u-chkLbl > [type="checkbox"] {}
	.u-chkLbl_icon {}
	.u-chkLbl_icon::after {}
	.u-chkLbl_text {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {}
	.u-rdoLbl {}
	.u-rdoLbl > [type="radio"] {}
	.u-rdoLbl_icon {}
	.u-rdoLbl_icon::after {}
	.u-rdoLbl_text {}
	.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
	.u-spBlock {
		display: block;
	}
	.u-spInline {
		display: inline;
	}
	.u-spNone {
		display: none;
	}
	.u-switchImg {}
	.u-switchImg > img:first-child {
		display: none;
	}
	.u-switchImg > img:last-child {
		display: block;
	}
	.u-fitImg {}
	.u-fitImg > img {}
	.u-editor {}
	.u-editor::after {}
	.u-editor div {}
	.u-editor img {}
	.u-editor ul {}
	.u-editor ol {}
	.u-editor blockquote {}
	.u-editor blockquote::before {}
	.u-editor blockquote::after {}
	.u-spFit {
		margin-left: -20px;
		margin-right: -20px;
	}
	.u-ttlDot {
		font-size: 18px;
	}
	.u-ttlDot::before {}
	.u-unberbar {}
	.u-editor h2 {
		font-size: 21px;
		border-bottom: none;
		padding-left: 14px;
		padding-bottom: 15px;
		margin-bottom: 35px;
	}
	.u-editor h2::before {
		height: calc(100% - 25px);
		top: calc(50% - 4px);
		min-height: 30px;
	}
	.u-editor h2::after {
		content: "";
		display: block;
		width: calc(100% + 40px);
		height: 1px;
		background-color: var(--color-line-plus);
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.u-editor h3 {
		font-size: 18px;
		margin-bottom: 30px;
		margin-top: 30px;
	}
	.u-editor h3::before {}
	.u-editor p {}
	.u-editor p > a {}
	.u-editor .wp-block-image {
		margin-left: -20px;
		margin-right: -20px;
	}
	.u-editor .wp-block-table {
		margin-left: -20px;
		margin-right: -20px;
	}
	.u-editor .wp-block-image > img {}
	.u-editor .wp-block-image > figcaption {
		padding-left: 20px;
		padding-right: 20px;
	}
	.u-editor table {
		display: block;
		border: none;
	}
	.u-editor table > tbody {
		display: block;
	}
	.u-editor table > tbody > tr {
		display: block;
	}
	.u-editor table > tbody > tr + tr {
		margin-top: -1px;
	}
	.u-editor table > tbody > tr > th {
		display: block;
		width: auto;
		padding: 14px 23px;
		border-bottom: 1px solid var(--color-line-plus);
	}
	.u-editor table > tbody > tr > td {
		display: block;
		padding: 14px 23px;
		border-left: none;
		border-right: none;
	}
	.u-editor table > tbody > tr > td + td {
		margin-top: -1px;
	}
	.u-btn > .icon {}
}
@media screen and (max-width:374px) {
	body {
		font-size: 15px;
	}
	.u-inner {}
	.u-spsInline {
		display: inline;
	}
}
