@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]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
support
-----------------------------------------------------*/
.p-support .-guarantee h2 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  color: #589a8d;
  margin-bottom: 0.8em;
}
.p-support .-guarantee dl div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  border: 1px solid #d8d8d8;
  padding: 2em;
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .p-support .-guarantee dl div {
    flex-direction: row;
  }
}
.p-support .-guarantee dl div dt {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-support .-guarantee dl div dt {
    width: 27%;
  }
}
.p-support .-guarantee dl div dt span {
  display: inline-block;
}
.p-support .-guarantee dl div dd {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-support .-guarantee dl div dd {
    width: calc(73% - 2em);
  }
}/*# sourceMappingURL=support.css.map */