@charset "UTF-8";
/* Scss Document */
/*====================================
　早見表
  $conts-width
  $color-yellow  $color-blue
  $font-color-black
  $font-family-gothic  $font-family-mincho

  full-width
  flex-column  flex-center
  media(320px ＝ xs   480px ＝ s   768px ＝ m   1000px ＝ l)
  fs(max,1000～768px,768～480px,480～320px,min)  fs2(max,min)
  mt(max,min) mb mtb  pt pb ptb

====================================*/
/*====================================

----------------------------------
  Structure
----------------------------------
1. カラムボックス
2. テキスト
3. 空白ユーティリティ
4. 中央配置
5. 表示・非表示
6. イメージ
7. ボックス装飾
8. リスト・テーブル

9. 追加汎用css

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

/* カラムボックス
（改行しない変わりにautoはあり） */
.column-box--nowrap {
  display: flex;
  flex-wrap: nowrap;
  gap: 2em;
}
.column-box--nowrap.no-gap {
  gap: 0;
}
.column-box--nowrap.narrow-gap {
  gap: 1em;
}
.column-box--nowrap.wide-gap {
  gap: 3em;
}
.column-box--nowrap .column-box__auto {
  flex-basis: 0;
  flex-grow: 1;
}

/* 投稿用グリッドボックス（等幅のボックスしか使えません） */
.grid-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2em;
}

/* カラムサイズ指定（分割） */
.column-box__2col {
  flex-basis: 48%;
}

.column-box__3col {
  flex-basis: 31%;
}

.column-box__4col {
  flex-basis: 23%;
}

.column-box__5col {
  flex-basis: 18%;
}

/* カラムサイズ指定（カスタム）*/
.column-box__80 {
  flex-basis: 80%;
}

.column-box__70 {
  flex-basis: 70%;
}

.column-box__65 {
  flex-basis: 65%;
}

.column-box__60 {
  flex-basis: 60%;
}

.column-box__55 {
  flex-basis: 55%;
}

.column-box__50 {
  flex-basis: 50%;
}

.column-box__45 {
  flex-basis: 45%;
}

.column-box__40 {
  flex-basis: 40%;
}

.column-box__35 {
  flex-basis: 35%;
}

.column-box__34 {
  flex-basis: 34%;
}

.column-box__33 {
  flex-basis: 33%;
}

.column-box__30 {
  flex-basis: 30%;
}

.column-box__25 {
  flex-basis: 25%;
}

.column-box__20 {
  flex-basis: 20%;
}

@media screen and (min-width: 1500px) {
  .column-box__baseleft {
    flex-basis: 70%;
  }
  .column-box__baseright {
    flex-basis: 30%;
  }
}
@media screen and (max-width: 1499px) {
  .column-box__baseleft {
    flex: 1;
  }
  .column-box__baseright {
    flex-basis: 420px;
  }
}
@media screen and (max-width: 1000px) {
  .column-box__baseleft {
    flex: 1;
  }
  .column-box__baseright {
    flex-basis: 40%;
  }
}
/* リバース */
.column-box.reverse {
  flex-direction: row-reverse;
}

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

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

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

