html
{
	margin: 0 0 0 0; 
	padding: 0 0 0 ;
 }


H1
{
    FONT-WEIGHT: bold;
	font-size: 28px;
	line-height: 140%;
}
H2
{
    FONT-WEIGHT: bold;
	font-size: 26px;
}
H3
{
	font-size: 22px;
}
H4
{
	font-size: 18px;
}
H5
{
	font-size: 18px;
}


p
{
    FONT-SIZE: 15px;
	/* line-height: 150%;*/
}

th,td {
    FONT-SIZE: 15px;
	max-width: 750px; 
}

body
{

/*	background-color: #DFFFFF;  */
    -webkit-text-size-adjust: 100%;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

	/* width: fit-content; */

	margin: 0;
	padding: 0;


    flex-flow: column;
    min-height: 100vh;

    background: mintcream;

   word-break: break-all;


/*  display: flex;  */  /*これを入れると横幅が画面いっぱいにはいらなくなる */
/*	line-height: 130%; */
 }

body A
{
    COLOR: mediumblue;
/*  TEXT-DECORATION: underline; */
    TEXT-DECORATION: none;


}
body A:hover
{
    VISIBILITY: visible;
    COLOR: darkblue;
    BACKGROUND-COLOR: skyblue;
    TEXT-DECORATION: underline;
}
A:visited 
{
	color: blue;
	text-decoration:underline;
}

.white 
{
  color: white;
}

.black 
{
  color: black;
}

.blue 
{
  color: blue;
}

.green 
{
  color: green;
}




button, input, select, textarea 
{
 font-family : inherit;
 font-size : 16pt;
 }



/**** TABLE関係 ****/
table
{
	max-width: 840px; 
	word-break: break-word;  /*追加する*/
	table-layout:fixed;
     box-sizing: border-box;  /* padding ではみ出ないようにする設定 */
 }


img { 	max-width: 100%; }


