@charset "UTF-8";
/* Scss Document */
/*====================================
　早見表
  画面幅サイズ別
  $conts-width-◎　◎＝l , m , s

  サイトカラー
  $color-◎　◎＝pink , blue , orange , green , border , lightgray

  フォントカラー・フォントファミリー
  $font-color-black
  $font-family-gothic  $font-family-mincho

  full-width＝親要素を超えて子要素がフル画面幅
  flex-column＝端寄せ均等幅  flex-center＝上下左右中央揃え
  media(320px ＝ xs   480px ＝ s   768px ＝ m   1000px ＝ l)

  可変px指定clamp
  auto-px(○,□,△) ○＝最大pxサイズ　□＝最小pxサイズ　△＝最小画面サイズ

====================================*/
@font-face {
  font-family: 'Kollektif';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Kollektif.woff") format("woff");
  font-display: swap; }
@font-face {
  font-family: 'Kollektif';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Kollektif-Bold.woff") format("woff");
  font-display: swap; }
/*====================================
	
----------------------------------
  Structure
----------------------------------
1. カラムボックス
2. テキスト
3. 空白ユーティリティ
4. 中央配置
5. 表示・非表示
6. イメージ
7. ボックス装飾
8. リスト・テーブル

9. 追加汎用css

====================================*/
/*----------------------------------
	1. カラムボックス
------------------------------------*/
/*
ブレイクポイントの設定用クラス .bp768 .bp480 .bp420 
を切り替えて使ってください。
.column-box 又は .float-box に設定して下さい
*/
/* ------ カラム（flex） ------- */
.column-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.column-box__2col {
  width: 48%; }

.column-box__3col {
  width: 31%; }

.column-box__4col {
  width: 23%; }

.column-box__5col {
  width: 18%; }

/* カスタム用カラムボックス */
.column-box__80 {
  width: 80%; }

.column-box__70 {
  width: 70%; }

.column-box__65 {
  width: 65%; }

.column-box__60 {
  width: 60%; }

.column-box__55 {
  width: 55%; }

.column-box__50 {
  width: 50%; }

.column-box__45 {
  width: 45%; }

.column-box__40 {
  width: 40%; }

.column-box__35 {
  width: 35%; }

.column-box__30 {
  width: 30%; }

.column-box__25 {
  width: 25%; }

.column-box__20 {
  width: 20%; }

.column-box__auto {
  width: fit-content;
  flex: 1; }

/* リバース */
.column-box.reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse; }

/* 
最終行レイアウト維持のためのclass
コンテンツの数が変動する場合設定してください。
.column-box に設定してください。
*/
/* ３カラム用 */
.column-box--3return::after {
  content: "";
  display: block;
  width: 31%; }

/* ４カラム用 */
.column-box--4return::before {
  content: "";
  display: block;
  width: 23%;
  order: 1; }

.column-box--4return::after {
  content: "";
  display: block;
  width: 23%; }

/* ブレイクポイント-汎用 */
@media screen and (max-width: 768px) {
  .bp768 > [class*="column-box__"] {
    width: 100%;
    margin-bottom: 20px; }

  .bp768 > [class*="column-box__"]:not(:last-child) {
    margin-bottom: 20px; } }
@media screen and (max-width: 480px) {
  .bp480 > [class*="column-box__"] {
    width: 100%; }

  .bp480 > [class*="column-box__"]:not(:last-child) {
    margin-bottom: 20px; } }
@media screen and (max-width: 320px) {
  .bp320 > [class*="column-box__"] {
    width: 100%;
    margin-bottom: 20px; } }
/* ブレイクポイント-中央揃え */
@media screen and (max-width: 768px) {
  .column-box.bp768-c {
    -webkit-justify-content: space-around;
    justify-content: space-around; }

  .column-box.bp768-c > [class*="column-box__"] {
    width: 100%; } }
@media screen and (max-width: 480px) {
  .column-box.bp480-c {
    -webkit-justify-content: space-around;
    justify-content: space-around; }

  .column-box.bp480-c > [class*="column-box__"] {
    width: 100%; } }
