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

// ---------------------------------------------------------------------------------------- */
/*
admission
-----------------------------------------------------*/
.p-admission .-flow ol {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: li;
}
.p-admission .-flow ol li {
  position: relative;
  margin: 0;
  padding: 0 0 80px 96px;
}
.p-admission .-flow ol li:before {
  position: absolute;
  color: #fff;
  font-weight: bold;
  counter-increment: li;
  content: counter(li) "";
  left: 0;
  top: 0;
  width: 74px;
  height: 74px;
  text-align: center;
  font-size: 28px;
  line-height: 74px;
  background: #7abf85;
  border-radius: 2em;
}
.p-admission .-flow ol li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  width: 2px;
  height: 100%;
  background: #7abf85;
  z-index: -1;
}
.p-admission .-flow dl dt {
  color: #7abf85;
  font-size: clamp(24px, 0.46vw + 22.5px, 30px);
  line-height: 1.6;
  font-weight: 600;
  padding: 0.5em 0;
}/*# sourceMappingURL=admission.css.map */