/* 最大画像サイズを設定 */
@media only screen and (max-width: 840px) 
{
/*	img { 	max-width: 100%; height: auto;} */
	img { 	max-width: 100%; object-fit: contain; }

	/* パソコンで見たときは"pc"のclassがついた画像が表示される       */
	/*（例）<img class="pc" src="../img/forPc.png" alt="パソコン用の画像"> */
	.pc { display: block !important; }
	.sp { display: none !important; }
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
/*（例） <img class="sp" src="../img/forSp.png" alt="スマートフォン用の画像">  */
@media only screen and (max-width: 640px) 
{
/*	img { 	max-width: 100%; height: auto;} */
	img { 	max-width: 100%; object-fit: contain; }

	.pc { display: none !important; }
	.sp { display: block !important; }
}





ul {
	list-style-type:none;
	margin: 0;
	padding: 0.1em;

}
ul li {
	position:relative;
	padding: 0em 0.3em 0.3em 1.3em;
}
ul li:before {
	position:absolute;
	content:'';
	top: 0.5em;
	left: 0.2em;
	height:0;
	width:0;
	border-style: solid;
	border-width: 6px 0 6px 9px;
	border-color: transparent transparent transparent #319cff;
}
ul li p {
    margin: 0; 
    padding: 0;
}



/*

.titlefont
{
    FONT-WEIGHT: bold;
    FONT-SIZE: large;
    FONT-STYLE: normal;
}
.large
{
    FONT-SIZE: 20px;
}
.normal
{
    FONT-SIZE: 16px;
}
.normal2
{
    FONT-SIZE: 16px;
}
.small
{
    FONT-SIZE: 16px;
}
.small2
{
    FONT-SIZE: 16px;
}
.small2w
{
    FONT-SIZE: 16px;
    COLOR: #ffffff;
}
.verysmall
{
    FONT-SIZE: 10px;
}
.keyword
{
    FONT-SIZE: 16px;
    COLOR: #11194a;
}

*/


/*************************************
 　独自CSS 
 *************************************/

header 
{
  position: absolute;

/*  position: relative, fixed; */
/*  position:fixed; */
/*  position: absolute;*/
  display: block;
/*  display: inline-block;  */

  top:    0px;
  width:  100%;
  height: 90px;
/*  line-height:80px; */

  box-sizing: border-box;  /* padding ではみ出ないようにする設定 */

/*  vertical-align : middle;  */ /* 文字を中心線で合わせる(あまり使わない) */
/*  align-items: center; */  /*縦方向中心*/

  line-height: 120%;

  overflow: hidden;
  color: #fff;
  background-color: #319cff;
/*  background-color:#319cff;*/

  text-align: left;

  z-index: 20;

  margin: 0 0;
  padding: 10px 30px 10px 15px; 	/* 上・右・下・左 */

  font-size: 20px;
  word-wrap: break-word;
   box-shadow: 0px 0px 10px 0px #eeeeee; /*白い拡散影 */
/*   box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);  */  /*黒い拡散影 */
}



nav0
{
	position: absolute; 
	display: block;
/*  background-color: mintcream; */
   background-color: #3399ff;	 	/* 水色２ */
 	width:  100%;
  	top: 90px;
  	height: 35px;
 }



nav1
{
	position: static; 
/*	position: absolute; */
/*	position: relative; */
/*	position: absolute; */

	display: block;

	height: 20px;
  	z-index: 15;
/*	float: left; */

	top:    90px;
/*	width:  100%; */
 	width:  850px; 
/* 	left:	0px; */

	min-width: 650px;
	max-width: 850px;

	margin-left: auto;
	margin-right: auto;

/*   padding: 90px 0px 0px 0px;  */	/* 上・右・下・左 */

/*    background-color: #319cff;*/
 }

nav1 dd
{

/*  display: block; */
	display: inline-block;

/*	flex: 1 0 auto; */
	position: relative;
	float: left;

  	height:35px;
/*	line-height:35px;  */

     box-sizing: border-box;  /* padding ではみ出ないようにする設定 */

/*	width: 140px; */
	width: 20%;

  	color: white;
	overflow: hidden;   /* はみ出た文字は消す */

/*	margin-right: 2px; */
/*	margin: 0 auto; */
	margin: 0 0;

	padding: 8px 0px 4px 2px; 	/* 上・右・下・左 */

	text-align: center;    /* センター表示 */
/*    vertical-align : middle; */

	text-decoration: none;

	background-color: #319cff;

/*	box-shadow: 0px 0px 10px 0px rgba(0.7, 0.7, 0.7, 0.7); */
/*	box-shadow: 0px 0px 10px 0px #white; */
    box-shadow: 0px 0px 10px 0px #eeeeee;
}

nav1 dd a,nav1 dd a:link, nav1 dd a:visited, nav1 dd a:hover, nav1 dd a:active
{
	display:block;
    FONT-SIZE: 14px;
  	color: white;
	text-decoration: none;
 }
nav1 dd:hover, nav1 dd a:hover
{
	background-color:#000066; 
 }

main 
{
	position: static; 

	z-index: 1;
/*	float: left;*/
	display: block;

  	box-sizing: border-box;  /* padding ではみ出ないようにする設定 */

/*	top:    150px; */

 	width:  850px; 

	min-width: 650px;
	max-width: 850px;

	margin-left: auto;
	margin-right: auto;

/*    flex: 1; */
	background-color: white;
/*    padding: 180px 20px 5px 20px; */
/*    padding: 100px 20px 5px 20px; */ /* 上・右・下・左 */
/*    padding: 20px 20px 5px 20px; 	*/ /* 上・右・下・左 */
    padding: 90px 20px 5px 20px; 	/* 上・右・下・左 */
 }

footer 
{
  position: static;

/*  position: relative, fixed; */
/*  position:fixed; */
/*  position: absolute;*/

  box-sizing: border-box;  /* padding ではみ出ないようにする設定 */

  display: inline-block;
/*  display: inline-block; */

/*  margin-top: auto; */

  height: 80px;
  bottom: 0; 

  overflow: hidden;
  color: white;

  width:100%;

  background-color: #319cff;
  text-align: left;

  z-index: 1;  /*ヘッダ・フッタは10 */
  padding: 10px 10px 8px 10px;  	/* 上・右・下・左 */

  font-size: 12px;
  line-height:130%;

  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

footer a,footer a:link, footer a:visited, footer a:hover, footer a:active
{
	display:block-inline;
    FONT-SIZE: 10px;
  	color: white;
	text-decoration: none;
 }


/************************************************
　　おしゃれCSS                      
*************************************************/

/************************************************
【ＢＯＸ　ラベルを付けたようなデザイン】
box27

<div class="box_label">
    <span class="box-title">ここにタイトル</span>
    <p>ここに文章</p>
</div>
*************************************************/

.box_label {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #319cff;
/*  border: solid 3px #62c1ce; */

}
.box_label .box-title {
    position: absolute;
    display: inline-block;
    top: -45px;
    left: -3px;
    padding: 10px 15px;
    height: 25px;
    line-height: 25px;
/*  font-size: 22px; */
    background: #319cff;
/*  background: #62c1ce; */

    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box_label p {
    margin: 0; 
    padding: 0;
}





/**************************************
【ＢＯＸ　丸枠のノート的なデザイン　枠にタイトル】
box26

<div class="box_maru">
    <span class="box-title">ここにタイトル</span>
    <p>ここに文章</p>
</div>
***************************************/

.box_maru {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
/*  border: solid 3px #95ccff; */
    border: solid 3px #319cff;
    border-radius: 8px;
}
.box_maru .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
/*  font-size: 19px; */
    background: #FFF;
/*  color: #95ccff; */
    color: #319cff;
    font-weight: bold;
}
.box_maru p {
    margin: 0; 
    padding: 0;
}

/**************************************
【ＢＯＸ　吹き出し　薄青の背景・文字青】
box24

<div class="box_fukidashi_c">
    <p>ここに文章</p>
</div>
***************************************/

.box_fukidashi_c {
    position: relative;
    padding: 0.5em 0.7em;
    margin: 2em 0;
    background: #e6f4ff;
    color: #319cff;
    font-weight: bold;
}
.box_fukidashi_c:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #e6f4ff;
    width: 0;
    height: 0;
}
.box_fukidashi_c p {
    margin: 0; 
    padding: 0;
}


/**************************************
【ＢＯＸ　吹き出し　濃反転色・文字白】

box24

<div class="box_fukidashi">
    <p>ここに文章</p>
</div>
***************************************/

.box_fukidashi {
    position: relative;
    padding: 0.5em 0.7em;
    margin: 2em 0;
    background: #319cff;
    color: #fff;
    font-weight: bold;
}
.box_fukidashi:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #319cff;
    width: 0;
    height: 0;
}
.box_fukidashi p {
    margin: 0; 
    padding: 0;
}



