body {
	font: 100%/1.4 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	margin: 0;
	padding: 0px;
	color: #474747;
	background-color: #fff;
}

.container {
	max-width: 1000px;
	background-color: #fff;
	margin: 0 auto;
	overflow:hidden
}

.content {
	margin-right: 40px;
}
.user_name{
   width: 1000px;
   text-align: left;
   margin: 0 auto;
   padding-top: 10px;
   font-weight: bold;
	color: #000;
}

.a-hd-c {
    z-index: 60;
    font-size: 16px;
}

a:link {
	text-decoration: none; 
	color: #000;
}
a:visited {
	color: #474747;
	text-decoration: none;
}
a:hover, a:active, a:focus { 
	color: #CC0000;
	text-decoration: underline;	
}

.a-hd {
    width: 100%;
    position: relative;
    z-index: 71;
	background-image:url("../bg.png");
	background-size:100% auto;
}
.hd-m {
    width: 1210px;
    height: 90px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    zoom: 1;
}
.h-logo {
    float: left;
    display: inline;
    width: 450px;
    height: 65px;
    padding-top: 0px;
}

.h-logo :hover  {
   opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}

.hd-main {
    width: 450px;
    height: 78px;
    float: right;
    display: inline;
    padding-top: 12px;
    text-align: right;
    position: relative;
}
.hd_menu {
    height: 42px;
    background: #009952;
    width: 100%;
    top: 0;
}
.footer-c {
    width: 100%;
    top: 0;
}
ul.footer1 {
    display: flex;
    margin: 0 auto;
    text-align: center;
    table-layout: fixed;
    width: 800px;
}
ul.footer1 li {
    text-align: center;
    display: flex;
    list-style: none;
    font-size: 14px;
    margin-right: 30px;
}
.center {
    text-align: center;
}
.center2 {
    text-align: center;
}
ul.hd0 {
    display: flex;
    margin: 0 auto;
    text-align: center;
    table-layout: fixed;
    width: 1000px;

}
ul.hd0 li {
    padding-right: 10px;
    margin-left: 10px;
	margin-top: 50px;
    list-style: none;
    font-size: 0.9em;
}

ul.hd0 li img {
    width:12px;
    height:10px; 
	margin: 0 3px 0px 0;
}

ul.hd1 {
    display: flex;
    margin: 0 auto;
    table-layout: fixed;
    text-align: center;
    width: 800px;
}
ul.hd1 li {
    padding-right: 0;
    list-style: none;
    font-size: 20px;
}
ul.hd2 {
    display: table;
    margin: 0 auto;
    table-layout: fixed;
    text-align: center;
    width: 900px;
}
ul.hd2 li {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background-color: #009952;
    border-left: 1px solid white;
    height: 42px;
}
ul.hd2 li a {
    display: block;
    text-decoration: none;
    color: 000;
    padding: 5px;
}
/* -------------------- */
/* ▼メニューバーの装飾 */
/* -------------------- */
ul.ddmenu {
	margin: 0 auto;
    padding: 0px 0px 0px 0px; /* メニューバー内側の余白(左に15px) */
    background-color: #000; /* バーの背景色(濃い赤色) */
    width: 100%;
    height: 40px;
}

.size {
    width: 1210px;
	text-align: left;
	margin: 0 auto;
}

/* -------------------------- */
/* ▼メインメニュー項目の装飾 */
/* -------------------------- */
ul.ddmenu li {
    width: 300px; /* メニュー項目の横幅(125px) */
    display: inline-block; /* ★横並びに配置する */
    list-style-type: none; /* ★リストの先頭記号を消す */
    position: relative; /* ★サブメニュー表示の基準位置にする */
	border-left: solid 1px #fff;
}
ul.ddmenu a {
    background-color: #000; /* メニュー項目の背景色(濃い赤色) */
    color: white; /* メニュー項目の文字色(白色) */
    line-height: 40px; /* メニュー項目のリンクの高さ(40px) */
    text-align: center; /* メインメニューの文字列の配置(中央寄せ) */
    text-decoration: none; /* メニュー項目の装飾(下線を消す) */
    display: block; /* ★項目内全域をリンク可能にする */
}
ul.ddmenu a:hover {
    background-color: #969696; /* メニュー項目にマウスが載ったときの背景色(淡いピンク) */
    color: #fff; /* メニュー項目にマウスが載ったときの文字色(濃い赤色) */
}

