@charset "UTF-8";
/* CSS Document */
/* ---------
base
---------- */
/* オーバーライド */
div#cont div#c3_lr {
  overflow: visible;
}
div#cont div#c3_lr::after {
  content: "";
  display: block;
  clear: both;
}
div#cont div#c3_lrr {
  overflow: visible;
}
div#cont div#c3_lrr::after {
  content: "";
  display: block;
  clear: both;
}

:root {
  --theme_elementary: #c14d4d;
  --theme_intermediate: #6f0303;
  --theme_advanced: #03506f;
}

body {
  counter-reset: numForce numPoint meritNo;
}
/* ---------
layout
---------- */
/* ナビ */
:has(> .l_nav--local) {
  width: 100%;
  overflow: hidden;
}
/* ナビ */
.l_nav--local {
  flex-wrap: wrap;
  width: calc(100% + 3px);
}
.l_nav--local > .il_nav__item {
  padding: 0;
  border: 1px dashed #333;
}
.l_nav--blog {
  margin: -5px;
}
.l_nav--blog > .il_nav__item {
  padding: 5px;
}
/* リスト */
.l_list--jirei > .il_list__item + .il_list__item {
  margin-top: 5px;
}
.l_list--about > .il_list__item + .il_list__item {
  margin-top: 10px;
}
/* ----------
module
---------- */
/* ----------
既存CSS横展開
---------- */
/* 無料セミナーのカード */
.seminar_contents {
  border: 2px solid #ccc;
  padding: 10px 15px;
}
.seminar_contents img {
  width: 294px;
  margin-left: 15px;
}
.seminar_contents h3 {
  font-size: 26px;
  padding-bottom: 5px;
  margin-bottom: 11px;
  font-family: "游ゴシック";
  font-weight: 700;
  border-bottom: 3px dotted #cccccc;
  line-height: 1.3;
}
.seminar_schedule iframe {
  width: 100%;
  margin-top: 10px;
  max-height: 165px;
}
.seminar_contents h3 a {
  font-size: 20px;
  margin-bottom: 11px;
  font-family: "游ゴシック";
  font-weight: 700;
  color: #555;
}

