<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
/* 基本設定 */
html,body {
	height: 100vh;
	scroll-behavior: smooth;
	margin: 0px;;
	padding: 0px;
  width: 100%;
	color: #222222;
}
a {
	text-decoration: none;
	color: #00a98f;
}
a:hover {
	color: #0059a0;
}
a:hover img{
  opacity:0.8;
  filter:alpha(opacity=80);
  -ms-filter: “alpha( opacity=80 )”;
  transform: scale(0.9,0.9);
  transition: 0.6s;
}
h1, h2 {
	line-height: 1.2em;
	padding-bottom: 0.5em;
	padding-top: 0.5em;
}
h3, h4 {
	line-height: 1.2em;
	padding-bottom: 0.3em;
	padding-top: 0.3em;
	margin-bottom: 1em;
}
.leadtext {
	font-weight: 600;
}
.text_harf {
	font-size: 0.7em;
}
.remarks {
	list-style-type: none;
	margin-left: 1em;/* マーカーを1文字寄せた分、ULにマージンを設定*/
	padding-left: 0px;
}
.remarks li {
	padding-bottom: 0.5em;
}
.remarks li:before {
	content: '※'; /* ←ここにリストマーカーにしたい文字列を設定 */
	margin-left: -1em; /* 1文字分、左に寄せる */
}
.title_green {
	color: #00A616;
}
.title-line {
	color: #00A616;
	border-bottom: #00A616 solid 2px;
	border-top: #00A616 solid 2px;
	text-align: center;
	font-weight: 600;
	padding: 5px;
	margin-bottom: 1em;
}
.title-line2 {
	color: #00A616;
	border-bottom: #00A616 solid 2px;
	text-align: center;
	font-weight: 600;
	padding: 5px;
	margin-top: 1em;
	margin-bottom: 0.5em;
}
.text-line {
	background-color: #FFFF00;
	color: #1A6600;
	text-align: center;
	border-radius: 10px;
}
header {
	background-color: #8CC63F;
}
.bg-01 {
	background-image: url("../images/img01.jpg");
	background-size: cover;
	background-position: center;
	position: relative;
}
.bg-01 p {
	font-size: 1em;
	position: absolute;
  bottom: 0;
}
.bg-02 {
	background-image: url("../images/bg-logo.svg");
	background-position: center;
	background-repeat: no-repeat;
}
.bg-green {
	background-color: #00A616;
	color: #FFF;
}
.bg-lgreen {
	background-color: #8CC63F;
	color: #FFFFFF;
}
.bg_pre {
	background-color: #E4007F;
	text-align: center;
	color: white;
}
.bg_kin {
	background-color: #00B003;
	text-align: center;
	color: white;
}
.bg_after {
	background-color: #F39800;
	text-align: center;
	color: white;
}
.bg_sat {
	background-color: #00CAE6;
	text-align: center;
	color: white;
}
.bg_greenbox {
	background-color: #D4FF9C;
	padding: 1.5em;
	border-radius: 20px;
}
.bg_greenbox h3 {
	color: #00A616;
	text-align: center;
	line-height: 1em;
	font-weight: 500;
}
#bg_border01 {
	border: #E4007F solid 1px;
	border-radius: 10px;
	margin: 0px 10px 20px 10px;
}
#bg_border02 {
	border: #00B003 solid 1px;
	border-radius: 10px;
	margin: 0px 10px;
}
#bg_border03 {
	border: #F39800 solid 1px;
	border-radius: 10px;
	margin: 0px 10px 20px 10px;
}
#bg_border04 {
	border: #00CAE6 solid 1px;
	border-radius: 10px;
	margin: 0px 10px;
}
.table-ttl01 {
	color: #00AFFF;
	font-weight: 800;
}
.table-ttl02 {
	color: #FF89FF;
	font-weight: 800;
}
.point-table th {
	background-color: #D4FF9C;
	border: 1px solid #999999;
	text-align: center;
}
.point-table td {
	border: 1px solid #999999;
}
/* form */
.form_btn {
	padding-top: 1em;
	padding-bottom: 1em;
}
/* footer */
.footer {
	color: #FFFFFF;
	background: #00A616;
	margin-top: 50px;
}
/* CTAレイアウト */
.cta_bg {
  background-color: rgba(255,255,255,0.50);
	padding: 10px 0px;
}
.telltap {
	position: fixed;
	bottom: 160px;
	right: 10px;
	z-index: 9999;
}
/* 極小デバイス（575.98px 以下）*/
@media (max-width: 575.98px) {
	p, li, table, form, legend, .btn {
		font-size: 14px;
	}
	h1 {
		font-size: 1.6rem;
	}
	h2 {
		font-size: 1.3rem;
	}
	h3 {
		font-size: 1.2rem;
	}
  h4 {
    font-size: 1rem;
  }
	section {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.pc-none {
		display: none;
	}
	.annotation {
		font-size: 10px;
	}
	.bg-01 {
		height: 200px;
	}
	.leadtext p {
		font-size: 18px;
	}
	.telltap {
		width: 80px;
	}
}
/* 小デバイス（576px 以上）*/
@media (min-width: 576px) and (max-width: 767.98px) {
	p, li, table, form, legend, .btn {
		font-size: 14px;
	}
	h1 {
		font-size: 1.9rem;
	}
	h2 {
		font-size: 1.5rem;
	}
	h3 {
		font-size: 1.3rem;
	}
  h4 {
    font-size: 1.1rem;
  }
	section {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.pc-none {
		display: none;
	}
	.annotation {
		font-size: 12px;
	}
	.bg-01 {
		height: 250px;
	}
	.leadtext p {
		font-size: 20px;
	}
	.telltap {
		width: 100px;
	}
}
/* 中デバイス（768px 以上）*/
@media (min-width: 768px) and (max-width: 991.98px) {
	p, li, table, form, legend, .btn {
		font-size: 16px;
	}
	h1 {
		font-size: 2.2rem;
	}
	h2 {
		font-size: 1.9rem;
	}
	h3 {
		font-size: 1.6rem;
	}
  h4 {
    font-size: 1.3rem;
  }
	section {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.sp-none {
		display: none;
	}
	.annotation {
		font-size: 12px;
	}
	.leadtext p {
		font-size: 22px;
	}
	.telltap {
		display: none
	}
}
/* 大デバイス（922px 以上）*/
@media (min-width: 992px) and (max-width: 1199.98px) {
	p, li, table, form, legend, .btn {
		font-size: 18px;
	}
	h1 {
		font-size: 2.6rem;
	}
	h2 {
		font-size: 2.2rem;
	}
	h3 {
		font-size: 1.8rem;
	}
  h4 {
    font-size: 1.4rem;
  }
	section {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.sp-none {
		display: none;
	}
	.leadtext p {
		font-size: 25px;
	}
	.telltap {
		display: none
	}
}
/* 特大デバイス（1200x 以上）*/
@media (min-width: 1200px) and (max-width: 1399.98px) {
	p, li, table, form, legend, .btn {
		font-size: 24px;
	}
	h1 {
		font-size: 3rem;
	}
	h2 {
		font-size: 2.5rem;
	}
	h3 {
		font-size: 2rem;
	}
  h4 {
    font-size: 1.5rem;
  }
	section {
		margin-top: 50px;
		margin-bottom: 50px;
	}
	.sp-none {
		display: none;
	}
	.leadtext p {
		font-size: 35px;
	}
	.telltap {
		display: none
	}
}
/* 最大デバイス（1400px 以上）*/
@media (min-width: 1400px) {
	p, li, table, form, legend, .btn {
		font-size: 26px;
	}
	h1 {
		font-size: 3rem;
	}
	h2 {
		font-size: 2.5rem;
	}
	h3 {
		font-size: 2rem;
	}
  h4 {
    font-size: 1.5rem;
  }
	section {
		margin-top: 75px;
		margin-bottom: 75px;
	}
	.sp-none {
		display: none;
	}
	.leadtext p {
		font-size: 40px;
	}
	.telltap {
		display: none
	}
}
</pre></body></html>