@charset "UTF-8";
/*友人紹介用 start*/
div.shokai_banner {
  display: none;
}

form:has(select[name="belong;s"] option) :is(.other-field, .other-field1, select[name="belong;s"] option[value="友人紹介での入塾"]) {
  display: none;
}

/*期間内の日付を選択すると、紹介文や選択項目が登場*/
form:has(select[name="start;s"] option[value="10月1日から"]:checked) :is(.other-field1, select[name="belong;s"] option[value="友人紹介での入塾"]) {
  display: block;
}

form:has(select[name="start;s"] option[value="10月15日から"]:checked) :is(.other-field1, select[name="belong;s"] option[value="友人紹介での入塾"]) {
  display: block;
}

form:has(select[name="start;s"] option[value="11月1日から"]:checked) :is(.other-field1, select[name="belong;s"] option[value="友人紹介での入塾"]) {
  display: block;
}

form:has(select[name="start;s"] option[value="11月15日から"]:checked) :is(.other-field1, select[name="belong;s"] option[value="友人紹介での入塾"]) {
  display: block;
}

/*友人紹介を選択すると、記入欄が登場*/
form:has(select[name="belong;s"] option[value="友人紹介での入塾"]:checked) .other-field {
  display: block;
}

/*友人紹介用 end*/