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

  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

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

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

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

/*-----------------------------------------
    インナー幅
------------------------------------------*/
.ly_inner {
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1128px;
  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;
}

/* CTA(重なり)のインナー */
@media only screen and (max-width: 767px) {
  .ly_cta__stack .ly_inner__narrow {
    padding: 0 16px;
  }
}

/*-----------------------------------------
    非表示
------------------------------------------*/
@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 {
  position: relative;
  display: inline-block;
  padding: 28px 16px;
  max-width: 100%;
  width: 664px;
  border: 3px solid #BF1120;
  border-radius: 50px;
  -webkit-box-shadow: 0 4px 8px rgba(51, 51, 51, 0.3);
  box-shadow: 0 4px 8px rgba(51, 51, 51, 0.3);
  text-align: center;
  letter-spacing: .1em;
  font-weight: 700;
  font-size: 24px;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  /* hover */
}

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

.el_btn:hover {
  opacity: .7;
}

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 767px) {
  .el_btn__small {
    padding: 12px 8px;
    width: 160px;
    font-weight: 400;
    font-size: 12px;
  }
}

/*-----------------------------------------
    見出し
------------------------------------------*/
/*h1見出し*/
.el_lv1Heading {
  text-align: right;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 48px;
}

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

/* h1見出しアクセント */
.el_lv1Heading__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -ms-flex-align: end;
  color: #BF1120;
  font-weight: bold;
  font-size: 34px;
  font-family: 'Lato', sans-serif;
  line-height: 1.2;
}

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

/* 数字 */
.el_lv1Heading_number {
  font-size: 134px;
  line-height: .9;
}

@media only screen and (max-width: 767px) {
  .el_lv1Heading_number {
    font-size: 80px;
    line-height: .8;
  }
}

.el_lv1Heading_number__small {
  font-size: 112px;
  line-height: .9;
}

@media only screen and (max-width: 767px) {
  .el_lv1Heading_number__small {
    font-size: 80px;
    line-height: .8;
  }
}

/* 数字横のテキスト */
.el_lv1Heading_text {
  padding-left: 8px;
  text-align: left;
}

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

.el_lv1Heading_text__small {
  display: block;
  font-size: 17px;
}

@media only screen and (max-width: 767px) {
  .el_lv1Heading_text__small {
    padding-top: 2px;
    font-size: 13px;
  }
}

/* 見出しの位置 */
.el_lv1Heading__position {
  display: block;
  margin-top: -80px;
}

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

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

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

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

/* 注釈 */
.bl_mainVisual_annotation {
    margin: 0 0 0 100px;
    font-size: 11px;
}


.bl_mainVisual_lv3Heading span {
    vertical-align: sub;
    font-size: 10px;
}
/*-----------------------------------------
    マイクロコピー
------------------------------------------*/
.el_microcopy {
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 20px;
}

@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 {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 36px;
  border-right: 2px solid #BF1120;
  background-color: transparent;
  content: '';
}

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

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

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

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

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

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

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

/*-----------------------------------------
    アンダーライン
------------------------------------------*/
.underLine {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, rgba(230, 0, 18, 0.35)));
  background: -webkit-linear-gradient(transparent 60%, rgba(230, 0, 18, 0.35) 40%);
  background: linear-gradient(transparent 60%, rgba(230, 0, 18, 0.35) 40%);
}

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

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

/*-----------------------------------------
    余白
------------------------------------------*/
.u-mt2 {
  margin-top: 2px;
}

/*-----------------------------------------
    リセット
------------------------------------------*/
/*
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 {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background: transparent;
  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 {
  margin: 0;
  padding: 0;
  background: transparent;
  vertical-align: baseline;
  font-size: 100%;
}

/* 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-weight: bold;
  font-style: italic;
}

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

iframe {
  border-width: 0px;
}

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

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

/* ロゴ */
.bl_header_logo img {
  width: 128px;
  vertical-align: bottom;
}

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

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

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

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

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

/*-----------------------------------------
    レイヤー
------------------------------------------*/
/* ヘッダー */
.ly_header {
  position: fixed;
  z-index: 3;
  padding: 10px 0;
  width: 100%;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

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

.ly_header__change {
  background-color: #FFFFFF;
}

/* フッター */
.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: 64px;
  }
}

.ly_mainVisual02 {
  margin-top: -48px;
}

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

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

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

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

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

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



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

@media only screen and (max-width: 540px) {
  .ly_cta__stack__position {
     margin-top: 600px;
  }
}

@media only screen and (max-width: 320px) {
  .ly_cta__stack__position {
    margin-top: 340px;
  }
}




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

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

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

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

/*-----------------------------------------
    キャンペーン
------------------------------------------*/
/* ブロック */
.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;
  margin-left: 24px;
  padding: 0 12px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(45%, rgba(230, 0, 18, 0.35)));
  background: -webkit-linear-gradient(transparent 55%, rgba(230, 0, 18, 0.35) 45%);
  background: linear-gradient(transparent 55%, rgba(230, 0, 18, 0.35) 45%);
  white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

/* アイテムリスト */
.bl_course_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  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 {
  right: 0;
  bottom: 0;
  background: rgba(230, 0, 18, 0.55);
  color: #FFFFFF;
}

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

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

@media only screen and (max-width: 767px) {
  .bl_course_item:nth-child(3) > .bl_course_content {
    background: rgba(230, 0, 18, 0.55);
    color: #FFFFFF;
  }
}

