@charset "utf-8";
/* CSS Document */

.root,
div,
h2,
section {
  --blue-color: #d98c9e;
  --pink-color: #e4007f;
  --yellow-color: #f5e928;
  --paleblue-color: #faebee;
  --gray-color: #3e3a39;
  --baige-color: #faebee;
  --text-color: #333;
}

.hover {
  transition-duration: .3s;
}

.hover:hover {
  transition-duration: .3s;
  opacity: .7;
}

.btn {
  width: 320px;
  height: 60px;
  margin: 20px auto 40px;
  background: var(--blue-color);
  position: relative;
  border-radius: 5px;
  transition-duration: .3s;
}

.btn:hover {
  opacity: .7;
  transition-duration: .3s;
}


.btn a {
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv_inner {
  position: relative;
}

.h1_block {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.h1 {
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.5;
  font-size: 2rem;
  text-align: left;
  width: fit-content;
  padding: 0 60px;
}

.h1 span {
  font-size: 2.8rem;
  color: var(--pink-color);
}

.h1 span_black {
  font-size: 2.8rem;
}


/* 全体 */
.nav-container {
  padding: 20px;
  background: #faebee;
}

.main-nav {
  width: 60%;
  padding: 30px;
  border-radius: 16px;
  border: 2px solid gray;
  margin: 0 auto;
}

/* 横並び */
.nav-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 大メニュー */
.nav-item {
  width: 240px;
}

/* 大メニューのタブ部分 */
.nav-title {
  color: white;
  background: var(--pink-color);
  padding: 15px 0;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;

}

.nav-title a {
  color: white;

}

.nav-title:hover {
  background: var(--blue-color);
}

/* 小メニューの箱 */
.sub-nav {
  list-style: none;
  padding: 20px;
  margin: 0;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 10px 10px;
}

/* 小メニューの項目 */
.sub-nav li {
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
}

.sub-nav li a {
  color: var(--pink-color);
  font-weight: bold;
}

.sub-nav li a:hover {
  color: var(--blue-color);
}

.sub-nav li:last-child {
  border-bottom: none;
}

#outline,
#flow,
#document {
  margin-top: -190px;
  padding-top: 190px;
}



.news_section .h2_block {
  margin-bottom: 60px;
}

.h2_title {
  font-size: xx-large;
}

.news-contents {
  margin-bottom: 40px;
  max-width: 1000px;
}

.news-contents__item {
  background-image: linear-gradient(to right, #888888, #888888 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 2px);
  background-size: 4px 1px;
  background-position: top;
  background-repeat: repeat-x;
  position: relative;
}

.news-contents__item:last-of-type {
  background-image: linear-gradient(to right, #888888, #888888 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 2px), linear-gradient(to right, #888888, #888888 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 2px);
  background-size: 4px 1px, 4px 1px;
  background-position: top, bottom;
  background-repeat: repeat-x, repeat-x;
}

.news-contents__item:nth-child(even) {

  background-color: var(--baige-color);
}

.news-contents__item:nth-child(odd) {
  background-color: #fff;
}

.news-contents__item:after {
  font-family: 'fontello';
  content: '\3e';
  font-size: 24px;
  font-size: 2.4rem;
  position: absolute;
  top: 15px;
  right: 20px;
  transition: all .3s;
}

.news-contents__item:hover:after {
  right: 13px;
}

.news-contents a {
  color: #333;
}

.news-contents a:link {
  display: block;
}

.news-contents a:hover {
  opacity: 1;
}

.news-contents a .news-detail__text {
  font-size: 1.6rem;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 77%;
  padding-left: 10px;
}

.news-contents a:hover .news-detail__text {
  text-decoration: underline;
}

.news-icon {
  color: #fff;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0;
  text-align: center;
  padding: 1px 0;
  box-sizing: border-box;
  width: 40px;
  display: inline-block;
  margin-right: 10px;
}

.news-icon--style1 {
  background: var(--pink-color);
  color: #fff;
  font-weight: bold;
}

.news-icon--style2 {
  background: var(--yellow-color);
  color: var(--text-color);
  font-weight: bold;
}


.news-detail {
  padding: 15px 10px;
}

.news-detail::after {
  content: "";
  display: block;
  clear: both;
}

.news-detail__date {
  float: left;
  width: 10%;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 1.4rem;
  margin-top: 2px;
}

.news-detail__icon2 {
  float: left;
}

.news-detail__text {
  float: left;
}



.news_btn {
  width: 320px;
  height: 60px;
  margin: 50px auto 40px;
  background: var(--blue-color);
  position: relative;
  border-radius: 5px;
  transition-duration: .3s;
}

.news_btn a {
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 3;
}





.manager_section {
  background: var(--paleblue-color);
  padding: 80px 0 60px;
}

.manager_content {
  display: flex;
  margin-bottom: 40px;
}

.manager_content .manager_text {
  width: 85%;
  padding-left: 20px;
}

.manager_content .img_wrap {
  width: 30%;
}

.manager_content .img_wrap img {
  margin: 0 auto;
}

.manager_section .contact {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 20px;
  margin-bottom: 10px;
}

.manager_section .contact_text {
  font-size: 2rem;
  padding-left: 20px;
}

.h2_block {
  text-align: center;
  margin-bottom: 80px;
}

.h2 {
  display: inline-block;
  position: relative;
  color: var(--pink-color);
  z-index: 10;
}

.h2::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 60%;
  background: var(--yellow-color);
  z-index: -1;
  left: 0;
  bottom: -5px;
}

section {
  padding: 60px 0 40px;
}

.app_date {
  margin: 0 0 80px;
  padding-left: 12px;
  font-size: 2.1rem;
  padding: 0 0 0 40px;
}

.app_date span {
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--pink-color);
}

.h3 {
  position: relative;
  margin-bottom: 40px;
}

.h3::after {
  position: absolute;
  content: "";
  width: 98%;
  height: 2px;
  right: 0;
  bottom: -3px;
  background: var(--pink-color);
}

.h3 span {
  background: var(--yellow-color);
  padding: 14px 20px;
  color: var(--pink-color);
  font-weight: bold;
}

.blue_circle {
  padding-left: 20px;
}


.blue_circle li {
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
  text-align: left;
}

.blue_circle li::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  top: 4px;
  left: 0;
  background: var(--blue-color);
  border-radius: 10px;
}

