@charset "utf-8";
/*=======================================================================

共通レイアウト(layout.css)

========================================================================*/
@font-face {
  font-family: "YuGothic M";
  src: local(Yu Gothic Medium),
       local(Yu Gothic);
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック Medium", "YuGothic M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, "メイリオ", Meiryo, sans-serif;
  font-weight:normal;
  font-feature-settings: "palt" 1;
  font-kerning: auto;
	font-size: 16px;
	font-size: 1.6rem;
  line-height: 1.75;
}

/*----------------------------------------------------------------------
 Links
----------------------------------------------------------------------*/
a:link {
	color: #008cd6;
	text-decoration: none;
}
a:visited {
	color: #008cd6;
	text-decoration: none;
}
a:hover {
	color: #008cd6;
	text-decoration: underline;
}
a:active {
	color: #008cd6;
	text-decoration: none;
}

/*----------------------------------------------------------------------
 Header
----------------------------------------------------------------------*/
#mobile-menu .logo {
  display: none;
}
#header {
	width: 100%;
  min-height: 300px;
  background: #fff url(../images/bg_header.jpg) center top no-repeat;
  background-size: cover;
}
#header .inner {
	width: 1200px;
	margin: 0 auto;
}
#header h1 {
	float: left;
  padding: 20px;
	font-size: 13px;
	font-size: 1.3rem;
  text-align: center;
}
#header h1 a {
  color: #fff !important;
  text-decoration: none !important;
}
#header h1 img {
  margin-top: 5px;
}

/*----------------------------------------------------------------------
 Nav
----------------------------------------------------------------------*/
.slicknav_menu {
	display: none;
}

#menu {
  padding: 25px 20px 20px;
}
#menu ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#menu li {
	font-size: 16px;
	font-size: 1.6rem;
}
#menu li a {
  margin: 0 15px;
  padding: 0 5px;
  color: #fff;
  /*text-decoration: none;*/
}
#menu li a:hover {
  color: #fff;
}
#menu li.contact {
  display: inline-block;
}
#menu li.contact a {
  display: block;
  margin-left: 15px;
  padding: 5px 20px;
  background-color: #00a0e3;
  border-radius: 50px;
  color: #fff;
  background-size: 200% 100%;
  background-image: -webkit-linear-gradient(left, transparent 50%, rgba(15, 105, 180, 1) 50%);
  background-image: linear-gradient(to right, transparent 50%, rgba(15, 105, 180, 1) 50%);
  -webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
  transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
  text-decoration: none;
}
#menu li.contact a:hover {
  background-color: #0e6ab7;
  background-position: -100% 100%;
  color: #fff;
}

/* ホバーエフェクト用 */
#menu li.hover a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
#menu li.hover a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
#menu li.hover a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

#menu li.active a {
  position: relative;
  display: inline-block;
  color: #66ccff;
  text-decoration: none;
}
#menu li.active a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #66ccff;
}

/*----------------------------------------------------------------------
 Contents 
----------------------------------------------------------------------*/
#content {
  width: 100%;
}
#content .bgccc {
  background-color: #f0f0f0;
  text-shadow: 0 1px 0 rgba(255,255,255,0.7);
}

#content .wrap {
  width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}
#content .wrap.w1200 {
  width: 1200px;
}
#content .wrap.w900 {
  width: 900px;
}
#content .wrap.w800 {
  width: 800px;
}
#content .wrap.w700 {
  width: 700px;
}
#content .wrap.w600 {
  width: 600px;
}
#content .wrap.w500 {
  width: 500px;
}

