html {
	font-size: 62.5%;
	overflow-y: scroll;
}
body {
	margin: 0;
	background-color: #fefae9;
	padding: 0;
	font-family: "M PLUS Rounded 1c", sans-serif;
}
h1, h2, h3, h4, h5, h6, dl, dt, dd, ul, ol, li, p {
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: justify;
}

/* text style */
.hd1, .hd2, .hd3 {
	line-height: 1.4;
	letter-spacing: 0.5px;
}
.hd1 {
	font-size: 1.8rem;
}
.hd2 {
	font-size: 1.73rem;
}
.hd3 {
	font-size: 1.6rem;
}
.lbd {
	border-left: solid 4px #bababa;
	padding-left: 0.8em;
}
.fp3, .fp4, .fp5, .fp6 {
	line-height: 1.5;
	letter-spacing: 0.5px;
	text-align: left;
}
.fp3 {
	font-size: 1.47rem;
}
.fp4 {
	font-size: 1.4rem;
}
.fp5 {
	font-size: 1.33rem;
}
.fp6 {
	font-size: 1.2rem;
	line-height: 1.4;
}
@media screen and (min-width: 960px) {
	.hd1 {
		font-size: 2.4rem;
	}
	.hd2 {
		font-size: 2.1rem;
	}
	.hd3 {
		font-size: 1.8rem;
	}
	.fp3, .fp4, .fp5, .fp6 {
		line-height: 1.6;
	}
}
.ctr {
	text-align: center;
}
.rgt {
	text-align: right;
}

h1, h2, h3 {
	margin-bottom: 1em;
}
p {
	margin-bottom: 2em;
	font-size: 1.3rem;
}
a {
	color: #000;
}


/* block */

header {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	border-bottom: solid 1px #e8e8e8;
	background-color: #fff;
	height: 54px;
	padding: 0 30px;
}
header.fix {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}
header.fix + * {
	margin-top: 54px;
}
#branding {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}
#branding a {
	transform: translateY(3px);
}
#branding img {
	width: 120px;
}
#navigation {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
	height: 100%;
	padding-bottom: 8px;
}
#navigation ul {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: flex-start;
}
#navigation ul li:not(:last-child) {
	margin-right: 10px;
}
#navigation ul li a {
	display: inline-block;
	padding: 0px 10px;
	font-size: 1.3rem;
	line-height: 100%;
}
#navigation ul li a:hover {
	color: #000;
}
#navigation ul li.sns {
	margin-left: 12px;
	line-height: 100%;
}
#navigation ul li.sns a {
	padding: 0;
}
#navigation ul li.sns a:not(:last-child) {
	margin-right: 10px;
}
#navigation ul li.sns a img {
	display: block;
	width: 27px;
	transform: translateY(1px);
}
#navigation button {
	box-sizing: border-box;
	position: absolute;
	top: 10px;
	right: 14px;
	display: block;
	border: 1px solid #585F63;
	border-radius: 3px;
	width: 34px;
	height: 34px;
	padding: 6px;
	box-shadow: none;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	z-index: 100;
	cursor: pointer;
	transition: border 0.6s;
}
#navigation button:focus {
    outline: 0;
}
#navigation button > div {
	position: relative;
	margin-top: 7px;
	margin-bottom: 7px;
}
#navigation button > div, #navigation button > div:before, #navigation button > div:after {
	display: block;
	width: 20px;
	height: 1px;
	background-color: #585F63;
	transition-property: background-color, transform;
	transition-duration: 0.4s;
}
#navigation button > div:before, #navigation button > div:after {
	position: absolute;
	content: "";
}
#navigation button > div:before {
	top: -6.2px;
}
#navigation button > div:after {
	top: 6.2px;
}
#navigation.toggled button > div:before {
	top: -7px;
}
#navigation.toggled button > div:after {
	top: 6px;
}
#navigation.toggled button > div {
	background-color: transparent;
}
#navigation.toggled button > div:before {
	transform: translateY(7px) rotate(45deg);
}
#navigation.toggled button > div:after {
	transform: translateY(-6px) rotate(-45deg);
}
@media screen and (max-width: 1080px) {
	#navigation ul li:not(:last-child) {
		margin-right: 5px;
	}
	#navigation ul li a {
		padding: 0 5px;
	}
}
@media screen and (min-width: 960px) {
	#navigation button {
		display: none;
	}
	#navigation ul {
		height: auto !important;
	}
}
@media screen and (max-width: 959px) {
	header {
		padding-left: 20px;
	}
	#navigation ul {
		position: absolute;
		top: 54px;
		left: 0;
		flex-direction: column;
		width: 100%;
		height: 0px;
		background-color: #fff;
		transition: height 0.4s;
		overflow: hidden;
	}
	#navigation ul > li {
		flex-shrink: 0;
		margin: 0 !important;
		width: 100%;
	}
	#navigation ul > li:not(.sns) > a {
		box-sizing: border-box;
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		border-bottom: 1px solid #ddd;
		width: 100%;
		min-height: 36px;
		background: none;
		padding: 7px 0;
		font-size: 10pt;
		letter-spacing: 0.5pt;
		text-indent: 1px;
		text-decoration: none;
		line-height: 140%;
		white-space: nowrap;
	}
	#navigation ul li.sns {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		border-bottom: 1px solid #ddd;
		height: 52px;
	}
	#navigation ul li.sns a:not(:last-child) {
		margin-right: 15px;
	}
	#navigation ul li.sns a img {
		transform: none;
	}
}
@media screen and (max-width: 480px) {
	header {
		padding: 0 10px;
	}
}



footer {
	background-color: #f8f8f8;
	padding: 10px 0;
}
.wr {
	padding: 40px 9px;
	margin: 0 auto;
}
.wr > *:last-child {
	margin-bottom: 0;
}
.fw {
	padding: 0;
}
.w100 {
	width: 100%;
}
.bmg1 {
	margin-bottom: 2rem;
}
.bmg2 {
	margin-bottom: 4rem;
}
.bmg3 {
	margin-bottom: 6rem;
}
.bmg4 {
	margin-bottom: 9rem;
}
.nobmg {
	margin: 0;
}

