/* HTML初期化 */
body {
	line-height: 1;
	margin: 0;
}

h1, h2, h3, h4, h5, h6, p, dl, dt, dd, em, form {
	margin: 0;
	padding: 0;
	font-weight:normal;
	font-style:normal;
}

/* HTML5用 */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

fieldset {
	border:0;
	margin: 0;
	padding: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
	border: 0;
}

li {
	padding: 0;
	margin: 0;
}

input, select {
	vertical-align: middle;
}

/* tableタグ*/
th,td{
	padding:0;
}

caption{
	text-align:left;
} 

a {
	outline:0;
	border:0;
	transition-color: 0.3s ease;
	transition: background-color 0.3s ease;
	transition: opacity 0.3s ease;
}

@media screen and (max-width: 768px) {
	a {
		transition:none;
	}
}

img {
	border:0;
}

/* はみ出し対策 */
html {
	-webkit-text-size-adjust: none
}

/*============================================
基本CSS
===========================================*/
html,body {
	width:100%;
	background-color: #EFEFEF;
}
body {
	position:relative;
	font-family:'Roboto', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	min-width:1080px;
	max-width: 1600px;
	margin: auto;
	/* margin-top:85px; */
	/* transition: all 0.3s; */
	box-shadow: 0 0 6px rgba(0,0,0,0.2);
	background-color: #FFF;
}

/*====================================
ヘッダー
====================================*/
header {
	height:85px;
	position:fixed;
	top:0;
	left:50%;
	transform: translateX(-50%);
	width:100%;
	min-width:1080px;
	max-width: 1600px;
	z-index:1000;
	background:#FFF;
	opacity: 0;
	/* transition: height 0.3s ease; */
}

@media screen and (max-width: 1080px) {
	header {
		left:0;
		transform: translateX(0);
	}
}

#headerInner {
	width: 100%;
	max-width:1250px;
	margin:auto;
	position:relative;
	z-index:1;
}

header img {
	width:100%;
}

/* ハートロゴ */
header h1 {
	width:200px;
	padding:15px;
	padding-left:20px;
	transition: width 0.3s;
}

header h1 img {
	width: 200px;
}

@media screen and (max-width: 1200px) {
	header h1 {
		width:180px;
		padding-top: 18px;
	}
	header h1 img {
		width: 180px;
	}
}

header a:hover {
	opacity:0.7;
}


/* メインナビゲーション */
header nav {
	position:absolute;
	top:20px;
	right:10px;
	/* transition: all 0.3s; */
	z-index:1;
}

header nav ul {
	padding-top:10px;
	padding-right:415px;
	/* transition: all 0.3s; */
}

@media screen and (max-width: 1200px) {
	header nav ul {
		padding-right:355px;
	}
}

header nav li {
	float:left;
	padding-left:26px;
	position:relative;
}

@media screen and (max-width: 1200px) {
	header nav li {
		padding-left:20px;
	}
}

/* 下層ページのメニュー下の▲ */
header nav li.Now i {
	position:absolute;
	bottom:-62px;
	left:55%;
	font-size:30px;
	color:#00A0E2;
	/* transition: all 0.3s; */
}


header nav li a {
	font-size:0.85em;
	text-decoration:none;
	color:#666;
	display:block;
	padding-bottom:7px;
	border-bottom:3px solid #CCC;
	letter-spacing:0.05em;
}

header nav li a:hover {
	color:#222;
	border-bottom:3px solid #999;
}

header nav li.Now a,
header nav li.Now a:hover {
	color:#222;
	border-bottom:3px solid #00A0E2;
}

/* ヘッダーTEL */
header address {
	position:absolute;
	top:-5px;
	right:140px;
	width:250px;
	/* transition: width 0.3s; */
}

@media screen and (max-width: 1200px) {
	header address {
		top:0;
		right:140px;
		width:200px;
	}
}

/* ヘッダーTikTok */
header .tiktok_logo {
	position:absolute;
	top:-5px;
	right:0;
	width:120px;
	/* transition: width 0.3s; */
}

header .tiktok_logo img {
	width: 120px;
}

