<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*====================================
	
----------------------------------
  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.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 &gt; [class*="column-box__"] {
    width: 100%;
    margin-bottom: 20px;
  }
	.bp768 &gt; [class*="column-box__"]:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .bp480 &gt; [class*="column-box__"] {
    width: 100%;
  }
	.bp480 &gt; [class*="column-box__"]:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 320px) {
  .bp320 &gt; [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 &gt; [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 &gt; [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 &gt; [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 &gt; div {
    display: inline-block;
  }
}

/* ------ フロート ------- */

.float-box { overflow: hidden; }
.float-box__left { float: left; }
.float-box__right { float: right; }
@media screen and (max-width: 768px) {
  .bp768 &gt; .float-box__left,
  .bp768 &gt; .float-box__right {
    float: none;
  }
}
@media screen and (max-width: 480px) {
  .bp480 &gt; .float-box__left,
  .bp480 &gt; .float-box__right {
    float: none;
  }
}
@media screen and (max-width: 320px) {
  .bp320 &gt; .float-box__left,
  .bp320 &gt; .float-box__right {
    float: none;
  }
}



/*----------------------------------
	2. テキスト
------------------------------------*/
/* ------ テキストサイズ ------ */
.fs-22 { font-size: 2.2rem; }
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .fs-22 { font-size: calc((2.2rem * 100 / 80) * 0.85); }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .fs-22 { font-size: calc((2.2rem * 100 / 70) * 0.8); }
}
@media screen and (max-width: 480px) and (min-width: 320px) {
  .fs-22 { font-size: calc((2.2rem * 100 / 50) * 0.75); }
}
.fs-20 { font-size: 2rem; }
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .fs-20 { font-size: calc((2rem * 100 / 80) * 0.85); }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .fs-20 { font-size: calc((2rem * 100 / 70) * 0.8); }
}
@media screen and (max-width: 480px) and (min-width: 320px) {
  .fs-20 { font-size: calc((2rem * 100 / 50) * 0.75); }
}
.fs-18 { font-size: 1.8rem; }
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .fs-18 { font-size: calc((1.8rem * 100 / 80) * 0.95); }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .fs-18 { font-size: calc((1.8rem * 100 / 70) * 0.9); }
}
@media screen and (max-width: 480px) and (min-width: 320px) {
  .fs-18 { font-size: calc((1.8rem * 100 / 50) * 0.85); }
}
.fs-16 { font-size: 1.6rem; }
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .fs-16 { font-size: calc((1.6rem * 100 / 80) * 0.97); }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .fs-16 { font-size: calc((1.6rem * 100 / 70) * 0.95); }
}
@media screen and (max-width: 480px) and (min-width: 320px) {
  .fs-16 { font-size: calc((1.6rem * 100 / 50) * 0.9); }
}


/* ------ サブテキスト ------ */
.t-small-90 { font-size: 90%; }
.t-small-80 { font-size: 80%; }
.t-small-70 { font-size: 70%; }
.t-small-60 { font-size: 60%; }

/* ------ テキスト揃え ------ */
.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-70r { margin-bottom: 7.0rem; }
.mb-60r { margin-bottom: 6.0rem; }
.mb-50r { margin-bottom: 5.0rem; }
.mb-40r { margin-bottom: 4.0rem; }
.mb-30r { margin-bottom: 3.0rem; }
.mb-20r { margin-bottom: 2.0rem; }
.mb-10r { margin-bottom: 1.0rem; }

/* ------ 不変マージン ------ */
/* 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-70r { padding: 7.0rem; }
.p-60r { padding: 6.0rem; }
.p-50r { padding: 5.0rem; }
.p-40r { padding: 4.0rem; }
.p-30r { padding: 3.0rem; }
.p-20r { padding: 2.0rem; }
.p-10r { padding: 1.0rem; }
/* top bottom */
.mtb-70r { padding: 7.0rem 0; }
.mtb-60r { padding: 6.0rem 0; }
.mtb-50r { padding: 5.0rem 0; }
.mtb-40r { padding: 4.0rem 0; }
.mtb-30r { padding: 3.0rem 0; }
.mtb-20r { padding: 2.0rem 0; }
.mtb-10r { padding: 1.0rem 0; }

/* ------ 不変パディング ------ */
/* 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. 表示・非表示
------------------------------------*/
@media screen and (min-width: 769px) {
  .bp768-on { display: none; }
}
@media screen and (max-width: 768px) {
  .bp768-off { display: none; }
}
@media screen and (min-width: 481px) {
  .bp480-on { display: none; }
}
@media screen and (max-width: 480px) {
  .bp480-off { display: none; }
}
/* 
スマホ用の改行の表示・非表示切り替えです。
ブレイクポイントの数値の後に -on(表示) -off(非表示) で切り替わります。
*/
/* ------ 改行表示非表示 ------- */
@media screen and (max-width: 768px) {
  br.bp768-off { display: none; }
}
@media screen and (min-width: 769px) {
  br.bp768-on { display: none; }
}
@media screen and (max-width: 480px) {
  br.bp480-off { display: none; }
}
@media screen and (min-width: 481px) {
  br.bp480-on { display: none; }
}
@media screen and (max-width: 420px) {
  br.bp420-off { display: none; }
}
@media screen and (min-width: 421px) {
  br.bp420-on { display: none; }
}
@media screen and (max-width: 320px) {
  br.bp320-off { display: none; }
}

/* ------ イメージ表示非表示 ------- */
@media screen and (max-width: 768px) {
  img.bp768-off { display: none; }
}
@media screen and (min-width: 769px) {
  img.bp768-on { display: none; }
}
@media screen and (max-width: 480px) {
  img.bp480-off { display: none; }
}
@media screen and (min-width: 481px) {
  img.bp480-on { display: none; }
}
@media screen and (max-width: 420px) {
  img.bp420-off { display: none; }
}
@media screen and (min-width: 421px) {
  img.bp420-on { display: none; }
}
@media screen and (max-width: 320px) {
  img.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"] &gt; .img-cover02__wrap,
  [class*="bp768"] &gt; div &gt; .img-cover02 {
    position: static;
    transform: none;
  }
  [class*="bp768"] &gt; div &gt; .img-cover02 {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  [class*="bp480"] &gt; .img-cover02__wrap,
  [class*="bp480"] &gt; div &gt; .img-cover02 {
    position: static;
    transform: none;
  }
  [class*="bp480"] &gt; div &gt; .img-cover02 {
    width: 100%;
  }
}




/*----------------------------------
	7. ボックス装飾
------------------------------------*/
/* ------ ボックス装飾 ------ */
.d-block {
	display: block;
}
/* ------ ボックスサイズ装飾 ------ */
.box-width__800 {
	max-width: 800px;
	margin: auto;
}
/* ------ 枠デザイン ------ */
.frame-style01 {
  border: 1px solid #000;
  margin-left: auto;
  margin-right: auto;
  max-width: 94%;
}
.frame-style01::before {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #e70014;
}
.frame-style01 .inner {
  padding: 2.0rem;
}
.frame-style01 .title {
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .frame-style01 .title {
    font-size: calc((1.8rem * 100 / 80) * 0.81);
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .frame-style01 .title {
    font-size: calc((1.8rem * 100 / 70) * 0.8);

  }
}
@media screen and (max-width: 480px) and (min-width: 320px) {
  .frame-style01 .title {
    font-size: calc((1.8rem * 100 / 50) * 0.75);
  }
}


/*----------------------------------
	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
------------------------------------*/

/* ------ ボタンデザイン ------ */




/* ------ 画像の動き ------ */
.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);
}</pre></body></html>