.flexcontainer {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.flexitem {
	margin-right: 24px;
	margin-bottom: 24px;
	width: calc((100% - 48px) / 3 - 0.1px);
	background-color: #000;
	text-align: center;
	overflow: hidden;
}
.item1 {
	background: #009933;
}
.item2 {
	background: #0066FF;
}
.item3 {
	background: #CC6666;
}
.item4 {
	background: #CC66FF;
}
.item5 {
	background: #FF33CC;
}
@media screen and (min-width: 841px) {
	.flexitem:nth-child(3n) {
		margin-right: 0;
	}
	.flexitem:nth-last-child(-n + 3) {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 840px) {
	.flexitem {
		width: calc((100% - 24px) / 2 - 0.1px);
	}
}
@media screen and (max-width: 840px) {
	.flexitem:nth-child(even) {
		margin-right: 0;
	}
	.flexitem:nth-last-child(-n + 2) {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 540px) {
	.flexitem {
		margin-right: 10px;
		margin-bottom: 10px;
		width: calc((100% - 10px) / 2 - 0.1px);
	}
}

.separatecont {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
}
.separatecont > .per70 {
	width: calc(70% - 18px);
}
.separatecont > .per60 {
	width: calc(60% - 18px);
}
.separatecont > .per50 {
	width: calc(50% - 18px);
}
.separatecont > .per40 {
	width: calc(40% - 18px);
}
.separatecont > .per30 {
	width: calc(30% - 18px);
}
.separatecont > div p:last-child {
	margin-bottom: 0;
}
@media screen and (max-width: 840px) {
	.separatecont {
		display: block;
	}
	.separatecont > div {
		width: 100% !important;
	}
	.separatecont > div:not(:last-child) {
		margin-bottom: 2rem;
	}
}

a.phlightbox {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 100%;
}
a.phlightbox figure {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	transform: scale(1);
	transition: transform 0.3s;
}
a.phlightbox:hover {
	opacity: 1;
}
a.phlightbox:hover figure {
	transform: scale(1.2);
}
a.phlightbox span {
	box-sizing: border-box;
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	height: 23%;
	padding: 0 20px;
	background-color: rgba(255, 255, 255, 0.8);
	font-size: 1.4rem;
	line-height: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* form */
/* reset default form styles */
form section {
	display: block;
	padding-top: 20px;
}
form section > div {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 40px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 40px;
}
form section div > h4 {
	box-sizing: border-box;
	float: left;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0;
	width: 210px;
	text-align: justify;
	font-size: 10.5pt;
	font-weight: bold;
	letter-spacing: 0.5px;
	line-height: 140%;
	clear: left;
}
form section div > h4.text {
	padding-top: 0.8em;
}
form section div > h4.select {
	padding-top: 0.3em;
}
form section div > div {
	display: block;
	margin-left: 0;
	width: calc(100% - 250px);
	padding: 0;
}
form section div > div p {
	margin: 0;
}
form section div > div h5 {
	margin: 0 0 5px;
	font-size: 11pt;;
}
form section div > div h5:not(:first-child) {
	margin-top: 20px;
}
form section div > div.full {
	width: 100%;
}
form section div > div.twofield {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
}
form section div > div.twofield label {
	width: calc(50% - 12px);
	display: flex;
	margin-right: 0;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	white-space: nowrap;
}
form section div > div.twofield label span {
	box-sizing: border-box;
	min-width: 2.7em;
	padding-right: 0.7em;
	text-align: right;
}
form section div > div.multiInput label {
	display: flex;
	margin-right: 0;
	margin-bottom: 10px;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	white-space: nowrap;
}
form section div > div.multiInput label:last-child {
	margin-bottom: 0;
}
form section div > div.multiInput label span {
	box-sizing: border-box;
	min-width: 4.8em;
	padding-right: 0.7em;
	text-align: right;
}
form section div > div label {
	margin-right: 15px;
	font-size: 1.4rem;
}
form section div > div > label:last-child {
	margin-right: 0;
}
input:not([type="checkbox"]), button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type="text"], input[type="tel"], input[type="email"], textarea {
	box-sizing: border-box;
	font-size: 12pt;
	line-height: 160%;
	border: solid 1px #b7b7b7;
	border-radius: 5px;
	padding: 6px 12px;
	margin: 0;
	width: 100%;
}
input[name=zip] {
	max-width: 8em;
}
input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus,
textarea:focus, input[type="radio"]:focus, input[type="checkbox"] {
	background: #fff;
	border: 1px solid #f2b2b2;
}
select {
	position: relative;
	font-family: monospace;
	font-size: 12pt;
	line-height: 160%;
	border: solid 1px #b7b7b7;
	border-radius: 5px;
	padding: 6px 12px;
	padding-right: calc(12px + 1.5em);
	margin: 0;
	color: #333;
	cursor: pointer;
}
select::-ms-expand {
    display: none;
}
.selwrap {
	position: relative;
	display: inline-block;
	width: auto;
}
.selwrap:after {
	content: "\25BD";
	position: absolute;
	top: 0;
	right: 10px;
	height: 100%;
	font-size: 1.2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 100%;
	transform: translatey(0px);
	pointer-events: none;
}
input[type=radio], input[type=checkbox] {
	display: none;
}
input[type=radio] + label, input[type=checkbox] + label {
	position: relative;
	padding-left: 1.5em;
	font-size: 1.4rem;
}
input[type=radio] + label:after, input[type=radio] + label:before,
input[type=checkbox] + label:after, input[type=checkbox] + label:before {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
}
input[type=radio] + label:after {
	left: 0;
	margin-top: -8px;
	width: 16px;
	height: 16px;
	border: 1px solid #b7b7b7;
	border-radius: 50%;
}
input[type=radio] + label:before {
	left: 4px;
	margin-top: -4px;
	width: 10px;
	height: 10px;
	background: #827e5e;
	border-radius: 50%;
	opacity: 0;
}
input[type=radio]:checked + label:before {
	opacity: 1;
}
input[type=radio]:checked + label:hover:after {
	border-color: #0171bd;
}
input[type=checkbox] + label:after {
	left: 0;
	margin-top: -8px;
	width: 15px;
	height: 15px;
	border: 1px solid #b7b7b7;
	border-radius: 3px;
}
input[type=checkbox] + label:before {
	top: 49%;
	left: 2px;
	margin-top: -4px;
	width: 11px;
	height: 4px;
	opacity: 0;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-55deg);
	z-index: 1;
}
input[type=checkbox]:checked + label:before {
	opacity: 1;
}
input[type=checkbox]:checked + label:after {
	border-color: #827e5e;
	background-color: #827e5e;
}

input[type="reset"] {
	color: #fff;
	font-size: 11pt;
	font-weight: bold;
	letter-spacing: 0.5px;
	background: #d5d3bd;
	text-align: center;
	padding: 16px 0;
	box-sizing: border-box;
	border-radius: 4px;
	cursor: pointer;
}
input[type="reset"]:hover {
	opacity: 0.8;
}
input[type="submit"] {
	color: #fff;
	font-size: 11pt;
	font-weight: bold;
	letter-spacing: 0.5px;
	background: #827e5e;
	text-align: center;
	padding: 16px 0;
	box-sizing: border-box;
	border-radius: 4px;
	cursor: pointer;
}
input[type="submit"]:hover {
	opacity: 0.8;
}
form .btns {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
}
form .btns input[type="reset"] {
	width: 30%;
}
form .btns input[type="submit"] {
	width: calc(70% - 20px);
}
form .must {
	color: #fff;
	font-size: 8pt;
	line-height: 100%;
	font-weight: bold;
	background: #e00;
	padding: 4px 5px 3px 6px;
	border-radius: 3px;
	float: right;
}

/* width A */
@media screen and (max-width: 820px) and (min-width: 681px) {
	form section div > div.twofield {
		display: block;
	}
	form section div > div.twofield label {
		width: 100%;
	}
	form section div > div.twofield label:first-child {
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 767px) {
	form section > div {
		margin-bottom: 25px;
		padding-bottom: 25px;
	}
}
@media screen and (max-width: 680px) {
	form section div > h4 {
		display: block;
		margin-bottom: 14px;
		width: 100%;
		font-weight: bold;
	}
	form section div > h4 br {
		display: none;
	}
	form section div > h4.text, form section div > h4.select {
		padding-top: 0;
	}
	form section div > div {
		width: 100%;
	}
	form .must {
		float: none;
		display: inline-block;
		vertical-align: baseline;
		margin-left: 10px;
	}
}
@media screen and (max-width: 520px) {
	form section div > div.twofield {
		display: block;
	}
	form section div > div.twofield label {
		width: 100%;
	}
	form section div > div.twofield label:first-child {
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 480px) {
	form section {
		margin-bottom: 60px !important;
	}
	form section > div {
		margin-bottom: 18px;
		padding-bottom: 18px;
	}
	form section div > h4 {
		margin-bottom: 12px;
	}
	form .btns input[type="submit"] {
		width: calc(70% - 10px);
	}
}
@media screen and (max-width: 434px) {
	form dl dt, form dl dd {
		padding-left: 0;
	}
}


/* no-bordered table */
table.nobd {
	border-collapse: collapse;
}
table.nobd th {
	border: solid 1px #a6a6a6;
	padding: 10px 20px;
}
table.nobd td {
	border: solid 1px #a6a6a6;
	padding: 10px 20px;
}

/* bordered table */
table.bd {
	border: solid 1px #b7b7b7;
	border-collapse: separate;
	border-spacing: 12px 10px;
}
table.bd th {
	border: solid 1px #b7b7b7;
	padding: 10px 20px;
}
table.bd td {
	border: solid 1px #ccc;
	padding: 10px 20px;
}

/* rewind button */
#rwdwp {
	position: fixed;
	right: 32px;
	bottom: 65px;
	width: 48px;
	height: 48px;
	z-index: 120;
}
#rwd {
	box-sizing: border-box;
	border: 1px solid #b9d7a7;
	border-radius: 24px;
	background-color: #b9d7a7;
	width: inherit;
	height: inherit;
	opacity: 0;
	transition: opacity 0.7s;
}
body.fko #rwd {
	border-color: #fedecb;
	background-color: #fedecb;
}
body.osk #rwd {
	border-color: #fadfa5;
	background-color: #fadfa5;
}
body.tky #rwd {
	border-color: #a6d6ef;
	background-color: #a6d6ef;
}
body.snd #rwd {
	border-color: #fbdfe5;
	background-color: #fbdfe5;
}
#rwd a {
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: inherit;
	height: inherit;
	padding: 4px 3px 0 0;
	text-align: center;
	color: #3a2b20;
	font-size: 18px;
	vertical-align: middle;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	outline: none;
}
#rwd a div {
	width: 14px;
	height: 14px;
	border-top: 1px solid;
	border-right: 1px solid;
	border-color: #231815 #231815 transparent transparent;
	transform: rotate(-45deg);
}
@media screen and (max-width: 420px) {
	#rwdwp {
		right: 12px;
		bottom: 26px;
	}
}

