@charset "UTF-8";
/* ▼▼▼ network ▼▼▼ */
#network .network_menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 24px;
  margin-top: 60px;
}
@media screen and (max-width: 999px) {
  #network .network_menu {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  #network .network_menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 9px;
    margin-top: 16px;
  }
}
#network .network_menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  padding-block: 8px 12px;
  padding-inline: 16px;
  border-bottom: 1px solid var(--Line-Primary);
}
@media screen and (max-width: 374px) {
  #network .network_menu a {
    gap: 8px;
  }
}
#network .network_menu a span {
  width: 100%;
  border-right: 1px solid var(--Line-Primary);
  padding-right: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 374px) {
  #network .network_menu a span {
    padding-right: 8px;
  }
}
#network .network_menu a::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  width: 16px;
  aspect-ratio: 1/1;
  background: url(../img/network/icon_arrow_bottom.svg) no-repeat center center/contain;
}
@media (any-hover: hover) {
  #network .network_menu a:hover {
    opacity: 1;
    color: var(--Brand-color-Primary);
    border-color: var(--Brand-color-Primary);
  }
  #network .network_menu a:hover span {
    border-color: var(--Brand-color-Primary);
  }
}
@media screen and (max-width: 767px) {
  #network .network_menu li:first-child {
    grid-column: 1/3;
  }
}
#network .network_section_main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 767px) {
  #network .network_section_main {
    grid-template-columns: 1fr;
  }
}
#network .network_item {
  min-width: 0;
  min-height: 169px;
  padding: 24px;
  border: 1px solid var(--Line-Primary);
}
@media screen and (max-width: 767px) {
  #network .network_item {
    min-height: unset;
    padding: 16px;
  }
}
#network .network_item.--2row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 24px;
}
@media screen and (max-width: 999px) {
  #network .network_item.--2row {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 16px;
  }
}
#network .network_item_text_wrap {
  width: 316px;
}
@media screen and (max-width: 999px) {
  #network .network_item_text_wrap {
    width: 100%;
  }
}
#network .network_item_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #network .network_item_title {
    font-size: 16px;
  }
}
#network .network_item_title span {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  letter-spacing: 0.03em;
  padding-block: 2px 2px;
  padding-inline: 15px;
  background: #000;
  border: 1px solid var(--Line-Primary);
  background: var(--Background-Secondary);
}
@media screen and (max-width: 767px) {
  #network .network_item_title span {
    font-size: 13px;
  }
}
#network .network_item_text {
  font-style: normal;
  font-size: 15px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  #network .network_item_text {
    font-size: 14px;
  }
}
#network .network_item_img {
  width: 200px;
}
@media screen and (max-width: 999px) {
  #network .network_item_img {
    width: 100%;
  }
}
#network .network_item_btn_wrap {
  display: grid;
  grid-template-columns: repeat(2, -webkit-fit-content);
  grid-template-columns: repeat(2, fit-content);
  grid-auto-flow: column;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 24px;
}
#network .network_item_btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: auto;
  margin-top: 16px;
}
#network .network_contact {
  padding: 32px;
  background: var(--Background-Primary-Base);
  margin-top: 24px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  #network .network_contact {
    padding: 24px;
  }
}
#network .network_contact_text {
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
}
@media screen and (max-width: 1250px) {
  #network .network_contact_text {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #network .network_contact_text {
    font-size: 15px;
  }
}
#network .network_contact_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
@media screen and (max-width: 1250px) {
  #network .network_contact_main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
}
#network .network_contact_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  border: 1px solid var(--Brand-color-Primary);
  border-radius: 2px;
  background: var(--Background-Primary);
  padding: 15px 23px;
}
@media screen and (max-width: 1250px) {
  #network .network_contact_item {
    max-width: 810px;
    width: 100%;
  }
}
@media screen and (max-width: 999px) {
  #network .network_contact_item {
    max-width: 700px;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  #network .network_contact_item {
    max-width: 500px;
    gap: 8px;
    padding: 16px;
  }
}
#network .network_contact_item.--tel {
  padding-right: 16px;
}
#network .network_contact_item.--fax {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  #network .network_contact_item.--fax {
    gap: 8px;
  }
}
#network .network_contact_title {
  min-width: 100px;
  padding-block: 6px 8px;
  padding-inline: 23px;
  background: var(--Background-Secondary);
  border: 1px solid var(--Line-Primary);
  border-radius: 2px;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 999px) {
  #network .network_contact_title {
    width: 100%;
  }
}
#network .network_contact_number_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 374px) {
  #network .network_contact_number_wrap {
    gap: 8px;
  }
}
#network .network_contact_day {
  font-size: var(--Label-X-Small);
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  letter-spacing: 0.03em;
}
#network .network_contact_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--Brand-color-Primary) !important;
  font-size: 32px;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  #network .network_contact_number {
    font-size: 26px;
  }
}
#network .network_contact_number.--fax {
  font-size: 24px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #network .network_contact_number.--fax {
    font-size: 26px;
  }
}
#network .network_contact_number span {
  color: var(--Object-Primary);
  font-size: 13px;
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #network .network_contact_number span {
    font-size: 12px;
  }
}
@media screen and (max-width: 999px) {
  #network .network_contact_number br.sp {
    display: block;
  }
}
#network .network_contact_line {
  width: 1px;
  height: 30px;
  background: var(--Line-Primary);
}
@media screen and (max-width: 999px) {
  #network .network_contact_line {
    width: 100%;
    height: 1px;
  }
}