@charset "UTF-8";
/* CSS Document */
/*--------------------------------------------------
全体レイアウトのCSS1223
----------------------------------------------------*/
/*
*{
	outline: 6px solid magenta;
}
*/
html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  width: 100%;
  line-height: 1.75;
  font-size: 1.6rem !important;
  background-repeat: repeat;
}

section .contents {
  max-width: 960px;
  margin: auto;
  margin-top: 0;
}

section.bl_bgColor {
  background: #e2e8f1;
  padding: 6.4rem 0;
  padding-bottom: 6.4rem;
}
@media screen and (min-width: 521px) and (max-width: 959px) {
  section.bl_bgColor {
    padding-bottom: 6rem;
  }
}
@media screen and (max-width: 519px) {
  section.bl_bgColor {
    padding-bottom: 4.2rem;
  }
}

.inner {
  width: 90%;
  margin: auto;
}

@media screen and (max-width: 960px) {
  .contents {
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 519px) {
  section .contents {
    width: 90%;
    margin: auto;
    padding-bottom: 5%;
  }
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (max-width: 519px) {
  .el_spNone {
    display: none;
  }
  .el_spDelete {
    display: none;
  }
  .el_pcNone {
    display: block;
  }
  .el_tabNone {
    display: block;
  }
}
@media screen and (min-width: 521px) and (max-width: 959px) {
  .el_tabNone {
    display: none;
  }
  .el_tabDone {
    display: block;
  }
  .el_pcNone {
    display: block;
  }
  .el_spNone {
    display: block;
  }
}
@media screen and (min-width: 959px) {
  .el_pcNone {
    display: none;
  }
  .el_spNone {
    display: block;
  }
  .el_spDelete {
    display: inline;
  }
  .el_tabNone {
    display: block;
  }
}
/*--------------------------------------------------
見出しのCSS
----------------------------------------------------*/
h1 {
  font-size: 2.625rem;
  line-height: 1.4;
}

h2 {
  font-size: 2.625rem;
  line-height: 1.4;
}

h3 {
  font-size: 2rem;
  line-height: 1.4;
}

h4 {
  font-size: 2rem;
  line-height: 1.4;
}

h5 {
  font-size: 2rem;
  line-height: 1.4;
}

@media screen and (max-width: 519px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  h4 {
    font-size: 1.6rem;
  }
  h5 {
    font-size: 1.6rem;
  }
}
/*タイトル周り
----------------------------------*/
.el_title {
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  color: #004096;
  font-size: 3.6rem;
  line-height: 1.4;
  margin-bottom: 1em;
}

.title_normal {
  color: #004096;
  margin-bottom: 26px;
  line-height: 1.4;
}

/*--------------------------------------------------
書体の指定
----------------------------------------------------*/
body {
  font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif, -apple-system, blinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/*--------------------------------------------------
アニメーションの指定
----------------------------------------------------*/
.sa {
  opacity: 0;
  transition: all 0.5s ease-out;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--up {
  transform: translate(0, 100px);
}

/* goto-top 
---------------------------------- */
#goto-top {
  position: fixed;
  bottom: 25px;
  right: 20px;
  z-index: 999;
  width: 55px;
  height: 55px;
  cursor: pointer;
  background: url(../images/gotop.png) no-repeat center center;
}

#goto-top:hover {
  opacity: 0.5;
}

#goto-top:visited {
  opacity: 1;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  #goto-top {
    background: url(../images/gotop@2x.png) no-repeat center center;
    background-size: 50px 50px;
  }
}
@media screen and (max-width: 959px) {
  #goto-top {
    bottom: 105px;
  }
}
/*--------------------------------------------------
リンクの指定
----------------------------------------------------*/
a:link,
a:hover,
a:visited {
  text-decoration: none;
}

/*--------------------------------------------------
ページ指定
----------------------------------------------------*/
/*共通
----------------------------------*/
.txt_normal {
  line-height: 1.75;
}

