@charset "UTF-8";
/* CSS Document */

* {
	 margin:0;
	 padding:0;
	 font-family: sans-serif;
}

a {
	text-decoration:none;
	color:black;
}

/*----------------------------------------------------
  hover
----------------------------------------------------*/
.hover {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
 
.hover:hover {
    opacity: 0.6;    
    filter: alpha(opacity=60);
}

/*----------------------------------------------------
  selection ドラック時の背景
----------------------------------------------------*/

::selection {
	color:#FFF;
	background:#28A2DD;
}
 
::-moz-selection {
	color:#FFF;
	background:#28A2DD;
}

/*----------------------------------------------------
  top_logo
----------------------------------------------------*/
h1.top_logo img {
	width:300px;
	display:block;
	margin:10px auto;
}

/*----------------------------------------------------
  page_body
----------------------------------------------------*/
.page_body {
	max-width:800px;
	margin:0 auto;
}

/*----------------------------------------------------
  top_img
----------------------------------------------------*/
.top_img {
	max-width:100%;
	height:100%;
	min-height:40vw;
	margin:0 auto;
	background-image: url(../img/top.jpg);
	background-size:cover;
	background-position:bottom;
	margin-top:-1px;
	padding-bottom:130px;
}

.top_text {
	width:60%;
	height:300px;
	max-width:700px;
	margin: auto;
}

.top_text img {
	width:100%;
	margin-top:100px;
}
/*----------------------------------------------------
  all
----------------------------------------------------*/
#all {
	background:#28A2DD;
}

.all_in {
	color:#FFF;
	text-align:center;
	padding:50px 0;
	font-size:x-large;
	font-weight:bold;
	line-height:1.7em;
}

.all_in p.c_t {
	font-size:xx-large;
	margin:10px;
}

/*----------------------------------------------------
  concept
----------------------------------------------------*/
#concept, .concept {
	text-align:center;
	margin-bottom:10px;
}

h2 {
	font-size: initial;
	font-weight:normal;
}

#concept h2 {
	margin:10px;
}

#concept p, .concept p {
	margin:10px;
}

/*----------------------------------------------------
  greeting
----------------------------------------------------*/
#greeting {
	text-align:center;
	margin-bottom:80px;
}

#greeting p {
	margin-top:20px;
}

#greeting h3 {
	margin-top:30px;
}

/*----------------------------------------------------
  back
----------------------------------------------------*/
.back {
	overflow:hidden;
}

.back_in {
	width:16.66%;
	height:200px;
	float:left;
}

.back_in p {
	color:#FFF;
	font-size:large;
	font-weight:bold;
	text-align:center;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%); /* Safari用 */
	transform: translateY(-50%);
}

.back_in1 {
	background-image:url(../img/back1.jpg);
	background-size:cover;
	background-position:center center;
}

.back_in2 {
	background-image:url(../img/back2.jpg);
	background-size:cover;
	background-position:center center;
}

.back_in3 {
	background-image:url(../img/back3.jpg);
	background-size:cover;
	background-position:center center;
}

.back_in4 {
	background-image:url(../img/back4.jpg);
	background-size:cover;
	background-position:center center;
}

.back_in5 {
	background-image:url(../img/back5.jpg);
	background-size:cover;
	background-position:center center;
}

.back_in6 {
	background-image:url(../img/back6.jpg);
	background-size:cover;
	background-position:center center;
}

.b_box {
	margin-top:35px;
	text-align:center;
}

.back_text p {
	margin:10px;
}

/*----------------------------------------------------
  text_line
----------------------------------------------------*/
.text_line {
	max-width:500px;
	display: flex;
	align-items: center;
	font-size:xx-large;
	margin:10px;
	margin:0 auto;
	padding-top:80px;
	margin-bottom:25px;
}
.text_line:before, .text_line:after {
	content: "";
	flex-grow: 1;
	height: 1px; /* 線の太さを変えたいときはここを変える */
	background: #000; /* 線の色を変えたいときはここを変える */
	margin:0 .4em; /* 文字と線の余白用 なくても良い */
}


/*----------------------------------------------------
  qa
----------------------------------------------------*/
#qa {
	padding-bottom:50px;
}

.qaContainer{
margin-top:50px;
}

.qaContainer dt {
padding: 10px 10px 10px 35px;
border-radius: 5px;
background: #E5F6FF;
text-indent: -25px;
}
.qaContainer dt:before {
content: "Q.";
font-weight: bold;
margin-right: 7px;
}
.qaContainer dd {
margin: 20px 10px 40px 35px;
text-indent: -25px;
}
.qaContainer dd:before {
content: "A.";
color: #1771c6;
font-weight: bold;
margin-right: 7px;
}

