@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて14pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  display: flex;
  flex-direction: column;
}

body {
  min-height: 100vh;
  font-family: "Open Sans", sans-serif;
}

.w_base {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding-right: 10px !important;
  padding-left: 10px !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
**  font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
}
.hd_bg .hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85em 0 0;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.hd_bg .hd .hd_logo a .hd_ttl {
  color: #7B7878;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}
.hd_bg .hd .hd_logo a .hd_ttl span {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
}
.hd_bg .hd .hd_logo a img {
  display: block;
  width: 50%;
  margin-right: 10px;
}
.hd_bg .hd .hd_upperct {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hd_bg .hd .hd_upperct .contact a {
  color: #7B7878;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
  text-decoration: none;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_upperct .contact a::after {
  content: attr(data-text);
  margin-left: 10px;
  color: #c2a95e;
  font-family: "Shippori Mincho", serif;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_upperct .contact a:hover {
  color: #c2a95e;
}
.hd_bg .hd .hd_upperct .contact a:hover::after {
  color: #c2a95e;
}
.hd_bg .hd .hd_upperct .mail a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #7B7878;
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #D8D8D8;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_upperct .mail a::before {
  content: "";
  width: 21px;
  height: 14px;
  background: url(../images/icon_contact.svg) no-repeat center center;
  background-size: cover;
}
.hd_bg .hd .hd_upperct .mail a:hover {
  background: #ECFAFF;
  border: 1px solid #c2a95e;
}
.hd_bg .hd .hd_upperct .tel {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7B7878;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.hd_bg .hd .hd_upperct .tel::before {
  content: "";
  width: 21px;
  height: 17px;
  background: url(../images/icon_tel.svg) no-repeat center center;
  background-size: cover;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg .nav .nav_list {
  display: flex;
  width: 100%;
  border-top: 1px solid #D8D8D8;
  border-bottom: 1px solid #D8D8D8;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  width: 100%;
}
.nav_bg .nav .nav_list > li::before {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  max-height: 48px;
  background: #D8D8D8;
}
.nav_bg .nav .nav_list > li:last-of-type::after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  max-height: 48px;
  background: #D8D8D8;
}
.nav_bg .nav .nav_list > li > a {
  display: block;
  width: 100%;
  padding: 0.9em 0;
  color: #7B7878;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.5s ease;
}
.nav_bg .nav .nav_list > li > a::after {
  display: block;
  content: attr(data-text);
  color: #c2a95e;
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.5s ease;
}
.nav_bg .nav .nav_list > li > a:hover, .nav_bg .nav .nav_list > li > a.current {
  background: #c2a95e;
  color: #fff;
}
.nav_bg .nav .nav_list > li > a:hover::after, .nav_bg .nav .nav_list > li > a.current::after {
  color: #fff;
}
.nav_bg .nav .nav_list > li.current a {
  background: #c2a95e;
  color: #fff;
}
.nav_bg .nav .nav_list > li.current a::after {
  color: #fff;
}
.nav_bg .nav .nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  background: #c2a95e;
  transition: All 0.5s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  background: #c2a95e;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li.current a {
  background: #c2a95e;
  color: #fff;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li.current a::after {
  color: #fff;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 100;
  display: none;
  width: 100%;
  background: #c2a95e;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover {
  background-color: #c2a95e;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li.current a {
  background: #c2a95e;
  color: #fff;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li.current a::after {
  color: #fff;
}
.nav_bg .nav .nav_list > li:last-of-type > .child_wrap > .sub-menu > li > .child_wrap {
  left: -100%;
}
.nav_bg .nav .nav_upperct {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0 100px;
}
.con_bg .con .main {
  order: 1;
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  background: #ECFAFF;
}
.ft_bg .ft {
  padding: 1.25em 0;
}
.ft_bg .ft .ft_copy {
  display: block;
  color: #969697;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
}
.pt .pt_wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 63px;
  height: 54px;
  background: #c2a95e;
  border: 1px solid #c2a95e;
  transition: all 0.3s ease;
}
.pt .pt_wrap .pt_btn {
  position: relative;
  top: 8px;
  cursor: pointer;
  display: block;
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
}
.pt .pt_wrap .pt_btn::before, .pt .pt_wrap .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: #FFF;
}
.pt .pt_wrap .pt_btn::before {
  width: 2px;
  bottom: 0;
}
.pt .pt_wrap .pt_btn::after {
  height: 2px;
  right: 0;
}
.pt .pt_wrap .pt_ttl {
  position: relative;
  bottom: 3px;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
  font-weight: 700;
}
.pt .pt_wrap:hover {
  background: #fff;
}
.pt .pt_wrap:hover .pt_btn::before, .pt .pt_wrap:hover .pt_btn::after {
  background: #c2a95e;
}
.pt .pt_wrap:hover .pt_ttl {
  color: #c2a95e;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #58BCFF;
  border-radius: 5px;
  color: #58BCFF !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #58BCFF;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #58BCFF;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_wrap {
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
  max-height: 467px;
  margin-top: 20px;
}
.index_slider_wrap .index_slider {
  width: 65%;
}
.index_slider_wrap .index_slider img {
  width: 100%;
  height: 100vh;
  max-height: 467px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_slider_wrap .catchcopy_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
  padding: 20px;
  border-right: none;
}
.index_slider_wrap .catchcopy_bg h2 {
  color: #A5A5A5;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  line-height: 1.7;
}
.index_slider_wrap .catchcopy_bg h2::before {
  content: "";
  display: flex;
  width: 300px;
  height: 100px;
  margin: 0 auto 20px;
  background: url(../images/jp_logo.png) no-repeat center center;
}

.index_main {
  order: 1;
  width: calc(100% - 340px);
}
.index_main .index_greet {
  position: relative;
  margin-bottom: 40px;
}
.index_main .index_greet h2 {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5em 0.8em;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #D8D8D8;
}
.index_main .index_greet h2::after {
  display: block;
  content: attr(data-text);
  margin-left: 15px;
  color: #c2a95e;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 700;
}
.index_main .index_greet .index_greet_item {
  padding: 20px 15px;
}
.index_main .index_greet .more {
  display: none;
  position: absolute;
  top: 15px;
  right: 0;
}
.index_main .index_greet .more a {
  display: flex;
  align-items: center;
  color: #7B7878;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease;
}
.index_main .index_greet .more a::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/icon_more.svg) no-repeat center center;
}
.index_main .index_greet .more a:hover {
  color: #c2a95e;
}
.index_main .index_news {
  position: relative;
  margin-bottom: 40px;
}
.index_main .index_news h2 {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5em 0.8em;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #D8D8D8;
}
.index_main .index_news h2::after {
  display: block;
  content: attr(data-text);
  margin-left: 15px;
  color: #c2a95e;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 700;
}
.index_main .index_news .index_news_scrl {
  max-height: 400px;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 2em 0.8em;
  border-bottom: 1px solid #D8D8D8;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  width: 70px;
  font-family: "Open Sans", sans-serif;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl {
  width: calc(100% - 90px);
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a {
  color: #c2a95e;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a:hover {
  text-decoration: none;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
  font-family: "Open Sans", sans-serif;
}
.index_main .index_news .more {
  position: absolute;
  top: 15px;
  right: 0;
}
.index_main .index_news .more a {
  display: flex;
  align-items: center;
  color: #7B7878;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease;
}
.index_main .index_news .more a::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/icon_more.svg) no-repeat center center;
}
.index_main .index_news .more a:hover {
  color: #c2a95e;
}
.index_main .index_contact {
  position: relative;
  margin-bottom: 40px;
}
.index_main .index_contact h2 {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5em 0.8em;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #D8D8D8;
}
.index_main .index_contact h2::after {
  display: block;
  content: attr(data-text);
  margin-left: 15px;
  color: #c2a95e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.index_main .index_contact .index_contact_item {
  padding: 20px 15px;
}
.index_main .index_contact .more {
  display: none;
  position: absolute;
  top: 15px;
  right: 0;
}
.index_main .index_contact .more a {
  display: flex;
  align-items: center;
  color: #7B7878;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease;
}
.index_main .index_contact .more a::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/icon_more.svg) no-repeat center center;
}
.index_main .index_contact .more a:hover {
  color: #c2a95e;
}