.blue_circle_1-2 li::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  top: 9px !important;
  left: 0;
  background: var(--blue-color);
  border-radius: 10px;
}

.blue_circle_1-2 li::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  top: 4px;
  left: 0;
  background: var(--blue-color);
  border-radius: 10px;
}

.blue_circle_1-3 li::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  top: 4px;
  left: 0;
  background: var(--baige-color);
  border-radius: 10px;
}

.blue_circle_1-3 {
  color: var(--gray-color);
}


.wrapper {
  border: 2px dashed var(--blue-color);
  background: var(--paleblue-color);
  padding: 30px 20px 20px;
  position: relative;
  width: 90%;
  margin: 50px auto;
  border-radius: 10px;
  box-sizing: border-box;
  color: white;
}

.title-area {
  position: absolute;
  top: -15px;
  left: 20px;
}

.title-label {
  font-weight: bold;
  color: white;
  background: var(--blue-color);
  padding: 10px 20px;
  font-size: 20px;
}


.columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}


.column-item {
  width: 33%;
  text-align: center;
}

.column-item a {
  display: block;
  color: white;
  width: 100%;
}

.column-title {
  position: relative;
  top: 2.7rem;
  border-radius: 5px;
  background: #8c8c8c;
  width: 40%;
  font-weight: bold;
  font-size: 16px;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 5px 10px;
}

.block {
  border: 1px solid #aaa;
  padding: 20px 10px;
  border-radius: 8px;
}

.block-heading {
  background: #ffffff;
  border-radius: 50px;
  color: black;
  margin-bottom: 15px;
  padding: 30px 15px;
  border: 2px solid var(--blue-color);
  font-size: 22px;
}

.block-heading span {
  display: flex;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
}

.block-heading .saidai {}

.block-heading strong {
  font-size: 28px;
  color: var(--pink-color);
}

.rate-box {
  color: black;
  padding: 15px 0;
  font-size: 22px;
}

.footer-text {
  color: black;
  margin-bottom: 15px;
  font-size: 22px;
}

.target_area {
  display: flex;
  justify-content: space-evenly;
  padding: 60px 0 40px;
}

.target_area_robot {
  display: flex;
  justify-content: left;
  padding: 60px 0 40px;
}

.target_area .target {
  background: var(--paleblue-color);
  border: 2px solid var(--blue-color);
  border-radius: 8px;
  padding: 70px 30px 20px;
  position: relative;
  width: 25%;
  margin-bottom: 2em;
}

