@charset "utf-8";
/* ********************************************************
	Common Format CSS
******************************************************** */

/*-------------------------------
  Font Set - Color
-------------------------------*/

@font-face {
  font-family: 'icomoon';
  src: url('../fonts/icomoon.eot');
  src: url('../fonts/icomoon.eot#iefix') format('embedded-opentype'),  url('../fonts/icomoon.ttf') format('truetype'),  url('../fonts/icomoon.woff') format('woff'),  url('../fonts/icomoon.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*-------------------------------
  common
-------------------------------*/
html, body {
  height: 100%;
}
body {
  -webkit-text-size-adjust: 100%;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
ul, ol {
  list-style: none;
}
a[href^="tel:"] {
  text-decoration: none;
}
a[href^="tel:"]:hover {
  cursor: default;
}

.showSP {
  display: block;
}
.showPC {
  display: none;
}
#container {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding-top: 40px;
  position: relative;
}
/*-------------------------------
  Header
-------------------------------*/
#pageHeader {
  background: #FFF;
  width: 100%;
  height: 40px;
  margin: 0 auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}
#headerInner {
  max-width: 640px;
  height: 40px;
  margin: 0 auto;
  position: relative;
}
#headerInner .logo{
  background: url(../images/common/img_logo.svg) left center no-repeat;
  background-size: contain;
  width: 70%;
  height: 40px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  margin-left: 10px;
}
#headerInner .logo img{
  width: 100%;
  max-height: 20px;
}
#navGlobal {
  width: 100%;
  position:absolute;
  top: 40px;
  right: 1000px;
  overflow-x: hidden;
}

#navGlobal .navGroup{
  width: 100%;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
#navGlobal.open .navGroup{
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#navOpen {
  appearance: none;
  -webkit-appearance: none;
  width: 40px;
  height: 40px;
  border: none;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  cursor: pointer;
}
#navGlobal .navGroup {
  width: 100%;
}
#navGlobal .navGroup ul>li {
  background: #666666;
  display: block;
}
#navGlobal .navGroup ul>li a,
#navGlobal .navGroup ul>li span{
  height: 40px;
  border-bottom: solid 1px #aaa;
  display: block;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: left;
  text-decoration: none;
  color: #FFF;
  font-size: 12px;
  line-height: 40px;
  position: relative;
}
#navGlobal .navGroup ul>li a:after,
#navGlobal .navGroup ul>li span:after{
  content: "";
  width: 0;
	height: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -5px;
}
#navGlobal .navGroup ul>li a:after{
	border-top: 5px solid transparent;
	border-left: 5px solid #FFF;
	border-bottom: 5px solid transparent;
}
#navGlobal .navGroup ul>li span:after{
  border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #FFF;
}
#navGlobal .navGroup ul>li .child li a{
  background: #e6e6e6;
  color: #666666;
}
#navGlobal .navGroup ul>li .child li a:after{
  border-top: 5px solid transparent;
	border-left: 5px solid #666666;
	border-bottom: 5px solid transparent;
}
#navGlobal .navGroup ul>li .child{
  display: none;
}
#navOpen {
  background: #FFF;
  width: 40px;
  height: 40px;
  display: block;
  border-left: 1px solid #999;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 7px;
  padding-top: 20px;
  box-sizing: border-box;
  }
  #navOpen span {
    width: 20px;
    height: 2px;
    display: block;
    background: #39b54a;
    position: absolute;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    top: 12px;
    left: 50%;
    margin-left: -10px;
    -webkit-transition: .2s;
    -ms-transition: .2s;
    transition: .2s;
  }
  #navOpen:before,
  #navOpen:after {
    display: block;
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #39b54a;
    left: 50%;
    margin: 0 0 0 -10px;
    -webkit-transition: .2s;
    -ms-transition: .2s;
    transition: .2s;
  }
  #navOpen:before {
    top: 6px;
  }
  #navOpen:after {
    bottom: 20px;
  }
  #navOpen.open span {
    opacity: 0;
  }
  #navOpen.open:before {
    top: 10px;
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
  #navOpen.open:after {
    bottom: 28px;
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
  }



/*-------------------------------
  Contents
-------------------------------*/
#contents {
  width: 100%;
}
#contentsInner {
  width: 100%;
}
/*-------------------------------
  Footer
-------------------------------*/
#pageFooter {
  position: relative;
}
#footerInner {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
#footerInner ul{
  margin-top: 40px;
  display: block;
  text-align: center;
  letter-spacing: -.4em;
}
#footerInner ul li{
  padding: 0 15px;
  margin-bottom: 5px;
  display: inline-block;
  letter-spacing: normal;
}
#footerInner ul li a{
  color: #666666;
  font-size: 10px;
  text-decoration: none;
}
#footerInner ul li+li{
  border-left: 1px solid #666666;
}
#footerInner ul li:nth-child(4){
  border-left:none;
}
#copyright {
  background: #8cc63f;
  height: 20px;
  color: #FFF;
  display: block;
  font-size: 9px;
  text-align: center;
  line-height: 20px;
}
#pageFooter .pageTop {
  position: fixed;
  bottom: 20px;
  right: 0;
}
#pageFooter .pageTop a {
  background: #666666;
  width: 40px;
  height: 40px;
  display: block;
  text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  position: relative;
}
#pageFooter .pageTop a:after{
      content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  
}
#pageFooter .pageTop a:hover {
}
