@charset "UTF-8";
/*========== 子ページ ==========*/
/*==========
子ページ共通
==========*/
body:not(:has(#breadcrumb)) main {
  margin-top: 85px;
}

main {
  background-color: #fff;
  margin-bottom: 5rem;
  padding-top: var(--paddingSection);
  padding-bottom: calc(var(--paddingSection) * 1.5);
  border-radius: var(--border_radius);
  min-height: 30vh;
  min-height: 30dvh;
}

h2:not([class]) {
  font-size: 1.75rem;
}
@media screen and (max-width: 959px) {
  h2:not([class]) {
    font-size: 1.25rem;
  }
}

/*=== breadcrumb ===*/
#breadcrumb {
  padding: 2.5rem 0 1.5rem;
}

.list_breadcrumb {
  font-size: 0.875rem;
  display: flex;
  justify-content: flex-start;
  white-space: nowrap;
  overflow: auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.list_breadcrumb::-webkit-scrollbar {
  display: none;
}
.list_breadcrumb > *:not(:last-child) {
  display: flex;
  align-items: center;
}
.list_breadcrumb > *:not(:last-child)::after {
  content: "";
  margin: 0 0.5em;
  width: 0.5em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow-green.svg") no-repeat;
  display: block;
}
.list_breadcrumb a {
  color: var(--color_green);
  text-decoration: none;
}
.list_breadcrumb .icon_home::before {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_home-green.svg") no-repeat;
  display: block;
  margin-bottom: 0.125em;
}
@media screen and (max-width: 959px) {
  .list_breadcrumb {
    font-size: 0.75rem;
  }
}

/*=== pagination ===*/
.layout_pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem 0;
}
.layout_pagination .pagination {
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.layout_pagination .pagination > *:not(:has(a)),
.layout_pagination .pagination a {
  min-width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color_green);
  color: var(--color_green);
  padding: 2px;
}
.layout_pagination .pagination a {
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  .layout_pagination .pagination a {
    transition: background-color 0.5s, color 0.5s;
  }
  .layout_pagination .pagination a:hover {
    color: #fff;
    background-color: var(--color_green_hover);
    opacity: 1;
  }
}
.layout_pagination .pagination .dots a {
  pointer-events: none;
}
.layout_pagination .pagination .disable a {
  pointer-events: none;
  background-color: var(--color_gray_bg);
  border-color: var(--color_border);
  color: var(--color_border);
}
.layout_pagination .pagination .current a {
  background-color: var(--color_green);
  color: #fff;
}
.layout_pagination .pagination .sp_br {
  display: none;
}
.layout_pagination .page_now {
  font-weight: 700;
  color: var(--color_green);
  margin-left: auto;
}
@media screen and (max-width: 959px) {
  .layout_pagination .pagination .sp_br {
    display: block;
    opacity: 0;
    width: 100%;
    height: 0;
    padding: 0;
    margin: 0;
  }
  .layout_pagination .pagination .sp_row_under {
    order: 1;
  }
}

/*==========
当サイトについて
==========*/
#about_intro .bg {
  background-color: var(--color_lightblue_bg);
  border-radius: var(--border_radius);
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-weight: 500;
}
#about_intro .bg .title {
  font-size: 1.125rem;
  color: var(--color_green);
  margin-bottom: 1rem;
}
@media screen and (max-width: 959px) {
  #about_intro .bg {
    padding: var(--paddingLR) calc(var(--paddingLR) / 2);
  }
  #about_intro .bg .title {
    font-size: 1rem;
  }
}

#about_vision .flex {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
#about_vision .flex .text_area {
  flex: 1;
}
#about_vision .flex .img_area {
  width: 37.5%;
}
#about_vision h3:not([class]) {
  text-align: center;
}
#about_vision .list {
  font-size: clamp(0.75rem, 1.25vw, 1rem);
  display: flex;
  justify-content: center;
  gap: 2.5em;
}
#about_vision .list > * {
  flex: 1;
}
#about_vision .list > *:nth-child(1) .bubble::after {
  left: 4em;
}
#about_vision .list > *:nth-child(1) .bubble .row {
  margin-left: 15.38%;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}
