@charset "UTF-8";
@keyframes arrowMoveRight {
	0% {
		transform: translateX(0);
	}
	49% {
		transform: translateX(100%);
	}
	50% {
		transform: translateX(100%);
		visibility: hidden;
	}
	51% {
		transform: translateX(-100%);
		visibility: hidden;
	}
	52% {
		transform: translateX(-100%);
		visibility: visible;
	}
	100% {
		transform: translateX(0);
	}
}
@keyframes arrowMoveLeft {
	0% {
		transform: translateX(0);
	}
	49% {
		transform: translateX(-100%);
	}
	50% {
		transform: translateX(-100%);
		visibility: hidden;
	}
	51% {
		transform: translateX(100%);
		visibility: hidden;
	}
	52% {
		transform: translateX(100%);
		visibility: visible;
	}
	100% {
		transform: translateX(0);
	}
}
@keyframes arrowMoveUp {
	0% {
		transform: translateX(0);
	}
	49% {
		transform: translateY(-100%);
	}
	50% {
		transform: translateY(-100%);
		visibility: hidden;
	}
	51% {
		transform: translateY(100%);
		visibility: hidden;
	}
	52% {
		transform: translateY(100%);
		visibility: visible;
	}
	100% {
		transform: translateX(0);
	}
}
:root {
	--color-my-text: #4B4B4B;
	--color-my-green-main: #00B46F;
	--color-my-green-pale: #EDF7F3;
	--color-my-green-light: #68B223;
	--color-my-gray: #C6C6C6;
	--color-my-gray-dark: #BFBFBF;
	--color-my-gray-btn: #A0A0A0;
	--color-my-gray-light: #E4E4E4;
	--color-my-gray-text: #8B8B8B;
	--color-my-gray-pale: #F7F7F7;
	--color-my-blue-link: #5DC2D0;
	--color-my-blue: #0E479C;
	--color-my-blue-light: #0057BA;
	--color-my-blue-sky: #E1F3FF;
	--color-my-blue-vivid: #0360CD;
	--color-my-red: #FF6262;
	--color-my-red-vivid: #FF0B0B;
	--color-my-yellow: #FCF65F;
	--color-my-white: #ffffff;
	--margin-section: 56px;
	--font-gothic: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--font-mincho: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 Pr6 W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	--font-times: 'Times New Roman', Times, serif;
	--font-bellefair: 'Bellefair', serif;
	--font-ja: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", MS PGothic, sans-serif;
}
html {
	-webkit-font-smoothing: antialiased;
}
[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);
}
.icon {
	vertical-align: middle;
	display: inline-block;
	position: relative;
	z-index: 1;
	min-width: 1em;
}
.icon::before {
	display: block;
}
.u-inner {
	max-width: 1160px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: content-box;
}
.u-ttl {
	font-size: 15px;
	line-height: 1.4;
	margin-bottom: 20px;
	font-weight: normal;
}
.u-ttl_main {
	display: block;
	font-size: 65px;
	font-family: var(--font-mincho);
	font-weight: normal;
	line-height: 1;
	margin-bottom: 0.45em;
}
.u-ttl_sub {
	content: "";
}
.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 {
	border-top: 1px solid var(--color-my-gray-light);
	border-bottom: 1px solid var(--color-my-gray-light);
}
.u-tbl > tbody > tr > th {
	padding: 18px 20px;
	border: none;
	white-space: nowrap;
	background: var(--color-my-gray-pale);
	font-weight: normal;
	text-align: left;
	width: 360px;
	vertical-align: top;
}
.u-tbl > tbody > tr > td {
	padding: 18px 20px;
	border: none;
	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-my-text);
	border-radius: 50%;
	left: 0;
	top: calc(0.8em - 3px);
}
.u-sect {
	padding-top: 150px;
	margin-top: -150px;
}
.u-btn {
	display: flex;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	cursor: pointer;
	border-radius: 45px;
	padding: 5px 20px;
	line-height: 1.2;
	background: #fff;
	border: 1px solid var(--color-my-text);
	justify-content: flex-start;
	align-items: center;
	transition-duration: .3s;
	transition-property: background-color, color, border-color;
	position: relative;
	z-index: 1;
	color: inherit;
	min-height: 45px;
}
.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: 10px;
	border: 3px solid rgba(255, 255, 255, 0);
	width: 0;
	height: 0;
	border-top-width: 5px;
	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: 27px;
	height: 29px;
	width: 100%;
	border-right: 25px solid rgba(0, 0, 0, 0);
	border-radius: 0;
	cursor: pointer;
	position: relative;
	z-index: 2;
	padding-left: 12px;
	display: block;
	border: 1px solid var(--color-my-gray);
	border-radius: 3px;
	padding-right: 20px;
	background-color: #fff;
	min-width: 59px;
}
.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-arrow {
	display: block;
	width: 23px;
	height: 23px;
	position: relative;
	overflow: hidden;
}
.u-arrow_icon {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	fill: none;
	stroke: currentColor;
	stroke-width: 1px;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.u-arrow_icon:not([fill]) {
	fill: none;
}
.u-btn_arrow {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}
.u-btn-arrow {
	padding-right: 48px;
}
.u-btnRect {
	text-decoration: none;
	background-color: var(--color-my-green-main);
	border-radius: 5px;
	min-height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-sizing: border-box;
	padding: 10px 10px;
	cursor: pointer;
	width: 100%;
	font-size: 18px;
	font-family: var(--font-mincho);
	border: 1px solid var(--color-my-green-main);
	transition-duration: .3s;
	transition-property: background-color, color;
}
.u-ttlUnder {
	font-size: 18px;
	font-weight: normal;
	font-family: var(--font-mincho);
	border-bottom: 1px solid var(--color-my-gray-light);
	padding-bottom: 17px;
	margin-bottom: 17px;
}
.u-btn-green {
	background-color: var(--color-my-green-main);
	border-color: var(--color-my-green-main);
	color: #fff;
	min-height: 50px;
}
.u-ttlUnder-l {
	font-size: 24px;
}
.u-ttlEnCenter {
	text-align: center;
	font-weight: normal;
	font-size: 15px;
	line-height: 1.4;
	margin-bottom: 41px;
}
.u-ttlEnCenter_main {
	display: block;
	font-size: 37px;
	font-family: var(--font-mincho);
	margin-bottom: 0.3em;
}
.u-ttlEnCenter_sub {
	display: block;
}
.u-ttlSimple {
	font-size: 24px;
	line-height: 1.92;
	font-weight: normal;
	font-family: var(--font-mincho);
	margin-bottom: 34px;
}
.u-ttlUnderDeco {
	font-size: 24px;
	font-weight: normal;
	font-family: var(--font-mincho);
	border-bottom: 1px solid var(--color-my-gray-dark);
	position: relative;
	margin-bottom: 39px;
	padding-left: 19px;
	padding-bottom: 17px;
}
.u-ttlUnderDeco::after {
	content: "";
	display: block;
	width: 328px;
	height: 2px;
	background-color: var(--color-my-red);
	position: absolute;
	z-index: 1;
	bottom: -1px;
	left: 0;
}
.u-btnRect-red {
	background-color: var(--color-my-red);
	border-color: var(--color-my-red);
	color: #fff;
}
.u-btn-lightGreen {
	background-color: var(--color-my-green-light);
	border-color: var(--color-my-green-light);
	color: #fff;
}
.u-btn-blue {
	background-color: var(--color-my-blue);
	border-color: var(--color-my-blue);
	color: #fff;
}
.u-btn-gray {
	background-color: var(--color-my-gray-btn);
	border-color: var(--color-my-gray-btn);
	color: #fff;
}
.u-ttlRect {
	background-color: var(--color-my-green-main);
	color: #fff;
	min-height: 70px;
	padding: 10px 31px;
	box-sizing: border-box;
	font-size: 28px;
	font-weight: normal;
	font-family: var(--font-mincho);
	margin-bottom: 42px;
	align-items: center;
	display: flex;
}
.u-btn-anchor {
	background-color: var(--color-my-green-light);
	color: #fff;
	border-color: var(--color-my-green-light);
	font-size: 20px;
	padding-left: 33px;
	padding-right: 74px;
	min-height: 69px;
}
.u-btn-anchor::after {
	content: "";
	display: block;
	width: 17px;
	height: 17px;
	box-sizing: border-box;
	border: 1px solid currentColor;
	position: absolute;
	top: 50%;
	right: 43px;
	transform: translateY(-50%) rotate(45deg);
	border-left: none;
	border-top: none;
	margin-top: -4px;
}
.u-cat {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 17px;
	line-height: 23px;
	padding: 10px 15px;
	background-color: var(--color-my-green-light);
	color: var(--color-my-white);
	z-index: 1;
}
.u-cat-blue {
	background-color: #0A5DAC;
}
.u-cat-yellow {
	background-color: #FFEB03;
	color: var(--color-my-text);
}
.u-btnRound {
	display: flex;
	min-height: 62px;
	box-sizing: border-box;
	padding: 10px 20px;
	background-color: var(--color-my-blue-light);
	color: var(--color-my-white);
	font-size: 20px;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	border-radius: 62px;
	border: 1px solid var(--color-my-blue-light);
	transition-duration: .3s;
	transition-property: background-color, color;
}
@media screen and (max-width:1199px) {
	.u-lowResInline {
		display: inline;
	}
	.u-lowResNone {
		display: none;
	}
}
@media screen and (min-width:1000px) and (hover:hover) {
	.u-btnRound:hover {
		background-color: var(--color-my-white);
		color: var(--color-my-blue-vivid);
	}
	button:hover .u-arrow_icon,
	a:hover .u-arrow_icon {
		animation-name: arrowMoveRight;
		animation-duration: 0.5s;
		animation-fill-mode: backwards;
		animation-iteration-count: 1;
	}
	button:hover .u-arrow_icon-left,
	a:hover .u-arrow_icon-left {
		animation-name: arrowMoveLeft;
	}
	button:hover .u-arrow_icon-up,
	a:hover .u-arrow_icon-up {
		animation-name: arrowMoveUp;
	}
	.u-btnRect:hover {
		background-color: #fff;
		color: var(--color-my-green-main);
	}
	.u-btnRect-red:hover {
		color: var(--color-my-red);
	}
	.u-btn:hover {
		border-color: var(--color-my-green-main);
		color: var(--color-my-green-main);
	}
	.u-btn-anchor:hover {
		border-color: var(--color-my-green-light);
		color: var(--color-my-green-light);
		background-color: #fff;
	}
	.u-btn-green:hover {
		background-color: #fff;
	}
	.u-btn-cancel:hover {
		background: #555;
		color: #fff;
	}
	.u-btn-lightGreen:hover {
		background-color: #fff;
		color: var(--color-my-green-light);
		border-color: var(--color-my-green-light);
	}
	.u-btn-blue:hover {
		background-color: #fff;
		color: var(--color-my-blue);
		border-color: var(--color-my-blue);
	}
	.u-btn-gray:hover {
		background-color: #fff;
		color: var(--color-my-gray-btn);
		border-color: var(--color-my-gray-btn);
	}
}
@media screen and (max-width:999px) {
	.u-mincho {}
	.u-inner {}
	.u-ttl {
		font-size: 14px;
	}
	.u-ttl_main {
		font-size: 60px;
	}
	.u-ttl_sub {}
	.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: 250px;
	}
	.u-tbl > tbody > tr > td {}
	.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-arrow {}
	.u-arrow_icon {}
	.u-btn_arrow {}
	.u-btn-arrow {}
	.u-btnRect {}
	.u-ttlUnder {}
	.u-btn-green {}
	.u-ttlUnder-l {
		font-size: 22px;
	}
	.u-ttlEnCenter {}
	.u-ttlEnCenter_main {}
	.u-ttlEnCenter_sub {}
	.u-ttlSimple {
		font-size: 20px;
	}
	.u-ttlSimple {}
	.u-ttlUnderDeco {
		font-size: 22px;
		padding-bottom: 14px;
		padding-left: 14px;
	}
	.u-ttlUnderDeco::after {}
	.u-ttlRect {}
	.u-btn-anchor {
		font-size: 18px;
		min-height: 60px;
	}
	.u-btn-anchor::after {}
	.u-cat {
		font-size: 14px;
		line-height: 18px;
		padding: 8px 10px;
	}
	.u-btnRound {
		font-size: 16px;
		min-height: 56px;
	}
}
@media screen and (max-width:767px) {
	:root {
		--margin-section: 35px;
	}
	.u-mincho {}
	.u-inner {}
	.u-ttl {
		font-size: 12px;
	}
	.u-ttl_main {
		font-size: 32px;
	}
	.u-ttl_sub {}
	.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: 10px 10px;
	}
	.u-tbl > tbody > tr > td {
		padding: 10px 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: 60px;
		margin-top: -60px;
	}
	.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-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-arrow {
		width: 18px;
		height: 18px;
	}
	.u-arrow_icon {
		stroke-width: 1.28px;
	}
	.u-btn_arrow {}
	.u-btn-arrow {}
	.u-btnRect {}
	.u-ttlUnder {
		font-size: 17px;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	.u-btn-green {}
	.u-ttlUnder-l {}
	.u-ttlEnCenter {
		margin-bottom: 32px;
	}
	.u-ttlEnCenter_main {}
	.u-ttlEnCenter_sub {}
	.u-ttlSimple {
		font-size: 18px;
		margin-bottom: 15px;
		line-height: 1.7;
	}
	.u-ttlSimple {}
	.u-ttlUnderDeco {
		font-size: 18px;
		padding-left: 0;
		padding-bottom: 8px;
		margin-bottom: 18px;
	}
	.u-ttlUnderDeco::after {
		width: 120px;
	}
	.u-ttlRect {
		font-size: 18px;
		min-height: 50px;
		padding: 10px 18px;
		margin-bottom: 22px;
	}
	.u-btn-anchor {
		font-size: 16px;
		min-height: 56px;
		padding-left: 22px;
		padding-right: 50px;
	}
	.u-btn-anchor::after {
		width: 13px;
		height: 13px;
		right: 25px;
	}
	.u-cat {
		font-size: 13px;
		line-height: 16px;
		padding: 7px 10px;
	}
	.u-btnRound {
		min-height: 51px;
	}
}
@media screen and (max-width:374px) {
	.u-inner {}
	.u-spsInline {
		display: inline;
	}
	.u-btnRound {
		font-size: 14px;
		padding-left: 10px;
		padding-right: 10px;
		min-height: 45px;
	}
}
