<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*---固定ボタン---*/

.fixed_btn {
	color: #000;
	background: #ffe333;
}

.fixed_btn:hover {
	color: #000;
}

.fixed_btn_mitumori {
	background: #7FBE25;
}

.fixed_btn_ver {
	width: 220px;
	color: #fff;
	font-size: 1.4rem;
	text-decoration: none;
	line-height: 1.5;
	background: #00b0f0;
	border: 2px solid #fff;
	border-radius: 5px;
	position: fixed;
	bottom: 60px;
	right: 5px;
	padding: 6px 10px;
	transition: .3s;
	z-index: 3;
}

/*---固定ボタン　ここまで---*/

.pagetop {
    bottom: 270px;
}

.tab_content h2 {
	line-height: 1.5;
	margin: 0 0 20px;
}


.tab_content h3 {
	font-size: 1.6rem;
	border-left: 6px solid #006600;
	border-bottom: 1px solid #006600;
	padding: 10px 0 10px 15px;
	margin: 0 0 10px;
}

.main_title {
	color: #666;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: left;
	background: #fafff7;
	border-radius: 5px;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
	padding: 20px;
	margin: 0 0 30px;
}

ul li {
	line-height: 1.5;
}

a.text_link {
	color: #035a9a;
	border-bottom: 1px solid;
	transition: .3s;
}

a.text_link:hover {
	color: #37aaf7;
}

.hero_box {
	height: 300px;
	display: flex;
	background-image: radial-gradient(#fff 30%, #eee 60%);
}

.hero_box &gt; div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px 60px;
}

.hero_box h1 {
	font-size: 4rem;
	margin: 0;
}

.hero_box img {
	width: 100%;
	max-width: 330px;
	border-radius: 10px;
	box-shadow: 10px 10px 5px rgb(0 0 0 /20%);
}

.tab_box {
	background: #eee;
	border-bottom: 1px solid #dbdedf;
	margin: 0 0 30px;
}

.tab_box &gt; ul {
	max-width: 1010px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px 10px;
	padding: 0 30px;
	margin: 0 auto;
}

.tab_box ul li {
	height: 49px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	background: #999;
	border-radius: 10px 10px 0 0;
	cursor: pointer;
	transition: .3s;
}

.tab_box ul li:hover {
	opacity: 0.5;
}

.tab_box ul li.active {
	background: #ffaa22;
}

