@charset "UTF-8";
/* CSS Document */
.trial-form-bg {
  background-color: #F3F3F3;
  padding: 10px;
  margin-top: 50px;
  margin-bottom: 100px;
}

.trial-text01 {
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
  padding: 30px;
  background-color: #FE793C;
  color: #fff;
  font-size: 1.6rem;
}
.trial-text02 {
  font-size: 1.4rem;
  padding: 20px 0 100px 30px;
}
.trial-text02 span {
  color: #FE793C;
}
.trial-form-top::before {
  content: "必須";
  background: #FE793C;
  color: #fff;
  padding: 0 10px;
  margin-right: 10px;
  border-radius: 5px;
}
.trial-form-group {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.trial-form-group td {}
.trial-form-top {
  display: flex;
  max-width: 270px;
}
.trial-form-select {
  max-width: 400px;
  display: flex;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.trial-form-select span {
  border: #111 1px solid;
  border-radius: 10px;
  padding: 5px;
	font-size: 1.4rem;
}
.trial-form-space {
  width: 500px;
  opacity: 0.2;
}
.form-text {
  font-size: 1.0rem;
  padding-top: 10px;
}
.trial-form-select td {
  margin-top: 20px;
}
.trial-form-inquiry {
  display: flex;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.trial-form-inquiry-space {
  height: 300px;
  width: 500px;
  margin-top: 20px;
  border: #111 1px solid;
  border-radius: 10px;
  opacity: 0.2;
}
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 50px auto 100px;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border-bottom: #111 1px solid;
  margin-bottom: 15px;
}
/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: normal;
  padding: 20px 20px 20px 70px;
  transition: all .5s ease;
}
/*アイコンの＋と×*/
.title::before, .title::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 2px;
  background-color: #333;
}
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  background: #f3f3f3;
  margin: 0 3% 3% 3%;
  padding: 3%;
}
@media screen and (max-width:920px) {
  .trial-form-group {
    display: block;
  }
  .trial-text01 {
    font-size: 15px;
    padding: 20px;
    margin: 50px 20px 0;
  }
  .trial-text02 {
    font-size: 10px;
    padding: 20px 0 50px;
    margin: 0 20px;
  }
  .trial-form-group {
    font-size: 1.5rem;
  }
  .trial-form-select {
    font-size: 1.5rem;
    display: block;
    text-align: left;
    padding: 10px;
    margin-bottom: 20px;
  }
  .trial-form-inquiry-space {
    height: 200px;
    width: 100%;
    margin-top: 20px;
    border: #f3f3f3 1px solid;
    border-radius: 10px;
    opacity: 0.2;
  }
  .title {
    font-size: 1.5rem;
  }
  .trial-form-bg {
    margin-bottom: 50px;
  }
  .accordion-area {
    margin: 50px auto 50px;
  }
}