@charset "utf-8";
/* CSS Document */
/* --------------------------------------------------------------------------------------
 文字関連
--------------------------------------------------------------------------------------- */
body {
  font-family: "Helvetica Neue",
			Arial,
			"Hiragino Kaku Gothic ProN",
			"Hiragino Sans",
			Meiryo,
			sans-serif;
}

a:link {color:#000;} 
a:visited {color:#004DA0;} 
a:hover {color:#C9391C;} 
a:active {color:#C9391C;} 


.M_PLUS_M {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 400;
}
.M_PLUS_B {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 700;
}

/* --------------------------------------------------------------------------------------
 電話番号リンクをスマホのみ有効
--------------------------------------------------------------------------------------- */
a[href*="tel:"] {
	color: #000;
}
@media (min-width: 769px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}

/* --------------------------------------------------------------------------------------
 改行・表示非表示
--------------------------------------------------------------------------------------- */
/* スマホ */
@media screen and (max-width: 768px) {
	.sp_none{ display:none;} 
}
/* PC */
@media screen and (min-width: 769px) {
	.pc_none{ display:none;}
}


/* --------------------------------------------------------------------------------------
 共通タイトル
--------------------------------------------------------------------------------------- */
h2.contents_title{
	position: relative;
	padding:0 0 1.2rem 1rem;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
}
h2.contents_title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #004DA0, #004DA0 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #004DA0, #004DA0 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

h3.contents_title01{
	position: relative;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 700;
	font-size: 1.3rem;
	color: #009744;
}

h3.contents_title02{
	position: relative;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 700;
	font-size: 1.3rem;
	color: #004DA0;
}

h3.midashi{ font-weight: bold; margin-top: 24px; }
h3.midashi:before {content: "＜"; padding-right: 5px;}
h3.midashi:after {content:"＞"; padding-left: 5px;}

h3.midashi02{ font-weight: bold; margin-top: 24px; }

/* --------------------------------------------------------------------------------------
 リスト装飾
--------------------------------------------------------------------------------------- */
ul.list01{
	margin: 20px 0 0 1rem;
}
ul.list01 li {  position: relative; margin-top: 20px; }
ul.list01 li::after {
  display: block;
  content: '';
  position: absolute;
  top: .3em;
  left: -1em;
  width: 10px;
  height: 10px;
  background-color: #666;
  border-radius: 100%;
}

ul.list01 li .midashi{}
ul.list01 li .txt{ margin-top: 8px;}

ol.maru_list{
	counter-reset: list-counter;
	margin-top: 16px;
}

ol.maru_list li {
  line-height: 1.5;
  margin: 6px 0;
  padding-left: 30px;
  position: relative;
}
ol.maru_list li:before {
  content: counter(list-counter);
  counter-increment: list-counter;
  border: 1px solid;
  box-sizing: border-box;
  border-radius: 50%;
  height: 22px;
  width: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 85%;
}


/* --------------------------------------------------------------------------------------
 ヘッダー
--------------------------------------------------------------------------------------- */
header{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}

header .inner{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

header h1{
	width: 65%;
	max-width: 448px;
	overflow: hidden;
	line-height: 1.5;
	margin: 28px 0 0 5px;
}
	
header h1 a{
	display: block;
	width: 100%;
	height: 0;
	padding-top: 13.16%;
	background:url("../common/header/logo01.png") no-repeat left top;
	background-size: 100% auto;
	overflow: hidden;	
}

/* ヘッダー右ナビ　////////////////////////////////////////// */
header nav.h_nav{
	width: 230px;
	background: url("../common/header/logo02.png") no-repeat right bottom;
}

header nav.h_nav ul{ margin-top: 50px;}
header nav.h_nav ul li a{
	border-bottom: 2px solid #0068B6;
	padding: 0 4px 2px 4px;
}
header nav.h_nav ul li a:hover{
	color: #999;
	border-bottom: 2px solid #C9391C;
}


/* SP ///////////////////////////////////////////////////// */
@media screen and (max-width: 768px) {
header nav.h_nav{
	width: 23%;
	background:none;
	margin-top: 15px;
}
header nav.h_nav ul{ margin-top: 20px;}
	
header nav.h_nav ul li a{
	border: 1px solid #000;
	padding: 4px;
	border-radius: 6px;
	font-size: 12px;
}
header nav.h_nav ul li a:hover{
	border-bottom: 1px solid #000;
}
}


/* --------------------------------------------------------------------------------------
 フッター
--------------------------------------------------------------------------------------- */
footer{
	width: 100%;
	max-width: 1200px;
	position: relative;
	margin:80px auto 0 auto;
	border-top: 1px solid #ccc;
	padding: 30px 0 80px 0;
	font-size: 13px;
}

footer .policy{text-align: center; padding-bottom: 20px;}
footer .policy a:hover{color: #999;}
footer .copy{text-align: center;}

/* --------------------------------------------------------------------------------------
 ページトップに戻る
--------------------------------------------------------------------------------------- */
#page_top{
width: 100px;
height: 40px;
position: fixed;
right: 10px;
bottom: 30px;
background: #C9391C;
	z-index: 10;
}

#page_top:hover{ background: #F29600; }
#page_top a{
position: relative;
display: block;
width: 100px;
height: 40px;
text-decoration: none;
}

#page_top a::after{
content: '↑ PAGE TOP';
font-size: 14px;
font-weight: bold;
color: #fff;
position: absolute;
top: 10px;
bottom: 0;
right: 0;
left: 0;
margin: auto;
text-align: center;
}}