#about_vision .list > *:nth-child(1) .bubble .row + .row {
  margin-top: -0.75em;
  margin-left: 0;
  margin-right: 15.38%;
}
#about_vision .list > *:nth-child(2) .bubble::after {
  left: auto;
  right: auto;
  background-image: url("../img/child/about/about_vision_bubble_orange.svg");
}
#about_vision .list > *:nth-child(2) .bubble .row {
  background-color: #FBEEE3;
}
#about_vision .list > *:nth-child(3) .bubble::after {
  right: 2em;
  transform: translate(-50%, 100%) scale(-1, 1);
}
#about_vision .list .bubble {
  margin-bottom: 1.75em;
  text-align: center;
  font-weight: 500;
  position: relative;
}
#about_vision .list .bubble::after {
  content: "";
  width: 2em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/child/about/about_vision_bubble_blue.svg") no-repeat;
  position: absolute;
  bottom: 0.325em;
  transform: translate(-50%, 100%);
}
#about_vision .list .bubble .row {
  display: block;
  background-color: #E5F3FC;
  padding: 1em;
  border-radius: 100px;
}
#about_vision .list img {
  margin-left: auto;
  margin-right: auto;
}
#about_vision .list .text {
  font-size: 1.125em;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  #about_vision .flex {
    flex-direction: column;
  }
  #about_vision .flex .img_area {
    width: 80%;
    max-width: 200px;
    margin-left: auto;
  }
  #about_vision .list {
    flex-wrap: wrap;
  }
  #about_vision .list > * {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    flex-shrink: 0;
  }
  #about_vision .list .bubble {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
  #about_vision .list img {
    max-width: 120px;
  }
}

#about_can .list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1.5rem 2.5rem;
}
#about_can .list > * {
  position: relative;
  padding-left: 3.625em;
}
#about_can .list > *::before {
  content: "";
  width: 3em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_checkmark-green.svg") no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
#about_can .list .title {
  margin-top: 0.5em;
  margin-bottom: 0.75em;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color_green);
}
#about_can .etc {
  padding-left: 3.625rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color_green);
  margin-top: 1.5rem;
}
#about_can figure {
  margin: 2.5rem auto;
}
#about_can .btn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
}
#about_can .btn_wrap .btn_01 {
  font-size: 1rem;
  line-height: 1.4;
}
#about_can .btn_wrap .btn_01 .big {
  font-size: 1.25em;
}
@media screen and (max-width: 959px) {
  #about_can .list {
    grid-template-columns: 1fr;
  }
  #about_can .list > * {
    padding-left: 1.5em;
  }
  #about_can .list > *::before {
    width: 1.25em;
    margin-top: 0.125em;
  }
  #about_can .list .title {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0.5em;
  }
  #about_can .etc {
    padding-left: 1.5rem;
    font-size: 1rem;
  }
  #about_can .btn_wrap .btn_01 {
    font-size: 0.8125rem;
  }
}

#about_outro .bg {
  background-color: var(--color_lightblue_bg);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-radius: var(--border_radius);
}
#about_outro .bg .text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777;
}
#about_outro .flex {
  display: flex;
  justify-content: space-between;
  gap: 1rem 2.5rem;
}
#about_outro h2:not([class])::after {
  display: none;
}
#about_outro .text_foot {
  margin-top: 2.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 959px) {
  #about_outro .bg {
    position: relative;
    padding: var(--paddingLR) calc(var(--paddingLR) / 2);
  }
  #about_outro .bg .text {
    font-size: 0.875rem;
  }
  #about_outro .flex {
    flex-direction: column;
  }
  #about_outro .img_area {
    width: 100px;
    position: absolute;
    right: 3rem;
    top: 0;
    transform: translate(50%, -50%);
  }
  #about_outro .text_foot {
    font-size: 0.875rem;
  }
}

