@charset "utf-8";
/* CSS Document */
/*===============================

    contents header

================================*/
:root {
  --leading-trim: calc((1em - 1lh) / 2);/* 日本語 */
  --btn_main_theme: #104672;
  --btn_accent_theme: #D46400;
}

body { font-size: 14px; }

/*
    override
================================*/
/* flex */
.m_contentsBox--flex {
   > * { font-size: inherit; }
}

.m_list {
  &.__hasMargin {
    .m_list__item:not(:first-of-type) { margin-top: 10px; }
    .u_text--hasIndent_5em {
      display: block;
      padding-left: 5em;
      text-indent: -5em;
    }
  }
}

.m_inlineImages.__whdth-auto {
  .m_inlineImages__item {
    &:has([class]) {
      width: auto;
    }
  }
}

  /* 対象者タグ */
.p_tagWrapper {
  align-items: flex-start;
  border-bottom: 1px solid currentColor;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
}

.p_targetTags {
  display: flex;
  flex-wrap: wrap;
}

.p_targetTags.besideHeading { max-width: 80%; }/* 対象者見出しの横に表示する場合 */

.p_targetTags_item {
  flex:0 1 auto;
  margin: 3px 0;
}

.c_targetTags {
  background-color: #ccc;
  border-radius: 0px;
  color: #fff;
  display: block;
  font-size: 11px;
  margin: 0 3px;
  padding: 1px 9px;
  text-align: center;
}

