@charset "utf-8";
/* ********************************************************
	Common Format CSS
******************************************************** */

/*-------------------------------
  Font Set - Color
-------------------------------*/
@font-face {
	font-family: 'MyYuGothicM';
	font-weight: normal;
	src: local('YuGothic-Medium'), /* PostScript Name = localの正式な指定方法 */
	local('Yu Gothic Medium'),     /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
	local('YuGothic-Regular');     /* 游ゴシックMediumが存在しないWindows8.1用 */
}
@font-face {
	font-family: 'MyYuGothicM';
	font-weight: bold;
	src: local('YuGothic-Bold'), /* PostScript Name = localの正式な指定方法 */
	local('Yu Gothic');          /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
}

/*-------------------------------
  common
-------------------------------*/
html,body{
	height: 100%;
	color: #231815;
}
body {
  -webkit-text-size-adjust: 100%;
	font-family : MyYuGothicM,YuGothic,sans-serif;
	font-family: 'Titillium Web', sans-serif;
}
ul,ol{
	list-style: none;
}
a[href^="tel:"]{
	text-decoration: none;
}
a[href^="tel:"]:hover{
	cursor: default;
}
.textWrapping,
.textWrapping * {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.textWrapping pre {
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
	white-space: pre-wrap;
	word-wrap: break-word;
}
#container{
	width: 100%;
	margin: 0 auto;
}
#container .btn{
	background: #231815;
	padding: 18px;
	border: solid 2px #231815;
	border-radius: 60px;
	position: relative;
	overflow: hidden;
	display: block;
	z-index: 5;
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#container .btn:hover{
	color: #231815;
}
#container .btn:before{
	background: #fff;
	width: 0;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	content: "";
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#container .btn:hover:before{
	width: 100%;
}
.showPC{
	display: block;
}
.showSP{
	display: none;
}
.menuLi {
  cursor: pointer;
}
.pageTop {
  position: fixed;
  bottom: 10%;
  right: 5%;
  z-index: 999;
	display: none;
}
.pagerDiv {
	clear: both;
	padding-top: 80px;
	font-size: 14px;
	position: relative;
}
.pagerDiv li {
	display: inline-block;
	margin-left: 40px;
	position: relative;
}
.pagerDiv a {
  color: #231815;
  text-decoration: none;
  padding: 5px 10px;
}
.pagerDiv .prev:after {
  content: '';
  display: inline-block;
  position: absolute;
  height: 12px;
  top: 5px;
  right: -20px;
  border-left: 1px solid #231815;
}
.pagerDiv a:hover{
	background: #d6d6d6;
}

@media screen and (max-width:1024px){
	.showPC{
		display: block;
	}
	.showSP{
		display: none;
	}
	#container{
		width: 100%;
		min-width: 0;
		padding-top: 50px;
	}
}
/*ポートレイトで幅が413以下、もしくはランドスケープで幅が735以下（iPhone6Plusより小さいデバイス）*/
@media screen and (max-width: 1024px){
	.showSP{
		display: block;
	}
	.showPC{
		display: none;
	}
	#container{
		width: 100%;
		min-width: 0;
		padding-top: 50px;
	}
}
/*-------------------------------
  Header
-------------------------------*/
#pageHeader{
	width: 100%;
	height: 130px;
/*	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;*/
}
#pageHeader a {
	text-decoration: none;
}
#headerInner{
	margin-top: 30px;
	text-align: center;
	letter-spacing: -.4em;
}
#headerInner .logo{
	letter-spacing: normal;
	vertical-align: middle;
	clear: both;
	padding-top: 20px;
}
#headerInner .logo a{
	background: url(../images/common/logo.svg) center center no-repeat;
	height: 70px;
  background-size: 240px 70px;
  overflow: hidden;
	display: inline-block;
  white-space: nowrap;
  text-indent: 100%;
  width: 300px;
  text-align: center;
}
.searchArea {
	position: relative;
}
#headerInner .search {
	float: right;
  margin-right: 90px;
  border: none;
  border-radius: 10px;
  padding: 5px;
}
#headerInner .searchBtn {
	position: absolute;
  right: 55px;
  bottom: -25px;
	cursor: pointer;
}

