@charset "UTF-8";
/* Scss Document */
/*====================================
　早見表
  $conts-width-l $conts-width-m $conts-width-s
  $color-○○○○ 
  $font-color-black
  $font-family-gothic  $font-family-mincho
  @include(font-l) @include(font-m) @include(font-s)

  @include(full-width)
  @include(flex-column)  @include(flex-center)
  auto-px(min,max,最終可変幅)
====================================*/
/*====================================

----------------------------------
  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: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* リバース */
.column-box.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          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%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          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 {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .column-box.bp768-c > [class*=column-box__] {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .column-box.bp480-c {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .column-box.bp480-c > [class*=column-box__] {
    width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .column-box.bp320-c {
    -ms-flex-pack: distribute;
        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. テキスト
------------------------------------*/
/* ------ フォント ------ */
.mincho {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

/* ------ テキストサイズ ------ */
/* ------ テキスト揃え ------ */
.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-80 {
  margin-bottom: 80px;
}

.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;
}

.mb-1em {
  margin-bottom: 1em;
}

.mb-3em {
  margin-bottom: 3em;
}

/* ------ 不変パディング ------ */
/* 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: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*----------------------------------
	5. 表示・非表示
------------------------------------*/
/* 
スマホ用の表示・非表示切り替えです。
ブレイクポイントの数値の後に -on(表示) -off(非表示) で切り替わります。
imgやbrなど細かい調節に使ってください
*/
/* 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 !important;
  }
}
/* 480px以下からoff(非表示) */
@media screen and (max-width: 480px) {
  .bp480-off {
    display: none !important;
  }
}
/* 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 {
  -o-object-fit: 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%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  [class*=bp768] > .img-cover02__wrap,
  [class*=bp768] > div > .img-cover02 {
    position: static;
    -webkit-transform: none;
            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;
    -webkit-transform: none;
            transform: none;
  }
  [class*=bp480] > div > .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: 2rem;
}

.frame-style01 .title {
  margin-bottom: 0.5em;
}

/*----------------------------------
	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 {
  padding: 0.8em;
}
.table-style01 th {
  font-weight: 500;
  text-align: left;
  width: 0;
  white-space: nowrap;
  padding-right: 2em;
}
@media (max-width: 480px) {
  .table-style01 th {
    padding-right: 1em;
  }
}
.table-style01 tr:not(:last-child) th, .table-style01 tr:not(:last-child) td {
  border-bottom: solid 1px #b3b3b3;
}

.table-style03 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: clamp(18px, 2.344vw, 24px);
}
.table-style03 th, .table-style03 td {
  border: solid 1px #000;
  padding: 1em;
}
.table-style03 th {
  background-color: rgba(255, 242, 31, 0.5);
  text-align: center;
}
.table-style03 .price {
  text-align: right;
}

.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;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}

a.img-wrap:hover img,
.course-box:hover img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}