@charset "UTF-8";
/* CSS Document */
.form-background{
	align-items: center;
	background-color: #fff;
	border-radius: 20px;
    padding: 20px;
    margin: 20px auto;
	display: flex;
	width: 90%;
	text-align: center;
	overflow: hidden;
}
.text-background{
	width: 90%;
	height: auto;
	border: solid 1px #CCC;
	border-radius: 3px;
    padding: 3px 8px;
    margin: 2px;
    vertical-align: middle
}
.trial-form-bg {
  background-color: #F3F3F3;
  padding: 10px;
  margin-top: 50px;
  margin-bottom: 100px;
}
.trial-form {
  margin: 50px auto;
}
.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 50px;
}
.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-top {
  display: flex;
  min-width: 200px;
}
.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;
}
.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;
}
.button-background{
    background-color: #fe793c;
	box-shadow: none;
    border: none;
    color: #fff;
    font-size: 18px;

	}
/*アコーディオン全体*/
.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%;
}
.trial-form-top-sp{
min-width: 270px;	
}
.mailform-sp{
	min-width: 200px;
}
@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 0px 0px;
    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;
    margin-top: 20px;
    border: #f3f3f3 1px solid;
    border-radius: 10px;
    opacity: 0.2;
  }
  .title {
    font-size: 1.5rem;
  }
  .trial-form-bg {
    margin-bottom: 50px;
  }
	.form-background{
		display: block;
		text-align: left;
	}
}