/* スマホ用のCSSはメディアクエリの外に記述する */

@media screen and (min-width: 481px) {
	/* 481px以上に適用されるCSS（タブレット用） */
	html {
		font-size: 67%;
	}
	.wr {
		margin: 0 auto;
		width: calc(100% - 40px);
		padding: 60px 0;
	}
}
@media screen and (min-width: 641px) {
	.wr {
		padding: 84px 0;
	}
}
@media screen and (min-width: 960px) {
	/* 960px以上に適用されるCSS（PC用） */
	html {
		font-size: 72%;
	}
	.wr {
		max-width: 960px;
		padding: 110px 0 140px;
	}
	a {
		text-decoration: none;
	}
	a[href]:hover {
		text-decoration: underline;
		opacity: 0.8;
	}
	img {
		border: none;
	}
}
@media screen and (max-width: 480px) {
	#info {
		padding-bottom: 0;
		margin-bottom: 10px;
	}
}

ul.newslist li {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}
ul.newslist li:not(:last-child) {
	margin-bottom: 16px;
	border-bottom: 1px solid #dde1e4;
	padding-bottom: 16px;
}
ul.newslist li h3 {
	margin-bottom: 0.6em;
	font-size: 1.4rem;
}
ul.newslist li .category {
	font-size: 1.0rem;
}
ul.newslist li a {
	text-decoration: none;
}
ul.newslist li > div {
	width: calc(100% - 100px);
}
ul.newslist li > a {
	width: 88px;
}
ul.newslist li > a figure {
	margin: 0;
	padding-top: 100%;
	background-position: center;
	background-size: cover;
}
@media screen and (min-width: 481px) {
	ul.newslist li > div {
		width: calc(100% - 144px);
	}
	ul.newslist li > a {
		width: 124px;
	}
}

/* 汎用 */
.fwnml {
	font-weight: normal;
}
.fwbld {
	font-weight: bold;
}
.jstf {
	text-align: justify;
}

/* clear fix */
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}
.cf {
	*zoom: 1;
}

#popup {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	overflow: hidden;
	opacity: 0;
	z-index: 9999;
	transition: opacity 0.5s ease;
}
#popup .inner {
	max-width: calc(100% - 120px);
	max-height: calc(100% - 60px);
	background-color: #fff;
	color: #000;
	overflow: auto;
	transform: scale(0.8);
	transition: transform 0.5s ease;
}
#popup .inner a {
	width: 220px;
	height: 120px;
	font-size: 1.6rem;
}
#popup .inner a:first-child {
	margin-right: 30px;
}
#popup .closer {
	position: fixed;
	top: 15px;
	right: 15px;
	width: 32px;
	height: 32px;
	cursor: pointer;
}
#popup.active {
	opacity: 1;
	transition: opacity 0.5s ease;
}
#popup.active .inner {
	transform: scale(1);
	transition: transform 0.5s ease;
	-webkit-overflow-scrolling: touch;
}

#popup .inner .box {
	box-sizing: border-box;
	padding: 30px;
}
#popup .inner #if1.box {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
}
#popupContents {
	display: none;
}

/* width B */
@media screen and (max-width: 540px) {
	#popup .inner .box {
		padding: 20px;
	}
	#popup .inner #if1.box {
		flex-direction: column;
	}
	#popup .inner a {
		height: 80px;
	}
	#popup .inner a:first-child {
		margin-right: 0;
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 480px) {
	#popup .inner {
		max-width: calc(100% - 60px);
	}
}
@media screen and (max-width: 420px) {
	#popup .inner {
		max-width: calc(100% - 40px);
	}
	#if1, #if2, #if3, #if4, #if5, #if6 {
		padding: 20px 10px;
	}
}

/* custom */
.photo {
	background-color: #333;
	width: 100%;
	height: 240px;
}
a.btnrd {
	color: #fff;
	text-decoration: none;
	background-color: #26b7bc;
	text-align: center;
	width: 26em;
	height: 60px;
	padding: 10px 50px;
	margin: 0 auto 4em;;
	border-radius: 40px;
	display: block;
}
.txtop {
	font-size: 15px;
	line-height: 1;
	padding-bottom: 8px;
	display: flex;
}
.txbtm {
	font-size: 30px;
	line-height: 1;
}
#slide {
	margin: 0;
	border-bottom: 7px solid #346617;
	background-image: url(img/mainv-dt.png?0725);
	padding-top: 36.18%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
#slide.ver2 {
	position: relative;
}
#slide.ver2 .viewer {
	position: absolute;
	top: 0;
	left: 50%;
	width: calc(100% - 40px);
	max-width: 1120px;
	height: 100%;
	transform: translatex(-50%);
}
#slide.ver2 .viewer img {
	position: absolute;
	top: 0;
	right: 0;
	width: 160px;
}
body.fko #slide {
	background-image: url(img/mainv_fko-dt.png);
}
body.osk #slide {
	background-image: url(img/mainv_osk-dt.png?b);
}
/*
#slide.osk {
	background-image: url(img/mainv_dt-osk.png?c);
}
#slide.tky {
	background-image: url(img/mainv_dt-tky_240930.png?c);
}
*/
@media screen and (max-width: 767px) {
	#slide {
		background-image: url(img/mainv-sp.png?0725);
		padding-top: 111.07%;
	}
	body.fko #slide {
		background-image: url(img/mainv_fko-sp.png);
	}
	body.osk #slide {
		background-image: url(img/mainv_osk-sp.png?b);
	}
	/*
	#slide.osk {
		background-image: url(img/mainv_sp-osk.png?c);
	}
	#slide.tky {
		background-image: url(img/mainv_sp-tky_240930.png?c);
	}
	*/
}