/*==========
長野県の職業体験受入企業
==========*/
#company_intro a:not([class]) {
  color: var(--color_lightblue);
  font-weight: 700;
}
#company_intro .bg {
  background-color: var(--color_lightblue_bg);
  padding: 1.5rem 2.5rem 2.5rem;
  border-radius: var(--border_radius);
}
#company_intro .bg h2:not([class])::after {
  display: none;
}
#company_intro .bg .flex {
  display: flex;
  gap: 1rem;
}
#company_intro .bg .flex > * {
  flex: 1;
}
#company_intro .bg_white {
  margin-top: 1rem;
  padding: 1.5rem 2.5rem;
  border-radius: var(--border_radius);
  display: flex;
  gap: 1rem;
}
#company_intro .bg_white .title_area {
  margin-right: auto;
}
#company_intro .bg_white .title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color_green);
}
#company_intro .bg_white .list_area {
  flex: 1;
  max-width: 728px;
}
#company_intro .btn_area {
  margin-top: 2.5rem;
}
@media screen and (max-width: 959px) {
  #company_intro .bg,
#company_intro .bg_white {
    padding: var(--paddingLR) calc(var(--paddingLR) / 2);
  }
  #company_intro .bg .flex {
    flex-direction: column;
  }
  #company_intro .bg_white {
    flex-direction: column;
  }
  #company_intro .bg_white .title {
    font-size: 1.125rem;
  }
}

#company_serach {
  margin-top: 1rem;
}
#company_serach .layout_company_search {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
#company_serach .layout_company_search::after {
  display: none;
}

.layout_company {
  line-height: 1.4;
  min-width: 900px;
}
.layout_company th,
.layout_company td {
  border: 1px solid #246E68;
  padding: 0.625rem;
}
.layout_company td {
  font-size: 0.875rem;
}
.layout_company td:nth-child(1) {
  width: 14%;
}
.layout_company td:nth-child(2) {
  width: 30%;
}
.layout_company td:nth-child(3) {
  width: 43%;
}
.layout_company td:nth-child(4) {
  width: 12%;
}
.layout_company td:nth-child(5) {
  min-width: 4.5em;
}
.layout_company thead {
  background-color: var(--color_green);
  color: #fff;
  font-weight: 500;
}
.layout_company .number {
  color: var(--color_green);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.layout_company .type {
  font-weight: 500;
}
.layout_company .row_title {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}
.layout_company .title {
  font-weight: 500;
}
.layout_company .layout_category {
  flex-shrink: 0;
}
.layout_company .layout_category > * {
  background-color: var(--color_lightblue);
  color: #fff;
  border: none;
  padding: 0.125em;
  min-width: 4em;
  text-align: center;
}
.layout_company .content,
.layout_company .price {
  font-weight: 500;
}
.layout_company td:has(.btn) {
  padding: 0.25em;
  vertical-align: middle;
}
.layout_company .btn {
  width: 100%;
  max-width: 2.8125rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.25em;
  aspect-ratio: 1/1;
  font-weight: 500;
  background-color: var(--color_green);
  color: #fff;
  border-radius: 5px;
}
.layout_company .btn::after {
  content: "";
  width: 0.75em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow-white.svg") no-repeat;
  display: block;
}
.layout_company .cell_center {
  vertical-align: middle;
  text-align: center;
}

/*==========
キャリア教育の事例紹介
==========*/
#career-education .title_main {
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
  color: var(--color_green);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 959px) {
  #career-education .title_main {
    font-size: 1.25rem;
  }
}

/*==========
信州ものづくりマイスターの派遣
==========*/
#master_active .bg {
  margin-top: 1.5rem;
  background: var(--color_gray_bg);
  padding: 1.25rem 1.875rem;
}
@media screen and (max-width: 959px) {
  #master_active .bg {
    margin-top: 1rem;
    padding: var(--paddingLR) calc(var(--paddingLR) / 2);
  }
}