.seminar_text p {
  font-size: 14px;
  font-family: "游ゴシック";
  font-weight: 500;
}
.seminar_text {
  float: left;
  width: 385px;
}
.seminar_term {
  font-size: 15px;
  font-family: "游ゴシック";
  font-weight: 700;
  clear: both;
  background-color: green;
  color: white;
  padding-left: 10px;
  margin-top: 0px;
}
@media screen and (max-width: 768px) {
  .seminar_text {
    float: none;
    margin-bottom: 20px;
    width: 100%;
    line-height: 1.5;
  }
  .seminar_contents img {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
}

/* プラン見出し */
.heading--recommend {
  align-items: flex-end;
  border-bottom: 2px solid #03506f;
  border-radius: 0 0 0 30px;
  color: #03506f;
  display: flex;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.heading--recommend::before {
  align-items: center;
  background-color: #03506f;
  border-radius: 0 25px 0 25px;
  color: #fff;
  content: "\304a\3059\3059\3081\2460"; /* オススメ① */
  display: flex;
  flex: 0 0 auto;
  font-size: 14px;
  justify-content: center;
  line-height: 1;
  margin-right: 1em;
  padding: 0.7em;
  width: 7em;
}
.m_tabList__item:nth-of-type(2) .heading--recommend::before {
  content: "\30aa\30b9\30b9\30e1\2461";
}

.m_tabList__item:nth-of-type(3) .heading--recommend::before {
  content: "\30aa\30b9\30b9\30e1\2462";
}

.m_tabList__item:nth-of-type(4) .heading--recommend::before {
  content: "\30aa\30b9\30b9\30e1\2463";
}

.m_tabList__item:nth-of-type(5) .heading--recommend::before {
  content: "\30aa\30b9\30b9\30e1\2464";
}

.m_tabList__item:nth-of-type(6) .heading--recommend::before {
  content: "\30aa\30b9\30b9\30e1\2465";
}

.m_tabList__item:nth-of-type(7) .heading--recommend::before {
  content: "\30aa\30b9\30b9\30e1\2466";
}

@media screen and (max-width: 768px) {
  .heading--recommend {
    font-size: 18px;
  }
  .heading--recommend::before {
    padding: 0.5em;
  }
}

/* プランリスト */
.planBox {
  display: flex;
  flex-wrap: wrap;
  margin: -15px -15px 5px;
}
.planBox__item {
  padding: 15px;
  position: relative;
}

.planBox__item::after {
  border: 16px solid transparent;
  border-left: 10px solid #03506f;
  border-right: 0;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 15px;
  right: -7px;
  width: 0;
}
.planBox__item:last-of-type::after {
  content: none;
}
.planBox__item > *:last-child {
  margin-bottom: 0;
}

.planBox__title {
  background-color: #c14d4d;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
  padding: 0.3em;
}

.planBox__title--theme_elementaryLevel {
  background-color: var(--theme_elementary);
}
.planBox__title--theme_intermediateLevel {
  background-color: var(--theme_intermediate);
}
.planBox__title--theme_advancedLevel {
  background-color: var(--theme_advanced);
}

.planList {
}
.planList > *:last-child {
  margin-bottom: 0;
}

.planList__item {
  border: 1px solid #c14d4d;
  margin-bottom: 5px;
}

.planList--theme_elementaryLevel > .planList__item {
  border-color: var(--theme_elementary);
}
.planList--theme_intermediateLevel > .planList__item {
  border-color: var(--theme_intermediate);
}
.planList--theme_advancedLevel > .planList__item {
  border-color: var(--theme_advanced);
}

.planList__link {
  display: block;
  color: inherit;
  padding: 0.3em;
  transition: 0.2s;
}

.planList__link:hover {
  background-color: #c14d4d;
  color: #fff;
  text-decoration: none;
}

.planList--theme_elementaryLevel .planList__link:hover {
  background-color: var(--theme_elementary);
}
.planList--theme_intermediateLevel .planList__link:hover {
  background-color: var(--theme_intermediate);
}
.planList--theme_advancedLevel .planList__link:hover {
  background-color: var(--theme_advanced);
}

@media screen and (max-width: 768px) {
  .planBox__title {
    font-size: 16px;
    padding: 0.5em;
  }
}

/*========== 対象者、日数、内容 ==========*/
.text + .curriculum {
  margin-top: 20px;
}
.curriculum {
}

.curriculum__area {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-auto-rows: minmax(2em, auto);
  column-gap: 0.5em;
  row-gap: 0.5em;
}

.curriculum__item {
  background-color: #f5f5f5;
  display: grid;
  grid-template-columns: 5em 1fr;
}

.curriculum__item--target {
}

.curriculum__item--days {
}

.curriculum__item--contents {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.curriculum__title {
  align-items: center;
  background-color: #03506f;
  color: #fff;
  display: flex;
  justify-content: center;
  line-height: 1;
  padding: 0.5em;
}

.curriculum__contents {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  padding: 0.5em;
}

.curriculum__list {
  column-count: 2;
}

.curriculum__list > li {
  margin-bottom: 0;
}

/* コースマップ */
.sectionBox--courseMapMap {
  display: none;
}

@supports (display: grid) {
  .courseMapWrap {
    overflow: auto;
  }
  .sectionBox--courseMap {
    display: block;
  }
  .courseMap {
    width: 730px;
    background-color: #fff;
    background-image: linear-gradient(
      90deg,
      #fff 12.5%,
      #eef7eb 0,
      #eef7eb 25%,
      #ebf7f3 0,
      #ebf7f3 37.5%,
      #ebf3f7 0,
      #ebf3f7 50%,
      #ebf1f7 0,
      #ebf1f7 62.5%,
      #f2f0fc 0,
      #f2f0fc 75%,
      #faf0fc 0,
      #faf0fc 87.5%,
      #f7edf4 0
    );
    margin-bottom: 20px;
  }

  .courseMap__area {
    background-image: linear-gradient(
      90deg,
      #fff 1%,
      transparent 1%,
      transparent 50%
    );
    background-size: 91.2px;
    display: grid;
    font-size: 11px;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(11, auto);
    grid-auto-rows: minmax(3em, auto);
    column-gap: 1px;
    row-gap: 1px;
  }

  .courseMap__heading {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 11px;
    font-weight: bold;
    justify-content: center;
    letter-spacing: 0;
    padding: 0.5em;
    text-align: center;
  }

  /*========== 見出し（横） ==========*/
  .courseMap__heading--col1 {
    background-color: #373434;
  }
  .courseMap__heading--col2 {
    background-color: #619954;
  }
  .courseMap__heading--col3 {
    background-color: #549980;
  }
  .courseMap__heading--col4 {
    background-color: #548999;
  }
  .courseMap__heading--col5 {
    background-color: #547599;
  }
  .courseMap__heading--col6 {
    background-color: #5d5499;
  }
  .courseMap__heading--col7 {
    background-color: #8c5499;
  }
  .courseMap__heading--col8 {
    background-color: #b45499;
  }

  /*========== 見出し（縦） ==========*/
  .courseMap__heading--row1 {
    background-color: #c14d4d;
    grid-column: 1;
    grid-row: 2 / span 11;
  }
  .courseMap__heading--row2 {
    background-color: #6f0303;
    grid-column: 1;
    grid-row: 12 / span 6;
  }
  .courseMap__heading--row3 {
    background-color: #03506f;
    grid-column: 1;
    grid-row: 18 / span 2;
  }

  /*========== 研修のリンク ==========*/
  .courseMap__title {
    margin: 2px;
  }

  /* Python学院～Excel自動化入門編／データ転記からプログラミングを始める（２日間） */
  .courseMap__title1 {
    grid-column: 2 / 6;
  }
  /* Python学院～短期集中講座／未経験からExcel操作とスクレイピングに取り組む（５日間） */
  .courseMap__title2 {
    grid-column: 2 / 6;
  }
  /* 【全力解説】管理職のためのPython理解研修（半日間） */
  .courseMap__title3 {
    grid-column: 2 / 2;
  }
  /* Python学院～Excel操作自動化編（１日間） */
  .courseMap__title4 {
    grid-column: 2 / 6;
  }
  /* Python学院～アルゴリズム思考力向上編／演習問題20本ノック（１日間） */
  .courseMap__title5 {
    grid-column: 3 / 5;
  }
  /* Python学院～実践編／Excel操作とスクレイピングを組み合わせる（２日間） */
  .courseMap__title6 {
    grid-column: 3 / 6;
  }
  /* 鋭意開発中 */
  .courseMap__title7 {
    grid-column: 7 / 8;
    grid-row: 2 / 9;
  }
  /* Python学院～スクレイピング編／Webからの情報収集を自動化する（１日間） */
  .courseMap__title8 {
    grid-column: 2 / 6;
  }
  /* Python学院～データ分析編／統計の基礎とPandasライブラリの活用（１日間） */
  .courseMap__title9 {
    grid-column: 6 / 7;
    grid-row: 12 / row 8;
  }
  /* Python学院～基本文法編/プログラミング未経験から業務への活用方法を学ぶ（１日間） */
  .courseMap__title10 {
    grid-column: 2 / 5;
  }
  /* Python学院～AI・機械学習入門編／機械学習の基礎を学び分析モデルを作成する（２日間） */
  .courseMap__title11 {
    grid-column: 7 / 8;
    grid-row: 12 / row 8;
  }
  /* Python学院～PDF操作自動化編（１日間） */
  .courseMap__title12 {
    grid-column: 2 / 6;
  }
  /* Python学院～Excel自動化・スクレイピング速習編／プログラミング経験者向け（２日間） */
  .courseMap__title13 {
    grid-column: 2 / 6;
  }
  /*Python学院～Webアプリケーション開発編／Djangoとデータベースの連携を学ぶ（３日間）*/
  .courseMap__title14 {
    grid-column: 8 / 8;
    grid-row: 12 / row 8;
  }
  /*スクレイピング研修～Pythonによる情報収集とブラウザ操作（半日間）*/  
  .courseMap__title15{
    grid-column: 5 / 6;
  }
  /*2時間で学ぶPythonコース～計4回でExcel操作の自動化まで習得する*/  
  .courseMap__title16{
    grid-column: 2 / 6;
  }
  /*（高校生向け）親子で学ぶPythonプログラミング研修～入門編（３日間）*/  
  .courseMap__title17{
    grid-column: 2 / 6;
  }
  /*はじめてのPythonプログラミング研修～業務自動化を実現する（２日間）*/  
  .courseMap__title18{
    grid-column: 2 / 5;
  }
  /*ChatGPT×Pythonプログラミング研修～自動化・データ分析編（５日間）*/  
  .courseMap__title19{
    grid-column: 2 / 7;
  }
  /*（中級者向け）Python学院～業務活用実践編（半日間）*/  
  .courseMap__title20{
    grid-column: 5 / 6;
  }
  /*はじめての業務自動化研修～生成AIとPythonで１日１時間を生みだす*/  
  .courseMap__title21{
    grid-column: 3 / 6;
  }
  /*ChatGPT×Pythonプログラミング研修～Excel・WEB操作自動化編（３日間）*/  
  .courseMap__title22{
    grid-column: 2 / 6;
  }

  .courseMap__link {
    align-items: center;
    background-color: #fff;
    border: 1px solid #03506f;
    border-radius: 10px;
    color: inherit;
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 1em;
    text-align: center;
    transition: 0.2s;
  }
  .courseMap__link:hover {
    background-color: #03506f;
    color: #fff;
  }
  .courseMap__link-noActive,
  .courseMap__link-noActive:hover {
    background-color: #e8eaef;
    color: currentColor;
    height: 100%;
  }
}

.procedure_steptitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.procedure_step {
  height: 42px;
  position: relative;
  padding: 0 25px;
  margin: 0 30px 0 0;
  background: rgba(229, 0, 45, 0.15);
  display: inline-block;
  font-style: italic;
  line-height: 42px;
}
.procedure_step::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 0;
  height: 0;
  border-left: 21px solid rgba(229, 0, 45, 0.15);
  border-top: 22px solid transparent;
  border-bottom: 21px solid transparent;
}
.procedure_cont {
  margin-bottom: 40px;
  background-color: #f3f3f3;
  padding: 20px;
}
.procedure_step_content {
  font-weight: bold;
}
.procedure_course_detail {
  margin-top: 15px;
}
.procedure_course_detail div.flex {
  align-items: flex-start;
}
.procedure_course_detail dl:not(:last-child) {
  margin-bottom: 15px;
}
.procedure_course_detail dl {
  background-color: #fff;
  padding: 10px 20px 10px 15px;
  border-radius: 3px;
}
.procedure_course_detail dl > dt:nth-of-type(1) {
  background-color: #014488;
  color: #fff;
}
.procedure_course_detail dl > dt:nth-of-type(2) {
  background-color: #4c49af;
  color: #fff;
}
.procedure_course_detail dt {
  float: left;
  clear: both;
  width: 5em;
  padding: 0 0.5em;
  text-align: center;
}
.procedure_course_detail dt,
.procedure_course_detail dd {
  line-height: 1.5em;
}
.procedure_course_detail dd {
  margin-left: 6em;
}
.procedure_course_detail dd a {
  text-decoration: underline;
}
.procedure_course_detail dd a:hover {
  color: #9e1930;
}
.procedure_course_detail dd span a {
  color: #9e1930;
  text-decoration: underline;
}
.procedure_course_detail dd span a.custom {
  margin-left: 1em;
}
.procedure_course_detail dd:not(:last-child) {
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .procedure_step {
    margin-bottom: 10px;
    padding: 0 10px;
    font-weight: bold;
  }
  .procedure_course_detail dt {
    float: none;
    margin-bottom: 5px;
  }
  .procedure_course_detail dd {
    margin-left: 0;
  }
  .procedure_course_detail dl > dt:nth-of-type(2) {
    margin-top: 10px;
  }
}

/* 動画カード */
.m_searchCard {
  position: relative;
  max-width: 260px;
  margin: 0 auto;
  border: 2px solid #707070;
  padding: 14px;
}

.m_searchCard:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.m_searchCard--new::before {
  content: url(/resource/img/studio/lineup/e-learning_new.png);
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 1;
  display: block;
  line-height: 0;
}

.m_searchCard__img {
  position: relative;
  padding-top: calc(100% * 9 / 16);
  background: #f3f3f3;
  overflow: hidden;
}

.m_searchCard__img img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
}

.m_searchCard__sub {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.m_searchCard__type {
  background: #c86b67;
  font-size: 12px;
  color: #fff;
  padding: 0 5px;
  display: inline-block;
}

.m_searchCard__time {
  color: #333;
  font-size: 12px;
}

.m_searchCard__time::before {
  content: url(/resource/img/studio/lineup/e-learning_time.png);
  margin-right: 2px;
  line-height: 0;
  vertical-align: -3px;
}

.m_searchCard__ttl {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  padding-bottom: 32px;
}

.m_searchCard__tagList {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
}

.m_searchCard__tagItem {
  font-size: 11px;
  letter-spacing: 0;
  color: #333;
  border: 1px solid #333;
  border-radius: 15px;
  padding: 2px 10px;
  line-height: 1;
  margin-right: 5px;
  margin-top: 5px;
}

/* ----------
オリジナル
---------- */

/* キービジュアル */
.m_keyvisual--python {
  margin-bottom: 0;
}

/* アイコン */
.m_hasIco--level {
  padding-left: 84px;
}
.m_hasIco--level .im_hasIco__item {
  top: 0px;
  width: 74px;
  padding: 2px 10px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 13px;
}
.m_hasIco--shokyu .im_hasIco__item {
  background: #c14d4e;
}
.m_hasIco--chukyu .im_hasIco__item {
  background: #6f0303;
}
.m_hasIco--zyokyu .im_hasIco__item {
  background: #02506f;
}
.m_hasIco--dougaPoint {
  min-height: 46px;
  padding-left: 50px;
}
.m_hasIco--dougaPoint .im_hasIco__item {
  top: 50%;
  transform: translateY(-50%);
}
.m_hasIco--curcle {
  padding-left: 16px;
}
.m_hasIco--curcle::before {
  top: 6px;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-radius: 50%;
}
.m_hasIco--numForce {
  counter-increment: numForce;
  padding-left: 30px;
}
.m_hasIco--numForce::before {
  content: "0" counter(numForce);
  top: 0;
  bottom: 0;
  height: 1em;
  margin: auto 0;
  color: #29bb89;
  font-family: "Fira Sans", sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
}
.m_hasIco--numPoint {
  counter-increment: numPoint;
  padding-left: 30px;
}
.m_hasIco--numPoint::before {
  content: "0" counter(numPoint);
  top: 0;
  bottom: 0;
  height: 1em;
  margin: auto 0;
  color: #ffa912;
  font-family: "Fira Sans", sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
}

/* 見出し */
.m_heading--primary {
  margin-bottom: 30px;
  padding: 0 0 6px 20px;
  border-bottom: 4px solid #4491bc;
}
.m_heading--primary .im_heading__ttl {
  padding-left: 10px;
  border-left: 6px solid #4491bc;
  font-size: 22px;
}
.m_heading--dougaPoint {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.m_heading--dougaPoint .im_heading__ttl {
  width: 100%;
  font-size: 16px;
}
.m_heading--detail {
  margin-bottom: 10px;
}
.m_heading--detail .im_heading__ttl {
  fon-size: 16px;
}
@media screen and (max-width: 768px) {
  .m_heading--primary {
    padding: 0;
    border-bottom: none;
  }
  .m_heading--primary .im_heading__ttl {
    font-size: 18px;
  }
}
/* ボタン */
.m_btn--cv {
}
.m_btn--cv::before {
  height: 27px;
}
.m_btn--cv .im_btn__target {
  padding: 0;
  border-radius: 5px;
  background: #917f1c;
  font-size: 12px;
}
.m_btn--main {
}
.m_btn--main::before {
  height: 35px;
}
.m_btn--main .im_btn__target {
  width: auto;
  padding: 10px 40px 10px 20px;
  background: #02243b;
}
@media screen and (max-width: 768px) {
  .m_btn--main .im_btn__target {
    font-size: 13px;
  }
}
/* ナビのラッパー */
.m_navWrap {
}
.m_navWrap__body {
  position: relative;
  min-height: 92px;
}
.m_navWrap__inner {
  position: absolute;
  z-index: 999;
  display: flex;
  width: 100%;
  max-width: 730px;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
}
.m_navWrap__nav {
  flex: 1 1 auto;
}
.m_navWrap__btnWrap {
  flex: 0 0 120px;
  padding: 0 10px;
}
.m_navWrap__btns {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.m_navWrap__footer {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.m_dl__banner {
  display: block;
  width: 70%;
}
.m_dl__banner:hover {
  opacity: 0.7;
}
.m_dl__banner_inr {
  display: flex;
  gap: 13px;
  justify-content: space-between;
  border: 1px solid #4491BC;
  box-shadow: 3px 3px 8px #aaa;
  padding: 6px 20px;
  transition: .3s;
}
.m_dl__banner_img {
  line-height: 0;
  text-align: center;
}
.m_dl__banner_img img {
  max-width: 100%;
  height: auto;
}
.m_dl__banner_heading {
  margin-bottom: 4.8px;
}
.m_dl__banner_catch {
  text-align: center;
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: 0 20px;
  color: #218496;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(to top, #FBEE85 0, #FBEE85 40%, #fff 0);
}
.m_dl__banner_catch::before {
  left: 0;
  transform: rotate(-45deg);
}
.m_dl__banner_catch::after {
  right: 0;
  transform: rotate(45deg);
}
.m_dl__banner_catch::before, .m_dl__banner_catch::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto 0;
  width: 1px;
  height: 80%;
  background: #218496;
}
.m_dl__banner_ttl {
  width: fit-content;
  margin-inline: auto;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: bold;
  color: #000;
}
.m_dl__banner_btn {
  display: flex;
  font-size: 13px;
}
.m_dl__banner_btn_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 130px;
  padding: 0 16px;
  border: 2px solid #4491BC;
  border-radius: 2px;
  background: #4491BC;
  font-weight: bold;
  color: #fff;
  transition: .3s background, .3s color;
}

.m_dl__banner.m_dl__banner--loadMap {
    width: 100%;
    margin-bottom: 20px;
}
.m_dl__banner--loadMap .m_dl__banner_inr {
  display: flex; 
  justify-content: center;
  align-items: center;
}
.m_dl__banner--loadMap .m_dl__banner_catch {
  font-size: 15px;
}
.m_dl__banner--loadMap .m_dl__banner_ttl {
  font-size: 22px;
}
.m_dl__banner--loadMap .m_dl__banner_img {
  flex: 0 0 40%;
  max-width: 300px;
}
.m_dl__banner--loadMap .m_dl__banner_img img {
  width: 100%;
  height: auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .m_navWrap__btnWrap {
    display: none;
  }
  .m_navWrap__inner[style*="fixed"] {
    width: 95%;
  }
  .m_navWrap__footer {
    display: block;
  }
  .m_dl__banner {
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  .m_dl__banner_cont {
    margin-top: 15px;
  }
  .m_dl__banner_ttl {
    margin-top: 10px;
  }
  .m_dl__banner_inr {
    display: block;
    padding: 20px 40px;
  }
  .m_dl__banner_btn {
    font-size: 15px;
  }
  .m_dl__banner--loadMap .m_dl__banner_inr {
    display: block;
    padding: 20px;
    text-align: center; 
  }

  .m_dl__banner--loadMap .m_dl__banner_img {
    margin: 20px auto 0; 
    max-width: 280px;
  }

  .m_dl__banner--loadMap .m_dl__banner_catch,
  .m_dl__banner--loadMap .m_dl__banner_ttl {
    margin-inline: auto; 
  }
}

/* ローカルナビ */
.m_localNav--python {
  background: #fff;
  color: #333;
  font-weight: bold;
  font-size: 15px;
}
.m_localNav--blog {
  height: 40px;
  border-radius: 3px;
  font-size: 13px;
  border: 2px solid;
  background: #fff;
}
.m_localNav--blog:hover {
  opacity: 1;
}
.m_localNav--all {
  color: #cd2715;
  border-color: #cd2715;
}
.m_localNav--mail {
  color: #4391bc;
  border-color: #4391bc;
}
.m_localNav--case {
  color: #cc2d5e;
  border-color: #cc2d5e;
}
.m_localNav--ex {
  color: #988225;
  border-color: #988225;
}
.m_localNav--tips {
  color: #02cf99;
  border-color: #02cf99;
}
.m_localNav--training {
  color: #02506f;
  border-color: #02506f;
}
.m_localNav--all:hover,
.m_localNav--all.is_current {
  background: #cd2715;
  color: #fff;
}
.m_localNav--mail:hover,
.m_localNav--mail.is_current {
  background: #4391bc;
  color: #fff;
}
.m_localNav--case:hover,
.m_localNav--case.is_current {
  background: #cc2d5e;
  color: #fff;
}
.m_localNav--ex:hover,
.m_localNav--ex.is_current {
  background: #988225;
  color: #fff;
}
.m_localNav--tips:hover,
.m_localNav--tips.is_current {
  background: #02cf99;
  color: #fff;
}
.m_localNav--training:hover,
.m_localNav--training.is_current {
  background: #02506f;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .m_localNav--python {
    font-size: 13px;
  }
}
@media screen and (max-width: 599px) {
  .m_localNav--python {
    font-size: 11px;
  }
}
/* メディアデザイン本文 */
.m_mediaBody--lineup .im_mediaBody__heading {
  margin-bottom: 16px;
}
.m_mediaBody--lineup .im_mediaBody__ttl {
  font-size: 16px;
}
.m_mediaBody--lineup .im_mediaBody__body {
  font-size: 14px;
}

/* カード */
.m_card--python {
  position: relative;
  max-width: 375px;
  margin: 0 auto;
}
.m_card--python .im_card__img + .im_card__body {
  margin-top: 15px;
}
.m_card--python .im_card__body {
  padding: 0 15px 15px;
}
.m_card--python:has(.m_card__footer) .im_card__body {
  padding-bottom: 94px;
}
.m_card--python .im_card__infoWrap + .im_card__ttl {
  margin-top: 10px;
}
.m_card--python .im_card__ttl {
  font-weight: bold;
  font-size: 16px;
}
.m_card--python .m_card__gyokai {
  font-size: 14px;
}
.m_card--python .m_card__gyokai + .m_card__tags {
  margin-top: 15px;
}
.m_card--python .m_card__footer {
  position: absolute;
  width: calc(100% - 30px);
  bottom: 15px;
  left: 15px;
}
.m_card--python .im_card__tag {
  display: inline-block;
  padding-top: 4px;
  padding-bottom: 4px;
  border: none;
  color: #fff;
  font-weight: bold;
}
.m_card--python .m_card__tag--mail {
  background: #4491bc;
}
.m_card--python .m_card__tag--case {
  background: #cc2d5e;
}
.m_card--python .m_card__tag--ex {
  background: #988225;
}
.m_card--python .m_card__tag--tips {
  background: #02cf99;
}
.m_card--python .m_card__tag--training {
  background: #02506f;
}
.m_card--python .m_card__tag--other {
  background: #333;
}
.m_card--blog:has(.m_card__footer) .im_card__body {
  padding-bottom: 56px;
}
.m_card--blog .im_card__img {
  position: relative;
  width: 100%;
  padding-top: calc(100% * 125 / 223);
  overflow: hidden;
}
.m_card--blog .im_card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  transform: translate(-50%, -50%);
}
.m_card--download {
  padding: 0 0 30px;
}
.m_card--download .im_card__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(2em * 1.6);
}
.m_card--download .im_card__img + .im_card__body {
  margin-top: 15px;
}
.m_card--download .im_card__img {
  position: relative;
  width: 100%;
  padding-top: calc(100% * 3 / 4);
  border: 1px solid #f7f7f7;
  overflow: hidden;
}
.m_card--download .im_card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: none;
  height: 100%;
  transform: translate(-50%, -50%);
}
.m_card--download .m_card__img--left img {
  left: 0;
  transform: translateY(-50%);
}
.m_card--download .im_card__heading + .im_card__msg {
  margin-top: 15px;
}
.m_card--download .im_card__msg {
  font-size: 13px;
}
.m_card--download .im_card__ttl {
  color: #02243b;
  font-size: 16px;
}
/* 表 */
.m_tableWork--jirei {
}
.m_tableWork--jirei .im_tableWork__heading {
  background: #4491bc;
}
.m_tableWork--jirei .im_tableWork__ttl {
  color: #fff;
}

