@charset "UTF-8";

/*==================================================
# 2025年3月検索ボックス改修
==================================================*/
/* 共通パーツ（タブ） */

.c-search-tabs {
  display: flex;
  gap: 8px;

}

.c-search-tabs__tab {
  border-radius: 5px 5px 0 0;
  text-align: center;
  padding: 8px;
  font-size: 20px;
  line-height: calc(26 / 20);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border:1px solid #CCCCCC;
  border-bottom: none;
  color: #8B8B8B;
  flex: 1;
  background-color: #EEEEEE;
}

.c-search-tabs__tab span {
  font-size: 14px;
  line-height: calc(18.2 / 14);
}
.c-search-tabs__tab.is-active {
  background-color: #F08524;
  color: #fff;
  border:1px solid #F08524;
  border-bottom: none;
}

/* 共通パーツ（勤務地、科目　検索ボックス） */

.c-search-buttons {
  display: flex;
  gap: 8px;
  
 }
 
 .c-search-buttons__button {
        cursor: pointer;
        outline: none;
        appearance: none;
        border: 1px solid #CCCCCC;
        background-color: #fff;
        border-radius: 5px;
        padding: 0 28px 0px 8px;
        width: calc(50% - 4px);
        display: flex;
        gap: 4px;
        align-items: center;
        position: relative;
        height: 44px;
 }

 .c-search-buttons__button--full {
  width: 100%;
  padding-left: 8px;
}

 .c-search-buttons__button:before {
  content: "";
  background: url(../../img/pc/icon_search_arrow.svg) no-repeat center center /contain;
  width: 20px;
  height: 20px;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  
 }
 
 .c-search-buttons__label {
  font-size: 14px;
  line-height: calc(17.2 / 14);
  font-weight: 600;
  color: #333333;
  overflow: hidden; 
  text-overflow: ellipsis; 
  min-width: 0;
  display: -webkit-box; 
  -webkit-box-orient: vertical; 
  -webkit-line-clamp: 2; 
  max-height: 40px;
 }

 .c-search-buttons__label.selected {
  font-weight: 300;
  font-size: 12px;
  line-height: calc(14.4 / 12);
  text-align: left;
 }

 @media screen and (max-width: 768px) {
  .c-search-buttons__button {
    gap:4px;
    padding: 0 28px 0 4px;

  }
 }
 
/* 共通パーツ（チェックボックス） */

.c-search-checkbox {
  display: flex;
  text-decoration: none!important;
 }

 .c-search-checkbox--result-prefecture {
  height: 16px;
  z-index: 2;
  position: relative;
  padding-left: 22px;
  display: inline-block;
  cursor: pointer;
}

 .c-search-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
 }

 
 .c-search-checkbox__icon {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #CCCCCC;
  position: absolute;
  background-color: #fff;
  left: 0;
  box-sizing: border-box;
 }

 .c-search-checkbox__icon:before {
  content: "";
  background: url(../../img/pc/icon_search_check.svg) no-repeat center center /contain;
  position: absolute;
  width: 12px;
  height:10px;
  left: 2px;
  top: 4px;
  opacity: 0;
 }
 
 .c-search-checkbox__input:checked + .c-search-checkbox__icon {
  background-color: #F08524;
  border: none;
 }

 .c-search-checkbox__input:checked + .c-search-checkbox__icon:before {
  opacity: 1;
 }
 
 .c-search-checkbox__result-label {
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
 }

 .c-search-modal__select-label {
  font-size: 11px;
  line-height: calc(13.2 / 11);
  text-align: center;
  color: #fff;
  background-color: #7494B2;
  margin-left: 8px;
  font-weight: 600;
  display: inline-block;
  padding: 2px;
}

 .c-search-checkbox__label {
  position: relative;
  padding-left: 22px;
  font-weight: 300;
  font-size: 14px;
  line-height: calc(18.2 / 14);
 }

 .c-search-checkbox__label--bold {
  font-weight: 600;
 }


 .c-search-checkbox__label--column {
  padding-left: 0;
  padding-top: 20px;
  flex-direction: column;
  line-height: 1;
 }



 .c-search-checkbox__accordion {
  display: none;
 }

 .c-search-checkbox__label:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #CCCCCC;
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 1px;
  box-sizing: border-box;
 }

 .c-search-checkbox__label:after {
  content: "";
  background: url(../../img/pc/icon_search_check.svg) no-repeat center center /contain;
  position: absolute;
  width: 12px;
  height:10px;
  left: 2px;
  top: 4px;
  opacity: 0;

 }
 .c-search-checkbox__input:checked + .c-search-checkbox__label:before {
  background-color: #F08524;
  border: none;
 }
 .c-search-checkbox__input:checked + .c-search-checkbox__label:after {
  opacity: 1;
 }

 
 .c-search-checkbox__label--column:before {
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
 }