#master_how .btn_area {
  margin-top: 2.5rem;
}
#master_how .btn_area .btn_01 {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
#master_how .border_area {
  margin-top: 4rem;
  border: 2px solid var(--color_green);
  padding: 1.5rem 2.5rem;
  border-radius: var(--border_radius);
}
#master_how .border_area .title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color_green);
  margin-bottom: 1rem;
}
#master_how .border_area a {
  color: inherit;
  font-weight: 500;
}
#master_how .bg_area {
  margin-top: 2.5rem;
  background-color: var(--color_gray_bg);
  padding: 1.5rem 2.5rem;
  border-radius: var(--border_radius);
}
#master_how .bg_area .title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color_green);
  margin-bottom: 0.625rem;
}
#master_how .bg_area .title:not(:first-child) {
  margin-top: 1.75rem;
}
#master_how .bg_area a {
  color: inherit;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  #master_how .border_area {
    margin-top: 2.5rem;
    padding: var(--paddingLR) calc(var(--paddingLR) / 2);
  }
  #master_how .border_area .title {
    font-size: 1rem;
  }
  #master_how .bg_area {
    margin-top: 1.5rem;
    padding: var(--paddingLR) calc(var(--paddingLR) / 2);
  }
  #master_how .bg_area .title {
    font-size: 1rem;
  }
  #master_how .bg_area .title:not(:first-child) {
    margin-top: 1rem;
  }
}

#master_case h3 {
  text-align: center;
}
#master_case .bg {
  background-color: var(--color_lightblue_bg);
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  border-radius: var(--border_radius);
}
#master_case .layout_meister_case {
  margin-top: 2rem;
}
#master_case .layout_meister_case > *:not(:has(a)),
#master_case .layout_meister_case a {
  background-color: #fff;
}
#master_case .btn_01 {
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 959px) {
  #master_case .bg {
    padding: var(--paddingLR) calc(var(--paddingLR) / 2);
  }
  #master_case .btn_01 {
    margin-top: 1.5rem;
  }
  #master_case .layout_meister_case {
    margin-top: 0.5rem;
  }
  #master_case .layout_meister_case .title {
    font-size: 0.8125rem;
  }
}

.layout_genre {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.layout_genre .title_area {
  padding-right: 1rem;
  border-right: 1px dashed var(--color_blue_bg);
}
.layout_genre .title_area .title {
  font-weight: 700;
  color: var(--color_blue_bg);
  margin-top: 0.875em;
}
.layout_genre .list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  font-weight: 500;
  --btn_color: var(--color_lightblue);
}
.layout_genre .list a {
  background-color: var(--color_blue_bg);
  display: block;
  border-radius: 100px;
  padding: 0.75em 1.5em;
  color: #fff;
  text-decoration: none;
}
.layout_genre .list a {
  border: 2px solid var(--btn_color);
  background-color: var(--btn_color);
  border-radius: 5px;
}
.layout_genre .list .active {
  background-color: #fff;
  color: var(--btn_color);
}
@media screen and (max-width: 959px) {
  .layout_genre {
    flex-direction: column;
  }
  .layout_genre .title_area {
    padding-right: 0;
    border-right: none;
  }
  .layout_genre .list {
    font-size: 0.8125rem;
  }
  .layout_genre .list a {
    padding: 0.5em 1em;
  }
}

#master_report .layout_meister_report .row_title .title {
  font-size: 1rem;
}
#master_report .layout_meister_report .text_area {
  font-size: 1rem;
}
#master_report .btn_01 {
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 959px) {
  #master_report .layout_meister_report .row_title .title {
    font-size: 0.875rem;
  }
  #master_report .layout_meister_report .text_area {
    font-size: 0.8125rem;
  }
}

#master_foot .list_circle {
  font-size: 1.375rem;
}
#master_foot .list_circle .title {
  font-weight: 700;
  color: var(--color_green);
}
#master_foot .list_circle a {
  color: inherit;
  font-size: 1rem;
}
@media screen and (max-width: 959px) {
  #master_foot .list_circle {
    font-size: 1rem;
  }
  #master_foot .list_circle a {
    font-size: 0.875rem;
  }
}