/* テキストボックス */
.m_txtBox--fill {
  border: none;
  background: #f9f9f9;
}
.m_txtBox__ttl {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: #02506f;
  font-weight: bold;
}
.m_txtBox__ttl::before,
.m_txtBox__ttl::after {
  content: "";
  display: block;
  height: 2px;
  width: 25px;
  background: #02506f;
}
.m_txtBox__ttl::before {
  margin-right: 10px;
}
.m_txtBox__ttl::after {
  margin-left: 10px;
}
.m_txtBox__msg {
  font-size: 14px;
}
.m_txtBox__msg + .m_txtBox__msg {
  margin-top: 1em;
}

/* ヒーローズエリア */
.m_herosArea {
  position: relative;
}
.m_herosArea__heading {
  position: absolute;
  top: 70%;
  left: 4%;
}
.m_herosArea__ttl {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #031f35;
  line-height: 1;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .m_herosArea__ttl {
    font-size: 4.2vw;
  }
}

/* ハッシュタグリスト */
.m_hashTags {
  display: flex;
  flex-wrap: wrap;
  margin: -2px -0.5em;
}
.m_hashTags__item {
  padding: 2px 0.5em;
}

/* ラインナップリンク */
.m_lineup {
  display: flex;
  align-items: center;
  color: inherit;
}
.m_lineup:hover {
  opacity: 0.7;
}
.m_lineup__imgWrap {
  flex: 0 0 160px;
  margin-right: 30px;
}
.m_lineup__img {
  position: relative;
  width: 100%;
  padding-top: calc(100% * 95 / 160);
  line-height: 0;
  text-align: center;
  overflow: hidden;
}
.m_lineup__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: none;
  height: 100%;
  transform: translate(-50%, -50%);
}
.m_lineup__body {
  flex: 1 1 auto;
}
.m_lineup__heading {
  margin-bottom: 16px;
}
.m_lineup__ttl {
  font-size: 16px;
}
.m_lineup__msgWrap {
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  .m_lineup {
    display: block;
    max-width: 375px;
    margin: 0 auto;
  }
  .m_lineup__imgWrap {
    margin: 0 0 15px 0;
  }
  .m_lineup__img {
    padding-top: 0;
  }
  .m_lineup__img img {
    position: static;
    max-width: 100%;
    height: auto;
    transform: none;
  }
}
/* ハッシュタグ */
.m_hashTag {
  color: #02cf99;
  line-height: 1;
  font-weight: bold;
  font-size: 13px;
}

