@charset "utf-8";

/** ***************************************************************************
 * ご予約･お問い合わせ
 * ************************************************************************* */

#contact {
  padding-bottom: 40px;
}

#contact div.body {
  background: url("../../_image/_common/bg-3.png") center top no-repeat;
  background-size: contain;
}

#contact .contact-item {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #contact {
    padding-bottom: 70px;
  }

  #contact div.body {
    background-size: auto;
  }

  #contact table.data {
    font-size: 15px;
  }

}

/** ***************************************************************************
 * フォーム要素
 */

#contact label {
  cursor: pointer;
}

#contact div.input-group {
  letter-spacing: -0.4em;
}

#contact div.input-group > * {
  letter-spacing: normal;
}

#contact div.input-item {
  margin: 5px 0;
}

#contact .formError {
  margin-bottom: 5px;
}

#contact .required {
  color: #e77800;
  vertical-align: baseline;
  display: inline-block;
}

#contact ::placeholder {
  color: inherit;
  opacity: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #contact div.input-item {
    width: 48%;
    margin: 5px 1%;
    vertical-align: top;
    display: inline-block;
  }

}

/** ===========================================================================
 * テキストフィールド
 */

#contact input[type="text"] {
  width: 100%;
  padding: 0.75em 1em;
  font: inherit;
  font-size: 16px;
  border-radius: 1.5em;
  border: none;
  background: #f5f5f5;
}

#contact input[name="zip"] {
  width: 10em;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #contact input[type="text"] {
    max-width: 30em;
    font-size: inherit;
    vertical-align: top;
    display: inline-block;
  }

}

/** ===========================================================================
 * テキストエリア
 */

#contact textarea {
  width: 100%;
  min-height: 10em;
  padding: 1em;
  font: inherit;
  font-size: 16px;
  border-radius: 1em;
  border: none;
  background: #f5f5f5;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #contact textarea {
    font-size: inherit;
  }

}

/** ===========================================================================
 * セレクトメニュー
 */

#contact label.select {
  width: 100%;
  padding: 0;
  border-radius: 1.5em;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#contact label.select::before {
	content: '';
	width: 0;
	height: 0;
	border-top: 12px solid #888;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	pointer-events: none;
	position: absolute;
	top: calc(50% - 5px);
	right: 15px;
}

#contact select {
  width: 100%;
  padding: 0.75em 1em;
  cursor: pointer;
  color: inherit;
  font: inherit;
  font-size: 16px;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: #f5f5f5;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
}

#contact select::-ms-expand {
  display: none;
}

#contact select option:disabled {
  display: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #contact select {
    font-size: inherit;
  }

}

/** ===========================================================================
 * チェックボックス
 */

#contact label.label-1 {
  margin: 10px 0;
  padding: 0.5em 1em;
  padding-left: 35px;
  border-radius: 1.5em;
  border: 2px solid transparent;
  display: block;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

#contact label.label-1 input {
  margin: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 12px;
}

#contact label.airconditioner-1 {
  border-color: #ff8400;
  background-color: #ffeedb;
}

#contact label.airconditioner-2 {
  border-color: #95bf00;
  background-color: #eff6d7;
}

#contact label.airconditioner-3 {
  border-color: #626262;
  background-color: #f3f3f3;
}

#contact label.bathroom {
  border-color: #000098;
  background-color: #eceeff;
}

#contact label.rangehood {
  border-color: #980093;
  background-color: #f4e8f7;
}

#contact label.kitchen {
  border-color: #b00000;
  background-color: #ffe8e8;
}

#contact label.washroom {
  border-color: #007574;
  background-color: #e5fbf2;
}

#contact label.onepoint {
  border-color: #8a7b00;
  background-color: #f8f5d0;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #contact label.label-1 {
    width: 48%;
    margin: 8px 1%;
    font-weight: bold;
    vertical-align: top;
    display: inline-block;
  }

}

/** ===========================================================================
 * ラジオボタン
 */

#contact label.radio {
  margin: 5px 1.5em;
  vertical-align: middle;
  display: inline-block;
}

/** ***************************************************************************
 * メッセージ
 */

body.page-confirm
#contact div.message {
  color: #f00;
}

body.page-complete
#contact div.message {
  margin: 5em auto;
  display: table;
}

body.page-complete
#contact div.message .title {
  font-weight: bold;
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #contact div.message {
    font-size: 15px;
  }

}

/** ***************************************************************************
 * クリーニングサービス選択
 */

#contact div.service {
}

/** ***************************************************************************
 * オプション選択
 */

#contact div.option {
}

/** ***************************************************************************
 * ユーザー情報など
 */

#contact div.user {
}

/** ***************************************************************************
 * 利用規定
 */

#contact div.regulation div.contents {
  height: 15em;
  border: solid 1px #ccc;
  overflow: hidden;
  overflow-y: auto;
}

#contact div.regulation div.content {
  padding: 2em;
}

#contact div.regulation div.regulation-item ~ div.regulation-item {
  margin-top: 2em;
}

#contact div.regulation div.contents .column-title {
  margin-bottom: 10px;
  font-weight: bold;
}

#contact div.regulation div.check {
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  text-align: center;
  display: table;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #contact div.regulation div.content {
    font-size: 15px;
  }

  #contact div.regulation div.check {
    font-size: 20px;
  }

}

/** ***************************************************************************
 * 送信ボタン
 */

#contact div.form-button {
  text-align: center;
}

#contact div.form-button button {
  margin: 5px 10px;
}

/** ***************************************************************************
 * リスペックのお約束
 * ************************************************************************* */