.c-search-checkbox__label--column:after {
  left: 50%;
  top: 3px;
  transform: translate(-50%, 0);
}



 /* 共通パーツ（検索テキストボックス） */
 
.c-search-input__input {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  color: #333;
  
}

.c-search-input__input::placeholder {
  font-weight: 300;
  font-size: 14px;
  line-height: calc(18.2 / 14);
  color: #CCCCCC;
}



 /* 共通パーツ（検索ボタン） */

 .c-search-submit {
  background: radial-gradient(100% 100% at 50% 0%, #F4BA40 0%, #EF8D34 100%);
  border-radius: 5px;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  outline: none;
  appearance: none;
  border: none;
  width: 100%;
 }


 .c-search-submit span {
  font-weight: 600;
  font-size: 16px;
  line-height: calc(20.8 / 16);
  color: #fff;
 }

 /* 共通パーツ（過去の条件で検索） */

 .c-search-history-button {
  background-color: #fff;
  border: 1px solid #CCCCCC;
  cursor: pointer;
  outline: none;
  padding: 8px;
  appearance: none;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1; 
  color: #333333;
 }


 /* 共通パーツ（条件クリア） */
 .c-search-clear {
  color: #333333;
  font-size: 12px;
  line-height: calc(15.6 / 12);
  font-weight: 300;
  background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
        text-decoration: underline;
        width: 100%;
 }
 

 /* 共通パーツ（検索モーダル） */
 .c-search-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: calc(100% - 60px);
  max-width: 960px;
  overflow: hidden;
  z-index: 10000;
  border: none;
  border-radius: 5px;
  padding: 0;
  color: #333333;

 }

 

@media screen and (min-width: 769px) {

  .c-search-modal {
    -ms-overflow-style: -ms-autohiding-scrollbar;  /* IE/Edge用 - 自動的に隠れるスクロールバー */
  
  }
  * Webkit（Chrome/Safari）用のスクロールバーカスタマイズ */
  .c-search-modal::-webkit-scrollbar {
    width: 8px;  /* スクロールバーの幅 */
  }
  
  .c-search-modal::-webkit-scrollbar-track {
    background: transparent;  /* スクロールバーの背景 */
  }
  
  .c-search-modal::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);  /* スクロールバーの色 */
    border-radius: 4px;  /* スクロールバーの角丸 */
  }
  
  /* ホバー時の色を少し濃くする */
  .c-search-modal::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
  }
  }

 .c-search-modal[open] {
  display: flex;
  flex-direction: column;
}

 .c-search-modal--location {
  height: 588px;
 }

 .c-search-modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
 }
 
 .c-search-modal__head {
  background-color: #7494B2;
  padding: 12px;
  display: flex;
  justify-content: flex-end;
  position: sticky;
  top: 0;
  z-index: 2;
 }
 
 .c-search-modal__title {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: calc(26 / 20);
  width: calc(100% - 24px);
  text-align: center;
  padding-left: 24px;
 }
 
 .c-search-modal__close {
  background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
 }

 .c-search-modal__column {
  display: flex;
  overflow-y: auto;
 }
 
 .c-search-modal__body {
  padding: 20px;
  text-align: left;
  overflow-y: auto;
  position: relative;
  z-index: 1;
 
 }

 .c-search-modal__body--cities {
  display: none;
 }

 
 .c-search-modal__body--result-prefectures {
  padding: 0;
  width: 176px;
  flex-shrink: 0;
 }

 .c-search-modal__body--result-cities {
  padding: 20px 17px 20px 20px;
  width: calc(100% - 156px);
  
}

