.breadcrumbs {
  padding: 10px 0;
  margin: -50px auto 50px;
  background: var(--color-gray-light);

  .breadcrumbs_list {
    width: 90%;
    margin: 0 auto;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .breadcrumbs_item,
  .breadcrumbs_item a {
    line-height: 1;
  }
  .breadcrumbs_item {
    color: var(--color-gray);
  }
  .breadcrumbs_item a {
    color: var(--color-gray-dark);
    line-height: 1;
  }
  .breadcrumbs_item:not(:last-child) {
    margin: 0 30px 0 0;
    position: relative;
  }
  .breadcrumbs_item:not(:last-child)::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
  }
}
main {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.list-num {
  padding: 0 0 0 20px;
  list-style: decimal;
}
.list-num-parentheses li {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.list-num-parentheses li span {
  padding: 0 5px 0 0;
}
.list-disc {
  list-style: disc;
}
.date {
  width: fit-content;
  margin: 0 0 0 auto;
}

.about {
  .nav_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
  }
  .nav_item a {
    padding: 30px 10px;
    line-height: 1;
    text-align: center;
    border: 1px solid var(--color-gray);
    border-radius: 50vh;
    background: var(--color-white);
    display: block;
    position: relative;
    transition:
      color 0.25s ease,
      background 0.25s ease;
  }
  .nav_item a:hover {
    color: var(--color-white);
    background-color: var(--color-gray);
  }
  .nav_item a::after {
    content: '\f111';
    font-family: 'Font Awesome 6 Free';
    font-size: 10px;
    color: var(--brand-color1);
    font-weight: 700;
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
  }
}
.company {
  padding: 0 20px;

  .company_lead {
    margin: 0 0 30px 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .company_figure {
    width: 45%;
    margin: 0 0 0 30px;
    flex-shrink: 0;
  }
  .company_origin {
    padding: 30px;
    margin: 0 0 50px 0;
    border-radius: 20px;
    background: #ffebeb;
  }
  .company_origin .head {
    margin: 0 0 5px 0;
    color: var(--color-red);
    font-weight: 600;
    display: block;
  }
  .company_origin .fa-circle-info {
    margin: 0 5px 0 0;
    font-size: 1.1em;
  }
  .company_origin ol {
    margin: 10px 0 0 0;
  }
  .company_origin li {
    padding: 10px;
    border-radius: 10px;
    background: #fff7f7;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
  }
  .company_origin li:not(:last-child) {
    margin: 0 0 10px 0;
  }
  .company_origin li span {
    width: 20px;
    display: block;
    flex-shrink: 0;
  }
  .title-shortline {
    font-size: 24px;
  }
  .company_dlist {
    margin: 0 0 50px 0;
    border-radius: 20px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: hidden;
  }
  .company_dlist .dtitle {
    width: 200px;
    padding: 20px 30px;
    font-weight: 600;
    background: #ffebeb;
  }
  .company_dlist .ddesc {
    width: calc(100% - 200px);
    padding: 20px 30px;
    background: var(--color-white);
  }
  .company_dlist .dtitle:not(:last-of-type),
  .company_dlist .ddesc:not(:last-of-type) {
    border-bottom: solid 2px var(--background-color);
  }
  .company_location {
    margin: 0 0 50px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .company_location div {
    width: 48%;
  }
  .radio_table {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
  }
  .radio_table th {
    color: var(--color-white);
    background: var(--color-gray-dark);
  }
  .radio_table td {
    background: var(--color-white);
  }
  .radio_table th,
  .radio_table td {
    width: 30%;
    padding: 10px;
    text-align: center;
  }
  .radio_table th:not(:last-of-type),
  .radio_table td:not(:last-of-type) {
    border-right: solid 2px var(--background-color);
  }
  .radio_table tr:not(:last-of-type) td {
    border-bottom: solid 2px var(--background-color);
  }
}
.kijyun {
  .kijyun_dlist .dtitle,
  .kijyun_dlist .ddesc {
    padding: 0 10px;
  }
  .kijyun_dlist {
    margin: 0 0 10px 0;
  }
  .kijyun_dlist .dtitle {
    padding-bottom: 5px;
    margin: 0 0 5px 0;
    font-weight: 600;
    line-height: 1;
    border-bottom: dotted 2px var(--color-gray);
  }
  .kijyun_dlist .dtitle span {
    margin: 0 10px 0 0;
    display: inline-block;
  }
  .kijyun_dlist .ddesc:not(:last-of-type) {
    margin: 0 0 30px 0;
  }
}

.banshin {
  .title-doubleline {
    font-size: 16px;
  }
  .banshin_dlist {
    padding: 30px;
    margin: 0 0 30px 0;
    font-size: 14px;
    border: solid 1px var(--color-gray-light);
    border-radius: 15px;
    background: var(--color-white);
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .banshin_dlist .dtitle {
    width: 150px;
    padding: 5px 0;
    font-weight: 600;
  }
  .banshin_dlist .ddesc {
    width: calc(100% - 150px);
    padding: 5px 0;
  }
  .banshin_dlist .dtitle:not(:last-of-type),
  .banshin_dlist .ddesc:not(:last-of-type) {
    margin: 0 0 10px 0;
  }
}
.meigi {
  .meigi_text {
    margin: 0 0 10px 0;
  }
  .meigi_dlist .dtitle {
    padding: 0 0 5px 0;
    margin: 0 0 10px 0;
    font-weight: 600;
    line-height: 1;
    border-bottom: dotted 2px var(--color-gray-dark);
  }
  .meigi_dlist .ddesc:not(:last-of-type) {
    margin: 0 0 50px 0;
  }
  .button-obround {
    width: 70%;
    min-width: 300px;
    margin: 20px auto 0;
  }
  .button-obround a {
    padding-top: 15px;
    padding-bottom: 15px;
    background: var(--brand-color1);
    border-color: var(--brand-color1);
  }
  .button-obround a:hover {
    color: var(--brand-color1);
    background: var(--color-white);
  }
  .button-obround .fa-file-pdf {
    margin: 0 0 0 10px;
    font-size: 1.2em;
  }
}

.access {
  .access_text {
    margin: 0 0 10px 0;
  }
  .access_map iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

.privacy {
  .privacy_lead {
    margin: 0 0 30px 0;
  }
  .title-doubleline {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .privacy_contents-inner {
    padding: 30px;
    margin: 30px 0;
    font-size: 14px;
    border: solid 1px var(--color-gray-light);
    border-radius: 15px;
    background: var(--color-white);
  }
  .date {
    margin-top: 10px;
  }
  .contact {
    margin: 10px 0 0 0;
  }
}

.socialmedia {
  .socialmedia_lead {
    margin: 0 0 30px 0;
  }
  .title-doubleline {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .socialmedia_contents:not(:last-of-type) {
    margin: 0 0 30px 0;
  }
  .socialmedia_list {
    margin: 10px 0;
    padding: 20px;
    font-size: 14px;
    background: var(--color-white);
  }
  .date {
    margin-top: 10px;
  }
}

.protection {
  .protection_lead {
    margin: 0 0 30px 0;
  }
  .title-doubleline {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .protection_dlist {
    margin: 0 0 10px 0;
  }
  .protection_dlist .dtitle {
    padding: 0 0 5px 0;
    margin: 0 0 5px 0;
    font-weight: 600;
    line-height: 1;
    border-bottom: dotted 2px var(--color-gray);
  }
  .protection_dlist .ddesc:not(:last-of-type) {
    margin: 0 0 30px 0;
  }
  .protection_dlist .ddesc dd:not(:last-of-type) {
    margin: 0 0 10px 0;
  }
}

.contact {
  .contact_lead {
    margin: 0 0 30px 0;
  }
  .contact_dlist {
    margin: 0 0 30px 0;
  }
  .contact_dlist .dtitle {
    padding: 0 0 5px 0;
    margin: 0 0 5px 0;
    font-weight: 600;
    line-height: 1;
    border-bottom: dotted 2px var(--color-gray);
  }
  .contact_dlist .ddesc:not(:last-of-type) {
    margin: 0 0 30px 0;
  }
  .fa-envelope {
    margin: 0 10px 0 0;
  }
  .contact_dlist .list-disc {
    padding: 0 20px;
    margin: 10px 0 0 0;
  }
  .contact_note {
    padding: 20px;
    font-size: 14px;
    border: solid 1px var(--color-red);
    border-radius: 10px;
  }
}

.recruit {
  .recruit_lead {
    margin: 0 0 10px 0;
  }
  .nav_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav_item {
    width: 48%;
    height: 100px;
    text-align: center;
    /* border: solid 1px var(--color-gray-light); */
    color: var(--color-white);
    background: var(--color-gray);
    border-radius: 10px;
    position: relative;
  }
  .nav_item span {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .nav_item a {
    width: 100%;
    height: 100%;
    color: var(--text-color);
    border-radius: 10px;
    background: var(--color-white);
    filter: drop-shadow(4px 4px 4px #dddddd);
    display: block;
    transition: background 0.25s ease;
  }
  .nav_item a:hover {
    background: var(--color-gray-light);
  }
  .title-box {
    font-size: 18px;
    font-weight: 600;
    background: var(--color-gray-dark);
  }
  .guideline_dlist {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .guideline_dlist .dtitle {
    width: 200px;
    padding: 10px 20px;
    font-weight: 600;
    background: var(--color-gray-light);
  }
  .guideline_dlist .ddesc {
    width: calc(100% - 200px);
    padding: 10px 20px;
    background: var(--color-white);
  }
  .guideline_dlist .dtitle:not(:last-of-type) {
    border-bottom: solid 1px var(--color-white);
  }
  .guideline_dlist .ddesc:not(:last-of-type) {
    border-bottom: solid 1px var(--color-gray-light);
  }
  .guideline_dlist:not(:last-of-type) {
    margin: 0 0 50px 0;
  }
  .guideline_dlist .list-disc {
    padding-left: 20px;
  }
  .guideline_dlist .note_list {
    font-size: 0.9em;
  }

  .button-obround {
    width: 70%;
    min-width: 300px;
    margin: 20px auto 20px;
  }
  .button-obround a {
    padding-top: 15px;
    padding-bottom: 15px;
    background: var(--brand-color1);
    border-color: var(--brand-color1);
  }
  .button-obround a:hover {
    color: var(--brand-color1);
    background: var(--color-white);
  }
  .button-obround .fa-file-pdf {
    margin: 0 0 0 10px;
    font-size: 1.2em;
  }
}

@media screen and (max-width: 800px) {
  .title-dot {
    margin-left: 20px;
    font-size: 24px;
  }
  .title-dot::before {
    left: -20px;
  }
  .breadcrumbs {
    font-size: 12px;
  }
  .company {
    padding-left: 0;
    padding-right: 0;

    .title-shortline {
      font-size: 20px;
    }
    .company_lead {
      flex-direction: column;
    }
    .company_dlist {
      flex-direction: column;
    }
    .company_figure {
      width: 100%;
      margin-left: 0;
      margin-top: 10px;
    }
    .company_dlist .dtitle,
    .company_dlist .ddesc {
      width: 100%;
    }
    .company_dlist .dtitle:not(:last-of-type) {
      margin-bottom: 0;
    }
    .company_dlist .dtitle {
      padding-bottom: 5px;
    }
    .company_dlist .ddesc {
      border-bottom: none;
    }
    .company_location {
      flex-direction: column;
    }
    .company_location div {
      width: 100%;
    }
    .company_location div:not(:last-of-type) {
      margin: 0 0 20px 0;
    }
  }
  .banshin {
    .banshin_dlist {
      padding: 20px;
      flex-direction: column;
    }
    .banshin_dlist .dtitle,
    .banshin_dlist .ddesc {
      width: 100%;
    }
    .banshin_dlist .dtitle {
      padding-bottom: 0;
    }
    .banshin_dlist .dtitle:not(:last-of-type) {
      margin-bottom: 0;
    }
  }
  .access {
    .access_map iframe {
      aspect-ratio: 1 / 1;
    }
  }
  .privacy {
    .privacy_contents-inner {
      padding: 20px;
    }
  }
  .recruit {
    .guideline_dlist {
      flex-direction: column;
    }
    .guideline_dlist .dtitle,
    .guideline_dlist .ddesc {
      width: 100%;
      border-bottom: none;
    }
  }
}
@media screen and (max-width: 680px) {
  .about {
    .nav_list {
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
    }
    .nav_item a {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  }
}