@media screen and (max-width: 320px) {
  .column-box.bp320-c {
    -webkit-justify-content: space-around;
    justify-content: space-around; }

  .column-box.bp320-c > [class*="column-box__"] {
    width: 100%; } }
/* android4対策 */
@media screen and (max-width: 980px) {
  body.and4 .column-box {
    display: block;
    text-align: center; }

  body.and4 .column-box > div {
    display: inline-block; } }
/*----------------------------------
	2. テキスト
------------------------------------*/
/* ------ テキストサイズ ------ */
/* ------ テキスト揃え ------ */
.l-txt {
  text-align: left; }

.r-txt {
  text-align: right; }

.c-txt {
  text-align: center; }

/* ------ 三角アイコン ------- */
.icon-triangle {
  position: relative;
  padding-left: 30px; }

.icon-triangle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  width: 0px;
  height: 0px;
  margin-top: -8px;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent; }

/* 色指定 */
.icon-triangle--color::before {
  border-left-color: #fff; }

/*----------------------------------
	3. 空白ユーティリティ
------------------------------------*/
/* ------ 不変マージン ------ */
/* bottom */
.mb-70 {
  margin-bottom: 70px; }

.mb-60 {
  margin-bottom: 60px; }

.mb-50 {
  margin-bottom: 50px; }

.mb-40 {
  margin-bottom: 40px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-20 {
  margin-bottom: 20px; }

.mb-10 {
  margin-bottom: 10px; }

/* ------ 不変パディング ------ */
/* all */
.p-70 {
  padding: 70px; }

.p-60 {
  padding: 60px; }

.p-50 {
  padding: 50px; }

.p-40 {
  padding: 40px; }

.p-30 {
  padding: 30px; }

.p-20 {
  padding: 20px; }

.p-10 {
  padding: 10px; }

/* top bottom */
.mtb-70 {
  padding: 70px 0; }

.mtb-60 {
  padding: 60px 0; }

.mtb-50 {
  padding: 50px 0; }

.mtb-40 {
  padding: 40px 0; }

.mtb-30 {
  padding: 30px 0; }

.mtb-20 {
  padding: 20px 0; }

.mtb-10 {
  padding: 10px 0; }

/*----------------------------------
	4. 中央配置
------------------------------------*/
/* ------ 中央揃え ------- */
/* position(高さ指定必要) */
.center-box01 {
  position: relative; }

.center-box01__cell {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto; }

/* position(高さ指定不要) */
.center-box02 {
  position: relative; }

.center-box02__cell {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%); }

/* flex(幅・高さ指定不要) */
.center-box03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center; }

/*----------------------------------
	5. 表示・非表示
------------------------------------*/
/* 
スマホ用の表示・非表示切り替えです。
ブレイクポイントの数値の後に -on(表示) -off(非表示) で切り替わります。
imgやbrなど細かい調節に使ってください
*/
@media screen and (min-width: 961px) {
  .bp960-on {
    display: none; } }
/* 768px以下からoff(非表示) */
@media screen and (max-width: 960px) {
  .bp960-off {
    display: none; } }
/* 768px以下からon(表示) */
@media screen and (min-width: 769px) {
  .bp768-on {
    display: none; } }
/* 768px以下からoff(非表示) */
@media screen and (max-width: 768px) {
  .bp768-off {
    display: none; } }
/* 480px以下からon(表示) */
@media screen and (min-width: 481px) {
  .bp480-on {
    display: none; } }
/* 480px以下からoff(非表示) */
@media screen and (max-width: 480px) {
  .bp480-off {
    display: none; } }
/* 420px以下からon(表示) */
@media screen and (min-width: 421px) {
  .bp420-on {
    display: none; } }
/* 420px以下からoff(非表示) */
@media screen and (max-width: 420px) {
  .bp420-off {
    display: none; } }
/* 320px以下からoff(非表示) */
@media screen and (max-width: 320px) {
  .bp320-off {
    display: none; } }
/*----------------------------------
	6. イメージ
------------------------------------*/
/* イメージボックスにcover状態なるやーつ */
.img-cover {
  object-fit: cover;
  max-width: 100%;
  height: auto;
  vertical-align: middle; }

