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

/***************************
 ** コンタクトフォーム
 */
.contact_contents .wrapper > p {
  margin-bottom: 4rem;
}

.contact_contents .wrapper > p a {
  font-weight: bold;
  color: #000;
}

.form_list dt {
  margin-bottom: 0.5rem;
}

.form_list dt span {
  font-weight: bold;
  display: inline-block;
  margin-right: 1em;
}

.form_list dd {
  margin-bottom: 1.5rem;
}

.form_list dd input[type="text"],
.form_list dd textarea {
  padding: 1rem;
  border: 1px solid #999;
  border-radius: 5px;
}

.form_list dd input[type="text"] {
  width: 50%;
}

.form_list dd textarea {
  width: 100%;
  height: 5em;
}

.contact_inner input[type="submit"] {
  font-size: 1.125rem;
}

.err_msg {
  display: block;
  color: #c00;
  font-weight: bold;
}

@media screen and (max-width: 736px) {
  .contact_contents .wrapper > p {
    margin-bottom: 2rem;
    font-size: 0.875rem;
  }
  
  .form_list {
    font-size: 0.875rem;
  }

  .form_list dt span {
    font-weight: bold;
    display: inline-block;
    margin-right: 1em;
  }

  .form_list dd {
    margin-bottom: 1rem;
  }

  .form_list dd input[type="text"],
  .form_list dd textarea {
    box-sizing: border-box;
    padding: 0.8rem;
  }

  .contact_inner input[type="submit"] {
    font-size: 1rem;
  }
}


/***************************
 ** 予約ボタン
 */
.reservation {
  padding: 4rem 0;
  background: url("../img/contact/bg_contact.jpg") no-repeat;
  background-size: cover;
}

.reservation_list li {
  flex-basis: 23%;
  margin-right: 2.6%;
}

.reservation_list li:last-child {
  margin-right: 0;
}

.salon {
  margin-bottom: 0.8rem;
  font-size: 0.75rem;
}

.salon span {
  display: block;
  font-weight: bold;
  font-size: 1rem;
}

.url_link {
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.url_link a {
  color: #000;
  text-decoration: none;
}

.url_link a:hover {
  text-decoration: underline;
}

.salon_photo {
  text-align: center;
  margin-bottom: 0.5rem;
}

.business_time {
  margin-bottom: 1rem;
}

.tel_number {
  font-size: 2.2vw;
  font-weight: bold;
  margin-bottom: 1rem;
}

.tel_number a {
  color: #000;
  text-decoration: none;
}

.tel_number a::before {
  font-family: "Font Awesome 5 Free";
  content: '\f095';
  font-weight: 900;
  display: inline-block;
  margin-right: 0.2em;
  font-size: 1.5rem;
}

@media screen and (min-width: 961px) {
  .tel_number {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 736px) {
  .reservation {
    padding: 2rem 0;
    background-position: center top;
  }

  .reservation_list li {
    flex-basis: 100%;
    margin-right: 0;
    text-align: center; 
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dotted #999;
  }

  .salon {
    margin-bottom: 0.5rem;
  }

  .url_link {
    margin-bottom: 0.5rem;
  }

  .tel_number {
    font-size: 1.6rem;
  }
}


/* 2023/09/23 start */

.reservation_list {
	justify-content: space-around;
}

.reservation_list li {
	flex: none;
	width: 220px;
}

@media screen and (max-width: 736px){
	.reservation_list li {
		width: 100%;
		flex: 1 1;
	}
}

/* 2023/09/23 end */


