.shinseiContainer {
  width: 100%;
  max-width: 1220px;
  padding: 0;
  margin: 0 auto;
}

.shinseiContainer {
  padding-bottom: 30px;
}

.shinseiContainer #topicPath {
  background-color: #fff;
  box-shadow: 0px 0px 10px 10px #fff;
  margin-top: 0;
}

.shinseiMainVisual {
  background-image: url("/content/000443386.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 13px;
}

.shinseiMainTitle {
  background-color: #fff;
  box-shadow: 0px 0px 10px 10px #fff;
  margin-top: 66px;
  margin-bottom: 30px;
}

.shinseiTitleDescription {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

.shinseiDescriptionWrapper {
  margin-bottom: 70px;
}

.shinseiDescriptionText {
  background-color: #fff;
  box-shadow: 0px 0px 10px 10px #fff;
  /*font-size: 1.6rem;*/
  font-size: 1rem;
  color: #333;
  line-height: 30px;
  text-align: left;
  letter-spacing: 0;
}

.shinseiCitySilhouette {
  width: 200px;
  height: 120px;
  background: linear-gradient(135deg, #90EE90 0%, #98FB98 100%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.shinseiCitySilhouette::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
  clip-path: polygon(0% 100%, 10% 60%, 20% 80%, 30% 40%, 40% 70%, 50% 30%, 60% 60%, 70% 20%, 80% 50%, 90% 10%, 100% 40%, 100% 100%);
}

.shinseiSection {
  margin-bottom: 80px;
}

.shinseiSection2 {
  padding-bottom: 80px;
  border-bottom: 1px solid #BEBEBE;
  margin-bottom: 80px;
}

.shinseiSectionTitle {
  display: flex;
  align-items: center;
  padding: 0px 20px;
  border-radius: 10px 10px 0 0;
  height: 80px;
  background-color: #067C59;
}

.shinseiSectionTitleText {
  /*font-size: 2.4rem;*/
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0;
  margin: 0;
}

.shinseiCheckboxGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  border: none;
  padding: 30px;
  margin: 0;
  background-color: #EEF8E7;
  border-radius: 0 0 10px 10px;
}

.shinseiCheckboxGrid legend {
  display: none;
}

.shinseiCheckboxItem {
  display: flex;
  align-items: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.shinseiCheckboxItem:focus-within:focus-visible {
  border-color: #067C59;
}

.shinseiCheckboxItem input[type="checkbox"] {
  margin-right: 12px;
  transform: scale(1.2);
  accent-color: #067C59;
  cursor: pointer;
}

.shinseiCheckboxItem label {
  /*font-size: 1.6rem;*/
  font-size: 1rem;
  cursor: pointer;
  flex: 1;
  line-height: 1.4;
  letter-spacing: 0;
}

.shinseiSearchForm {
  background-color: #F8F6E3;
  padding: 50px;
  border-radius: 10px;
  margin: 30px auto 0;
}

.shinseiSerchContainer {
  margin: 0 auto;
}

.shinseiSearchForm fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.shinseiFormRow {
  display: flex;
  align-items: center;
  gap: 30px;
}

.shinseiFormRow + .shinseiFormRow {
  margin-top: 20px;
}

.hiddenFields {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
  margin-top: 0;
}

.hiddenFields.show {
  max-height: 500px;
  opacity: 1;
  margin-top: 24px;
}

.shinseiFormGroup {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
}

.shinseiFormLabel {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 140px;
  font-weight: bold;
  color: #333;
  /*font-size: 1.8rem;*/
  font-size: 1.125rem;
  flex-shrink: 0;
  font-weight: normal;
  letter-spacing: 0;
}

.shinseiFormLabelBar {
  width: 6px;
  height: 30px;
  background-color: #067C59;
}

.formInputContainer {
  width: 100%;
}

.helpTextLine {
  /*font-size: 1.6rem;*/
  font-size: 1rem;
  font-weight: 400;
  line-height: 26px;
  color: #000000;
  letter-spacing: 0;
}

.shinseiFormInputContainer {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 14px;
}

.shinseiFormInput {
  display: block;
  width: 780px;
  padding: 15px 20px;
  box-sizing: border-box;
  border: 2px solid #ddd;
  border-radius: 5px;
  /*font-size: 1.6rem;*/
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: white;
  min-width: 0;
}

.shinseiFormInput:focus {
  border-color: #067C59;
  box-shadow: 0 0 0 2px rgba(6, 124, 89, 0.2);
}

.shinseiFormInput::placeholder {
  color: #757575;
}

.shinseiFormSelect {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  /*font-size: 1.6rem;*/
  font-size: 1rem;
  background-color: white;
  cursor: pointer;
  transition: border-color 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 11' fill='none' stroke='%23067C59' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='1,1 9.5,9 18,1'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 45px;
  min-width: 0;
  width: 100%;
  max-width: 400px;
  color: #333;
}

.shinseiFormSelect:focus {
  border-color: #067C59;
  box-shadow: 0 0 0 2px rgba(6, 124, 89, 0.2);
}

.shinseiFormSelect option[value=""] {
  color: #757575 !important;
}

.shinseiFormSelect option {
  color: #000;
}

.shinseiButtonGroup {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}

.shinseiBtn {
  padding: 15px 35px;
  border: none;
  border-radius: 8px;
  /*font-size: 1.6rem;*/
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
  justify-content: center;
}

.shinseiBtn:focus {
  outline: 2px solid #067C59;
  outline-offset: 2px;
}

.shinseiBtnPrimary {
  background-color: #067C59;
  color: white;
  width: 284px;
}

.shinseiBtnSecondary {
  background-color: white;
  color: #067C59;
  border: 2px solid #067C59;
  width: 284px;
  height: 65px;
}

.shinseiBtnIcon {
  font-size: 1.125rem;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #067C59;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shinseiSearch {
  display: none !important;
}

.expand-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  cursor: pointer;
}
/*
.isExpand {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background-color: #067C59;
  border: none;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
  cursor: pointer;

}

.isExpand::before,
.isExpand::after {
  content: '';
  position: absolute;
  background-color: white;
  transition: all 0.3s ease;
}

.isExpand::before {
  width: 14.37px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.isExpand::after {
  width: 1px;
  height: 14.37px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.isExpand.expanded::after {
  transform: translate(-50%, -50%) rotate(90deg)
}
*/

.expand-button {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background-color: #067C59;
  border: none;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
  cursor: pointer;

}

.expand-button::before,
.expand-button::after {
  content: '';
  position: absolute;
  background-color: white;
  transition: all 0.3s ease;
}

.expand-button::before {
  width: 14.37px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.expand-button::after {
  width: 1px;
  height: 14.37px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.isExpand.expanded .expand-button::after {
  transform: translate(-50%, -50%) rotate(90deg)
}

.expand-label {
  /*font-size: 1rem;*/
  font-size: 0.875rem;
  color: #067C59;
  line-height: 30px;
  letter-spacing: 0;
  user-select: none;
  transition: color 0.3s ease;
  font-weight: 400;
  cursor: pointer;
}

.expand-container:hover .expand-label {
  color: #067C59;
  text-decoration: underline;
}

.sp .shinseiContainer {
  padding: 0 5px;
  margin-bottom: 70px;
  box-sizing: border-box;
}

.sp .shinseiContainer #topicPath {
  border: none;
}

.sp .shinseiMainVisual {
  padding-top: 0;
}

.sp .shinseiDescriptionWrapper {
  margin-bottom: 24px;
  padding: 0;
}

.sp .shinseiSearch {
  display: block !important;
}

.sp .shinseiMainTitle {
  width: 100%;
  max-width: 311px;
  margin-top: 42px;
  margin-bottom: 20px;
}

.sp .shinseiSection {
  margin-bottom: 20px;
}

.sp .shinseiSection2 {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 40px;
}

.sp .shinseiSectionTitle {
  height: auto;
  padding: 15px 20px;
  height: 50px;
}

.sp .shinseiSectionTitleText {
  /*font-size: 1.8rem;*/
  font-size: 1.125rem;
}

.sp .shinseiCitySilhouette {
  display: none;
}

.sp .shinseiCheckboxGrid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 15px 10px;
}

.sp .shinseiCheckboxItem {
  padding: 8px 10px;
}

.sp .shinseiCheckboxItem label {
  /*font-size: 1.4rem;*/
  font-size: 0.875em;
}

.sp .shinseiFormRow {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sp .hiddenFields.show {
  margin-top: 10px;
}

.sp .shinseiFormGroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.sp .shinseiFormLabel {
  width: 100%;
  /*font-size: 1.4rem;*/
  font-size: 0.875em;
  position: relative;
  min-width: auto;
}

.sp .shinseiFormLabelBar {
  width: 5px;
  height: 23px;
  background-color: #067C59;
}

.sp .helpTextLine {
  /*font-size: 1.2rem;*/
  font-size: 0.75rem;
  line-height: 1.2;
}

.sp .shinseiFormInputContainer {
  gap: 10px;
  margin-top: 10px;
}

.sp .shinseiFormInput,
.sp .shinseiFormSelect {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 5px;
  /*font-size: 1.6rem;*/
  font-size: 1rem;
  background-color: white;
  margin-top: 0;
  min-width: 0;
  max-width: none;
  box-sizing: border-box;
}

.sp .shinseiFormSelect {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 11' fill='none' stroke='%23067C59' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='1,1 9.5,9 18,1'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  -webkit-appearance: none;
  appearance: none;
  color: #C9C9C9;
}

.sp .shinseiFormInput:focus,
.sp .shinseiFormSelect:focus {
  border-color: #067C59;
  box-shadow: 0 0 0 2px rgba(6, 124, 89, 0.2);
}

.sp .shinseiFormInput::placeholder {
  color: #C9C9C9;
  /*font-size: 1.4rem;*/
  font-size: 0.875rem;
}

.sp .shinseiButtonGroup {
  flex-direction: row;
  gap: 15px;
}

.sp .shinseiBtn {
  min-width: auto;
  width: 47%;
  padding: 12px 20px;
  /*font-size: 1.4rem;*/
  font-size: 0.875em;
}

.sp .shinseiSearchForm {
  padding: 30px;
  margin: 20px auto 0;
}

.sp .shinseiButtonGroup {
  margin-top: 30px;
}

.sp .expand-label {
  line-height: 1.6;
  text-align: center;
}