/* 企業情報ページ用 */
.site_container.page {
  .page_content {
    .content_main {
      .rules {
        width: 820px;
        margin-right: auto;
        margin-left: auto;

        ul,
        ol {
          margin-bottom: 20px;
        }

        .box {
          margin-top: 0;
          padding: 0;
          padding-bottom: 40px;

          &:last-child {
            padding: 0;

            p {
              margin-bottom: 0;
            }
          }
        }

        .h2_tit_01 {
          font-size: 150%;
          /* 24px */
          font-feature-settings: "palt";
          margin-top: 55px;
          margin-bottom: 45px;
          padding-bottom: 7px;
        }

        .h3_tit_01 {
          font-size: 125%;
          /* 20px */
          font-feature-settings: "palt";
          margin-bottom: 4px;
          padding-left: 0;

          &::before {
            background: none;
          }
        }

        /* テーブル装飾（企業概要など） */
        .tbl-info {
          width: 100%;

          th,
          td {
            position: relative;
            font-size: 1em;
            font-feature-settings: "palt";
            line-height: 1.75;
            padding: 25px 0 34px 1em;
            border-top: 1px solid #dcdcdc;
            box-sizing: border-box;
            background-clip: padding-box;
          }

          tr:last-child {
            th,
            td {
              border-bottom: 1px solid #dcdcdc;
            }
          }

          th {
            width: 9em;
            text-align: left;
            background-color: #f3f3f3;
            /*box-shadow: inset 0 3px 0 0 #fff, inset 0 -3px 0 0 #fff;*/

            /* 疑似要素で白線を重ねたい場合 */
            &::before,
            &::after {
              content: "";
              position: absolute;
              left: 0;
              right: 0;
              background: #fff;
              z-index: 1;
              height: 3px;
            }
            &::before {
              top: 0;
            }
            &::after {
              bottom: 0;
            }
          }

          td {
            background-color: #fff;

            dl.list {
              display: flex;
              column-gap: 20px;

              &.service {
                &:first-child {
                  margin-bottom: 20px;
                }
                dt {
                  width: 5em;
                }
              }
              &.license {
                dt {
                  width: 8em;
                }
              }
            }
          }
        }

        .google_map {
          height: 400px;
          position: relative;
          width: 100%;
          iframe {
            height: 100%;
            left: 50%;
            position: absolute;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            width: 100%;
          }
        }

        /* p, li, address等の細部装飾 */
        p {
          font-feature-settings: "palt";
          margin-bottom: 0;

          &.signature {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-start;
            margin-right: 1em;
            margin-bottom: 20px;
          }
        }

        li {
          font-feature-settings: "palt";

          li {
            list-style: decimal;
            list-style-position: inside;
            padding-inline-start: 2.5rem;
          }
        }

        address {
          font-size: 100%;
          font-feature-settings: "palt";
          line-height: 1.75;
          font-style: normal;
        }

        /* 05_沿革ページ */
        .timeline {
          /* 必要に応じて位置決め用に残しておく */
          position: relative;

          .year-group {
            position: relative;
            padding-bottom: 4rem;

            &::before {
              /* 年グループをまたいだ縦線 */
              content: "";
              position: absolute;
              left: 17.9rem;
              top: 1rem;
              bottom: -3.6rem;
              width: 0.1rem;
              background: #dcdcdc;
            }

            &:last-child::before {
              bottom: 8.6rem;
            }

            .year {
              font-family: var(--font-min);
              font-size: 2rem;
              color: #000;
              margin-bottom: 0.8rem;
            }

            .item-list {
              margin: 0;
              padding: 0;
              margin-top: -3.1rem;
              margin-left: 10rem;
              position: relative;
              width: auto;

              >.item-pair {
                display: inline-flex;
                align-items: flex-start;
                border-bottom: 1px solid #dcdcdc;
                width: 100%;
                padding-top: 3rem;
                padding-bottom: 3rem;
/*
                margin-bottom: 1rem;
                padding-top: 3rem;
                padding-bottom: 3rem;
*/
                &:first-child {
                  padding-top: 0;
                }

                &::after {
                  content: "";
                  position: absolute;
                  bottom: 0;
                  left: 0;
                  width: 100%;
                }

                >dt,
                >dd {
                  display: inline;
                  font-feature-settings: "palt";
                  vertical-align: middle;
                  line-height: 1.75;
                }

                >dt {
                  color: #969696;
                  font-weight: 700;
                  position: relative;
                  width: 5rem;
                  white-space: nowrap;

                  &::before {
                    content: "●";
                    position: absolute;
                    left: 7.5rem;
                    top: 0.6em;
                    font-size: 0.86rem;
                    color: #3058ac;
                    z-index: 1;
                  }

                  &:not(:last-of-type)::after {
                    content: "";
                    position: absolute;
                    left: 7.9rem;
                    top: 0.3em;
                    bottom: 0;
                    width: 0.1rem;
                    background: #dcdcdc;
                    z-index: 0;
                  }
                }

                >dd {
                  font-size: 1.6rem;
                  color: #000;
                  margin: 0;
                  padding: 0;
                  margin-left: 7.5rem;
                  

                  &::after {
                    content: "\A";
                    white-space: pre;
                  }
                }
              }
            }
          }
        }
        /* 沿革ページここまで */

        /* 07_代表挨拶ページ */
        .box.message {
          p {
            font-size: 1.8rem;
            line-height: 2;
            margin-top: 4rem;

            &:first-child {
              margin-top: 0;
            }

            b {
              font-weight: 700;
              color: #3058ac;
            }
          }

          .signature {
            display: block;
            width: max-content;
            margin-top: 3rem;
            margin-right: 5rem;
            margin-left: auto;

            & dt,
            & dd {
              margin: 0;
              padding: 0;
              text-align: left;
            }

            & dt {
              width: fit-content;
              min-width: 0;
              line-height: 1.75;
              font-size: 1.6rem;
            }

            & dd {
              width: 100%;
            }

            & dd img {
              display: block;
              height: 53px;
              max-width: 100%;
            }
          }
        }
        /* 07_代表挨拶ページここまで */
        
        /* 03_問い合わせページここから */
        .snow-monkey-form {
          .smf-item__description {
          	font-size:14px;
          }
          .smf-item__label__text {
            &::after {
             content: "<span>必須</span>";
             color: #fff;
             background-color: #ea0105;
            }
          }
        }
        /* 03_問い合わせページここまで */

      } /* .rules */
    } /* .content_main */
  } /* .page_content */
} /* .site_container.page */

