@charset "UTF-8";
/*-----------------------------------------
    カラー
------------------------------------------*/
/*-----------------------------------------
    ブレイクポイント
------------------------------------------*/
/*-----------------------------------------
    ベース
------------------------------------------*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #333333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.5;
  width: 100%;
}

a {
  color: #333333;
  cursor: pointer;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}


.fontwhite {color: #ffffff;}

/*-----------------------------------------
    インナー幅
------------------------------------------*/
.ly_inner {
  margin: 0 auto;
  max-width: 1128px;
  padding: 0 24px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .ly_inner {
    padding: 0 16px;
  }
}

/* 広い幅 */
.ly_inner__wide {
  max-width: 1392px;
}

/* 狭い幅 */
.ly_inner__narrow {
  max-width: 948px;
}


/*-----------------------------------------
    非表示
------------------------------------------*/
@media only screen and (max-width: 767px) {
  .display__pc {
    display: none;
  }
}

.display__sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .display__sp {
    display: block;
  }
}


/*-----------------------------------------
    ボタン
------------------------------------------*/
/* 共通 */
.el_btn {
  -webkit-transition: opacity .3s;
  -webkit-box-shadow: 0 4px 8px rgba(51, 51, 51, 0.3);
  border: 3px solid #ffffff;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(51, 51, 51, 0.3);
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .1em;
  max-width: 100%;
  padding: 28px 16px;
  position: relative;
  text-align: center;
  transition: opacity .3s;
  width: 664px;
  /* hover */
}

@media only screen and (max-width: 767px) {
  .el_btn {
    border: 2px solid #fff;
    font-size: 16px;
    padding: 12px;
    width: 285px;
  }
}

.el_btn:hover {
  opacity: .7;
}

/* 背景色赤 */
.el_btn__red {
  background-color: #a03e63;
  color: #FFFFFF;
  /* 矢印 */
}

.el_btn__red::before {
  -webkit-transform: translateY(-50%);
  background: url(../../src/image/cta/button_arrow_white.svg) no-repeat center/cover;
  content: "";
  height: 28px;
  margin: auto;
  margin-top: .1em;
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
}

@media only screen and (max-width: 767px) {
  .el_btn__red::before {
    height: 16px;
    margin-top: .05em;
    right: 32px;
    width: 16px;
  }
}

@media only screen and (max-width: 320px) {
  .el_btn__red::before {
    right: 24px;
  }
}

/* 背景色透明 */
.el_btn__transparent {
  background-color: #FFFFFF;
  color: #a03e40;
  /* 矢印 */
}

.el_btn__transparent::before {
  -webkit-transform: translateY(-50%);
  background: url(../../src/image/cta/button_arrow_red.svg) no-repeat center/cover;
  content: "";
  height: 28px;
  margin: auto;
  margin-top: 0.1em;
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
}

@media only screen and (max-width: 767px) {
  .el_btn__transparent::before {
    height: 16px;
    margin-top: .05em;
    right: 32px;
    width: 16px;
  }
}


/* 小さいボタン */
.el_btn__small {
    font-size: 20px;
    padding: 16px;
    width: 264px;
    margin: 0 10px;
}

@media only screen and (max-width: 767px) {
  .el_btn__small {
    font-size: 0.9rem;
    font-weight: 400;
    padding: 10px 4px;
    width: 21vw;
    margin: 0 0.3rem 0 0;
  }
}


/* 緑のボタン */

.bl_cta_course_body {
    border: 2px solid #38485e;
    margin-top: 56px;
    padding: 40px 10px;
    position: relative;
}

.el_btn__green {
    background-color: #38485e;
    color: #FFFFFF;
}

.el_btn_green
    {
    border: 3px solid #38485e;

    box-shadow: 0 4px 8px rgba(51, 51, 51, 0.3);
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .1em;
    max-width: 660px;
    padding: 28px 16px;
    position: relative;
    text-align: center;
    transition: opacity .3s;
    width: 100%;
}

@media only screen and (max-width: 767px)
{
.el_btn_green {
    border: 1px solid #38485e;
    font-size: 16px;
    padding: 12px;
    width: 100%;
}
    .bl_cta_course_body {
    padding: 32px 12px 24px;

}
}

.el_btn__white{
  background-color: #fff;
  color: #38485e;
  border: 3px solid #fff;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(51, 51, 51, 0.3);
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .1em;
  max-width: 100%;
  padding: 28px 16px;
  position: relative;
  text-align: center;
  transition: opacity .3s;
  width: 664px;
}
@media only screen and (max-width: 767px){
.el_btn__white {
  border: 1px solid #fff;
  font-size: 16px;
  padding: 12px;
  width: 285px;
}
}




/* CTA04 ブロック */
.bl_cta04 {
  background: #38485e;
  color: #fff;
  padding: 14rem 29rem 14rem;
  text-align: center;
  margin: -15rem;
}

@media only screen and (max-width: 767px) {
  .bl_cta04 {
    padding: 6rem 2rem 4rem;
    margin: -12rem auto;
  }
}

/* 見出し */
.bl_cta04_lv2Heading {
  display: inline;
}

/* リード文 */
.bl_cta04_lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  line-height: 1.7;
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .bl_cta04_lead {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .bl_cta04_lead {
    margin-top: 24px;
    text-align: left;
  }
}

/* ボディ */
.bl_cta04_body {
  border: 2px solid #FFF;
  margin-top: 56px;
  padding: 48px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .bl_cta04_body {
    margin-top: 40px;
    padding: 32px 12px 24px;
  }
}

