@charset "utf-8";
/* 
html5doctor.com Reset Stylesheet v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-style: normal;
	background: transparent;
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, th {
	font-weight: normal;
}
body {
	line-height: 1;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
html {
	overflow-y: scroll;
}
img {
	line-height: 0;
	vertical-align: bottom;
	font-size: 0;
	font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
}
strong {
	font-weight: 700;
}
/***************/
html {
	font-size: 62.5%;
}
@media screen and (max-width:599px) {
	html {
		font-size: 2.5vw;
	}
}
body {
	color: #333;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.5;
}
/*
header {
  background: var(--base-color);
}
*/
header > div {
	width: 1200px;
	margin: 0 auto;
	padding: 15px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header > div > h1 {
}
header > div > ul {
	display: flex;
}
header > div > ul > li {
	margin-left: 5px;
}
header > div > ul > li a,
header > div > ul > li span {
	width: 110px;
	padding: 10px 0;
	font-weight: 700;
  font-family: var(--tokumin-font);
	text-decoration: none;
	color: #fff;
	display: flex;
	justify-content: center;
	border: 2px solid;
	transition: 0.5s;
  background: url("../images/header_btn_bk.jpg") 0 50% no-repeat;
}
header > div > ul > li a:hover {
  opacity: 0.7;
}
header > div > ul > li:nth-child(1) a {
	background: url("../images/header_btn_bk_01.jpg") 0 100% no-repeat;
}
header > div > ul > li:nth-child(2) a {
	background: url("../images/header_btn_bk_02.jpg") 0 50% no-repeat;  
}
header > div > ul > li:nth-child(3) a {
	background: url("../images/header_btn_bk_03.jpg") 0 50% no-repeat;
}
header > div > p {
  display: none;
}
footer {
	min-width: 1200px;
	background: var(--point-color);
}
footer > div {
	width: 1200px;
	margin: 0 auto;
	padding: 30px 0 0;
	display: flex;
}
footer > div > dl {
	display: table;
}
footer > div > dl:nth-child(1) {
	margin-right: 50px;
}
footer > div > dl > dt {
	width: 120px;
	font-size: 1.4rem;
	font-weight: 700;
  font-family: var(--tokumin-font);
	text-align: center;
	vertical-align: middle;
	color: var(--base-color);
	display: table-cell;
	background: #fff;
}
footer > div > dl > dd {
	padding-left: 20px;
	font-size: 1.4rem;
	display: table-cell;
}
#copy {
	margin-top: 20px;
	padding: 20px 0;
	font-size: 1.2rem;
	text-align: center;
	border-top: var(--base-color) 1px solid;
}
@media only screen and (max-width : 768px) {
	header {
		position: sticky;
		top: 0;
		z-index: 9998;
		background: #fff;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	}
	header > div {
		width: 100%;
		margin: 0;
		padding: 10px;
		z-index: 9999;
	}
  header > div > h1 {
    width: 80%;
	}
  header > div > h1 img {
    width: 100%;
	}
	header > div > ul {
		display: none;
	}  
  header > div > p {
    display: block;
    position: absolute;
    right: 45px;
    top: 14px;
  }
  header > div > p > a {
    width: 30px;
    height: 30px;
    font-size: 1.3rem;
    font-family: var(--tokumin-font);
    text-decoration: none;
    line-height: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--base-color);
  }
	footer {
		min-width: 100%;
	}
	footer > div {
		width: 100%;
		margin: 0;
		padding: 15px 15px 0;
		display: block;
	}
	footer > div > dl {
		display: block;
	}
	footer > div > dl:nth-child(1) {
		margin-right: 0;
		margin-bottom: 20px;
	}
	footer > div > dl > dt {
		width: 100%;
		margin-bottom: 10px;
		padding: 5px 0;
		display: block;
	}
	footer > div > dl > dd {
		padding-left: 0;
		display: block;
	}
	#copy {
		margin-top: 15px;
		padding: 10px 0;
		font-size: 1.1rem;
	}
}
/***** *****/
#menu_btn, .overlay {
	display: none;
}
#nav {
	min-width: 1200px;
	/*padding: 5px 0 10px;*/
	background: var(--base-color);
  border-bottom: #fff 1px solid;
}
#nav > div {
	width: 1200px;
	margin: 0 auto;
}
#nav > div > ul:nth-child(2) {
	display: none;
}
#nav > div > ul:nth-child(1) {
	display: flex;
	flex-wrap: wrap;
}
#nav > div > ul:nth-child(1) li {
	flex: 1 0 195px;
	/*width: 190px;
	margin-top: 5px;
	padding: 0 10px;
	position: relative;*/
}
/*#nav > div > ul:nth-child(2) li::before {
	content: "";
	height: 50%;
	border-left: #fff 1px solid;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}*/
