@charset "UTF-8";

/**********************************************/
/**********WORKS*******************************/
/**********************************************/
#works_section .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

#works_section .item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s ease;
  border-radius: 8px;
  background-color: var(--White);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

#works_section .item:hover {
  transform: translateY(-5px);
}

#works_section .item .img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: var(--White);
  border-radius: 8px 8px 0 0;
}

#works_section .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#works_section .item:hover .img img {
  transform: scale(1.05);
}

#works_section .item .text {
  padding: 0 16px;
}

#works_section .item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--Black);
  margin: 0 0 15px 0;
  line-height: 1.4;
}

#works_section .item p {
  font-size: 0.9rem;
  color: var(--Black);
  line-height: 1.5;
  margin: 0 0 32px 0;
  font-weight: 400;
}

#works_section .item::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background-color: var(--Blue);
  margin: auto auto 0;
}

/**********************************************/
/**********FLOW********************************/
/**********************************************/
.flow_content {
  background-color: #f9f9f9;
}

.flow_content .read {
  text-align: center;
  margin-bottom: 32px;
}

.flow_content .flow_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flow_content .flow_group {
  position: relative;
  /*border: 3px solid var(--Blue);*/
  border-radius: 8px;
  padding: 20px;
  padding-right: 55px;
  background-color: var(--White);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.flow_content .flow_group.maintenance {
  border-color: #48bb78;
}

.flow_content .vertical_label {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: 600;
  font-size: 0.95em;
  letter-spacing: 2px;
  padding: 12px 6px;
}

.flow_content .vertical_label.ok {
  background-color: #c6f6d5;
  color: #22543d;
  height: 92.5%;
  text-align: center;
  font-weight: 400;
}

.flow_content .vertical_label.ng {
  background-color: #fed7d7;
  color: #742a2a;
  height: 92.5%;
  text-align: center;
  font-weight: 400;
}

.flow_content .flow_step {
  position: relative;
  padding: 15px 18px;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--Lightgray);
}

.flow_content .flow_step:last-child {
  margin-bottom: 0;
}

.flow_content .step_number {
  min-width: 40px;
  height: 40px;
  background-color: var(--Blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--White);
  font-weight: 600;
  font-size: 1.1em;
  flex-shrink: 0;
}

.flow_content .step_content {
  flex: 1;
}

.flow_content .step_title {
  font-size: 1.15rem;
  color: var(--Black);
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.flow_content .step_description {
  color: var(--Black);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.flow_content .step_icon {
  font-size: 2rem;
  opacity: 0.5;
  flex-shrink: 0;
}

.flow_content .arrow_down {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid var(--Darkgray);
  margin: 0 auto 10px;
}

.flow_content .group_arrow_down {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 22px solid var(--Blue);
  margin: 0 auto;
  opacity: 0.7;
}

.flow_content .branch_container {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.flow_content .branch {
  flex: 1;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 2px solid var(--Blue);
}

.flow_content .branch_title {
  font-size: 1.05em;
  color: var(--Black);
  font-weight: 600;
  margin: 0 0 8px 0;
  text-align: center;
  line-height: 1.4;
}

.flow_content .branch_description {
  color: var(--Black);
  font-size: 0.85em;
  line-height: 1.4;
  text-align: center;
  margin: 0;
  font-weight: 400;
}

.flow_content .note {
  background-color: #fff5e6;
  border-left: 3px solid #f6ad55;
  padding: 10px 15px;
  margin-top: 10px;
  border-radius: 4px;
  font-size: 0.85em;
  color: #744210;
  line-height: 1.4;
}

.flow_content .maintenance .flow_step {
  background-color: #f0fff4;
}

.flow_content .maintenance .step_number {
  background: linear-gradient(135deg, #48bb78, #38a169);
}


/**********************************************/
/**********NEON*******************************/
/**********************************************/
#neon_section .block {
  display: flex;
  align-items: center;
  gap: 60px;
}

#neon_section .block .left {
  flex: 0 0 45%;
}

#neon_section .block .left img {
  width: 100%;
  height: auto;
  display: block;
}

#neon_section .block .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#neon_section .block .right .top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#neon_section .block .right .read {
  line-height: 1.6;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--Blue);
  margin: 0;
}

#neon_section .block .right .desc {
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

#neon_section .block .right a.btn {
  margin: 0 0 0 auto;
}

#neon_section button {
  background-color: var(--White);
  padding: 8px;
  border: none;
  cursor: pointer;
  color: var(--Blue);
  font-weight: 500;
  font-size: 1rem;
  text-align: end;
  text-decoration: underline;
  transition: color 0.3s ease;
}

#neon_section button:hover {
  color: var(--Darkgray);
}

#neon_flow_section {
  display: none;
}

#neon_flow_section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 700;
}

#neon_flow_section.active {
  display: block;
}

#neon_section .block.down {
  margin-top: 30px;
}

#neon_section .block.down .read {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

#neon_section .block.down .desc {
  margin-bottom: 30px;
  font-weight: 400;
}


#neon_section .neon-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

#neon_section .neon-table th,
#neon_section .neon-table td {
  border: 1px solid #ddd;
  padding: 12px;
  vertical-align: top;
}

#neon_section .neon-table th {
  background: #f4f4f4;
  font-weight: bold;
  text-align: left;
}

#neon_section .neon-table tr:nth-child(even) {
  background: #fafafa;
}



/* レスポンシブ対応 */
@media screen and (max-width: 815px) {
  .flow_content .flow_group {
    padding: 18px;
    padding-right: 50px;
  }
  .flow_content .vertical_label {
    font-size: 0.9em;
    right: 10px;
  }
  .flow_content .flow_step {
    padding: 13px 15px;
    gap: 12px;
  }
  .flow_content .step_number {
    min-width: 38px;
    height: 38px;
    font-size: 1em;
  }
  .flow_content .step_description {
    font-size: 0.88em;
  }
  .flow_content .branch_title {
    font-size: 1em;
  }
  .flow_content .branch_description {
    font-size: 0.82em;
  }
}

@media screen and (max-width: 768px) {
  #works_section .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  #works_section .item .img {
    margin-bottom: 12px;
  }
  #works_section .item .text {
    padding: 0 12px;
  }
  #works_section .item h3 {
    font-size: 1.1rem;
  }
  #works_section .item p {
    font-size: 0.85rem;
  }

  .flow_content .flow_group {
    padding: 15px;
    padding-right: 45px;
  }
  .flow_content .vertical_label {
    font-size: 0.85em;
    right: 8px;
    padding: 10px 5px;
  }
  .flow_content .flow_step {
    padding: 12px;
    gap: 10px;
  }
  .flow_content .step_number {
    min-width: 35px;
    height: 35px;
    font-size: 0.95em;
  }
  .flow_content .step_description {
    font-size: 0.85em;
  }
  .flow_content .step_icon {
    font-size: 1.6em;
  }
  .flow_content .arrow_down {
    border-left-width: 10px;
    border-right-width: 10px;
    border-top-width: 12px;
  }
  .flow_content .branch_container {
    flex-direction: column;
    gap: 12px;
  }
  .flow_content .branch {
    padding: 12px;
  }
  .flow_content .branch_title {
    font-size: 0.98em;
  }
  .flow_content .branch_description {
    font-size: 0.8em;
  }
  .flow_content .note {
    padding: 8px 12px;
    font-size: 0.82em;
  }

  #neon_section .block {
    flex-direction: column;
    gap: 24px;
  }
  #neon_section .block .left img {
    width: 75%;
    margin: 0 auto;
  }
  #neon_section .block .right a.btn {
    margin: 0 auto;
  }
}