.c-search-modal__block {
  margin-top: 20px;
}

 .c-search-modal__result-list {
  border-right: solid 1px #E2E2E2;

 }

 .c-search-modal__result-item {
  height: 52px;
  padding: 0 8px 0 12px;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.3s ease 0s;
  cursor: pointer;

 }

 .c-search-modal__result-item.is-active {
  background-color: #DDE9F8;
 }

 .c-search-modal__result-item:hover {
    background-color: #DDE9F8;
 }

 .c-search-modal__result-item:not(:last-child) {
  border-bottom: solid 1px #E2E2E2;
 }


 
 .c-search-modal__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 8px;
 
 }

 .c-search-modal__list--location {
  gap: 16px 8px;
 }
 
 .c-search-modal__item {
  width: 100%; 
  display: flex;
  flex-direction: column;
 }

 .c-search-modal__item--narrow {
  width: calc(25% - 6px);
 }

 .c-search-modal__item + .c-search-modal__item {
  
 }
 
 .c-search-modal__all {
  width: calc(1 / 6* 100% - 8px* 5 / 6);
 }
 .c-search-modal__item--result {
  display: none;
 }
 .c-search-modal__item--result.is-active {
  display: block;
 }
 .c-search-modal__back {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  color: #F08524;
  padding: 0 0 0 12px;
  position: relative;

 }

 .c-search-modal__back::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 1px #F08524;
  border-right: solid 1px #F08524;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
 }

 .c-search-modal__list--prefecture {
  margin-top: 20px;
 }

 .c-search-modal__prefecture {
  font-size: 16px;
  line-height: calc(21 / 16);
  font-weight: 600;
  color: #333333;
  padding-left: 12px;
  border-left: solid 4px #F08524;

 }

 .c-search-modal__labels {
  margin-top: 16px;
  display: flex;
  gap: 16px;
 }
 
 .c-search-checkbox__label--all {
  font-size: 16px;
  line-height: calc(20.8 / 16);
  font-weight: 600;
 
 }

 .c-search-modal__sub-wrapper {
  margin-top: 8px;
  background-color: #F6F6F6;
  flex-grow: 1;
  border-radius: 5px;
  padding: 12px;
 }
 
 .c-search-modal__sub {
  
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
 }

 .c-search-modal__sub--location {
  gap: 8px;
 }
 
 .c-search-modal__sub-item {
  width: calc(1 /6 * 100% - 8px * 5 / 6);
 
 }

 .c-search-modal__item--narrow .c-search-modal__sub-item {
  width: calc(50% - 4px);

 }

 .c-search-modal__cities-wrapper {
  display: none;
 }

 .c-search-modal__location {
  margin-top: 48px;
  background-color: #F6F6F6;
  padding: 12px 16px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;

 }
 
 .c-search-modal__location-text {
  font-weight: 300;
  font-size: 13px;
  line-height: calc(16.9 / 13);
 
 }
 
 .c-search-modal__location-button {
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  color: #F08524;
  padding: 0 12px 0 0;
  background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        appearance: none;
        position: relative;

 }

 .c-search-modal__location-button:disabled {
  color: #CCCCCC;
  cursor: default;
 }
 
 .c-search-modal__location-button::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 1px #F08524;
  border-right: solid 1px #F08524;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
 }
 
.c-search-modal__location-button:disabled::before {
  border-color: #CCCCCC;
 }
 
 .c-search-modal__footer {
  box-shadow: 0px -4px 6px 0px #0000001A;
  padding: 12px;
  background-color: #fff;
  position: sticky;
  bottom: 0;
  margin-top: auto;
  z-index: 100;
 
 
 }
 
 .c-search-modal__footer-column {
  max-width: 622px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
 }
 
 .c-search-modal__result {
  padding-left: 24px;
  width: 145px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;

 }
 
 .c-search-modal__result-count {
  color: #F08524;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  padding: 0 4px;

 
 }
 
 .c-search-modal__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
 
 }
 
 .c-search-modal__complete {
  text-align: center;
  background-color: #F08524;
  border-radius: 5px;
  padding: 12px;
        border: none;
        cursor: pointer;
        outline: none;
        appearance: none;
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        line-height: calc(20.8 / 16);
        width: 260px;
 
 }
 
 .c-search-modal__clear {
  font-size: 12px;
  line-height: calc(15.6 / 12);
  font-weight: 300;
  text-decoration: underline!important;
  color: #333333;
  background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
 
 }

 