/* スクロール時のヘッダー */
header.scrFix {
	height:60px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

header.scrFix h1 {
	width:150px;
	padding:10px;
}

header.scrFix h1 img {
	width: 150px;
}

header.scrFix nav {
	top:10px;
	/* transition: all 0.3s; */
}

header.scrFix nav li.Now i  {
	bottom:-30px;
}

header.scrFix nav ul {
	padding-top:10px;
	padding-right:315px;
	/* transition: all 0.3s; */
}

header.scrFix address {
	position:absolute;
	top:0;
	right:110px;
	width:180px;
}

header.scrFix .tiktok_logo {
	top:0;
	width:94px;
}

header.scrFix .tiktok_logo img {
	width:94px;
}

 /*====================================
サブメニュー
 ====================================*/
#SubMenu {
	background:#00A0E2;
	padding:15px;
	padding-bottom:13px;
	padding-top:12px;
	overflow:hidden;
	clear:both;
	top:85px;
	position:absolute;
	width:100%;
	box-sizing:border-box;
	z-index:10000;
	/* transition: all 0.3s; */
}

#SubMenu ul {
	max-width:1200px;
	margin:auto;
	overflow:hidden;
}

#SubMenu li {
	float:left;
	padding-right:20px;
	padding-left:20px;
	padding-top:3px;
	border-left:1px dotted #FFF;
	line-height:1;
}

#SubMenu li:first-child {
	border:0;
	padding-left:0;
}

#SubMenu li a {
	color:#FFF;
	text-decoration:none;
	font-size:0.85em;
	padding-bottom:3px;
	display:inline-block;
	border-bottom:2px solid #00A0E2;
}

#SubMenu li.Now a {
	border-bottom:2px solid #FFF;
}

#SubMenu li a:hover {
	border-bottom:2px solid #FFF;
}

#SubMenu li.Now a:hover {
	opacity:1;
}

/* サブメニュー固定時 */
#SubMenu.scrFix {
	padding-top:7px;
	padding-bottom:8px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

 /*====================================
 コンテンツ基本設定
 ====================================*/
.ContBox {
	clear:both;
	position:relative;
	overflow:hidden;
	padding-left:15px;
	padding-right:15px;
	min-width:900px;
	max-width:1200px;
	margin:auto;
	padding-top:30px;
	padding-bottom:30px;
	box-sizing: border-box;
}

/* 見出し */
.ContBox h3 {
	font-size:1.2em;
	font-weight:400;
	line-height:24px;
}

.ContBox h3 em {
	font-style:normal;
	padding-right:10px;
	letter-spacing:0.1em;
	border-right:1px solid #CCC;
}

.ContBox h3 strong {
	font-weight:400;
	padding-left:10px;
	font-size:0.65em;
	letter-spacing:0.05em;
	position:relative;
	top:-2px;
	display:inline-block;
}

.ContBox p {
	font-size:0.85em;
	line-height:1.7;
}

.ContBox p.small_text {
	font-size: 0.7em;
	padding-top: 1em;
}

/* 一覧はこちら */
.MoreList {
	position:absolute;
	right:15px;
	top:0;
	font-size:0.75em;
}

.MoreList a {
	text-decoration:none;
	opacity:0.7;
	color:#222;
}

.MoreList a i {
	padding-right:5px;
}

.MoreList a:hover {
	opacity:1;
}

/*====================================
スプラッシュスクリーン
====================================*/
.splash_screen {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #FFF;
	z-index: 100000;
}


/*====================================
フッターお知らせ
====================================*/
#NewsWrapper {
	background:#D2E9F9;
	position: relative;
}

#NewsWrapper h3 em {
	border:0;
}

#NewsWrapper .MoreList {
	position:absolute;
	right:inherit;
	left: 100px;
}

#NewsBox p {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
	
.NewsBox {
	overflow:hidden;
	padding-top:15px;
	font-size:0.8em;
	line-height:1.5;
	clear:both;
}

.NewsBox dl {
}

.NewsBox dl {
}

.NewsBox dt {
	width:17%;
	float:left;
	position:relative;
}

.NewsBox dt span {
	display:inline-block;
	padding-right:20px;
}

.NewsBox dt strong {
	background: #004081;
	color:#FFF;
	font-weight:400;
	font-size:0.75em;
	padding:2px;
	padding-left:5px;
	padding-right:5px;
	position:absolute;
	right:8%;
	top:-2px;
	width:60px;
	display:block;
	text-align:center;
	border-radius:3px;
}