.target_area .target {
  background: var(--paleblue-color);
  border: 2px solid var(--blue-color);
  border-radius: 8px;
  padding: 70px 30px 20px;
  position: relative;
  width: 25%;
  margin-bottom: 2em;
}

.target_area .target:last-of-type {
  width: 25%;
  background: var(--paleblue-color);
  border: 2px solid var(--blue-color);
  border-radius: 8px;
  padding: 60px 10px 10px;
  position: relative;
  margin-bottom: 2em;
}

.target_wage {
  width: 25%;
  background: var(--paleblue-color);
  border: 2px solid var(--blue-color);
  border-radius: 8px;
  padding: 120px 10px 10px !important;
  position: relative;
  margin-bottom: 2em;
}

.target_area_robot .target {
  width: 45% !important;
  background: var(--paleblue-color) !important;
  border: 2px solid var(--blue-color) !important;
  border-radius: 8px !important;
  padding: 60px 10px 10px !important;
  position: relative !important;
  margin-bottom: 2em !important;
  margin-left: 3rem;
}

.kubun {
  background: var(--paleblue-color);
  border: 2px dashed var(--blue-color);
  border-radius: 8px;
  padding: 70px 30px 20px;
  position: relative;
  width: 100%;
  margin-bottom: 2em;
}

.target_area .target .icon_box {
  position: absolute;
  top: 15px;
  left: 36px;
}

.target_area .target icon {
  background: var(--blue-color);
  border-radius: 5px;
  padding: 10px 12px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
}

.target_area .target .icon3 {
  display: block;
}

.target_area .target .icon3:first-of-type {
  margin-bottom: 5px;
}

.target_area .target .icon_box3 {
  border-radius: 5px;
  padding: 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  display: block;
}

.target_area .target .icon_box3 {
  position: absolute;
  top: 15px;
  left: 36px;
}

.target_area .target .num {
  position: absolute;
  width: 46px;
  left: -12px;
  top: -14px
}

.target_table {
  margin: 0 auto 20px;
  width: 85%;
}

table,
td,
th {
  border: 3px solid var(--blue-color);
  border-collapse: collapse;
  vertical-align: middle;
  text-align: center;
}

td,
th {
  padding: 20px;
}

th {
  border-right: 2px;
  background: var(--blue-color);
  color: #fff;
  font-size: 2rem;
}

.th2 {
  border-right: 3px solid #ffffff;
  border-left: 3px solid #fff;
  border-top: 3px solid var(--blue-color);
}

.th3_normal {
  border-right: 4px solid var(--pink-color);
  border-top: 4px solid var(--pink-color);

}

.th4 {
  border-left: 3px solid #fff;
}

.th4_robot {
  width: 50% !important;
  border-left: 4px solid var(--pink-color);
  border-top: 4px solid var(--pink-color);
  border-right: 4px solid var(--pink-color);
}

.left_robot {
  border-left: 4px solid var(--pink-color);
  border-right: 4px solid var(--pink-color);
}

.pink_char_robothojo {
  border-left: 4px solid var(--pink-color);
  border-right: 4px solid var(--pink-color);
}

.pink_char_robot {
  border-left: 4px solid var(--pink-color);
  border-bottom: 4px solid var(--pink-color);
  border-right: 4px solid var(--pink-color);
}

.even {
  background: #fbf8f0;
}

.odd {
  background: #fefcf9;
}

.left {
  text-align: left;
}

.col1 {
  border-right: 3px solid var(--blue-color);
  background: var(--paleblue-color);
  width: 19%;
  font-size: 2rem;
  font-weight: bold;
  color: var(--blue-color);
}

.col1_1 {
  border-right: 3px solid var(--blue-color);
  background: var(--paleblue-color);
  width: 19%;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--text-color);
}

.col1_1_normal {
  border-right: 4px solid var(--pink-color);
  background: var(--paleblue-color);
  width: 19%;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--text-color);
}

.col2 {
  width: 27%;
  border-left: 3px solid var(--blue-color);
}

.col3 {
  border-left: 3px solid var(--blue-color);
  width: 27%;
}

.col4 {
  border-left: 3px solid var(--blue-color);
  width: 27%;
}

.row2 {
  border-top: 3px solid var(--blue-color);
  border-bottom: 3px solid var(--blue-color);
}

.pink_char {
  color: var(--pink-color);
  font-weight: bold;
}

.pink_char span {
  font-size: 3rem;
}

