@charset "UTF-8";
/*-----------------------------------------
    カラー
------------------------------------------*/
.textgreen{color: #679090;}
/*-----------------------------------------
    ブレイクポイント
------------------------------------------*/
/*-----------------------------------------
    ベース
------------------------------------------*/
*, *: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: 14px;
  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;
}
.mt0 {margin-top: 0;}
/*-----------------------------------------
    インナー幅
------------------------------------------*/
.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: 2px solid #c20046;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(51, 51, 51, 0.3);
  display: inline-block;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: .1em;
  max-width: 100%;
  padding: 28px 16px;
  position: relative;
  text-align: center;
  transition: opacity .3s;
  width: 280px;
  background: #c20046;
  color: #fff;
  /* hover */
}

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

.el_btn:hover {
  opacity: .7;
}

/* 背景色白 */
.el_btn__white {
  -webkit-transition: opacity .3s;
  -webkit-box-shadow: 0 4px 8px rgba(51, 51, 51, 0.3);
  border: 2px solid #0b213d;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(51, 51, 51, 0.3);
  display: inline-block;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: .1em;
  max-width: 100%;
  padding: 28px 16px;
  position: relative;
  text-align: center;
  transition: opacity .3s;
  width: 280px;
  background-color: #ffffff;
  color: #0b213d;
  /* hover */
}

@media only screen and (max-width: 767px) {
  .el_btn__white {
    border: 1px solid #0b213d;
    font-size: 16px;
    padding: 12px;
    width: 213px;
  }
}

.el_btn__white:hover {
  opacity: .7;
}

.el_btn__white::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__white::before {
    height: 16px;
    margin-top: .05em;
    right: 32px;
    width: 16px;
  }
}

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

/* メインエリア */
.el_mainVisualbtn {
  -webkit-transition: opacity .3s;
  -webkit-box-shadow: 0 4px 8px rgba(51, 51, 51, 0.3);
  border: 2px solid #C20046;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(51, 51, 51, 0.3);
  display: inline-block;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: .1em;
  max-width: 100%;
  padding: 20px 16px;
  position: relative;
  text-align: center;
  transition: opacity .3s;
  width: 22rem;
  background: #C20046;
  color: #fff;

  /* hover */
}

@media only screen and (max-width: 767px) {
  .el_mainVisualbtn {
    font-size: 16px;
    padding: 12px;
    width: 213px;
    margin: 1rem;
  }
}

.el_mainVisualbtn:hover {
  opacity: .7;
}
/* 背景色白 */
.el_mainVisualbtn__white {
  -webkit-transition: opacity .3s;
  -webkit-box-shadow: 0 4px 8px rgba(51, 51, 51, 0.3);
  border: 2px solid #0b213d;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(51, 51, 51, 0.3);
  display: inline-block;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: .1em;
  max-width: 100%;
  padding: 20px 16px;
  position: relative;
  text-align: center;
  transition: opacity .3s;
  width: 22rem;
  background-color: #ffffff;
  color: #0b213d;
  margin-right: 2rem;

  /* hover */
}

@media only screen and (max-width: 767px) {
  .el_mainVisualbtn__white {
    border: 1px solid #0b213d;
    font-size: 16px;
    padding: 12px;
    width: 213px;
    margin: 1rem;
  }
}

.el_mainVisualbtn__white:hover {
  opacity: .7;
}

.el_mainVisualbtn__white::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_mainVisualbtn__white::before {
    height: 16px;
    margin-top: .05em;
    right: 32px;
    width: 16px;
  }
}

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

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

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

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

/* 小さいボタン */
.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: 19vw;
  margin: 0 0 0 0.5rem;
}
}


/* 緑のボタン */

.bl_cta_course_body {
    margin-top: 56px;
    padding: 40px 10px;
    position: relative;
}

.el_btn__green {
    background-color: #450734;
    color: #FFFFFF;
}

.el_btn_green
    {
    border: 3px solid #450734;
    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_green {
    border: 1px solid #450734;
    font-size: 16px;
    padding: 12px;
    width: 213px;
}
    .bl_cta_course_body {
    padding: 20px 10px;

}
}

/*-----------------------------------------
    見出し
------------------------------------------*/
/*h1見出し*/
.el_lv1Heading {
  font-size:4rem;
  font-weight: bold;
  letter-spacing: 0;
}

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

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

