@charset "utf-8";
.Header {
	z-index:2;
	position: fixed; /* ヘッダーを固定する */
	top: 0; /* 上部から配置の基準位置を決める */
	left: 0; /* 左から配置の基準位置を決める */
	width: 100%; /* ヘッダーの横幅を指定する */
	height: 120px; /* ヘッダーの高さを指定する */
	/*padding: 10px;*/ /* ヘッダー内側の余白を指定する(上下左右) */
 	/*background-image: url(../img/blue.jpg); */ /* ヘッダーの背景色を指定する */
 	background: #ffffff;
 	text-align: center;
}


footer {
/*	position: absolute; */
	position: fixed; 
  	bottom: 0;
  	left: 0;
  	width: 100%;
    height: 50px;
    text-align: center;
}

.wrapper{
   	min-height: 100vh;
    position: relative;/*←相対位置*/
    padding-bottom: 120px;/*←footerの高さ*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
}

body {
	margin: 20px; /* bodyの外側の余白を指定する */
	padding: 50px 10px 50px 10px;  /* bodyの内側の余白を指定する */
	text-align: center;
	overflow-x: hidden;
	width: 100%; /* コンテンツの横幅を指定する */
	overflow: auto; /* コンテンツの表示を自動に設定（スクロール） */
	padding-top: 115px;
	margin:auto	;
	display: flex;
	flex-flow: column;
	position: relative;
	
    /* white-space: nowrap; */
   
}

main {
    min-height: calc(100vh - 300px);
    flex: 1;  
    padding-bottom: 30px;
    position: relative;/*A相対位置*/
    
    
}

table {
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
}

/* FONT */
.font_header {
    font-size: 20px;    /* 文字サイズ指定 */
    font-family: "Sans Serif", "MS PGothic";
    color: #FFFFFF;
    transform: scale(1.1, 1);
    letter-spacing: 0.12em;
}

.font_footer {
    font-size: 18px;    /* 文字サイズ指定 */
    font-weight:900;
    color: #000000;
    font-family: "Sans Serif", "MS PGothic";    
}

.font_footer2 {
    font-size: 15px;    /* 文字サイズ指定 */
    font-family: "Sans Serif", "MS PGothic";
    color: #FFFFFF;
    transform: scale(1.1, 1);
    letter-spacing: 0.12em;
}

.font_table1{
    font-size: 15px;    /* 文字サイズ指定 */
    font-family: "Sans Serif", "MS PGothic";
    transform: scale(1.1, 1);
    letter-spacing: 0.12em;
}

.font_table2 {
	font-family: "Sans Serif", "MS PGothic";
    font-size:25px;
    font-weight: 100; 
}

.font_table3 {
	font-family: "Sans Serif", "MS PGothic";
    font-size:20px;
    
}

.font_bodybig{
    font-size: 40px;    /* 文字サイズ指定 */
    font-family: "Sans Serif", "MS PGothic";
    font-weight: 500; 
    /*text-decoration: underline;*/
    border-bottom: 4px solid;
	width: 370px;
	margin-left: auto; /* 中央寄せにするため */
	margin-right: auto; /* 中央寄せにするため */
}

.font_guide {
	font-family: "Sans Serif", "MS PGothic" ;
    font-size: 30px;
    font-weight: 500; 
}

.font_td {
	font-family: "Sans Serif", "MS PGothic";
    font-size:18px;
    font-weight: 700; 
}

.font_tr {
	font-family: "Sans Serif", "MS PGothic";
    font-size:20px;
    font-weight: 600; 
    height: 25px;
}

.font_button {
	font-family: "Sans Serif", "MS PGothic";
    font-size:20px;
    font-weight: 600; 
    height: 30px;
   	padding: 5px;
}


.font_red {
	text-align: center;
    font-size: 30px;    /* 文字サイズ指定 */
    font-weight: 700;
    color:#ff0000;
}

.font_red2 {
    font-size: 25px;    /* 文字サイズ指定 */
    color:#ff0000;
}

.font_blk {
	text-align: center;
    font-size: 30px;    /* 文字サイズ指定 */
    font-weight: 700;
}

.font_bold {
    font-weight: 700;
}

.font_normal {
	text-align: center;
    font-size: 25px;    /* 文字サイズ指定 */
    font-family: "Sans Serif", "MS PGothic";
   
  	font-weight: 100;
    
}

input[type=text]{
	width:400px;
	height:35px;
	font-size:25px;
}

textarea {
	font-size: 30px;
	font-family: "Sans Serif", "MS PGothic";
}

/* valign */
.top {
  vertical-align: top;
}

.middle {
  vertical-align: middle;
}

.baseline {
  vertical-align: baseline;
}

.bottom {
  vertical-align: bottom;
}

/* align */
.start {
	text-align: start;
}

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.end {
	text-align: end;
}

.justify {
	text-align: justify;
}

/* DROP DOWN LIST */
.dropdwn{ 
	max-width: 1200px;   
    display: flex;
}

ul{
    text-align: center;
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    color: #fff;
    width: max-content;
}

li{   
    position: relative;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: block;
    cursor: pointer;
}

.dropdwn_li{    
    margin: 5px;
    display: inline;
}

.dropdwn_menu{
    /*width: 200;*/
    display: none;
    position: absolute;
    margin-left: -70px; 
    /*left: calc ( 150px - 100% ) / -2 );*/
    margin-top: -35px;
    padding: 2;
    background: rgb(0,128,193);
}


.dropdwn_menu li{
    width: 100%;
}

.dropdwn_menu li a{  
    display: block;
    color: #fff;
}

li a:hover{
        color: rgb(255,255,255);
}

a {
    text-decoration:none; 
}

p.box {
   border-bottom: 2px solid ;
   padding-bottom: 3px; /* 内容と線との間隔量 */
   max-width: 250px;
}

p.box2 {
   border-bottom: 2px solid ;
   padding-bottom: 3px; /* 内容と線との間隔量 */
   max-width: 160px;
   font-size: 25px;    /* 文字サイズ指定 */
   font-family: "Sans Serif", "MS PGothic";
   font-weight: 600;
}

p.box3 {
   border-bottom: 2px solid ;
   padding-bottom: 3px; /* 内容と線との間隔量 */
   max-width: 150px;
   font-size: 25px;    /* 文字サイズ指定 */
   font-family: "Sans Serif", "MS PGothic";
   font-weight: 600;
}

td.form1{
	text-align: left;
    font-size: 20px;    /* 文字サイズ指定 */
    font-family: "Sans Serif", "MS PGothic";
   	font-weight: 600;
  	vertical-align: bottom;
  	height: 25px;
}


td.form3 {
	flex:1;
	text-align: center;
    font-size: 20px;    /* 文字サイズ指定 */
    font-family: "Sans Serif", "MS PGothic";
   	height: 25px;
  	font-size:18x;
    font-weight: 600;
    word-wrap:break-word;
	overflow-wrap:break-word;
}

td.form4{
	text-align: center;
    font-size: 20px;    /* 文字サイズ指定 */
    font-family: "Sans Serif", "MS PGothic";
   	font-weight: 600;
  	vertical-align: bottom;
  	height: 25px;
}

td.form5{
	text-align: left;
    font-size: 20px;    /* 文字サイズ指定 */
    font-family: "Sans Serif", "MS PGothic";
   	font-weight: 600;
  	vertical-align: bottom;
  	height: 25px;
  	color: #ff0000;
}

