@charset "utf-8";

/* ======================================================
 * parts_sp.css
 * ------------------------------------------------------
 * @media only screen and (max-width: 767px)
 * - common_new
 * - Element >>> Heading
 * - Element >>> Text
 * - Element >>> List
 * - Element >>> Link
 * - Element >>> Image
 * - Element >>> Video
 * - Element >>> Form
 * - Element >>> Other
 * - Layout >>> Column
 * - Layout >>> Table
 * - Layout >>> Box
 * - Layout >>> Other
 * - Component >>> Navi
 * - Component >>> Index
 * - Component >>> Other
 * - Clearfix
 * Media Queries
====================================================== */

@media only screen and (max-width: 767px) {
  /* ------------------------------------------------------
   * common_new
  ------------------------------------------------------ */
  /* ----- font ----- */

  /* ----- a ----- */

  /* ------------------------------------------------------
   * Component >>> heading
  ------------------------------------------------------ */
  /* ----- h1 ----- */
  .heading-lv1 {
    padding-top: 1.8em;
  }
  .heading-lv1  + * {
    margin-top: 1.6em!important;
  }
  .heading-lv1 > .heading_title {
    font-size: 2.1rem;
    line-height: 1.4;
    font-weight: bold;
    padding-left: 23px;
    position: relative;
  }
  .heading-lv1 > .heading_title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    border-radius: 4px;
    background-color: #1dc88a;
  }
  .heading-lv1-v2 {
    padding-top: 1.8em;
  }
  .heading-lv1-v2  + * {
    margin-top: 1.6em!important;
  }
  .heading-lv1-v2 > .heading_title {
    font-size: 2.1rem;
    line-height: 1.4;
    font-weight: bold;
    padding-left: 23px;
    position: relative;
  }
  .heading-lv1-v2 > .heading_title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    border-radius: 4px;
    background-color: #ccc;
  }
  /* ----- h2 ----- */
  .heading-lv2 {
    background-color: #f1f1f1;
    margin-top: 2.0em;
    border-radius: 6px;
  }
  .heading-lv2  + * {
    margin-top: 1.8em;
  }
  .heading-lv2 .heading_title {
    font-size: 2.0rem;
    line-height: 1.4;
    font-weight: bold;
    position: relative;
    padding: 13px 24px 9px 24px;
  }
  .heading-lv2 .heading_title::before {
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    left: 0;
    width: 10px;
    height: 20px;
    border-radius: 0 20px 20px 0;
    background-color: #1dc88a;
  }
  /* ----- h3 ----- */
  .heading-lv3 {
    margin-top: 2.0em;
  }
  .heading-lv3  + * {
    margin-top: 1.0em;
  }
  .heading-lv3 .heading_title {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: bold;
    position: relative;
    padding: 0 0 11px;
  }
  .heading-lv3 .heading_title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #1dc88a;
  }
  /* ------------------------------------------------------
   * Component >>> text
  ------------------------------------------------------ */
    /* ----- text ----- */
    .text {
      margin-top: 1em;
      font-size: 1.4rem;
      line-height: 1.6;
    }
  /* ------------------------------------------------------
   * Component >>> table
  ------------------------------------------------------ */
    /* ----- table ----- */
    .table {
      margin-top: 2em;
      border-top: 1px solid #999;
    }
    .table_body {
      overflow-x: auto;
      padding-bottom: 10px;
    }
    .table_body::-webkit-scrollbar {
      height: 9px;
    }
    .table_body::-webkit-scrollbar-track {
      border-radius: 9px;
      background-color: #ddd;
    }
    .table_body::-webkit-scrollbar-thumb {
      border-radius: 9px;
      background-color: #666;
    }
    .table_matrix {
      width: 1200px !important;
      border-left: 1px solid #999;
    }
    .table_cell {
      border-right: 1px solid #999;
      border-bottom: 1px solid #999;
      background-color: #fff;
      text-align: left;
      vertical-align: top;
      padding: 0.7em 1.2rem 0.5em 1.2rem;
      vertical-align: middle;
      font-size: 1.4rem;
      line-height: 1.6;
    }
    .table_cell.lv1 {
      background-color: #19a878;
      color: #fff;
      font-weight: bold;
      border-right: none;
      border-right: 1px solid #fff;
    }
    .table_cell.lv1:last-child {
      border-right: 1px solid #999;
    }
    .table_cell.lv2 {
      background-color: #f7f7f7;
      font-weight: normal;
    }
    .table_matrix {
      width: 100%;
    }

  /* ------------------------------------------------------
   * Component >>> link-text
  ------------------------------------------------------ */
    /* ----- link-text ----- */
    .link-text {
      margin-top: 1em;
      font-size: 1.4rem;
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      row-gap: .4em;
    }
    .link-text > li > a {
      padding-left: 16px;
      position: relative;
      color: #0d5aaa;
      text-decoration: none;
      line-height: 1.6;
      display: inline-block;
    }
    .link-text > li > a:hover {
      text-decoration: underline;
    }
    .link-text > li > a > .filesize {
      font-style: normal;
      margin-left: 10px;
    }
    .link-text > li > a::before {
      content: "";
      position: absolute;
      top: .5em;
      left: -2px;
      transform: rotate(45deg);
      width: 7px;
      height: 7px;
      border-top: 1px solid #0d5aaa;
      border-right: 1px solid #0d5aaa;
      vertical-align: middle;
      display: inline-block;
    }


  /* ------------------------------------------------------
   * Component >>> button
  ------------------------------------------------------ */
  [data-row-pc]:not([data-row-pc="1"]) {
    display: flex;
    flex-flow: row wrap;
  }
  [data-row-sp="1"] > * {
    width: 100%;
  }
  [data-row-sp="2"] > * {
    width: calc((100% - .8em) / 2);
  }
  [data-row-sp="3"] > * {
    width: calc((100% - 1.6em) / 3);
  }
  [data-row-sp="4"] > * {
    width: calc((100% - 2.4em) / 4);
  }
    /* ----- button ----- */
    .link-button {
      margin-top: 1.6em;
      gap: .8em;
    }
    .link-button > li {
    }
    .link-button > li > * {
      background-color: #fff;
      border: 1px solid #19a878;
      width: 100%;
      border-radius: 6px;
      font-size: 1.5rem;
      line-height: 1.4;
      color: #333333;
      text-decoration: none;
      display: inline-block;
      padding: 11px 32px 11px 9px;
      text-align: center;
      position: relative;
      font-weight: bold;
    }
    .link-button > li > a:hover {
      background-color: #c5ffec;
    }
    .link-button > li.is-current > div {
      background-color: #19a878;
      color: #fff;
      padding: 11px 9px;
    }
    .link-button > li.is-current > div::before,
    .link-button > li.is-current > div::after {
      display: none;
    }
    .link-button > li > a::before {
      content: "";
      position: absolute;
      top: calc(50% - 8px);
      right: 9px;
      width: 15px;
      height: 15px;
      background-color: #19a878;
      vertical-align: middle;
      border-radius: 100%;
    }
    .link-button > li > a::after {
      content: "";
      position: absolute;
      top: calc(50% - 4px);
      right: 14px;
      transform: rotate(135deg);
      width: 5px;
      height: 5px;
      border-top: 1px solid #fff;
      border-right: 1px solid #fff;
      vertical-align: middle;
    }
  /* ------------------------------------------------------
   * Component >>> Other
  ------------------------------------------------------ */
  .util-sp-hidden {
    display: none;
  }
  .a-pdf::after {
    margin: -3px 0 0 7px;
    width: 14px;
    height: 14px;
    background-position: -80px 0px;
    display: inline-block;
    background-image: url(/common_new/img/cmn_sprite01.webp);
    background-repeat: no-repeat;
    vertical-align: middle;
    content: "";
  }
  .a-link::after {
    margin: -4px 0 0 0px;
    width: 17px;
    height: 17px;
    background-position: -115px 0px;
    background-image: url(/common_new/img/cmn_sprite01.webp);
    background-repeat: no-repeat;
    vertical-align: middle;
    content: "";
    display: inline-block;
  }
  /* ----- inquiry ----- */
  .inquiry {
    margin-top: 2em;
    border: 1px solid #999;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 0.5em;
    padding: 1.3em 21px 16px;
  }
  .inquiry_title {
    line-height: 1.4;
    font-size: 1.7rem;
    font-weight: bold;
  }
  .inquiry_detail {
    display: flex;
    flex-direction: column;
  }
  .inquiry_description {
    padding: 0.5em 0;
    border-bottom: 1px dotted #999;
    display: flex;
    font-size: 1.4rem;
    line-height: 1.6;
    column-gap: 11px;
    align-items: center;
    min-height: 63px;
    color: #333333;
  }
  .inquiry_description:first-of-type {
    padding-top: 10px;
  }
  .inquiry_description:last-of-type {
    border-bottom: none;
  }
  .inquiry_description_head {
    font-weight: bold;
    width: 47px;
    flex-shrink: 0;
  }
  .inquiry_description_body a {
    color: #333;
    text-decoration: none;
  }
}


/* ======================================================
 * Media Queries
====================================================== */
/***
@media only screen and (min-width: 320px) and (max-width: 767px) {
}
@media only screen and (max-width: 736px) {
}
@media only screen and (max-width: 667px) {
}
@media only screen and (max-width: 640px) {
}
@media only screen and (max-width: 568px) {
}
@media only screen and (max-width: 480px) {
}
@media only screen and (max-width: 414px) {
}
@media only screen and (max-width: 375px) {
}
@media only screen and (max-width: 360px) {
}
@media only screen and (max-width: 320px) {
}
***/