.title_intro {
  margin-bottom: 2rem;
  width: 100%;
  color: #004096;
  font-size: 3.4rem;
}
@media screen and (min-width: 521px) and (max-width: 959px) {
  .title_intro {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 519px) {
  .title_intro {
    font-size: 2.2rem;
  }
}

.el_marker {
  background: linear-gradient(transparent 50%, #ffdf8f 50%);
}

.el_sizeS {
  font-size: 70%;
  vertical-align: baseline;
}

.el_sizeM {
  font-size: 120%;
  vertical-align: baseline;
}

.el_sizeL {
  font-size: 140%;
  vertical-align: baseline;
  line-height: 1.4;
}

/*ヘッダー
----------------------------------*/
#header {
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  background: #ffffff;
  height: 95px;
}

.header_wrap {
  position: relative;
  max-width: 960px;
  height: 95px;
  margin: auto;
  display: flex;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.el_headerLogo {
  width: auto;
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1.4;
  box-sizing: border-box;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .el_headerLogo img {
    width: auto;
    max-height: 50px;
    max-width: 80%;
  }
}

.common_cv {
  padding: 0.25em;
  box-sizing: border-box;
  display: flex;
}
.common_cv .footer_cv {
  display: none;
}

@media screen and (max-width: 959px) {
  #header {
    height: 50px;
    justify-content: center;
    align-items: center;
  }
  .header_wrap {
    width: 100%;
    height: 50px;
  }
  .el_headerLogo {
    display: block;
    width: 100%;
  }
  footer {
    padding-bottom: 95px;
  }
  .common_cv {
    display: none;
  }
}
/* CV
----------------------------------*/
.el_cvBtn {
  box-shadow: 0px 2px 6px -1px #ddd;
  display: inline-block;
  cursor: pointer;
  display: inline-block;
  padding: 0.8em 2em;
  background-color: #ff0064; /* 背景色 */
  box-shadow: 0 8px 0 #c30567; /* 影の太さ・色 */
  border-radius: 60px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none; /* 文字の下線を消す */
  box-sizing: border-box;
}
.el_cvBtn:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.el_cvBtn:active {
  position: relative;
  top: 1px;
}

.bl_cvArea {
  width: 100%;
  padding: 4em 0;
  box-sizing: border-box;
  text-align: center;
}
.bl_cvArea .ly_inner {
  width: 100%;
  max-width: 960px;
  margin: auto;
}
.bl_cvArea .ly_inner .el_cvBtn {
  max-width: 650px;
  width: 80%;
  font-size: 3.2rem;
  font-weight: 600;
}
@media screen and (max-width: 959px) {
  .bl_cvArea .ly_inner .el_cvBtn {
    font-size: 2.4rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 519px) {
  .bl_cvArea .ly_inner .el_cvBtn {
    font-size: 2rem;
    line-height: 1.3;
  }
}

/*レイアウト
----------------------------------*/
/* PC2列 → SP1列
-------------------*/
.col2_1 {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.col2_1 .col_child {
  background: #fff;
  width: calc(50% - 10px);
  margin-right: 20px;
}
.col2_1 .col_child:nth-of-type(2n) {
  margin-right: 0;
}
.col2_1 .col_child img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.col2_1 .col_grandchild {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 519px) {
  .col2_1 {
    flex-direction: column;
  }
  .col2_1 .col_child {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .col2_1 .col_child:nth-of-type(3n) {
    margin-bottom: 0;
  }
}
/* PC３列 → SP1列
-------------------*/
.bl_col3 {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  list-style: none;
}
.bl_col3 .bl_col3_detail {
  text-align: center;
  width: calc(33.3333333333% - 10px);
  margin-right: 20px;
}
.bl_col3 .bl_col3_detail:nth-of-type(3n) {
  margin-right: 0;
}
.bl_col3 .bl_col3_detail img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

@media screen and (min-width: 521px) and (max-width: 959px) {
  .bl_col3.bl_col3_cha1 {
    flex-direction: column;
  }
  .bl_col3.bl_col3_cha1 .bl_target {
    width: 100%;
    display: flex;
    margin-bottom: 1em;
  }
  .bl_col3.bl_col3_cha1 .bl_col3_detail:nth-of-type(3n) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 519px) {
  .bl_col3.bl_col3_cha1 {
    flex-direction: column;
  }
  .bl_col3.bl_col3_cha1 .bl_target {
    width: 100%;
    display: flex;
    margin: 0;
    flex-direction: column;
  }
}
/* PC4列 → SP1列
-------------------*/
.bl_cardUnit {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.bl_cardUnit.bl_cardUnit__col3 {
  margin-bottom: 10px;
}

.bl_cardUnit__col3 > .bl_card {
  width: 31.707%;
  margin-right: 2.43902%;
  margin-bottom: 30px;
}

.bl_cardUnit__col3 > .bl_card:nth-of-type(3n) {
  margin-right: 0;
}

.bl_cardUnit.bl_cardUnit__col4 {
  margin-bottom: -20px;
}

.bl_cardUnit__col4 > .bl_card {
  width: 23.78%;
  margin-right: 1.62602%;
  margin-bottom: 20px;
}

.bl_cardUnit__col4 > .bl_card:nth-of-type(4n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .bl_cardUnit.bl_cardUnit__col3 {
    margin-bottom: -20px;
  }
  .bl_cardUnit.bl_cardUnit__col4 {
    margin-bottom: -15px;
  }
  .bl_cardUnit > .bl_card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/*メインヴィジュアル
----------------------------------*/
#main_img {
  margin-top: 95px;
  background-color: #e2e8f1;
  background-repeat: repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2em;
  position: relative;
}
#main_img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  margin: auto;
}
#main_img .main_imgBtn {
  position: absolute;
  max-width: 950px;
  height: 510px;
  width: 100%;
  padding: 0 2em;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  #main_img .main_imgBtn {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  #main_img .main_imgBtn {
    display: none;
  }
}
#main_img .main_imgBtn .el_cvBtn {
  position: absolute;
  width: 45%;
  left: 0;
  text-align: center;
  top: 70%;
  font-size: 2.2rem;
  box-sizing: border-box;
}

.bl_mainCopy {
  background-color: #004096;
  color: #fff;
  text-align: center;
  padding: 0.5em 0;
  letter-spacing: 0.05em;
}
.bl_mainCopy h1 {
  max-width: 960px;
  width: 90%;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .bl_mainCopy {
    font-size: 1.8rem;
    line-height: 2;
  }
}
.bl_mainCopy span {
  display: inline-block;
}

.el_bgGrade {
  background: rgb(0, 151, 204);
  background: linear-gradient(90deg, rgb(0, 151, 204) 0%, rgb(184, 74, 184) 100%);
  padding: 0 0.1em;
}

#intro {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}
@media screen and (min-width: 521px) and (max-width: 959px) {
  #intro {
    padding-top: 3.2rem;
    padding-bottom: 3.2em;
  }
}
@media screen and (max-width: 519px) {
  #intro {
    padding-top: 2.4rem;
    padding-bottom: 2.4em;
  }
}

