@charset "UTF-8";


/*---------------------------------------------------------------*\
$header
\*---------------------------------------------------------------*/

@media screen and (max-width: 600px) {

  header .sub .subtitle {
    color: #9a9a9a;
  }
}



/*---------------------------------------------------------------*\
$イベント詳細カード
\*---------------------------------------------------------------*/

#event_card {
  background-color: #f3f5eb;
  padding: 32px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 56px 0;
}

#event_card .headline {
  font-size: 24px;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
}

/* introduction */
#event_card .introduction {
  font-size: 15px;
}

/* date */
#event_card .date {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#event_card .date_headline {
  gap: 16px;
  background-color: #9A836C;
  position: relative;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  padding: 20px 16px;
  width: 100%;
  box-shadow: 0px 8px 30px rgb(0 0 0 / 8%);
}

#event_card .date_headline:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc((100% - 8px));
  height: calc((100% - 8px));
  margin: auto;
  border: dashed 1px #fff;
  z-index: 1;
}

#event_card .date_headline .headline {
  font-size: 24px;
  line-height: 1.4;
}

#event_card .date_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #fff;
  padding: 32px;
}

#event_card .date_list li {
  line-height: 1.4;
  font-size: 17px;
  gap: 4px;
}

#event_card .date_list li span {
  line-height: 1.4 !important;
}

#event_card .border {
  width: 100%;
  height: 1px;
  background-color: #ddd;
}

/* button */
#event_card .button {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80px;
  line-height: 1;
  background-color: #B4CF13;
  font-weight: bold;
  text-align: center;
  text-decoration: none !important;
  color: #394200 !important;
  border-radius: 80px;
  border: solid 2px #a4bb1c;
  box-shadow: 0px 8px 24px rgb(0 0 0 / 24%);
}

/* short ver. */
#event_card .wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


@media screen and (max-width: 600px) {

  #event_card {
    padding: 24px 16px;
    gap: 24px;
  }

  #event_card .headline {
    font-size: 17px;
  }

  #event_card .date_headline {
    padding: 16px;
  }

  #event_card .date_headline .headline {
    font-size: 16px;
  }

  #event_card .date_list {
    padding: 12px;
    gap: 12px;
  }

  #event_card .date_list li span {
    line-height: 1.4 !important;
    font-size: 12px !important;
  }

  #event_card .button {
    font-size: 13px;
    height: 56px;
  }
}



/*---------------------------------------------------------------*\
$イベントCTAボタン
\*---------------------------------------------------------------*/

#cta_buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #f3f5eb;
  padding: 32px;
}

#cta_buttons .cta_button_seminar {
  color: #394200 !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80px;
  background-color: #B4CF13;
  border: solid 2px #a4bb1c;
  font-weight: bold;
  width: 100%;
  border-radius: 80px;
  text-decoration: none !important;
  box-shadow: 0px 8px 24px rgb(0 0 0 / 24%);
}

#cta_buttons .or {
  text-align: center;
  font-weight: bold;
  font-size: 15px !important;
  margin: 0 16px;
  line-height: 1;
}

#cta_buttons .border {
  width: 140px;
  height: 1px;
  background-color: #333;
}


#cta_buttons .cta_button_consulting {
  text-align: center;
  background-color: #333;
  color: #fff !important;
  font-weight: bold;
  border-radius: 80px;
  width: 100%;
  text-decoration: none !important;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80px;
  gap: 8px;
  box-shadow: 0px 8px 24px rgb(0 0 0 / 24%);
}

#cta_buttons .cta_button_consulting .additional {
  text-align: center;
  color: #fff !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

/* オンラインセミナー */
#cta_buttons .attention {
  width: 180px;
  margin: 0 auto;
}


@media screen and (max-width: 600px) {

  #cta_buttons {
    padding: 24px 16px;
    gap: 16px;
  }

  #cta_buttons .cta_button_seminar {
    height: 56px;
  }

  #cta_buttons .cta_button_consulting {
    height: 64px;
    gap: 6px;
  }

  #cta_buttons .cta_button_consulting .additional {
    font-size: 11px !important;
  }

  #cta_buttons .or {
    font-size: 12px !important;
  }

  #cta_buttons .border {
    width: 72px;
  }
}



/*---------------------------------------------------------------*\
$main
\*---------------------------------------------------------------*/

main.single {
  padding-top: 250px;
}


@media screen and (max-width: 600px) {

  main.single {
    padding-top: 150px;
  }
}



/*---------------------------------------------------------------*\
$記事詳細 画像グリッド表示
\*---------------------------------------------------------------*/

.image_upper {
  width: 50% !important;
}

.image_upper img {
  aspect-ratio: 1 / 1 !important;
}

.wrap_images {
  width: 50% !important;
}



/*---------------------------------------------------------------*\
$記事詳細ファーストビュー背景色
\*---------------------------------------------------------------*/

