@charset "UTF-8";
/* ===================================

↓下層共通css  

=================================== */
.head_title {
  width: 100%;
  min-width: 1000px;
  height: 120px;
  margin-bottom: 15px;
  background: #2d659a;
  /* Old browsers */
  background: linear-gradient(135deg, #2d659a 0%, #649dc9 100%);
  position: relative;
}

@media only screen and (max-width: 768px) {
  .head_title {
    min-width: 100%;
    height: 80px;
  }
}

.head_title:before {
  content: "";
  display: inline-block;
  width: 120px;
  height: 120px;
  background: url(../img/title_left.png) no-repeat left center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}

@media only screen and (max-width: 768px) {
  .head_title:before {
    width: 80px;
    height: 80px;
  }
}

.head_title:after {
  content: "";
  display: inline-block;
  width: 120px;
  height: 120px;
  background: url(../img/title_right.png) no-repeat right center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
}

@media only screen and (max-width: 768px) {
  .head_title:after {
    width: 80px;
    height: 80px;
  }
}

.head_title .head_title_inner {
  width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .head_title .head_title_inner {
    width: 100%;
  }
}

.head_title .head_title_inner h2 {
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.2em;
  padding-top: 45px;
  float: left;
}

@media only screen and (max-width: 768px) {
  .head_title .head_title_inner h2 {
    font-size: 20px;
    padding-top: 30px;
  }
}

.head_title .head_title_inner h2:after {
  content: "";
  display: inline-block;
  height: 30px;
  vertical-align: bottom;
  width: 1px;
  background-color: #B0CEEC;
  margin: 0 15px;
}

@media only screen and (max-width: 768px) {
  .head_title .head_title_inner h2:after {
    height: 20px;
    margin: 0 10px 0 7px;
  }
}

.head_title .head_title_inner p {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.2em;
  padding-top: 52px;
}

@media only screen and (max-width: 768px) {
  .head_title .head_title_inner p {
    float: left;
    padding-top: 33px;
  }
}

.format_container {
  width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .format_container {
    width: 90%;
  }
}

/*↓ぱんくずナビcss  */
.pan_nav {
  margin-bottom: 66px;
}

@media only screen and (max-width: 768px) {
  .pan_nav {
    margin-bottom: 30px;
  }
}

.pan_nav ul li {
  display: inline-block;
  font-size: 12px;
}

.pan_nav ul li:after {
  content: ">";
  margin: 5px;
}

.pan_nav ul li a {
  color: #666;
  text-decoration: none;
}

.pan_nav ul li:last-child:after {
  content: "";
  margin: 0;
}

/* ===================================

↓お問い合わせ css  

=================================== */
.format_container p {
  margin-bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .format_container p {
    line-height: 2em;
    margin-bottom: 20px;
  }
}

/* ===================================

↓フォーム css  

=================================== */
#formWrap table {
  width: 1000px;
  border-top: 1px solid #bfbfbf;
  margin-bottom: 55px;
}

@media only screen and (max-width: 768px) {
  #formWrap table {
    width: 100%;
    border-top: none;
    margin-bottom: 0px;
    font-size: 14px;
  }
}

#formWrap table tr {
  border-bottom: 1px solid #bfbfbf;
}

@media only screen and (max-width: 768px) {
  #formWrap table tr {
    border-bottom: none;
  }
}

#formWrap table tr th {
  background-color: #eee;
  font-weight: bold;
  width: 230px;
  text-align: left;
  padding-left: 40px;
  vertical-align: middle;
}

@media only screen and (max-width: 768px) {
  #formWrap table tr th {
    display: block;
    width: 98%;
    padding: 10px 0 10px 2%;
  }
}

#formWrap table tr th .required {
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  background-color: #e60012;
  padding: 2px 4px;
  vertical-align: 1px;
  margin-left: 10px;
}

#formWrap table tr td {
  padding-left: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-left: 1px solid #bfbfbf;
  display: block;
  line-height: 1.5em;
}

@media only screen and (max-width: 768px) {
  #formWrap table tr td {
    display: block;
    width: 100%;
    padding-top: 10px;
    padding-left: 0;
    border-left: none;
  }
}

#formWrap table tr td .sub_c {
  font-size: 14px;
  color: #999;
}

@media only screen and (max-width: 768px) {
  #formWrap table tr td .sub_c {
    display: block;
    font-size: 12px;
    margin-top: 4px;
  }
}

#formWrap table tr td input[type="text"] {
  width: 350px;
  height: 24px;
  padding: 5px 10px;
  font-size: 16px;
  border: 1px solid #bfbfbf;
}

@media only screen and (max-width: 768px) {
  #formWrap table tr td input[type="text"] {
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    padding: 1%;
    font-siz: 14px;
  }
}

#formWrap table tr td input[type="email"] {
  width: 430px;
  height: 24px;
  padding: 5px 10px;
  font-size: 16px;
  border: 1px solid #bfbfbf;
}

@media only screen and (max-width: 768px) {
  #formWrap table tr td input[type="email"] {
    box-sizing: border-box;
    height: 30px;
    width: 100%;
    padding: 1%;
    font-siz: 14px;
  }
}

#formWrap table tr td label {
  margin-right: 30px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  #formWrap table tr td label {
    margin-right: 2%;
  }
}

@media only screen and (max-width: 320px) {
  #formWrap table tr td label {
    display: block;
    margin-bottom: 8px;
  }
}

#formWrap table tr td label input[type="radio"] {
  cursor: pointer;
  vertical-align: 0;
}

#formWrap table tr td textarea {
  width: 670px;
  max-width: 670px;
  font-size: 16px;
  height: 100px;
  padding: 10px;
  border: 1px solid #bfbfbf;
}

@media only screen and (max-width: 768px) {
  #formWrap table tr td textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    padding: 1%;
  }
}

.submit {
  text-align: center;
}

input.btn_submit,
input.btn_send,
input.btn_back {
  cursor: pointer;
  margin: 50px auto 0;
  display: block;
  width: 250px;
  height: 60px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.3em;
  background-color: #1b1b1b;
  border-radius: 0;
  border: 2px solid #1b1b1b;
  transition: all .3s;
}

@media only screen and (max-width: 768px) {
  input.btn_submit,
  input.btn_send,
  input.btn_back {
    margin: 0 auto 0;
  }
}

input.btn_submit:hover,
input.btn_send:hover,
input.btn_back:hover {
  background-color: #666;
  border: 2px solid #666;
}

/* ===================================

↓送信完了 css  

=================================== */
#completion_contents {
  width: 1000px;
  margin: 0 auto 60px;
  padding: 50px 0 200px;
}

@media only screen and (max-width: 768px) {
  #completion_contents {
    width: 100%;
    padding: 20px 0;
  }
}

.completion_title {
  text-align: center;
  letter-spacing: 0.2em;
  font-size: 28px;
  font-weight: bold;
  padding: 80px 0 60px;
}

@media only screen and (max-width: 768px) {
  .completion_title {
    text-align: left;
    font-size: 18px;
    padding: 40px 0 30px;
  }
}

#completion_contents p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  #completion_contents p {
    font-size: 14px;
    text-align: left;
    margin-bottom: 0;
  }
}
