@charset "UTF-8";

/*-------------------------------------------
contact contactTitle
-------------------------------------------*/
#contactTitle {
  /* 下 */
  position: relative;
  left: 0;
  top: 60px;
  width: 100%;
  /*z-index: -20;*/
  background-color: #ffd700;/* Gold */
  clip-path: polygon(0 0,50% 0,100% 0,100% 90%, 50% 100%, 0 90%);
  padding: 60px 0 100px;
  margin-bottom: 40px;
}
#contactTitle::before {
  /* 上 */
  content: "";
  position: absolute;
  left: 0;
  top: -40px;
  z-index: -10;
  width: 100%;
  height: 100%;
  background-color: #ffed58;/* Yamabuki */
  clip-path: polygon(0 0,50% 0,100% 0,100% 90%, 50% 100%, 0 90%);
}

#contactTitle .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#contactTitle .text .description {
  font-weight: 500;
  line-height: 1.6;
  /*margin-right: 30px;*/
  margin-bottom: 40px;
}
#contactTitle .text .description a {
  font-size: 20px;
}



/*-------------------------------------------
contact contactForm
-------------------------------------------*/
#contact {
  padding: 80px 40px 40px 40px;
  margin: 0 auto;
}
#contact .inner {
/*
  display: flex;
  flex-direction: column;
  justify-content: center;
*/
}
#contact h2 {
  font-weight: 700;
  line-height: 1.6;
  margin-top: 35px;
  margin-bottom: 20px;
}
#contact .contactMessage {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  padding: 0 20px 20px 20px;
}



/*-------------------------------------------
contact contactForm Input
-------------------------------------------*/
.Form {
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* 注意事項 */
.Form-attention {
  padding: 30px;
  width: 100%;
  border:1px solid #333;
  border-radius: 30px;
}
ul.sectionList {
  margin:0 0 5px 0;
}
ul.sectionList li {
  list-style-type: disc;
  margin:5px 0 10px 30px;
}

/* 必須マーク */
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: deepskyblue;
  color: #fff;
  font-size: 14px;
}



/*-------------------------------------------
contact contactForm inputForm-list
-------------------------------------------*/
.inputForm-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 40px;
}
.inputForm-list dt {
  display: flex;
  align-items: center;
  width: 200px;
  border-top: solid 1px #1f1f1f;
  font-size: 16px;
}
.inputForm-list dt:last-of-type {
  border-bottom: solid 1px #1f1f1f;
}
.inputForm-list dd {
  width: calc(100% - 200px);
  border-top: solid 1px #ccc;
  font-size: 16px;
  padding: 30px 0;
}
.inputForm-list dd:last-of-type {
  border-bottom: solid 1px #ccc;
}
.registMessage {
  margin-top: 20px;
  margin-bottom: 20px;
}



/*-------------------------------------------
contact インプット要素
-------------------------------------------*/
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  background: #eaedf2;
  font-size: 16px;
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  background: #eaedf2;
  font-size: 16px;
}

/* 確認や送信、戻るボタンの領域 */
.Form-Btn-Area {
  margin: 0 auto;
  width: 60%;
  display: flex;

}

.Form-Btn {
  border: 3px solid deepskyblue;
  border-radius: 6px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  /*width: 160px;*/
  flex-basis: 160px;
  display: block;
  background: deepskyblue;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  cursor:pointer;
  opacity: 1;
  transition: all .3s ease;
}
.Form-Btn:hover {
  color: deepskyblue;
  background: #fff;
  letter-spacing: 0.1em;
}

.Form-BtnBK {
  border: 3px solid #ffef00;
  border-radius: 6px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  /*width: 160px;*/
  flex-basis: 160px;
  display: block;
  background-color: #ffef00;
  font-weight: 500;
  font-size: 16px;
  cursor:pointer;
  opacity: 1;
  transition: all .3s ease;
}
.Form-BtnBK:hover {
  background: #fff;
  letter-spacing: 0.1em;
}

.Form-Item-Result {
	font-size: 16px;
	line-height: 2.0;
}






/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {

  /*-------------------------------------------
  contact contactForm
  -------------------------------------------*/
  #contact {
    padding: 80px 20px 0px 20px;
    margin: 0 auto;
  }

  .inputForm-list dt {
    padding-top: 30px;
    width: 100%;
    border-top: solid 1px #1f1f1f;
    font-size: 16px;
  }
  .inputForm-list dt:last-of-type {
    border-bottom: none;
  }
  .inputForm-list dd {
    width: 100%;
    border-top: none;
    font-size: 16px;
    padding: 30px 0;
  }
  .inputForm-list dd:last-of-type {
    border-bottom: solid 1px #ccc;
  }


  /* 確認や送信、戻るボタンの領域 */
  .Form-Btn-Area {
    width: 100%;
  }



}