@charset "UTF-8";
:root {
	--color-black: #000;
	--color-gray: #999;
	--color-gray-light: #F8F8F8;
	--color-border: #ddd;
	--color-white: #fff;
	--color-blue: #5F76D6;
	--color-sky-blue: #72B0D4;
	--color-warm-beige: #FDF4EA;
	--color-apricot-orange: #EAA865;
	--color-cool-blue: #7083C6;
	--color-mint-blue: #71D4C9;
	--color-ice-mint: #E9F8F7;
	--color-orange: #E2A500;
	--font-gothic: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--font-mincho: "游明朝", YuMincho, "ヒラギノ明朝 Pr6 W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	--font-lexend: "Lexend", sans-serif;
	--font-zen-kaku-gothic: "Zen Kaku Gothic New", sans-serif;
}
body {
	background: var(--color-white);
	color: var(--color-black);
	font-family: var(--font-gothic);
	font-size: 18px;
	line-height: 1.78;
	overflow-wrap: break-word;
	font-weight: 500;
}
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: 17px 15px;
	border: 1px solid var(--color-sky-blue);
	border-radius: 5px;
	box-sizing: border-box;
	width: 100%;
	line-height: inherit;
	resize: vertical;
	display: block;
	line-height: 24px;
	font-size: 14px;
}
[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: 1085px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
.u-ttl {
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 45px;
	text-align: center;
	line-height: 1.45;
}
.u-ttl_en {
	display: block;
	font-size: 180%;
	font-family: var(--font-lexend);
	font-weight: 600;
	margin-bottom: 8px;
}
.u-ttl_main {
	display: block;
}
.u-tbl {
	width: 100%;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	line-height: 1.45;
}
.u-tbl > thead {}
.u-tbl > thead > tr {}
.u-tbl > thead > tr > th {
	padding: 10px 10px;
	white-space: nowrap;
	font-weight: inherit;
	vertical-align: middle;
}
.u-tbl > tbody {}
.u-tbl > tbody > tr {
	border-top: 1px solid var(--color-border);
}
.u-tbl > tbody > tr:first-child {
	border-top: none;
}
.u-tbl > tbody > tr > th {
	padding: 26px 23px;
	font-weight: inherit;
	text-align: left;
	width: 195px;
	vertical-align: middle;
	box-sizing: border-box;
}
.u-tbl > tbody > tr > td {
	padding: 26px 23px;
	vertical-align: top;
	text-align: left;
	padding-right: 10px;
}
.u-tblWrap {
	overflow: auto;
}
.u-tblWrap_caution {
	display: none;
}
.u-list {
	list-style: none;
}
.u-list > li {
	position: relative;
	z-index: 1;
	padding-left: 13px;
}
.u-list > li:first-child {}
.u-list > li::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	width: 6px;
	height: 6px;
	background-color: var(--color-sky-blue);
	border-radius: 50%;
	left: 0;
	top: 0.89em;
	transform: translateY(-50%);
}
.u-sect {
	padding-top: 87px;
	margin-top: -87px;
}
.u-btn {
	display: flex;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	cursor: pointer;
	border-radius: 30px;
	padding: 10px 10px;
	line-height: 1.2;
	background: var(--color-black);
	border: 1px solid var(--color-black);
	justify-content: center;
	align-items: center;
	transition-duration: .3s;
	transition-property: background-color, color, border-color;
	position: relative;
	z-index: 1;
	color: var(--color-white);
	min-height: 60px;
	font-size: 18px;
	font-weight: 600;
}
.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: 30px;
	right: 18px;
	border: 2px solid var(--color-sky-blue);
	width: 10px;
	height: 10px;
	transform: translateY(-50%) rotate(45deg);
	pointer-events: none;
	border-left: none;
	border-top: none;
	box-sizing: border-box;
}
.u-selWrap::after {}
.u-selWrap select {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: 0 0;
	border: 0;
	line-height: 58px;
	height: 60px;
	width: 100%;
	border-radius: 0;
	cursor: pointer;
	position: relative;
	z-index: 2;
	padding-left: 20px;
	display: block;
	border: 1px solid var(--color-sky-blue);
	border-radius: 5px;
	padding-right: 50px;
	font-family: inherit;
	background-color: var(--color-white);
	color: inherit;
	font-size: 14px;
	font-weight: 500;
}
.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: 3.6em;
	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;
}
.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-btn-arrowRight {}
.u-btn-arrowRight > .icon {
	display: block;
	font-size: 16px;
	margin-left: 10px;
}
.u-ttlLine {
	font-size: 30px;
	font-weight: bold;
	line-height: 1.46;
	border-bottom: 2px solid var(--color-sky-blue);
	padding-bottom: 25px;
	margin-bottom: 38px;
}
.u-ttlLine-number {
	position: relative;
	padding-left: 60px;
}
.u-ttlLine-number_sub {
	display: block;
	position: absolute;
	top: 0.73em;
	left: 0;
	transform: translateY(-50%);
}
.u-ttlBar {
	font-size: 20px;
	font-weight: bold;
	position: relative;
	line-height: 2;
	padding-left: 19px;
	margin-bottom: 20px;
}
.u-ttlBar::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 9px;
	height: calc(100% - 10px);
	background-color: var(--color-sky-blue);
	transform: translateY(-50%);
}
.u-ttlBgLarge {
	background-color: var(--color-sky-blue);
	text-align: center;
	color: var(--color-white);
	line-height: 1.46;
	padding: 23px 15px;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 55px;
}
.u-ttlBg {
	font-size: 20px;
	font-weight: bold;
	background-color: var(--color-mint-blue);
	color: var(--color-white);
	line-height: 1.45;
	padding: 12px;
	text-align: center;
}
.u-ttlBg-orange {
	background-color: var(--color-apricot-orange);
}
.u-ttlCenter {
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.46;
	margin-bottom: 35px;
}
.u-ttlSimple {
	font-size: 30px;
	font-weight: bold;
	line-height: 1.67;
	margin-bottom: 25px;
}
.u-ttlLineShort {
	font-size: 50px;
	font-weight: bold;
	text-align: center;
	line-height: 1.44;
	position: relative;
	margin-bottom: 83px;
}
.u-ttlLineShort::after {
	content: "";
	display: block;
	width: 100px;
	height: 1px;
	background-color: currentColor;
	margin: 30px auto 0;
}
.u-ttlSplit {
	font-size: 25px;
	font-weight: bold;
	line-height: 1.44;
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.u-ttlSplit_en {
	display: block;
	font-size: 180%;
	font-weight: 600;
	font-family: var(--font-lexend);
}
.u-ttlSplit_main {
	display: block;
	position: relative;
	margin-left: 22px;
	padding-left: 27px;
	white-space: nowrap;
}
.u-ttlSplit_main::before {
	content: "";
	display: block;
	width: 1px;
	height: 110%;
	background-color: currentColor;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.u-btn-skyblue {
	background-color: var(--color-sky-blue);
	border-color: var(--color-sky-blue);
}
.u-cat {
	display: flex;
	font-size: 14px;
	line-height: 1.5;
}
.u-cat_main {
	display: block;
	border: 1px solid currentColor;
	border-radius: 17px;
	padding: 2px 15px;
	min-width: 130px;
	box-sizing: border-box;
	text-align: center;
	text-decoration: none;
	transition-duration: .3s;
	transition-property: color, background-color;
	min-height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.u-update {
	font-size: 16px;
}
.u-update > time {}
.u-message {
	font-size: 22px;
	text-align: center;
	line-height: 1.82;
	font-weight: bold;
	margin-bottom: 55px;
}
.u-linkTxt {
	text-decoration: none;
	color: inherit;
	display: block;
	font-size: 20px;
	font-weight: bold;
	display: flex;
	align-items: center;
	transition-duration: .3s;
	transition-property: color, background-color;
}
.u-linkTxt > .icon {}
.u-btn-en {
	font-family: var(--font-lexend);
}
.u-editor p {
	margin-top: 1.78em;
	margin-bottom: 1.78em;
}
.u-editor p:first-child {
	margin-top: 0;
}
.u-editor p:last-child {
	margin-bottom: 0;
}
.wp-block-image {
	margin-bottom: 37px;
	margin-top: 37px;
}
.wp-block-image:first-child {
	margin-top: 0;
}
.wp-block-image:last-child {
	margin-bottom: 0;
}
@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 {
		background: var(--color-white);
		color: var(--color-black);
	}
	.u-btn-cancel:hover {
		background: #555;
		color: #fff;
	}
	.u-btn-skyblue:hover {
		color: var(--color-sky-blue);
	}
	a:hover .u-cat_main,
	a.u-cat_main:hover {
		background-color: var(--color-black);
		color: var(--color-white);
	}
	.u-linkTxt:hover {}
}
@media screen and (max-width:999px) {
	body {
		font-size: 15px;
	}
	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 {
		font-size: 22px;
	}
	.u-ttl_en {}
	.u-ttl_main {}
	.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: 20px 20px;
		width: 155px;
	}
	.u-tbl > tbody > tr > td {
		padding: 20px 20px;
	}
	.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-btn-arrowRight {}
	.u-btn-arrowRight > .icon {}
	.u-ttlLine {
		font-size: 25px;
		padding-bottom: 15px;
		margin-bottom: 28px;
	}
	.u-ttlLine-number {
		padding-left: 50px;
	}
	.u-ttlLine-number_sub {}
	.u-ttlBar {
		line-height: 1.8;
	}
	.u-ttlBar::before {}
	.u-ttlBgLarge {
		font-size: 24px;
		padding: 16px 15px;
		margin-bottom: 38px;
	}
	.u-ttlBg {
		font-size: 18px;
		padding: 8px 10px;
	}
	.u-ttlBg-orange {}
	.u-ttlCenter {
		font-size: 25px;
		margin-bottom: 25px;
	}
	.u-ttlSimple {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.u-ttlLineShort {
		font-size: 40px;
		margin-bottom: 58px;
	}
	.u-ttlLineShort::after {}
	.u-ttlSplit {
		font-size: 21px;
		margin-bottom: 25px;
	}
	.u-ttlSplit_en {}
	.u-ttlSplit_main {
		margin-left: 18px;
		padding-left: 22px;
	}
	.u-ttlSplit_main::before {}
	.u-btn-skyblue {}
	.u-cat {}
	.u-cat_main {
		min-width: 115px;
	}
	.u-update {}
	.u-update > time {}
	.u-message {
		font-size: 20px;
		margin-bottom: 45px;
	}
	.u-linkTxt {
		font-size: 18px;
	}
	.u-linkTxt > .icon {}
	.u-btn-en {}
	.u-editor p {}
	.wp-block-image {}
}
@media screen and (max-width:767px) {
	body {
		min-width: 320px;
		font-size: 14px;
	}
	a {}
	a[href^="tel:"] {}
	textarea,
	[type="search"],
	[type="date"],
	[type="tel"],
	[type="email"],
	[type="number"],
	[type="password"],
	[type="text"] {
		font-size: 16px;
		padding: 12px 15px;
	}
	label [type="checkbox"],
	label [type="radio"] {}
	label {}
	label:last-child {}
	.u-mincho {}
	.u-inner {
		padding-left: 40px;
		padding-right: 40px;
	}
	.u-ttl {
		font-size: 18px;
		margin-bottom: 30px;
	}
	.u-ttl_en {
		font-size: 35px;
		margin-bottom: 5px;
	}
	.u-ttl_main {}
	.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: 95px;
		padding: 15px 10px;
	}
	.u-tbl > tbody > tr > td {
		padding: 15px 10px;
	}
	.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 {
		padding-top: 70px;
		margin-top: -70px;
	}
	.u-btn {
		min-height: 45px;
		font-size: 16px;
	}
	.u-btn:active {}
	.u-btn::after {}
	.u-btn-cancel {}
	.u-selWrap {}
	.u-selWrap::before {
		top: 25px;
	}
	.u-selWrap::after {}
	.u-selWrap select {
		font-size: 16px;
		height: 50px;
		line-height: 48px;
		padding-left: 15px;
	}
	.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-btn-arrowRight {}
	.u-btn-arrowRight > .icon {
		font-size: 14px;
	}
	.u-ttlLine {
		font-size: 20px;
		margin-bottom: 20px;
		padding-bottom: 12px;
	}
	.u-ttlLine-number {
		padding-left: 40px;
	}
	.u-ttlLine-number_sub {}
	.u-ttlBar {
		padding-left: 18px;
		line-height: 1.6;
		font-size: 18px;
	}
	.u-ttlBar::before {
		width: 6px;
	}
	.u-ttlBgLarge {
		font-size: 20px;
		padding: 12px 10px;
		margin-bottom: 20px;
	}
	.u-ttlBg {
		font-size: 16px;
		padding: 8px 5px;
	}
	.u-ttlBg-orange {}
	.u-ttlCenter {
		font-size: 21px;
		margin-bottom: 15px;
	}
	.u-ttlSimple {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.u-ttlLineShort {
		font-size: 28px;
		margin-bottom: 30px;
	}
	.u-ttlLineShort::after {
		width: 60px;
		margin-top: 15px;
	}
	.u-ttlSplit {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.u-ttlSplit_en {
		font-size: 35px;
	}
	.u-ttlSplit_main {
		margin-left: 18px;
		padding-left: 18px;
	}
	.u-ttlSplit_main::before {}
	.u-btn-skyblue {}
	.u-cat {
		font-size: 12px;
	}
	.u-cat_main {
		min-width: 90px;
		padding: 3px 10px;
		min-height: 30px;
	}
	.u-update {
		font-size: 14px;
	}
	.u-update > time {}
	.u-message {
		font-size: 17px;
		line-height: inherit;
		margin-bottom: 35px;
	}
	.u-linkTxt {
		font-size: 16px;
	}
	.u-linkTxt > .icon {}
	.u-btn-en {}
	.u-editor p {}
	.wp-block-image {
		margin-top: 25px;
		margin-bottom: 25px;
	}
}
@media screen and (max-width:413px) {
	.u-inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media screen and (max-width: 374px) {
	.u-inner {
		padding-left: 20px;
		padding-right: 20px;
	}
	.u-spsInline {
		display: inline;
	}
}