#navGlobal .navGroup ul .searchLi {
	display: block;
}
@media screen and (max-width:1024px){
	#pageHeader ,#headerInner {
		width: 100%;
	}
	#pageHeader{
		height: auto;
	}
	#headerInner{
		width: auto;
		margin: 0 auto;
		padding: 10px;
		position: relative;
	}
}
/*ポートレイトで幅が413以下、もしくはランドスケープで幅が735以下（iPhone6Plusより小さいデバイス）*/
@media screen and (max-width: 735px){
	#pageHeader ,#headerInner {
		width: 100%;
	}
	#pageHeader{
		height: auto;
	}
	#headerInner{
		width: auto;
		margin: 0 auto;
		padding: 10px;
		position: relative;
	}
	#headerInner {
    padding: 0;
    height: 50px;
		background: #fff;
	}
}
/*-------------------------------
  navGlobal
-------------------------------*/
#navGlobal{
	width: auto;
	position: static;
	letter-spacing: normal;
	text-align: left;
	margin: 60px 0 0 60px;
}
#navGlobal .menu{
	display: none;
}
#navGlobal .navGroup ul{
	letter-spacing: -.40em;
	list-style: none;
}
#navGlobal .navGroup ul .PCNone{
		display: none;
}
#navGlobal .navGroup ul .borderNone{
		border-bottom: none;
}
#navGlobal .navGroup ul>li{
	margin-left: 20px;
	display: inline-block;
	box-sizing: border-box;
	letter-spacing: normal;
	vertical-align: middle;
}
#navGlobal .navGroup ul>li>a{
	display: block;
	color: #231815;
	font-size: 16px;
	padding: 1px 30px;
	text-decoration: none;
}

#navGlobal .navGroup ul>li .btn{
	margin-left: 40px;
	color: #fff;
	font-size: 13px;
}

#navGlobal .navGroup ul>li .btn:hover{
	color: #231815;
}
#navGlobal .navGroup ul .wait{
  font-size: 14px;
	color: #B3B3B3;
}
#navGlobal .navGroup ul li ,.hedDiv ul li{
	position: relative;
}
#navGlobal .navGroup ul li:before{
	content: '';
  display: inline-block;
  position: absolute;
  height: 15px;
  top: 1px;
  left: -10px;
  border-left: 1px solid #231815;
}

#navGlobal .navGroup ul .lastli:after{
	content: '';
  display: inline-block;
  position: absolute;
  height: 15px;
  top: 1px;
  left: 100px;
  border-left: 1px solid #231815;
}
.breadcrumb {
  margin: 0 auto;
  padding: 40px 0 0 60px;
	font-size: 14px;
	float: left;
}

.breadcrumb li{
  display: inline-block;
	position: relative;
}
.breadcrumb li+li {
	padding-left: 10px;
}
.breadcrumb li+li:before{
	content: '>';
	display: inline-block;
	position: absolute;
	top: -2px;
	left: 0px;
}

.breadcrumb a,.hedDiv a {
  color: #231815;
  text-decoration: none;
}

.navGroup a:hover{
	background: #d6d6d6;
}

#navGlobal{
	margin: 0;
}
#navGlobal .menu{
	width: 40px;
	height: 40px;
	display: inline-block;
	top: 14px;
	right: 5px;
}
#navGlobal .menu.open{
  top: 17px;
}
#navGlobal .navGroup{
	background: #CFF;
	display: none;
}
#navGlobal .navGroup ul>li{
	display: block;
	margin-left: 0px;
}

#navGlobal .navGroup ul{
	border-top: 1px solid #999;
}
#navGlobal {
	height: 0;
  width: 100%;
  position: absolute;
  top: 570px;
  left: 0;
  z-index: 9999;
}
#navGlobal .navGroup {
	background: #fff;
	width:1200px;
  margin: auto;
  border-bottom: 1px solid #999;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
}