/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */ /* ※サブメニューが1階層しか存在しない場合の記述 */
/* ---------------------------------- */
ul.ddmenu li:hover ul {
    display: block; /* ★マウスポインタが載っている項目の内部にあるリストを表示する */
}

/* -------------------- */
/* ▼サブメニューの装飾 */
/* -------------------- */
ul.ddmenu ul {
    margin: 0px; /* ★サブメニュー外側の余白(ゼロ) */
    padding: 0px; /* ★サブメニュー内側の余白(ゼロ) */
    display: none; /* ★標準では非表示にする */
    position: absolute; /* ★絶対配置にする */
}

/* ------------------------ */
/* ▼サブメニュー項目の装飾 */
/* ------------------------ */
ul.ddmenu ul li {
    width: 250px; /* サブメニュー1項目の横幅(135px) */
    border-top: 1px solid pink; /* 項目上側の枠線(ピンク色で1pxの実線) */
}
ul.ddmenu ul li a {
    line-height: 35px; /* サブメニュー1項目の高さ(35px) */
    text-align: left; /* 文字列の配置(左寄せ) */
    padding-left: 5px; /* 文字列前方の余白(5px) */
    font-weight: normal; /* 太字にはしない */
}
ul.ddmenu ul li a:hover {
    background-color: #ffff80; /* サブメニュー項目にマウスが載ったときの背景色(淡い黄色) */
    color: #005500; /* サブメニュー項目にマウスが載ったときの文字色(濃い緑色) */
}

.btn-flat-border2 {
    display: inline-block;
    margin-top: 10px;
    width: 90px;
    height: 30px;
    text-decoration: none;
    color: #00552e;
    border: solid 2px #ffffff;
    border-radius: 3px;
    transition: 0.4s;
    text-align: center;
}

.btn-flat-border2:hover {
    background: #00552e;
    color: white;
}

.btn-flat-border3 {
    display: inline-block;
    padding: 0.3em 1em;
    width: 50px;
    text-decoration: none;
    color: #00552e;
    border: solid 2px white;
    border-radius: 3px;
    transition: 0.4s;
    text-align: center;
    margin-left: 20px;
}

.btn-flat-border3:hover {
    background: #00552e;
    color: white;
}

.btn-flat-border4 {
    display: inline-block;
    margin-top: 10px;
    width: 90px;
    height: 35px;
    text-decoration: none;
    color: #00552e;
    border: solid 2px #ffffff;
    border-radius: 3px;
    background: white;
    transition: 0.4s;
    text-align: center;
}

.btn-flat-border4:hover {
    background: #00552e;
    color: white;
}


h1, h2, h3, h4, h5, h6, p {
	
}

.tbls {
	margin-top: 10px;
  width: 950px;
  border-collapse: collapse; 
  border: solid 1px #A0A0A0;
  font-size: 0.8em;
}

.tbls tr{
  border-collapse: collapse;
  border: solid 1px #A0A0A0;
}

.tbls td{
 padding: 10px;
 vertical-align: top;
}

.tblstitle {
	background-color: #EEEEEE;
	vertical-align: top;
}

.tblstoptitle {
	background-color: #E5E5E5;	
	font-weight: bold;
	border-bottom: 0px none;
}

.tblleft{
	border-left: 0px none;
}

span.required{
	background-color:#CC0000;
	color: #fff;
	font-size: 0.8em;
	padding: 0 3px 0 3px;
	margin-right: 3px;
	vertical-align: top;
}

span.yubin{
	display:inline-block;
	width: 70px;
	text-align: center;
}



.title {
	text-align: center;
    font-weight: bold;
	padding: 1em 0 1em 0;
	font-size: 1.5em;
}

