@charset "utf-8";
/* CSS Document */
@media screen and (max-width:750px){
  .header-contact-tel-num {
    font-size: 1.8rem;
    margin-right: 10px;
  }
  .header-contact-time {
    font-size: 0.7rem;
    letter-spacing: .1em;
    line-height: 1.3em;
  }
}

@media screen and (max-width:640px){
/*******************
shared -sp
 +00 common
 +01 header
 +02 catch
 +03 main
 +04 footer
 +05 block style
********************/
/*-------------------------------------------
 00 common
-----------------------------------------------*/

.ttl {
  background-color: #eeeeee;
  box-sizing: border-box;
  border-left: 4px solid #317fc7;
  margin: 0 auto;
  color: #010101;
  font-size: 1.35em;
  font-weight: bold;
  padding: .45em .7em;
}
.bg-str {
  background: url(../img/bg_str.png) repeat top center;
}



/*-------------------------------------------
 01 header
-----------------------------------------------*/
header {
  padding-bottom: 2%;
}
header .header-catch p {
  font-size: .7rem;
  padding: 2px 10px;
}
header .header-item {
  padding: 2% 3.125%;
  position: relative;
}
.header-item-logo {
  width: 60%;
}
.header-contact {
  display: none;
}
.header-contact-mail a {
  background-color: #317fc7;
  box-sizing: border-box;  
  color: #fff;
  display: block;
  font-weight: bold;
  font-size: 1.07rem;
  line-height: 1em;
  padding: 1em 1.4em;
}
.header-contact-mail a:hover {
  background-color: #4096e6;
}
.header-contact-mail img {
  display: inline-block;
  vertical-align: middle;
  padding-right: .6rem;
}
#header-spbtn {
  display: block;
  width: 4em;
  height: 4em;
  position: relative;
  cursor: pointer;
}
 #header-spbtn .bar {
    background-color: #303030;
    height: .5em;
    width: 3em;
    display: block;
   border-radius: 4px;
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50% , -50%);
   -ms-transform: translate(-50% , -50%);
   -o-transform: translate(-50% , -50%);
   transform: translate(-50% , -50%);
   -webkit-transition: all .3s ease;
   -o-transition: all .3s ease;
   transition: all .3s ease;
  }
  #header-spbtn .bar01 {
   top: 25%;
   left: 50%;
  }
  #header-spbtn .bar03 {
   top: 75%;
   left: 50%;
  }
  #header-spbtn.open .bar01 {
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50% , -50%) rotate(45deg);
   -ms-transform: translate(-50% , -50%) rotate(45deg);
   -o-transform: translate(-50% , -50%) rotate(45deg);
   transform: translate(-50% , -50%) rotate(45deg);
  }
  #header-spbtn.open .bar02 {
    width: 0;
  }
  #header-spbtn.open .bar03 {
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50% , -50%) rotate(135deg);
   -ms-transform: translate(-50% , -50%) rotate(135deg);
   -o-transform: translate(-50% , -50%) rotate(135deg);
   transform: translate(-50% , -50%) rotate(135deg);
  }
  
#header-nav {
  position: relative;
  padding: 0px;
}
#header-nav ul {
  display: block;
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,.9);
  width: 100%;
  z-index: 3;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -ms-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
  #header-nav ul.nav-open {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }
#header-nav li {
  box-sizing: border-box;
  border-left: none;
  width: 100%;
}
  #header-nav li + li {
    border-top: 1px solid #ccc;
  }
  #header-nav li img {
    margin-left: 0;
  }
#header-nav li:last-child {
  border-right: none;
}
#header-nav a {
  box-sizing: border-box;
  display: block;
  padding: .9em;
  position: relative;
  height: 100%;
  width: 100%;
}
#header-nav a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: #317fc7;
  width: 0%;
  height: 4px;
  -webkit-transition: all .15s ease;
  -o-transition: all .15s ease;
  transition: all .15s ease;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
#header-nav a:hover:before {
  content: "";
  width: 100%;
}





/*----------------------------------------------
 02 catch
-----------------------------------------------*/
#catch {
  width: 100%;
}
.catch-box {
  padding: 3% 10px;
}

/*----------------------------------------------
 03 main
-----------------------------------------------*/

/*----------------------------------------------
 04 footer
-----------------------------------------------*/
	.footer-info {
		display: block;
	}
.footer-address {
  color: #333333;
  width: 100%;
  margin-bottom: 4%;
	display: block;
}
	.footer-link {
		display: block;
		width: 100%;
	}
.footer-link li{
  padding: .5em;
  border-left: 1px solid;
  font-size: 1em;
  border: none;
}
.footer-link li:last-child {
  border: none;
}

#copy p {
  padding: 5px;
  font-size: .7em;
  text-align: center;
}

#gotop-btn {
  position: fixed;
  z-index: 999;
  bottom: 1em;
  right: 1em;
  cursor: pointer;
  width: 3.5em;
}
/*----------------------------------------------
 05 block style
-----------------------------------------------*/
.contact2-box .contact2-tel {
		padding-bottom: .4em;
	}
  .contact2-box dl {
    box-sizing: border-box;
    text-align: center;
    width: 100%;
    background-color: rgba(255,255,255,.4);
  }
	.contact2-box .header-contact2-tel-num {
	 font-size: 1em;
	 text-align: center;
		margin:0 auto;
	}
	.contact2-box dt img {
	width: 100%;
}
	.contact2-box .header-contact2-time {
		text-align: center;
		font-size: .45em;
		display: block;
		margin: 0 auto;
	}
}