@charset "UTF-8";

html {
	height: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1rem;
}
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:active,a:hover { outline-width: 0; }
b,strong { font-weight: bolder; }
small { font-size: 0.75rem; }
sub,sup {
  font-size: 0.75rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub { bottom: -0.25rem; }
sup { top: -0.5rem; }
img {
	max-width: 100%;
	vertical-align: middle;
  border-style: none;
	align-self: flex-start;
}

/* Add the correct display in all browsers. */
summary { display: list-item; }
ul,ol {
    list-style: none;
    list-style-image: none;
}

em { 
	font-weight: bold;
	font-style: normal;
	 }
a	{ 
	color: #576bcc;
	text-decoration: none;
	}
a:active, a:focus	{ outline: 0; }



/* 全体
------------------------------------------------------------*/
body	{ 
	margin: 0;
  padding: 0;
  height: 100%;
	background: #fbfbfb;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-weight: 300;
	-webkit-text-size-adjust: 100%;
	font-size: 100%; /* Responsive type setting : 16px */
	line-height: 1.6rem;
	color: #333;
	text-align: justify;
	}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}

header,footer	{
	width:100%;
	}
header { 
	border-bottom: solid 2px #f5d545;
}
footer { 
	position: sticky;
  top: 100vh;
 }
.container,.inner {
	width: auto;
	max-width: 1000px;
	min-width: 320px;
	margin: 0 auto;
	padding: 0;
	}
.container{ background-color:#fff; }

.mb1	{ margin-bottom: 1rem; }
.mb2	{ margin-bottom: 2rem; }
.mt1	{ margin-top: 1rem; }
.mt2	{ margin-top: 2rem; }
.txtR	{ text-align: right; }
.txtL	{ text-align: left; }
.center	{ text-align: center; }
.pt1	{ padding-top: 1rem; }


/* font
------------------------------------------------------------*/

h2,h3 { 
	margin:2rem 0 1rem;
}

.ttl_lv_2	{
	font-size: 1.25rem;  /* 20px */
	color: #07038c;
	text-align: center;
	}

.ttl_lv_3	{
	font-size: 1.125rem;
	color: #29653C;/*#576bcc;*/
	border-bottom: dotted 1px #A3D9B4;
	}
p	{ margin-bottom: 0.875rem; }
.txtSm	{ 
	font-size: 0.75rem;
	line-height: 1.2;
	}
.txtXs	{ font-size: 0.625rem; }


/* ========== PC: font ========== */

@media (min-width: 768px) {

.ttl_lv_2	{
	font-size: 1.5rem;  /* 24px */
	color: #07038c;
	text-align: center;
	}

.ttl_lv_3	{
	font-size: 1.25rem;
	color: #29653C;/*#576bcc;*/
	border-bottom: dotted 1px #A3D9B4;
	}
p	{ margin-bottom: 1rem; }
.txtSm	{ 
	font-size: 0.875rem;
	line-height: 1.3;
	}
.txtXs	{ font-size: .75rem; }

}

/* color
------------------------------------------------------------*/
.txtBl { color: #07038c; }


/* gNav
------------------------------------------------------------*/

nav{
 width: 100%;
 position: relative;
 background: #fff;
 z-index:100; 
}

.logo		{
	margin: 0.5rem auto;
	padding: 2px auto;
	 } 
.logo a	{ display: block;}

.logo img	{
	width: 200px;
	height: 50px;
	}

ul.main-nav	{
	display: flex;
	justify-content: center;
	flex-direction: row;
	margin-bottom: 1em;
 }
	
.main-nav li a {
	display: block;
	margin: 0.2em;
	padding: 0.5em;
	border-radius: 4px;
	background: #576bcc;
	font-size: 0.875rem;
	font-weight: 500;
	color: #fff;
	line-height: 1.2em;
	text-align: center;
  text-decoration: none;
}

/* ========== PC: nav ========== */

@media (min-width: 768px) {
	
nav{
 display: flex;
 flex-direction: row;
 height: 70px;
 }
h1.logo	{
  width: 240px;
  height: 60px;
	margin: 5px auto 0 10px;
 }
.logo img	{
	width: 240px;
	height: 60px;
 }

ul.main-nav	{
	align-items: center;
	margin-bottom: 0;
 }	
.main-nav li a	{
	margin: 0.2em 0.5em;
	padding: 0.5em 1em;
	}
.main-nav li a:hover {
	background: #576bcc;
 }

}



/* contents
------------------------------------------------------------*/

/* tab-contents */

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:20px 0;
}
/*
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #659c63;
  display: block;
  order: -1;
}
*/
.tab-label {
  color: White;
  background: #a2a2a2;
	font-size: .875em;
  white-space: nowrap;
  text-align: center;
  padding: .2em .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab-switch:checked+.tab-label {
  background: #576bcc;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: .5s opacity;
  /*box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);*/
}
.tab-switch {
  display: none;
}

.list { 
	line-height: 1.8rem;
}
.list li{
  text-indent: -1em;
  padding-left: 1em;
	margin-bottom: 0.5rem;
}
.list li::before {
	display:inline-block;
  vertical-align: middle;
  content:'';
  width: 0.6rem;
  height: 0.6rem;
  background: #6d93d7;
  border-radius: 50%;
	margin-right: 0.4rem;
}
.desc_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.desc_list dt {
  display: flex;
  width: 30%;
  padding: 10px;
  background-color: #DFF2E5;
	border-bottom: 1px solid #ccc;
}
.desc_list dd {
  display: flex;
  width: 70%;
  margin-left: 0;
  padding: 10px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
.desc_list dt:first-of-type,
.desc_list dd:first-of-type {
  border-top: 1px solid #ccc;
}


/* ========== PC: contents ========== */

@media (min-width: 768px) {

.br_sp { display: none; }

}

/* pageTop_btn
------------------------------------------------------------*/

#pageTop {
	display: none;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 100;
}
#pageTop a {
	display: block;
	border-radius: 50%;
	background-color: #576bcc;
	text-align: center;
	color: #fff;
	font-size: 1.5rem;
	text-decoration: none;
	padding: 0.8rem;
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}
#pageTop a:hover {
	display: block;
	background-color: #6290b1;
	color: #fff;
}


/* footer
------------------------------------------------------------*/
footer	{
	padding: 0.5em 0;
	background: #07038c;
	}

footer p	{
	line-height: 1;
	text-align: center;
	font-size: 0.775em;
	color:#fff;
	background: transparent;
	}

/* .clear + .clearfix
------------------------------------------------------------*/
.clear	{ clear: both; }
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}


/* Responsive for PC
########################################################### */
@media screen and (min-width : 768px) {

/* contents
------------------------------------------------------------*/



}



/* for SP
########################################################### */

@media screen and (max-width: 768px) {
h1	{ 
	text-align: center;
	}
h2	{ font-size: 1.25rem; }

/* footer
------------------------------------------------------------*/
footer p	{ margin: 0 3%; }

}