.subHeader {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	border-bottom: 7px solid #231815;
	background-color: #fff;
	overflow: hidden;
}
.subHeader .bg {
	position: absolute;
	top: -20%;
	right: -12%;
	margin: 0;
	width: 630px;
	opacity: 0.4;
}
.subHeader .bg img {
	display: block;
	width: 100%;
}
body.fko .subHeader {
	border-bottom-color: #f5917a;
	background-color: #fedecb;
}
body.osk .subHeader {
	border-bottom-color: #ecba7d;
	background-color: #fadfa5;
}
body.tky .subHeader {
	border-bottom-color: #a2c9e7;
	background-color: #c6e6f7;
}
body.snd .subHeader {
	border-bottom-color: #dc919b;
	background-color: #fbdfe5;
}
.subHeader:before {
	content: "";
	display: block;
	width: 0;
	padding-top: 280px;
}
.subHeader h2 {
	position: relative;
	margin: 0;
	border-radius: 6px;
	background-color: #ffffffbd;
	padding: 20px 2.5em 21px;
	text-align: center;
	color: #000;
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 100%;
	backdrop-filter: blur(8px);
}
.subHeader h2 small {
	display: block;
	margin-bottom: 13px;
	font-size: 16pt;
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 100%;
}
.subHeader h2 img {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 120px;
	transform: translate(34px, 10px);
}
body.tky .subHeader h2 img {
	max-width: 100px;
}

.bg01 {
	background: #d3edfb;
}

.rbhd {
	position: relative;
	margin-bottom: 44px;
	border-radius: 10px;
	background: #f7d26d;
	padding: 14px 0.5rem 21px;
	text-align: center;
	color: #231815;
	font-size: 3.1rem;
	letter-spacing: 1px;
	line-height: 100%;
}
.rbhd:before {
	content: '';
	position: absolute;
	top: -8px;
	left: -10px;
	width: calc(100% - 2px);
	height: calc(100% - 4px);
	border-radius: 10px;
	border: 3px solid #d66649;
}
@media screen and (max-width: 640px) {
	.rbhd {
		font-size: 2.2rem;
	}
}

footer {
	color: #231815;
	background-color: #b9d7a7;
	text-align: center;
	padding: 18px 5px;
}
footer h3 {
	display: inline-block;
	background-color: #fff;
	color: #9fd082;
	line-height: 100%;
	font-size: 1.4rem;
	padding: 8px 16px 7px;
	letter-spacing: 1px;
}
body.fko footer {
	background-color: #fedecb;
}
body.fko footer h3 {
	color: #e6c3af;
}
body.osk footer {
	background-color: #fadfa5;
}
body.osk footer h3 {
	color: #edcd88;
}
body.tky footer {
	background-color: #a6d6ef;
}
body.tky footer h3 {
	color: #b0d9ef;
}
body.snd footer {
	background-color: #fbdfe5;
}
body.snd footer h3 {
	color: #edc0ca;
}

footer h4 {
	margin-bottom: 5px;
	text-align: center;
	font-size: 1.6rem;
	letter-spacing: 1px;
	line-height: 130%;
}
footer h4 small {
	display: block;
}
footer p {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
	margin: 0;
	font-size: 1.4rem;
}
footer p span {
	display: inline-block;
}
footer p span:first-child {
	margin-right: 20px;
}
footer p a {
	color: inherit;
}
@media screen and (max-width: 580px) {
	footer h4 {
		margin-bottom: 10px;
	}
	footer h4 small {
		letter-spacing: 0.5px;
	}
	footer p {
		flex-direction: column;
		align-items: center;
	}
	footer p span:first-child {
		margin-right: 0;
		margin-bottom: 15px;
	}
}

#ft {
	background: #f7f2e0;
	padding: 40px 10px 18px;
	text-align: center;
	clear: both;
}
#ft img {
	width: 100%;
	max-width: 340px;
}
#ft p {
	margin: 1em 0 0;
	text-align: center;
	color: #231815;
	font-size: 12pt;
	line-height: 17pt;
	letter-spacing: 1px;
}
@media screen and (max-width: 400px) {
	#ft p {
		margin-bottom: 5px;
		font-size: 10pt;
		line-height: 15pt;
	}
}

#entrance {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1140px;
}
#entrance > div {
	position: relative;
	width: calc((100% - 60px) / 4);
}
#entrance img {
	width: 100%;
	margin-bottom: 43px;
}
#entrance a {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-end;
}
#entrance a:hover {
	text-decoration: none;
}
#entrance a .btn {
	position: absolute;
	left: 50%;
	bottom: 0;
	display: inline-block;
	border: 3px solid #fff;
	border-radius: 100px;
	background-color: #346617;
	padding: 10px 40px 11px;
	text-align: center;
	color: #fff;
	font-size: 13pt;
	font-weight: bold;
	line-height: 100%;
	white-space: nowrap;
	transform: translateX(-50%);
}
#entrance a.disabled {
	pointer-events: none;
}
#entrance a.disabled .btn {
	background-color: #d9d9d9 !important;
}
#entrance a.parallax:not(.animated):not(.disabled) .btn {
	animation: flash 1.1s linear infinite;
}
@keyframes flash {
	18%, 38% {
		opacity: 0.4;
	}
	10%, 26%, 30%, 46%, 100% {
		opacity: 1;
	}
}
#entrance a.parallax.animated:hover {
	opacity: 0.9;
}
#entrance > div:nth-child(1) a .btn {
	background-color: #f4a893;
}
#entrance > div:nth-child(2) a .btn {
	background-color: #fcb644;
}
#entrance > div:nth-child(3) a .btn {
	background-color: #97c0d7;
}
#entrance > div:nth-child(4) a .btn {
	background-color: #ed96a4;
}
#entrance .att {
	margin-top: 24px;
	width: 100%;
	text-align: center;
	font-size: 1.6rem;
}
#entrance.single {
	justify-content: center;
}
#entrance.single > div {
	width: 100%;
	max-width: 450px;
}
@media screen and (max-width: 1040px) {
	#entrance {
		max-width: 680px;
		padding: 64px 0 80px;
	}
	#entrance > div {
		width: calc(50% - 20px);
	}
	#entrance > div:nth-child(n + 3) {
		margin-top: 17px;
	}
}
@media screen and (max-width: 640px) {
	#entrance {
		padding: 44px 0 68px;
	}
	#entrance > div {
		width: calc(50% - 10px);
	}
	#entrance > div:nth-child(n + 3) {
		margin-top: 32px;
	}
}
@media screen and (max-width: 540px) {
	#entrance .att {
		text-align: left;
		line-height: 140%;
	}
	#entrance img {
		margin-bottom: 36px;
	}
	#entrance a .btn {
		width: 100%;
		padding: 8px 0 9px;
		font-size: 11pt;
	}
}
@media screen and (max-width: 480px) {
	#entrance {
		width: calc(100% - 20px);
		padding: 32px 0 48px;
	}
	#entrance img {
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 440px) {
	#entrance a .btn {
		font-size: 10.5pt;
	}
}

