/* リンク設定 */
a:link,a:visited {
	text-decoration:none;
}
a:hover,a:active {
	text-decoration:none;
}
a.link1:link,a.link1:visited{
	color:#0F4342;
	text-decoration:none;
}
a.link1:hover,a.link1:active {
	color:#272525;
	text-decoration:none;
}
/* フォント */
.font1{
	color:#AC1013;
}
.font2{
	background:#F3DB04;
}
.under{
	text-decoration: underline;
}

/* 見出し */
h1 {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	position: relative;
	line-height: 1.4;
	margin:0 0 20px 0;
	padding:0.25em 1em;
	display: inline-block;
	top:0;
}
h1:before,h1:after{ 
  position: absolute;
  top: 0;
  content:'';
width: 8px;
height: 100%;
display: inline-block;
}
h1:before{
border-left: solid 1px black;
border-top: solid 1px black;
border-bottom: solid 1px black;
  left: 0;
}
h1:after{
  content: '';
  border-top: solid 1px black;
  border-right: solid 1px black;
  border-bottom: solid 1px black;
  right: 0;
}
h2{
position: relative;
margin-bottom:10px;
padding: 5px 0;
}
h2:after {
content: "";
display: block;
height: 3px;
background: -moz-linear-gradient(to right, #0F4342, transparent);
background: -webkit-linear-gradient(to right, #0F4342, transparent);
background: linear-gradient(to right, #0F4342, transparent);
}

/* リスト */
ul.list1, ol {
    color: #0F4342;
    border: dotted #272525 1px;/*ドット 色 太さ*/
	margin:10px 0;
    padding: 0.5em 0.5em 0.5em 2em;
}
ul.list1 li, ol li {
    line-height: 1.5;
    padding: 0.5em 0;
}

ul.list2 {
	color:#0F4342;
    border: dotted #272525 1px;/*ドット 色 太さ*/
	margin:10px 0;
    padding: 0.5em 1em 0.5em 2.3em;
    position: relative;
}
ul.list2 li {
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none!important;
}
ul.list2 li:before {/*疑似要素*/
    font-family: FontAwesome;
    content: "\f075";/*アイコンの種類*/
    position: absolute;
    left : 1em; /*左端からのアイコンまで*/
    color: #0F4342; /*アイコン色*/
}

/* マルチカラム */
.grid {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.item {
	background:#fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}
img {
  max-width: 100%;
  height: auto;
}
.zn_font1{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	color:#0F4342;
	font-size:20px;
	font-weight:bold;
	line-height:180%;
}
.zn_font2{
	color:#272525;
	line-height:130%;
	font-size:14px;
}
.zn_font3{
	font-size:12px;
	text-align:center;
	line-height:180%;
}
.sd_font1{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	color:#902D2F;
	font-size:20px;
	font-weight:bold;
	line-height:150%;
}

/* ボックス */
.box1{
	background:#fff;
	-webkit-border-radius: 5px / 5px;
	-moz-border-radius: 5px / 5px;
	border-radius: 5px / 5px;
	margin:20px 10px;
	padding:20px;
	text-align:left;
	overflow:hidden;
}
.box2 {
    margin: 20px 0;
    background: #F0F0F0;
	border: dotted #0F4342 1px;/*ドット 色 太さ*/
}
.box2 .box-title {
    font-size: 1.2em;
    background: #0F4342;
    padding: 10px;
    text-align: left;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box2 p {
    padding: 10px;
    margin: 0;
}
.box3{
	-webkit-border-radius: 5px / 5px;
	-moz-border-radius: 5px / 5px;
	border-radius: 5px / 5px;
	margin:20px 10px 0 10px;
	padding:20px;
	text-align:left;
	overflow:hidden;
}
.box4{
	background:#eee;
	padding:5px 10px;
	color:#272525;
	overflow:hidden;
}

/* ボタン */
.btn1{
	width:400px;
	font-size:20px;
    display: inline-block;
	margin:30px 0;
    padding: 7px 20px;
	border-radius: 25px;
    text-decoration: none;
    color: #FFF;
    background-image: -webkit-linear-gradient(45deg, #FFC107 0%, #eb6100 100%);
    background-image: linear-gradient(45deg, #FFC107 0%, #eb6100 100%);
    transition: .4s;
}
.btn1:hover {
    background-image: -webkit-linear-gradient(45deg, #eb6100 0%, #FFC107 100%);
    background-image: linear-gradient(45deg, #eb6100 0%, #FFC107 100%);
}

/*  テーブル */
.table1_bg{
	background-color: #fff;
	background-image: -webkit-gradient(linear, 0 0, 100% 100%,color-stop(.25, #eee), color-stop(.25, transparent),color-stop(.5, transparent), color-stop(.5, #eee),color-stop(.75, #eee), color-stop(.75, transparent),to(transparent));
	-webkit-background-size: 7px 7px;
	margin:30px 0;
	padding:10px;
}
.table1{
	width:100%;
	text-align: left;
	font-weight:bold;
	overflow: auto;
	white-space: nowrap;
	background:#fff;
	border:solid 1px #272525;
}
.table1::-webkit-scrollbar{
	 height: 5px;
}
.table1::-webkit-scrollbar-track{
	background: #f1f1f1;
}
.table1::-webkit-scrollbar-thumb {
	background: #8e8e8e;
	border-radius: 5px;
}
.table1 tbody th{
	width:30%;
	background:#eee;
	color:#272525;
	padding:10px;
	border-collapse: collapse;
	border:solid 1px #272525;
}
.table1 td{
	padding:10px;
	border:solid 1px #272525;
}

/*  吹き出し
---------------------------------------------------------- */
.balloon1-top {
	position: relative;
	display: inline-block;
 	margin: 5px 0 20px 0;
	padding: 7px 10px;
	min-width: 90%;
 	max-width: 100%;
 	color: #fff;
	font-size: 24px;
	font-weight:bold;
	background: #172A88;
}
.balloon1-top:before{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
 	margin-left: -10px;
	border: 10px solid transparent;
	border-top: 10px solid #172A88;
}
.balloon1-top p {
	margin: 0;
	padding: 0;
}

/* 点滅 */
.blinking{
	-webkit-animation:blink 0.8s ease-in-out infinite alternate;
    -moz-animation:blink 0.8s ease-in-out infinite alternate;
    animation:blink 0.8s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

/* フッター */
.footer{
	background:#0F4342;
	text-align:center;
	padding:15px 0px;
	background-repeat:repeat;
	color:#fff;
}