.tab_box ul li a {
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.tab_content {
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: .3s;
}

.tab_content.active {
	height: auto;
	opacity: 1;
}



/*---サポート体制---*/

.support img {
	width: 100%;
	max-width: 500px;
	margin: 0 0 10px;
}

.support &gt; div:nth-of-type(1) {
	display: flex;
	flex-flow: column;
	align-items: flex-end;
	gap: 10px;
	margin: 0 0 30px;
}

.link_box {
	width: 100%;
	max-width: 800px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}

.link_box a {
	width: calc(95%/3);
	display: block;
	text-align: center;
	line-height: 1;
	text-decoration: none;
	text-indent: -2rem;
	border-radius: 5px;
	position: relative;
	padding: 20px 10px;
	transition: .3s;
}

.link_box a::after {
	content: "\f101";
	font-family: Font Awesome\ 5 Free;
	font-weight: 600;
	position: absolute;
	top: 50%;
	right: 15px;
	margin: -7px 0 0;
}

.link_box a:hover {
	opacity: 0.3;
}

.link_box a:nth-of-type(1) {
	color: #7FBE25;
	border: 1px solid #7FBE25;
}

.link_box a:nth-of-type(2) {
	color: #000;
	background: #ffe333;
}

.link_box a:nth-of-type(3) {
	color: #fff;
	background: #7FBE25;
}

/*---サポート体制　ここまで---*/


/*---障害情報---*/

.shougai &gt; div {
	border-bottom: 1px solid #cecdcd;
	padding: 0 0 30px;
	margin: 0 0 30px;
}

.shougai &gt; div &gt; div:nth-of-type(1) {
	display: flex;
	align-items: center;
	gap: 10px 30px;
	cursor: pointer;
	position: relative;
	padding: 0 50px 0 0;
	margin: 0 0 10px;
	transition: .3s;
}

.shougai &gt; div &gt; div:nth-of-type(1)::before {
	content: "";
	width: 40px;
	height: 40px;
	background: #cecdcd;
	border-radius: 50%;
	position: absolute;
	right: 0;
}

.shougai &gt; div &gt; div:nth-of-type(1)::after {
	content: '\f107';
	color: #fff;
	font-size: 2.4rem;
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	position: absolute;
	right: 12px;
	transition: .3s;
}

.shougai &gt; div &gt; div:nth-of-type(1).active::after {
	transform: rotate(180deg);
}

.shougai &gt; div &gt; div:nth-of-type(1):hover {
	opacity: 0.3;
}

.shougai &gt; div &gt; div:nth-of-type(1) &gt; div {
	max-width: 260px;
	min-width: 260px;
	display: flex;
	flex-flow: column;
}

.shougai &gt; div &gt; div:nth-of-type(1) &gt; div p:nth-of-type(1) {
	font-size: 1.6rem;
}

.shougai &gt; div &gt; div:nth-of-type(1) &gt; div p:nth-of-type(2) span {
	color: #fff;
	font-size: 1.2rem;
	background: #b0b0b0;
	padding: 3px 5px;
	margin: 0 0 0 10px;
}

.shougai &gt; div &gt; div:nth-of-type(1) &gt; div p:nth-of-type(2) span:nth-of-type(1) {
	margin: 0;
}

.shougai &gt; div &gt; div:nth-of-type(1) + div {
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: .3s;
}

.shougai &gt; div &gt; div:nth-of-type(1).active + div {
	height: auto;
	opacity: 1;
}

.shougai &gt; div &gt; div:nth-of-type(1) &gt; p:nth-of-type(1) {
	min-width: 90px;
	text-align: center;
}

.shougai &gt; div &gt; div:nth-of-type(2) p:nth-of-type(1),
.shougai &gt; div &gt; div:nth-of-type(2) p:nth-of-type(2) {
	font-size: 1.6rem;
	margin: 0 0 10px;
}


/*---障害情報　ここまで---*/

.common_btn {
	max-width: 200px;
	display: block;
	color: #333333;
	border-radius: 5px;
	border: 1px solid #ffaa22;
	background-image: linear-gradient(#ffec64 5%, #ffab23 100%);
	text-shadow: 1px 1px 0px #ffee66;
	padding: 20px;
	transition: .3s;
}

.common_btn:hover {
	opacity: 0.3;
}

.text_small {
	font-size: 1.1rem;
}

.text_bold{
	font-size: 1.6rem;
	font-weight: bold;
}

.line {
	border-bottom: 1px solid #cecdcd;
	padding: 0 0 20px;
	margin: 0 0 30px;
}

@media screen and (max-width: 767px) {

	/*---固定ボタン---*/
	.pagetop {
		bottom: 65px;
	}

	.fixed_btn,
	.fixed_btn_mitumori,
	.fixed_btn_ver {
		width: calc(100%/3);
		height: 50px;
		display: flex;
		align-items: center;
		line-height: 1.3;
		border-radius: 0;
		bottom: 0;
		right: 0;
	}

	.fixed_btn {
		left: 0;
		padding: 0 5px;
	}

	.fixed_btn_mitumori {
		left: calc(100%/3);
		border-width: 2px 0;
		border-style: solid;
		border-color: #fff;
		padding: 0 5px;
	}

	.fixed_btn_ver {
		font-size: 1.2rem;
		left: auto;
		padding: 0 5px;
	}

	.fixed_btn_ver span {
		display: none;
	}

	/*---固定ボタン　ここまで---*/

	.tab_content h2 {
		font-size: 2.6rem;
	}

	.hero_box img {
		max-width: 270px;
	}

	.tab_box ul {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}

	.tab_box ul li {
		border-radius: 0;
	}

	/*---サポート体制---*/

	.link_box {
		flex-flow: column;
	}

	.link_box a {
		width: 300px;
		margin: 0 auto 20px;
	}

	.link_box a:last-of-type {
		margin: 0 auto;
	}

	/*---サポート体制　ここまで---*/


	/*---障害情報---*/

	.shougai &gt; div &gt; div:nth-of-type(1) {
		flex-flow: column;
		align-items: baseline;
	}

	.shougai &gt; div &gt; div:nth-of-type(1)::after {
		top: 8px;
	}

	/*---障害情報　ここまで---*/
}
</pre></body></html>