/* 共通パーツ（勤務地/通勤時間検索） */
.c-search-type {

}

.c-search-type__radio-wrapper {
  display: flex;
  gap: 16px;
}

.c-search-type__radio {
}

.c-search-type__radio-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.c-search-type__radio-label {
  position: relative;
  padding-left: 22px;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  display: flex;
  align-items: center;
}

.c-search-type__radio-label:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #CCCCCC;
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
 }

 .c-search-type__radio-label:after {
  content: "";
  background: #fff;
  position: absolute;
  border-radius: 50%;
  width: 8px;
  height:8px;
  left: 4px;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
 }

 .c-search-type__radio-input:checked + .c-search-type__radio-label:before {
  background-color: #F08524;
  border: none;
 }

 .c-search-type__radio-input:checked + .c-search-type__radio-label:after {
  opacity: 1;
 }


.c-search-type__content {
  margin-top: 8px;
  display: none;
}

.c-search-type__content.is-active {
  display: block;
}

.c-search-type__input-label {
  display: flex;
  gap: 4px;
  align-items: center;
}

.c-search-type__input-field {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  padding: 9px 12px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  height: 44px;
}

.c-search-type__input-field::placeholder {
  color: #ccc;
}

.c-search-type__input-label span {
  font-size: 14px;
  width: 28px;
  flex-shrink: 0;
}

.c-search-type__filters {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-search-type__select-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-grow: 1;
}

.c-search-type__select-wrapper span {
  font-size: 14px;
  width: 42px;
  flex-shrink: 0;
}

.c-search-type__select {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  padding: 0 4px 0 8px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  -webkit-appearance: none;
  appearance: none;
  background: url(../../img/pc/icon_search_select.svg) no-repeat right 0px center / 20px auto;
  background-color: #fff;
  height: 44px;
}

.c-search-type__select:has(option[value="0"]:checked) {
	color: #ccc;
}

.c-search-type__select:not(:has(option[value="0"]:checked)) {
	color: #333;
}


/* 勤務カレンダー */
.c-search-calender__item:last-child {
  margin-right: 0;
}