/* タイトル */
.bl_cta04_ttl {
  -webkit-transform: translateY(-50%) translateX(-50%);
  background-color: #38485e;
  font-size: 24px;
  font-weight: 500;
  left: 50%;
  letter-spacing: 0;
  padding: 0 3em;
  position: absolute;
  top: 0;
  transform: translateY(-50%) translateX(-50%);
  width: 324px;
}

@media only screen and (max-width: 767px) {
  .bl_cta04_ttl {
    font-size: 16px;
    padding: 0 1.2em;
    width: 184px;
  }
}

/* マイクロコピーを含めたボタンのブロック */
.bl_cta04_btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bl_cta04_btn + .bl_cta04_btn {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .bl_cta04_btn + .bl_cta04_btn {
    margin-top: 32px;
  }
}

/* 余白を大きく取るCTA */
.bl_cta04_margin {
  margin-top: 66px;
}

@media only screen and (max-width: 767px) {
  .bl_cta04_margin {
    margin-top: 40px;
  }
}
/*-----------------------------------------
    見出し
------------------------------------------*/
/*h1見出し*/
.el_lv1Heading {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .el_lv1Heading {
    font-size: 28px;
  }
}

/* h1見出しアクセント */
.el_lv1Heading__alert {
  border: 1px solid #333333;
  display: block;
  font-size: 30px;
  margin-bottom: 8px;
  padding: 12px;
}

@media only screen and (max-width: 767px) {
  .el_lv1Heading__alert {
    font-size: 16px;
    padding: 6px;
  }
}

/* h1見出し小さめ */
.el_lv1Heading__small {
  display: block;
  font-size: 22px;
  font-weight: 400;
  margin: 3rem 0 1rem;
}
@media only screen and (max-width: 767px) {
  .el_lv1Heading__small {
    font-size: 20px;
    margin: 1.5rem 0 1.3rem;
    line-height: 2.5rem;
  }
}

/* h2見出し */
.el_lv2Heading {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .el_lv2Heading {
    font-size: 20px;
  }
}

/* h3見出し */
.el_lv3Heading {
  font-size: 24px;
  font-weight: 500;
}

/*-----------------------------------------
    マイクロコピー
------------------------------------------*/
.el_microcopy {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 8px;
      color: #fa7c07;
}

@media only screen and (max-width: 767px) {
  .el_microcopy {
    font-size: 12px;
  }
}

/* アクセント */
.el_microcopy__alert {
  position: relative;
}

.el_microcopy__alert::before, .el_microcopy__alert::after {
  background-color: transparent;
  border-right: 2px solid #fa7c07;
  bottom: 0;
  content: '';
  height: 36px;
  position: absolute;
  width: 10px;
}

@media only screen and (max-width: 767px) {
  .el_microcopy__alert::before, .el_microcopy__alert::after {
    border-right: 1px solid #fa7c07;
    height: 16px;
    width: 6px;
  }
}

.el_microcopy__alert::before {
  -webkit-transform: rotate(145deg);
  left: -20px;
  transform: rotate(145deg);
}

@media only screen and (max-width: 767px) {
  .el_microcopy__alert::before {
    left: -10px;
  }
}

.el_microcopy__alert::after {
  -webkit-transform: rotate(35deg);
  right: -20px;
  transform: rotate(35deg);
}

@media only screen and (max-width: 767px) {
  .el_microcopy__alert::after {
    right: -10px;
  }
}