img {
	max-width: 100%;
}

#info {
	padding-top: 0;
}
#info img, #present img {
	width: 100%;
}
@media screen and (min-width: 581px) {
	img.onsp {
		display: none;
	}
}
@media screen and (max-width: 580px) {
	img.onpc {
		display: none;
	}
}

#present {
	padding-bottom: 90px;
	text-align: center;
}
#present .cols2 {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 50px;
}
#present .cols2 > div {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	width: calc(50% - 38px);
	text-align: center;
	transform: translateX(20px);
}
#present p {
	margin: 0;
	text-align: left;
	color: #231815;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 160%;
}
#present p > span {
	position: relative;
	display: inline-block;
	height: 1.6em;
}
#present p > span:before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 2px;
	border-radius: 100px;
	width: calc(100% + 10px);
	height: 8px;
	background-color: #f7d26d;
	transform: translateX(-50%);
	z-index: -1;
}
#present figure {
	flex-shrink: 0;
	position: relative;
	display: inline-block;
	margin: 0;
	margin-right: 38px;
	padding-bottom: 30px;
}
#present figure:before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	display: block;
	border-radius: 50%;
	width: calc(100% + 70px);
	height: 110px;
	background-color: #fff;
	transform: translatex(calc(-50% - 12px));
}
#present img {
	position: relative;
	width: auto;
	height: 180px;
	transform: rotate(15deg);
}
#present .sub {
	position: absolute;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	right: -20px;
	bottom: -20px;
	border-radius: 50%;
	background-color: #fbe9b7;
	width: 84px;
}
#present .sub:before {
	content: "";
	display: block;
	width: 0;
	padding-top: 100%;
}
#present .sub img {
	width: calc(100% - 24px);
	height: auto !important;
	transform: rotate(10deg) translateX(5px) !important;
}
body.osk #present .cols2 > .lft img {
	height: 130px;
}
@media screen and (min-width: 1011px) {
	body.osk #present .cols2 {
		align-items: center;
		padding: 0 30px;
	}
	body.osk #present .cols2 > .lft {
		width: 50%
	}
	body.osk #present .cols2 > .rgt {
		width: 43%
	}
}
@media screen and (max-width: 1010px) {
	#present {
		max-width: 790px;
		padding-bottom: 60px;
	}
	#present .cols2 {
		flex-direction: column;
		align-items: center;
		padding: 0;
	}
	#present .cols2 > div {
		width: 100%;
		max-width: 540px;
	}
	#present .cols2 .lft {
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 1010px) and (min-width: 641px) {
	body.osk #present .cols2 > div {
		max-width: 450px;
	}
}
@media screen and (min-width: 641px) {
	body.osk #present .cols2 > .rgt img {
		height: 150px;
	}
}
@media screen and (max-width: 640px) {
	#present .cols2 > div {
		max-width: 390px;
	}
	#present figure:before {
		width: calc(100% + 50px);
	}
	#present img {
		height: 150px;
	}
	body.osk #present .cols2 > .lft img {
		height: 100px;
	}
}
@media screen and (max-width: 480px) {
	#present .cols2 > div {
		box-sizing: border-box;
		max-width: none;
		padding-left: 50px;
		transform: none;
	}
	#present .cols2 .lft {
		margin-bottom: 32px;
	}
	#present .rbhd {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 38px;
		width: calc(100% - 20px);
		transform: translateX(5px);
	}
	#present img {
		height: 130px;
	}
	body.osk #present .cols2 > .lft img {
		height: 90px;
	}
	#present .sub {
		width: 74px;
	}
	#present p {
		padding-right: 10px;
	}
}
@media screen and (max-width: 440px) {
	#present .cols2 > div {
		padding-left: 30px;
	}
	#present figure {
		padding-bottom: 22px;
	}
	#present figure:before {
		width: calc(100% + 40px);
		height: 80px;
		transform: translatex(calc(-50% - 7px));
	}
	#present img {
		height: 110px;
	}
	body.osk #present .cols2 > .lft img {
		height: 76px;
	}
}

/* page */
#pgwr {
	background: #c9ecfd;
}
#pgwr.ver2 {
	background-color: #fdf6d7;
}
#pg {
	max-width: 800px;
}
#pg.ver2 {
	max-width: 1000px;
}

#pg p.intro {
	margin-bottom: 20px;
	font-size: 1.5rem;
	line-height: 160%;
}
#pg p.intro + section {
	margin-bottom: 60px;
}

#pg #c624 {
	margin-bottom: 40px;
}
#pg #c624 h3, #pg #c624_kg h3 {
	margin-bottom: 45px;
}
#pg #c624 input[type=button].onsp, #pg #c624_kg input[type=button].onsp {
    display: none;
    margin: 10px auto 0;
}
#pg #c624 select.onsp, #pg #c624_kg select.onsp {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 51px;
    opacity: 0;
}
#pg h3.tdate {
	margin: 15px 0;
	padding: 0;
}
.blk {
	position: relative;
}
.blk > .inner {
	width: calc(100% - 40px);
	margin: 0 auto;
	padding: 74px 0 84px;
}
@media screen and (max-width: 640px) {
	.blk > .inner {
		padding: 60px 0 60px;
	}
}
@media screen and (max-width: 480px) {
	#pg #c624 h3, #pg #c624_kg h3 {
		margin-bottom: 35px;
	}
	.blk > .inner {
		width: calc(100% - 20px);
		padding: 40px 0 60px;
	}
}

h3.blktitle {
	margin: 0 0 1.5em;
	text-align: center;
	font-size: 3.6rem;
	font-weight: 800;
	letter-spacing: 2px;
	line-height: 160%;
}
h3.blktitle > span {
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
}
h3.blktitle > span:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	display: block;
	width: calc(100% - 2em);
	height: 3px;
	background-color: #555;
	transform: translateX(-50%);
}
img.full {
	display: block;
	margin-bottom: 2em;
	width: 100%;
}
#about section.card img.full {
	margin-left: auto;
	margin-right: auto;
	max-width: 680px;
}
@media screen and (min-width: 641px) {
	#about section.card h4 .onsp {
		display: none;
	}
}
@media screen and (max-width: 640px) {
	h3.blktitle {
		font-size: 22pt;
		margin-bottom: 1.6em;
	}
	#about section.card h4 {
		line-height: 140%
	}
}
@media screen and (max-width: 540px) {
	#about section h4 {
		font-size: 14pt !important;
	}
	.colimg img {
		width: calc(50% - 8px);
	}
}
@media screen and (max-width: 480px) {
	h3.blktitle {
		margin-bottom: 1.3em;
		font-size: 18pt;
	}
}

