@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: #3B4043;
  font-weight: 300;
  font-size: 16px;
  /* font-family: 'source-han-sans-japanese', sans-serif; */
  font-family: 'Noto Sans JP', sans-serif;
}

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

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

/*-----------------------------------------
    インナー幅
------------------------------------------*/
/* 広い幅（メイン） */
.ly_inner__wide {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1280px;
  width: 100%;
}

@media only screen and (max-width: 575px) {
  .ly_inner__wide {
    padding: 0 8px;
  }
}

.ly_inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1052px;
  width: 100%;
}

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

/* 狭い幅 */
.ly_inner__narrow {
  margin: 0 auto;
  max-width: 910px;
  width: 100%;
}

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

@media only screen and (max-width: 575px) {
  .ly_cta__stack .ly_inner__narrow {
    padding: 0 8px;
  }
}

/*-----------------------------------------
    改行
------------------------------------------*/
.br__sp {
  display: none;
}

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

.br__pc {
	display: block;
  
}

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

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

/* SP表示 */
.sp_display {
  display: none;
}

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

/*-----------------------------------------
    ボタン
------------------------------------------*/
/* 共通 */
.el_btn {
  position: relative;
  display: inline-block;
  padding: 34px 10px;
  max-width: 100%;
  width: 613px;
  border-radius: 49px;
  -webkit-box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.428;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  /* hover */
}

@media only screen and (max-width: 767px) {
  .el_btn {
    padding: 21px 10px;
    width: 308px;
    font-size: 18px;
  }
}

.el_btn:hover {
  opacity: .7;
}

/* 背景色赤 */
.el_btn__red {
  border: 1px solid #CD6F50;
  background-color: #CD6F50;
  color: #FFFFFF;
  /* 矢印 */
}

.el_btn__red::before {
  position: absolute;
  top: 0;
  right: 64px;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-top: 4px solid #FFFFFF;
  border-right: 4px solid #FFFFFF;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .el_btn__red::before {
    right: 28px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #FFFFFF;
    border-right: 3px solid #FFFFFF;
  }
}

.el_btn__red::after {
  position: absolute;
  top: 0;
  right: 64px;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 4px;
  background: #FFFFFF;
  content: "";
}

@media only screen and (max-width: 767px) {
  .el_btn__red::after {
    right: 28px;
    width: 16px;
    height: 3px;
  }
}

/* 背景色透明 */
.el_btn__transparent {
  border: 1px solid #CD6F50;
  background-color: #FFFFFF;
  color: #CD6F50;
  /* 矢印 */
}

.el_btn__transparent::before {
  position: absolute;
  top: 0;
  right: 64px;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-top: 4px solid #CD6F50;
  border-right: 4px solid #CD6F50;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .el_btn__transparent::before {
    right: 28px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #CD6F50;
    border-right: 3px solid #CD6F50;
  }
}

.el_btn__transparent::after {
  position: absolute;
  top: 0;
  right: 64px;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 4px;
  background: #CD6F50;
  content: "";
}

@media only screen and (max-width: 767px) {
  .el_btn__transparent::after {
    right: 28px;
    width: 16px;
    height: 3px;
  }
}

/* 小さいボタン 背景色透明 */
.el_btn__small___transparent {
  padding: 6px 8px 8px;
  width: 192px;
  border: 1px solid #CD6F50;
	background-color: #FFFFFF;
  color: #CD6F50;
  font-size: 16px;
  line-height: 1.825;
}

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

/* 小さいボタン */
.el_btn__small {
  padding: 6px 8px 8px;
  width: 192px;
  font-size: 16px;
  line-height: 1.825;
}

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

/*-----------------------------------------
    マイクロコピー
------------------------------------------*/
.el_microcopy {
  display: inline-block;
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .el_microcopy {
    display: block;
    margin-bottom: 20px;
  }
}

/* マイクロコピー（大） */
.el_microcopy__large {
    position: relative;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.5;
    color: #ce7050;
}

@media only screen and (max-width: 767px) {
  .el_microcopy__large {
    font-size: 19px;
    line-height: 1.5;
  }
}