/*#nav > div > ul:nth-child(2) li:nth-child(6)::after,
#nav > div > ul:nth-child(2) li:nth-child(11)::after {
	content: "";
	height: 50%;
	border-right: #fff 1px solid;
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
}*/
/*
#nav > div > ul:nth-child(1) li:nth-child(n+7):nth-child(-n+12) {
	width: auto;
	flex: auto;
}
*/
#nav > div > ul:nth-child(1) li a {
	padding: 10px 0;
  font-size: 1.7rem;
	font-weight: 500;
  font-family: var(--tokumin-font);
	text-align: center;
	text-decoration: none;
	color: #fff;
	display: block;
	background: var(--base-color);
	transition: 0.5s;
	border-left: #fff 1px solid;
}
#nav > div > ul:nth-child(1) li:nth-child(6) a, #nav > div > ul:nth-child(1) li:nth-child(10) a {
	border-right: #fff 1px solid;
}
#nav > div > ul:nth-child(1) li:nth-child(n+7) a {
	border-top: #fff 1px solid;
}
#nav > div > ul:nth-child(1) li a:hover {
  color: var(--base-color);
	background: var(--point-color);
}
#nav > div > ul:nth-child(1) .focus a {
  color: var(--base-color);
	background: var(--point-color);
}
@media only screen and (max-width : 768px) {
	#menu_btn {
		top: 12px;
		right: 10px;
		transition: .3s;
		cursor: pointer;
		position: fixed;
		z-index: 9999;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.menu-trigger {
		width: 18px;
		height: 17px;
		position: relative;
	}
	.menu-trigger span {
		display: inline-block;
		box-sizing: border-box;
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: var(--base-color);
		transition: all .2s;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 0;
	}
	.menu-trigger span:nth-of-type(2) {
		width: 70%;
		top: 8px;
	}
	.menu-trigger span:nth-of-type(3) {
		bottom: 0;
	}
	#menu_btn.active .menu-trigger span:nth-of-type(1) {
		transform: translateY(8px) rotate(-45deg);
	}
	#menu_btn.active .menu-trigger span:nth-of-type(2) {
		opacity: 0;
	}
	#menu_btn.active .menu-trigger span:nth-of-type(3) {
		transform: translateY(-8px) rotate(45deg);
	}
	#nav {
		min-width: 100%;
		width: 100%;
		height: 100%;
		overflow: auto;
		padding: 55px 0 0;
		background: var(--base-color);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 999;
		transform: translate(100%);
		transition: all .5s;
	}
	#nav.open {
		transform: translateZ(0);
	}
	#nav > ul:nth-child(2) > li {
		padding: 0;
	}
	#nav > ul:nth-child(2) > li > a {
		position: relative;
		padding: 15px 10px;
		color: #fff;
	}
	#nav > div {
		width: 100%;
		margin: 0;
	}
	#nav > div > ul:nth-child(1) {
		display: block;
	}
	#nav > div > ul:nth-child(1) li {
		width: 100%;
	}
	#nav > div > ul:nth-child(1) li:nth-child(n+7):nth-child(-n+10) {
		width: 100%;
	}
	#nav > div > ul:nth-child(1) li a {
		padding: 15px;
		font-weight: 500;
		text-align: left;
		text-decoration: none;
		color: #fff;
		display: block;
		background: var(--base-color);
		transition: 0.5s;
		border-left: none;
		border-bottom: #fff 1px solid;
	}
	#nav > div > ul:nth-child(1) .focus a {
    color: #fff;
		background: rgba(0, 175, 204, 0.5);
	}
	#nav > div > ul:nth-child(1) .focus a:hover {
		background: rgba(0, 175, 204, 0.5);
	}
	#nav > div > ul:nth-child(1) li a:hover {
		background: var(--point-color);
	}
  #nav > div > ul:nth-child(2) {
    display: block;
  }
	#nav > div > ul:nth-child(2) li a {
		padding: 15px;
		font-weight: 500;
    font-family: var(--tokumin-font);
		text-align: left;
		text-decoration: none;
		color: #fff;
		display: block;
		background: var(--base-color);
		transition: 0.5s;
		border-left: none;
		border-bottom: #fff 1px solid;
	}
	#nav > div > ul:nth-child(2) li a:hover {
		background: var(--base-color);
	}
	#nav > div > ul:nth-child(1) li:nth-child(6) a, #nav > div > ul:nth-child(1) li:nth-child(11) a {
		border-right: none;
	}
	#nav > div > ul:nth-child(1) li:nth-child(n+7) a {
		border-top: none;
	}
	#nav > div > ul:nth-child(2) li:nth-last-child(1) a {
    color: var(--base-color);
		background: var(--point-color);
	}