.dlist {
	margin: 0;
}
.dlist dt {
	clear: left;
	float: left;
	width: 7.5em;
	font-size: 1.4rem;
	letter-spacing: 2px;
	line-height: 180%;
}
.dlist dd {
	margin-left: 8em;
	margin-bottom: 20px;
	padding: 0;
	text-align: left;
	font-size: 1.7rem;
	letter-spacing: 0.5px;
	line-height: 180%;
}
.dlist dd p {
	text-align: left;
	font-size: 1.7rem;
}
.dlist dd:last-child {
	margin-bottom: 0;
}
.dlist dd a.accs {
	display: inline-block;
	border-radius: 3px;
	background-color: #31541c;
	color: #fff;
	line-height: 100%;
	font-size: 10pt;
	padding: 8px 10px 7px;
	letter-spacing: 0.5px;
	text-decoration: none;
	margin-top: 3px;
}
.dlist dd a.accs:hover {
	text-decoration: none;
}
.dlist dd .dlist.simple.long:first-child dt {
	clear: none;
}
@media screen and (max-width: 640px) {
	.dlist dd p {
		padding-bottom: 6px !important;
	}
}
@media screen and (max-width: 480px) {
	.dlist:not(.enquete) dt {
		float: none;
		margin-bottom: 8px;
		border-bottom: 1px solid #a0a0a0;
		width: 100% !important;
		font-size: 11.5pt;
	}
	.dlist dd {
		margin-left: 0 !important;
		margin-bottom: 12px;
		border-left: none;
		padding-left: 0;
		font-size: 11pt;
		line-height: 140%;
	}
	.dlist dd p {
		font-size: 11pt !important;
	}
	.dlist dd a.accs {
		margin-top: 8px;
	}
}

h3.vline {
	margin: 0 0 1.2em;
	text-align: center;
	font-size: 19pt;
	letter-spacing: 2px;
	line-height: 100%;
}
h3.vline > span {
	box-sizing: border-box;
	display: inline-block;
	border: 2px solid #000;
	border-left: none;
	border-right: none;
	width: 100%;
	max-width: 570px;
	padding: 10px 30px;
}
@media screen and (max-width: 640px) {
	h3.vline {
		font-size: 16pt;
		line-height: 140%;
	}
}
@media screen and (max-width: 480px) {
	h3.vline {
		width: 100%;
		font-size: 12pt;
		letter-spacing: 1px;
	}
	h3.vline > span {
		box-sizing: border-box;
		width: 100%;
		padding-left: 5px;
		padding-right: 5px;
	}
}

.areattl {
	margin: 0 0 1.5em;
	font-size: 13pt;
	letter-spacing: 2px;
}
.areattl.doou {
	color: #eeb300;
}
.areattl.donan {
	color: #ca61ca;
}
.areattl.dohoku {
	color: #8a9fcc;
}
.areattl.okhotsk {
	color: #9f57e6;
}
.areattl.tokachi {
	color: #b3ba59;
}
.areattl.kushironemuro {
	color: #78b735;
}

.list_link {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.list_link:last-child {
	margin-bottom: 0;
}
.list_link a {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-right: 30px;
	margin-bottom: 14px;
	border-radius: 4px;
	width: calc((100% - 60px) / 3 - 0.5px);
	background-color: #b8b809;
	text-align: center;
	color: #fff;
	font-size: 14pt;
	padding: 15px 18px;
	text-decoration: none;
	line-height: 140%;
}
.list_link a:hover {
	text-decoration: none;
}
.list_link a.disable {
	pointer-events: none;
}
.list_link a.ver2 {
	font-size: 13pt;
}
.list_link a.ver3 {
	font-size: 10pt;
	letter-spacing: 1px;
}
.list_link a.ver4 {
	font-size: 10pt;
	letter-spacing: 0.5px;
}
.list_link a:hover {
	opacity: 0.7;
}
.list_link a small.multiline {
	display: inline-block;
	line-height: 125%;
	margin-bottom: 2px;
}
.list_link a .label {
	display: inline-block;
	margin-top: 6px;
	border-radius: 3px;
	background-color: #e46e12;
	padding: 4px 7px 5px;
	font-size: 9pt;
	line-height: 100%;
}
.list_link a .label.ver2 {
	background-color: #7814d8;
}

.areattl.doou + .list_link a {
	background-color: #eeb300;
}
.areattl.donan + .list_link a {
	background-color: #ca61ca;
}
.areattl.dohoku + .list_link a {
	background-color: #8a9fcc;
}
.areattl.okhotsk + .list_link a {
	background-color: #9f57e6;
}
.areattl.tokachi + .list_link a {
	background-color: #b3ba59;
}
.areattl.kushironemuro + .list_link a {
	background-color: #78b735;
}
.list_link.ver2 > div {
	margin-right: 30px;
	margin-bottom: 28px;
	width: calc((100% - 60px) / 3 - 0.5px);
}
.list_link.ver2 > div a {
	margin: 0 0 10px;
	width: 100%;
	min-height: 56px;
}
.list_link.ver2 > div p {
	margin-bottom: 0;
	padding: 0 2px;
	color: #231815;
	font-size: 10.5pt;
	line-height: 160%;
}
@media screen and (max-width: 900px) {
	.list_link a, .list_link.ver2 > div {
		margin-right: 15px;
		width: calc((100% - 30px) / 3 - 0.5px);
	}
}
@media screen and (min-width: 781px) {
	.list_link a:nth-child(3n), .list_link.ver2 > div:nth-child(3n) {
		margin-right: 0;
	}
}
@media screen and (max-width: 780px) {
	.list_link a, .list_link.ver2 > div {
		margin-right: 15px;
		width: calc((100% - 15px) / 2 - 0.5px);
	}
	.list_link a:nth-child(even), .list_link.ver2 > div:nth-child(even) {
		margin-right: 0;
	}
}
@media screen and (min-width: 521px) {
	.list_link.ver2 > div a.adjustHeight {
		min-height: 82px;
	}
	.list_link.ver2 > div a.adjustHeight3 {
		min-height: 103px;
	}
}
@media screen and (max-width: 780px) and (min-width: 521px) {
	.list_link.ver2 > div a.adjustHeight2 {
		min-height: 82px;
	}
	.list_link.ver2 > div a.adjustHeight4 {
		min-height: 103px;
	}
	.list_link.ver2 > div a.adjustHeight.off2,
	.list_link.ver2 > div a.adjustHeight3.off2 {
		min-height: auto;
	}
	.list_link.ver2 > div a.adjustHeight.off3,
	.list_link.ver2 > div a.adjustHeight3.off3 {
		min-height: 82px;
	}
}
@media screen and (max-width: 520px) {
	.list_link a {
		margin-right: 0;
		margin-bottom: 8px;
		width: 100%;
	}
	.list_link.ver2 > div {
		margin-right: 0;
		margin-bottom: 24px;
		width: 100%;
	}
}

.toform {
	clear: both;
	margin-top: 70px;
	text-align: center;
}
#pg .toform {
	margin-top: 32px;
}
#seminars .toform {
	margin-bottom: 50px;
}
#pg .toform:first-child {
	margin-top: 0;
	margin-bottom: 80px;
}
.toform a {
	display: inline-block;
	border: 3px solid #b7556a;
	border-radius: 6px;
	width: 400px;
	padding: 24px 0;
	background-color: #ff89a2;
	text-align: center;
	color: #fff;
	font-size: 16pt;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: 2px;
	line-height: 100%;
	text-shadow: 3px 2px 0px #b7556a;
}
.toform a:hover {
	opacity: 0.8;
	text-decoration: none;
}
.toform a[disabled] {
	margin-bottom: 15px;
	border-color: #888;
	background-color: #eee;
	pointer-events: none;
	text-shadow: 3px 2px 0px #999;
	opacity: 0.4 !important;
}
.toform .att {
	display: block;
	margin: 0 auto;
	width: calc(100% - 20px);
	text-align: center !important;
	font-size: 11pt !important;
	line-height: 160% !important;
}
.toform .att.black {
	color: #000;
	text-align: center !important;
	margin-top: 10px !important;
}