#promise {
  margin-top: 0 !important;
  padding: 40px 0;
  background-color: #f3f3f3;
}

#promise div.body {
  background: url("../../_image/_common/bg-2.png") center top no-repeat;
  background-size: contain;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #promise {
    padding: 70px 0;
  }

  #promise div.body {
    background-size: auto;
  }

}

/** ***************************************************************************
 * 一覧
 */

#promise div.list div.item {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

#promise div.list div.item ~ div.item {
  margin-top: 30px;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #promise div.list {
    max-width: 1110px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -3.94%;
    letter-spacing: -0.4em;
    overflow: hidden;
  }

  #promise div.list > * {
    letter-spacing: normal;
  }

  #promise div.list div.item {
    width: 33.33%;
    max-width: 370px;
    margin-bottom: 3.94%;
    padding-left: 2.76%;
    padding-right: 2.76%;
    vertical-align: top;
    display: inline-block;
  }

  #promise div.list div.item ~ div.item {
    margin-top: 0;
  }

}

/** ===========================================================================
 * 画像
 */

#promise div.list div.image {
  text-align: center;
}

#promise div.list div.image img {
  max-width: 160px;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #promise div.list div.image img {
    max-width: 100%;
  }

}

/** ===========================================================================
 * 内容
 */

#promise div.list div.content .title {
  font-size: 18px;
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #promise div.list div.content .title {
    font-size: 24px;
  }

}

/** ***************************************************************************
 * 詳しく見る
 */

#promise div.button {
  text-align: center;
}

/** ***************************************************************************
 * ビフォー･アフター比較
 * ************************************************************************* */

#before-after {
  margin-top: 0 !important;
  padding: 40px 0;
}

#before-after div.body {
  background: url("../../_image/_common/bg-5.png") center top no-repeat;
  background-size: contain;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #before-after {
    padding: 70px 0;
  }

  #before-after div.body {
    background-size: auto;
  }

}

/** ***************************************************************************
 * 画像
 */

#before-after div.contents {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

#before-after div.contents div.image {
  margin-bottom: 20px;
}

#before-after div.contents div.image div.item {
  width: 70%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#before-after div.contents div.image div.item.arrow {
  margin-top: 30px;
  margin-bottom: 30px;
}

#before-after div.contents div.image div.item.arrow img {
  max-width: 60px;
  transform-origin: center center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #before-after div.contents div.image {
    margin-bottom: 30px;
    letter-spacing: -0.4em;
    text-align: center;
  }

  #before-after div.contents div.image > * {
    letter-spacing: normal;
  }

  #before-after div.contents div.image div.item {
    width: 45%;
    vertical-align: middle;
    display: inline-block;
  }

  #before-after div.contents div.image div.item.arrow {
    width: 10%;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 1%;
    padding-right: 1%;
  }

  #before-after div.contents div.image div.item.arrow img {
    max-width: 100%;
    -webkit-transform: none;
            transform: none;
  }

}

/** ***************************************************************************
 * サービス対応エリア
 * ************************************************************************* */

#area {
  margin-top: 0 !important;
  padding: 40px 0;
  background-color: #f3f3f3;
}

#area div.body {
  background: url("../../_image/_common/bg-4.png") center 20px no-repeat;
  background-size: contain;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #area {
    padding: 70px 0;
  }

  #area div.body {
    background-position: center 40px;
    background-size: auto;
  }

}

/** ***************************************************************************
 * マップ
 */

#area div.map {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

#area div.map div.image {
  margin-bottom: 20px;
  text-align: center;
}

/** ***************************************************************************
 * よくある質問
 * ************************************************************************* */

#qa {
  margin-top: 0 !important;
  padding: 40px 0;
}

#qa div.body {
  background: url("../../_image/_common/bg-3.png") center top no-repeat;
  background-size: contain;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #qa {
    padding: 70px 0;
  }

  #qa div.body {
    background-size: auto;
  }

}

/** ***************************************************************************
 * 一覧
 */

#qa div.list dl.item,
#qa div.list dl.item > * {
  margin: 0;
  padding: 0;
}

#qa div.list dl.item {
  padding: 1em;
  border: 3px solid #333;
  background-color: #fff;
}

#qa div.list dl.item ~ dl.item {
  margin-top: 30px;
}

#qa div.list dl.item dt {
  padding-left: 2em;
  padding-bottom: 20px;
  font-weight: bold;
  background: url("../../_image/_common/title-4.png") left bottom repeat-x;
  position: relative;
  z-index: 1;
}

#qa div.list dl.item dt::before {
  content: 'Q.';
  color: #ff8400;
  line-height: 1.2;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  z-index: 1;
  top: -0.125em;
  left: 5px;
}

#qa div.list dl.item dd {
  margin-top: 10px;
  padding-left: 2.25em;
  position: relative;
  z-index: 1;
}

#qa div.list dl.item dd::before {
  content: 'A.';
  color: #9ebd2f;
  line-height: 1.2;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  z-index: 1;
  top: -0.125em;
  left: 5px;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #qa div.list dl.item {
    width: 90%;
    padding: 2em;
  }

  #qa div.list dl.item:nth-child(even) {
    margin-left: 10%;
  }

  #qa div.list dl.item ~ dl.item {
    margin-top: 50px;
  }

  #qa div.list dl.item dt::before {
    font-size: 24px;
  }

  #qa div.list dl.item dd {
    font-size: 16px;
  }

  #qa div.list dl.item dd::before {
    font-size: 24px;
  }

}