/* メルマガ登録 */
.m_mailRegistCard {
  display: flex;
  align-items: center;
  border: 1px solid;
  color: inherit;
}

.m_mailRegistCard:hover {
  opacity: 0.7;
}

.m_mailRegistCard__img {
  flex: 0 0 160px;
  line-height: 0;
  text-align: center;
}

.m_mailRegistCard__lead {
  flex: 1 1 auto;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 700;
}

@media screen and (max-width: 599px) {
  .m_mailRegistCard {
    display: block;
    padding: 20px 15px;
  }
  .m_mailRegistCard__lead {
    padding: 16px 0 0;
    font-size: 14px;
  }
}

/* メルマガキャンペーン */
.m_mailCampaignCard {
  display: block;
  border: 1px solid;
  padding: 30px 46px;
  color: inherit;
}
.m_mailCampaignCard__heading {
  margin-bottom: 30px;
}
.m_mailCampaignCard__ttl {
  color: #02506f;
  font-size: 18px;
}
.m_mailCampaignCard__body {
  display: flex;
  align-items: center;
}
.m_mailCampaignCard__msgWrap {
  flex: 1 1 auto;
}
.m_mailCampaignCard__msg {
  font-size: 14px;
}
.m_mailCampaignCard__msg + .m_mailCampaignCard__msg {
  margin-top: 1em;
}
.m_mailCampaignCard__img {
  flex: 0 0 254px;
  padding-left: 60px;
  line-height: 0;
  text-align: center;
}
.m_mailCampaignCard__img img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 599px) {
  .m_mailCampaignCard {
    padding: 20px 15px;
  }
  .m_mailCampaignCard__heading {
    margin-bottom: 15px;
  }
  .m_mailCampaignCard__ttl {
    font-size: 16px;
  }
  .m_mailCampaignCard__body {
    display: block;
  }
  .m_mailCampaignCard__img {
    max-width: 375px;
    margin: 20px auto 0;
    padding: 0;
  }
}
/* おすすめ学習プランのタブ */
.m_tabList {
}
.m_tabList__wrap {
  width: 730px;
}
.m_tabList__tabs {
  display: flex;
  align-items: flex-end;
  height: 54px;
  margin: 0 -1px 0 5px;
}
.m_tabList__tab {
  display: flex;
  align-items: stretch;
  padding: 0 1px;
}
.m_tabList__tabTarget {
  display: flex;
  height: 36px;
  padding: 0 12px;
  border: 2px solid #4491bc;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 13px;
  background: #4491bc;
  transition: 0.2s height;
}
.m_tabList__tabTarget:hover {
  height: 48px;
}
.m_tabList__body {
  padding: 15px 48px;
  border: 2px solid #4491bc;
  border-radius: 4px;
  font-size: 13px;
}
.m_tabList__item {
  display: none;
}
.m_tabList__tabTarget.is_current {
  position: relative;
  height: 54px;
  color: #4491bc;
  background: #fff;
}
.m_tabList__tabTarget.is_current::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  border-right: 2px solid #4491bc;
  border-bottom: 2px solid #4491bc;
  transform: translateY(56%) rotate(45deg);
}
.m_tabList__tabTarget.is_current::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  background: #fff;
  transform: translateY(56%) translateY(-2px) rotate(45deg);
}
.m_tabList__item.is_current {
  display: block;
}
@media screen and (max-width: 768px) {
  .m_tabList {
    overflow: auto;
  }
  .m_tabList__body {
    padding: 15px;
  }
}
/* 動画ポイント */
.m_dougaPoint {
}
.m_dougaPoint__ico {
}
.m_dougaPoint__label {
  padding: 2px 6px;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  font-size: 11px;
  background: #4491bc;
}
.m_dougaPoint__num {
  color: #4491bc;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
}

