@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;
	box-sizing: border-box;
	color: var(--base-color);
	word-break: break-all;
}
/* 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;
	max-width: 100%;
	height: auto;
}






/***************/
html {
	font-size: 62.5%;
	scroll-padding-top: var(--header-height);
	scroll-behavior: smooth;
}
@media screen and (max-width:599px){
html {
	font-size: 64%;
}
}

body {
    color: var(--black-color);
	font-size: 1.7rem;
	font-family: "Noto Sans JP", "Noto Serif JP", sans-serif, serif;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.04em;
	text-align: left;
	background-color: #fff;
}

@media screen and (max-width: 768px) {
	body {
		background: none;
	}
}

/*@media screen and (max-width:599px){
body {
	font-size: 1.7rem;
}
}*/

main {
    display: block;
}




/***** 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;
}



/***** リスト *****/
.disc li,
.disc02 li {
	line-height: 1.5;
	position: relative;
	padding-left: 1em;
}

.disc li:last-child,
.disc02 li:last-child {
	margin-bottom: 0px;
}

.disc li::before,
.disc02 li::before {
	content: '';
	display: inline-block;
	height: 5px;
	width: 5px;
	background-color: var(--base-color);
	border-radius: 50%;
	margin-right: 10px;
	position: absolute;
	top: 9px;
	left: 0;
}

.disc02 li::before {
	background-color: var(--orange-color);
}

.deci,
.deci02 {
    margin-left: 20px;
    list-style-type: decimal;
}

.deci li::marker {
	color: var(--base-color);
}

.deci02 li::marker {
	color: var(--orange-color);
}

.roman {
    margin-left: 20px;
    list-style-type: upper-roman;
}

.cnt {
	margin-left: 2em;
}

.cnt li {
	list-style-type: none;
	counter-increment: cnt;
	position: relative;
}
.cnt li:before {
	content: "(" counter(cnt) ")";
	display: inline-block;
	margin-left: -3.5em;
	width: 3em;
	text-align: right;
	position: absolute;
	top: 0;
	left: 0;
}

.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_m {
	font-size: 1.7rem;
}

.ft_l {
	font-size: 2rem;
}

.ft_ll {
	font-size: 2.2rem;
}





/***** フォント太さ *****/
.normal {
    font-weight: normal;
}

.bold {
	font-weight: 700;
}



/***** ※ *****/
.note {
	padding-left: 1.2em;
    font-size: 1.7rem;
	position: relative;
}

.note::before {
    content: "※";
	position: absolute;
	top: 0;
	left: 0;
}

.note_m {
	margin-left: 1em;
	text-indent: -1em;
}

.note_m::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;
}




/***** 色 *****/
:root {
	--base-color: #0556B2;
	--sub-color: #0D8BEE;
	--black-color: #222222;
	--orange-color: #D98301;
	--gray-color: #F6F8F9;
	--border-color: #B9B9B9;
	--light-blue-color: #f2f5fb;
	--light-blue-color02: #f9fafb;
	--light-orange-color: #fdf9f1;
	--light-orange-color02: #fffcf8;
	--yellow-color: #d2bd18;
}
.red {
	color: #B20505;
}

.black {
	color: #222222;
}

.blue {
	color: var(--base-color);
}

/***** サイズ・余白 *****/
:root {
	--header-height: 120px;
	--section-width: 1100px;
}
	
	@media screen and (max-width:914px) {
		:root {
	--header-height: 50px;
}
	}

@media screen and (max-width:768px) {
	:root {
	--section-width: 100%;
}
	}

:root {
	--section-padding: 64px;
	--section-margin: 64px;
	--inner-padding: 40px;
	--inner-margin: 40px;
	--item-l-padding: 32px;
	--item-l-margin: 32px;
	--item-m-padding: 24px;
	--item-m-margin: 24px;
	--item-s-padding: 16px;
	--item-s-margin: 16px;
}
@media screen and (max-width:768px) {
	:root {
	--section-padding: 40px;
	--section-margin: 40px;
	--inner-padding: 32px;
	--inner-margin: 32px;
	--item-l-padding: 24px;
	--item-l-margin: 24px;
	--item-m-padding: 16px;
	--item-m-margin: 16px;
}
}




/***** 取り消し *****/
.cancel {
    text-decoration: line-through;
}

/***** アンダーライン *****/
.underline {
	text-decoration: underline;
}

/***** イタリック *****/
.italic {
	font-style: italic;
}




/***** 矢印 *****/
.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;
}




/***** アイコン *****/
.win_icon {
	padding-right: 18px;
	background: url(../images/common/win_icon.svg) 100% 50% no-repeat;
	background-size: 13px 11px;
}

.pdf_icon {
	margin-right: 5px;
	padding-right: 22px;
	background: url(../images/common/pdf_icon.svg) 100% 50% no-repeat;
	background-size: 15px 15px;
}
@media screen and (max-width:768px){
.pdf_icon {
	padding-right: 20px;
	background: url(../images/common/pdf_icon.svg) 100% 50% no-repeat;
	background-size: 13px;
}
}

.xls_icon {
	margin-right: 5px;
	padding-right: 22px;
	background: url(../images/common/xls_icon.svg) 100% 50% no-repeat;
	background-size: 15px 15px;
}
@media screen and (max-width:768px){
.xls_icon {
	padding-right: 20px;
	background: url(../images/common/xls_icon.svg) 100% 50% no-repeat;
	background-size: 13px;
}
}