/*----------------------------------------------------
  contact
----------------------------------------------------*/
#contact {
	max-width:100%;
	height:auto;
	min-height:30vw;
	margin:0 auto;
	background-image: url(../img/contact.jpg);
	background-size:cover;
	background-position:20%;
	margin-top:-1px;
	position: relative;
	color:#FFF;
	padding-top:1px;
	padding-bottom:80px;
}

#contact .text_line {
	color:#FFF;
}
#contact .text_line:before, #contact .text_line:after {
	background: #FFF; /* 線の色を変えたいときはここを変える */
}

#contact h3 {
	font-size:x-large;
}

#contact h3, #contact p {
	text-align:center;
	color:#FFF;
}

#contact p {
	margin-top:5px;
}

#contact p.c_t {
	font-size:xx-large;
	font-weight:bold;
	margin-top:20px;
}

.c_t a {
	color:#FFF;
}

.from_form {
	width:400px;
	height:200px;
	background:rgba(255,255,255,0.8);
	border-radius:10px;
	margin:0 auto;
	margin-top:25px;
}

#contact p.fform {
	color:#000080;
	font-size:large;
	font-weight:bold;
	padding:15px;
	padding-top:30px;
}

section {
  max-width: 300px;
  margin: 0 auto;
  margin-top:20px;
}
a.btn_03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: #228bc8;
  border: 1px solid #228bc8;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 45px 0 25px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}
a.btn_03:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}
a.btn_03:hover {
  background: #fff;
  color: #228bc8;
}
a.btn_03:hover:before {
  border-top: 2px solid #28A2DD;
  border-right: 2px solid #28A2DD;
}

.thanks {
	margin-bottom:100px;
}

.thanks_c {
	margin-top:50px;
}

/*----------------------------------------------------
  company
----------------------------------------------------*/
#company {
	margin-top:35px;
	text-align:center;
	clear:both;
}

.salon_text p {
	margin:10px;
}

.salon_text a {
	text-decoration: underline;
}


table {
  margin: 20px auto;
  width:80%;
  max-width:800px;
  padding:50px 0;
}

table p {
	font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 60px auto 40px;
}

.tcompany th {
  border-bottom: solid 1px #ccc;
  padding: 10px;
  width:30%;
}

.tcompany td {
	border-bottom: solid 1px #ccc;
	padding: 10px;
	text-align:left;
}

.tcompany h6 {
	font-size:16px;
	font-weight: normal;
}
 
/*----------------------------------------------------
  google_map
----------------------------------------------------*/
.google_map{
    width:100%;
	height:500px;
	margin-top:35px;
	filter: grayscale(20%);
}
.google_map iframe{
    width:100%;
    height:500px;
}

/*----------------------------------------------------
  footer
----------------------------------------------------*/

.footer {
	background:#28A2DD;
}

.c_right {
	padding:10px;
	text-align:center;
	color:#FFF;
}

.c_right strong {
	color:#FFF;
}

.c_right strong {
	font-weight:normal;
}

/*----------------------------------------------------
  smartphone
----------------------------------------------------*/
@media screen and (max-width:480px){
	h1.top_logo img {
	display:none;
	}
	
	.menu_box {
	width:96%;
	float:none;
	padding: 0 2%;
	}
	
	.top_img {
	max-width:100%;
	}
	
	.top_text {
	width:80%;
	}
	
	.top_img_text p {
	line-height: 150px;
	}

	.page_s {
	width:90%;
	margin:0 5%;
	}
	
	.concept {
	margin-top:50px;
	}
	
	.back_in {
	width:50%;
	height:150px;
	}
	
	.text_line {
	font-size:x-large;
	}
	
	.from_form {
	width:95%;
	}
.last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .tcompany {
    width: 90%;
  }
  .tcompany th,
  .tcompany td {
　　border-bottom: none;
    display: block;
    width: 100%;
	text-align:left;
  }
  .tcompany th {
	border-bottom:none;
	}
  table p {
	text-align:left;
	}  
	
	.back_text {
	margin-top:35px;
	}

}

/*----------------------------------------------------
  tablet
----------------------------------------------------*/
@media screen and (min-width:481px) and ( max-width:768px) {
	.top_img {
	max-width:100%;
	}
	
	.page_s {
	width:90%;
	margin:0 5%;
	}
	
	.back_in {
	width:33.33%;
	height:150px;
	}
	
	.last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .tcompany {
    width: 80%;
  }
  .tcompany th,
  .tcompany td {
　　border-bottom: none;
    display: block;
    width: 100%;
	text-align:left;
  }
  
  .tcompany th {
	border-bottom:none;
	}
	
  table p {
	text-align:left;
	} 
	
	.back_text {
	margin-top:35px;
	}
}
/*----------------------------------------------------
  below 769px~
----------------------------------------------------*/
@media screen and (min-width:769px) {
	

}