/*背景色ボックス*/
.m_hasBgColor {
  padding: 20px;
}
.m_hasBgColor--green {
  background-color: #e9fff6;
}
.m_hasBgColor--yellow {
  background-color: #fff7d7;
}

/* メリットカード */
.m_meritCard {
  position: relative;
  padding: 16px;
  border: 1px solid #29bb89;
  border-radius: 4px;
  counter-increment: meritNo;
}
.m_meritCard::before {
  content: "0" counter(meritNo);
  position: absolute;
  top: 0;
  left: 8px;
  display: block;
  padding: 0 8px;
  line-height: 1;
  color: #29bb89;
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  transform: translateY(-50%);
}
.m_meritCard__body {
  font-size: 16px;
  font-weight: bold;
}
.m_meritCard__img {
  position: absolute;
  right: 16px;
  top: 50%;
  line-height: 0;
  transform: translateY(-50%);
}
.m_meritCard__img img {
  max-width: 100%;
  height: auto;
}
.m_meritCard__img--r0 {
  right: 0;
}
@media screen and (max-width: 768px) {
  .m_meritCard__body {
    font-size: 12px;
  }
  .m_meritCard__img {
    width: 80px;
  }
}
/* 事例カード */
.m_exCard {
  padding: 16px;
  background: #f2f2f2;
}
.m_exCard_img {
  text-align: center;
  line-height: 0;
}
.m_exCard_img + .m_exCard__ttl {
  margin-top: 8px;
}
.m_exCard__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(2em * 1.6);
  text-align: center;
}
.m_exCard__ttl + .m_exCard__body {
  margin-top: 8px;
}
.m_exCard__body {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 128px;
}
.m_exCard__inner {
  position: relative;
  padding-top: 39px;
}
.m_exCard__inner::before {
  content: url("/resource/img/bup/python-academy_example.png");
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 35px;
  height: 35px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .m_exCard__ttl {
    font-size: 14px;
  }
  .m_exCard__inner br {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .m_exCard__ttl {
    min-height: auto;
  }
  .m_exCard__body {
    min-height: auto;
  }
}
/* ---------
state
---------- */
.js_localNav__body {
  top: 0;
}
.js_tabList__item {
  transition: 0.3s opacity;
}
.js_tabList__item {
  opacity: 0;
}
.js_tabList__item.is_current {
  opacity: 1;
}

.js_blogs__item {
  opacity: 0;
  transition: 0.3s opacity;
}
.js_blogs__item.is_current {
  opacity: 1;
}

/* プログラム開発支援オプション */
.m_original_movie_bnr_sec {
  transition: 0.2s;
  text-align: center;
}
.m_original_movie_bnr_sec:hover {
  opacity: 0.7;
}
.m_original_movie_bnr_sec img {
  width: 70%;
  height: auto;
}
.m_dl__banner_catch.m_dl__banner_catch--large {
  font-size: inherit;
}
@media screen and (max-width: 768px) {
  .m_dl__banner_catch.m_dl__banner_catch--large {
    font-size: 13px;
  }
}
@media screen and (max-width: 599px) {
  .m_dl__banner_catch.m_dl__banner_catch--large {
    font-size: 11px;
  }
}

/* 
  utility 
=====================*/
.u_hide {
    display: none;
}
@media screen and (max-width: 599px) {
  .u_resSmInline {
    display: inline;
  }
}