.c_targetTags.young { background-color: #00a99d; }
.c_targetTags.middle { background-color: #ff9e1d; }
.c_targetTags.leader { background-color: #cc1b5b; }
.c_targetTags.naiteisha { background-color: #09a2c6; }
.c_targetTags.newcom { background-color: #1eba2c; }
.c_targetTags.head { background-color: #b865c1; }
.c_targetTags.mng { background-color: #8e6747; }
.c_targetTags.all { background-color: #e80000; }


/*
    ローカルナビ
================================*/
.js_localNaviWrapper { width: 100%; }

.l_localNavi--hasBtn {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: relative;
  width: 100%;

  &.stop {
    position: absolute;
    width: 750px;
  }

  .l_localNavi__item {
    display: flex;
    flex: 1;
  }

  .l_localNavi__link {
    background-color: #f3f3f3;
    display: grid;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    place-content: center;
    place-items: center;
    text-align: center;
    width: 100%;
    &:hover {
      background-color: var(--theme_main);
      color: #fff;
    }
    &.__btn {
      background-color: var(--btn_main_theme);
      box-shadow: inset 0px 15px 12px rgba(255, 255, 255, .3);
      color: #fff;
      &:hover { opacity: .7; }
      &.__accent { background-color: var(--btn_accent_theme); }
      &.__hasIcon-u {
        align-items: center;
        display: flex;
        gap: 5px;
        justify-content: center;
        &::after {
          content: "\f103";/* 下向き二重矢印 */
          font-family: "Font Awesome 5 Free";
        }
      }
    }
  }

  @media screen and (max-width: 599px) {
    .l_localNavi__item {
      flex: 1 1 calc(50% - 10px);/* 2列なので単純にgap*2を引く */
    }
    br { display: none; }
  }
}

.l_localNavi--hasBtn.sticky {
  background-color: #fff;
  width: 750px;
  z-index: 1;
  position: fixed;
  top: 0;
}


/*===============================

    contents body

================================*/
/*
    見出し
================================*/
.m_heading {
  &.__flex {
    display: flex;
  }
  &:not(:only-child):not(.m_heading--introduction):has(+ .m_linkWrapper) { margin-bottom: 0; }
}
/* 明朝体 */
.m_heading--ff_serif {
  display: flex;
  flex-direction: column;
  span {
    color: var(--theme_main);
    display: block;
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    font-weight: bold;
    margin-block: var(--leading-trim) 10px;
  }
  .m_heading__title {
    font-family: "Noto Serif JP", serif;
    font-size: 25px;
    line-height: 1.5;
    margin-block: var(--leading-trim);
  }
}

/* 左側に線 */
.m_heading--border_l {
  border-left: 1px solid var(--theme_main);
  padding-left: 12px;
}

/* マーク（●） */
.m_heading--hasMark_circle {
  margin-bottom: 10px !important;
  .m_heading__title {
    font-size: 14px;
    display: flex;
    &::before {
      background-color: var(--theme_main);
      border-radius: 999px;
      content: "";
      display: block;
      flex-shrink: 0;
      margin-top: calc((1em * 1.6) / 4 - 2px);
      margin-right: 5px;
      height: 1em;
      width: 1em;
    }
  }
}

/* チェックマーク */
.m_heading--hasMark_check {
  margin-bottom: 10px !important;
  > .m_heading__title {
    font-size: 14px;
    display: flex;
    &::before {
      background-color: #000;
      content: "";
      flex-shrink: 0;
      margin-right: 5px;
      mask-image: url("/resource/img/bup/icon_check.svg");
      mask-position: center;
      mask-repeat: no-repeat;
      height: 1.5em;
      width: 1.5em;
    }
  }
}


/*
    リンク
================================*/
.m_link--btn {
  background-color: var(--btn_main_theme);
  box-shadow: inset 0px 15px 12px rgba(255, 255, 255, .3);
  color: #fff;
  display: grid;
  font-size: 12px;
  font-weight: bold;
  place-items: center;
  place-content: center;
  min-height: calc(2 * 1lh);
  padding: .8em;
  width: fit-content;
  &:hover { opacity: .7; }
  &.__accent { background-color: var(--btn_accent_theme); }
  &.__hasIcon-u {
    align-items: center;
    display: flex;
    gap: 5px;
    justify-content: center;
    &::after {
      content: "\f103";/* 下向き二重矢印 */
      font-family: "Font Awesome 5 Free";
    }
  }
}

.m_link {
  color: #002d8e;
  display: inline-block;
  text-decoration: none;
}

.m_link:hover {
  color: #004e8e;
  text-decoration: underline;
}

.m_link--hasArrow {
  align-items: center;
  display: flex;
}

.m_link--hasArrow::before {
  border: 5px solid transparent;
  border-right: 0;
  border-left: 8px solid currentColor;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 0;
  margin-right: 5px;
  width: 0;
}

/*
    テーマリスト
================================*/
.m_themeList {
  
  display: flex;
  gap: 36px;
  .m_themeList__item {
    display: flex;
    flex: 1;
    position: relative;
    &:not(:last-of-type)::after {
      align-self: center;
      background-color: #91475942;
      clip-path: polygon(0 0, 0% 100%, 100% 50%);
      content: "";
      display: block;
      flex-shrink: 0;
      height: 32px;
      /* margin-inline: 8px; */
      position: absolute;
      right: -36px;
      transform: translateX(-50%);
      width: 17px;
    }
  }
  .m_themeList__link {
    color: var(--theme_main);
    font-size: 14px;
    font-weight: bold;
    padding: 5px;
    &:hover { background-color: #F9F4F5; }
    span {
      display: block;
      font-size: 12px;
    }
  }
  @media screen and (max-width: 599px) {
    flex-direction: column;
    gap: 0;
    .m_themeList__item {
      flex-direction: column;
      &:not(:last-of-type)::after {
        position: static;
        transform: translateX(0) rotate(90deg);
      }
    }
  }
}


/*
    グリッドボックス
================================*/
.m_contentsBox--grid {
  display: grid;
  grid-template-columns: auto minmax(calc(100% / 4), 1fr);
  gap: 20px;

  /* 課題・ニーズ → 目指す姿 */
  &.__process {
    grid-template-columns: auto 20px auto;
    .u_arrow--lr {
      background-color: #e3cfd4;
      clip-path: polygon(10% 0, 100% 50%, 10% 100%, 0% 100%, 90% 50%, 0% 0%);
      transform: scaleY(.7) translateY(calc(1em + 10px));
    }
    @media screen and (max-width: 599px){
      background-color: #f5f5f5;
      grid-template-columns: auto;
      padding: 10px;
      .u_arrow--lr {
        clip-path: polygon(50% 100%, 100% 40%, 75% 40%, 75% 0, 25% 0, 25% 40%, 0 40% );
        height: 3em;
        margin-inline: auto;
        transform: none;
        width: 20%;
      }
    }
  }
  @media screen and (max-width: 599px) {
    grid-template-columns: auto;
  }
}


/*
    スケジュール
================================*/
.m_pickupList {}
.m_pickupList > *:last-child { margin-bottom: 0; }
.m_pickupList__item { margin-bottom: 10px; }
.m_pickupList__inner {
  --puList-inner-padding: 10px;
  border: 1px solid var(--theme_main);
  padding: 0 var(--puList-inner-padding) 5px;
  position: relative;
}
.m_link--pickup {
  color: currentColor;
  display: block;
  transition: .3s opacity;
}
.m_link--pickup:hover {
  color: currentColor;
  opacity: .7;
  text-decoration: none;
}

.m_pickupSeminar {
  display: flex;
  gap: 15px;
}
.m_pickupSeminar__item {}
.m_pickupSeminar__item.__detail {
  display: flex;
  flex: 1.2;
  flex-direction: column;
}
.m_pickupSeminar__item.__schedule {
  flex: 1;
}

.m_pickupSeminar__titleWrap {
  border-left: 10px solid var(--theme_main);
  margin-bottom: 10px;
}

.m_pickupSeminar__date {
  height: 0;
  visibility: hidden;
}

.m_pickupSeminar__title {
  font-size: 14px;
  font-weight: bold;
  padding: 15px;
}

.m_pickupSeminar__detail {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 10px;
  position: relative;
}

.m_pickupSeminar__detailInner {
  background-color: #f3f3f3;
  border-top-right-radius: 10px;
  display: flex;
  gap: 15px;
  /*padding-bottom: 20px;*/
  position: relative;
  margin-bottom: 10px;
}
.m_pickupSeminar__image {
  flex-shrink: 0;
  width: 130px;
}
.m_pickupSeminar__image > img {
  aspect-ratio: 1 / 0.489;
  display: block;
  object-fit: cover;
  min-height: 72px;
  max-width: 100%;
}
.m_pickupSeminar__catchcopy {
  font-size: 12px;
  padding: 10px 15px 10px 0;
}

.m_pickupSeminar__link {
  color: #fff;
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  /* overflow: hidden;
  position: absolute;
  right: 0;
  bottom: 0; */
}

.m_pickupSeminar__link.__radius_left-top { border-top-left-radius: 7px; }
.m_pickupSeminar__link.__radius_left-bottom { border-bottom-left-radius: 7px; }
.m_pickupSeminar__link.__radius_right-top { border-top-right-radius: 7px; }
.m_pickupSeminar__link.__radius_right-bottom { border-bottom-right-radius: 7px; }

.m_pickupSeminar__link > .m_link {
  background-color: var(--theme_main);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  padding: 8px;
  transition: .3s opacity;
}
.m_pickupSeminar__link > .m_link:hover {
  /*opacity: .7;*/
  text-decoration: none;
}

.m_sheduleTable {
  font-feature-settings: "palt" 1;
  table-layout: fixed;
  font-size: 12px;
  width: 100%;
}

.m_sheduleTable__header {}
.m_sheduleTable--hasPlace .m_sheduleTable__header{
  font-size: 12px;
}
.m_sheduleTable__header th > p {
  background-color: #f3f3f3;
  border-top: 4px solid var(--theme_main);
  color: var(--theme_main);
  padding: 6px 5px;
  text-align: center;
}

.m_sheduleTable__header th.th_date { width: 30%; }
/* .m_sheduleTable--hasPlace th.th_date { width: auto; } */
.m_sheduleTable__header th.th_place {
  width: 24%;
  padding-left: 3px;
}
.m_sheduleTable__header th.th_price {
  padding-left: 3px;
}
.m_sheduleTable--hasPlace th.th_price {
  width: 24%;
}
.m_sheduleTable__header th.th_point {
  padding-left: 3px;
}
.m_sheduleTable--hasPlace th.th_point {
  width: 24%;
}

.m_sheduleTable__header th.th_date > p {
  border-bottom-left-radius: 10px;
}
.m_sheduleTable__header th.th_price > p { padding-left: 3px; }
.m_sheduleTable__header th.th_point > p { padding-left: 3px; }

.m_sheduleTable__body > tr {
  border-bottom: 1px solid #cbcbcb;
}

.m_sheduleTable__body > tr > td {
  padding: 5px 0;
  text-align: center;
  vertical-align: middle;
}

.m_sheduleTable__body > tr > td:not(:first-of-type) {
  text-align: right;
}
.m_sheduleTable--hasPlace .m_sheduleTable__body > tr > td:nth-child(2) {
  text-align: center;
}
.m_sheduleTable__body > tr > td > * {
  font-size: 11px;
}

@media screen and (max-width: 810px) {
  .m_pickupSeminar__catchcopy { padding-bottom: 45px; }
}

@media screen and (max-width: 599px) {
  .m_pickupSeminar__titleWrap.__new .m_pickupSeminar__title { padding-left: 40px; }
  .m_pickupSeminar__tag--new { max-height: 60%; }
  /* .m_pickupSeminar__detail { padding-bottom: 30px; } */
  .m_pickupSeminar__catchcopy { padding-bottom: 10px; }
  .m_pickupList__inner { --puList-inner-padding: 10px; }
  .m_pickupSeminar {
    flex-direction: column;
    gap: 3px;
  }
  .m_sheduleTable__header th.th_date { width: 40%; }
}


/*
    開催概要
================================*/
.m_table--outline {
  border-color: #707070;
  border-style: solid;
  border-width: 1px 0 1px;
  font-size: 14px;
  width: 100%;

  & th,
  & td {
    border: none;
    border-bottom: 1px solid #707070;
    height: 100%;
    padding: 10px 20px 10px;
    vertical-align: middle;
  }
  & th {
    background-color: #efeeed;
    text-align: left;
    width: clamp(5em, 120px, 50%);
  }
}

/*
    セットプランリンク
================================*/
.m_setplan_card a {
  display: block;
  box-shadow: 3px 3px 8px 3px rgba(0, 0, 0, 0.15);
  padding: 16px;
  border-radius: 8px;
}
.m_setplan_card_heading {
  font-size: 18px;
  color: #333;
}
.m_setplan_card_heading--sub {
  font-size: 14px;
}
.m_setplan_card a:hover {
  color: #333;
  text-decoration: none !important;
  opacity: 0.6;
  transition: 0.3s;
}
.m_stplan_card_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}
.m_stplan_card_item {
  color: #333;
  font-size: 12px;
  line-height: 1.4;
}
.m_setplan_card_detail {
  text-align: right;
  font-size: 12px;
}

@media screen and (max-width: 599px) {
.m_setplan_card a {
  padding: 8px 16px;
  margin: 0 10px;
}
}