/*-----------------------------------------
    アンダーライン
------------------------------------------*/
.underLine {
  background: linear-gradient(transparent 60%, #a03e4045 40%);
}

/*-----------------------------------------
    コピーライト
------------------------------------------*/
.copyright {
  display: inherit;
  font-size: 14px;
  letter-spacing: 0;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .copyright {
    font-size: 12px;
  }
}

/*-----------------------------------------
    リセット
------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  background: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  border: 0;
  border-top: 1px solid #cccccc;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

iframe {
  border-width: 0px;
}

/*-----------------------------------------
    ヘッダー
------------------------------------------*/
.bl_header {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

    justify-content: flex-end;
  padding-left: 12px;
}

@media only screen and (max-width: 767px) {
  .bl_header {
    padding: 0;
      justify-content: right;

  }
}

/* ロゴ */
.bl_header_logo img {
  width: 180px;
}

@media only screen and (max-width: 767px) {
  .bl_header_logo img {
    width: 120px;
  }
}
/* header_bnr */
a.bl_header_bnr {
  margin: 1rem 1rem 0;
}
.bl_header_bnr img {
  width: 25rem;
}

@media only screen and (max-width: 767px) {
  .bl_header_bnr img {
    width: auto;
  }
}

/* ヘッダー内のボタン */
.bl_header_btn > .el_btn {
  -webkit-transition: opacity .3s;
  background-color: #a03e63;
  border: 1px solid #a03e63;
  color: #FFFFFF;
  transition: opacity .3s;

  /* 矢印 */
  /* hover */
}

.bl_header_btn > .el_btn::before {
  -webkit-transform: translateY(-50%);
  /* background: url(../../src/image/cta/button_arrow_white.svg) no-repeat center/cover; */
  content: "";
  height: 24px;
  margin: auto;
  margin-top: .1em;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}
a.bl_header_logo {
    margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .bl_header_btn > .el_btn::before {
    height: 16px;
    margin-top: .05em;
    right: 16px;
    width: 16px;
  }
    a.bl_header_logo {
    margin-right: 0;

}
}

.bl_header_btn > .el_btn:hover {
  opacity: .7;
}




/*-----------------------------------------
    レイヤー
------------------------------------------*/
/* ヘッダー */
.ly_header {
  padding: 10px 0;
  position: relative;
  width: 100%;
  z-index: 5;
}



/* フッター */
.ly_footer {
  margin-top: 0;
    padding-bottom: 25vh;
}

@media only screen and (max-width: 767px) {
  .ly_footer {
    padding-bottom: 13vh;
  }
}

/* メインビジュアル */
.ly_mainVisual01 {
  padding-top: 2rem;
}

@media only screen and (max-width: 767px) {
  .ly_mainVisual01 {
    padding-top: 5rem;
  }
}

.ly_mainVisual02 {
  margin-top: 110px;
  padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  .ly_mainVisual02 {
    margin-top: 30px;
    padding: 0;
  }
}

/* セクション */
.ly_section {
  margin-top: 100px;
}

@media only screen and (max-width: 767px) {
  .ly_section {
    margin-top: 60px;
  }
}

/* コンバージョン(重ね) */
.ly_cta__stack {
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .ly_cta__stack {
    margin-top: 300px;
    position: static;
    z-index: 1;
  }
}

@media only screen and (max-width: 767px) {
  .ly_cta__stack {
    margin-top: 290px;
  }
}

/* コース */
.ly_course {
  background: url(../../src/image/course/course_bg.png) no-repeat center/cover;
  padding: 15rem 0;
}

@media only screen and (max-width: 767px) {
  .ly_course {
    padding: 5rem 0 10rem;
  }
}

/* コンバージョン */
.ly_cta {
  margin-top: 100px;
}

@media only screen and (max-width: 767px) {
  .ly_cta {
    margin-top: 30px;
  }
}
/* 開催地域 */
.ly_area {
  margin-top: 30rem;
}
@media only screen and (max-width: 767px) {
.ly_area {
  margin-top: 20rem;
}
}

/* キャンペーン */
.ly_campaign {
  background: #38485e;
  color: #fff;
  padding: 10rem 5rem;
}
@media only screen and (max-width: 767px) {
  .ly_campaign {
padding: 5rem 0;
  }}

  /* 5つの理由 */
  .ly_reason {
    background: #fff;
    padding: 15rem 0;
}
@media only screen and (max-width: 767px) {
  .ly_reason {
padding: 5rem 0;
  }}

/*-----------------------------------------
    キャンペーン
------------------------------------------*/
/* ブロック */
.bl_campaign {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

}

@media only screen and (max-width: 767px) {
  .bl_campaign {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;

    padding: 0 16px;
  }
}

/* 見出し */
.bl_campaign_heading {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  background: #c3cd23;
  padding: 14px;
  white-space: nowrap;
  color: #38485e;
}

@media only screen and (max-width: 767px) {
  .bl_campaign_heading {
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
    padding: 2px 40px;
  }
}

/* ボディ */
.bl_campaign_body {
  margin-left: 56px;
}

@media only screen and (max-width: 767px) {
  .bl_campaign_body {
    margin-left: 0;
    margin-top: 16px;
  }
}

/* 本文 */
.bl_campaign_paragraph {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .bl_campaign_paragraph {
    font-size: 16px;
  }
}

/* 補足文 */
.bl_campaign_explanation {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.5;
  margin-top: 4px;
}

@media only screen and (max-width: 767px) {
  .bl_campaign_explanation {
    font-size: 14px;
  }
}

/*-----------------------------------------
    コース
------------------------------------------*/
/* ブロック */
.bl_course {
  margin-top: 40px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .bl_course {
    margin-top: 32px;
  }
}

/* リード文の配置 */
.ly_course_heading {
  text-align: center;
}

/* リード文 */
.bl_course_lv3Heading {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  background-color: #38485e;
  padding: 0.5em;
  margin-top: 32px;
}

@media only screen and (max-width: 767px) {
  .bl_course_lv3Heading {
    font-size: 18px;
    margin-top: 16px;
  }
}

/* アイテムリスト */
.bl_course_list {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

/* アイテム */
.bl_course_item {
  position: relative;
  width: 50%;
  /* アイテム内のコンテンツ背景と配置 */
}

@media only screen and (max-width: 767px) {
  .bl_course_item {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .bl_course_item + .bl_course_item {
    margin-top: 16px;
  }
}

.bl_course_item:nth-child(1) > .bl_course_content {
  background: rgba(194, 205, 34, 0.7);
  bottom: 0;
  right: 0;
}

.bl_course_item:nth-child(2) > .bl_course_content {
  background: rgba(255, 255, 255, 0.8);
  bottom: 0;
  left: 0;
}

.bl_course_item:nth-child(3) > .bl_course_content {
  background: rgba(255, 255, 255, 0.8);
  right: 0;
  top: 0;
}

@media only screen and (max-width: 767px) {
  .bl_course_item:nth-child(3) > .bl_course_content {
    background: rgba(194, 205, 34, 0.7);
  }
}

.bl_course_item:nth-child(4) > .bl_course_content {
  background: rgba(194, 205, 34, 0.7);
  left: 0;
  top: 0;
}

@media only screen and (max-width: 767px) {
  .bl_course_item:nth-child(4) > .bl_course_content {
    background: rgba(255, 255, 255, 0.8);
  }
}

/* 説明 */
.bl_course_content {
  font-weight: 500;
  padding: 20px 16px;
  position: absolute;
  width: 250px;
}

/* 説明テキスト */
.bl_course_explanation {
  font-size: 14px;
  text-align: left;
}


@media only screen and (max-width: 767px) {
  .bl_course_content {
    position: static;
    width: auto;
  }
}

/* 画像 */
.bl_course_image img {
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: bottom;
  width: 100%;
}

/* 文章 */
.bl_course_paragraph {
  font-size: 16px;
  letter-spacing: .03em;
  line-height: 1.5;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .bl_course_paragraph {
    font-size: 14px;
  }
}






/*-----------------------------------------
    コース
------------------------------------------*/
/* ブロック */
.bl_course {
  margin-top: 40px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .bl_course {
    margin-top: 32px;
  }
}

/* リード文の配置 */
.ly_course_heading {
  text-align: center;
}

/* リード文 */
.bl_course_lv3Heading {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  background-color: #0b213d;
  padding: 0.5em;
  margin-top: 32px;
}

@media only screen and (max-width: 767px) {
  .bl_course_lv3Heading {
    font-size: 18px;
    margin-top: 16px;
  }
}

/* アイテムリスト */
.bl_course_list {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

/* アイテム */
.bl_course_item {
  position: relative;
  width: 50%;
  /* アイテム内のコンテンツ背景と配置 */
}

@media only screen and (max-width: 767px) {
  .bl_course_item {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .bl_course_item + .bl_course_item {
    margin-top: 16px;
  }
}

.bl_course_item:nth-child(1) > .bl_course_content {
  background: rgb(11 33 61 / 80%);
  bottom: 0;
  right: 0;
}

.bl_course_item:nth-child(2) > .bl_course_content {
  background: rgb(11 33 61 / 80%);
  bottom: 0;
    left: 0;
}

.bl_course_item:nth-child(3) > .bl_course_content {
  background: rgb(11 33 61 / 80%);
  bottom: 0;
  right: 0;
}

@media only screen and (max-width: 767px) {
  .bl_course_item:nth-child(3) > .bl_course_content {
    background: rgb(11 33 61 / 80%);
  }
}

.bl_course_item:nth-child(4) > .bl_course_content {
  background: rgb(11 33 61 / 80%);
  left: -250px;
    top: 0;
    width: 500px;
}

@media only screen and (max-width: 767px) {
  .bl_course_item:nth-child(4) > .bl_course_content {
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
  }
}

/* 説明 */
.bl_course_content {
  font-weight: 500;
  padding: 20px 16px;
  position: absolute;
  width: 250px;
}

/* 説明テキスト */
.bl_course_explanation {
  font-size: 14px;
  text-align: left;
  color: #fff;
}


@media only screen and (max-width: 767px) {
  .bl_course_content {
    position: static;
    width: auto;
    background: rgb(11 33 61 / 80%);
  }
}

/* 画像 */
.bl_course_image img {
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: bottom;
  width: 100%;
}

/* 文章 */
.bl_course_paragraph {
  font-size: 16px;
  letter-spacing: .03em;
  line-height: 1.5;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .bl_course_paragraph {
    font-size: 14px;
  }
}


/*-----------------------------------------
    こんな人におすすめ！
------------------------------------------*/
/* ブロック */
.bl_recommendation {
  margin: 10rem 0 10rem;
    position: relative;
    z-index: 3;
}
@media only screen and (max-width: 767px) {
  .bl_recommendation {
    margin-top: 5rem;
  }
}
.bl_recommendation_image {
  margin: 0 0 5rem;
}


/* ボディ */
.bl_recommendation_body {
  -webkit-box-shadow: 0 4px 20px rgba(51, 51, 51, 0.4);
  background-color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(51, 51, 51, 0.4);
  padding: 48px 112px 56px;
}

@media only screen and (max-width: 767px) {
  .bl_recommendation_body {
    padding: 24px 24px 40px;
  }
}

@media only screen and (max-width: 320px) {
  .bl_recommendation_body {
    padding: 24px 16px 40px;
  }
}

/* 見出し */
.bl_recommendation_ttl {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .bl_recommendation_ttl {
    font-size: 20px;
  }
}

/* リスト一覧 */
.bl_recommendation_list {
  margin-top: 32px;
}

@media only screen and (max-width: 767px) {
  .bl_recommendation_list {
    margin-top: 20px;
  }
}

/* アイテム */
.bl_recommendation_item {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .bl_recommendation_item {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

/* アイテム間の余白 */
.bl_recommendation_item + .bl_recommendation_item {
  margin-top: 12px;
}

/* チェック */
.bl_recommendation_check {
  border: 1px solid #333333;
  border-radius: 4px;
  height: 40px;
  width: 40px;
}

@media only screen and (max-width: 767px) {
  .bl_recommendation_check {
    border-radius: 2px;
    height: 20px;
    margin-top: .25em;
    width: 20px;
  }
}

/* 文章 */
.bl_recommendation_paragraph {
  color: #a03e40;
  font-size: 20px;
  font-weight: 500;
  font-weight: 400;
  line-height: 1.5;
  margin-left: 12px;
}

@media only screen and (max-width: 767px) {
  .bl_recommendation_paragraph {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .bl_recommendation_paragraph {
    margin-left: 8px;
  }
}

.bl_recommendation_paragraph__black {
  color: #333333;
}
.bl_recommendation_paragraph a {
  color: #f3735b;
}
/* 補足説明 */
.bl_recommendation_explanation {
  font-weight: 500;
  margin-top: 24px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .bl_recommendation_explanation {
    margin-top: 16px;
    padding: 0 16px;
    text-align: left;
  }
}

/*-----------------------------------------
    選ばれる理由
------------------------------------------*/
/* ブロック */
.bl_reason {
  margin-top: 56px;
}

@media only screen and (max-width: 767px) {
  .bl_reason {
    margin-top: 40px;
  }
}

/* 見出しアクセント */
.bl_reason_lv2Heading__alert {
  color: #a03e40;
  font-size: 48px;
  letter-spacing: .05em;
}

@media only screen and (max-width: 767px) {
  .bl_reason_lv2Heading__alert {
    font-size: 28px;
  }
}

/* アイテム */
.bl_reason_item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  /* 偶数アイテム */
}

@media only screen and (max-width: 767px) {
  .bl_reason_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.bl_reason_item + .bl_reason_item {
  margin-top: 40px;
}

.bl_reason_item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media only screen and (max-width: 767px) {
  .bl_reason_item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/* テキストコンテンツ */
.bl_reason_body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  padding: 0 48px;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .bl_reason_body {
    padding: 0 12px;
    width: 100%;
  }
}

/* 画像 */
.bl_reason_image {
  max-width: 100%;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .bl_reason_image {
    margin-top: 24px;
    position: relative;
    width: 100%;
  }
}





/* 見出し */
.bl_reason_heading {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  margin-top: 16px;
  order: 2;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .bl_reason_heading {
    font-size: 20px;
  }
}

/* ラベル */
.bl_reason_label {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  align-self: center;
  background-color: #38485e;
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  order: 1;
  padding: 4px 20px;
}

/* 文章 */
.bl_reason_paragraph {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  margin-top: 24px;
  order: 3;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .bl_reason_paragraph {
    margin-top: 16px;
  }
}

/*補足*/
.bl_reason_explanation {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  font-size: 1.3rem;
  margin-top: 24px;
  order: 4;
  color: #333333b8;
}

@media only screen and (max-width: 767px) {
  .bl_reason_explanation {
    margin-top: 12px;
    font-size: 1.2rem;
  }
}

/*-----------------------------------------
    メインビジュアル
------------------------------------------*/
/* 背景画像 */
.bl_mainVisual {
  background: url("../../src/image/main-visual/mv_bg.png") no-repeat center/cover;
  padding: 56px 24px 88px;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual {
    background-position: 77% center;
    height: 414px;
    padding: 0 8px;
  }
}

/* ボディ */
.bl_mainVisual_body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  letter-spacing: 0;
  margin-left: -40px;
  max-width: 584px;
  padding: 32px;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_body {
    -webkit-transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    bottom: -240px;
    left: 50%;
    margin-left: 0;
    padding: 20px 8px;
    position: relative;
    transform: translateX(-50%);
  }
}







/* 特徴 */
.bl_mainVisual_point {
      max-width: 1190px;
    width: 100%;
    margin-top: 1.7vh;
    min-width: 800px;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_point {
    width: 100%;
    max-width: 100%;
  }
}

/* No.1 */

@media only screen and (max-width: 767px) {
  .bl_mainVisual_lead {
    position: absolute;
     top: 0;
  }
}
/* 見出し */


@media only screen and (max-width: 767px) {
  .bl_mainVisual_lv1Heading {
    position: absolute;
     top: 30%;
  }
}
/* ３つの特徴 */

@media only screen and (max-width: 767px) {
  .bl_mainVisual_3point {
            position: absolute;
        bottom: 5%;
  }
}

/* 未経験から資格取得 */
@media only screen and (max-width: 767px) {
.bl_mainVisual_box {
  position: absolute;
        bottom: 25%;
}
}


/* 価格のボックス */
.bl_mainVisual_price {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 12px;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_price {
    margin-left: 4px;
  }
}

/* 数字 */
.bl_mainVisual_number {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
	padding: 27px 0 0;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_number {
    font-size: 12px;
	  padding: 27px 0 0;
  }
}

/* 税金 */
.bl_mainVisual_tax {
  font-weight: 500;
  line-height: 1.2;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_tax {
    font-size: 10px;
  }
}

.bl_mainVisual_tax > span {
  font-size: 24px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_tax > span {
    font-size: 13px;
  }
}

/* ラベル */
.bl_mainVisual_label {
    background-color: #b8c41a;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 700;
    margin-top: 0.3em;
    padding: 6px 20px;
    position: relative;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_label {
    font-size: 29px;
    padding: 4px 8px;
  }
}

/* .bl_mainVisual_label::before {
  background: url(../../src/image/main-visual/mv_alert.png) no-repeat center/cover;
  content: '';
  height: 54px;
  left: -32px;
  position: absolute;
  top: -28px;
  width: 84px;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_label::before {
    height: 32px;
    left: -20px;
    top: -16px;
    width: 48px;
  }
}
*/
/*-----------------------------------------
    CPN
------------------------------------------*/
.ly_cpn {
  margin: -5vh 0 1rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
.ly_cpn {
  margin: 3.5rem 2rem 5rem 2rem;
}
}
.bnr_cpn {
  width: 100%;
  max-width: 890px;
}
@media only screen and (max-width: 767px) {
.bnr_cpn {
  width: 100%;
          margin-top: -6vh;
}
}
/*-----------------------------------------
    CATCH
------------------------------------------*/
.ly_catch {
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
.ly_catch {
  /*-- margin-top: 5rem; --*/
  margin-top: 3.5rem;
}
}

/* 見出しアクセント */
.bl_catch_lv2Heading {
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
.bl_catch_lv2Heading {
  font-size: 1.65rem;
}
}

.bl_catch_lv2Heading__alert {
  background-color: #38485e;
  color: #FFFFFF;
  padding: .2em .5em;
  font-size: 3.5rem;
      line-height: 11rem;

}
@media only screen and (max-width: 767px) {
  .bl_catch_lv2Heading__alert {
    font-size: 2rem;
    line-height: 5rem;
  }
  }

/* ブロック */
.bl_catch {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .bl_catch {
    margin-top: 2rem;
  }
}

/* ボディ */
.bl_catch_body {
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
  font-size: 2.2rem;
}

@media only screen and (max-width: 767px) {
  .bl_catch_body {
    padding: 0 12px;
    font-size:1.5rem;
  }
}

/* 本文 */
@media only screen and (max-width: 767px) {
  .bl_catch_paragraph {
    font-size: 14px;
  }
}

.bl_catch_paragraph + .bl_catch_paragraph {
  margin-top: 1em;
}

/* 注意書き */
.bl_catch_paragraph_small {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .bl_catch_paragraph_small {
    font-size: 12px;
  }
}



/*-----------------------------------------
    CTA
------------------------------------------*/
/* CTA ブロック */
.bl_cta {
  -webkit-box-shadow: 0 4px 20px rgba(51, 51, 51, 0.25);
  background-color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(51, 51, 51, 0.25);
  padding: 32px 48px 48px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .bl_cta {
    padding: 20px 16px 40px;
  }
}

.bl_cta_end {
  background-color: #FFFFFF;
    padding: 32px 48px 48px;
    text-align: center;
    margin: 10rem 20rem;
}

@media only screen and (max-width: 767px) {
  .bl_cta_end {
    padding: 20px 16px 40px;
    margin: 0;
  }
}

/* 見出し */
.bl_cta_lv2Heading {
  display: inline;
}

/* リード文 */
.bl_cta_lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  line-height: 1.7;
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .bl_cta_lead {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .bl_cta_lead {
    margin-top: 24px;
    text-align: left;
  }
}

/* ボディ */
.bl_cta_body {
  border: 2px solid #a03e40;
  margin-top: 56px;
  padding: 48px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .bl_cta_body {
    border: 1px solid #a03e40;
    margin-top: 40px;
    padding: 32px 12px 24px;
  }
}

/* タイトル */
.bl_cta_ttl {
  -webkit-transform: translateY(-50%) translateX(-50%);
  background-color: white;
  font-size: 24px;
  font-weight: 500;
  left: 50%;
  letter-spacing: 0;
  padding: 0 3em;
  position: absolute;
  top: 0;
  transform: translateY(-50%) translateX(-50%);
  width: 324px;
}

@media only screen and (max-width: 767px) {
  .bl_cta_ttl {
    font-size: 16px;
    padding: 0 1.2em;
    width: 184px;
  }
}

/* マイクロコピーを含めたボタンのブロック */
.bl_cta_btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
}
@media only screen and (max-width: 767px) {
.bl_cta_btn {
  padding: 0 12px;
}
}

@media only screen and (max-width: 767px) {
.bl_cta_btn + .bl_cta_btn {
  margin-top: 40px;
}
}

@media only screen and (max-width: 767px) {
  .bl_cta_btn + .bl_cta_btn {
    margin-top: 32px;
  }
}

/* 余白を大きく取るCTA */
.bl_cta_margin {
  margin-top: 66px;
}

@media only screen and (max-width: 767px) {
  .bl_cta_margin {
    margin-top: 40px;
  }
}

/*-----------------------------------------
    イントロダクション
------------------------------------------*/
/* ボディ */
.bl_introduction_body {
  margin: 40px auto 0;
  max-width: 700px;
}

@media only screen and (max-width: 767px) {
  .bl_introduction_body {
    margin-top: 16px;
    padding: 0 12px;
  }
}

/* 画像 */
.bl_introduction_image {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .bl_introduction_image {
    margin-top: 24px;
  }
}

/*-----------------------------------------
    インストラクター養成スクール
------------------------------------------*/
/* 見出しアクセント */
.bl_school_lv2Heading {
  line-height: 1.7;
  font-size: 3.5rem;
}
@media only screen and (max-width: 767px) {
.bl_school_lv2Heading {
  line-height: 1.4;
  font-size: 2rem;
}
}


.bl_school_lv2Heading__alert {
  background-color: #38485e;
  color: #FFFFFF;
  padding: .1em .5em;
  line-height: 1.9;
}

/* ブロック */
.bl_school {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .bl_school {
    margin-top: 32px;
  }
}

/* ボディ */
.bl_school_body {
  margin: 0 auto;
  max-width: 700px;
}

@media only screen and (max-width: 767px) {
  .bl_school_body {
    padding: 0 12px;
  }
}

/* 本文 */
.bl_school_paragraph {
  font-size: 2.2rem;
}
@media only screen and (max-width: 767px) {
  .bl_school_paragraph {
    padding: 0 12px;
        font-size: 1.5rem;
  }
}

.bl_school_paragraph + .bl_school_paragraph {
  margin-top: 1em;
}

/* 注意書き */
.bl_school_paragraph_small {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .bl_school_paragraph_small {
    font-size: 12px;
  }
}

/* 動画埋め込み */
.bl_school_movie {
  margin-top: 48px;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .bl_school_movie {
    margin-top: 32px;
  }
}

.bl_school_movie iframe {
  border: none;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

/*-----------------------------------------
    開催スタジオ
------------------------------------------*/
/* ブロック */
.bl_studio {
  margin-top: 48px;
}

@media only screen and (max-width: 767px) {
  .bl_studio {
    margin-top: 32px;
  }
}

/* リスト */
.bl_studio_list {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

/* アイテム */
.bl_studio_item {
  -webkit-box-shadow: 0 4px 20px rgba(51, 51, 51, 0.2);
  background-color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(51, 51, 51, 0.2);
  width: calc( 20% - 64px/5);
}

@media only screen and (max-width: 1199px) {
  .bl_studio_item {
    width: calc( 33.333% - 24px/3);
  }
}

@media only screen and (max-width: 767px) {
  .bl_studio_item {
    width: calc( 50% - 8px/2);
  }
}

.bl_studio_item + .bl_studio_item {
  margin-left: 16px;
}

@media only screen and (max-width: 1199px) {
  .bl_studio_item + .bl_studio_item {
    margin-left: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .bl_studio_item + .bl_studio_item {
    margin-left: 8px;
  }
}

.bl_studio_item:nth-child(5n+1) {
  margin-left: 0;
}

@media only screen and (max-width: 1199px) {
  .bl_studio_item:nth-child(5n+1) {
    margin-left: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .bl_studio_item:nth-child(5n+1) {
    margin-left: 8px;
  }
}

@media only screen and (max-width: 1199px) {
  .bl_studio_item:nth-child(3n+1) {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .bl_studio_item:nth-child(3n+1) {
    margin-left: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .bl_studio_item:nth-child(2n+1) {
    margin-left: 0;
  }
}

.bl_studio_item:nth-child(n+6) {
  margin-top: 20px;
}

@media only screen and (max-width: 1199px) {
  .bl_studio_item:nth-child(n+4) {
    margin-top: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .bl_studio_item:nth-child(n+3) {
    margin-top: 16px;
  }
}

/* リンク */
.bl_studio_link {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-transition: -webkit-transform .3s;
  color: #333333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
  letter-spacing: 0;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.bl_studio_link:hover {
  opacity: 0.7;
}

/* 画像 */
.bl_studio_image {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.bl_studio_image img {
  vertical-align: bottom;
  width: 100%;
}

/* 場所 */
.bl_studio_heading {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 8px 12px 24px;
  order: 2;
}

@media only screen and (max-width: 767px) {
  .bl_studio_heading {
    font-size: 12px;
  }
}

/* ラベル */
.bl_studio_label {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  align-self: flex-end;
  font-size: 14px;
  margin: auto 12px 12px;
  order: 3;
  padding-right: 16px;
  position: relative;
}

.bl_studio_label::after {
  background: url(../../src/image/studio/studio_arrow.svg) no-repeat center/cover;
  bottom: .4em;
  content: '';
  height: 8px;
  position: absolute;
  right: 0;
  width: 6px;
}

@media only screen and (max-width: 767px) {
  .bl_studio_label::after {
    bottom: .35em;
  }
}

@media only screen and (max-width: 767px) {
  .bl_studio_label {
    font-size: 12px;
  }
}
/*-----------------------------------------
    特徴
------------------------------------------*/
.bl_feature {
  background: #c2cd22;
  padding: 10rem 5rem;
}
@media only screen and (max-width: 767px) {
.bl_feature {
  background: #c2cd22;
  padding: 5rem 2rem 1rem;
}
}

/* リスト */
.bl_feature_list {
  display: flex;
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .bl_feature_list {
    display: flex;
    margin: 5rem auto;
    flex-direction: column;
}
}
@media only screen and (max-width: 767px) {
.bl_feature_image {
  width: 83%;
  margin: 0 auto;
}
}
@media only screen and (max-width: 767px) {
.bl_feature_item {
    margin: 2rem 0;
}
}

/*-----------------------------------------
    メッセージ（卒業生/講師）
------------------------------------------*/
/* リスト */
.bl_message_list {
  display: flex;
  margin-top: 40px;
  background: #f1f5f9;
  padding: 5rem 5rem;

}

@media only screen and (max-width: 767px) {
  .bl_message_list {
    flex-direction: column;
    margin-top: 32px;
    padding: 4rem 1rem;
  }
}

/* アイテム */
.bl_message_item {
  width: calc((100% - 80px) / 3);
}

@media only screen and (max-width: 767px) {
  .bl_message_item {
    width: 100%;
  }
}

.bl_message_item + .bl_message_item {
  margin-left: 40px;
}

@media only screen and (max-width: 767px) {
  .bl_message_item + .bl_message_item {
    margin-left: 0;
    margin-top: 32px;
  }
}

/* ボディ */
.bl_message_body {
    padding: 1rem 0 0;
}

@media only screen and (max-width: 767px) {
  .bl_message_body {
    padding: 8px 12px;
  }
}

/* お名前 */
.bl_message_heading {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .bl_message_heading {
    font-size: 16px;
  }
}

/* 文章 */
.bl_message_paragraph {
  margin-top: 16px;
    font-size: 1.45rem;
}

@media only screen and (max-width: 767px) {
  .bl_message_paragraph {
    margin-top: 8px;
    font-size: 1.3rem;
  }
}

/* 画像 */
.bl_message_image {
  width: 100%;
  text-align: center;
}

.bl_message_image img {
    width: 80%;
    min-height: 180px;
    object-fit: cover;
}

/*-----------------------------------------
    guide04
------------------------------------------*/
/* メインビジュアル */
.ly_mainVisual04 {
  padding-top: 6rem;
}
@media only screen and (max-width: 767px){
.ly_mainVisual04 {
  padding-top: 11rem;
}
}


.bl_mainVisual-mat {
  background: url(../../src/image/main-visual/mv_bg-01_pc.png) no-repeat;
    padding: 10rem 0;
    background-position: center center;
    background-size: cover;
    width: 100vw;
    margin-top: -9rem;
    height: 100vh;
    min-height: 100vh;
}

@media only screen and (max-width: 767px){
.bl_mainVisual-mat {
  background: url(../../src/image/main-visual/mv_bg-01_sp.png) no-repeat;
  padding: 0 8px;
  background-size: cover;
  background-position: center;
  padding: 6.5rem 0 0;
  }
}
.bl_mainVisual-machine {
  background: url(../../src/image/main-visual/mv_bg-04_pc.jpg) no-repeat;
    padding: 10rem 0;
    background-position: center center;
    background-size: cover;
    width: 100vw;
    margin-top: -9rem;
    height: 100vh;
    min-height: 100vh;
}

@media only screen and (max-width: 767px){
.bl_mainVisual-machine {
  background: url(../../src/image/main-visual/mv_bg-04_sp.jpg) no-repeat;
  padding: 0 8px;
  background-size: cover;
  background-position: center;
  padding: 6.5rem 0 0;
  }
}



.bl_mainVisual_body-01 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgb(255 255 255);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  letter-spacing: 0;
  margin: 0 0 0 -70px;
  max-width: 514px;
  padding: 30px;
}

@media only screen and (max-width: 767px) {
.bl_mainVisual_body-01 {
  background: rgb(255 255 255 / 92%);
  bottom: -34rem;
  left: 50%;
  margin-left: 0;
  padding: 20px 8px;
  position: relative;
  transform: translateX(-50%);
}
}
/* コンバージョン(重ね) */
.ly_cta__stack01 {
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .ly_cta__stack01 {
    position: static;
    z-index: 1;
  }
}

@media only screen and (max-width: 767px) {
  .ly_cta__stack01 {

  }
}


/*-----------------------------------------
    2023年インストラクターコース開催会場
------------------------------------------*/
/* 見出しアクセント */
.bl_area_lv2Heading {
  line-height: 1.7;
}

.bl_area_lv2Heading__alert {
  background-color: #38485e;
  color: #FFFFFF;
  padding: .1em .5em;
}

/* ブロック */
.bl_area {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .bl_area {
    margin-top: 32px;
  }
}

/* ボディ */
.bl_area_body {
  margin: 0 auto;

}

@media only screen and (max-width: 767px) {
  .bl_area_body {
    padding: 0 12px;
  }
}

/* 本文 */
@media only screen and (max-width: 767px) {
  .bl_area_paragraph {
    font-size: 14px;
  }
}
.bl_area_paragraph_small {
  font-size: 1.3em;
  margin: 20px 0 0;
}

.bl_area_paragraph + .bl_area_paragraph {
  margin-top: 1em;
}

/* 注意書き */
.bl_area_paragraph_pink {
  color: #a03e40;
}



div .bl_cp_point table {
 text-align: center;
 border-collapse: collapse;
 width: 100%;
}
div .bl_cp_point th {
 padding: 10px;
 background-color: #38485e;
 border: solid 1px #aaaaaa;
 color: #fff;
}
div .bl_cp_point td {
 padding: 10px;
 border: solid 1px #aaaaaa;
vertical-align: middle;
}
div .bl_cp_point td:first-child {
 background: #38485e;
 color: #fff;
 vertical-align: middle;
}

div .bl_cp_point table.cp-area ul l1 {
    list-style: disc;
}

ul.cp-area {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: auto;
    align-items: flex-start;
    padding: 0 0 0 20px;
}

.bl_campaignarea_paragraph {
    margin-left: 10px;
    font-weight: bold;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
	text-align: left;
}

.bl_campaigntitle_paragraph {
  margin-left: 10px;
    color: #656464;
    font-weight: bold;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
	text-align: left;
}

.bl_cp_point {
    font-size: 14px;
    margin: 20px 0;
}
p.bl_cp_image {
    margin: 0 0 -5px;
}


@media only screen and (max-width: 767px) {
  div .bl_cp_point td {
    padding: 5px;

}
	ul.cp-area {
		padding: 0;
	}
	.bl_campaignarea_paragraph {
		margin: 0;

	}
	.bl_cp_point,.bl_campaigntitle_paragraph,.bl_campaignarea_paragraph{
		font-size:11px;
	}
}

.bl_campaignarea_paragraph_small {
    text-align: center;
    font-size: 1.3em;
    margin: 20px 0 0;
}
/* 資料ダウンロード */
.document {
  margin: 0 0 10vh;
}
@media only screen and (max-width: 767px) {
  .document {
  margin: 0 0 7rem;
}
}
/* --- フェードアップ --- */
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- フェードイン --- */
.fadeInTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* --- スライド左 --- */
.slideLeftTrigger {
  opacity: 0;
}

.slideLeft {
  animation-name: slideLeftAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/*-----------------------------------------
    追従ボタン
------------------------------------------*/
.cv-fixed-image-button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0;
  text-align: center;
  z-index: 9999;
  background: #ffffff59;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: none; /* 初期非表示 */
}

.cv-fixed-image-button img {
  max-width: 700px;
  width: 90%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .cv-fixed-image-button {
    padding: 1px 0;
  }
  .cv-fixed-image-button img {
    max-width: 340px;

  }
}

/* safari対応 */
::-webkit-full-page-media, :future, :root .camp_table{
    width: 91%;
    border-spacing: 8px 0;
}

/*# sourceMappingURL=sourcemaps/style.css.map */