/*
	#nav > div > ul:nth-child(2) li:nth-last-child(2) a {
    color: #fff;
		background: var(--sub-color1);
	}
	#nav > div > ul:nth-child(2) li:nth-last-child(3) a {
    color: #fff;
		background: var(--sub-color2);
	}
	#nav > div > ul:nth-child(2) li:nth-last-child(4) a {
    color: #fff;
		background: var(--sub-color3);
	}
*/
}
/***** sub_menu *****/
#sub_menu {
	min-width: 1200px;
	/*background: var(--base-color);*/
}
#sub_menu > ul {
	width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
#sub_menu > ul {
	padding: 0 0 15px;
}
#sub_menu > ul > li {
	margin-top: 15px;
	text-align: center;
	flex: auto;
	justify-content: center;
	border-right: var(--base-color) 1px solid;
}
#sub_menu > ul > li:nth-child(1), #sub_menu > ul > li:nth-child(6), #sub_menu > ul > li:nth-child(9) {
	border-left: var(--base-color) 1px solid;
}
#sub_menu > ul > li a {
	padding: 3px 20px;
  font-size: 1.7rem;
  font-weight: 700;
  font-family: var(--tokumin-font);
	text-decoration: none;
	color: var(--base-color);
	transition: 0.5s;
}
#sub_menu > ul > li a:hover {
	background: var(--point-color);
}
@media only screen and (max-width : 768px) {
	#sub_menu,
	#sub_link {
		display: none;
	}
}

/***** sub_link *****/
#sub_link {
	/*min-width: 1200px;
	background: var(--sub-color6);*/
}
#sub_link ul {
	/*min-width: 1200px;
	width: 1200px;
	margin: 0 auto;
	padding: 15px 0;
  display: flex;
  justify-content: space-between;*/
}
#sub_link ul li {
 
}

#sub_link ul li:nth-child(1) {
  background: var(--point-color);
}
/*#sub_link ul li:nth-child(2) {
  background: var(--sub-color7);
}
*/
#sub_link ul li a {
  width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
	font-size: 1.7rem;
  font-weight: 700;
  font-family: var(--tokumin-font);
	text-align: center;
	text-decoration: none;
	color: var(--base-color);
	display: block;
	transition: 0.5s;
}
#sub_link ul li a:hover {
  color: #fff;
	background: var(--base-color);
}

@media only screen and (max-width : 768px) {
	#sub_link ul {
	min-width: 100%;
	width: 100%;
	margin: 0;
	}
	#sub_link ul li a {
		padding: 10px;
		font-weight: 700;
	}
	#sub_link ul li a:hover {
		background: none;
	}
}