@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: 32px;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  color: #0b213d;
}

@media only screen and (max-width: 767px) {
  .el_lv2Heading {
    font-size: 24px;
  }
}
/* h2見出し小さめ */
.el_lv2Heading__small {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  color: #0b213d;
  line-height: 3.5rem;
}

@media only screen and (max-width: 767px) {
  .el_lv2Heading__small {
    font-size: 1.99rem;
  }
}

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

@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 #0b213d;
  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 #0b213d;
    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: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, rgba(194, 205, 34, 0.6)));
  background: -webkit-linear-gradient(transparent 60%, rgba(194, 205, 34, 0.6) 40%);
  background: linear-gradient(transparent 60%, rgb(194 0 70 / 36%) 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: center;

  }
}

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

@media only screen and (max-width: 767px) {
  .bl_header_logo img {
    width: 140px;
  }
}
/* 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: #a03e64;
  border: 1px solid #a03e64;
  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;
         width: 53%;
}
}

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




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

@media only screen and (max-width: 767px) {
  .ly_header {
    background: url(/src/image/header/header-bg-summer003.png) no-repeat center top / 100% 100%;
        padding: 7px 0;
  }
}

/* フッター */
.ly_footer {
  margin-top: 56px;
  padding-bottom: 16px;
}

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

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

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

.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: 4rem 0;
}

@media only screen and (max-width: 767px) {
  .ly_section {
    margin: 4rem 0;
  }
}

/* コンバージョン(重ね) */
.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: 540px) {
  .ly_cta__stack {
    margin-top: 400px;
  }
}

/* コース */
.ly_course {
  padding: 0;
}

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

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

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

/*-----------------------------------------
    CTA
------------------------------------------*/
/* CTA ブロック */
.bl_cta {
  background-color: #0b213d;
  padding: 32px 48px 48px;
  text-align: center;
  margin-top: 0;
}

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

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

/* リード文 */
.bl_cta_lead {
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.5;
  line-height: 1.7;
  text-align: center;
}



@media only screen and (max-width: 767px) {
  .bl_cta_lead {
    margin-top: 24px;
    font-size: 1.5rem;
  }
}
.txt_btn {
  color: #fff;
}

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

@media only screen and (max-width: 767px) {
  .bl_cta_body {
    border: 1px solid #0b213d;
    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;
}

.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_cv_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .bl_cv_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    display: flex;
        align-items: flex-end;
        flex-direction: column;
  }
}
/* アイテム */
.bl_cv_item {
  width: calc( 50% - 40px / 2);
}

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

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

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

/* ボディ */
.bl_cv_body {
  padding: 16px 24px;
}

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

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

@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;
    margin-top: 32px;
    padding: 0 16px;
  }
}

/* 見出し */
.bl_campaign_heading {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(45%, #0b213d));
  background: -webkit-linear-gradient(transparent 55%, #0b213d 45%);
  background: linear-gradient(transparent 55%, #0b213d 45%);
  margin-left: 24px;
  padding: 0 12px;
  white-space: nowrap;
}

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

/* ボディ */
.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: #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%);
  top: 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%);
  top: 0;
  left: 0;
}



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

/* 説明テキスト */
.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: 14rem 0;
}

@media only screen and (max-width: 767px) {
  .bl_recommendation {
    margin: 17rem 0 0;
}
}

/* ボディ */
.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: #0b213d;
  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_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_cpn_course {

  padding: 60px 60px;
  text-align: center;
  border: 1px solid #0b213d;
}
@media only screen and (max-width: 767px) {
  .bl_cpn_course {
    padding: 5rem 2rem 4rem;
    margin: 2rem 0;

  }
  }

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

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

/* 見出しアクセント */
.bl_reason_lv2Heading__alert {
  color: #c20046;
  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 {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .bl_reason_image::before {
    content: "";
    display: block;
    padding-top: 10%;
  }
}


/* 見出し */
.bl_reason_heading {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  color: #0b213d;
  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: #0b213d;
  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;
  }
}


/*-----------------------------------------
    選ばれる理由
------------------------------------------*/
/* ブロック */
.ly_bb-reason {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 14rem;
  padding-bottom: 14rem;
}


.bl_bb-reason {
  margin-top: 56px;
}

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

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