/* 表全体 */
.target_table {
  border-collapse: collapse;
  width: 100%;
}

/* ===== 行ごとの高さ指定 ===== */

/* 補助対象経費 */
.row-cost {
  height: 100px;
  /* ← ここで全セルが同じ高さになる */
}

/* 補助率 */
.row-rate {
  height: 123px;
}

/* 補助額 */
.row-amount {
  height: 123px;
}

/* 見出し行 */
.head th {
  width: 25%;
  height: 70px;
  background: #de8fa0;
  color: #fff;
}

.th2_normal {
  border-right: 3px solid #ffffff;
  border-left: 4px solid var(--pink-color);
  border-top: 4px solid var(--pink-color);
}

.left_wage {
  border-right: 4px solid var(--pink-color);
}

.hojo_wage {
  border-bottom: 4px solid var(--pink-color);
  border-right: 4px solid var(--pink-color);
}

.hojo_normal {
  border-bottom: 4px solid var(--pink-color);
}

.pink_char_normal {
  border-right: 4px solid var(--pink-color);
}

.base_text {
  width: 85%;
  padding: 0 20px 0 20px;
  margin-bottom: 20px;
}

.contact_area {
  background: var(--baige-color);
  padding-top: 60px;
  padding-bottom: 50px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-top: 40px;
  margin-bottom: 60px;
}

.contact_name {
  font-size: 2.4rem;
  color: #686868;
  font-weight: bold;
  width: 100%;
  margin-bottom: 30px;
}

.contact_date .soudankaishi {
  font-size: 1.5rem;
  color: #000;
  font-weight: bold;
}

.contact_tel {
  width: 32%;
}

.contact_tel a {
  font-size: 3.2rem;
  color: var(--pink-color);
  font-weight: bold;
  padding-left: 10px;
}

.contact_date span {
  font-size: 3.2rem;
  color: var(--pink-color);
  font-weight: bold;
}

.contact_area .contact {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 20px;
  margin-bottom: 10px;
  align-items: center;
}

.contact_area .base_text {
  margin-bottom: 20px;
}

.contact_qr {
  margin-left: 20px;
  margin-top: -40px;
}

.contact_qr img {
  width: 200px;
}

.contact_attention {
  padding-left: 20px;
}

.disc_list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.disc_list li {
  text-indent: -1em;
  line-height: 1.8;
}


.num_list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.num_list li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.8;
}

.ja_list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.ja_list li {
  text-indent: -2em;
  padding-left: 2em;
  line-height: 1.8;
}

.doc_list {
  padding-left: 40px;
  line-height: 1.5;
  margin-bottom: 60px;
}

.doc_list li {
  list-style: auto;
  padding-left: 10px;
  margin-bottom: 10px;
}

.doc_list li a {
  color: var(--blue-color);
  font-weight: bold;
}

.download .doc_list {
  padding-left: 40px;
  line-height: 1.5;
  margin-bottom: 60px;
}

.download .doc_list li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}

.download .doc_list li::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background: var(--text-color);
  border-radius: 10px;
  top: 6px;
  left: 0;
}

.doc_list li a:hover {
  text-decoration: underline;
}

.hojo_img {
  width: 140px;
  margin: 0 auto;
  margin-bottom: 1em;
}

.hojo_img img {
  width: 100%;
}

.hojo_text:last-of-type {
  margin-bottom: 40px;
}


.hojo_text .text_title {
  width: 100%;
  font-weight: bold;
  color: var(--blue-color);
  text-align: center;
  margin-bottom: 0.5em;
  font-size: 2.2rem;
}

.expenses_table {
  margin-bottom: 20px;
}

.expenses_table th:nth-of-type(1) {
  border-right: 3px solid #fff;
}


.expenses_table td:nth-of-type(1) {
  width: 30%;
  font-size: 22px;
}

.expenses_table td:nth-of-type(2) {
  text-align: left;
}

.expenses_table .disc_list {
  margin-bottom: 0;
}

.robot-link:hover {
  text-decoration: underline;
}

.kome {
  text-indent: -1em;
  padding-left: 1em;
}

.underline {
  text-decoration: underline;
}

.mb40 {
  margin-bottom: 40px;
}

main {
  margin-top: 154px;
}

.mv_section {
  background: var(--baige-color);
  padding: 0;
}

.mv_section .mv_inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


.mv_section img {
  width: 100%;
  object-fit: cover;
}

.flow_section {
  background: var(--paleblue-color);
}

