@charset "UTF-8";
/*
index
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
/*最後に削除する！--*/
/*--最後に削除する！*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*
i-functions
-----------------------------------------------------*/
/*
i-mixin
-----------------------------------------------------*/
/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
company
-----------------------------------------------------*/
.p-company .-outline h2,
.p-company .-maps h2 {
  font-size: 28px;
  line-height: 2;
  font-weight: 600;
  margin-bottom: 1em;
}
.p-company .-outline table th,
.p-company .-outline table td {
  font-size: 16px;
  padding: 1.75rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-company .-outline table th,
  .p-company .-outline table td {
    display: table-cell;
  }
}
.p-company .-outline table th {
  font-weight: 600;
  border-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-company .-outline table th {
    width: 25%;
    border-bottom: 1px;
  }
}
.p-company .-outline table dd {
  font-weight: 200;
}
.p-company .-maps .gmap_iframe {
  aspect-ratio: 16/9;
  max-width: 1000px;
  width: 100%;
  height: auto;
}/*# sourceMappingURL=company.css.map */