@charset "utf-8";
.content {
	padding-bottom: 30px;
	line-height: 1.5;
}
.girlsEnquete_ttl {
  padding-top: 30px;
}
.girlsEnquete_txt {
	margin-top: 20px;
  padding-inline: 15px;
  font-size: 14px;
}
.girlsEnquete_txt_p span {
  color: #ff7db4;
}
.girlsEnquete_txt_img {
	display: flex;
	align-items: center;
	column-gap: 15px;
}
.girlsEnquete_txt_heading {
  font-weight: bold;
}
.girlsEnquete_txt_p {
  margin-top: 20px;
}

/*=====アンケートフォーム=====*/
.form {
  overflow: hidden;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.fieldset_txt {
  font-size: 14px;
}
fieldset {
  margin-inline: 15px;
  font-size: 14px;
}
.legend{
  margin-block: 15px;
}
.legend.ttl-tertiary {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	column-gap: 10px;
}
.required {
  display: block;
  width: 35px;
  margin-left: auto;
  padding: 3px 5px;
  border-radius: 2px;
  background: #ff6baa;
  color: #fff;
  font-size: 12px;
}

.twoLine {
  height: 60px;
  padding-right: 15px;
}
.twoLine_notice {
  height: 60px;
  padding-right: 40px;
}
.legend.mb15 .h4_notice {
  position: absolute;
  top: 15px;
  right: 0;
}

.form p,
.form div {
  padding: 0 0 15px;
  border-bottom: 1px solid #ccc;
}
.form p.textarea_ttl {
  padding: 20px 0 10px;
  border-bottom: none;
}

.form .bd_none {
  border-bottom: none;
}
.form .pb_none {
  padding-bottom: 0;
}

.block {
  display: block;
  margin: 10px 0;
}
.ipt_block {
  display: block;
}

/* ラジオボタン */
.form li {
  height: 30px;
  margin-bottom: 5px;
  background: #f5f5f5;
  line-height: 30px;
}
.form li input {
  vertical-align: middle;
}
input[type="text"],
input[type="email"],
input[type="number"],
.old_type_text {
  height: 2.5em;
  margin-right: 5px;
	padding: 3px 10px;
  border: 2px solid #999;
  border-radius: 4px;
  font-size: 16px;
}

/* テキストボックスのサイズ */
.box_mini {
  width: 80px;
}
.box_name {
  width: 100px;
}
.box_large {
  width: 100%;
}
.box_txt {
  width: 100%;
  height: 100px;
	padding: 10px;
  border: 2px solid #999;
  border-radius: 4px;
	font-size: 16px;
}
.box_menber {
  width: 200px;
}
.box_email {
  width: 250px;
}
.member_block {
  display: inline-block;
  margin: 15px 10px 10px 0;
}
.notice {
  display: inline-block;
  height: 18px;
  margin-top: -4px;
  padding: 2px 5px;
  border: 1px solid #ff7db4;
  border-radius: 2px;
  color: #ff7db4;
  font-size: 12px;
  line-height: 12px;
  vertical-align: middle;
}

/*送信ボタン*/
.form .buttons {
  padding: 15px 0 0;
  text-align: center;
}
.submit,
.reset {
  display: inline-block;
  border: 0;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  font-size: 16px;
  font-weight: bold;
  vertical-align: middle;
}
.submit {
  width: 180px;
  height: 45px;
  background-image: url(../img/submit.png);
  color: #fff;
}
.reset {
  width: 120px;
  height: 30px;
  background-image: url(../img/reset.png);
  color: #333;
}

/*** inputデザイン ***/
.form label {
  width: 100%;
}
.form input[type="radio"],
.form input[type="checkbox"] {
  width: 100%;
  display: inline-block;
  margin-right: 6px;
}
.form input[type="radio"] + label,
.form input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  font-size: 14px;
  line-height: 30px;
}

@media (min-width: 1px) {
  .form input[type="radio"],
  .form input[type="checkbox"] {
    display: none;
    margin: 0;
  }
  .form input[type="radio"] + label,
  .form input[type="checkbox"] + label {
    margin-left: 5px;
    padding: 0 0 0 24px;
  }
  .form input[type="radio"] + label::before,
  .form input[type="checkbox"] + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    box-sizing: border-box;
    display: block;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background: #fff;
  }
  .form input[type="radio"] + label::before {
    border: 2px solid #ccc;
    border-radius: 30px;
  }
  .form input[type="checkbox"] + label::before {
    border: 2px solid #ccc;
    border-radius: 4px;
  }
  .form input[type="radio"]:checked + label::after,
  .form input[type="checkbox"]:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    box-sizing: border-box;
    display: block;
  }
  .form input[type="radio"]:checked + label::after {
    left: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #fe77a7;
    border-radius: 8px;
  }
  .form input[type="checkbox"]:checked + label::after {
    top: 15px;
    left: 3px;
    width: 12px;
    height: 7px;
    margin-top: -5px;
    border-left: 3px solid #fe77a7;
    border-bottom: 3px solid #fe77a7;
    transform: rotate(-45deg);
  }
}

.inside_more {
	margin-top: 20px;
	padding-inline: 15px;
}
.inside_more a {
  position: relative;
  height: 44px;
  border: 2px solid #ddd4bc;
  border-radius: 5px;
  color: #4b3c3c;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
}
.inside_more a::after{
	position: absolute;
  top: 50%;
  right: 5px;
  width: 0;
  height: 0;
  margin-top: -6px;
  border: 6px solid transparent;
  border-left: 10px solid #4b3c3c;
  content: "";
}
.schedule .inside_more {
  margin: 10px 15px 30px;
}