@charset "EUC-JP";
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*                                                        */
/* ● style_event.css                                     */
/*    イベント専用CSS                                     */
/*    ・ページ固有の処理を記述                            */
/*                                                        */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    各種import                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    カラー設定                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* カラー定義
 ------------------------------------ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    プロパティ                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    mixin 定義                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 疑似要素

       ::before, ::after で親要素にフィットさせる処理 （ボタンの背景など）
 ------------------------------------ */
/* サイトロゴ

  想定しているHTML構造 ※見出しレベル h1〜h6 は任意
  <h1 class="SiteLogo">
    <a href="">
      <img src="<?php $this->BcBaser->themeUrl(); ?>img/common/logo/site_logo.svg" alt="" />
    </a>
  </h1>

  適用例 ）
    .SiteLogo{
        @include config.site-logo();
    }
------------------------------------------------------------------------ */
/* 基本リンク

  適用例 ）
    .hogehoge{
      @include config.hvr-txt-underline();
    }
------------------------------------------------------------------------ */
/* 基本ページ幅

  適用例 ）
    .hogehoge{
        @include config.page-width-default();
    }
------------------------------------------------------------------------ */
/* スクロールバーをカスタマイズ

  適用例 ）
    .hogehoge{
        @include config.customScrollBar();
    }
------------------------------------------------------------------------ */
/* flex 関連のプロパティをまとめて定義

  適用例 ）
    .hogehoge{
        @include config.flex();
    }
    .hogehoge{
        @include config.flex(center, flex-end);
    }
------------------------------------------------------------------------ */
/* テキストを任意の行数で切る （引数で行数を指定）

   適用例 ）
    .hogehoge{
        @include config.custom_txt_overflow(2);
    }
 ------------------------------------------------------------------------ */
/* clearfix

  適用例 ）
    .hogehoge{
        @include config.clearfix();
    }
------------------------------------------------------------------------ */
/* dotline

  適用例 ）
    .hogehoge{
        @include config.dotline();
    }
------------------------------------------------------------------------ */
/* lattice パターン

  適用例 ）
    .hogehoge{
        @include config.lattice();
    }
------------------------------------------------------------------------ */
/* エリアのデザインパターン

  適用例 ）
    .hogehoge{
        @include config.decorated_area();
    }
------------------------------------------------------------------------ */
/* レスポンシブ 対応用 ブレイクポイントによる条件分岐
   適用例 ）
   @include config.media-query(under-bp-m) {
      $breakpoint-m よりも小さいウィンドウ幅の処理をここに書く
   }
 ------------------------------------------------------------------------ */
/* 単位を除去して数値のみ返す関数
 ------------------------------------------------------------------------ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    World                                         */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* --------------------------------------------------- */
/* イベントカレンダー                                  */
/* --------------------------------------------------- */
@media screen and (min-width: 768px), print {
  .CalendarBlock.IndentStyle .BlockHeader {
    width: 250px;
  }
  .CalendarBlock.IndentStyle .BlockContents,
  .CalendarBlock.IndentStyle .BlockFooter {
    width: calc(100% - 300px);
  }
}
.CalendarBlock .AccordionParent {
  -webkit-transition: 0.2s width;
  transition: 0.2s width;
  margin-right: 0;
}
.CalendarBlock .AccordionParent .AccordionChild {
  padding: 0 2.5rem 2.5rem;
  font-size: 87.5%;
}
@media screen and (min-width: 768px), print {
  .CalendarBlock .AccordionParent {
    width: 50%;
  }
  .CalendarBlock .AccordionParent.Active {
    width: 100%;
  }
}
.CalendarBlock .CalendarGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 768px), print {
  .CalendarBlock .CalendarGroup {
    gap: 1rem;
  }
  .CalendarBlock .CalendarGroup > .Calendar {
    width: calc((100% - 2rem) / 3);
  }
}
@media screen and (max-width: 767px) {
  .CalendarBlock .CalendarGroup > .Calendar:not(:first-child) {
    display: none;
  }
}
.CalendarBlock .CalendarGroup > .Calendar {
  border: 1px solid rgba(29, 195, 104, 0.5);
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.CalendarBlock .CalendarGroup > .Calendar > .Heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5rem;
  margin: 0 auto;
}
.CalendarBlock .CalendarGroup > .Calendar > .Heading .Number {
  font-size: 150%;
}
.CalendarBlock .CalendarGroup > .Calendar .CalendarTable {
  margin: 0 auto;
}
.CalendarBlock .CalendarGroup > .Calendar .CalendarTable thead tr th {
  font-size: 1.3rem;
  font-weight: normal;
}
.CalendarBlock .CalendarGroup > .Calendar .CalendarTable tbody tr th,
.CalendarBlock .CalendarGroup > .Calendar .CalendarTable tbody tr td {
  font-size: 1.4rem;
  padding: 0.5rem;
  text-align: center;
}
.CalendarBlock .CalendarGroup > .Calendar .CalendarTable tbody tr th a,
.CalendarBlock .CalendarGroup > .Calendar .CalendarTable tbody tr td a {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2em;
  aspect-ratio: 1;
  color: #fff;
}
.CalendarBlock .CalendarGroup > .Calendar .CalendarTable tbody tr th a::after,
.CalendarBlock .CalendarGroup > .Calendar .CalendarTable tbody tr td a::after {
  content: "";
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  z-index: -1;
  border-radius: 5em;
  -webkit-transition: 0.2s -webkit-transform;
  transition: 0.2s -webkit-transform;
  transition: 0.2s transform;
  transition: 0.2s transform, 0.2s -webkit-transform;
  -webkit-transform: scale(1);
          transform: scale(1);
  background: rgb(29, 195, 104);
}
.CalendarBlock .CalendarGroup > .Calendar .CalendarTable tbody tr th a.EventEnd,
.CalendarBlock .CalendarGroup > .Calendar .CalendarTable tbody tr td a.EventEnd {
  color: rgb(0, 0, 0);
}
.CalendarBlock .CalendarGroup > .Calendar .CalendarTable tbody tr th a.EventEnd::after,
.CalendarBlock .CalendarGroup > .Calendar .CalendarTable tbody tr td a.EventEnd::after {
  background: rgb(224, 224, 224);
}
html.PcView .CalendarBlock .CalendarGroup > .Calendar .CalendarTable tbody tr th a:hover::after, html.PcView .CalendarBlock .CalendarGroup > .Calendar .CalendarTable tbody tr th a:focus::after,
html.PcView .CalendarBlock .CalendarGroup > .Calendar .CalendarTable tbody tr td a:hover::after,
html.PcView .CalendarBlock .CalendarGroup > .Calendar .CalendarTable tbody tr td a:focus::after {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}
.CalendarBlock .CalendarGroup + .ButtonList {
  margin-top: 1em;
}