#navGlobal .navGroup ul li{
	width: 50%;
  height: 60px;
  padding-left: 10px;
  border-bottom: 1px dotted #999;
  position: relative;
  display: inline-block;
	text-align: left;
	color: #000;
	line-height: 57px;
}
#navGlobal .navGroup ul li a {
		position: relative;
		text-decoration: none;
}
.tittleArea {
  width: 100%;
}
.menu {
	width: 35px;
	height: 35px;
	display: block;
	position: relative;
	top: 10px;
	right: 10px;
}
.menu span {
	background: #e63082;
	width: 15px;
	height: 2px;
	margin: auto;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-transition: .1s;
	-o-transition: .1s;
	transition: .1s;
}
.menu span {
	width: 20px;
	height: 2px;
	display: block;
	background: #231815;
	position: absolute;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	top: 50%;
	left: 50%;
	margin-top: -1px;
	margin-left: -10px;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
.menu:before,
.menu:after {
	display: block;
	content: "";
	position: absolute;
	width: 20px;
	height: 2px;
	background: #231815;
	left: 50%;
	margin: 0 0 0 -10px;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
.menu:before {
	top: 10px;
}
.menu:after {
	bottom: 9px;
}
.menu.open span {
	opacity: 0;
}
.menu.open:before {
	top: 17px;
	-webkit-transform: rotateZ(45deg);
	-ms-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}
.menu.open:after {
	bottom: 21px;
	-webkit-transform: rotateZ(-45deg);
	-ms-transform: rotateZ(-45deg);
	transform: rotateZ(-45deg);
}
.liBtn {
	width: 70%;
	margin-top: 25px;
}
#navGlobal .navGroup ul>li .btn{
	text-align: center;
}
#navGlobal .navGroup ul>li a:after {
	content: "";
	position: absolute;
	display: block;
	width: 15px;
	height: 15px;
	border-right: 1px solid #231815;
	border-top: 1px solid #231815;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: -5px;
	bottom: 0;
	margin: auto;
	right: 30px;
}
#navGlobal .navGroup .liBtn a:after {
	width: 0px;
	height: 0px;
}

#navGlobal .navGroup ul li:before {
	display: none;
}

