@charset "UTF-8";
@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
:root {
	--color-text: #333;
	--color-graphite: #4F4F4F;
	--color-white: #fff;
	--color-sky-blue: #448cca;
	--color-ocean-blue: #0072BC;
	--color-blue: #00f;
	--color-red: #f00;
	--color-green: #008916;
	--color-dark-gray: #666;
	--color-gray: #828282;
	--color-silver-gray: #a0a0a0;
	--color-soft-gray: #CDCDCD;
	--color-light-gray: #ebebeb;
	--color-ice-mist: #DBEDEE;
	--color-soft-mint: #DEF1E1;
	--color-moss-green: #80C48B;
	--color-yellow: #FFF799;
	--color-cream-yellow: #FCF7BE;
	--color-orange: #F7941D;
	--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;
}
body {
	background: var(--color-white);
	color: var(--color-text);
	font-family: var(--font-gothic);
	font-size: 14px;
	line-height: 1.8;
	overflow-wrap: break-word;
	font-feature-settings: 'halt' on;
}
a {
	color: var(--color-blue);
	transition-duration: .3s;
	transition-property: background-color, color;
}
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: 6px 10px;
	border: 1px solid #aaa;
	border-radius: 3px;
	box-sizing: border-box;
	width: 100%;
	line-height: inherit;
	resize: vertical;
	display: block;
	line-height: 18px;
	color: var(--color-text);
}
[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: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.u-ttl {
	font-size: inherit;
	line-height: 1.4;
	margin-bottom: 16px;
	font-size: 22px;
	line-height: 26px;
	border: 1px solid var(--color-green);
	border-left-width: 15px;
	padding-left: 10px;
	padding-right: 10px;
	background-image: linear-gradient(to left, #7fd49a, rgba(255, 255, 255, 0) 70%);
	padding-top: 5px;
	padding-bottom: 5px;
	font-weight: bold;
}
.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 {
	padding-left: 2em;
}
.u-list > li {}
.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: 4px;
	padding: 4px 10px;
	line-height: 1.2;
	background: var(--color-light-gray);
	border: 1px solid var(--color-gray);
	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: 30px;
	font-size: 14px;
}
.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: 4px 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: 30px;
	height: 32px;
	width: 100%;
	border-radius: 0;
	cursor: pointer;
	position: relative;
	z-index: 2;
	padding-left: 10px;
	display: block;
	border: 1px solid #aaa;
	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: 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-ttlSquare {
	font-size: 19px;
	font-weight: bold;
	border-bottom: 1px solid var(--color-green);
	position: relative;
	line-height: 24px;
	padding-left: 20px;
	padding-top: 2px;
	padding-bottom: 2px;
	margin-bottom: 10px;
}
.u-ttlSquare::before {
	content: "";
	background-image: url(/assets/img/bg-ttl-square.png);
	width: 13px;
	height: 16px;
	display: block;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	position: absolute;
	top: 14px;
	left: 0;
	transform: translateY(-50%);
}
.u-listFile {
	list-style: none;
	line-height: 24px;
}
.u-listFile > li {
	position: relative;
	padding-left: 24px;
}
.u-listFile > li::before {
	content: "";
	background-image: url(/assets/img/icn-file.png);
	display: block;
	width: 14px;
	height: 18px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	position: absolute;
	top: 12px;
	left: 0;
	transform: translateY(-50%);
}
.u-ttlSimple {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 20px;
}
.u-ttlDashed {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	border-left: 10px solid var(--color-green);
	padding-left: 7px;
	line-height: 20px;
	padding-top: 4px;
	padding-bottom: 5px;
	margin-bottom: 13px;
}
.u-ttlDashed::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px dashed var(--color-green);
}
.u-oList {
	padding-left: 1.6em;
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 10px;
}
.u-ttlBand {
	background-color: var(--color-soft-mint);
	border-bottom: 1px solid var(--color-green);
	border-top: 1px solid var(--color-green);
	text-align: center;
	font-size: 16px;
	line-height: 20px;
	padding: 6px 10px;
	margin-bottom: 20px;
}
.u-ttlRect {
	background-color: var(--color-soft-mint);
	border-bottom: 1px solid var(--color-green);
	border-left: 20px solid var(--color-green);
	font-size: 19px;
	line-height: 24px;
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-weight: normal;
}
.u-ttlBandSimple {
	background-color: var(--color-soft-mint);
	font-weight: normal;
	font-size: 16px;
	padding: 7px 12px;
	line-height: 20px;
}
.u-ttlSimple-sm {
	font-size: 17px;
}
.u-btnForm {
	display: flex;
	min-height: 38px;
	border: 1px solid var(--color-sky-blue);
	background-color: var(--color-light-gray);
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: var(--color-sky-blue);
	text-decoration: none;
	column-gap: 6px;
	transition-duration: .3s;
	transition-property: background-color, color;
	box-sizing: border-box;
	width: 100%;
	position: relative;
}
.u-btnForm.isLoading {
	font-size: 0;
}
.u-btnForm:hover {
	background-color: var(--color-sky-blue);
	color: var(--color-white);
}
.u-btnForm::after {
	content: "»";
}
.u-btnForm_loading {
	display: none;
	animation-name: rotate;
	animation-iteration-count: infinite;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-play-state: paused;
	width: 20px;
	height: 20px;
	fill: currentColor;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.isLoading .u-btnForm_loading {
	display: block;
	animation-play-state: running;
}
@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;
		color: var(--color-red);
	}
	.u-btn:hover {
		background-color: var(--color-gray);
		color: var(--color-white);
	}
	.u-btn-cancel:hover {
		background: #555;
		color: #fff;
	}
}
@media screen and (max-width:767px) {
	body {
		min-width: 320px;
	}
	a {}
	a[href^="tel:"] {
		pointer-events: auto;
	}
	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 {
		padding-left: 15px;
		padding-right: 15px;
	}
	.u-ttl {
		font-size: 18px;
	}
	.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 {
		padding-left: 1.5em;
	}
	.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-ttlSquare {
		font-size: 16px;
	}
	.u-ttlSquare::before {}
	.u-listFile {}
	.u-listFile > li {
		padding-left: 20px;
	}
	.u-listFile > li::before {
		width: 10px;
		height: 13px;
	}
	.u-ttlSimple {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.u-ttlDashed {
		font-size: 15px;
		border-left-width: 8px;
	}
	.u-ttlDashed::after {}
	.u-ttlBand {}
	.u-ttlRect {
		font-size: 16px;
		border-left-width: 15px;
	}
	.u-ttlBandSimple {}
	.u-ttlSimple-sm {
		font-size: 16px;
	}
}
@media screen and (max-width:374px) {
	.u-inner {}
	.u-spsInline {
		display: inline;
	}
}