.flow_section_pale {
  background: var(--baige-color);
}


.blue_char {
  color: var(--blue-color);
  font-weight: bold;
}

.flow_mail {
  padding-left: 10px;
  margin-bottom: 20px;
}

.flow_mail a {
  color: var(--pink-color);
  font-size: 2.4rem;
  font-weight: bold;
}

.schedule {
  display: flex;
  margin-bottom: 30px;
}

.schedule .flex_item {
  width: 20%;
}

@media screen and (min-width:768px) {
  .schedule .flex_item:nth-of-type(1) {
    width: 21%;
  }

  .schedule .flex_item:nth-of-type(2) {
    width: 15%;
  }

  .schedule .flex_item:nth-of-type(3) {
    width: 25%;
  }

  .schedule .flex_item:nth-of-type(4) {
    width: 21%;
  }

  .schedule .flex_item:nth-of-type(5) {
    width: 18%;
  }
}

.schedule-year-label.r08_label {
  background: #f5a623;
  text-align: center;
  margin-bottom: 1px;
  color: white;
  font-size: 24px;
  padding: 12px 0;
  font-weight: bold;
}


.schedule-year-container_robot {
  display: flex;
  width: 100%;
}

.schedule-year-label_robot {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 12px 0;
  position: relative;
  margin-bottom: 1px;
}

/* 令和8年度（左） */
.schedule-year-label_robot.r08_label_robot {
  background-color: #f5a623;
  z-index: 1;
  /* 青より下にする */
}

.schedule-year-label_robot.r08_label_robot::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 23px 0 23px 23px;
  border-color: transparent transparent transparent #f5a623;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.schedule-year-label_robot.r08_label_robot::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 0px;
  width: 1px;
  height: 1px;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 25px solid #ffffff;
  z-index: 1;
}

/* 令和9年度（右） */
.schedule-year-label_robot.r09_label {
  background-color: #39caff;
  margin-bottom: 1px;
}


.schedule .flex_item .date {
  background: var(--blue-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  color: #fff;
  font-weight: bold;
  position: relative;
  height: 50px;
  font-size: min(1.6vw, 1.8rem);
}

.schedule .flex_item .split {
  background: var(--blue-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  color: #fff;
  font-weight: bold;
  position: relative;
  height: 50px;
  font-size: min(1.4vw, 1.5rem);
}

.schedule_robot .flex_item_robot:not(:last-of-type) .date_robot::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 23px 0 23px 23px;
  border-color: transparent transparent transparent var(--blue-color);
  right: -23px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.schedule .flex_item:not(:last-of-type) .date::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 23px 0 23px 23px;
  border-color: transparent transparent transparent var(--blue-color);
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}



.schedule_robot .flex_item_robot .date_robot.split::after {
  display: none;
}

.schedule .flex_item .split::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 23px 0 23px 23px;
  border-color: transparent transparent transparent var(--blue-color) !important;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.schedule_robot .flex_item_robot .date_robot.split::before {
  content: "";
  position: absolute;
  right: 48.5%;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
}

@media screen and (max-width:1000px) {
  .schedule_robot .flex_item_robot .date_robot.split::before {
    display: none;
  }
}

.schedule .flex_item .split span {
  z-index: 99;
  padding-right: 15px;
}


.schedule .flex_item:not(:last-of-type) .date::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 27px 0 27px 27px;
  border-color: transparent transparent transparent #fff;
  right: -27px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.schedule .flex_item:not(:last-of-type) .date::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 0 24px 24px;
  border-color: transparent transparent transparent #fff;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}


.schedule .flex_item .content {
  position: relative;
  margin-top: 5px;
  border: 2px dotted var(--blue-color);
  border-radius: 5px;
  padding: 15px 5px 15px;
  background: #fff;
  height: 200px;
  z-index: 1;
}

.schedule .flex_item .content_robot_blue {
  position: relative;
  margin-top: 5px;
  border: 2px dotted #6bc6e5;
  border-radius: 5px;
  padding: 15px 5px 15px;
  background: #fff;
  height: 200px;
  z-index: 1;
}

.schedule .flex_item_robot_split .content_robot::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  background: #fff;
  width: 50%;
  height: 200px;
  border-radius: 5px;
  z-index: -1;
}

