@charset "UTF-8";
.ff_serif, .g_main .sc__title .tit, .event_word, .field_cnt .item .tit {
  font-family: "Times New Roman", "Noto Serif TC", serif;
}

html {
  font-size: 16px;
}

body {
  font-family: "Lato", "Noto Sans TC", "Microsoft Jhenghei", "微軟正黑", sans-serif;
  color: #3c464b;
}
body .ytiframe_cover {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.9);
}
body .ytiframe_cover .wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body .ytiframe_cover .close {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
body .ytiframe_cover .close .icon_times {
  position: absolute;
  right: 1em;
  top: 1em;
  width: 2em;
  height: 2em;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
body .ytiframe_cover .close .icon_times::before, body .ytiframe_cover .close .icon_times::after {
  content: "";
  position: absolute;
  background-color: #fff;
}
body .ytiframe_cover .close .icon_times::before {
  height: 100%;
  width: 2px;
  left: calc(50% - 1px);
  top: 0;
}
body .ytiframe_cover .close .icon_times::after {
  width: 100%;
  height: 2px;
  top: calc(50% - 1px);
  left: 0;
}
body .ytiframe_cover .cnt {
  position: relative;
  z-index: 5;
  width: 960px;
  max-width: 100%;
}
body .ytiframe_cover .vd_wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 8px;
}
body .ytiframe_cover .vd_wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
body.pop_ytiframe {
  overflow-y: hidden;
}
body.pop_ytiframe .ytiframe_cover {
  display: block;
}

a {
  color: inherit;
}
a:hover {
  color: inherit;
}

.article_style .anchor {
  display: block;
}
.article_style .anchor:hover {
  text-decoration: none;
}
.article_style .anchor:hover .pic img {
  opacity: 0.6;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.article_style .pic {
  border-radius: 4px;
  overflow: hidden;
}
.article_style .pic img {
  -webkit-transition: opacity 500ms, -webkit-transform 500ms;
  transition: opacity 500ms, -webkit-transform 500ms;
  transition: transform 500ms, opacity 500ms;
  transition: transform 500ms, opacity 500ms, -webkit-transform 500ms;
  opacity: 1;
}
.article_style .wording {
  padding: 1rem 0.5rem;
  font-size: 1rem;
}
.article_style .wording .tag {
  font-size: 0.875em;
  color: #00a0aa;
  margin-bottom: 10px;
}
.article_style .wording .tit {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.3;
}
.article_style .wording .text {
  position: relative;
  margin-top: 10px;
  height: 4.5em;
  overflow: hidden;
  text-align: justify;
}
.article_style .wording .text::after {
  content: "…";
  position: absolute;
  right: 0;
  bottom: 0;
  padding-left: 1em;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(1em, #fff));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 1em);
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.g_fixed {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 1rem;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 600ms;
  transition: -webkit-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -webkit-transform 600ms;
}
.g_fixed.is_active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.g_fixed .fx_icon {
  display: block;
  width: 4em;
  height: 4em;
}
.g_fixed .fx_icon img {
  width: 100%;
}
.g_fixed .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  font-size: 0.95rem;
  cursor: pointer;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  -webkit-transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms, -webkit-transform 240ms, -webkit-box-shadow 240ms;
}
.g_fixed .fx_item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}
.g_fixed .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.g_fixed .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
}
.g_fixed .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.g_fixed .fx_item .in_wrap .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("../img/ui/arrow_top.png") center/contain no-repeat;
}