/*==========
職業体験支援コーディネーター
==========*/
/*==========
企業・産業 イベント
==========*/
#event_archive .text_intro {
  font-weight: 500;
  margin: 1rem 0;
}
#event_archive .layout_pagination .pagination > *:not(:has(a)),
#event_archive .layout_pagination .pagination a {
  color: var(--color_lightblue);
  border-color: var(--color_lightblue);
}
@media screen and (min-width: 960px) {
  #event_archive .layout_pagination .pagination a:hover {
    background-color: var(--color_lightblue_hover);
    color: #fff;
  }
}
#event_archive .layout_pagination .pagination .current a {
  background-color: var(--color_lightblue);
  color: #fff;
}
#event_archive .layout_pagination .page_now {
  color: var(--color_lightblue);
}
#event_archive .layout_event + .layout_pagination {
  margin-top: 2.5rem;
}

.layout_event {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(470px, 1fr));
  gap: 1.25rem;
}
.layout_event > *:not(:has(a)),
.layout_event > * a {
  background-color: var(--color_gray_bg);
  display: block;
  padding: 1.25rem;
  border-radius: 10px;
  height: 100%;
}
.layout_event a {
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 960px) {
  .layout_event a img {
    transition: transform 0.5s, height 0.5s, margin 0.5s;
  }
  .layout_event a:hover img {
    transform: scale(1.05);
  }
}
.layout_event .row_title {
  display: flex;
  gap: 0.625em;
}
.layout_event .thumb {
  width: 7.5em;
  aspect-ratio: 120/80;
  overflow: hidden;
}
.layout_event .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.layout_event .title_area {
  flex: 1;
}
.layout_event .title_area .title {
  font-weight: 700;
  margin-top: 0.4em;
}
.layout_event .list {
  font-size: 0.875em;
  margin-top: 0.625em;
  margin-bottom: 0.25em;
}
.layout_event .list > * {
  padding: 0.325em 0;
  border-bottom: 1px dashed var(--color_border);
  display: flex;
}
.layout_event .list > *:first-child {
  border-top: 1px dashed var(--color_border);
}
.layout_event .list .title {
  width: 5em;
  font-weight: 700;
  color: var(--color_green);
}
.layout_event .list .data {
  flex: 1;
}
.layout_event .list .date {
  color: var(--color_green);
  font-weight: 700;
}
@media screen and (max-width: 959px) {
  .layout_event {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

/*==========
マイスター 活動報告
==========*/
#master-activity .layout_meister_report {
  grid-template-columns: repeat(auto-fill, minmax(470px, 1fr));
}
#master-activity .layout_meister_report .row_title .title {
  font-size: 1rem;
}
#master-activity .layout_meister_report .text_area {
  font-size: 1rem;
}
@media screen and (max-width: 959px) {
  #master-activity .layout_meister_report {
    grid-template-columns: 1fr;
  }
  #master-activity .layout_meister_report .row_title .title {
    font-size: 0.875rem;
  }
  #master-activity .layout_meister_report .text_area {
    font-size: 0.8125rem;
  }
  #master-activity .layout_meister_report .text_area p:not([class]) {
    font-size: 1em;
  }
}