#navGlobal .navGroup ul li:last-child:after{
	display: none;
}
#navGlobal .navGroup ul .lastli:after{
	display: none;
}
.navDiv {
  position: relative;
}
.navInnerDiv {
	background: #fff;
	background-color: rgba(255,255,255,0.7);
	width: 100%;
  min-width: 1200px;
	top: 0px;
  left: 0;
}
.fixed {
  position: fixed;
}
.tittleArea{
  width: 1200px;
	margin: 0 auto;
}
.tittleArea_mb{
  margin-bottom: 25px;
}
.menuWrap02 {
  display: none!important;
}
/*ポートレイトで幅が413以下、もしくはランドスケープで幅が735以下（iPhone6Plusより小さいデバイス）*/
@media screen and (max-width: 1024px){

	#navGlobal{
		margin: 60px 0 0 0px;
	}
	#navGlobal .menu{
		width: 40px;
		height: 40px;
		display: block;
		position: fixed;
		top: 12px;
    right: 5px;
		background: none;
	}
	#navGlobal .navGroup{
		background: #CFF;
		display: none;
	}
	#navGlobal .navGroup ul>li{
		display: block;
		margin-left: 0px;
	}

	#navGlobal .navGroup ul{
		border-top: 1px solid #999;
	}
	#navGlobal {
		height: 0;
		width: 100%;
		position: fixed;
		top: -60px;
		left: 0;
		z-index: 9999;
	}
	#navGlobal .navGroup {
		background: #fff;
		width: 100%;
		height: 100vh;
		margin-left: 0px;
		border-bottom: 1px solid #999;
		display: none;
		overflow: scroll;
		position: relative;
		left: 0;
	}

	#navGlobal .navGroup ul li{
		width: 100%;
		height: 50px;
		padding-left: 0px;
		border-bottom: 1px dotted #999;
		position: relative;
		display: block;
		text-align: left;
		color: #000;
		line-height: 50px;
	}
	#navGlobal .navGroup ul li a {
			position: relative;
			text-decoration: none;
	}
	#navGlobal .navGroup ul .PCNone{
			display: block;
	}
	#navGlobal .navGroup ul .borderNone{
			border-bottom: 1px dotted #999;
	}
  .navInnerDiv {
    min-width: auto;
  }
	.menu {
		width: 35px;
		height: 35px;
		display: block;
		background: #fff;
		position: relative;
		top: 10px;
		right: 10px;
	}
	.menu span {
		background: #e63082;
		width: 15px;
		height: 2px;
		margin: auto;
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		-webkit-transition: .1s;
		-o-transition: .1s;
		transition: .1s;
	}
	.menu span {
		width: 20px;
		height: 2px;
		display: block;
		background: #231815;
		position: absolute;
		text-indent: 100%;
		overflow: hidden;
		white-space: nowrap;
		top: 50%;
		left: 50%;
		margin-top: -1px;
		margin-left: -10px;
		-webkit-transition: .2s;
		-o-transition: .2s;
		transition: .2s;
	}
	.menu:before,
	.menu:after {
		display: block;
		content: "";
		position: absolute;
		width: 20px;
		height: 2px;
		background: #231815;
		left: 50%;
		margin: 0 0 0 -10px;
		-webkit-transition: .2s;
		-o-transition: .2s;
		transition: .2s;
	}
	.menu:before {
		top: 10px;
	}
	.menu:after {
		bottom: 9px;
	}
	.menu.open span {
		opacity: 0;
	}
	.menu.open:before {
		top: 17px;
		-webkit-transform: rotateZ(45deg);
		-ms-transform: rotateZ(45deg);
		transform: rotateZ(45deg);
	}
	.menu.open:after {
		bottom: 21px;
		-webkit-transform: rotateZ(-45deg);
		-ms-transform: rotateZ(-45deg);
		transform: rotateZ(-45deg);
	}
	.liBtn {
    width: 70%;
		margin-top: 25px;
	}
	#navGlobal .navGroup ul>li .btn{
    text-align: center;
	}
	#navGlobal .navGroup ul>li a:after {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    border-right: 1px solid #231815;
    border-top: 1px solid #231815;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -5px;
    bottom: 0;
    margin: auto;
    right: 30px;
	}
	#navGlobal .navGroup .liBtn a:after {
		width: 0px;
		height: 0px;
	}

	#navGlobal .navGroup ul li:before {
		display: none;
	}

	#navGlobal .navGroup ul li:last-child:after{
		display: none;
	}
	#navGlobal .navGroup ul .lastli:after{
		display: none;
	}
	.tittleArea {
    width: 100%;
    padding-bottom: 25px;
	}
	.linkMenu {
    text-align: center;
     margin-right: 0px !important;
	}
	.linkMenu li {
    width: 70px !important;
    margin: 10px;
	}
  .menuWrap02 {
    display: block!important;
    position: absolute;
    top: 35px;
    right: 10px;
    cursor: pointer;
  }
  #navGlobal .menuWrap02 .menu.open {
    margin-top: -35px;
  }
}
/*-------------------------------
  Contents
-------------------------------*/
#contents{
}
#container {
	min-width: 0px;
}
#contentsInner{
}
/*ポートレイトで幅が413以下、もしくはランドスケープで幅が735以下（iPhone6Plusより小さいデバイス）*/
@media screen and (max-aspect-ratio: 9/10) and (max-width: 413px),screen and (min-aspect-ratio: 1/1) and (max-width: 735px){
}
/*-------------------------------
  Footer
-------------------------------*/
#pageFooter{
	width: 100%;
	background: #f2f2f2;
	margin-top: 100px;
  min-width: 1200px;
	clear: both;
}
#footerInner{
	width: 1200px;;
	margin: 0 auto;
	padding: 20px 0;
	position: relative;
	margin-bottom: 20px;
}
.navFooter {
	clear: both;
}

#footerInner .navFooter ul li{
	letter-spacing: normal;
	vertical-align: middle;
	position: relative;
}

#footerInner .navFooter ul .wait{
	color: #B3B3B3;
	font-size: 14px;
}

