/*-------------------------------------------------

Title       : sub01
Author      : EASESOFT
Create Date : 2026-02

-------------------------------------------------*/
.c070100 .link {
  text-decoration: underline;
  text-decoration-color: rgba(62, 122, 196, 0.7);
}
.c070100 .link:hover {
  color: #3E7AC4;
}
.c070100 .link::after {
  content: "\ecaf";
  font-family: "remixicon";
  color: rgba(62, 122, 196, 0.7);
}
.c070100 .tel {
  text-decoration: underline;
  text-decoration-color: rgba(62, 122, 196, 0.7);
}
.c070100 .tel:hover {
  color: #3E7AC4;
}
.c070100 .tel::after {
  content: "\efe9";
  font-family: "remixicon";
  color: rgba(62, 122, 196, 0.7);
}
.c070100 .mail {
  text-decoration: underline;
  text-decoration-color: rgba(62, 122, 196, 0.7);
}
.c070100 .mail:hover {
  color: #3E7AC4;
}
.c070100 .mail::after {
  content: "\eef6";
  font-family: "remixicon";
  color: rgba(62, 122, 196, 0.7);
}
.c070100 .labeling {
  text-align: center;
  gap: 3rem;
}
.c070100 .labeling .cont_box {
  padding: 2rem;
  position: relative;
}
.c070100 .labeling .modal {
  position: absolute;
  transform: translate(0, -50%);
  left: 0;
  top: 50%;
  z-index: 1;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.8rem;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  padding: 2rem;
}
.c070100 .labeling .ic {
  background: #FAFAFF;
  border-radius: 1.6rem 1.6rem 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 15rem;
  margin-bottom: 2rem;
  gap: 0.6rem;
}
.c070100 .labeling .ic img {
  width: 7rem;
}
.c070100 .labeling a.cont_box:hover > .modal,
.c070100 .labeling a.cont_box:focus > .modal {
  opacity: 1;
  visibility: visible;
}
.c070100 .pv_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.c070100 .pv_list a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 2.4rem;
  font-size: 1.8rem;
  font-weight: 500;
  word-break: keep-all;
  word-wrap: break-word;
}
.c070100 .pv_list a i {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 0.3rem;
  flex: none;
}
.c070100 .pv_list a i img {
  width: 5rem;
}
.c070100 .pv_list a span {
  flex: 1;
}
@media screen and (min-width: 1025px) {
  .c070100 .pv_list a:hover {
    font-weight: 600;
    color: #3E7AC4;
  }
}
.c070100 h3.title_md {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.c070100 h3.title_md i {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.3rem;
  flex: none;
}
.c070100 h3.title_md i img {
  width: 5rem;
}
.c070100 h3.title_md span {
  color: #3E7AC4;
}

/*-------------------------------------------------

Responsive

-------------------------------------------------*/
/* Media Query */
@media (max-width: 1024px) {
  .c070100 .pv_list {
    grid-template-columns: 1fr;
  }
  .c070100 .pv_list a {
    gap: 1rem;
    font-size: 1.6rem;
  }
  .c070100 .pv_list a i img {
    width: 4rem;
  }
}
@media (max-width: 640px) {
  .c070100 h3.title_md i img {
    width: 4rem;
  }
}