/* グローバルaddress用（必要に応じて） */
address {
  font-size: 100%;
  font-feature-settings: "palt";
  line-height: 1.75;
  font-style: normal;
}

/* レスポンシブ対応（スマホ） */
@media screen and (max-width: 600px) {
  .site_container.page {
    .page_content {
      .content_main {
        .rules {
          width: auto;

          .box {
            padding-top: 0;
            padding-right: 0;
            padding-bottom: 6.67vw;
            padding-left: 0;

            &:last-child {
              margin-top: 0;
              padding-bottom: 0;
            }
          }

          .h2_tit_01 {
            font-size: 4.8vw; /* 18px */
            margin-top: 6vw;
            margin-bottom: 7.33vw;
            padding-bottom: 1vw;
          }

          .h3_tit_01 {
            font-size: 4vw; /* 15px */
          }

          p {
            margin-bottom: 0;
          }

          li {
            li {
              padding-inline-start: 1.5rem;
            }
          }

          /* テーブルsp調整 */
          .tbl-info {
            th,
            td {
              padding-top: calc(5.362vw - (0.375 * 3.73vw));
              padding-bottom: calc(6.168vw - (0.375 * 3.73vw));

              dl.list {
                flex-direction: column;

                &.license {
                  margin-bottom: 1em;

                  &:last-child {
                    margin-bottom: 0;
                  }
                }
              }
            }
          }

          /* 05_沿革ページ */
          .timeline {
            .year-group {
              &:last-child::before {
                bottom: 20vw;
              }
              padding-bottom: 2rem;
              .year {
                font-size: 4.6vw;
              }
              &::before {
                left: 10.4rem;
              }
              .item-list {
                margin-top: -2.9rem;
                margin-left: 6rem;
                width: auto;
                > .item-pair {
                  padding-top: 2rem;
                  padding-bottom: 2rem;
                  > dt,
                  > dd {
                    font-size: 3.7vw;
                  }
                  > dt {
                    margin-right: 4rem;
                    width: 2rem;
                    &::before {
                      left: 4rem;
                    }
                  }
                  > dd {
                    margin-left: 1rem;
                  }
                }
              }
            }
          }
          /* 沿革ページここまで */

          /* 07_代表挨拶ページ */
          .box.message {
            p {
              font-size: 100%;
              margin-top: 3rem;
            }
            .signature {
              margin-top: 3.0rem;
              margin-right: 0;

              dt {
                font-size: 3.47vw;
              }

              dd {
                img {
                  height: 12.3vw;
                }
              }
            }
          }
          /* 07_代表挨拶ページここまで */

        } /* .rules */
      } /* .content_main */
    } /* .page_content */
  } /* .site_container.page */
}