.toform2 {
	margin: 0 auto;
	clear:both;
	text-align:center;
	padding:50px 0;
	width:calc(100% - 20px);
}
.toform2 img {
	width:100%;
	max-width: 384px;
}
@media screen and (max-width: 480px) {
	.toform {
		margin-top: 30px;
	}
	#pg .toform:first-child {
		margin-bottom: 60px;
	}
	.toform a {
		width: 300px;
		font-size: 12pt;
	}
}

#seminars {
	background-color: #dbf2fd;
}
.ctr a.btn {
	display: inline-block;
	border-radius: 6px;
	width: 260px;
	padding: 16px 0;
	background-color: #346617;
	text-align: center;
	color: #fff;
	font-size: 13pt;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: 1px;
}
.ctr a.btn:hover {
	opacity: 0.8;
}

#countermeasure {
	box-sizing: border-box;
	margin: 80px auto 40px;
	width: 100%;
	max-width: 805px;
	padding: 30px 70px;
	background-color: #fff0f0;
	font-family: 'Kosugi Maru', sans-serif;
	transition: padding 0.8s cubic-bezier(0, 0, 0.38, 1);
	will-change: padding;
}
#countermeasure.active {
	padding-top: 90px;
	padding-bottom: 90px;
}
#countermeasure .expander {
	box-sizing: border-box;
	overflow: hidden;
	transition: height 0.8s cubic-bezier(0, 0, 0.38, 1);
	will-change: height;
}
#countermeasure:not(.active) .expander {
	height: 1px !important;
}
#countermeasure .expander > div {
	margin-bottom: 0;
	padding-bottom: 3em;
}
#countermeasure .expander > div > *:last-child {
	margin-bottom: 0 !important;
}
#countermeasure .togglebtn a {
	display: inline-block;
	border-radius: 20px;
	background-color: #000;
	padding: 10px 40px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	line-height: 100%;
}
#countermeasure .togglebtn a:hover {
	opacity: 0.8;
}

#countermeasure h3 {
	margin: 0 0 1em;
	text-align: center;
	font-size: 1.8rem;
	line-height: 160%;
	transition: margin 0.8s cubic-bezier(0, 0, 0.38, 1);
	will-change: margin;
}
#countermeasure.active h3 {
	margin-bottom: 2.5em;
}
#countermeasure p {
	margin: 0;
	font-size: 1.2rem;
	letter-spacing: 1px;
	line-height: 160%;
}

#countermeasure ol.boldNum {
	margin: 0;
	padding-left: 25px;
	list-style: none;
}
#countermeasure ol.boldNum > li {
	position: relative;
	font-weight: bold;
	letter-spacing: 1px;
}
#countermeasure ol.boldNum > li:not(:last-child) {
	margin-bottom: 2em;
}
#countermeasure ol.boldNum > li p {
	margin-bottom: 8px;
	font-weight: normal;
}
#countermeasure ol.boldNum > li > p strong {
	color: #d00;
	text-decoration: underline;
}
#countermeasure ol.boldNum > li::before {
	position: absolute;
	top: 0;
	left: -23px;
	display: inline-block;
	margin-right: 8px;
	line-height: 17px;
	text-align: center;
}
#countermeasure ol.boldNum > li:nth-child(1)::before { content: "1."; }
#countermeasure ol.boldNum > li:nth-child(2)::before { content: "2."; }
#countermeasure ol.boldNum > li:nth-child(3)::before { content: "3."; }
#countermeasure ol.boldNum > li:nth-child(4)::before { content: "4."; }
#countermeasure ol.boldNum > li:nth-child(5)::before { content: "5."; }
#countermeasure ol.boldNum > li:nth-child(6)::before { content: "6."; }
#countermeasure ol.boldNum > li:nth-child(7)::before { content: "7."; }
#countermeasure ol.boldNum > li:nth-child(8)::before { content: "8."; }
#countermeasure ol.boldNum > li:nth-child(9)::before { content: "9."; }

ol.kakkoNum {
    margin: 12px 0 5px;
    padding-left: 35px;
    list-style: none;
    font-weight: normal;
}
ol.kakkoNum > li {
	position: relative;
}
ol.kakkoNum > li:not(:last-child) {
	margin-bottom: 1.5em;
}
ol.kakkoNum > li::before {
	position: absolute;
	top: 0;
	left: -32px;
	display: inline-block;
	line-height: 17px;
	text-align: center;
}
ol.kakkoNum > li:nth-child(1)::before { content: "(1)"; }
ol.kakkoNum > li:nth-child(2)::before { content: "(2)"; }
ol.kakkoNum > li:nth-child(3)::before { content: "(3)"; }
ol.kakkoNum > li:nth-child(4)::before { content: "(4)"; }
ol.kakkoNum > li:nth-child(5)::before { content: "(5)"; }
ol.kakkoNum > li:nth-child(6)::before { content: "(6)"; }
ol.kakkoNum > li:nth-child(7)::before { content: "(7)"; }
ol.kakkoNum > li:nth-child(8)::before { content: "(8)"; }

ol.circleNum {
    margin: 12px 0 0;
    padding-left: 25px;
    list-style: none;
    font-weight: normal;
}
ol.circleNum > li {
	position: relative;
	font-size: 11pt;
	line-height: 140%;
}
ol.circleNum > li:not(:last-child) {
	margin-bottom: 0.5em;
}
ol.circleNum > li::before {
	position: absolute;
	top: 0;
	left: -23px;
	display: inline-block;
	text-align: center;
}
ol.circleNum > li:nth-child(1)::before { content: "\2460"; }
ol.circleNum > li:nth-child(2)::before { content: "\2461"; }
ol.circleNum > li:nth-child(3)::before { content: "\2462"; }
ol.circleNum > li:nth-child(4)::before { content: "\2463"; }

@media screen and (max-width: 680px) {
	#countermeasure {
		padding-left: 40px;
		padding-right: 40px;
	}
	#countermeasure.active {
		padding-top: 70px;
		padding-bottom: 70px;
	}
}
@media screen and (max-width: 540px) {
	#countermeasure {
		font-size: 10pt;
	}
	#countermeasure h3 {
		font-size: 12pt;
	}
	ol.circleNum > li {
		font-size: 9pt;
	}
}
@media screen and (max-width: 480px) {
	#countermeasure {
		margin-top: 40px;
		padding-left: 20px;
		padding-right: 20px;
	}
	#countermeasure.active {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	#countermeasure.active h3 {
		margin-bottom: 1.2em;
	}
	#countermeasure ol.boldNum {
		padding-left: 20px;
	}
	#countermeasure ol.boldNum > li::before {
		left: -18px;
	}
}
.inbl {
	display: inline-block;
}

#about.blk.ver2 {
	/*background-color: #e2efc3;*/
}
#about .inner{
	max-width: 805px;
}
#about section {
	margin-bottom: 3em;
}
#about section.card {
	/*margin-bottom: 90px;*/
}
#about section h4 {
	margin: 0 0 15px;
	font-size: 16pt;
}
#about section.card h4 {
	margin-bottom: 25px;
	text-align: center;
}
.colimg {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin: 20px 0 5px;
}
.colimg img {
	display: block;
	width: calc(50% - 15px);
}
#about section .ctr {
	margin-top: 30px;
}
#about section a.btn {
	display: inline-block;
	border-radius: 6px;
	width: 260px;
	padding: 16px 0;
	background-color: #01617c;
	text-align: center;
	color: #fff;
	font-size: 13pt;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: 1px;
}
#about section a.btn:hover {
	opacity: 0.8;
}