/***** date_list *****/
#date_list {
	min-width: 1200px;
	/*background: var(--sub-color1);*/
  border-bottom: var(--base-color) 1px solid;
}
#date_list > ul {
	width: 1200px;
	margin: 0 auto;
	display: flex;
}
#date_list > ul > li {
	flex: auto;
	/*border-right: #fff 1px solid;*/
}
#date_list > ul > li a {
	padding: 15px 0;
	font-size: 1.8rem;
	font-weight: 700;
  font-family: var(--tokumin-font);
	text-align: center;
	text-decoration: none;
	color: var(--base-color);
	display: block;
	transition: 0.5s;
	border-right: var(--base-color) 1px solid;
}
#date_list > ul > li a span {
  font-size: 1.4rem;
}
#date_list > ul > li a:hover {
	background: var(--point-color);
}
#date_list > ul li:nth-child(1) {
	border-left: var(--base-color) 1px solid;
}
/*
#date_list > ul > li:nth-child(2) {
	background: var(--sub-color2);
}
#date_list > ul > li:nth-child(3) {
	background: var(--sub-color3);
}
*/
@media only screen and (max-width : 768px) {
	#date_list {
		min-width: 100%;
	}
	#date_list > ul {
		width: 100%;
		margin: 0;
		display: flex;
		flex-wrap: wrap;
	}
	#date_list > ul > li {
/*		width: 50%;*/
		font-size: 1.6rem;
		flex: auto;
		/*border-right: #fff 1px solid;
		border-bottom: #fff 1px solid;*/
	}
	#date_list > ul > li a {
		padding: 10px 0;
		font-size: 1.5rem;
		flex: auto;
		border-right: var(--base-color) 1px solid;
		border-bottom: var(--base-color) 1px solid;
	}
	#date_list > ul li:last-child a {
		border-bottom: none;
	}
  #date_list > ul > li:nth-child(3) a,
  #date_list > ul > li:nth-child(4) a {
		border-right: none;
	}
	#date_list > ul li:nth-child(1) {
		border-left: none;
	}
}

/***** application_link *****/
#application_link {
	width: 1200px;
	margin: 20px auto;
}
#application_link ul {
	display: flex;
	justify-content: space-between;
}
#application_link ul li {
	width: calc(97% / 6);
}
#application_link ul li a {
	padding: 20px 0;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: #fff;
	display: block;
	background: var(--sub-color1);
	border: var(--sub-color1) 2px solid;
	transition: 0.5s;
}
#application_link ul li a:hover {
	color: var(--sub-color1);
	background: #fff;
}
#application_link ul li a br {
	display: none;
}
#application_link p {
	margin-top: 10px;
	font-size: 1.4rem;
	text-align: right;
}
@media only screen and (max-width : 768px) {
	#application_link {
		width: 100%;
		margin: 15px 0;
	}
	#application_link ul {
		padding: 0 15px;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#application_link ul li {
		width: 49.5%;
		margin-bottom: 0.5%;
	}
	#application_link ul li a {
		padding: 15px 5px;
		font-size: 1.4rem;
		border: none;
	}
	#application_link ul li a:hover {
		color: #fff;
		background: var(--sub-color1);
	}
	#application_link ul li a br {
		display: block;
	}
	#application_link p {
		margin: 10px 0 0 15px;
		font-size: 1.2rem;
		text-align: left;
	}
}