/* ブレイクポイント-汎用 */
@media screen and (max-width: 1000px) {
  .column-box.bp1000,
  .column-box--nowrap.bp1000 {
    flex-wrap: wrap;
  }
  .bp1000 > [class*=column-box__] {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 768px) {
  .column-box.bp768 {
    flex-wrap: wrap;
  }
  .bp768 > [class*=column-box__] {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 480px) {
  .column-box.bp480 {
    flex-wrap: wrap;
  }
  .bp480 > [class*=column-box__] {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 320px) {
  .column-box.bp320 {
    flex-wrap: wrap;
  }
  .bp320 > [class*=column-box__] {
    flex-basis: 100%;
  }
}
/* ブレイクポイント-中央揃え */
@media screen and (max-width: 768px) {
  .column-box.bp768-c,
  .column-box--nowrap.bp768-c {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .column-box.bp768-c > [class*=column-box__],
  .column-box--nowrap.bp768-c > [class*=column-box__] {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 480px) {
  .column-box.bp480-c,
  .column-box--nowrap.bp480-c {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .column-box.bp480-c > [class*=column-box__],
  .column-box--nowrap.bp480-c > [class*=column-box__] {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 320px) {
  .column-box.bp320-c,
  .column-box--nowrap.bp320-c {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .column-box.bp320-c > [class*=column-box__],
  .column-box--nowrap.bp320-c > [class*=column-box__] {
    flex-basis: 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;
}

/* ------ テキストサイズ ------ */
.fs-l {
  font-size: clamp(28px, 3.646vw, 36px);
  line-height: 1.3em;
  letter-spacing: 0.24em;
}
@media screen and (max-width: 768px) {
  .fs-l {
    font-size: clamp(20px, 4.167vw, 28px);
  }
}

.fs-m {
  font-size: clamp(20px, 2.604vw, 26px);
  line-height: 2;
  letter-spacing: 0.24em;
}
@media screen and (max-width: 768px) {
  .fs-m {
    font-size: clamp(16px, 3.333vw, 20px);
  }
}

.fs-s {
  font-size: clamp(16px, 2.083vw, 18px);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .fs-s {
    font-size: clamp(14px, 4.375vw, 16px);
  }
}

.fs-xs {
  font-size: clamp(10px, 2.083vw, 12px);
  line-height: 1.5;
}

.fs-small {
  font-size: 70%;
}

/* ------ テキスト揃え ------ */
.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;
}

/*----------------------------------
	2. 画像トリミング
------------------------------------*/
.img-type--7-1 img {
  aspect-ratio: 7/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-type--1-1 img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-type--4-3 img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-type--3-2 img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-type--16-9 img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-type--3-4 img {
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-type--2-3 img {
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-type--9-16 img {
  aspect-ratio: 9/16;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------
	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-15em {
  margin-bottom: 1.5em;
}

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

.mb-25em {
  margin-bottom: 2.5em;
}

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

/* 可変 */
.p-1em {
  padding: 1em;
}

.ptb-1em {
  padding: 1em 0;
}

.ptb-15em {
  padding: 1.5em 0;
}

.ptb-2em {
  padding: 2em 0;
}

.ptb-25em {
  padding: 2.5em 0;
}

.ptb-3em {
  padding: 3em 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%;
  transform: translateY(-50%) translateX(-50%);
}

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

/*----------------------------------
	5. 表示・非表示
------------------------------------*/
/* 
スマホ用の表示・非表示切り替えです。
ブレイクポイントの数値の後に -on(表示) -off(非表示) で切り替わります。
imgやbrなど細かい調節に使ってください
*/
/* 1024px以下からon(表示) */
@media screen and (min-width: 1025px) {
  .bp1024-on {
    display: none;
  }
}
/* 1024px以下からoff(非表示) */
@media screen and (max-width: 1024px) {
  .bp1024-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 !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%;
  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%;
  }
}
/*----------------------------------
	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_style--disc {
  list-style-type: disc;
  margin: 0 0 0 1em;
}
.list_style--disc li {
  margin: 0 0 1.2em;
}
.list_style--circle {
  list-style-type: circle;
  margin: 0 0 0 1em;
}
.list_style--circle li {
  margin: 0 0 1.2em;
}
.list_style--square {
  list-style-type: square;
  margin: 0 0 0 1em;
}
.list_style--square li {
  margin: 0 0 1.2em;
}
.list_style--square {
  list-style-type: square;
  margin: 0 0 0 1em;
}
.list_style--square li {
  margin: 0 0 1.2em;
}
.list_style--square {
  list-style-type: disc;
  margin: 0 0 0 1em;
}
.list_style--square li {
  margin-left: 1.8em;
  list-style-type: none;
}
.list_style--square 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 1em;
}
.list_number li {
  margin: 0 0 1.2em;
}

/* ------ テーブル ------- */
.table-style01 {
  width: 100%;
  border-bottom: solid 1px #231815;
}
.table-style01 table {
  width: 100%;
  border: none;
}
.table-style01 th, .table-style01 td {
  border: none;
  padding: 0.8em;
}
.table-style01 th {
  font-weight: 700;
  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 #231815;
}

.table-style02 {
  width: 100%;
  margin-bottom: 20px;
}
.table-style02 td, .table-style02 th {
  border: solid 1px #000;
  padding: 20px;
}
.table-style02 th {
  width: 50%;
  font-weight: 500;
}

.table-style03 {
  width: 100%;
  margin-bottom: 20px;
}
.table-style03 td, .table-style03 th {
  border-bottom: solid 1px #d8d1d6;
  padding: 20px;
}
@media (max-width: 480px) {
  .table-style03 td, .table-style03 th {
    display: block;
  }
}
.table-style03 th {
  width: 25%;
  vertical-align: middle;
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 480px) {
  .table-style03 th {
    width: auto;
    border-bottom: none;
  }
}

/*----------------------------------
	8. 追加汎用CSS
------------------------------------*/
/* ------ テキスト装飾 ------ */
.text-waai::before, .text-waai::after {
  width: 2px;
  height: 2em;
  content: "";
  background-color: #231815;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10px;
}
.text-waai::before {
  margin-right: 1em;
  transform: rotate(-30deg);
}
.text-waai::after {
  margin-left: 1em;
  transform: rotate(30deg);
}
.text-waai code {
  display: inline-block;
}

.text-waai--2row::before, .text-waai--2row::after {
  height: 4em;
}

/* ------ 画像の動き ------ */
.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;
  transition: all 0.3s;
  width: 100%;
}

a.img-wrap:hover img,
.course-box:hover img {
  transform: scale(1.15);
}/*# sourceMappingURL=common.css.map */