/*----------------------------------------------------------------------
 Footer
----------------------------------------------------------------------*/
#footer {
  background: url(../images/bg_footer.jpg);
}
@media only screen and (-webkit-min-device-pixel-ratio : 2),only screen and (min-device-pixel-ratio : 2){
  #footer {
    background: url(../images/bg_footer_sp.jpg);
    -webkit-background-size: 640px 480px;
    background-size: 640px 480px;
  }
}
#footer .contactArea {
	position:relative;
  background: url(../images/bg_contact.jpg) center 0 no-repeat;
  width: 100%;
  height: 200px;
  background-size: cover;
}
#footer .contactArea .bgBlack {
	height: 100%;
  background-color: rgba(0,0,0,0.6);
}
#footer .contactArea .contactLink {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  color: #fff;
  text-align: center;
}
.contactBtn {
  display: inline-block;
}
.contactBtn a {
  display: block;
  margin-top: 5px;
  padding: 20px 100px;
  background-color: #00a0e3;
  color: #fff;
  background-size: 200% 100%;
  background-image: -webkit-linear-gradient(left, transparent 50%, rgba(15, 105, 180, 1) 50%);
  background-image: linear-gradient(to right, transparent 50%, rgba(15, 105, 180, 1) 50%);
  -webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
  transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
  text-decoration: none;
}
.contactBtn a:hover {
  background-color: #0e6ab7;
  background-position: -100% 100%;
}
.contactBtn img {
  margin-bottom: 3px;
  vertical-align: middle;
}
#footer .inner {
  width: 1200px;
  margin: 0 auto;
}
#footer .footerLogo {
	float: left;
	width: 280px;
  margin: 20px 0;
	padding: 10px 0;
  border-right: 1px solid #555;
	color: #fff;
}
#footer .logo img {
  margin-top: 5px;
}
#footer .logo a {
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  text-decoration: none;
}
#footer p.tel {
  margin-top: 10px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.footerNav {
	float: right;
	width: 920px;
  margin: 55px 0 0;
  padding: 15px 0 15px 50px;
  line-height: 1.3;
}
.footerNav a {
  color: #f0f0f0;
  text-decoration: none;
}
/*
.footerNav .column1,
.footerNav .column2 {
  margin-bottom: 30px;
}
.footerNav dt {
  margin-bottom: 5px;
}
.footerNav .column1 dt {
  display: inline-block;
	margin-right: 15px;
	padding-left: 20px;
}
.footerNav .column1 dt:first-child {
	padding-left: 2px;
}
.footerNav .column1 dt+dt {
  border-left: 1px solid #fff;
}
.footerNav .column1 dt.sp {
  display: none;
}
*/
.footerNav ul {
  display: -webkit-box;
  display: flex;
　-webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}
.footerNav li {
  /*display: inline-block;*/
  margin-bottom: 5px;
	margin-left: 16px;
	padding-right: 16px;
  border-right: 1px solid #fff;
  text-align: center;
}
.footerNav li:last-child {
  border-right: none;
}
.footerNav li a.osmo {
  display: block;
  margin-bottom: 2px;
  padding: 5px 10px;
  background-color: #0d6ebd;
  border-radius: 1px;
  color: #fff;
}
.footerNav li a.osmo:hover {
  opacity: 0.7;
}
.footerNav a {
  transition: .3s;
}
.footerNav a:hover {
  color: #999;
}
.copyright {
  min-height: 70px;
  padding: 25px 0 0;
  background-color: rgba(0,0,0,0.3);
  color: #fff;
	font-size: 14px;
	font-size: 1.4rem;
	text-align: center;
}

/*----------------------------------------------------------------------
 Pagetop 
----------------------------------------------------------------------*/
.pagetop {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 100;
}
.pagetop a {
	display: block;
	padding: 30px 0 0 2px;
	width: 70px;
	height: 70px;
	background-color: #0f69b4;
	filter: alpha(opacity=90);
	-moz-opacity: 0.90;
	opacity: 0.90;
	zoom: 1.0;
	text-align: center;
	color: #fff;
	text-decoration: none;
}
.pagetop a:hover {
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}
.pagetop img {
	padding: 0 0 3px;
}
span.arrow {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
span.arrow:after {
	content: '';
	position: absolute;
	top: 5px;
	left: 25px;
	display: block;
	width: 14px;
	height: 14px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*----------------------------------------------------------------------
 TopicPath
----------------------------------------------------------------------*/
#content .topicPath {
  padding: 7px 0;
  background-color: #ededed;
}
#content .topicPath ul {
  width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#content .topicPath ul > li {
	display: inline-block;
	font-size: 12px;
  font-size: 1.2rem;
}
#content .topicPath ul > .active {
	color: #5f5f5f;
}
#content .topicPath ul > li + li:before {
  padding: 0 5px;
  color: #999;
  content: ">";
}

/*----------------------------------------------------------------------
 Clearfix
----------------------------------------------------------------------*/
#header .inner:after,
#topicPath:after {
    content: "";
    display: block;
    clear: both;
}