/*==========
フォーム
==========*/
.layout_form_progress {
  margin: 1.5rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  gap: 4px;
}
.layout_form_progress > * {
  padding: 0.5em;
  flex: 1;
  background-color: var(--color_green_bg);
  color: var(--color_green);
  margin: 0 calc(1px - 0.5rem);
  -webkit-clip-path: polygon(1rem 0, 100% 0, calc(100% - 1rem) 100%, 0 100%);
          clip-path: polygon(1rem 0, 100% 0, calc(100% - 1rem) 100%, 0 100%);
}
.layout_form_progress > *:first-of-type {
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 1rem) 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 1rem) 100%, 0% 100%);
  margin-left: 0;
}
.layout_form_progress > *:last-of-type {
  -webkit-clip-path: polygon(1rem 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(1rem 0, 100% 0, 100% 100%, 0% 100%);
  margin-right: 0;
}
.layout_form_progress > *.active {
  background-color: var(--color_green);
  color: #fff;
}
@media screen and (max-width: 959px) {
  .layout_form_progress {
    font-size: 0.875rem;
  }
}

.layout_form .title_list {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.layout_form .title_list:not(:first-child) {
  margin-top: 2.5rem;
}
.layout_form [data-class=wpcf7cf_group]:not(:first-child) .title_list:first-child {
  margin-top: 2.5rem;
}
.layout_form .list {
  border-top: 1px dashed var(--color_border);
}
.layout_form .list > [data-class=wpcf7cf_group] li, .layout_form .list > *:not([data-class=wpcf7cf_group]) {
  width: 100%;
  border-bottom: 1px dashed var(--color_border);
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  display: flex;
  gap: 0.75rem 1.25rem;
}
.layout_form .list > * .label_area label {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5em;
}
.layout_form .list > * .label_area label::after {
  content: "任意";
  font-size: 0.8125rem;
  background-color: #FFDBB0;
  border-radius: 4px;
  padding: 0.25em 1em;
  display: block;
}
.layout_form .list > *:has(.wpcf7-radio) .label_area label::after, .layout_form .list > *:has(.wpcf7-validates-as-required) .label_area label::after, .layout_form .list > *:has([required]) .label_area label::after {
  content: "必須";
  background-color: var(--color_orange);
  color: #fff;
}
.layout_form .list .label_area {
  width: 12.5rem;
  font-weight: 500;
  padding-top: 0.625em;
  flex-shrink: 0;
}
.layout_form .list .input_area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.layout_form .list .input_area [data-class=wpcf7cf_group] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1rem;
}
.layout_form .list .input_area [data-class=wpcf7cf_group] .row_input {
  width: 100%;
}
.layout_form .wpcf7-not-valid-tip {
  width: 100%;
}
.layout_form .wpcf7-radio,
.layout_form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1rem;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.layout_form .wpcf7-radio .wpcf7-list-item,
.layout_form .wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
}
.layout_form .wpcf7-radio label,
.layout_form .wpcf7-checkbox label {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.layout_form .wpcf7-radio label .wpcf7-list-item-label,
.layout_form .wpcf7-radio label .text_label,
.layout_form .wpcf7-checkbox label .wpcf7-list-item-label,
.layout_form .wpcf7-checkbox label .text_label {
  flex: 1;
}
.layout_form .label_wrap[data-col="3"] .wpcf7-radio,
.layout_form .label_wrap[data-col="3"] .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, -webkit-max-content));
  grid-template-columns: repeat(3, minmax(0, max-content));
}
.layout_form .label_wrap[data-col="6"] .wpcf7-radio,
.layout_form .label_wrap[data-col="6"] .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, -webkit-max-content));
  grid-template-columns: repeat(6, minmax(0, max-content));
}
.layout_form .label_wrap:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1079px) {
  .layout_form .label_wrap[data-col="3"] {
    grid-template-columns: repeat(2, minmax(0, -webkit-max-content));
    grid-template-columns: repeat(2, minmax(0, max-content));
  }
}
.layout_form .row_input {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem 1em;
}
.layout_form .row_input input,
.layout_form .row_input textarea {
  flex: 1;
}
.layout_form .row_input .text_input {
  margin-top: 0.75em;
  font-weight: 500;
  flex-shrink: 0;
}
.layout_form .wpcf7-form-control-wrap {
  display: contents;
}
.layout_form .wpcf7-list-item-label,
.layout_form .text_label {
  font-weight: 500;
  flex-shrink: 0;
}
.layout_form .aside {
  margin-top: 0.625rem;
}
.layout_form .row_submit {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem 2.5rem;
}
.layout_form .row_submit > * {
  flex: 1;
}
.layout_form .row_submit .wpcf7-spinner {
  position: absolute;
  bottom: -2.5rem;
  right: 0;
}
@media screen and (max-width: 959px) {
  .layout_form {
    font-size: 0.875rem;
  }
  .layout_form .title_list {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  .layout_form .list > * {
    flex-direction: column;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .layout_form .list > * .label_area {
    width: 100%;
  }
  .layout_form .list > * .label_area label::after {
    margin-top: -0.25em;
  }
  .layout_form .list .label_area {
    padding-top: 0;
  }
  .layout_form .row_input textarea {
    flex: 0 1 auto;
  }
  .layout_form .wpcf7-radio,
.layout_form .wpcf7-checkbox {
    gap: 0.625rem 2.5rem;
  }
  .layout_form .wpcf7-radio label,
.layout_form .wpcf7-checkbox label {
    max-width: none;
    min-width: 6em;
  }
  .layout_form .label_wrap[data-col="3"] .wpcf7-radio,
.layout_form .label_wrap[data-col="3"] .wpcf7-checkbox, .layout_form .label_wrap[data-col="6"] .wpcf7-radio,
.layout_form .label_wrap[data-col="6"] .wpcf7-checkbox {
    display: flex;
  }
  .layout_form .row_submit {
    flex-direction: column;
    align-items: center;
  }
  .layout_form .row_submit > * {
    flex: 0 1 auto;
    max-width: 240px;
  }
}

.wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
}

.layout_confirm .layout_form .list > * .label_area label::after {
  display: none;
}
.layout_confirm .label_area {
  padding-bottom: 0.625rem;
}
.layout_confirm .text_confirm {
  margin-top: 0.625em;
  margin-bottom: 0.625rem;
  font-weight: 700;
}
.layout_confirm .text_confirm + .text_confirm {
  margin-top: 0;
}
.layout_confirm .hidden_field {
  display: none;
}
@media screen and (max-width: 959px) {
  .layout_confirm .text_confirm {
    font-size: 0.875rem;
  }
}

.btn_clear {
  background-color: #EBEBEB;
  font-size: 1.375rem;
  font-weight: 700;
  width: 100%;
  max-width: 440px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 100px;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .btn_clear {
    transition: background-color 0.5s;
  }
  .btn_clear:hover {
    background-color: var(--color_border);
  }
}
@media screen and (max-width: 959px) {
  .btn_clear {
    font-size: 1rem;
    height: 56px;
  }
}

.btn_submit {
  background: center right 1em/0.325em url("../img/common/icon_arrow-white.svg") no-repeat var(--color_orange);
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  width: 100%;
  max-width: 440px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 100px;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .btn_submit {
    transition: background-color 0.5s;
  }
  .btn_submit:hover {
    background-color: var(--color_orange_hover);
  }
}
@media screen and (max-width: 959px) {
  .btn_submit {
    font-size: 1rem;
    height: 56px;
  }
}

.layout_privacypolicy {
  margin-top: 2.5rem;
  border: 1px solid var(--color_border);
  padding: 1.5rem 1.25rem;
  max-height: 13.75rem;
  overflow: auto;
}
.layout_privacypolicy .title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color_green);
  margin-bottom: 1.5rem;
}
.layout_privacypolicy .title_sub {
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}
.layout_privacypolicy .title_sub:not(:first-child) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 959px) {
  .layout_privacypolicy .title {
    font-size: 1.25rem;
  }
  .layout_privacypolicy .title_sub {
    font-size: 1rem;
  }
}

.layout_privacycheck {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem auto;
}

#privacypolicy h2:not([class])::after {
  display: none;
}

/*==========
検索
==========*/
.list_search a {
  color: inherit;
  text-decoration: none;
}
.list_search a .text {
  font-size: 0.875rem;
  position: relative;
  padding-right: 2.5rem;
  margin-top: 0.5rem;
}
.list_search a .text::after {
  content: "";
  width: 0.875em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow-green.svg") no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
}
.list_search .title {
  font-weight: 700;
  color: var(--color_green);
}
.list_search .text {
  min-height: 2em;
}
.list_search > * {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid var(--color_green);
}
.list_search > *:last-child {
  border-bottom: 1px solid var(--color_green);
}