.index_side {
  order: 2;
  width: 300px;
}
.index_side .index_bnr_list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.index_side .index_bnr_list ul .index_bnr_item {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  z-index: 0;
}
.index_side .index_bnr_list ul .index_bnr_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.3em;
}
.index_side .index_bnr_list ul .index_bnr_item a img {
  position: absolute;
  z-index: -1;
  transition: 0.3s;
}
.index_side .index_bnr_list ul .index_bnr_item a:hover img {
  scale: 1.1;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list .news_item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 2em 0.8em;
  border-bottom: 1px solid #D8D8D8;
}
.news_list .news_item .news_item_date {
  width: 75px;
  font-family: "Open Sans", sans-serif;
}
.news_list .news_item .news_item_ttl {
  width: calc(100% - 90px);
}
.news_list .news_item .news_item_ttl a {
  color: #c2a95e;
}
.news_list .news_item .news_item_ttl a:hover {
  text-decoration: none;
}

.news_date {
  display: flex;
  justify-content: flex-end;
  margin-top: -10px;
  margin-bottom: 20px;
  font-weight: 500;
}
.news_date time {
  font-family: "Open Sans", sans-serif;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 120px;
  padding: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  background: url(../images/ttl_bg.jpg) no-repeat top center;
  background-size: cover;
}
.mcon h1::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
.mcon h1 span {
  position: relative;
  z-index: 1;
}
.mcon h2 {
  position: relative;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0.5em 0.3em;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid #D8D8D8;
}
.mcon h2::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 100px;
  height: 2px;
  background: #c2a95e;
}
.mcon h3 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0.5em 0.3em;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
.mcon h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 80px;
  height: 2px;
  background: #c2a95e;
}
.mcon h4 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0.5em 0.3em;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.mcon h4::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background: #c2a95e;
}
.mcon h5, .mcon h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1em;
  font-weight: 500;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon .contact-table table td {
  border: 1px #d9d9d9 solid;
}
.mcon .contact-table table td:nth-of-type(1) {
  background-color: #eff2ec;
}
.mcon .event_button {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
}
.mcon .awardee_table table {
  /*tr {

    &:nth-child(1) {
      background: #0A8034;
      color: #fff;
  }

    &:nth-child(2) {
      background: #0A8034;
      color: #fff;
  }
  }

  td {
    border: 1px #d9d9d9 solid;

    &:nth-of-type(1) {
      background-color: #eff2ec;
    }
  }*/
}/*# sourceMappingURL=style.css.map */