#footerInner .navFooter .iconNavi li+li{
	margin-left: 0px;
}
.navTittleP {
	font-size: 18px;
	padding-bottom: 10px;
	border-bottom: 2px solid #231815;
}
#footerInner .navFooter ul li{
	padding:15px 0 0 0;
}
#footerInner .navFooter ul li a{
	color: #231815;
	text-decoration: none;
	font-size: 16px;
}
.navMenu {
	width: 330px;
	vertical-align: top;
	display: inline-block;
	margin-left: 50px;
}
#footerInner .navFooter ul {

}
#footerInner .navFooter .iconNavi li{
	display: inline-block;
	margin-right: 25px;
}
#footerInner .navFooter .btn{
	font-size: 14px;
}
#copyright{
	padding-top: 100px;
	display: block;
	color: #231815;
	font-size: 12px;
}
#copyright img{
	margin-right: 20px;
}
#copyright .fm802{
	margin:0 10px;
}
#copyright p{
	display: inline-block;
}

.pageTop a{
	background: url(../images/common/TOPscroll.png) center center no-repeat;
	background-size: 64px;
	width: 64px;
	height: 64px;
	display: block;
	position: relative;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
#pageFooter .pageTop a:hover{
}
.navFooter a:hover{
	background: #d6d6d6;
}
.iconNavi a:hover{
	background: none;
}

.compDiv p{
	padding-top: 15px;
}
.copyRight {
  text-align: center;
  background: #333333;
  padding: 10px 0;
  color: #fff;
}
@media screen and (max-width:1024px){
	#pageFooter {
    margin-top: 0px;
    min-width: auto;
	}
	#footerInner{
		width: auto;
		padding: 10px 0;
	}
	#footerInner .navFooter ul li{
		display: block;
		padding: 0;
	}
	#footerInner .navFooter ul li+li{
		margin-left: 0;
	}
	#footerInner .navFooter ul li{
    border-bottom: 1px #231815 dotted;
	}

	#footerInner .navFooter .iconNavi li{
    border-bottom: none;
    margin-right: 0;
	}

	#footerInner .navFooter ul li a{
		display: block;
		padding: 15px;
	}
	#pageFooter .pageTop{
    z-index: 9999;
	}
	#footerInner .navFooter .btn {
    width: 70%;
    display: inline-block;
		border: none;
		margin:15px 0 5px 0;
  }
	#footerInner .navFooter ul {
    float: none;
		margin-left: 0px;
		text-align: center;
	}
	#footerInner .navFooter ul li:before {
		display: none;
	}
	#footerInner .navFooter ul li:last-child::after {
		display: none;
	}
	#footerInner .navFooter .iconNavi li {
    display: inline-block;
    width: 15%;
	}
	#footerInner .navFooter .iconNavi li a{
		border: none;
	}
	#footerInner .navFooter .iconNavi {
    float: none;
    margin-right: 0px;
	}
	#footerInner .navFooter .iconNavi li:before {
    top: 15px;
	}
	#footerInner .navFooter .iconNavi li:last-child::after {
    top: 15px;
	}
	#copyright {
    padding: 20px 10px;
		text-align: center;
	}
	#copyright .fm802 {
		margin: 0;
	}
	#copyright img {
    margin-right: 0px;
		margin-left: 10px;
	}
	#copyright p {
    margin: 10px 0;
	}
	.navMenu {
    width: 100%;
    margin-left: 0px;
	}
	.pageTop {
    margin: 0 30px 40px 0;
	}
	.navTittleP {
    padding: 20px;
	}
	.compDiv {
    padding: 10px;
	}
  .tittleArea_mb {
    margin-bottom: 0px;
  }
}

@media screen and (max-width:450px){
	.tittleArea {
    padding-bottom: 0px;
	}
  .pageTop a {
    background-size: 34px;
    width: 34px;
    height: 34px;
  }
  .pageTop {
    margin: 0;
  }
	.wp-pagenavi .pages {
		display: block;
		margin-bottom: 15px;
	}
	.wp-pagenavi a, .wp-pagenavi span {
		font-size: 14px;
    text-decoration: none;
    border: 1px solid #BFBFBF;
    padding: 3px 5px;
    margin: 2px;
	}

}