.schedule .flex_item_robot_split .content_robot::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 50%;
  height: 200px;
  border: 2px dotted #6bc6e5;
  /* 右側の色（水色） */
  border-left: none;
  /* 左の線が重なって太くならないように */
  border-radius: 0 5px 5px 0;
  /* 右だけ角丸を適用 */
  pointer-events: none;
  /* クリックなどの邪魔をしない */
  box-sizing: border-box;
  /* ← これが一番重要 */

}


.schedule .flex_item:not(:last-of-type) .content {
  margin-right: 5px;
}

.schedule .flex_item .content .title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: var(--blue-color);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.schedule .flex_item .content .title_blue {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #39caff;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.schedule .flex_item .content .detail {
  font-size: min(1.4vw, 1.6rem);
  text-align: center;
}

.madoguchi {
  font-size: 20px;
}

.schedule_robot .flex_item_robot .date_robot.pink {
  background: var(--blue-color);
}

.schedule_robot .flex_item_robot .date_robot.pink::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 0 24px 24px;
  ;
  border-color: transparent transparent transparent #fff;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.schedule_robot .flex_item_robot .date_robot.pink::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 23px 0 23px 23px;
  border-color: transparent transparent transparent var(--blue-color);
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.schedule_robot .flex_item_robot .date_robot.blue {
  background: #39caff;
}

.schedule_robot .flex_item_robot .date_robot.blue::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 0 24px 24px;
  ;
  border-color: transparent transparent transparent #fff;
  right: 87%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.schedule_robot .flex_item_robot .date_robot.blue::before {
  content: "";
  position: absolute;
  right: 88%;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  border-color: transparent transparent transparent #39caff;
}

.schedule_robot .flex_item_robot .date_robot.blue2::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 0 24px 24px;
  ;
  border-color: transparent transparent transparent #fff;
  right: 87%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.schedule .flex_item .blue2::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 23px 0 23px 23px;
  border-color: transparent transparent transparent #39caff;
  right: 88% !important;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.schedule_robot .flex_item_robot .date_robot.blue2::before {
  content: "";
  position: absolute;
  right: 197px;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
}

.schedule_robot .flex_item_robot .date_robot {
  position: relative;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  padding: 0 20px;
}

/* 左右で綺麗に色を分割 */
.schedule_robot .flex_item_robot .date_robot.split {
  background: linear-gradient(to right,
      var(--blue-color) 0%,
      var(--blue-color) 44%,
      #39caff 44%,
      #39caff 100%);
  background-size: 100% 100%;
  /* ← これも重要！ */
}



.document .doc_list:last-of-type {
  margin-bottom: 0;
}

.document .base_text {
  padding-top: 20px;
  padding-bottom: 20px;
}

.attention_section {
  padding-top: 0;
}


.attention_section .pink_char {
  padding-left: 20px;
  margin-bottom: 20px;
}

.attention_section .blue_circle li {
  margin-bottom: 15px;
}

.flow_section .weight_bold {
  text-decoration: underline;
}

.flow_attention {
  display: flex;
}

.flow_attention .mark {
  width: 270px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue-color);
  background: #fff;
  padding: 15px;
  border-radius: 5px;
}

.flow_attention .mark p {
  position: relative;
  padding-left: 40px;
  color: var(--pink-color);
  font-size: 2.4rem;
  font-weight: bold;
}

.flow_attention .mark p::before {
  position: absolute;
  content: "";
  background: url(../img/top/attention_mark.png) center/contain no-repeat;
  width: 40px;
  height: 40px;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.flow_attention .text {
  padding-left: 20px;
  line-height: 1.5;
  padding-top: 6px;
}

.support_area .support_area_inner {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--blue-color);
  border-radius: 10px;
  background: #fff;
  padding: 20px;
}

.support_area .support_area_inner p {
  width: 70%;
}

.support_area .support_area_inner .img_wrap {
  width: 30%;
}

.support_area .support_area_inner .img_wrap a {
  width: 80%;
  margin: 0 auto;
  position: relative;
  display: block;
}

.support_area .support_area_inner .img_wrap a:hover {
  opacity: .7;
}