/***** footer_link *****/
#footer_link {
	min-width: 1200px;
	margin-top: 60px;
	background: #7cbccf;
}
#footer_link > ul {
	width: 1200px;
	margin: 0 auto;
	display: flex;
}
#footer_link > ul > li a {
	padding: 10px 20px;
	font-size: 1.4rem;
	text-align: center;
	text-decoration: none;
	color: #fff;
	display: block;
	border-right: #fff 1px solid;
	transition: 0.5s;
}
#footer_link > ul > li:nth-child(1) a {
	border-left: #fff 1px solid;
}
#footer_link > ul > li a:hover {
	background: #f15972;
}
@media only screen and (max-width : 768px) {
	#footer_link {
		min-width: 100%;
		margin-top: 30px;
	}
	#footer_link > ul {
		width: 100%;
		margin: 0;
		display: flex;
	}
	#footer_link > ul li {
		flex: auto;		
	}
	#footer_link > ul > li a {
		padding: 10px 0;
		font-size: 1.3rem;
		display: flex;
		justify-content: center;
	}
	#footer_link > ul > li:nth-child(1) a {
		border-left: none;
	}
	#footer_link > ul > li:last-child a {
		border: none;
	}
}
/***** clearfix *****/
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;
	/*\*/ /*/
  height: auto;
  overflow: hidden;
  /**/
}
.pc {
	display: block;
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
}
.sp {
	display: none;
}
@media screen and (max-width:768px) {
	.sp {
		display: block;
	}
}
/***** margin *****/
.mt3 {
	margin-top: 3px;
}
.mt5 {
	margin-top: 5px;
}
.mt10 {
	margin-top: 10px;
}
.mt15 {
	margin-top: 15px;
}
.mt20 {
	margin-top: 20px;
}
.mt25 {
	margin-top: 25px;
}
.mt30 {
	margin-top: 30px;
}
.mt35 {
	margin-top: 35px;
}
.mt40 {
	margin-top: 40px;
}
.mb3 {
	margin-top: 3px;
}
.mb5 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb35 {
	margin-bottom: 35px;
}
.mb40 {
	margin-bottom: 40px;
}
/***** リスト *****/
.list {
	margin: 15px 0;
}
.list li {
	margin-bottom: 5px;
}
.list li:last-child {
	margin-bottom: 0;
}
.disc {
	margin-left: 20px;
	list-style-type: disc;
}
.deci {
	margin-left: 20px;
	list-style-type: decimal;
}
.alph {
	margin-left: 20px;
	list-style-type: lower-alpha;
}
.li_mb5 li {
	margin-bottom: 5px;
}
.li_mb5 li:last-child {
	margin-bottom: 0;
}
.li_mb10 li {
	margin-bottom: 10px;
}
.li_mb10 li:last-child {
	margin-bottom: 0;
}
/***** 文字サイズ *****/
.ft_s {
	font-size: 1.4rem;
}
.ft_l {
	font-size: 1.8rem;
}
.ft_ll {
	font-size: 2.2rem;
}
/***** フォント太さ *****/
.bold {
	font-weight: bold;
}
.normal {
	font-weight: normal;
}
/***** ※ *****/
.note {
  margin-top: 5px;
	margin-left: 1em;
	text-indent: -1em;
}
.note + .note {
  margin-top: 0;
}
.note::before {
	content: "※";
}
.note_dl dt {
	width: 2.5em;
	float: left;
	clear: left;
}
.note_dl dd {
	padding-left: 2.5em;
}

/***** 位置 *****/
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.top {
	vertical-align: top;
}

/***** 上付き下付き *****/
.sup {
  font-size: 0.8em;
  vertical-align: super;
}
.sub {
  font-size: 0.8em;
}