/**************************************
【ＢＯＸ　角丸・中は塗りつぶしなし】

<div class="box1">
    <p>ここに文章</p>
</div>
***************************************/

.box1 {
    padding: 0.5em 1em;
    margin: 0 0;
/*  margin: 2em 0; */
/*  font-weight: bold; */
    border: solid 3px #319cff;
}
.box1 p {
    margin: 0; 
    padding: 0;
}


/**************************************
【ＢＯＸ　角丸・中は塗りつぶしなし】
スクロールバーあり・height=150

<div class="box1s">
    <p>ここに文章</p>
</div>
***************************************/

.box1s {
/*  padding: 0.5em 1em; */
    padding: 0.5em 1em;

/*  margin: 2em 0; */
    margin: 0.5em 0;

/*  font-weight: bold; */
    border: solid 3px #319cff;

	overflow: auto; 
  	height: 300px; 
}

.box1s p {
    margin: 0; 
    padding: 0;
}




/**************************************
【見出し　	｜左線　青色・黒字】
***************************************/

H3 {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #000000; /*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #319cff;/*左線*/
  font-weight:  bold;
}

/**************************************
【見出し　	｜下線色が変わる　青色・黒字】
***************************************/

H4 {
  border-bottom: solid 3px #cce4ff;
  position: relative;
}

H4:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #319cff;
  bottom: -3px;
  width: 20%;
}

/**************************************
【見出し　	｜下線太　青色・黒字】
***************************************/

HH4 {
  background: linear-gradient(transparent 70%, #a7d6ff 70%);
}




H2 {
    position: relative;
    padding: 0.5em 0.7em;
/*    margin: 2em 0; */
    background: #319cff;
    color: #fff;
    font-weight: bold;
}
H2:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    width: 0;
    height: 0;
}
H2 p {
    margin: 0; 
    padding: 0;
}