.g_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  background: transparent;
}
.g_header.is_active {
  background: linear-gradient(-130deg, #00918a, #00a0aa);
}
.g_header a.logo {
  display: block;
  height: 60px;
}
.g_header a.logo img {
  opacity: 1;
  height: 60px;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.g_header a.logo:hover img {
  opacity: 0.6;
}
.g_header .header_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.g_header .header_cnt .header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
}
.g_header .header_cnt .header__nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.g_header .nav_items {
  margin-left: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.g_header .nav_item {
  position: relative;
  line-height: 1;
}
.g_header .nav_item .nav_link {
  display: block;
  padding: 10px 20px 0;
  text-decoration: none;
}
.g_header .nav_item .nav_link span {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(199, 165, 8, 0);
  font-weight: 300;
  color: #fff;
}
.g_header .nav_item .nav_link::after {
  border-top-color: #fff;
  border-bottom-color: #fff;
}
.g_header .nav_item .nav_link .dropdown_item {
  padding-top: 0.5rem;
  padding-bottom: 0.6rem;
}
.g_header .nav_item.is_active span,
.g_header .nav_item a:hover span {
  border-bottom-color: #c7a508;
}

.g_main {
  padding-top: 60px;
  background: url("../img/kv_bg.jpg") center/cover fixed;
}
.g_main .main__sc {
  padding: 80px 0 100px;
}
.g_main .sc__title {
  margin-bottom: 2em;
  text-align: center;
}
.g_main .sc__title .tit {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
}
.g_main .sc__title .tit.small_fz {
  font-size: 40px;
}
.g_main .sc__title .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 72%;
          flex: 0 0 72%;
  font-size: 16px;
  line-height: 1.5;
}
.g_main .container-fluid {
  max-width: 1440px;
  margin: 0 auto;
}

.sc_event {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
}

.event_cnt {
  padding: 40px 0;
  text-align: center;
}

.event_word {
  font-size: 20px;
}
.event_word .title {
  margin-bottom: 0.5em;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  color: #c0c189;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.event_word .p {
  margin-bottom: 0.5em;
  line-height: 1.7;
  font-weight: 700;
}

.sc_field {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.6)));
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.6));
}
.g_main .sc_field {
  padding-top: 30px;
  padding-bottom: 0;
}

.field_cnt .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.field_cnt .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 15%;
          flex: 1 0 15%;
  padding: 0 10px;
}
.field_cnt .item .anchor {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
}
.field_cnt .item .anchor::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#c1be88), to(rgba(193, 190, 136, 0.2)));
  background: linear-gradient(90deg, #c1be88, rgba(193, 190, 136, 0.2));
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 500ms;
  transition: -webkit-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -webkit-transform 500ms;
}
.field_cnt .item .anchor:hover {
  text-decoration: none;
}
.field_cnt .item .anchor:hover .pic img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.6;
}
.field_cnt .item .anchor:hover .wording {
  opacity: 0.6;
}
.field_cnt .item .anchor:hover::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.field_cnt .item .pic {
  border-radius: 4px;
  overflow: hidden;
}
.field_cnt .item .pic img {
  -webkit-transition: opacity 500ms, -webkit-transform 500ms;
  transition: opacity 500ms, -webkit-transform 500ms;
  transition: transform 500ms, opacity 500ms;
  transition: transform 500ms, opacity 500ms, -webkit-transform 500ms;
  opacity: 1;
}
.field_cnt .item .wording {
  padding: 10px 0 12px;
  font-size: 18px;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
  opacity: 1;
}
.field_cnt .item .tit {
  color: #00a0aa;
  font-size: 1.2em;
  text-align: center;
  font-weight: 700;
}
.field_cnt .item .sub {
  margin-top: 6px;
  line-height: 1.4;
}

.sc_newtype {
  padding-top: 80px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.8)));
  background: linear-gradient(rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.8));
}

.newtype_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newtype_cnt .pic {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  cursor: pointer;
}
.newtype_cnt .pic::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0) url("../img/ui/ic_play.svg") center/4em no-repeat;
  -webkit-transition: background 400ms;
  transition: background 400ms;
}
.newtype_cnt .pic::after {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  border: 1px solid #c1be88;
}
.newtype_cnt .pic img {
  border-radius: 10px;
}
.newtype_cnt .pic:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}
.newtype_cnt .wording {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 0 4.8vw;
}
.newtype_cnt .wording .sc__title {
  margin-bottom: 1em;
}
.newtype_cnt .wording .text {
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.8;
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
}
.newtype_cnt .wording .cta {
  margin-top: 1.5rem;
  text-align: center;
}
.newtype_cnt .wording .cta .bttn {
  position: relative;
  display: inline-block;
  border-radius: 8px;
  padding: 0.5em 2em;
  font-size: 1.2em;
  background-color: #c1be88;
  color: #fff;
  overflow: hidden;
  -webkit-transition: background 500ms;
  transition: background 500ms;
}
.newtype_cnt .wording .cta .bttn div {
  position: relative;
  z-index: 2;
}
.newtype_cnt .wording .cta .bttn:hover {
  text-decoration: none;
  background-color: #00918a;
}
.newtype_cnt .wording .cta .bttn:hover::before {
  width: 100%;
}