/***** 色 *****/
.red {
	color: #cc0000;
}
.blue {
	color: #0580c4;
}
.black {
	color: #333;
}
/***** 取り消し *****/
.cancel {
	text-decoration: line-through;
}
/***** 下線 *****/
.u_line {
  text-decoration: underline;
}
/***** 矢印 *****/
.arr {
	width: 7px;
	height: 7px;
	margin-right: 10px;
	border-top: 1px solid;
	border-right: 1px solid;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	display: inline-block;
	vertical-align: middle;
}
@media screen and (max-width:768px) {}
/***** アイコン *****/
.icon {
	margin-right: 5px;
	padding-right: 22px;
}
@media screen and (max-width:768px) {
	.icon {
		padding-right: 20px;
	}
}
.win_icon {
	padding-right: 18px;
	background: url(../images/win_icon.svg) 100% 50% no-repeat;
	background-size: 13px 11px;
}
.pdf_icon {
	background: url(../images/pdf_icon.svg) 100% 50% no-repeat;
	background-size: 15px 15px;
}
@media screen and (max-width:768px) {
	.pdf_icon {
		background: url(../images/pdf_icon.svg) 100% 50% no-repeat;
		background-size: 13px;
	}
}
.xls_icon {
	background: url(../images/xls_icon.svg) 100% 50% no-repeat;
	background-size: 15px 15px;
}
@media screen and (max-width:768px) {
	.xls_icon {
		background: url(../images/xls_icon.svg) 100% 50% no-repeat;
		background-size: 13px;
	}
}
.doc_icon {
	background: url(../images/doc_icon.svg) 100% 50% no-repeat;
	background-size: 15px 15px;
}
@media screen and (max-width:768px) {
	.doc_icon {
		background: url(../images/doc_icon.svg) 100% 50% no-repeat;
		background-size: 13px;
	}
}
.ppt_icon {
	background: url(../images/ppt_icon.svg) 100% 50% no-repeat;
	background-size: 15px 15px;
}
@media screen and (max-width:768px) {
	.ppt_icon {
		background: url(../images/ppt_icon.svg) 100% 50% no-repeat;
		background-size: 13px;
	}
}
/***** 色 *****/ 
:root {
	--base-color: #14084e;
	--sub-color1: #e97132;
	--sub-color2: #dd599a;
	--sub-color3: #5ecf6b;
	--sub-color4: #e4b90e;
	--sub-color5: #1d6fc3;
	--sub-color6: #dbdb03;
	--sub-color7: #39b639;
	--point-color: #d9edf3;
}
/***** ボタン *****/ 
	:root {
	--btn-border: #14084e 3px solid;
	--btn-color: #14084e;
	--btn-pad: 20px 0;
	--btn-pad2: 30px 0;
}
@media screen and (max-width:768px) {
	:root {
		--btn-pad: 10px 0;
	}
}
/***** font *****/
:root {
  --tokumin-font: "Kaisei Tokumin", serif;
/*  --tokumin-font: "Noto Serif JP", serif;*/
}
.btn {
	margin: 20px 0;
}
.btn a {
	padding: var(--btn-pad);
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	color: #000;
	background-color: #fff;
	border: var(--btn-border);
	border-radius: 5px;
	transition: all 0.4s;
	display: block;
}
.btn.abs_btn a {
	color: #fff;
	border: var(--sub-color5) 3px solid;
  background: var(--sub-color5);
}
@media screen and (max-width:768px) {
	.btn {
		margin: 15px 0;
	}
	.btn a {
		padding: var(--btn-pad);
	}
}
.btn a:hover {
	color: #fff;
	background-color: var(--btn-color);
}
.btn.abs_btn a:hover {
	color: var(--sub-color5);
	background-color: #fff;
}
.btn .no_link {
	width: 100%;
	padding: var(--btn-pad);
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	color: #999;
	background-color: #f3f3f3;
	border: #ccc 3px solid;
	border-radius: 5px;
	display: block;
}
@media screen and (max-width:768px) {
	.btn .no_link {
		padding: var(--btn-pad);
	}
}
.btn1 a {
	display: block;
}
.btn2 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media screen and (max-width:768px) {
	.btn2 {
		display: block;
	}
}
.btn2 li {
	width: 49.5%;
	margin-bottom: 1%;
	display: flex;
	/*display: flex;
    justify-content: center;*/
}
@media screen and (max-width:768px) {
	.btn2 li {
		width: 100%;
		display: block;
	}
}
.btn2 a,
.btn2 .no_link {
	width: 100%;
	padding: var(--btn-pad);
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width:768px) {
	.btn2 a,
  .btn2 .no_link {
    height: auto;
		padding: var(--btn-pad)!important;
		display: block;
		box-sizing: border-box;
	}
}
.btn3 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media screen and (max-width:768px) {
	.btn3 {
		display: block;
	}
}
.btn3 li {
	width: 32%;
	margin-bottom: 2%;
	display: flex;
	justify-content: center;
}
@media screen and (max-width:768px) {
	.btn3 li {
		width: 100%;
		display: block;
	}
}
.btn3 a, .btn3 .no_link {
	width: 100%;
	padding: var(--btn-pad);
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width:768px) {
	.btn3 a, .btn3 .no_link {
    height: auto;
		padding: var(--btn-pad)!important;
		display: block;
		box-sizing: border-box;
	}
}
.btn_s {
	width: 50%;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width:768px) {
	.btn_s {
		width: 100%;
	}
}
.btn_m {
	width: 70%;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width:768px) {
	.btn_m {
		width: 100%;
	}
}
.btn_l {
	width: 85%;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width:768px) {
	.btn_l {
		width: 100%;
	}
}
/* ページトップ */
/*********************/
#pagetop {
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: -110px;
	right: 20px;
	transition: 0.5s;
	z-index: 999;
	background-color: var(--base-color);
	border-radius: 50%;
	cursor: pointer;
}
#pagetop::before {
	content: "";
	border-right: 10px solid transparent;
	border-bottom: 13px solid #fff;
	border-left: 10px solid transparent;
	display: block;
	z-index: 1000;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}
#pagetop:hover {
	opacity: 0.7;
}
@media screen and (max-width:768px) {
	#pagetop {
		width: 50px;
		height: 50px;
		right: 10px;
	}
}