.doc_icon {
	margin-right: 5px;
	padding-right: 22px;
	background: url(../images/common/doc_icon.svg) 100% 50% no-repeat;
	background-size: 15px 15px;
}
@media screen and (max-width:768px){
.doc_icon {
	padding-right: 20px;
	background: url(../images/common/doc_icon.svg) 100% 50% no-repeat;
	background-size: 13px;
}
}

.ppt_icon {
	margin-right: 5px;
	padding-right: 22px;
	background: url(../images/common/ppt_icon.svg) 100% 50% no-repeat;
	background-size: 15px 15px;
}
@media screen and (max-width:768px){
.ppt_icon {
	padding-right: 20px;
	background: url(../images/common/ppt_icon.svg) 100% 50% no-repeat;
	background-size: 13px;
}
}




/***** ボタン *****/
.btn a {
	padding: 20px 0;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	letter-spacing: normal;
	color: #fff;
	background-color: var(--base-color);
	border: var(--base-color) 3px solid;/*色はサイトによる*/
    border-radius: 3px;
	display: block;
    transition: all 0.4s;
	position: relative;
	margin: 20px 0;
	width: 100%;
}

@media screen and (max-width:768px){
.btn a {
    padding: 10px 0;
}
}

.btn a:hover {
    color: var(--base-color);
	background-color: #fff;/*色はサイトによる*/
	border: var(--base-color) 3px solid;/*色はサイトによる*/
	display: block;
}

.btn .no_link {
	margin: 20px 0;
	padding: 20px 0;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	letter-spacing: normal;
	color: #999;
	background-color: #f3f3f3;
	border: #ccc 3px solid;
    border-radius: 5px;
	display: block;
}
@media screen and (max-width:768px){
.btn .no_link {
	padding: 10px 0;
}
}

.btn2 {
    display: flex;
}

.btn2 li {
	width: 49%;
    display: flex;
    justify-content: center;
}

@media screen and (max-width:768px){
.btn2 {
    display: block;
}
	
.btn2 li {
    width: 100%;
    display: block;
}
	
.btn2 a {
    padding: 10px 0;
    display: block;
}

}


.btn2 li:nth-child(odd) {
	margin-right: 2%;
}
@media screen and (max-width:768px){
.btn2 li:nth-child(odd) {
    margin-right: 0;
    margin-bottom: 2%;
}
}


.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%;
}
}




/* ページトップ */
/*********************/
#c-pagetop__btn {
	position: fixed;
	bottom: -110px;
	right: 20px;
	z-index: 999;
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

#c-pagetop__btn .c-pagetop__link {
	text-decoration: none;
	color: var(--black-color);
	transition: 0.3s;
	display: flex;
	align-items: center;
}

#c-pagetop__btn .c-pagetop__txt {
	font-size: clamp(1.4rem,3.7vw,1.8rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-right: var(--item-s-margin);
}

#c-pagetop__btn .c-pagetop__arrow {
	display: block;
	border-radius: 10px;
	background-color: var(--sub-color);
	border: 2px solid var(--sub-color);
	width: clamp(40px,10.7vw,50px);
	height: clamp(40px,10.7vw,50px);
	position: relative;
	transition: 0.3s;
}

#c-pagetop__btn .c-pagetop__link:hover .c-pagetop__arrow {
	background-color: #fff;
}

#c-pagetop__btn .c-pagetop__arrow::before,
#c-pagetop__btn .c-pagetop__arrow::after {
	content: "";
	position: absolute;
}

#c-pagetop__btn .c-pagetop__arrow::before {
	width: clamp(5px,1.3vw,8px);
	height: clamp(5px,1.3vw,8px);
	right: clamp(12px,3.2vw,14px);
	top: clamp(12px,3.2vw,14px);
	transform: rotate(45deg);
	transform-origin: top left;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff
}

#c-pagetop__btn .c-pagetop__link:hover .c-pagetop__arrow::before {
	border-color: var(--sub-color);
}

#c-pagetop__btn .c-pagetop__arrow::after {
	width: 2px;
	height: clamp(12px,3.2vw,16px);
	right: 50%;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
}

#c-pagetop__btn .c-pagetop__link:hover .c-pagetop__arrow::after {
	background: var(--sub-color);
}

@media screen and (max-width:768px){
	#c-pagetop__btn {
		right: 0;
	}
	
	#c-pagetop__btn .c-pagetop__link {
		flex-direction: column;
		gap: 3rem;
	}
	
	#c-pagetop__btn .c-pagetop__txt {
		display: inline-block;
		transform: rotate(90deg);
		margin-inline: auto;
	}
}


/***** 印刷用 *****/
@media print {
main > div {
    display: block;
}

main > div::after {
    content: "";
    clear: both;
    display: block;
}

#wrap_r {
    float: right;
    background-color: #fff;
}

#wrap_l {
    float: left;
}

#pagetop {
    display: none;
}
}





/***** 印刷用 *****/
@media print {
main > div {
    display: block;
}

main > div::after {
    content: "";
    clear: both;
    display: block;
}

#wrap_r {
    float: right;
    background-color: #fff;
}

#wrap_l {
    float: left;
}

#pagetop {
    display: none;
}
}




/***** アンカーポイント調整 *****/
.jump_point{
	padding-top: 139px;
	margin-top: -139px;
}


.jump_point_in{
	padding-top: 139px;
	margin-top: -139px;
}

@media screen and (max-width:768px){
.jump_point{
	padding-top: 117px;
	margin-top: -117px;
}
	
.jump_point_in{
	padding-top: 140px;
	margin-top: -140px;
}
}

/*1行開けるとき*/
.para{
	padding-bottom: 1em;
}