.NewsBox dd {
	width:83%;
	float:right;
}

.NewsBox a {
	text-decoration:none;
	color:#222;
}

.NewsBox a:hover {
	 color:#008EDB;
 }
 
#FBWrapper {
padding-top: 10px;
padding-bottom: 10px;
border-bottom: 10px solid #D2E9F9;
clear: both;
overflow: hidden;
box-sizing: border-box;
width: 50%;
position: absolute;
right: 20px;
top:20px;
max-width: 500px;
}

/*
#FBInner {
max-width:1060px;
padding: 20px;
margin: auto;
overflow: auto;
}
*/

/*
#FBWrapperLeft {
max-width: 500px;
}
*/

#FBWrapperRight {
width: 49%;
float: right;
max-width: 500px;
} 

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style]{
    width: 100% !important;
}

#FBWrapper .MoreBtn {
padding-top: 10px;
width: 350px;
margin: auto;
}

#FBWrapper .MoreBtn a {
background: #00A0E2;
padding: 15px;
color: #FFF;
text-align: center;
display: block;
border-radius: 4px;
text-decoration: none;
font-size: 0.85em;
box-shadow:0 2px 0 rgba(0,160,226,0.3);
}

#FBWrapper .MoreBtn a:hover {
opacity: 0.7;
}

  /*====================================
 フッターサイトマップ
 ====================================*/
/* 左側サイトマップ */
#FooterSiteMap {
	width:76%;
	float:left;
	overflow:hidden;
}

.FooterSiteMapLeft {
	width:30%;
	float:left;
}

.FooterSiteMapCenter {
	width:30%;
	float:left;
	padding-left:5%;
}

.FooterSiteMapRight{
	width:30%;
	float:right;
}

#FooterSiteMap dl {
	padding-bottom:25px;
}

#FooterSiteMap dt {
	font-size:0.9em;
	border-bottom:1px dotted #CCC;
	padding-bottom:5px;
	margin-bottom:10px;
	line-height:1.5em;
	font-weight:700;
}

#FooterSiteMap dd a {
	color:#222;
	text-decoration:none;
	font-size:0.75em;
	line-height:2em;
}

#FooterSiteMap dd a i {
	color:#999;
	padding-right:5px;
	transition: all 0.3s;
}

#FooterSiteMap dd a:hover i {
	color:#2995CC;
}

#FooterSiteMap dd a:hover {
	color:#2995CC;
}

/* 右側ロゴエリア */
#FooterCompany {
	width:21%;
	float:right;
	text-align:center;
}

#FooterCompany h2 {
	width:100px;
	margin:auto;
}

#FooterCompany h3 {
	width:120px;
	margin:auto;
}

#FooterCompany h2 img,
#FooterCompany h3 img {
	width:100%;
}

#FooterCompany address {
	font-style:normal;
	font-size:0.8em;
	line-height:1.5;
	padding-top:10px;
	padding-bottom:10px;
}

#FooterCompanyLink {
	padding-bottom:20px;
}

#FooterCompanyLink a {
	display:block;
	border:1px solid #004081;
	padding:8px;
	text-align:center;
	color:#004081;
	text-decoration:none;
	font-size:0.8em;
	line-height:1.3;
}

#FooterCompanyLink a i {
	padding-right:5px;
}

#FooterCompanyLink a:hover {
	background:#004081;
	color:#FFF;
}

.ContFBArea {
	float:left;
}

.ContTWArea {
	float:right;
}

#FooterSNSArea {
	width:200px;
	position:relative;
	margin:auto;
	overflow:hidden;
}

 /*====================================
 フッター
 ====================================*/
footer {
	background:#004081;
	padding:20px;
	color:#FFF;
	position:relative;
	max-height:50px;
}

footer p {
	font-size:0.7em;
	text-align:center;
}

footer a {
	display:block;
	width:50px;
	height:50px;
	line-height:50px;
	color:#FFF;
	text-decoration:none;
	text-align:center;
	background:#2995CC;
	position:absolute;
	right:0;
	top:0;
	cursor:pointer;
	font-size:1em;
}
  
footer a:hover {
	background:#FFF;
	color:#2995CC;
	opacity:0.9;
}