.bl_course_item:nth-child(4) > .bl_course_content {
  top: 0;
  left: 0;
  background: rgba(230, 0, 18, 0.55);
  color: #FFFFFF;
}

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

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

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

/* 画像 */
.bl_course_image img {
  width: 100%;
  vertical-align: bottom;

  -o-object-fit: cover;
  object-fit: cover;
}

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

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

/*-----------------------------------------
    こんな人におすすめ！
------------------------------------------*/
/* ブロック */
.bl_recommendation {
  margin-top: 40px;
}

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

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

@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 {
  text-align: center;
  letter-spacing: .05em;
  font-weight: 500;
  font-size: 32px;
}

@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 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}

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

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

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

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

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

@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 {
  margin-top: 24px;
  text-align: center;
  font-weight: 500;
}

@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: #BF1120;
  letter-spacing: .05em;
  font-size: 48px;
}

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

/* アイテム */
.bl_reason_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  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 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  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 {
    position: relative;
    margin-top: 24px;
    width: 100%;
  }
}

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

@media only screen and (max-width: 767px) {
  .bl_reason_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
  }
}

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

@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;
  align-self: center;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  padding: 4px 20px;
  border-radius: 50px;
  background-color: #333333;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
}

/* 文章 */
.bl_reason_paragraph {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 24px;
  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;
  order: 4;
  margin-top: 24px;
  font-size: 14px;
}

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

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

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

.bl_mainVisual__position {
  padding-top: 160px;
  background-position: top;
}

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

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

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

/* 見出し */
.bl_mainVisual_lv1Heading {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 16px;
}

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

/* No.1 */
.bl_mainVisual_lead {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

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

/* リードのボックス */
.bl_mainVisual_box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 8px;
  letter-spacing: 0;
  font-size: 30px;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_box {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    font-size: 20px;
  }
}

.bl_mainVisual_box::before {
  position: absolute;
  top: 62px;
    left: -74px;
    width: 120px;
    height: 80px;
  background: url(../../src/image/main-visual/mv_alert02.png) no-repeat center/cover;
  content: '';
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_box::before {
    top: 24px;
    left: -40px;
    width: 88px;
    height: 64px;
  }
}

@media only screen and (max-width: 320px) {
  .bl_mainVisual_box::before {
    left: -32px;
  }
}


/* リードのボックス02 */
.bl_mainVisual_box02 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 8px;
  letter-spacing: 0;
  font-size: 30px;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_box02 {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    font-size: 20px;
  }
}

.bl_mainVisual_box02::before {
  position: absolute;
  top: 54px;
    left: -54px;
    width: 143px;
    height: 91px;
  background: url(../../src/image/main-visual/mv_limit02.png) no-repeat center/cover;
  content: '';
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_box02::before {
    top: 24px;
    left: -26px;
    width: 96px;
    height: 61px;
  }
}

@media only screen and (max-width: 320px) {
  .bl_mainVisual_box02::before {
    left: -32px;
  }
}

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

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

/* リード */
.bl_mainVisual_lead {
  text-align: center;
  font-weight: 500;
}

/* ラベル */
.bl_mainVisual_lv3Heading {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 40px;
  margin-left: 96px;
  padding: 6px 12px;
  background-color: #BF1120;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 30px;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_lv3Heading {
    margin-top: 32px;
    margin-left: 0;
    padding: 4px 8px;
    font-size: 20px;
  }
}

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

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

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

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

@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_point {
  margin-top: 40px;
  font-weight: nomal;
  font-size: 20px;
  line-height: 1.7;
	color: #BF1120;
}

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

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

  }
}

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

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

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

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

/* マイクロコピーを含めたボタンのブロック */
.bl_cta_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  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_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_movie {
  position: relative;
  margin-top: 48px;
  padding-top: 56.25%;
  width: 100%;
}

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

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

/*-----------------------------------------
    インストラクター養成スクール
------------------------------------------*/
/* 見出しアクセント */
.bl_school_lv2Heading {
  line-height: 1.7;
}

.bl_school_lv2Heading__alert {
  padding: .1em .5em;
  background-color: #006FBE;
  color: #FFFFFF;
}

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

/* ブロック */
.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;
  }
}

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

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

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

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

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

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

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

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

@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 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  color: #333333;
  letter-spacing: 0;
  -webkit-transition: -webkit-transform .3s;
  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 {
  width: 100%;
  vertical-align: bottom;
}

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

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

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

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

@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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

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

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

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

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

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

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

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

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

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

/* 画像 */
.bl_message_image {
  width: 100%;
}

.bl_message_image img {
  width: 100%;
}
/*# sourceMappingURL=sourcemaps/style.css.map */


/*-----------------------------------------
    ヨガ検討者へのLP
------------------------------------------*/
/* 背景画像 */
.bl_mainVisual_02 {
  padding: 0 10px 10px;
  background: url("../../src/image/main-visual/mv_bg03.jpg") no-repeat center/cover;
}


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

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

@media only screen and (max-width: 540px) {
  .ly_cta__stack_02 {
    margin-top: 195px;
  }
}

@media only screen and (max-width: 320px) {
  .ly_cta__stack_02 {
    margin-top: 190px;
  }
}

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

@media only screen and (max-width: 540px) {
  .ly_cta__stack__position_02 {
    margin-top: 195px;
  }
}

@media only screen and (max-width: 320px) {
  .ly_cta__stack__position_02 {
    margin-top: 190px;
  }
}

/* CTA(重なり)のインナー */
@media only screen and (max-width: 767px) {
  .ly_cta__stack_02 .ly_inner__narrow {
    padding: 0 16px;
  }
}