@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: -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; }

/* カラムボックス
（改行しない変わりにautoはあり） */
.column-box--nowrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  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(200px, 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__30 {
  flex-basis: 30%; }

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

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

/* リバース */
.column-box.reverse {
  flex-direction: row-reverse;
  -webkit-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%; }

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

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

/* ブレイクポイント-汎用 */
@media screen and (max-width: 768px) {
  .column-box.bp768 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }

  .bp768 > [class*="column-box__"] {
    flex-basis: 100%; } }
@media screen and (max-width: 480px) {
  .column-box.bp480 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }

  .bp480 > [class*="column-box__"] {
    flex-basis: 100%; } }
@media screen and (max-width: 320px) {
  .column-box.bp320 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    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 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    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 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    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 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    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(30px, 3.906vw, 34px);
  line-height: 1.3em;
  letter-spacing: 0.1em; }
  @media screen and (max-width: 768px) {
    .fs-l {
      font-size: clamp(24px, 5vw, 30px); } }

.fs-m {
  font-size: clamp(23px, 2.995vw, 28px);
  line-height: 2;
  letter-spacing: 0.34em; }
  @media screen and (max-width: 768px) {
    .fs-m {
      font-size: clamp(19px, 3.958vw, 23px); } }

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

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

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

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

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

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

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

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

.img-type--9-16 img {
  aspect-ratio: 9/16;
  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; }

/* 可変 */
.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%;
  -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など細かい調節に使ってください
*/
/* 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 {
  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%; } }
/*----------------------------------
	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 {
  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 #AAAAAA; }

.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
------------------------------------*/
/* ------ 背景色 ------ */
.bg-orange {
  background-color: #fce6dc; }

.bg-beige {
  background-color: #fcf5dc; }

/* ------ ボタンデザイン ------ */
/* ------ 画像の動き ------ */
.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); }