#about p {
	margin: 0;
	line-height: 160%;
}
#about p + p {
	margin-top: 0.2em;
}
@media screen and (max-width: 580px) {
	.colimg img {
		width: calc(50% - 8px);
	}
}
@media screen and (max-width: 480px) {
	#about p {
		font-size: 1.3rem;
	}
}

#seminars .inner {
	max-width: 1000px;
}
#seminars h3.blktitle {
	margin-bottom: 1.5em;
	line-height: 120%;
}
#seminars h3.blktitle > span {
	padding-bottom: 20px;
}
#seminars p {
	margin-bottom: 1.2em;
	font-size: 1.6rem;
	line-height: 140%;
}
#seminars .seminar {
	box-sizing: border-box;
	margin-bottom: 36px;
	/*border: solid 1px #ddd;*/
	border-radius: 6px;
	background: #fff;
	padding: 40px 50px 50px;
}
#seminars .seminar:last-child {
	margin-bottom: 0;
}
#seminars .seminar .c2 {
	margin-bottom: 20px;
	padding-bottom: 2px;
	font-size: 12pt;
}
#seminars .seminar .c2:last-child {
	margin-bottom: 0;
}
#seminars .seminar .sptitle {
	margin-bottom: 18px;
}
#seminars .seminar .sptitle.ver2 {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
}
#seminars .seminar p.fp4 + .c2 {
	margin-top: 50px;
}
#seminars .seminar .smn-ph {
	float: right;
	width: 100px;
	padding-bottom: 8px;
}
#seminars .seminar h3 {
	margin: 0;
	text-align: left;
	font-size: 2.7rem;
	line-height: 1.3;
	letter-spacing: 1.5px;
	padding: 0;
}
#seminars .seminar h3 small {
	display: block;
	margin-bottom: 5px;
	font-size: 12pt;
	line-height: 140%;
}
#seminars .seminar .smn-info > h4 {
	font-size: 12pt;
	font-weight: normal;
	letter-spacing: 0.5px;
	padding: 0 0 4px 2px;
	margin: 0 0 8px;
	border-bottom: solid 2px #aaa;
}
#seminars .seminar .fp4 {
	margin-bottom: 0;
	font-size: 1.7rem;
	line-height: 150%;
	letter-spacing: 0.5px;
	text-align: justify;
}
#seminars .seminar .fp4 + .fp4 {
	margin-top: 10px;
}
#seminars .seminar .fp5 {
	font-size: 12pt;
	line-height: 1.5;
	letter-spacing: 0.5px;
	margin: 0px;
}
#seminars .seminar .fp5 big {
	font-size: 2rem;
}
#seminars .seminar .bld {
	font-size: 12pt;
	font-weight: bold;
}
#seminars .seminar .ic_clock {
	width: 20px;
	margin: 0 6px 0 0;
	vertical-align: sub;
}
#seminars .seminar .lcname {
	display: inline-block;
	font-weight: bold;
	font-size: 1.5rem;
	line-height: 140%;
	color: #0D8C55;
	border: 2px solid #42a77b;
	background-color: #f6ffda;
	padding: 6px 14px 5px 15px;
	margin: 8px 0 10px;
	border-radius: 2px;
}
#seminars .seminar .present {
	flex-shrink: 0;
	box-sizing: border-box;
	margin-left: 3.4em;
	border-radius: 11px;
	background-color: #fcb1d7;
	padding: 12px 10px;
	text-align: center;
	color: #fff;
	letter-spacing: 0.5px;
	width: 16em;
}
#seminars .seminar .present h4, #seminars .seminar .present p {
	margin: 0;
	text-align: center;
}
#seminars .seminar .present h4 {
	margin-bottom: 3px;
	font-size: 13pt;
	font-weight: normal;
}
#seminars .seminar .present p {
	font-size: 12pt;
	line-height: 140%;
}
#seminars .seminar .present p big {
	display: inline-block;
	margin-top: 2px;
	font-size: 12.5pt;
}
#seminars .seminar .sptitle.ver2.long {
	display: block;
}
#seminars .seminar .sptitle.ver2.long .present {
	margin: 15px auto 0;
	width: 100%;
}
@media screen and (max-width: 740px) {
	#seminars .seminar {
		padding: 20px 30px 30px;
	}
	#seminars .seminar h3 {
		font-size: 17pt;
	}
}
@media screen and (max-width: 680px) {
	section#seminars > h4 {
		font-size: 16pt;
	}
	#seminars .seminar .c2 {
		display: block;
		margin-bottom: 14px;
	}
	#seminars .seminar .smn-info, #seminars .seminar .smn-ph {
		float: none;
		width: 100%;
	}
	#seminars .seminar .c2:not(:last-child) .smn-info {
		margin-bottom: 15px;
	}
	#seminars .seminar .smn-phr {
		margin: 0 auto;
	}
	#seminars .seminar .fp5.rgt {
		text-align: left;
	}
	#seminars .seminar .fp4 {
		font-size: 10pt;
	}
	#seminars .seminar .sptitle.ver2 {
		display: block;
	}
	#seminars .seminar .present {
		margin: 15px auto 0;
		width: 100%;
	}
}
@media screen and (max-width: 540px) {
	#seminars .seminar h3 {
		font-size: 14pt;
	}
	#seminars .seminar h3 small {
		margin-bottom: 2px;
		font-size: 11pt;
	}
}
@media screen and (max-width: 480px) {
	#seminars .seminar .c2 {
		border-top-width: 1px;
	}
	#seminars .seminar .lcname {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 420px) {
	#seminars .seminar {
		padding: 20px 15px 25px;
	}
	#seminars .seminar .sptitle.ver2,
	#seminars .seminar .c2:not(:last-child) .smn-info {
		margin-bottom: 12px;
	}
}

#finished {
	background-color: #fff;
	text-align: center;
}
#finished h3.blktitle {
	margin-bottom: 1.3em;
	line-height: 140%;
}
#finished img {
	display: inline-block;
	margin-bottom: 20px;
	width: 100%;
	max-width: 400px;
}
#finished p {
	margin-bottom: 0;
	text-align: center;
	line-height: 160%;
}
@media screen and (max-width: 420px) {
	#finished h3.blktitle {
		letter-spacing: 0.5px;
	}
}

ul.kome li {
	position: relative;
	padding-left: 1.1em;
	font-size: 11pt;
	line-height: 160%;
}
ul.kome li:before {
	content: "\203B";
	position: absolute;
	left: 0;
}
@media screen and (max-width: 480px) {
	ul.kome li {
		font-size: 10.5pt;
		line-height: 140%;
	}
}

.listlinks {
	margin-bottom: 70px;
	text-align: center;
	font-size: 17pt;
}
.listlinks.ver2 {
	margin-bottom: 30px;
}
.listlinks a {
	display: inline-block;
	border: 3px solid #fff;
	border-radius: 100px;
	background-color: #346617;
	padding: 11px 44px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
.listlinks a:hover {
	text-decoration: none;
}
.listlinks a:not(:last-child) {
	margin-right: 30px;
}
@media screen and (max-width: 640px) {
	.listlinks {
		font-size: 14pt;
	}
	.listlinks a:not(:last-child) {
		margin-right: 20px;
	}
}
@media screen and (max-width: 580px) {
	.listlinks {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
	}
	.listlinks a:not(:last-child) {
		margin-right: 0;
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 480px) {
	.listlinks {
		margin-bottom: 44px;
	}
	.listlinks.ver2 {
		margin-bottom: 10px;
	}
}