@media only screen and (max-width: 767px) {
  .bl_bb-reason_lv2Heading__alert {
    font-size: 42px;
  }
}

/* アイテム */
.bl_bb-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_bb-reason_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.bl_bb-reason_item + .bl_bb-reason_item {
  margin-top: 40px;
}

.bl_bb-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_bb-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_bb-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_bb-reason_body {
    padding: 0 12px;
    width: 100%;
  }
}

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

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

@media only screen and (max-width: 767px) {
  .bl_bb-reason_image::before {
    content: "";
    display: block;
    padding-top: 10%;
  }
}


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

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

/* ラベル */
.bl_bb-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: #0b213d;
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  order: 1;
  padding: 4px 20px;
}

/* 文章 */
.bl_bb-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_bb-reason_paragraph {
    margin-top: 16px;
  }
}

/*補足*/
.bl_bb-reason_explanation {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  font-size: 14px;
  margin-top: 24px;
  order: 4;
}

@media only screen and (max-width: 767px) {
  .bl_bb-reason_explanation {
    margin-top: 12px;
  }
}


/*-----------------------------------------
    メインビジュアル
------------------------------------------*/
/* 背景画像 */
.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_lv1Heading {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  margin: 16px 0 5px;
  order: 2;
  color: #0b213d;
}
@media only screen and (max-width: 767px) {
  .bl_mainVisual_lv1Heading {
    margin-top: -6vw;
        font-size: 7.5vw;
        text-align: right;
  }
}
.bl_mainVisual_lv1Heading__alert {
  font-size: 3rem;
}
@media only screen and (max-width: 767px) {
  .bl_mainVisual_lv1Heading__alert {
    font-size: 5vw;
  }
}

/* リスト */
.bl_mainVisualcv_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
  justify-content: space-around;
  order:4;
}
.bl_txt_mainVisualbtn{
  margin-top: 2rem;
  order:5;
}

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

/* アイテム */
.bl_mainVisualcv_item {
  width: calc( 50% - 40px / 2);
}

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

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

@media only screen and (max-width: 767px) {
  .bl_mainVisualcv_item + .bl_cv_item {
    margin-left: 0;
    margin-top: 32px;
  }
}
/* No.1 */
.bl_mainVisual_img {
  max-width: 33.5vw;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 3;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_img {
    width: 80%;
        max-width: 100%;
  }
}
/* No.1 */
.bl_mainVisual_lead {
  max-width: 90%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 3;
}

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

/* 価格 */
.bl_mainVisual_box {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  order: 3;
}
.txt_mainVisualbtn {
  color: #0b213d;
  font-size: 1.5rem;
}

/* 特徴 */
.bl_mainVisual_point {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  margin-top: 16px;
  order: 4;
}

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

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

/* 価格のボックス */
.bl_mainVisual_price {

}

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

  }
}

/* 数字 */
.bl_mainVisual_number {
  font-family: 'Lato', sans-serif;
  font-size: 1.7rem;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_number {
    font-size: 1.6rem;
	  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_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  order: 2;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_list {
    width: 100%;
    margin-top: 28vw;
  }
}

/* ラベル */
.bl_mainVisual_label {
    background-color: #450635;
    color: #FFFFFF;
    font-size: 23px;
    margin-top: 0;
    padding: 6px 20px;
    position: relative;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_label {
    font-size: 16px;
    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;
  }
}
*/


/*-----------------------------------------
    イントロダクション
------------------------------------------*/

/* ボディ */
.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 {
  text-align: center;
  margin: auto;
  padding: 6rem 0 1rem;
  width: 80%;
}

@media only screen and (max-width: 767px) {
  .bl_introduction_image {
    margin-top: 0;
        width: 100%;
        padding: 2rem 0;
  }
}
.bl_introduction_paragraph {
  font-size: 16px;
    text-align: center;
    color: #0b213d;
    margin-bottom: 4rem;
}

/*-----------------------------------------
    キャンペーンコース
------------------------------------------*/
/* ボディ */
.ly_cpn {
  margin-top: 14rem;
}
.bl_cpn_body {
  margin: 40px auto 0;
  max-width: 700px;
}

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

    padding: 0 ;
  }
}
.bl_cpn_paragraph
{background: #0b213d;
  padding: 6rem 0 6rem 8rem;
  color: #fff;
line-height: 4rem;
font-size: 2rem;}