@media screen and (min-width: 519px) {
  #main_img {
    margin-top: 95px;
  }
}
@media screen and (max-width: 959px) {
  #main_img {
    margin-top: 50px;
  }
}
.bl_introWrap .bl_col2 {
  display: flex;
  justify-content: space-between;
}
.bl_introWrap .bl_col2_detail {
  margin-bottom: 2em;
}
.bl_introWrap .bl_col2_detail:first-child {
  padding-right: 4rem;
}
.bl_introWrap .bl_col2_detail.el_intro_img {
  width: 45.83%;
  height: auto;
}
.bl_introWrap .bl_col2_detail.el_intor_txt {
  width: 54.17%;
  font-size: 18px;
  line-height: 1.8;
}

@media screen and (max-width: 519px) {
  .bl_col2_detail {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 959px) {
  .bl_col2.bl_col2_cha1 {
    flex-direction: column;
  }
  .bl_col2.bl_col2_cha1 .bl_col2_detail:first-child {
    padding-right: 0;
  }
  .bl_col2.bl_col2_cha1 .bl_col2_detail.el_intro_img {
    width: 60%;
    height: auto;
    margin: auto;
  }
  .bl_col2.bl_col2_cha1 .bl_col2_detail.el_intor_txt {
    width: 100%;
    padding-left: 0;
    padding-top: 1em;
  }
  .bl_col2.bl_col2_cha1.hp_reverse {
    flex-direction: column-reverse;
  }
}
/* イントロ見出し
----------------------------------*/
.intoro_title {
  width: 90%;
  max-width: 1140px;
  margin: auto;
  text-align: center;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.4;
}

@media screen and (max-width: 519px) {
  .intoro_title {
    font-size: 2.2rem;
    line-height: 1.6;
  }
}
/* メタバースを始めたいあなたへ こんなお悩みありませんか？
----------------------------------*/
.bl_worry {
  background: #004096;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 2em 0;
  position: relative;
  display: inline-block;
}

.title_worry {
  max-width: 90%;
  margin: auto;
  font-size: 4.2rem;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 519px) {
  .title_worry {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 521px) and (max-width: 959px) {
  .title_worry {
    font-size: 3.6rem;
  }
}
.title_worry span {
  font-size: 69.23%;
}

.bl_worry_inner {
  max-width: 960px;
  margin: auto;
  background: #ffffff;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
}

.bl_worry:before {
  content: "";
  position: absolute;
  bottom: -49px;
  left: 50%;
  margin-left: -15px;
  border: 25px solid transparent;
  border-top: 25px solid #004096;
  z-index: 2;
}

.bl_worryList {
  display: flex;
  align-items: center;
  padding: 1em;
}
@media screen and (min-width: 521px) and (max-width: 959px) {
  .bl_worryList {
    padding-top: 5em;
  }
}

.bl_worryList_txt {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (min-width: 521px) and (max-width: 959px) {
  .bl_worryList_txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .bl_worryList_txt {
    font-size: 1.6rem;
  }
}

.bl_worry_inner .bl_col2.bl_col2_cha1 {
  align-items: center;
  justify-content: space-around;
  padding: 1em;
  padding-bottom: 0;
}
.bl_worry_inner .bl_col2.bl_col2_cha1 .bl_worryList_txt {
  font-size: 1.8rem;
  line-height: 2;
  margin-right: 2em;
  width: auto;
}
@media screen and (min-width: 521px) and (max-width: 959px) {
  .bl_worry_inner .bl_col2.bl_col2_cha1 .bl_worryList_txt {
    margin-right: 0;
  }
}
@media screen and (max-width: 519px) {
  .bl_worry_inner .bl_col2.bl_col2_cha1 .bl_worryList_txt {
    margin-right: 0;
  }
}
.bl_worry_inner .bl_col2.bl_col2_cha1 .bl_worryList_txt li {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 1.8em;
  text-indent: -1.8em;
  line-height: 1.3;
  margin-bottom: 0.5em;
  color: #2c3e57;
}
.bl_worry_inner .bl_col2.bl_col2_cha1 .el_worry_img {
  width: auto;
}
.bl_worry_inner .el_worryList li::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
  top: -1px;
  margin-right: 0.5em;
  background-image: url(../images/bg_check@2x.gif);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

@media screen and (max-width: 959px) {
  .bl_worry_inner .bl_col2.bl_col2_cha1 {
    flex-direction: column-reverse;
  }
}
.bl_worry_inner .bl_col2.bl_col2_cha1 .bl_worryList_txt {
  margin: 0;
}
.bl_worry_inner .bl_col2.bl_col2_cha1 .el_worry_txt {
  font-size: 1.6rem;
  text-align: center;
  margin-right: 0;
  margin-bottom: 0;
}
.bl_worry_inner .bl_col2.bl_col2_cha1 .el_worryList li {
  color: #2c3e57;
  line-height: 1.4;
  margin-bottom: 0.8em;
  font-size: 1.8rem;
}
@media screen and (min-width: 521px) and (max-width: 959px) {
  .bl_worry_inner .bl_col2.bl_col2_cha1 .el_worryList li {
    line-height: 1.3;
    font-size: 1.6rem;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: 1px dotted #004096;
    margin-top: 2rem;
  }
  .bl_worry_inner .bl_col2.bl_col2_cha1 .el_worryList li:last-child {
    border-bottom: none;
  }
}
@media screen and (max-width: 519px) {
  .bl_worry_inner .bl_col2.bl_col2_cha1 .el_worryList li {
    font-size: 1.6rem;
    line-height: 1.3;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: 1px dotted #004096;
    margin-top: 2rem;
  }
  .bl_worry_inner .bl_col2.bl_col2_cha1 .el_worryList li:last-child {
    border-bottom: none;
  }
}

.bl_metaversWorld {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 3em 0 2em 0;
  margin-top: 0;
  position: relative;
  display: inline-block;
  background: #e2e8f1;
}

.el_metaversWorldTitle {
  text-align: center;
  color: #004096;
  display: inline;
  font-size: 6rem;
  font-weight: bolder;
  margin-bottom: 1em;
  font-weight: 600;
}
@media screen and (min-width: 521px) and (max-width: 959px) {
  .el_metaversWorldTitle {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 519px) {
  .el_metaversWorldTitle {
    font-size: 3rem;
  }
}
.el_metaversWorldTitle span {
  display: inline-block;
}

.bl_metaversWorld .bl_col2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl_metaversWorld .bl_col2 .bl_col2_detail {
  text-align: center;
}

@media screen and (max-width: 959px) {
  .bl_metaversWorld .bl_col2.bl_col2_cha1 {
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
  }
  .bl_metaversWorld .bl_col2.bl_col2_cha1 img {
    width: 80%;
    height: auto;
  }
}
/* このような方もご参加いただけます
----------------------------------*/
.target h2.el_title {
  margin-bottom: 0.8em;
  font-size: 3rem;
}
@media screen and (min-width: 521px) and (max-width: 959px) {
  .target h2.el_title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 519px) {
  .target h2.el_title {
    font-size: 2.4rem;
  }
}

.bl_col3_detail.bl_target {
  box-sizing: border-box;
  padding: 1.6em;
  position: relative;
  align-items: stretch;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0px 2px 6px -1px #ddd;
}
.bl_col3_detail.bl_target:last-child {
  margin-bottom: 0;
}

.bl_targetTitle {
  color: #004096;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0.8em 0;
}

.bl_targetTxt {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1em;
  text-align: left;
}

@media screen and (min-width: 521px) and (max-width: 959px) {
  .el_tabNone {
    display: none;
  }
  .bl_col3.bl_col3_cha1 .bl_target {
    padding: 1em;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1em;
    display: flex;
    text-align: left;
  }
  .bl_col3.bl_col3_cha1 .bl_target:last-child {
    margin-bottom: 0;
  }
  .bl_target_img {
    width: 25%;
    padding: 0;
    margin-right: 1rem;
    box-sizing: border-box;
  }
  .bl_targetTxtWrap {
    width: 75%;
  }
  .bl_target_txt {
    line-height: 1.6;
    font-weight: bold;
    width: 60%;
    text-align: left;
  }
  .bl_target_attention {
    width: 100%;
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 519px) {
  .bl_col3.bl_col3_cha1 .bl_target {
    margin-bottom: 1.8rem;
  }
  .bl_col3.bl_col3_cha1 .bl_target:last-child {
    margin-bottom: 0;
  }
  .bl_target_img {
    width: 100%;
    padding: 0;
  }
  .bl_targetTxtWrap {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .bl_target_attention {
    width: 100%;
    margin-top: -2em;
  }
  .bl_target_img {
    width: 80%;
    margin: auto;
  }
}
/*体験会概要
----------------------------------*/
.bl_syllabusWrap {
  box-sizing: border-box;
  border: 5px solid #e2e8f1;
  padding: 2.4rem;
  margin: 6.4rem 0;
}
@media screen and (min-width: 521px) and (max-width: 959px) {
  .bl_syllabusWrap {
    margin: 6.4rem 0;
  }
}
@media screen and (max-width: 519px) {
  .bl_syllabusWrap {
    margin: 4.2rem 0;
  }
}
.bl_syllabusWrap h2 {
  margin-bottom: 0.4em;
  font-size: 3rem;
}
@media screen and (min-width: 521px) and (max-width: 959px) {
  .bl_syllabusWrap h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 519px) {
  .bl_syllabusWrap h2 {
    font-size: 2.2rem;
  }
}

.el_targetTxt {
  font-size: 1.8rem;
  max-width: 650px;
  text-align: left;
  margin: auto;
  margin-bottom: 1em;
}

.bl_syllubusList {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bl_syllubusList .bl_syllubusDetail {
  margin-bottom: 2rem;
}
.bl_syllubusList .bl_syllubusDetail:last-child {
  margin-bottom: 0;
}
.bl_syllubusList .bl_syllubusDetail.bl_col1 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .bl_syllubusList .bl_syllubusDetail.bl_col1 {
    flex-direction: column;
  }
}
.bl_syllubusList .bl_syllubusDetail.bl_col1 .bl_syllubusDetail_col {
  display: flex;
  flex-direction: column;
  width: 48%;
}
@media screen and (max-width: 959px) {
  .bl_syllubusList .bl_syllubusDetail.bl_col1 .bl_syllubusDetail_col {
    width: 100%;
    margin-bottom: 1em;
  }
}
.bl_syllubusList .bl_syllubusDetail.bl_col1 .bl_syllubusDetail_col .el_targetList {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.bl_syllubusList .bl_syllubusDetail.bl_col1 .bl_syllubusDetail_col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 0.5em;
}
.bl_syllubusList .bl_syllubusDetail.bl_col1 .bl_syllubusDetail_col ul li::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
  top: 1px;
  margin-right: 0.2em;
  background-image: url(../images/icon_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  padding-left: 0.2em;
}
.bl_syllubusList .bl_syllubusDetail .bl_col2 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .bl_syllubusList .bl_syllubusDetail .bl_col2 {
    flex-direction: column;
  }
}
.bl_syllubusList .bl_syllubusDetail .bl_col2:last-child {
  margin-bottom: 0;
}
.bl_syllubusList .bl_syllubusDetail .bl_col2 .bl_syllubusDetail_col {
  background: #eeeeee;
  box-sizing: border-box;
  width: 49%;
}
@media screen and (max-width: 959px) {
  .bl_syllubusList .bl_syllubusDetail .bl_col2 .bl_syllubusDetail_col {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.bl_syllubusList .bl_syllubusDetail .bl_col2 .bl_syllubusClassWrap {
  display: flex;
  justify-content: flex-start;
}
.bl_syllubusList .bl_syllubusDetail .bl_col2 .bl_syllubusClassWrap .el_syllubusClass {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #004096;
  color: #fff;
  padding: 0.5em;
  font-weight: 2.4rem;
  width: auto;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.bl_syllubusList .bl_syllubusDetail .bl_col2 .bl_syllubusClassWrap .el_syllubusTitle {
  font-size: 1.8rem;
  font-weight: bold;
  color: #004096;
}
.bl_syllubusList .bl_syllubusDetail .bl_col2 .bl_syllubusClassWrap .el_syllubusTxt {
  padding: 1em;
  width: 100%;
}
.bl_syllubusList .bl_syllubusDetail .bl_col2 .bl_syllubusClassWrap .el_syllubusTxt p {
  font-size: 1.4rem;
  line-height: 1.4;
}
.bl_syllubusList .bl_syllubusDetail .bl_col3 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bl_syllubusList .bl_syllubusDetail .bl_col3:last-child {
  margin-bottom: 0;
}
.bl_syllubusList .bl_syllubusDetail .bl_col3 .bl_syllubusDetail_col {
  width: 100%;
}
.bl_syllubusList .bl_syllubusDetail .bl_col3 .bl_tokyou, .bl_syllubusList .bl_syllubusDetail .bl_col3 .bl_kyoto {
  display: flex;
}
@media screen and (max-width: 959px) {
  .bl_syllubusList .bl_syllubusDetail .bl_col3 .bl_tokyou, .bl_syllubusList .bl_syllubusDetail .bl_col3 .bl_kyoto {
    flex-direction: column;
  }
}
.bl_syllubusList .bl_syllubusDetail .bl_col3 .el_kaizyouDetail:first-child {
  padding-right: 1em;
  width: 60%;
  font-size: 1.6rem;
}
@media screen and (max-width: 959px) {
  .bl_syllubusList .bl_syllubusDetail .bl_col3 .el_kaizyouDetail:first-child {
    width: 100%;
  }
  .bl_syllubusList .bl_syllubusDetail .bl_col3 .el_kaizyouDetail:first-child:first-child {
    margin-bottom: 1.5em;
  }
}
.bl_syllubusList .bl_syllubusDetail .bl_col3 .el_kaizyouDetail .bl_titleKaizyou {
  background: #004096;
  color: #ffffff;
  display: inline-block;
  padding: 0 0.3em;
  margin-bottom: 0.5em;
}
.bl_syllubusList .bl_syllubusDetail .bl_col3 .el_kaizyouDetail .el_kaizyouName {
  font-weight: bold;
}
.bl_syllubusList .bl_syllubusDetail .bl_col3 .el_kaizyouDetail .el_adress {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
}
.bl_syllubusList .bl_syllubusDetail .bl_col3 .el_kaizyouDetail .el_dateTitle {
  font-weight: 600;
}
.bl_syllubusList .bl_syllubusDetail .bl_col3 .el_kaizyouDetail .bl_dateList {
  list-style: none;
}
.bl_syllubusList .bl_syllubusDetail .bl_col3 .el_kaizyouDetail .bl_syllubusCv {
  padding-top: 1rem;
}
.bl_syllubusList .bl_syllubusDetail .bl_col3 .el_kaizyouDetail .el_cvBtn {
  line-height: 1.3;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
}
.bl_syllubusList .bl_syllubusDetail .bl_col3 .bl_col3:last-of-type {
  background: pink;
  margin-bottom: 0;
}
.bl_syllubusList .bl_syllubusDetail .bl_col3 .el_googleMap {
  width: 100%;
  padding-bottom: 1em;
}
.bl_syllubusList .bl_syllubusDetail .bl_col3 .el_googleMap iframe {
  width: 100%;
  aspect-ratio: 16/11;
}
@media screen and (max-width: 519px) {
  .bl_syllubusList .bl_syllubusDetail .bl_col3 .el_googleMap iframe {
    aspect-ratio: 16/9;
  }
}
.bl_syllubusList h3.el_syllubusTitle {
  color: #004096;
  font-size: 1.8rem;
  border-bottom: 2px solid #004096;
  width: 100%;
  margin-bottom: 1rem;
}

/*講師紹介
----------------------------------*/
.bl_teacherWrap {
  list-style: none;
}
.bl_teacherWrap .teacherDtail {
  background: #fff;
  padding: 2rem;
  display: flex;
  border-radius: 1em;
  margin-bottom: 2rem;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 519px) {
  .bl_teacherWrap .teacherDtail {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.bl_teacherWrap .teacherDtail .el_teacherPh {
  width: 100%;
  min-width: 150px;
  height: auto;
}
.bl_teacherWrap .teacherDtail .el_teacherPh img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 519px) {
  .bl_teacherWrap .teacherDtail .el_teacherPh {
    width: 50%;
    height: auto;
    margin: auto;
    margin-bottom: 1em;
  }
}
.bl_teacherWrap .teacherDtail .bl_teacherTxtWrap {
  padding-left: 1em;
}
@media screen and (max-width: 519px) {
  .bl_teacherWrap .teacherDtail .bl_teacherTxtWrap {
    text-align: left;
  }
}
.bl_teacherWrap .teacherDtail .bl_teacherTxtWrap .el_teacherTitle span {
  display: inline-block;
  background: #004096;
  padding: 0.1em 0.3em;
  color: #fff;
  margin-right: 0.5em;
  font-size: 1.4rem;
}
.bl_teacherWrap .teacherDtail .bl_teacherTxtWrap .el_teacherTitle {
  font-size: 2rem;
  margin-bottom: 0.5em;
  color: #004096;
  font-weight: bold;
}

/*フッター 
----------------------------------*/
footer {
  width: 100%;
  background: #0c2d49;
  color: #ffffff;
  border-top: 2px solid #d4d4d4;
}

footer nav {
  width: 100%;
  max-width: 960px;
  padding: 2rem 0;
  margin: auto auto;
  text-align: center;
  font-size: 1.6rem;
  text-align: left;
}
@media screen and (max-width: 959px) {
  footer nav {
    text-align: center;
  }
}
footer nav div {
  font-size: 1.8rem;
  margin-bottom: 1em;
  font-weight: bold;
}

.fotter_nav.col3_1 {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
@media screen and (max-width: 959px) {
  .fotter_nav.col3_1 {
    flex-direction: column;
  }
}
.fotter_nav.col3_1 .footer_txt.col_child {
  width: 33.333%;
  font-size: 1.4rem;
  border-left: 1px solid #fff;
  padding-left: 1em;
  padding-right: 1em;
}
.fotter_nav.col3_1 .footer_txt.col_child:last-child {
  border: none;
}
@media screen and (max-width: 959px) {
  .fotter_nav.col3_1 .footer_txt.col_child {
    width: 90%;
    margin: auto;
    padding: 0;
    margin-bottom: 2em;
    border: none;
    border-top: 1px dotted #ffffff;
    padding-top: 1em;
  }
  .fotter_nav.col3_1 .footer_txt.col_child:last-child {
    border: none;
  }
}
.fotter_nav.col3_1 address {
  margin-bottom: 1em;
}
@media screen and (max-width: 959px) {
  .fotter_nav.col3_1 address {
    margin-bottom: 0.8em;
  }
}
.fotter_nav.col3_1 a:link {
  color: #fff;
}
.fotter_nav.col3_1 a:hover {
  text-decoration: underline;
}
.fotter_nav.col3_1 a:visited {
  text-decoration: none;
  color: #fff;
}
.fotter_nav.col3_1 a.icon_openNew {
  display: block;
}
.fotter_nav.col3_1 a.icon_openNew:after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
  position: relative;
  background: url("../images/icon_open_in_new.svg") no-repeat center;
  background-size: contain;
  vertical-align: middle;
}

.fotter_nav.col3_1 .el_contactBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  margin: 0 auto;
  padding: 0.9em 2em;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1em;
  color: #004096;
  background: #e2e8f1;
}
.fotter_nav.col3_1 .el_contactBtn:link {
  color: #0c2d49;
}
.fotter_nav.col3_1 .el_contactBtn:hover {
  opacity: 0.8;
  color: #0c2d49;
}
.fotter_nav.col3_1 .el_contactBtn:visited {
  color: #0c2d49;
}
.fotter_nav.col3_1 .el_contactBtn::before {
  content: "";
  width: 1em;
  height: 1em;
  margin-right: 10px;
  background: url("../images/icon_contact.svg") no-repeat center;
  vertical-align: middle;
}
.fotter_nav.col3_1 .fotter_link {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.fotter_nav.col3_1 .fotter_link dt {
  display: block;
  font-weight: 600;
}
.fotter_nav.col3_1 .fotter_link dd {
  display: block;
}

@media screen and (min-width: 521px) and (max-width: 960px) {
  footer nav {
    padding: 2rem 0;
  }
  .fotter_nav.col3_1 {
    justify-content: center;
  }
  .fotter_nav.col3_1 .footer_logo.col_child {
    width: 100%;
  }
  .fotter_nav.col3_1 .footer_txt.col_child {
    width: 100%;
    font-size: 1.2rem;
  }
  .fotter_link {
    flex-direction: column;
  }
  .fotter_link li {
    margin-right: 0;
    margin-bottom: 1em;
    text-align: left;
  }
}
@media screen and (max-width: 519px) {
  .fotter_nav.col2_1 .footer_logo.col_child {
    width: 100%;
    max-width: 200px;
    margin: auto;
    margin-bottom: 1em;
  }
  .fotter_link {
    flex-direction: column;
  }
  .fotter_link li {
    text-align: center;
    line-height: 2;
  }
}
@media screen and (max-width: 959px) {
  .bl_footerCv {
    display: block;
    position: fixed;
    z-index: 9999;
    bottom: 0;
    right: 0;
    width: 100%;
    background: none;
    box-sizing: border-box;
    margin-bottom: calc(env(safe-area-inset-bottom));
    padding: 1em;
    box-sizing: border-box;
  }
  .bl_footerCv .bl_footerCv_area {
    margin: auto;
    width: 100%;
  }
  .bl_footerCv .el_cvBtn {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 2rem;
    line-height: 1.4;
  }
}/*# sourceMappingURL=style.css.map */