@charset "UTF-8";
/* ベース
------------------------------------------------------------------------------*/
/* mixin
------------------------------------------------------------------------------*/
/* フォームに枠線を付ける */
/* レイアウト
------------------------------------------------------------------------------*/
html {
  font-size: 100%; }

body {
  margin: 0;
  padding: 0; }

main {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
  background-color: #fff; }

.contact-wrap{
	width: 90%;
	margin: 0 auto;
	max-width: 1000px;
}



@media (max-width: 768px) {
 main {
      padding: 1rem 0; 
  }
.contact-wrap{
	width: 95%;

}
	
	
	
	
}

/* フォームのセクション
------------------------------------------------------------------------------*/
.form-section {
  margin: 2rem 0; }

/* 初期表示状態 */
#confirm_contact,
#complete_contact {
  display: none; }

/* 見出し、テキスト、段落
------------------------------------------------------------------------------*/
h1,
h2,
h3 {
  text-align: center; }

h3 {
  margin: 2rem 0; }

p {
  line-height: 1.7;
  text-align: justify; }

.lead {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 50rem;
  margin: 1rem auto;
  padding: 1rem 0;
  line-height: 1.7; }

.link-home {
  text-align: center; }

.link-home a{
  margin: 0 auto;
  padding: 0.5rem 0;
  background: #ff800d;
  border: 1px solid #ff800d;
  width: 95%;
  color: #ffffff;
  border-radius: 1rem;
  display: block;
}
.link-home a:hover{
  background: #ffffff;
  border: 1px solid #ff800d;
  color: #ff800d;
}



h2.heading-contact{
  margin: 0 0 2rem 0;
  padding: 1.5rem 0;
  background: #69bd83;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
	
}
h3.heading-contact-sub{
  width: 95%;
  margin: 0 auto 1rem;
  padding: 0 0 0.2rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #69bd83;
  border-bottom: 1px solid #69bd83;

}

/* ステップバー
------------------------------------------------------------------------------*/
.stepbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
  margin: 1rem auto 3rem;
  padding: 0;
  list-style: none;
  transform: scale(0.8); }

.step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 5rem;
  height: 5rem;
  margin-left: 0;
  border: 1px solid #69bd83;
  border-radius: 50%;
  color: #69bd83;
  text-transform: uppercase; }
  .step.visited {
    border: none;
    background-color: #69bd83;
    color: #fff; }

.step-num {
  font-size: 1.5rem;
  line-height: 1; 
}

.step-caption {
  position: absolute;
  bottom: -1.5rem;
  width: 6rem;
  color: #69bd83;
  font-weight: bold;
  font-size: 0.8rem;
  text-align: center; }

/* フォーム
------------------------------------------------------------------------------*/
dl.form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /* 罫線を付ける場合 */ }
  dl.form dt,
  dl.form dd {
    margin: 0;
    padding: 1rem; }
  dl.form dt {
    width: 30%; }
  dl.form dd {
    width: 70%; }
  @media (max-width: 768px) {
    dl.form {
      flex-direction: column; }
      dl.form dt,
      dl.form dd {
        width: 100%; }
      dl.form dt {
        padding-bottom: 0.5rem; }
      dl.form dd {
        padding-top: 0.5rem; } }
  dl.form dt,
  dl.form dd {
    border-top: 1px solid #69bd83;
    border-right: 1px solid #69bd83; }
    dl.form dt:last-of-type,
    dl.form dd:last-of-type {
      border-bottom: 1px solid #69bd83; }
  dl.form dt {
    border-left: 1px solid #69bd83; }
  @media (max-width: 768px) {
    dl.form dt:last-of-type {
      border-bottom: none; }
    dl.form dd {
      border-top: none;
      border-left: 1px solid #69bd83; } }

label.required::after {
  margin-left: 0.5rem;
  padding: 0.2rem;
  border-radius: 0.2rem;
  background-color: #f00;
  color: #fff;
  font-size: 0.8rem;
  content: '必須'; }

input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none; }
  input[type="text"].input-tel,
  input[type="tel"].input-tel,
  input[type="email"].input-tel,
  textarea.input-tel,
  select.input-tel {
    width: 12rem; }
  input[type="text"].input-zip,
  input[type="tel"].input-zip,
  input[type="email"].input-zip,
  textarea.input-zip,
  select.input-zip {
    width: 8rem; }
  input[type="text"].select-prefecture,
  input[type="tel"].select-prefecture,
  input[type="email"].select-prefecture,
  textarea.select-prefecture,
  select.select-prefecture {
    width: 8rem; }
  input[type="text"]::placeholder,
  input[type="tel"]::placeholder,
  input[type="email"]::placeholder,
  textarea::placeholder,
  select::placeholder {
    color: #aaa; }
  input[type="text"]:focus,
  input[type="tel"]:focus,
  input[type="email"]:focus,
  textarea:focus,
  select:focus {
    background-color: #ffc; }
  input[type="text"].error-item,
  input[type="tel"].error-item,
  input[type="email"].error-item,
  textarea.error-item,
  select.error-item {
    border: 1px solid #f00; }

.form-group-inline {
  display: inline-block;
  margin: 0.5rem 1rem 0.5rem 0;
  white-space: nowrap; }

input[type="radio"],
input[type="checkbox"] {
  cursor: pointer; }
  input[type="radio"] + label,
  input[type="checkbox"] + label {
    cursor: pointer; }

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0; }
  .buttons button:not(:first-child) {
    margin-left: 1rem; }
  @media (max-width: 768px) {
    .buttons {
      flex-direction: column; }
      .buttons button:not(:first-child) {
        margin-top: 1rem;
        margin-left: 0; } }

/* ボタン */
.btn {
  padding: 0.5rem 2rem;
  border: none;
  font-size: 1rem;
  cursor: pointer; }
  .btn:hover {
    opacity: 0.8; }

/* 先に進むボタン */
.btn-forward {
  position: relative;
  background-color: #69bd83;
  color: #fff; }
  .btn-forward::after {
    position: absolute;
    right: 0.5rem;
    font-size: 1.2rem;
    content: '\0bb'; }

/* 前に戻るボタン */
.btn-back {
  position: relative; }
  .btn-back::before {
    position: absolute;
    left: 0.5rem;
    font-size: 1.2rem;
    content: '\0ab'; }

/* エラー
------------------------------------------------------------------------------*/
.error-message {
  display: none;
  margin-top: 0.5rem;
  color: #f00; }

.error-item {
  border: 1px solid #f00;
  background-color: #fef; }