.firstview_background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.firstview_background_sp {
  background-color: transparent;
}


@media screen and (max-width: 600px) {

  .firstview_background {
    width: 100%;
    height: 150px;
    border-radius: 0px;
  }

  .firstview_background_sp {
    background-color: #4a4a4a;
  }
}



/*---------------------------------------------------------------*\
$記事詳細ファーストビュー
\*---------------------------------------------------------------*/

.visual_card {
  width: 100%;
  position: relative;
}

/* status */
.visual_card .status {
  gap: 12px;
}

.visual_card .each_status {
  width: fit-content;
  padding: 0 8px;
  height: 28px;
  font-size: 14px;
}

.visual_card .status_open {
  background-color: #468257;
}

.visual_card .status_soldout {
  background-color: #B82525;
}

.visual_card .status_limited {
  background-color: #58A4BC;
}

.visual_card .status_closed {
  background-color: #DD8632;
}

.visual_card .status_over {
  background-color: #aaa;
  color: #666;
}

/* category */
.categories {
  gap: 16px;
}

.visual_card .each_category {
  font-size: 15px;
  gap: 4px;
}

.visual_card .each_category .icon {
  width: 15px;
  height: 15px;
}

/* title */
.visual_card .headline {
  font-size: 44px;
  margin: 16px 0;
  line-height: 1.3;
}

.visual_card .headline br {
  display: none;
}

/* place */
.visual_card .place {
  gap: 4px;
}

.visual_card .place .icon {
  width: 17px;
  height: 17px;
}

.visual_card .place br {
  display: none;
}

/* schedule */
.schedule {
  gap: 20px;
  margin: 32px 0 0;
}

.schedule .headline {
  font-size: 48px;
}

.schedule .info {
  font-size: 32px;
  gap: 6px;
}

.schedule .subject {
  font-size: 12px;
}

/* share */
.share {
  gap: 24px;
  z-index: 2;
}

.share .each_sns a {
  width: 20px;
  height: 20px;
}

.share .each_sns svg {
  display: block;
  fill: #fff;
}

.share .success_msg {
  display: none;
  position: fixed;
  width: 300px;
  height: 56px;
  background-color: rgba(0, 0, 0, .75);
  top: 100px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
  border-radius: 4px;
}

.share .success_msg>span {
  font-size: 14px;
}

/* visual */
.visual {
  position: relative;
  width: 100%;
  z-index: 1;
  margin: 56px 0 0 0;
}

.visual>img {
  border-radius: 0 !important;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  object-fit: contain;
}

.visual_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  backdrop-filter: blur(30px);
}

.visual_background img {
  width: 100%;
  height: 100%;
  filter: blur(20px);
  object-fit: cover;
}


@media screen and (max-width: 950px) {

  /* status */
  .visual_card .status {
    padding: 0 4%;
  }

  /* category */
  .visual_card .categories {
    padding: 0 4%;
  }

  /* headline */
  .visual_card .headline {
    padding: 0 4%;
  }

  /* place */
  .visual_card .place {
    padding: 0 4%;
  }

  /* schedule */
  .schedule {
    padding: 0 4%;
  }

  /* share */
  .share {
    padding: 0 4%;
  }
}


@media screen and (max-width: 600px) {

  /* status */
  .visual_card .each_status {
    font-size: 11px;
    height: 24px;
  }

  /* category */
  .categories {
    gap: 10px;
  }

  .visual_card .each_category {
    font-size: 11px;
  }

  .visual_card .each_category .icon {
    width: 11px;
    height: 11px;
  }

  /* title */
  .visual_card .headline {
    font-size: 22px;
  }

  /* place */
  .visual_card .place {
    font-size: 11px;
  }

  .visual_card .place .icon {
    width: 11px;
    height: 11px;
  }

  /* schedule */
  .schedule {
    margin: 28px 0 0;
  }

  .schedule .headline {
    font-size: 32px;
  }

  .schedule .subject {
    font-size: 10px;
  }

  .schedule .detail {
    font-size: 11px;
  }

  /* share */
  .share .each_sns a {
    width: 18px;
    height: 18px;
  }

  /* visual */
  .visual {
    width: 100%;
    margin: 32px 0 0 0;
    max-height: 280px !important;
  }
}



/*---------------------------------------------------------------*\
$スタッフ紹介
\*---------------------------------------------------------------*/

/* staff profile */
#staff_profile {
  max-width: 1200px;
  width: 90%;
  border: solid 1px #eee;
  margin: 250px auto 0;
  padding: 24px;
}

#staff_profile .bio .description p {
  line-height: 2;
}

/* other staff */
#other_staff {
  max-width: 1200px;
  width: 90%;
  margin: 120px auto 0;
}

#staff {
  gap: 32px;
}


@media screen and (max-width: 600px) {

  #staff_profile {
    margin: 160px auto 0;
    padding: 16px;
  }
}