.support_area .support_area_inner .img_wrap a::before {
  position: absolute;
  content: "クリックして拡大";
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.support_area .support_area_inner .img_wrap img {
  width: 100%;
  margin: 0 auto;
}

.support_area .support_area_inner .pink_char {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.weight_bold {
  font-weight: bold;
}

.link_deco {
  color: var(--blue-color);
  font-weight: bold;
}

.link_deco:hover {
  text-decoration: underline;
}

.flow_section .base_text {
  line-height: 1.8;
}

.pl20 {
  padding-left: 20px;
}

.hojo_content {
  display: flex;
  justify-content: space-evenly;
}

.hojo_content .flex_item {
  width: 50%;
}

.flex_box_robot {
  width: 100%;
  flex-wrap: wrap;
}


.hojo_content .flex_item_robot li {
  margin-bottom: 10px;
}

.pink_font {
  color: var(--pink-color);
  font-size: 2.4rem;
  font-weight: bold;
}













@media screen and (max-width:768px) {

  .site_wrap {
    width: 94%;
  }

  .blue_circle li::before {
    width: 14px;
    height: 14px;
  }

  .btn a {
    font-size: 1.8rem;
  }

  #outline,
  #flow,
  #document {
    margin-top: -80px;
    padding-top: 80px;
  }

  main {
    margin-top: 60px;
  }

  .anchor_inner {
    margin-top: 0;
  }

  .h1_block {
    top: 30%;
  }

  .h1 {
    font-size: 4vw;
    margin: 55px 10px;
    padding: 0;
  }

  .h1 span {
    font-size: 5.4vw;
  }

  .h1 span_black {
    font-size: 5.4vw;
  }

  .main-nav {
    width: auto;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid gray;
    margin: 0 auto;
  }

  .nav-list {
    width: 90%;
    display: block;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
  }

  .nav-item {
    width: 240px;
    margin-bottom: 10px;
  }


  .nav-title:first-of-type {
    margin-bottom: 10px;
  }


  .wrapper {
    width: 100%;
  }


  .columns {
    display: block;
    justify-content: space-between;
    gap: 20px;
  }

  .column-item {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }



  .news-detail__date {
    width: 30%;
  }

  .news-contents a .news-detail__text {
    padding-left: 0;
    white-space: normal;
    overflow: unset;
    text-overflow: unset;
    width: 100%;
    margin-top: 5px;
  }


  .manager_content {
    flex-wrap: wrap;
    padding: 0 2%;
  }

  .manager_content .manager_text {
    width: 100%;
    margin-bottom: 10px;
    padding-left: 0;
  }

  .manager_content .img_wrap {
    width: 50%;
  }

  .manager_content .img_wrap img {
    width: 100%;
  }

  .support_area .support_area_inner {
    flex-wrap: wrap;
    padding: 30px 0;
  }

  .support_area .support_area_inner p {
    width: 100%;
  }

  .support_area .support_area_inner .img_wrap {
    width: 100%;
  }

  .support_area .support_area_inner .img_wrap a {
    width: 90%;
  }

  .app_date {
    line-height: 1.5;
    margin-bottom: 40px;
  }

  .target_area {
    flex-wrap: wrap;
    padding: 0 4%;
    margin-top: 40px;
  }

  .target_table_area .blue_circle {
    padding-left: 0;
  }

  .target_area .target {
    width: 100%;
    margin-bottom: 40px;
  }

  .target_area .target:last-of-type {
    background: var(--paleblue-color);
    border: 2px solid var(--blue-color);
    border-radius: 8px;
    padding: 120px 30px 20px;
    position: relative;
    width: 100% !important;
    margin-bottom: 2em;
  }

  .table_wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .target_table {
    width: 100%;
    min-width: 600px;
    /* 必要に応じて調整 */
    border-collapse: collapse;
  }

  td,
  th {
    padding: 10px;
    font-size: 1.4rem;
  }

  .col1 {
    font-size: 1.6rem;
  }

  .base_text {
    padding: 0 10px;
  }

  .h3 span {
    font-size: 1.8rem;
    padding: 14px 10px;
  }

  .contact_area_inner .h3 span {
    font-size: 3.5vw;
  }

  .contact_area .contact {
    flex-wrap: wrap;
  }

  .contact_name {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .contact_tel {
    width: 100%;
    margin-bottom: 10px;
  }

  .contact_tel a {
    font-size: 2.4rem;
  }

  .contact_date {
    width: 100%;
  }

  .contact_date span {
    font-size: 2.4rem;
  }

  .contact_qr {
    margin-left: 0;
    margin-top: 10px;
  }

  .hojo_text .text_title {
    width: 100%;
  }

  .h2 {
    font-size: 2.2rem;
  }

  .schedule {
    flex-wrap: wrap;
  }

  .r08_label {
    display: none;
  }

  .schedule .flex_item {
    width: 100%;
  }

  .schedule .flex_item {
    background: var(--blue-color);
    padding-bottom: 12px;
  }

  .schedule .robot_blue {
    background: #39caff;
    padding-bottom: 12px;
  }

  .schedule .flex_item .date {
    font-size: 1.8rem;
  }

  .schedule .flex_item .content {
    width: 93%;
    margin: 0 auto;
    height: auto;
  }

  .schedule .flex_item:not(:last-of-type) .content {
    margin: 0 auto
  }

  .schedule .flex_item:not(:last-of-type) .date::before {
    display: none;
  }

  .schedule .flex_item:not(:last-of-type) .date::after {
    display: none;

  }

  .schedule .flex_item:not(:last-of-type) {
    position: relative;
    margin-bottom: 60px;
  }

  .schedule-year-container_robot {
    display: none;
  }

  .schedule .flex_item_robot_split {

    background: linear-gradient(to right,
        var(--blue-color) 0%,
        /* 左側：ピンク */
        var(--blue-color) 50%,
        /* ピンクはここまで */
        #39caff 50%,
        /* 右側：青 */
        #39caff 100%);

  }


  .schedule .flex_item:not(:last-of-type)::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--blue-color);
    border-right: 2px solid var(--blue-color);
    transform: rotate(45deg) translateX(-50%);
    left: 50%;
    bottom: -40px
  }

  .schedule_robot .flex_item_robot .date_robot.blue2::before,
  .schedule_robot .flex_item_robot .date_robot.blue2::after {
    display: none;
  }

  .schedule_robot .flex_item_robot .date_robot.split {
    background: linear-gradient(to right,
        var(--blue-color) 0%,
        /* 左側：ピンク */
        var(--blue-color) 50%,
        /* ピンクはここまで */
        #39caff 50%,
        /* 右側：青 */
        #39caff 100%);
  }

  .schedule_robot .flex_item_robot .date_robot.blue {
    background: var(--blue-color);
  }

  .schedule_robot .flex_item_robot .date_robot_blue {
    background: #39caff !important;
  }

  .schedule .flex_item_robot_split .content_robot::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    background: #fff;
    width: 50%;
    height: 190px;
    border-radius: 5px;
    z-index: -1;
  }

  .schedule .flex_item_robot_split .content_robot::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 50%;
    height: 190px;
    border: 2px dotted #6bc6e5;
    border-left: none;
    border-radius: 0 5px 5px 0;
    pointer-events: none;
    box-sizing: border-box;
  }

  .flow_attention {
    flex-wrap: wrap;
  }

  .flow_attention .mark {
    width: 100%;
    margin-bottom: 10px;
    height: 60px;
  }

  .flow_attention .mark p {
    font-size: 2.2rem;
  }

  .flow_attention .mark p::before {
    width: 36px;
    height: 36px;
  }


  .disc_list {
    padding-left: 10px;
  }

  section {
    padding: 40px 0 30px;
    padding-bottom: 0;
  }

  .mv_section {
    background: var(--baige-color);
    padding: 0px;
    padding-bottom: 60px;
  }

  #outline {
    margin-top: -100px;
  }

  .col1 {
    width: 24%;
  }

  .col2 {
    width: 25.333%;
  }

  .col3 {
    width: 25.333%;
  }

  .col4 {
    width: 25.333%;
  }

  .col2.pink_char span {
    font-size: 1.8rem;
  }

  .col3.pink_char span {
    font-size: 1.8rem;
  }

  .col4.pink_char span {
    font-size: 1.8rem;
  }

  .schedule .flex_item .content .detail {
    font-size: 1.6rem;
  }

  .schedule .flex_item .date {
    font-size: 1.8rem;
  }

  .hojo_content {
    flex-wrap: wrap;
  }

  .hojo_content .flex_item {
    width: 100%;
  }

  .hojo_text .text_title {
    font-size: 2rem;
  }

  .hojo_text .disc_list li {
    padding-left: 10px;
  }

  .hojojigyou.disc_list li {
    padding-left: 1em;
  }

  .expenses_table .disc_list {
    padding-left: 0;
  }

  .expenses_table .disc_list li {
    padding-left: 1em;
  }


  .document .doc_list {
    padding-left: 30px;
  }

  .attention_section {
    padding-top: 30px;
  }

  .flow_section {
    padding-bottom: 30px;
  }

  .document .h2_block {
    margin-bottom: 60px;
  }

  .attention_section {
    padding-bottom: 20px;
  }

  .attention_section .h2_block {
    margin-bottom: 40px;
  }




}