@charset "utf-8";

/*============================
      汎用スタイル
============================*/
.mb5 {
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .mb5 {
    margin-bottom: 10px;
  }
}
.mb30 {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .mb30 {
    margin-bottom: 50px;
  }
}
.mb100 {
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .mb100 {
    margin-bottom: 200px;
  }
}
/*============================
  レイアウト
============================*/
img {
  width: 100%;
  height: auto;
}
#wrapper {
  max-width: 750px;
  margin: 0 auto;
  color: #333333;
}
@media (min-width: 768px) {
  #wrapper {
    border: 1px solid #E7E7E7;
  }
}
.logo {
  width: 40%;
  margin: 3% 0 3% 15px;
}
@media (min-width: 768px) {
  .logo {
    width: 30%;
  }
}

/*タイトル_吹き出し*/
.balloon1 {
  position: relative;
  margin: 0 0 40px 0;
  padding: 10px 0px;
  min-width: 120px;
  max-width: 100%;
  color: #FFF;
  font-size: 20px;
  background: #43a303;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em
}
@media (min-width: 768px) {
  .balloon1 {
    padding: 18px 0px;
    font-size: 22px;
  }
}
.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #43a303;
}
.balloon1 p {
  margin: 0;
  padding: 0;
}

/*必須アイコン*/
.red_icon {
  position: relative;
  margin-bottom: 10px;
}
.red_icon:before {
  font-size: 12px;
  color: #ffffff;
  background-color: #ee4d4d;
  content: "\5FC5 \9808";
  position: absolute;
  top: 32%;
  transform: translateY(-30%);
  padding: 4px 6px;
  font-weight: bold;
}
.red_icon span {
  font-size: 15px;
   padding-left: 40px;
   white-space: nowrap;
}
@media (min-width: 768px) {
.red_icon span {
    font-size: 18px;
  }
}
/*コピーライト*/
.copy {
  width: 90%;
  color: #585858;
  font-size: 10px;
  border-top: 1px solid #333333;
  text-align: center;
  padding-top: 10px;
  margin: 20px auto 10px auto;
}

/*============================
      フォ―ム部分
============================*/
.form_area {
  width: 90%;
  margin: 10px auto 0px;
}
@media (min-width: 768px) {
.form_area {
  width: 70%;
  }
}

/*入力欄*/
input.txt {
  font-size: 18px;
  color: #000000;
  width: 100%;
  height: 54px;
  padding-left: 20px;
  background-color: #fffcdb; /*入力欄背景：黄色 */
  border: 1px solid #a2a2a2;
  border-radius: 8px;

}
@media (min-width: 768px) {
input.txt {
  height: 70px;
  }
}
input.txt::placeholder {
  color: #b4b4b4;
}
input.txt:focus::placeholder {
  color: transparent;
}
input.txt:focus::after {
  color: transparent;
}
.center {
text-align: center;
}
.ex {
  font-size: 12px;
  color: #474747;
  padding-left: 5px;
  line-height: 1.2;
}

/*ボタン*/
input[type="submit"] {
    color: #fff;
    font-size: 18px;
	font-weight: bold;
    cursor: pointer;
    -webkit-appearance: none;
    padding: 5% 7%;
    box-shadow: 0px 5px #cccccc;
	background-color: #81bc2e;
	border-radius:100px;
 }
input[type="submit"][disabled] {
	background-color: #ddd;
	cursor: default;
	box-shadow: 0px 5px #C8C8C8;
}
