@charset "UTF-8";
/* 
    2022/03改修CSS
*/
/*
media query mixin
*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@300;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap");
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .tab-only {
    display: none;
  }
}

/*
Web Fonts
*/
/*
TablePress Plugin Custom Styles
*/
table.tablepress {
  width: auto;
  word-wrap: none;
  border: 1px solid #e1c7b3;
}

@media screen and (min-width: 768px) {
  table.tablepress {
    width: 100%;
    word-wrap: normal;
    word-break: normal;
    white-space: normal;
  }
}

table.tablepress th {
  border: 1px solid #e1c7b3;
  background-color: #f2e0d2;
  padding: 1em;
}

table.tablepress th:first-child {
  border-left: none;
}

table.tablepress td {
  border: 1px solid #e1c7b3;
  background-color: #ffffff;
  padding: 1em;
}

table.tablepress td:first-child {
  border-left: none;
}

table.tablepress thead th {
  border-bottom: 1px solid #e1c7b3;
}

table.tablepress .odd td {
  background-color: #fdf7f2;
}

table.tablepress.vertical-middle tbody th, table.tablepress.vertical-middle tbody td {
  vertical-align: middle;
}

table.tablepress.align-center th,
table.tablepress.align-center td {
  text-align: center;
}

.dataTables_wrapper {
  max-width: 100%;
  overflow-x: scroll;
}

@media screen and (min-width: 768px) {
  .dataTables_wrapper {
    overflow-x: visible;
    width: 100%;
  }
}

.dataTables_wrapper table.tablepress {
  width: auto;
  word-wrap: none;
  word-break: keep-all;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .dataTables_wrapper table.tablepress {
    width: 100%;
    word-wrap: normal;
    word-break: normal;
    white-space: normal;
  }
}

/*
TablePress Plugin Custom Styles
*/
.apply-info {
  background-color: #F2E1D2;
  padding: 30px;
}

.apply-info > *:last-child {
  margin-bottom: 0;
}

.apply-info__title {
  font-size: 24px;
  margin-bottom: 1em;
}

@media screen and (min-width: 768px) {
  .apply-info__title {
    text-align: center;
  }
}

.apply-section {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .apply-section {
    margin-top: 80px;
  }
}

.apply-flow {
  list-style: none;
}

.apply-flow__item {
  counter-increment: flownum;
  position: relative;
  background-color: #ffffff;
  padding: 30px;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .apply-flow__item {
    padding: 30px 60px;
  }
}

.apply-flow__item::before {
  content: "0" counter(flownum);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 40px;
  color: #feaf16;
  position: absolute;
  top: 0;
  left: 10px;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
}

.apply-flow__item:not(:last-child) {
  margin-bottom: 40px;
}

.apply-flow__item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-width: 15px 15px 0 15px;
  border-color: #feaf16 transparent transparent transparent;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}

.apply-flow__item:nth-child(n + 10)::before {
  content: counter(flownum);
}

