@charset "UTF-8";
/* media query */
.pageTit {
  background-image: url(../images/mainimg.jpg);
}
.pageTit .logo {
  width: 250px;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .pageTit .logo {
    width: 200px;
  }
}

body {
  background-color: #fff;
}

.contactArea {
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 100px;
}
@media screen and (max-width: 1460px) {
  .contactArea {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .contactArea {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 668px) {
  .contactArea {
    margin-bottom: 50px;
  }
}
.contactArea table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 50px;
}
.contactArea table th,
.contactArea table td {
  padding: 20px 0;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid #D6D6D5;
}
@media screen and (max-width: 668px) {
  .contactArea table th,
  .contactArea table td {
    display: block;
  }
}
.contactArea table th {
  width: 230px;
  position: relative;
}
@media screen and (max-width: 668px) {
  .contactArea table th {
    width: 100%;
    border-bottom: 0;
    padding: 25px 0 15px;
    font-size: 1.9rem;
  }
}
.contactArea table th .notice {
  top: 31px;
  right: 25px;
  font-size: 1.2rem;
  text-align: center;
  background-color: #333;
  color: #fff;
  border-radius: 20px;
  margin-left: 15px;
  padding: 5px 10px;
  line-height: 100%;
  position: absolute;
}
@media screen and (max-width: 668px) {
  .contactArea table td {
    padding: 0 0 25px;
  }
}
.contactArea table td .comment {
  font-size: 1.4rem;
}
.contactArea table td p.red {
  color: #f00;
}
.contactArea table td input, .contactArea table td select {
  margin: 5px;
}

.okArea {
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 100px;
  text-align: center;
}
@media screen and (max-width: 1460px) {
  .okArea {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .okArea {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 668px) {
  .okArea {
    margin-bottom: 50px;
  }
}

/* -------------------------------------------------

form reset

------------------------------------------------- */
select {
  width: auto;
  min-width: 80px;
}

input[type=text].sizeXL,
input[type=tel].sizeXL,
input[type=email].sizeXL,
textarea.sizeXL,
select.sizeXL {
  width: 100%;
}

.submit {
  display: flex;
  justify-content: center;
}
.submit input[type=submit] {
  margin: 0 10px;
}
@media screen and (max-width: 668px) {
  .submit input[type=submit] {
    margin: 0 5px;
  }
}

/* エラーメッセージ
-------------------------------------------------*/
.formLayout #errorMessage {
  box-sizing: border-box;
  width: 100%;
  background: #FFF;
  border: 3px solid #f00;
  padding: 10px;
  margin: 0 auto 10px auto;
  color: #F00;
}

/* 画面別表示/非表示
-------------------------------------------------*/
.formLayout.input_now .display_check,
.formLayout.check_now .display_input {
  display: none;
}

/* その他
-------------------------------------------------*/
.required {
  color: #f00;
}
.required .comment {
  display: inline-block;
}/*# sourceMappingURL=index.css.map */