.c-search-calender__table {
  width: 100%;
  border: 0;

}
.c-search-calender__table th {
  font-weight: 600;
  text-align: center;
  background-color:#F5F4F4;
  border: 1px solid #ccc;
}
.c-search-calender__table th label {
  display: inline-block; 
  width: 100%; 
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-search-calender__table th.first {
  width: calc(110 / 574 * 100%);
  padding-left: 8px;
  text-align: left;
}
.c-search-calender__table td {
  vertical-align: middle;
  border: 1px solid #CCCCCC;
  text-align: center;
  position: relative;
}

.c-search-calender__table td.active {
  background-color: #EAF2F5;
}

.c-search-calender__table th label.disabled_day {
  background:#ffffff;
}

.c-search-calender__table th input[type="checkbox"]:checked + label,
.c-search-calender__table th label.active {
  background: linear-gradient(to bottom, #fffcc0, #ffeba4 50%);
  box-shadow:4px 4px 9px -9px #000000 inset;
}

.c-search-calender__table th:has(input[type="checkbox"]:checked), .c-search-calender__table td:has(input[type="checkbox"]:checked) {
  background-color: #EAF2F5;
}
.c-search-calender__table td input{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  background: url('../../img/pc/icon_checkbox_off.svg') center center no-repeat;
  background-size: 16px;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.c-search-calender__table td input:checked {
  background: url('../../img/pc/icon_checkbox_on.svg') center center no-repeat;
  background-size: 16px;
}

.c-search-calender__sub {
  margin-top: 8px;
}

.c-search-calender__sub-list {
  padding-top: 4px;
  padding-left: 8px;
}

.c-search-calender__sub-item {
  width: calc(25% - 6px);
}

/* 詳細検索 */
.detail-search {
  margin-top: 32px;
  margin-bottom: 30px;

}


.detail-search__container {
  border-top: 4px solid #F08524;
  
}

.detail-search__content {
  padding: 24px 0 16px;
  background-color: #F5F4F4;

}

.detail-search__panel {
  display: none;
}

.detail-search__panel--part {
  padding: 0 24px;
}

.detail-search__panel.is-active {
  display: block;
}

.detail-search__panel-column {
  display: flex;
  gap: 8px;
}

.detail-search__type {
  padding: 16px;
  background-color: #fff;
  flex: 1;
}


.detail-search__filters {
  padding: 16px;
  background-color: #fff;
  flex: 1;
}

.detail-search__buttons {
  flex-direction: column;
}

.detail-search__blocks {
  margin-top: 8px;
  height: var(--calendar-height);
  overflow: hidden;
  transition: height 0.3s ease;
}

.detail-search__blocks.is-open {
  height: 1234px;
}

.detail-search__block {
  background-color: #fff;
  padding: 12px;
}

/* 初期状態では最初のブロックのみ表示 */
.detail-search__block:not(.detail-search__block--calender) {
  display: none;
}

/* 開いた状態ではすべてのブロックを表示 */
.detail-search__blocks.is-open .detail-search__block {
  display: block;
}


.detail-search__block--calender {
  padding: 24px;
}

.detail-search__block + .detail-search__block {
  margin-top: 12px;
}

.detail-search__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  display: flex;
  gap: 4px;
  align-items: center;
  border-bottom: 1px solid #EEEEEE;
  padding-bottom: 8px;
}

.detail-search__title--calender {
  border: none;
}

.detail-search__title--freeword {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-search__features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.detail-search__features-list + .detail-search__features-list {
  margin-top: 8px;
}

.detail-search__feature {
  width: calc(25% - 6px);
    display: flex;
    gap: 6px;
}

.detail-search__feature:last-child {
  white-space: nowrap;
}

.detail-search__freeword {
  margin-top: 8px;
  display: block;
}

.detail-search__more-area {
  margin-top: 16px;

}

.detail-search__more {
  background-color: #EEEEEE;
  text-align: center;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  padding: 9px;
  width: 100%;
}

.detail-search__more span {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
}

/* 矢印アイコンのアニメーション */
.detail-search__more img {
  transition: transform 0.3s ease;
}


.detail-search__more.is-open img {
  transform: rotate(180deg);
}

.detail-search__actions {
  margin: 24px auto 0;
  text-align: center;
  max-width: 574px;

}

.detail-search__result {
  margin-right: 8px;
  font-size: 12px;
  line-height: 1;
  font-weight: 300;
  width: 145px;
  flex-shrink: 0;
}

.detail-search__result-count {
  color: #F08524;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  padding: 0 4px;
}

.detail-search__controls {
 
  display: flex;
  align-items: center;

}

.detail-search__submit {
  margin-right: 12px;
  max-width: 260px;

}

.detail-search__clear {
  margin-top: 8px;
  display: block;

}


.detail-search__history-button {
  flex-shrink: 0;

}

.detail-search-modal {
  min-height: 626px;
  max-width: 980px;
}

.detail-search__spot {
  text-align: center;
}

.main-area__list {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.main-area__item {
  flex: 1;
}

.main-area__item--beginner span {
  min-width: 112px;
  
}

.main-area__item a {
  text-decoration: none;
  padding: 10px 0;
  background-color: #F6F6F6;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 8px;
  font-size: 14px;
  color: #333333; 
  font-weight: 600;
}


.headline--column {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  font-size: 26px;
  padding-top: 15px;
}

.headline-ttl-sub {
  display: flex;
  gap: 16px;
  font-size: 16px;
  font-weight: 300;
}
.hidden_input{
  display:none;
}