.el_microcopy__large::before, .el_microcopy__large::after {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 100px;
  border-right: 1px solid #ce7050;
  background-color: transparent;
  content: '';
}

@media only screen and (max-width: 767px) {
  .el_microcopy__large::before, .el_microcopy__large::after {
/* display: none; */
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 80px;
  border-right: 1px solid #ce7050;
  background-color: transparent;
  content: '';
  }
}

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

.el_microcopy__large::after {
  right: -80px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}
@media only screen and (max-width: 767px) {
.el_microcopy__large::before {
  left: 8px;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
  }
}
@media only screen and (max-width: 767px) {
.el_microcopy__large::after {
  right: 8px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
  }
}

/* マイクロコピー（小） */
.el_microcopy__small {
  font-size: 16px;
  line-height: 1.875;
}

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

/*-----------------------------------------
    見出し
------------------------------------------*/
/*h1見出し*/
.el_lv1Heading {
  font-weight: 600;
  font-family: 'fot-tsukuardgothic-std', sans-serif;
}

/* h2見出し */
.el_lv2Heading {
    padding-top: 100px;
    text-align: center;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.333;

}

@media only screen and (max-width: 767px) {
  .el_lv2Heading {
    font-size: 20px;
    line-height: 1.375;
    background-position: left;
	 padding-top: 40px;
	}	
}

.bl_cta_h2lead {

    font-size: 14px;
    line-height: 0.7;
}

@media only screen and (max-width: 767px) {
	.bl_cta_h2lead {
    margin-left: 12px;
    font-size: 12px;
    line-height: 0.7;
	}	
}


/*-----------------------------------------
    コピーライト
------------------------------------------*/
.copyright {
  display: inherit;
  text-align: center;
  font-size: 16px;
  line-height: 1.825;
}

/*-----------------------------------------
    リセット
------------------------------------------*/
/*
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;
  font-weight: normal;
}

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: 0 30px;
}

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

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

.bl_header_logo {
    margin-right: 40px;
    line-height: 0.99em;
}

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

.bl_header_image + .bl_header_image {
  margin-left: 10px;
}

.bl_header_paragraph {
    margin-left: 40px;
    font-size: 16px;
    line-height: 1.875;
    color: #ff0000;
	
}

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

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

span.bl_header_paragraph-sp {
    color: #ff0000;
    font-size: 0.8em;
}
@media only screen and (min-width: 767px) {
span.bl_header_paragraph-sp {
    display: none;
}
}

.dli-arrow-down {
  display: inline-block;
  vertical-align: middle;

  line-height: 1;
  position: relative;
  width: 0.1em;
  height: 0.9em;
  background: currentColor;
	margin-left: 0.5em;
}

.dli-arrow-down::before {
  content: '';
    width: 0.55em;
    height: 0.55em;
    border: 0.15em solid currentColor;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  position: absolute;
  left: 50%;
  bottom: -0.05em;
  box-sizing: border-box;
 
}

.bl_header_btn__red {
  border: 1px solid #CD6F50;
  background-color: #CD6F50;
  color: #FFFFFF;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  /* 矢印 */
  /* hover */
}

.bl_header_btn__red::before {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .bl_header_btn__red::before {
    right: 16px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
  }
}

.bl_header_btn__red::after {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 2px;
  background: #FFFFFF;
  content: "";
}

@media only screen and (max-width: 767px) {
  .bl_header_btn__red::after {
    right: 16px;
    width: 12px;
    height: 2px;
  }
}

.bl_header_btn__red:hover {
  opacity: .7;
}

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

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

