@charset "UTF-8";

/*
汎用
*/
html,body {
  color: #1A1311;
}
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  min-width: 1080px;
}
img {
  max-width: 100%;
}
a:hover {
  opacity: .8;
  transition: all .2s;
}
.wrapper {
  position: relative;
}
.fw-bold {
  font-weight: 600;
}
.emphasis {
  color: #E23714;
}
.lh-default {
  line-height: 1.5;
}
.c-align-center {
  max-width: 1080px;
  margin: 0 auto;
}
.t-align-center {
  text-align: center;
}
.title {
  font-size: 40px;
  text-align: center;
}
.title.title-underline {
  background: url(/images/bg_wave.png) center bottom no-repeat;
  padding-bottom: 40px;
}
.link-text {
  color: #E69300;
  text-decoration: underline;
}
.br-pc {
  display: block;
}
.br-sp {
  display: none;
}
@media only screen and (max-width:599px) {
  body {
    min-width: initial;
  }
  .c-align-center {
    width: auto;
    margin: 0 auto;
  }
  .title {
    font-size: 30px;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
/* 資料ダウンロードボタン(デフォルト) */
.btn-download {
  font-size: 18px;
  width: 300px;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  text-align: center;
  color: #fff;
  background: linear-gradient(to bottom, #E23714, #F39800);
  box-shadow: 0 3px 2px rgba(0,0,0,.15);
}
.btn-download:hover {
  cursor: pointer;
}
.btn-download a {
  display: block;
}
.btn-download-box {
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, #E23714, #F39800);
}
.btn-download-box-bglayer {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(/images/bg_download.png) no-repeat;
  background-position: bottom -40px right 0;
  position: relative;
}
.btn-download-box-bglayer::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 60px 0 60px;
  border-color: #ffffff transparent transparent transparent;
  content: "";
  position: absolute;
  top: 0;
}

.btn-inquiry {
  font-size: 18px;
  width: 300px;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  text-align: center;
  color: #F39800;
  border-width: 2px;
  border-color: #F39800;
  box-shadow: 0 3px 2px rgba(0,0,0,.15);
}
/* 資料ダウンロードボタン(白背景) */
.btn-download-white a {
  width: 600px;
  height: 100px;
  line-height: 100px;
  font-size: 24px;
  margin: 0 auto;
  background: #fff;
  border-radius: 40px;
}
.btn-download-white.btn-dl-small a {
  width: 360px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
}
@media only screen and (max-width:599px) {
  .btn-download {
    width: 50%;
    margin: 0 5px;
  }
  .btn-download-box {
    height: auto;
  }
  .btn-download-box-bglayer {
    padding: 50px 0;
    background-size: 50%;
    background-position: bottom -20px right -60px;
  }
  .btn-download-box-bglayer::before {
    border-width: 20px 30px 0 30px;
  }
  .btn-download-white {
    width: 100%;
    padding: 0 20px;
  }
  .btn-download-white a {
    width: 100%;
    height: auto;
    line-height: initial;
    font-size: 18px;
    border-radius: 30px;
    padding: 20px;
  }
  .btn-download-white.btn-dl-small a {
    width: 100%;
    height: auto;
    line-height: initial;
  }
  .btn-inquiry {
    width: 50%;
    margin: 0 5px;
    background-color: #fff;
  }
}
/* 送信ボタン */
.btn-submit {
  width: 480px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  border-radius:30px;
  margin-bottom: 20px;
}

/*
お問い合わせ関連
*/
/* 資料ダウンロード（フォーム含む） */
.introduce-inner {
  padding: 30px 0 30px;
}
.introduce-content {
  line-height : 2;
  text-align: center;
  font-size: 24px;
  font-weight: 300;
}
.c-contact-wrapper {
  background: #F7F7F7;
}
.c-contact-inner {
  display: flex;
  padding: 70px 0 120px;
}
.c-contact-left,
.c-contact-right {
  flex: 1;
}
.c-contact-content {
  margin: 0 auto;
  width: 480px;
}
.c-contact-elm {
  width: 480px;
  margin-bottom: 30px;
}
.c-contact-embedded-doc{
  margin-right: -50%;
  margin-left: -50%;
  margin-bottom: 30px;
}
.c-contact-elm input,
.c-contact-elm select,
.c-contact-elm textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #DCDEE0;
  border-radius: 4px;
  background: #fff;
}
.c-contact-elm .select-wrapper {
  position: relative;
}
.c-contact-elm .select-wrapper::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 7px);
  right: 20px;
}
.c-contact-elm p {
  margin-bottom: 10px;
}
.c-contact-elm p span {
  font-size: 12px;
  color: #E23714;
  margin-left: 10px
}
.kind-form-checkbox {
  margin: 15px 0 30px 10px;
}
.c-content-table-text {
  font-size: 18px;
  font-weight: 600;
}
.c-contact-table {
  width: 480px;
  table-layout:fixed;
}
.c-contact-td {
  border: 3px solid;
  border-color: #F69300;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 0 5px 10px;
}
.c-contact-headline {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.c-contact-policy {
  font-size: 14px;
  text-align: center;
}
.c-contact-tel-box {
  width: 480px;
  margin-top: 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px 0;
  background: #fff;
}
.c-contact-tel-box .tel-pc {
  display: block;
}
.c-contact-tel-box .tel-sp {
  display: none;
}
.c-contact-tel-text-1 {
  margin-bottom: 20px;
}
.c-contact-tel-text-2 {
  font-size: 40px;
  color: #E23714;
  margin-bottom: 20px;
}
.c-contact-tel-text-2::before {
  content: url(/images/icon_tel.png);
  width: 20px;
  height: 30px;
  display: inline-block;
  margin-right: 10px;
}
.c-contact-tel-text-3 {
  color: #333;
  font-size: 15px;
}
/* お問い合わせページ調整 */
#apply .c-contact-inner {
  display: block;
}
#apply .c-contact-left {
  width: 480px;
  margin: 0 auto;
  padding-right: 0;
}
.c-contact-apply-title {
  font-size: 14px;
  margin-bottom: 40px;
}
/* 確認ページ */
.c-contact-confirm {
  width: 470px;
  margin: 0 auto;
  padding: 50px 0;
}
.c-contact-confirm p:not(:last-child) {
  margin-bottom: 30px;
}
.btn-contact-back-wrapper {
  text-align: center;
}
.btn-contact-back {
  padding: 20px;
  border-radius: 30px;
  background: #c0c0c0;
  color: #fff;
  cursor: pointer;
}
.c-contact-confirm dl {
  width: 100%;
  margin-bottom: 30px;
}
.c-contact-confirm dt {
  margin-bottom: 20px;
}
.c-contact-confirm dd {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.btn-contact-submit-wrapper {
  display: flex;
  justify-content: space-between;
}
.btn-contact-submit-wrapper .btn-contact-back {
  padding: 20px 40px;
}
@media only screen and (max-width:599px) {
  .btn-contact-submit-wrapper {
    display: block;
  }
  .btn-contact-submit-wrapper .btn-contact-back {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}

/* 完了ページ */
.complete .c-contact-left {
  padding-right: 0;
}
.c-contact-thanks-text-1 {
  font-size: 20px;
  margin-bottom: 30px;
}
.c-contact-thanks-text-2 {
  font-size: 14px;
  margin-bottom: 40px;
}
.c-contact-error-message {
  padding: 50px 0;
}
@media only screen and (max-width:599px) {
  .introduce-content {
    font-size: 18px;
  }
  .c-contact-inner {
    display: block;
    padding: 50px 0;
  }
  .c-contact-left {
    padding: 0 20px;
    margin-bottom: 50px;
  }
  .c-contact-right {
    padding: 0 20px;
  }
  .c-contact-content {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 50px;
  }
  .c-contact-table {
    width: 100%;
  }
  .c-contact-td {
    font-size: 14px;
  }
  .c-contact-tel-box {
    width: 100%;
  }
  #apply .c-contact-left {
    width: 100%;
    padding-right: 20px;
  }
  .c-contact-elm {
    width: 100%;
    margin-bottom: 15px;
  }
  .c-contact-embedded-doc{
    width: 100%;
    margin: 0 auto 30px;
  }
  .c-contact-elm.seimei {
    width: 100%;
  }
  .c-contact-elm.seimei input {
    width: 90%;
  }
  .btn-submit {
    width: 100%;
  }
  .c-contact-tel-box .tel-pc {
    display: none;
  }
  .c-contact-tel-box .tel-sp {
    display: block;
  }
  .c-contact-tel-text-2 {
    font-size: 28px;
  }
  .c-contact-confirm {
    width: auto;
    padding: 50px 20px;
  }
}
/* バリデート */
.input-error {
  color: red;
}
