@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;
	background: var(--base-color2);
}
header {
	padding: 30px 0;
}
header h1 {
	text-align: center;
}
header h1 a {
	text-decoration: none;
}
footer {
	margin-top: 50px;
	background: var(--base-color);
}
#copy {
	margin-top: 20px;
	padding: 20px 0;
	font-size: 1.2rem;
	text-align: center;
	color: #fff;
}
@media only screen and (max-width : 768px) {
	header {
		width: 100%;
		height: 60px;
		margin: 0;
		padding: 0 10px;
		display: flex;
		align-items: center;
		position: sticky;
		top: 0;
		z-index: 9999;
		background: #fff;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	}
	header h1 {
		width: 90%;
	}
	header h1 img {
		width: 100%;
	}
	footer {
		width: 100%;
		margin: 0;
		padding: 15px 0;
		display: block;
	}
	#copy {
		margin: 0;
		padding: 0;
		font-size: 1.1rem;
	}
}

/***** box *****/
#container {
	width: 960px;
	margin: 0 auto;
}
@media only screen and (max-width : 768px) {
	#container {
		width: 100%;
		margin: 0;
	}
}

/***** menu *****/
#menu_btn, .overlay {
	display: none;
}
#nav {
	width: 100%;
}
#nav ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	border-top: var(--point-color2) 1px solid;
	border-right: var(--point-color2) 1px solid;
}
#nav ul li {
	width: 20%;
	border-bottom: var(--point-color2) 1px solid;
}
#nav ul li a {
	padding: 15px 0;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	color: #000;
	display: block;
	background: #fff;
	transition: 0.5s;
	border-left: var(--point-color2) 1px solid;
}
#nav ul li:last-child a {
	color: #fff;
	background: var(--point-color2);
}
#nav ul li a:hover {
	color: #fff;
	background: var(--base-color);
}
#nav ul .focus a {
	color: #fff;
	background: var(--base-color);
}
@media only screen and (max-width : 768px) {
	#menu_btn {
		top: 15px;
		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 {
		width: 100%;
		height: 100%;
		margin: 0;
		overflow: auto;
		padding: 60px 0 0;
		background: #fff;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 999;
		transform: translate(100%);
		transition: all .5s;
	}
	#nav.open {
		transform: translateZ(0);
	}
	#nav ul {
		display: block;
		border-top: none;
		border-right: none;
	}
	#nav ul li {
		width: 100%;
	}
	#nav ul li a {
		padding: 15px;
		font-weight: 500;
		text-align: left;
		text-decoration: none;
		display: block;
		transition: 0.5s;
		border-left: 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;
}
.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::before {
	content: "※";
}
.note + .note {
  margin-top: 0;
}
.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;
}
/***** 色 *****/
.red {
	color: #cc0000;
}
.blue {
	color: #0580c4;
}
.black {
	color: #333;
}
/***** 取り消し *****/
.cancel {
	text-decoration: line-through;
}
/***** 矢印 *****/
.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: #ea5414;
	--base-color2: #fdf7d7;
	--point-color: #ffef61;	
	--point-color2: #f7b247;
}
/***** ボタン *****/ 
	:root {
	--btn-border: #ea5414 3px solid;
	--btn-color: #ea5414;
	--btn-pad: 20px 0;
	--btn-pad2: 30px 0;
}
@media screen and (max-width:768px) {
	:root {
		--btn-pad: 10px 0;
	}
}
/***** テーブル *****/
:root {
  --tb-border: #ddd 1px solid;
  --td-bk-gry: #f5f5f5;
}
.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;
}
@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 .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%;
	margin-bottom: 2%;
	/*display: flex;
    justify-content: center;*/
}
@media screen and (max-width:768px) {
	.btn2 li {
		width: 100%;
		display: block;
	}
}
.btn2 a {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width:768px) {
	.btn2 a {
		padding: var(--btn-pad);
		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-pad2);
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width:768px) {
	.btn3 a, .btn3 .no_link {
		padding: var(--btn-pad);
		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: -100px;
	right: 20px;
	transition: 0.5s;
	z-index: 999;
	cursor: pointer;
}
#pagetop img {
	width: 100%;
}
/*
#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;
	}
}