@media only screen and (max-width: 767px) {
.bl_cpn_paragraph
{background: #0b213d;
  padding: 3rem 2rem;
    color: #fff;
    line-height: 3.2rem;
    font-size: 1.45rem;
  }
}
/* 画像 */
.bl_cpn_image {
  width: 78%;
  margin: 40px auto;

}

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

  }
}

/*-----------------------------------------
    インストラクター養成スクール
------------------------------------------*/
/* 見出しアクセント */
.bl_school_lv2Heading {
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .bl_school_lv2Heading {
    margin-top: 3rem;
  }
}
.bl_school_lv2Heading__alert {
  background-color: #0b213d;
  color: #FFFFFF;
  padding: .1em .5em;
  font-size: 4rem;
}
@media only screen and (max-width: 767px) {

.bl_school_lv2Heading__alert {

  font-size: 2.7rem;
}
}

/* ブロック */
.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_paragraph {
  line-height: 2.7rem;
}
.bl_whiteparagraph {
  color: white;
  line-height: 2.7rem;
  font-size: 1.75rem;
}
@media only screen and (max-width: 767px) {
  .bl_paragraph {
    font-size: 14px;
  }
}

.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;
  justify-content: center;
}

/* アイテム */
.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_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;
  }
}

/* ボディ */
.ly_message {
  background: #f5f4f4;
  margin-top: 0;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.bl_message_body {
    padding: 1rem 0 0;
}

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

/* タイトル */
.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_explanation {
  margin-top: 1rem;
}

/* 画像 */
.bl_message_image {
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .bl_message_image {
    width: 80%;
  }
}
/* 名前 */
.bl_message_name {
  font-weight: 500;
  margin-top: 16px;
  font-size: 1.3rem;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .bl_message_name {
    font-weight: 400;
    margin-top: 8px;
  }
}


/*-----------------------------------------
    メッセージ（卒業生/講師）
------------------------------------------*/
/* リスト */
.bl_example_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

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

/* アイテム */
.bl_example_item {
  width: calc( 50% - 40px / 2);
}

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

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

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

/* ボディ */
.ly_example {
  background: #f5f4f4;
  margin-top: 0;
  padding: 8rem 0;
  margin: 0;
}
.bl_example_body {
  padding: 16px 24px;
}

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

/* タイトル */
.bl_example_heading {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

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

/* 文章 */
.bl_example_paragraph {
  font-weight: 500;
  margin-top: 16px;
}

@media only screen and (max-width: 767px) {
  .bl_example_paragraph {
    font-weight: 400;
    margin-top: 8px;
  }
}
.bl_example_explanation {
  margin-top: 1rem;
}

/* 画像 */
.bl_example_image {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .bl_example_image {
    width: 90%;
  }
}
/* 名前 */
.bl_example_name {
  font-weight: 500;
  margin-top: 16px;
  font-size: 1.3rem;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .bl_example_name {
    font-weight: 400;
    margin-top: 8px;
  }
}




/*-----------------------------------------
    特徴
------------------------------------------*/
/* リスト */
.bl_feature_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

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

/* アイテム */
.bl_feature_item {
  width: calc( 50% - 40px / 2);
}

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

.bl_feature_item + .bl_feature_item {
  margin-left: 0;
}

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

/* ボディ */
.ly_feature {
  background: #f5f4f4;
  padding-top: 14rem;
  padding-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .ly_feature {
    background: #f5f4f4;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.bl_feature_body {
  padding: 16px 24px;
}

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

/* タイトル */
.bl_feature_heading {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

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

/* 文章 */
.bl_feature_paragraph {
  font-weight: 500;
  margin-top: 16px;
}

@media only screen and (max-width: 767px) {
  .bl_feature_paragraph {
    font-weight: 400;
    margin-top: 8px;
  }
}
.bl_feature_explanation {
  margin-top: 1rem;
}

/* 画像 */
.bl_feature_image {
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .bl_feature_image {
    margin: 0 auto;
  }
}
/* 名前 */
.bl_feature_name {
  font-weight: 500;
  margin-top: 16px;
  font-size: 1.3rem;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .bl_feature_name {
    font-weight: 400;
    margin-top: 8px;
  }
}


/*-----------------------------------------
    mainVisual-02
------------------------------------------*/
.bl_mainVisual-02 {
  background: url(../../../src/image/main-visual/mv_bg-04.jpg) no-repeat;
  padding: 12rem 0;
  background-position: top center;
  background-size: cover;
  display: flex;
  justify-content: space-around;
}

@media only screen and (max-width: 946px){
.bl_mainVisual-02 {
  padding: 4rem 0;
  flex-direction: column-reverse;
  align-items: center;
  }
}
@media only screen and (max-width: 589px){
.bl_mainVisual-02 {
  background: url(../../../src/image/main-visual/mv_bg-04-sp.jpg) no-repeat;
    padding: 4rem 0;
    flex-direction: column-reverse;
    align-items: center;
    }
}
.bl_mainVisual_body-01 {
  -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    display: flex;
    letter-spacing: 0;
    margin: 0 0 0 4vw;
    max-width: 90%;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
.bl_mainVisual_body-01 {
  margin: 0;

}
}
.bl_mainVisual_body-02 {
    -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 / 0%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    letter-spacing: 0;
    margin: 0 0 0 50%;
    max-width: 604px;
    padding: 0;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_body-02 {
    background: rgb(255 255 255 / 30%);
        margin:     6rem 0 4rem;
        padding: 2rem 0 ;

  }
}

.bl_mainVisual_image {
  text-align: center;
}
/*-----------------------------------------
    guide03
------------------------------------------*/
.bl_mainVisual-03 {
    background: url(../../src/image/main-visual/mv_bg-03.jpg) no-repeat;
	padding: 60px 0;
    background-position: top center;
    background-size: contain;
}


	@media only screen and (max-width: 767px){
.bl_mainVisual-03 {
	background-size:cover;
    padding: 0 8px;
		}
}
.bl_mainVisual_body-03 {
    -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: 0 0 0 -70px;
    max-width: 514px;
    padding: 32px;
}
@media only screen and (max-width: 767px) {
  .bl_mainVisual_body-03 {
    -webkit-transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    bottom: -290px;
    left: 50%;
    margin-left: 0;
    padding: 20px 8px;
    position: relative;
    transform: translateX(-50%);
  }
}


/*-----------------------------------------
    インストラクターコース開催会場
------------------------------------------*/


/* 見出しアクセント */
.bl_area_lv2Heading {
  line-height: 1.7;
}

.bl_area_lv2Heading__alert {
  background-color: #0b213d;
  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 ;
  }
}

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

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

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



div .bl_cp_point table {
 text-align: center;
 border-collapse: collapse;
 width: 100%;
}
div .bl_cp_point th {
 padding: 10px;
 background-color: #0b213d;
 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: #0b213d;
 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: 1.25rem;
    line-height: 2.6rem;
	}
}

.bl_campaignarea_paragraph_small {
    text-align: center;
    font-size: 1.3em;
    margin: 20px 0 0;
}
/* 資料ダウンロード */
.document {
  margin: 3rem 0;
}
/*-----------------------------------------
   フェードアップ
------------------------------------------*/
/* fadeUp */
.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }

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

      to {
        opacity: 1;
      transform: translateY(0);
      }
    }


    /* スクロールをしたら出現する要素にはじめに透過0を指定　*/

    .fadeUpTrigger{
        opacity: 0;
    }

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

/*-----------------------------------------
    背景色
------------------------------------------*/
.bl_green{background-color: #679090;
  padding: 10rem;}
.bl_blue{background-color: #0b213d;
    padding: 10rem;
  margin: 0;}
.bl_beige{background-color: #F1F1F1;
      padding: 10rem;
      margin-top: 0;
    margin-bottom: 14rem;
    }
.bl_rightgreen{
    background: #c3cd23;
    }


      @media only screen and (max-width: 767px) {
        .bl_green{
          padding: 4rem 1rem 6rem;}
        .bl_blue{
          padding: 4rem 1rem 6rem;
        margin: 0;}
        .bl_beige{
          padding: 8rem 1rem;}
      }
/*-----------------------------------------
    CPN
------------------------------------------*/
.ly_cpn {
  margin: -10rem 10rem -5rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
.ly_cpn {
  margin:-15rem 1rem;
}
}
/*# sourceMappingURL=sourcemaps/style.css.map */