.img-cover02__wrap {
  position: relative;
  overflow: hidden; }

.img-cover02 {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

@media screen and (max-width: 768px) {
  [class*="bp768"] > .img-cover02__wrap,
  [class*="bp768"] > div > .img-cover02 {
    position: static;
    transform: none; }

  [class*="bp768"] > div > .img-cover02 {
    width: 100%; } }
@media screen and (max-width: 480px) {
  [class*="bp480"] > .img-cover02__wrap,
  [class*="bp480"] > div > .img-cover02 {
    position: static;
    transform: none; }

  [class*="bp480"] > div > .img-cover02 {
    width: 100%; } }
/*----------------------------------
	1. リスト・テーブル
------------------------------------*/
/* ------ リスト（ul,ol） ------- */
/* リストスタイルクリア */
.list_style_clear {
  list-style: none;
  margin: 0; }

.list_style_clear li {
  margin: 0 0 1.2em; }

/* 黒ぶち */
.list_style01 {
  list-style-type: disc;
  margin: 0 0 0 25px; }

.list_style01 li {
  margin: 0 0 20px; }

/* 丸 */
.list_style02 {
  list-style-type: circle;
  margin: 0 0 0 25px; }

.list_style02 li {
  margin: 0 0 20px; }

/* 四角 */
.list_style03 {
  list-style-type: square;
  margin: 0 0 0 25px; }

.list_style03 li {
  margin: 0 0 20px; }

/* 三角 */
.list_style04 {
  list-style-type: disc; }

.list_style04 li {
  margin-left: 1.8em;
  list-style-type: none; }

.list_style04 li:before {
  content: ' ';
  border: transparent solid 0.3em;
  border-left-color: #000000;
  position: absolute;
  height: 0;
  width: 0;
  left: 1em;
  margin: 0px;
  margin-top: 0.4em;
  padding: 0px; }

/* 番号 */
.list_number {
  list-style-type: decimal;
  margin: 0 0 0 25px; }

.list_number li {
  margin-bottom: 20px; }

/* ------ テーブル ------- */
.table-style01 {
  width: 100%; }

.table-style01 th,
.table-style01 td {
  border: solid 1px #999;
  padding: 10px; }

.table-style01 th {
  background-color: #ccc;
  text-align: left; }

.table-style03 {
  width: 100%;
  margin-bottom: 20px; }

.table-style03 td,
.table-style03 th {
  border: solid 1px #000;
  padding: 20px; }

.table-style03 th {
  width: 50%;
  font-weight: 500; }

.table-style04 {
  width: 100%;
  margin-bottom: 20px; }

.table-style04 td,
.table-style04 th {
  border-bottom: solid 1px #d8d1d6;
  padding: 20px; }

.table-style04 th {
  width: 25%;
  vertical-align: middle;
  font-size: 1.8rem;
  font-weight: 500; }

@media screen and (max-width: 480px) {
  .table-style04 td,
  .table-style04 th {
    display: block; }

  .table-style04 th {
    width: auto;
    border-bottom: none; } }
/*----------------------------------
	8. 追加汎用CSS
------------------------------------*/
p.nothing {
  font-size: clamp(14px, 1.823vw, 18px);
  padding: 20px 0 0 0; }

/* ------ ボタンデザイン ------ */
.btn-style02 {
  background-color: #000;
  border-radius: 3px;
  width: 160px;
  padding: 5px 10px;
  transition: 0.3s ease-in-out;
  border: 1px solid #000; }
  .btn-style02:hover {
    background: #fff;
    text-decoration: none; }
  .btn-style02 a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(10px, 2.083vw, 12px); }
    .btn-style02 a:hover {
      text-decoration: none;
      color: #000; }

/* ------ 画像の動き ------ */
/*.img-wrap {
	display: inline-block;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
	overflow: hidden;
	line-height: 0;
}
.img-wrap img {
	height: auto;
	object-fit: cover;
	margin: 0;
	transition: all 0.3s;
	width: 100%;
}
a.img-wrap:hover img,
.course-box:hover img {
 	-moz-transform: scale(1.15);
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}*/