.ly_header__change {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

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

/* メインビジュアル */
.ly_mainVisual01 {
  padding: 0;
}

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

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

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

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

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

/* コース */
/* h2見出し */
.ly_course_lv2Heading01 {
    padding-top: 100px;
    text-align: right;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.333;
    background: url(../../src/image/course/course_photo01.jpg) no-repeat bottom/cover;
    color: #fff;
    font-family: 'fot-tsukuardgothic-std', sans-serif;
	padding: 100px 60px 20px;
}

@media only screen and (max-width: 767px) {
  .ly_course_lv2Heading01 {
    font-size: 20px;
    line-height: 1.375;
    background-position: left;
	 padding: 100px 10px 10px;
	}	
}
.ly_course_lv2Heading02 {
    padding-top: 100px;
    text-align: right;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.333;
    background: url(../../src/image/course/course_photo02.jpg) no-repeat bottom/cover;
    color: #fff;
    font-family: 'fot-tsukuardgothic-std', sans-serif;
	padding: 100px 60px 20px;
}

@media only screen and (max-width: 767px) {
  .ly_course_lv2Heading02 {
    font-size: 20px;
    line-height: 1.375;
    background-position: left;
	 padding-top: 40px;
	}	
}
.ly_course_lv2Heading03 {
    padding-top: 100px;
    text-align: right;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.333;
    background: url(../../src/image/course/course_photo03.jpg) no-repeat bottom/cover;
    color: #fff;
    font-family: 'fot-tsukuardgothic-std', sans-serif;
}

@media only screen and (max-width: 767px) {
  .ly_course_lv2Heading03 {
    font-size: 20px;
    line-height: 1.375;
    background-position: left;
	 padding-top: 40px;
	}	
}
.ly_course {
  padding-bottom: 66px;
  /* background-color: #D9E7AD; */
}

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

.ly_course01 {
  margin-top: -100px;
  padding-top: 80px;
}

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

/* 理由 */
.ly_reason {
  padding-bottom: 104px;
}

@media only screen and (max-width: 767px) {
  .ly_reason {
    padding-bottom: 56px;
  }
}



/* 卒業生からのメッセージ */
.ly_graduate {
  margin-top: 136px;
  padding-bottom: 128px;
  background-color: #F0F3F5;
}

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

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

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

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

/* リード文 */
.bl_course_lead {
  font-size: 18px;
  line-height: 1.888;
	max-width: 800px;
    margin: 40px auto;
}

@media only screen and (max-width: 767px) {
  .bl_course_lead {
    font-size: 16px;
    line-height: 1.825;
	 padding: 0 20px;
  }
}
p.bl_course_lead {
    text-align: left;
}

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

@media only screen and (max-width: 767px) {
  .bl_course_image {
    margin-top: 40px;
  }
}
.bl_course_image img {
    width: 50%;
}
@media only screen and (max-width: 767px) {
  .bl_course_image img {
    width: 100%;
    height: 200px;

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

/* 文章 */
.bl_course_paragraph {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.875;
}

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

/*-----------------------------------------
    CTA
------------------------------------------*/
/* CTA ブロック */
.bl_cta {
  padding: 50px 94px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 5px 5px 10px #6F757933;
  box-shadow: 5px 5px 10px #6F757933;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .bl_cta {
    margin-right: 10px;
    margin-left: 10px;
    padding: 30px 14px 36px;
  }
}

/* CTA タイトル */
.bl_cta_ttl {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #D9E7AD));
  background: -webkit-linear-gradient(transparent 70%, #D9E7AD 30%);
  background: linear-gradient(transparent 70%, #D9E7AD 30%);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.333;
}

@media only screen and (max-width: 767px) {
  .bl_cta_ttl {
    font-size: 22px;
    line-height: 1.375;
  }
}

/* サブタイトル */
.bl_cta_subTtl {
    color: #ce7050;
    font-weight: 500;
    font-size: 34px;
    line-height: 1.8;
}

/* タイトル下リード文 */
.bl_cta_lead {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.875;
}

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

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

/* 相談方法上の余白（狭い） */
.bl_cta_body__small {
  margin-top: 26px;
}

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

/* 相談方法上の余白（広い） */
.bl_cta_body__large {
  margin-top: 64px;
}

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

/* マイクロコピーを含めたボタンのブロック */
.bl_cta_btn {
  margin-top: 20px;
}

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

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

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

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

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

/*-----------------------------------------
    卒業生からのメッセージ
------------------------------------------*/
/* ブロック */
.bl_graduate {
  margin-top: 50px;
}

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

/* ボディ */
.bl_graduate_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;
}

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

/* メディア */
.bl_graduate_media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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_graduate_media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

/* リード */
.bl_graduate_lead {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .bl_graduate_lead {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 20px;
    color: #6F7579;
    font-weight: 400;
    font-size: 12px;
    line-height: 2;
  }
}

/* 名前 */
.bl_graduate_lv3Heading {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.333;
}

@media only screen and (max-width: 767px) {
  .bl_graduate_lv3Heading {
    font-size: 21px;
    line-height: 1.375;
  }
}

@media only screen and (max-width: 767px) {
  .bl_graduate_lv3Heading {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}

/* 役職 */
.bl_graduate_label {
  display: inline-block;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.888;
width: 100%;
}

@media only screen and (max-width: 767px) {
  .bl_graduate_label {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 20px;
    color: #6F7579;
    text-align: center;
    font-size: 12px;
    line-height: 2;
  }
}

/* 文章ブロック */
.bl_graduate_list {
  margin-top: 20px;
  width: 56%;
}

@media only screen and (max-width: 767px) {
  .bl_graduate_list {
    margin-top: 10px;
    padding: 0 20px;
    width: 100%;
  }
}

/* 各文章ブロック */
.bl_graduate_item + .bl_graduate_item {
  margin-top: 30px;
}

/* 画像 */
.bl_graduate_image {
  margin-top: -20px;
  width: 42%;
}

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

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

/* 小見出し */
.bl_graduate_lv4Heading {
  font-weight: 400;
	margin: 0 0 10px;
	display: inline;
    background: linear-gradient(transparent 80%, #e7baab85 30%);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .bl_graduate_lv4Heading {
    display: inline;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(30%, #E7BAAB));
    background: -webkit-linear-gradient(transparent 60%, #E7BAAB 30%);
    background: linear-gradient(transparent 80%, #e7baab85 30%);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
  }
}

/* 文章 */
.bl_graduate_paragraph {
  font-size: 14px;
  line-height: 1.825;
}

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

/*-----------------------------------------
    講師からのメッセージ
------------------------------------------*/
/* ブロック */
.bl_instructor {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 56px calc(50% - 50vw) 0;
  width: 100vw;
}

@media only screen and (max-width: 575px) {
  .bl_instructor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 36px auto 0;
    width: auto;
  }
}

/* 画像 */
@media only screen and (max-width: 575px) {
  .bl_instructor_image img {
    width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .bl_instructor_image + .bl_instructor_image {
    margin-top: 20px;
  }
}

/*-----------------------------------------
    イントロダクション
------------------------------------------*/
/* ボディ */
.bl_introduction_body {
  padding: 0 10px;
}

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

/* h2の配置 */
.bl_introduction_heading {
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .bl_introduction_heading {
    text-align: center;
  }
}

/* リード */
.bl_introduction_lead {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.888;
}

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

@media only screen and (max-width: 767px) {
  .bl_introduction_lead {
    margin-top: 30px;
    text-align: center;
    font-weight: 500;
  }
}

/* 文章 */
.bl_introduction_paragraph {
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.825;
}

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

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


@media only screen and (max-width: 767px) {
  .bl_introduction_movie {
    margin: 0 calc(50% - 50vw);
    margin-top: 25px;
    padding-right: calc(50vw - 50% + 8px);
    padding-left: calc(50vw - 50% + 8px);
    width: 100vw;
  }
}

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

.bl_btn {
    margin:20px 100px 0 0;
    text-align: right;
	}

@media only screen and (max-width: 767px) {
.bl_btn {
    margin-top: 0px;
    text-align: right;
	}
}


/*-----------------------------------------
    RYT とは？
------------------------------------------*/
/* 背景 */

section.ly_section.ly_aboutryt {
    background-color: #cbd98245;
    padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  section.ly_section.ly_aboutryt {
    padding-bottom: 66px;
  }
}

/*-----------------------------------------
    メインビジュアル
------------------------------------------*/
/* 背景画像 */
.bl_mainVisual {
  margin: 0 auto;
  padding: 300px 0 0;
  max-width: 1600px;
  background: linear-gradient( 180deg, #fff, rgb(0 0 0 / 0%)60%),url(../../src/image/main03_bg.jpg) no-repeat bottom/cover;
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual {
    padding: 100px 8px 108px;
    background-position: bottom 100px right 10%;
	
    background-size: cover;
  }
}

/* 見出し */
.bl_mainVisual_heading {
  padding: 0;
  font-size: 35px;
  line-height: 1.2;
	max-width: 910px;
    margin: 0 auto 100px auto;	
}

@media only screen and (max-width: 767px) {
  .bl_mainVisual_heading {
    padding: 0 0 0 10px;
    font-size: 24px;
    line-height: 1.5;
  }
}

/* ボディ */
.bl_mainVisual_body {
  padding: 0 0 100px;
}

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

/* 価格 */
.bl_mainVisual_catch {
  position: relative;
}

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

.bl_mainVisual_catch::before {
  position: absolute;
  top: -80px;
  left: -66px;
  width: 180px;
  height: 100px;
  background: url("../../src/image/main_txt02.png") no-repeat bottom/cover;
  content: '';
}

@media only screen and (max-width: 1199px) {
  .bl_mainVisual_catch::before {
    top: -80px;
    left: -8px;
    width: 140px;
    height: 80px;
  }
}

/* リード */
.bl_mainVisual_lead {
  margin-top: 48px;
}

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

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

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

/* アイテム */
.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: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

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

@media only screen and (max-width: 767px) {
  .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: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

/* テキストコンテンツ */
.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;
  max-width: 100%;
  width: 49%;
}

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

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

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

/* 見出し */
.bl_reason_heading {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.333;
}

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

@media only screen and (max-width: 1199px) {
  .bl_reason_heading {
    margin-top: 10px;
  }
}

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

/* ラベル */
.bl_reason_label {
  display: inline-block;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  line-height: 2;
}

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

/* 文章 */
.bl_reason_paragraph {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin: 64px auto 0;
  max-width: 420px;
  width: 100%;
  font-size: 16px;
  line-height: 1.875;
}

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

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

@media only screen and (max-width: 767px) {
  .bl_reason_paragraph {
    margin-top: 10px;
    max-width: 100%;
    color: #707F89;
  }
}

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

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

/* ボディ */
.bl_recommendation_body {
  padding: 40px 152px;
  background-color: #F0F3F5;
}

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

/* 見出し */
.bl_recommendation_ttl {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
}

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

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

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

/* リストアイテム */
.bl_recommendation_item {
  position: relative;
  padding-left: 51px;
  font-size: 18px;
  line-height: 1.888;
  /* チェックマーク */
  /* 四角形 */
}

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

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

.bl_recommendation_item::before {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 11px;
  height: 16px;
  border-right: 2px solid #98A6B5;
  border-bottom: 2px solid #98A6B5;
  content: "";
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
}

.bl_recommendation_item::after {
  position: absolute;
  top: 4px;
  left: 0;
  width: 27px;
  height: 27px;
  border: 1px solid #707070;
  content: "";
}

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

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

/* 補足説明 */
.bl_recommendation_paragraph {
  margin-top: 8px;
  text-align: center;
  font-size: 16px;
  line-height: 1.875;
}

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

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

/*-----------------------------------------
    開催スタジオ
------------------------------------------*/

.bl_studio {
    margin-top: 68px;
}
@media only screen and (max-width: 767px) {
  .bl_studio {
    margin: 40px calc(50% - 50vw) 0;
    width: 100vw;
  }
}
/* リード */
.bl_studio_lead {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.888;
}

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

@media only screen and (max-width: 767px) {
  .bl_studio_lead {
    margin-top: 30px;
    text-align: left;
    font-weight: 500;
  }
}

/* リスト */
.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% - 80px/5);
  background-color: #F0F3F5;
}

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

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

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

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

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

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

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

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

/* リンク */
.bl_studio_link {
  display: block;
}

/* 画像 */
.bl_studio_image img {
  vertical-align: bottom;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.bl_studio_image img:hover {
  opacity: 0.7;
}

/* ボディ */
.bl_studio_body {
  padding: 12px 20px;
  color: #98A6B5;
  font-weight: normal;
}

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

/* 場所 */
.bl_studio_heading {
  font-size: 14px;
  line-height: 1.7;
}

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

/* ラベル */
.bl_studio_label {
  margin-top: 12px;
  text-align: right;
  font-size: 12px;
  line-height: 1.4;
}

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

/*-----------------------------------------
    RYT200開催レポート
------------------------------------------*/
/* ブロック */
.bl_report {
  text-align: center;
}

/* レポート */
.ly_report {
  padding-bottom: 66px;
  background-color: #D9E7AD;
}

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

.ly_report01 {
  margin-top: -140px;
  padding-top: 100px;
}

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


/* リード文 */
.bl_report_lead {
    margin: 25px auto 50px;
    font-size: 14px;
    line-height: 1.888;
    width: 40%;
}

.bl_report_lead {
    font-size: 14px;
    line-height: 1.825;
    width: 100%;
    padding: 0 20px;
    text-align: left;
}

/* 画像 */
.bl_report_image {
  margin-top: 16px;
}
.bl_report_image img {
    width: 40%;
}
@media only screen and (max-width: 767px) {
  .bl_report_image {
    margin-top: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .bl_report_image img {
    width: 100%;
    height: 270px;

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



/* 文章 */
.bl_report_paragraph {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.875;
}

@media only screen and (max-width: 767px) {
  .bl_report_paragraph {
    font-size: 12px;
    line-height: 2;
  }
}
/* コース名 */
.bl_report_lv3Heading {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.333;
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .bl_report_lv3Heading {
    font-size: 21px;
    line-height: 1.375;
  }
}

@media only screen and (max-width: 767px) {
  .bl_report_lv3Heading {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    text-align: center;
  }
}



/*-----------------------------------------
    CTA キャンペーン
------------------------------------------*/
.bl_cta_cp {
	padding: 50px 94px;
  -webkit-box-shadow: 5px 5px 10px #6F757933;
  box-shadow: 5px 5px 10px #6F757933;
  text-align: center;
    margin-right: 10px;
    margin-left: 10px;
background-color: #a1faca;
background-image: linear-gradient(45deg, #a1faca 0%, #FFFB7D 100%);
  
}

@media only screen and (max-width: 767px){
.bl_cta_cp {
	margin-right: 10px;
    margin-left: 10px;
    padding: 20px 14px 56px;
}
}


/* ヨガワークス30周年特別企画 */
.v3_1215 {
  width: 100%;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
    margin: 0 0 30px;
    padding: 2px 0 5px;
}
@media only screen and (max-width: 767px){
.v3_1215 {margin: 0 0 20px;
	text-align: center;
	}}
.v3_1213 {
  color: #000;
  font-weight: Bold;
  font-size: 25px;
	letter-spacing: 0.2em;
}
@media only screen and (max-width: 767px){
.v3_1213 {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.1em;
}
}


/* 抽選で */

.v4_3262 {
    margin: 15px auto;
}
@media only screen and (max-width: 767px){
.v4_3262 {
    margin: 0 auto 15px;
}
	}



.v3_3247 {
  width: 44px;
  height: 44px;
  background: url("/src/image/header_img01.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

}

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



/* はずれても */

.v4_3261 {
  position: relative;
    background-color: #ffffff;
    padding: 20px 0 23px;
    color: #E40027;
    margin: 0 0 30px;
}
@media only screen and (max-width: 767px){
.v4_3261 {
    padding: 20px 0 45px;
}
}


.v4_3265 {

  background: rgba(229,229,229,1);
}
.v1_38 {
  width: 95%;
  color: rgba(228,0,39,1);
  position: absolute;
  top: 9px;
  left: 7px;
  text-align: center;
}




/* マイクロコピー（大） */
.el_microcopy___large {
    position: relative;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.5;
    color: #332D32;
}

@media only screen and (max-width: 767px) {
  .el_microcopy___large {
    font-size: 19px;
    line-height: 1.5;
  }
}

.el_microcopy___large::before, .el_microcopy___large::after {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 80px;
  border-right: 1px solid #332D32;
  background-color: transparent;
  content: '';
}

@media only screen and (max-width: 767px) {
  .el_microcopy___large::before, .el_microcopy___large::after {
/* display: none; */
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 55px;
  border-right: 1px solid #332D32;
  background-color: transparent;
  content: '';
  }
}

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

.el_microcopy___large::after {
  right: -80px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}
@media only screen and (max-width: 767px) {
.el_microcopy___large::before {
  left: 8px;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
  }
}
@media only screen and (max-width: 767px) {
.el_microcopy___large::after {
  right: 8px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
  }
}


span.v3_1213 {
    color: #000;
}


p.v3_1216 {
    width: 400px;
	margin: 0 auto;
}
@media only screen and (max-width: 767px) {
p.v3_1216 {
    width: 100%;
}
}
p.v3_1217 {
    width: 486px;
	margin: 0 auto;
}
@media only screen and (max-width: 767px) {
p.v3_1217 {
    width: 80%;
}
}
p.v3_1218 {
    width: 486px;
	margin: 0 auto;
}
@media only screen and (max-width: 767px) {
p.v3_1218 {
    width: 85%;
}
}


/*-----------------------------------------
    スケジュール
------------------------------------------*/
/* ブロック */
.ly_schedule {
    background: #F0F3F5;
}
.bl_schedule {
	padding-bottom: 104px;
}

@media only screen and (max-width: 767px) {
  .bl_schedule {
	padding-bottom: 56px;
  }
}

/* アイテム */
.bl_schedule_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_schedule_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.bl_schedule_item + .bl_schedule_item {
  margin-top: 90px;
}

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

.bl_schedule_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_schedule_item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

/* テキストコンテンツ */
.bl_schedule_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;
  max-width: 100%;
  width: 49%;
	margin-top: 40px;
}

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

/* 画像 */
.bl_schedule_image {
  max-width: 100%;
  width: 49%;
}

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

/* 見出し */
.bl_schedule_heading {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.333;
}

@media only screen and (max-width: 767px) {
  .bl_schedule_heading {
    font-size: 24px;
    line-height: 1.375;
  }
}

@media only screen and (max-width: 1199px) {
  .bl_schedule_heading {
    margin-top: 5px;
  }
}

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

/* ラベル */
.bl_schedule_label {
  display: inline-block;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  line-height: 2;
	color: #ff0000
}

@media only screen and (max-width: 767px) {
  .bl_schedule_label {
    text-align: left;
	font-size: 16px;
  }
}
li.bl_schedule_item {
    background: #fff;
    padding-bottom: 60px;
    margin-top: 30px;
}
/* 文章 */
.bl_schedule_paragraph {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin: 30px auto 0;
  max-width: 420px;
  width: 100%;
  font-size: 16px;
  line-height: 1.875;
}

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

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

@media only screen and (max-width: 767px) {
  .bl_schedule_paragraph {
    margin-top: 10px;
    max-width: 100%;
    color: #707F89;
  }
}


/*-----------------------------------------
    CTA ボタン CP
------------------------------------------*/

.el_btn__cp {
    border: 1px solid #e41032;
    background-color: #e41032;
    color: #FFFFFF;
}
@media only screen and (max-width: 767px)
.el_btn {
    padding: 21px 10px;
    width: 308px;
    font-size: 18px;
}
.bl_header_btn__cp {
    border: 1px solid #e41032;
    background-color: #e41032;
    color: #FFFFFF;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}
/* 背景色透明 */
.el_btn__transparent_cp {
  border: 1px solid #e41031;
  background-color: #FFFFFF;
  color: #e41031;
  /* 矢印 */
}

.el_btn__transparent_cp::before {
  position: absolute;
  top: 0;
  right: 64px;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-top: 4px solid #e41031;
  border-right: 4px solid #e41031;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .el_btn__transparent_cp::before {
    right: 28px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #e41031;
    border-right: 3px solid #e41031;
  }
}

.el_btn__transparent_cp::after {
  position: absolute;
  top: 0;
  right: 64px;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 4px;
  background: #e41031;
  content: "";
}

@media only screen and (max-width: 767px) {
  .el_btn__transparent_cp::after {
    right: 28px;
    width: 16px;
    height: 3px;
  }
}
@media only screen and (max-width: 767px) {
.mt-30{margin-top: -30px
}}


/*-----------------------------------------
    表示・非表示
------------------------------------------*/

@media(min-width:767px){
    .sp{
        display: none;
    }
}
@media(max-width:767px){
    .pc{
        display: none;
    }
}

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