textarea {
	width: 350px;
	height: 7em;
	line-height: 1.5em;
}

.button{
	margin-top: 20px;
	font-size: 0.8em;
	text-align: center;
	cursor : pointer;
	}

.search_button{
	font-size: 0.8em;
	text-align: center;
	}

.stepBar {
  position: relative;
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
  text-align: center;
  width: 99%;
  overflow: hidden;
  *zoom: 1;
  font-size: 0.8em;
}
.stepBar .step {
  position: relative;
  float: left;
  display: inline-block;
  line-height: 40px;
  padding: 0 40px 0 20px;
  background-color: #eee;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.stepBar .step:before, .stepBar .step:after {
  position: absolute;
  left: -15px;
  display: block;
  content: '';
  background-color: #eee;
  border-left: 4px solid #FFF;
  width: 20px;
  height: 20px;
}
.stepBar .step:after {
  top: 0;
  -moz-transform: skew(30deg);
  -ms-transform: skew(30deg);
  -webkit-transform: skew(30deg);
  transform: skew(30deg);
}
.stepBar .step:before {
  bottom: 0;
  -moz-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
}
.stepBar .step:first-child {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.stepBar .step:first-child:before, .stepBar .step:first-child:after {
  content: none;
}
.stepBar .step:last-child {
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.stepBar .step.current {
  color: #FFF;
  background-color: #CC0000;
}
.stepBar .step.current:before, .stepBar .step.current:after {
  background-color: #CC0000;
}
.stepBar.step2 .step {
  width: 50%;
}
.stepBar.step3 .step {
  width: 33.333%;
}
.stepBar.step4 .step {
  width: 25%;
}
.stepBar.step5 .step {
  width: 20%;
}

hr.style4 {
	border-top: 1px dotted #D8D8D8;
}

.container_menu {
	width: 500px;
	background-color: #fff;
	margin: 0 auto; 
	float:left;
}

.container_comic {
	width: 500px;
	background-color: #fff;
	margin: 0 auto; 
	float:right;
}
.wrapper{
    min-height: 100vh;
    position: relative;/*←相対位置*/
    padding-bottom: 30px;/*←footerの高さ*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
}
footer {
	height: 30px; /*ヘッダーの高さ*/
	width: 100%; /*ヘッダーの横幅*/
	min-width: 1000px;
	text-align: conter;
	background-color: #000; /*ヘッダーの背景色*/
	color: #FFF;
	font-size: 0.8em;
	padding-top: 20px;
	position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/
	margin-top: 200px;
    }
	

div#balloon7{
	z-index: 1;
    background: #ffffff;
    dispay: inline-block;
	max-width: 950px;
	padding : 10px ;
    position: relative;
    border: 1px solid #000;
    -moz-border-radius: 16px;
	max-width: 550px;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    margin-left: 10px;
	margin-bottom: 10px;
}
div#balloon7:before {
	z-index: 1;
    content: "";
    display: inline-block;
    border: 10px solid transparent;
    border-right-color: #000;
    position: absolute;
    left: -20px;
    top: 40px;
    margin-top: -9px;
}
div#balloon7:after {
	z-index: 1;
    content: "";
    display: inline-block;
    border: 9px solid transparent;
    border-right-color: #ffffff;
    position: absolute;
    left: -18px;
    top: 40px;
    margin-top: -8px;
}

div#balloon5{
    background: #ffffff;
    dispay: inline-block;
    position: relative;
	padding : 10px ;
    border: 1px solid #000;
	max-width: 550px;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    border-radius: 16px;
	margin-bottom: 10px;
}
div#balloon5:before {
    content: "";
    display: inline-block;
    border: 10px solid transparent;
    border-left-color: #000;
    position: absolute;
    right: -20px;
    top: 40px;
    margin-top: -9px;
}
div#balloon5:after {
    content: "";
    display: inline-block;
    border: 9px solid transparent;
    border-left-color: #ffffff;
    position: absolute;
    right: -18px;
    top: 40px;
    margin-top: -8px;
}