.sc_media {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.4)));
  background: linear-gradient(rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.4));
}
.g_main .sc_media {
  padding-bottom: 0;
}

.media_cnt .item {
  padding: 0 20px;
  text-align: center;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: -webkit-transform 500ms;
  transition: -webkit-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -webkit-transform 500ms;
}
.media_cnt .item .tag {
  font-size: 1.5em;
  padding-bottom: 10px;
  color: #00a0aa;
  font-weight: 300;
}
.media_cnt .item .tit {
  font-size: 2em;
}
.media_cnt .item.slick-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.media_cnt .item .video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.media_cnt .item .video .vid {
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.sc_respon {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), color-stop(30%, rgba(101, 187, 174, 0.8)), to(rgba(0, 145, 138, 0.8)));
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(101, 187, 174, 0.8) 30%, rgba(0, 145, 138, 0.8));
}
.g_main .sc_respon {
  padding-top: 100px;
}

.respon_cnt {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1600px;
}

.rep_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding-bottom: 2px;
}

.rep_item {
  width: 50%;
  margin: 0 auto;
  color: #3c464b;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rep_item .form {
  line-height: 1.2;
  margin-bottom: 10px;
}
.rep_item .name {
  font-size: 1.4em;
  font-weight: 700;
  color: #c0c189;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  font-family: "Noto Serif TC", sans-serif;
}
.rep_item .job {
  margin-top: 10px;
  font-size: 1em;
  color: #294d39;
  color: rgba(255, 255, 255, 0.65);
}
.rep_item .cnt {
  margin-top: 0.5em;
}

.slick-dots {
  bottom: -30px;
}
.slick-dots li.slick-active button:before {
  color: #00918a;
}