/* --------------------------------------------------- */
/* イベント                                            */
/* --------------------------------------------------- */
body.Event #SiteHeaderArea .MainMenuList a[href*="40_event"] {
  background-image: linear-gradient(to bottom, transparent calc(100% - 5px), rgb(29, 195, 104) calc(100% - 5px));
}

.EventBlock .Meta {
  font-size: 1.2rem;
  line-height: 1.75;
}
.EventBlock .Meta .Heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: rgb(30, 162, 109);
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.EventBlock .Meta .Heading::after {
  content: "：";
}
.EventBlock .Meta .TagList {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.EventBlock.List {
  margin-top: 2.5rem;
  border-top: 1px dashed rgb(30, 162, 109);
  padding-top: 2.5rem;
}
.EventBlock.List .BlockHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.EventBlock.Detail {
  background: #fff;
  border: 1px solid rgb(29, 195, 104);
  margin-top: 2.5rem;
  padding: 2.5rem;
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .EventBlock.Detail {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
}
.EventBlock.Detail .BlockHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 2.5rem;
  border-bottom: 1px dashed rgb(30, 162, 109);
}
.EventBlock.Detail .BlockHeader .Heading .Icon {
  display: none;
}
.EventBlock.Detail .BlockHeader .MetaGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.EventBlock.Detail .BlockHeader .MetaGroup .Meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.EventBlock.Detail .BlockHeader .MetaGroup .Meta .Heading {
  min-width: 5em;
}
.EventBlock.Detail .BlockContents {
  font-size: 87.5%;
}
.EventBlock.Detail .BlockContents .Image img {
  border-radius: 1rem;
}
.EventBlock.Detail .BlockContents .Paragraph {
  margin: 2.5rem auto;
}

/*  一覧表示用のリスト
--------------------------------------------------- */
.EventContentsList {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.EventContentsList > li > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
}
.EventContentsList > li > .inner a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  border: 1px solid rgb(180, 180, 180);
  overflow: hidden;
  border-radius: 1rem;
  width: 100%;
}
.EventContentsList > li > .inner a .ImageItem .Image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.5;
}
.EventContentsList > li > .inner a .TextItem {
  padding: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.EventContentsList > li > .inner a .TextItem .Message {
  font-size: 2.1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .EventContentsList > li > .inner a .TextItem .Message {
    -webkit-line-clamp: 2;
  }
}
.EventContentsList > li > .inner a .TextItem .Author {
  font-size: 1.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .EventContentsList > li > .inner a .TextItem .Author {
    -webkit-line-clamp: 1;
  }
}
.EventContentsList > li > .inner a .TextItem .Meta {
  margin-top: 1em;
}
.EventContentsList > li > .inner a .TextItem .Meta .TagList li {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .EventContentsList > li > .inner a .TextItem .Meta .TagList li {
    -webkit-line-clamp: 1;
  }
}
@media screen and (min-width: 768px), print {
  .EventContentsList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
  .EventContentsList li {
    width: calc((100% - 4rem) / 3);
  }
}
@media screen and (max-width: 767px) {
  .EventContentsList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
