@charset "UTF-8";
/*
index
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@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]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
class
-----------------------------------------------------*/
.p-class h3 {
  color: #7abf85;
  font-size: clamp(26px, 0.31vw + 24.9px, 30px);
  line-height: 1.6;
  margin-bottom: 1em;
}
.p-class .-age {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: clamp(96px, 3.51vw + 84.8px, 142px);
}
@media screen and (min-width: 768px) {
  .p-class .-age {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .p-class .-age .-img {
    width: 49%;
  }
}
.p-class .-age .-img img {
  display: block;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-class .-age .-txt {
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  .p-class .-age:nth-of-type(even) .-img {
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .p-class .-age:nth-of-type(even) .-txt {
    order: 1;
  }
}
.p-class .-imgs {
  display: flex;
  flex-direction: column;
  gap: 2% 10px;
}
@media screen and (min-width: 768px) {
  .p-class .-imgs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.p-class .-imgs img {
  display: block;
  width: 49%;
  margin-bottom: 10px;
  border-radius: 10px;
}/*# sourceMappingURL=class.css.map */