@charset "UTF-8";


/***********************************
transition
************************************/
header,
h1,
h2,
p,
a,
strong,
span,
article {
  transition: all 1s ease-out;
}


/***********************************
html&body
************************************/
html {
	overflow-y: scroll;
  font-size: calc(100vw / 37.5);
}

html,body {
  height: auto;
  line-height: 1.5;
  /*文字詰め*/
  font-feature-settings: "palt";
  /*スマホの文字サイズ自動変更無効*/
	-webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeSpeed;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

@media screen and (min-width: 768px) {  
    
  html {
    font-size: 62.5%;
  }
  
  body {
    font-size: 1.6rem;
  }
  
}

@media screen and (max-width:767px) {
  
  body {
    font-size: 1.4rem;
  }
  
}


/***********************************
Link Setting
************************************/
a:link,a:visited,a:active {
}

/*ページトップコントローラー*/
#topcontrol {
  display: block;
  background-image: url("../images/scrollTopControl_arrow.svg");
  background-position: center center;
  background-size: 40% auto;
  background-repeat: no-repeat;
  background-color: #bbb;  
	border-radius: 100px;
	 -moz-border-radius: 100px;
	 -webkit-border-radius: 100px;
	 -khtml-border-radius: 100px;	
  height: 60px;
  width: 60px;
	position:relative;
  transition: all 1s ease-out;
}

@media print,screen and (min-width:768px) {
  
	a.tel {
	}
  
  a:hover {
    opacity: .5;
  }
  
  /*ページトップコントローラー*/
  #topcontrol:hover {
    opacity: .5 !important;
  }
  
}

@media screen and (max-width:767px) {
  
	a:hover {
		opacity: 1;
	}
	
	a.tel {
	}
  
  /*ページトップコントローラー*/
  #topcontrol {
    height: 45px;
    width: 45px;
  }  

}


/***********************************
main container
************************************/
#mainContainer img {
  width: 100%;
}

.in-box {
	margin-left:auto;
	margin-right:auto;
	max-width:1000px;
	width:90%;
}

@media print,screen and (min-width:768px) {
	
	.pc {
		display:block;
	}

  .sp {
		display:none;
	}
  
}

@media screen and (max-width:767px) {
  
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
  
}


/***********************************
header
************************************/
header {
  position: relative;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

header .in-box {
  max-width: 100%;
}

header h1,
header h2 {
  display: block;
}

header h1 {
  float: left;
  max-width: 70px;
}

header h2 {
  float: right;
  margin-bottom: 0;
}

@media print,screen and (min-width:768px) {
	
  header {
    padding: 1.5% 0;
  }
  
}


@media screen and (max-width:767px) {
  
  header {
    height: 50px;
  }
  
  header h1,
  header h2 {
    margin-top: 15px;
  }
  
  header h1 {
    width: 45px;
  }
  
  header h2 {
    width: 165px;
  }
  
}


/***********************************
main
************************************/
main {
  display: block;
}

@media screen and (max-width:768px) {
  
  main {
    margin-bottom: 15%;
  }
  
}


/***********************************
サービス情報
************************************/
#service_information {
  position: relative;
  overflow: hidden;
}

#service_information .bnr-box {
  position: relative;
  overflow: hidden;
}

#service_information .logo-box {
  padding-top: 100px;
  display: block;
  text-align: center;
  margin: 0 auto;
  max-width: 200px;
  width: 60%;
  padding-bottom: 30px;
}

#service_information .logo-box li:first-child {
  max-width: 125px;
  margin: 0 auto;
}

@media print,screen and (min-width:768px) {
  
  #service_information .bnr-box li {
    float: left;
    width: 49%;
  }
  
  #service_information .bnr-box li:nth-child(2n) {  
    float: right;
  }
  
}

@media screen and (max-width:767px) {
  
  #service_information .bnr-box {
    margin-bottom: 20px;
  }

  #service_information .bnr-box li {  
    margin-bottom: 20px;    
  }  

  #service_information .logo-box {
    padding-top: 30px;
  }
  
  #service_information .service_information_i01 span {
    text-align: left;
    font-size: 11px;
  }
  
}