@media (min-width: 992px) {
  .media_cnt .items {
    position: relative;
    z-index: 2;
  }
  .media_cnt .items::before, .media_cnt .items::after {
    position: absolute;
    top: 0;
    z-index: 1;
    height: 100%;
    width: 20%;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  .media_cnt .items::before {
    left: 0;
    -webkit-transform-origin: center left;
            transform-origin: center left;
    background: -webkit-gradient(linear, left top, right top, color-stop(20%, #dae9e7), to(rgba(218, 233, 231, 0)));
    background: linear-gradient(90deg, #dae9e7 20%, rgba(218, 233, 231, 0));
  }
  .media_cnt .items::after {
    right: 0;
    -webkit-transform-origin: center right;
            transform-origin: center right;
    background: -webkit-gradient(linear, right top, left top, color-stop(20%, #dae9e7), to(rgba(218, 233, 231, 0)));
    background: linear-gradient(-90deg, #dae9e7 20%, rgba(218, 233, 231, 0));
  }

  .slide_prev,
.slide_next {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 27%;
    height: 100%;
    background: center/100px no-repeat;
    opacity: 0.4;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
    cursor: pointer;
  }
  .slide_prev:hover,
.slide_next:hover {
    opacity: 0.8;
  }

  .slide_prev {
    left: 0;
    background-image: url("../img/arrow_left.png");
    background-position: 20% center;
  }

  .slide_next {
    right: 0;
    background-image: url("../img/arrow_right.png");
    background-position: 80% center;
  }
}
.article_cnt .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.article_cnt .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  padding: 0 10px;
}

.sc_power {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(rgba(242, 242, 242, 0.8))), url("../img/linebg.png") center bottom no-repeat;
  background: linear-gradient(#f2f2f2, rgba(242, 242, 242, 0.8)), url("../img/linebg.png") center bottom no-repeat;
}

.power_cnt .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.power_cnt .flex_wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 10px;
}
.power_cnt .item {
  position: relative;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fdfdfd;
  font-size: 0.875rem;
}
.power_cnt .wording {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 1.25rem;
}
.power_cnt .wording .tit {
  font-size: 1.2em;
  color: #00a0aa;
}
.power_cnt .wording .text {
  margin-top: 6px;
}
.power_cnt .it_bottom {
  padding: 0 1.25rem 1rem;
}
.power_cnt .more {
  display: inline-block;
  color: #c7a508;
}

.g_footer {
  padding: 40px 0;
}

.foot_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.foot_cnt .left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.foot_cnt .right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.foot_cnt .logo {
  width: 360px;
}
.foot_cnt .mail {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 24px;
}
.foot_cnt .mail a {
  line-height: 1;
  font-size: 20px;
}
.foot_cnt .mail img {
  position: relative;
  bottom: 2px;
  width: 60px;
}
.foot_cnt .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.foot_cnt .sns .item {
  width: 60px;
}
.foot_cnt .sns .item a {
  display: block;
  opacity: 0.4;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.foot_cnt .sns .item a:hover {
  opacity: 1;
}

.foot_bot {
  margin-top: 30px;
  padding: 0 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.875em;
  color: #3c464b;
}
.foot_bot .count {
  color: #c7a508;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: none;
}
.foot_bot .line {
  margin: 0 0.5em;
  width: 3em;
  height: 1.1em;
  border-bottom: 1px solid currentColor;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .g_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    background: linear-gradient(-130deg, #00918a, #00a0aa);
  }
  .g_header .nav_bttn {
    position: absolute;
    right: 15px;
    top: calc(50% - 18px);
    width: 2.5rem;
  }
  .g_header .nav_bttn span {
    display: block;
    border-radius: 2px;
    margin: 6px 0;
    height: 4px;
    background-color: #c0c189;
  }
  .g_header .nav_items {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    padding: 1rem 0;
    background: linear-gradient(-130deg, #00918a, #00a0aa);
  }
  .g_header .nav_item .nav_link {
    border-left: 0 solid #00a0aa;
    font-size: 1.25em;
  }
  .g_header .nav_item .nav_link span {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom-width: 0;
  }
  .g_header .nav_item .nav_link:hover {
    border-left-width: 5px;
  }
  .g_header .nav_item.is_spot a span {
    padding-bottom: 10px;
    margin-bottom: 0;
  }

  .g_main .sc__title .tit {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
    font-size: 36px;
    line-height: 1.2;
  }
  .g_main .sc__title .tit.small_fz {
    font-size: 30px;
  }
  .g_main .main__sc {
    padding: 30px 0 50px;
  }

  .field_cnt .items {
    display: block;
  }
  .field_cnt .item {
    padding: 0 30px 10px;
    margin-bottom: 20px;
  }
  .field_cnt .item .wording {
    padding: 0.5em 1em;
  }

  .newtype_cnt {
    display: block;
  }
  .newtype_cnt .wording {
    padding: 20px;
  }

  .media_cnt .item {
    padding: 0 10px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  .respon_cnt {
    padding: 0 15px;
  }

  .rep_items {
    display: block;
    padding: 0 5px;
  }
  .rep_items .rep_item {
    padding: 20px;
    margin-bottom: 10px;
  }
  .rep_items .form {
    font-size: 0.9em;
  }
  .rep_items .cnt {
    min-height: auto;
  }

  .power_cnt .items {
    display: block;
  }
  .power_cnt .items_dots {
    margin-top: 20px;
  }
  .power_cnt .items_dots .dots {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style: none;
  }
  .power_cnt .items_dots .dots li {
    padding: 4px 8px;
  }
  .power_cnt .items_dots .dots li button {
    display: block;
    border-radius: 50%;
    border-width: 0;
    margin: 0;
    width: 12px;
    height: 12px;
    overflow: hidden;
    font-size: 0;
    background-color: #898998;
    outline: 0;
  }
  .power_cnt .items_dots .dots li.slick-active button {
    background-color: #00918a;
  }

  .foot_cnt,
.foot_bot {
    display: block;
  }

  .foot_cnt .logo {
    width: 100%;
    padding: 0 10px;
  }
  .foot_cnt .right {
    margin-top: 10px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .foot_bot .count {
    margin-top: 20px;
  }
}