.apply-flow__item-inner {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .apply-flow__item-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.apply-flow__icon {
  width: 150px;
  height: 150px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin-bottom: 28px;
}

.apply-flow__content {
  width: 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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .apply-flow__content {
    padding-top: 10px;
    margin-left: 30px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: block;
  }
}

.apply-flow__content > *:last-child {
  margin-bottom: 0;
}

.apply-flow__date {
  border: 1px solid #C8AE9B;
  padding: 0.75em 1em;
  display: inline-block;
}

.apply-flow__link {
  width: 100%;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .apply-flow__link {
    width: auto;
    min-width: 210px;
  }
}

.apply-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 768px) {
  .apply-btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.apply-btns .btn {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .apply-btns .btn {
    width: auto;
    min-width: 210px;
    margin-left: 10px;
    margin-right: 10px;
  }
}

/*
overview content styles
*/
.overview-section {
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 2px dotted #c8ae9b;
}

@media screen and (min-width: 768px) {
  .overview-section {
    margin-top: 80px;
    padding-bottom: 80px;
  }
}

.overview-section__title {
  font-size: 24px;
  margin-bottom: 1.75em;
}

@media screen and (min-width: 768px) {
  .overview-section__title {
    margin-top: 32px;
  }
}

.overview-section__title--centered {
  text-align: center;
  position: relative;
  padding-bottom: 0.75em;
}

.overview-section__title--centered::after {
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  background-color: #ffb018;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.overview-section .panel-horizontal-overview .panel-item {
  border-top: none;
  padding-top: 0;
  overflow: visible;
}

.overview-section .panel-horizontal-overview .panel-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.overview-section__link {
  margin-top: 20px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .overview-section__link {
    margin-top: 40px;
  }
}

.overview-section__link .btn {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .overview-section__link .btn {
    width: auto;
    min-width: 50%;
    font-size: 20px;
  }
}

.top-whatsnew {
  background: url(../../../images/partners/bg-hero-overlay.png) repeat-x 0 100%;
  padding-top: 40px;
  padding-bottom: 20px;
}

.top-whatsnew-heading {
  text-align: center;
  font-size: 28px;
  font-family: 'Lato', sans-serif;
  margin-bottom: 40px;
  background: url(../../../images/partners/heading-2022_1.png) no-repeat 50% 100%;
  background-size: 200px;
  padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .top-whatsnew-heading {
    font-size: 20px;
  }
}

.top-whatsnew-list {
  display: table;
  table-layout: fixed;
}

@media screen and (max-width: 767px) {
  .top-whatsnew-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.top-whatsnew-item {
  text-align: left;
  display: table-row-group;
}

@media screen and (max-width: 767px) {
  .top-whatsnew-item {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.3);
    display: block;
    width: 100%;
  }
  .top-whatsnew-item:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.top-whatsnew-item > * {
  display: table-cell;
  padding: 0.5em 0.6em;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .top-whatsnew-item > * {
    display: inline-block;
  }
}

.top-whatsnew-date {
  white-space: nowrap;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .top-whatsnew-date {
    padding: 0;
  }
}

.top-whatsnew-cat {
  font-size: 12px;
  padding: 0.2em 1em 0.1em;
  background: #f8a300;
  color: #fff;
  display: block;
  text-align: center;
  line-height: 1.25;
}

@media screen and (min-width: 768px) {
  .top-whatsnew-cat {
    white-space: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .top-whatsnew-item-heading {
    display: block;
    padding-right: 0;
    padding-left: 0;
  }
}

.top-whatsnew-title {
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .top-whatsnew-title {
    font-size: 16px;
    text-decoration: underline;
    -webkit-text-decoration-color: rgba(126, 83, 0, 0.7);
            text-decoration-color: rgba(126, 83, 0, 0.7);
    text-underline-offset: 0.2em;
  }
}

@media screen and (max-width: 767px) {
  .top-whatsnew-title a {
    display: block;
  }
}

.top-pickup {
  padding-top: 60px;
  padding-bottom: 20px;
}

.top-pickup-heading {
  text-align: center;
  font-size: 28px;
  font-family: 'Lato', sans-serif;
  margin-bottom: 40px;
  background: url(../../../images/partners/heading-2022.png) no-repeat 50% 100%;
  background-size: 200px;
  padding-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .top-pickup-heading {
    font-size: 20px;
  }
}

.top-pickup-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.top-pickup-item {
  background: #fff;
  display: block;
  width: calc(100% / 3 - 20px);
  margin: 0 10px 40px;
}

@media screen and (max-width: 767px) {
  .top-pickup-item {
    width: calc(100% / 2 - 20px);
  }
}

.top-pickup-item:hover img {
  opacity: 0.7;
}

.top-pickup-title {
  font-size: 18px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .top-pickup-title {
    font-size: 16px;
    margin: 10px 0 10px;
  }
}

.top-pickup-thumbnail {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  width: 100%;
}

.top-pickup-thumbnail img {
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .top-pickup-thumbnail img {
    width: 100%;
    height: 100%;
    min-width: auto;
    min-height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.top-pickup-summary {
  padding: 20px 20px 30px 20px;
}

@media screen and (max-width: 767px) {
  .top-pickup-summary {
    padding: 10px 10px 20px 10px;
  }
}

.top-pickup-date {
  margin-bottom: 0.5em;
  font-size: 13px;
}

.top-pickup-date .date {
  color: #ffb018;
}

.top-pickup-title {
  margin-bottom: 10px;
}

.top-pickup-cat {
  position: absolute;
  left: 0;
  top: 0;
  background: #ffb018;
  color: #fff;
  border-radius: 0;
  padding: 0.3em 1em 0.2em;
  font-size: 12px;
  z-index: 2;
}

.top-pickup-exerpt {
  font-size: 15px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
  .top-pickup-exerpt {
    font-size: 13px;
  }
}

.top-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-right: -10px;
  margin-left: -10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top-banner > a {
  padding: 10px;
  width: calc(100% / 3);
  display: block;
}

@media screen and (max-width: 767px) {
  .top-banner > a {
    width: 100%;
    text-align: center;
  }
}

.top-banner > a:hover {
  opacity: .7;
}

.event-list-wrapper {
  padding-top: 40px;
}

.event-list-wrapper > .isolate {
  padding-left: 0;
  padding-right: 0;
}

.event-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.event-item {
  background: #fff;
  display: block;
  width: calc(100% / 3 - 20px);
  margin: 0 10px 40px;
}

@media screen and (max-width: 767px) {
  .event-item {
    width: calc(100% / 2 - 20px);
  }
}

.event-item:hover img {
  opacity: 0.7;
}

.event-title {
  font-size: 18px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .event-title {
    font-size: 16px;
    margin: 10px 0 10px;
  }
}

.event-thumbnail {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
  width: 100%;
}

.event-thumbnail img {
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .event-thumbnail img {
    width: 100%;
    height: 100%;
    min-width: auto;
    min-height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.event-summary {
  padding: 20px 20px 30px 20px;
}

@media screen and (max-width: 767px) {
  .event-summary {
    padding: 10px 10px 20px 10px;
  }
}

.event-cat {
  position: absolute;
  left: 0;
  top: 0;
  background: #ffb018;
  color: #fff;
  border-radius: 0;
  padding: 0.3em 1em 0.2em;
  font-size: 12px;
  z-index: 2;
}

.event-person {
  margin: 0;
}

/*
TablePress Plugin Custom Styles
*/
.apply-info {
  background-color: #F2E1D2;
  padding: 30px;
}

.apply-info > *:last-child {
  margin-bottom: 0;
}

.apply-info__title {
  font-size: 24px;
  margin-bottom: 1em;
}

@media screen and (min-width: 768px) {
  .apply-info__title {
    text-align: center;
  }
}

.apply-section {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .apply-section {
    margin-top: 80px;
  }
}

.apply-flow {
  list-style: none;
}

.apply-flow__item {
  counter-increment: flownum;
  position: relative;
  background-color: #ffffff;
  padding: 30px;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .apply-flow__item {
    padding: 30px 60px;
  }
}

.apply-flow__item::before {
  content: "0" counter(flownum);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 40px;
  color: #feaf16;
  position: absolute;
  top: 0;
  left: 10px;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
}

.apply-flow__item:not(:last-child) {
  margin-bottom: 40px;
}

.apply-flow__item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-width: 15px 15px 0 15px;
  border-color: #feaf16 transparent transparent transparent;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}

.apply-flow__item:nth-child(n + 10)::before {
  content: counter(flownum);
}

.apply-flow__item-inner {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .apply-flow__item-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.apply-flow__icon {
  width: 150px;
  height: 150px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin-bottom: 28px;
}

.apply-flow__content {
  width: 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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .apply-flow__content {
    padding-top: 10px;
    margin-left: 30px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: block;
  }
}

.apply-flow__content > *:last-child {
  margin-bottom: 0;
}

.apply-flow__date {
  border: 1px solid #C8AE9B;
  padding: 0.75em 1em;
  display: inline-block;
}

.apply-flow__link {
  width: 100%;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .apply-flow__link {
    width: auto;
    min-width: 210px;
  }
}

.apply-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 768px) {
  .apply-btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.apply-btns .btn {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .apply-btns .btn {
    width: auto;
    min-width: 210px;
    margin-left: 10px;
    margin-right: 10px;
  }
}

.voice-tabs {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 0 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;
  border-bottom: 2px solid #ffb018;
}

@media screen and (max-width: 767px) {
  .voice-tabs {
    gap: 2vw;
    -ms-grid-columns: max-content max-content max-content max-content;
        grid-template-columns: -webkit-max-content -webkit-max-content -webkit-max-content -webkit-max-content;
        grid-template-columns: max-content max-content max-content max-content;
    font-size: 3.6vw;
    padding: 0;
  }
}

.voice-tab {
  background: #fff;
  border-radius: 5px 5px 0 0;
  border: 2px solid #ffb018;
  border-bottom: 0;
  padding: .7em 1em;
  position: relative;
  -webkit-transition: background linear .2s;
  transition: background linear .2s;
}

@media screen and (max-width: 767px) {
  .voice-tab {
    padding: 2.5vw 3.5vw;
  }
}

.voice-tab.active, .voice-tab:hover {
  background: url(../../../images/partners/bg-main-primary.png);
  color: #ee9d00;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.voice-heading {
  margin-bottom: 40px;
}

.voice-heading b {
  font-size: 1rem;
}

.voice-list-wrapper {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .voice-list-wrapper {
    padding-top: 40px;
  }
}

.voice-list-wrapper > .isolate {
  padding-left: 0;
  padding-right: 0;
}

.voice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.voice-item {
  background: #fff;
  position: relative;
  display: block;
  padding: 20px 20px 40px;
  width: calc(100% / 3 - 20px);
  margin: 0 10px 40px;
}

@media screen and (max-width: 767px) {
  .voice-item {
    padding: 10px 10px 30px;
    width: calc(100% - 20px);
  }
}

.voice-title {
  font-size: 18px;
  margin: 10px 0 20px;
}

@media screen and (max-width: 767px) {
  .voice-title {
    font-size: 16px;
    margin: 10px 0 10px;
  }
}

.voice-thumbnail-wrapper {
  position: relative;
  margin: -20px -20px 20px -20px;
  background-color: #ffb018;
  height: 0;
  padding-bottom: 60%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .voice-thumbnail-wrapper {
    margin: -10px -10px 10px -10px;
  }
}

.voice-thumbnail {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 0;
  padding-bottom: 60%;
  display: block;
  -webkit-transition: all linear .2s;
  transition: all linear .2s;
}

.voice-thumbnail:hover {
  opacity: .7;
}

.voice-thumbnail img {
  display: block;
  width: 100%;
}

.voice-cat {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.voice-cat-main {
  background: #ee9d00;
  color: #fff;
  border-radius: 0;
  padding: 0.3em 1em 0.2em;
  -webkit-transition: background linear .2s;
  transition: background linear .2s;
}

.voice-cat-main:hover {
  background: #d58c00;
  color: #fff;
}

.voice-cat-sub {
  background: #fff;
  color: #333;
  border-radius: 0;
  padding: 0.3em 1em 0.2em;
  -webkit-transition: background linear .2s;
  transition: background linear .2s;
}

.voice-cat-sub:hover {
  background: #ffd37e;
  color: #333;
}

.voice-date {
  color: #ffb018;
  font-size: 13px;
}

.voice-date .date {
  color: #ffb018;
}

.voice-person {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 20px;
}

@media screen and (max-width: 767px) {
  .voice-person {
    bottom: 10px;
  }
}

.voice-person dt {
  color: #765D9D;
}

.voice-person dd {
  padding-left: 0.5em;
}

/*
News Category Archive Additional Style
*/
.news-head-message {
  font-size: 1rem;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .news-head-message {
    text-align: center;
    margin-bottom: 40px;
  }
}

.list-nav-year--after {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .list-nav-year--after {
    margin-top: 40px;
  }
}

.list-horizontal-news .list-item.list-item-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .list-horizontal-news .list-item.list-item-flex {
    display: table-row-group;
  }
}

.list-horizontal-news .list-item.list-item-flex .list-time {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .list-horizontal-news .list-item.list-item-flex .list-time {
    float: none;
    width: auto;
    margin-top: 0;
    display: table-cell;
    padding: 20px 0.6em 20px 0;
    vertical-align: top;
    white-space: nowrap;
    border-bottom: 1px solid #c8ae9b;
  }
}

.list-horizontal-news .list-item.list-item-flex .list-category {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 0.6em;
}

@media screen and (min-width: 768px) {
  .list-horizontal-news .list-item.list-item-flex .list-category {
    display: table-cell;
    padding: 20px 0.6em;
    vertical-align: top;
    border-bottom: 1px solid #c8ae9b;
  }
}

.list-horizontal-news .list-item.list-item-flex .list-category .label {
  font-size: 12px;
  padding: 0.2em 1em 0.1em;
  background: #f8a300;
  color: #fff;
  display: block;
  text-align: center;
  line-height: 1.25;
}

@media screen and (min-width: 768px) {
  .list-horizontal-news .list-item.list-item-flex .list-category .label {
    white-space: nowrap;
  }
}

.list-horizontal-news .list-item.list-item-flex .list-category .label a {
  color: inherit;
}

@media screen and (min-width: 768px) {
  .list-horizontal-news .list-item.list-item-flex .list-title {
    display: table-cell;
    padding: 20px 0 20px 0.6em;
    vertical-align: top;
    border-bottom: 1px solid #c8ae9b;
  }
}

/*
FAQ content top page style
*/
.faq-cate-nav {
  margin-bottom: 40px !important;
}

.faq-cate-nav .menu-anchor-horizontal li {
  line-height: 1.85;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .faq-cate-nav .menu-anchor-horizontal li {
    width: auto;
  }
}

.faq-featured:first-child {
  margin-top: 20px;
}

.faq-featured:not(:last-child) {
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .faq-featured:not(:last-child) {
    margin-bottom: 80px;
  }
}

.faq-featured__title {
  position: relative;
  padding: 0 0 0 50px;
  margin-bottom: 20px;
}

.faq-featured__title-icon {
  margin: 0;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
}

.faq-featured__posts {
  list-style: none;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .faq-featured__posts {
    margin-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.faq-featured__post-item {
  padding-bottom: 20px;
}

.faq-featured__post-item .faq-content {
  margin-top: 0;
  margin-left: 52px;
}

.faq-featured__post-title {
  margin-bottom: 0;
}

.faq-featured__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}

.faq-featured__link .btn {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .faq-featured__link .btn {
    margin-top: 30px;
    width: auto;
    min-width: 210px;
  }
}

.faq-featured.faq-featured-apply {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .faq-featured.faq-featured-apply {
    margin-bottom: 40px;
  }
}

.faq-featured.faq-featured-apply .faq-featured__posts {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .faq-featured.faq-featured-apply .faq-featured__posts {
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 0;
  }
}

.faq-item {
  position: relative;
}

.faq-item .faq-item-anchor {
  display: block;
  width: 1px;
  height: 1px;
  position: absolute;
  top: -70px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .faq-item .faq-item-anchor {
    top: -80px;
  }
}
/*# sourceMappingURL=style.css.map */