@charset "UTF-8";
/***** Base *****/
* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: rgba(0, 0, 0, 1);
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo,
    sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin-top: 0;
}

h1 {
  font-size: 26px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
}

h4 {
  font-size: 16px;
}

a {
  color: rgba(79, 169, 203, 1);
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  text-decoration: underline;
}

input,
textarea {
  color: #000;
  font-size: 14px;
}

input {
  font-weight: 300;
  max-width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border 0.12s ease-in-out;
}

input:focus {
  border: 1px solid rgba(79, 169, 203, 1);
}

input[disabled] {
  background-color: #ddd;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(//theme.zdassets.com/theme_assets/9024935/27f536d448438fdd88b4004a3223bcc153fb621d.svg)
    no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}

select:focus {
  border: 1px solid rgba(79, 169, 203, 1);
}

select::-ms-expand {
  display: none;
}

textarea {
  border: 1px solid #ddd;
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}

textarea:focus {
  border: 1px solid rgba(79, 169, 203, 1);
}

.container {
  margin: 0 auto;
  padding: 0;
}

.container-divider {
  border-top: 1px solid #ddd;
}

.inner {
  padding: 0 5%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.error-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 5%;
}

.dropdown-toggle::after {
  color: inherit;
}

/***** Buttons *****/
.button,
[role="button"] {
  border: 1px solid rgba(79, 169, 203, 1);
  border-radius: 4px;
  color: rgba(79, 169, 203, 1);
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color 0.12s ease-in-out, border-color 0.12s ease-in-out,
    color 0.15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}

@media (min-width: 768px) {
  .button,
  [role="button"] {
    width: auto;
  }
}

.button::after,
[role="button"]::after {
  color: rgba(79, 169, 203, 1);
}

.button:hover,
.button:active,
.button:focus,
.button[aria-selected="true"],
[role="button"]:hover,
[role="button"]:active,
[role="button"]:focus,
[role="button"][aria-selected="true"] {
  background-color: rgba(79, 169, 203, 1);
  color: rgba(79, 169, 203, 1);
  text-decoration: none;
}

.button[aria-selected="true"]:hover,
.button[aria-selected="true"]:focus,
.button[aria-selected="true"]:active,
[role="button"][aria-selected="true"]:hover,
[role="button"][aria-selected="true"]:focus,
[role="button"][aria-selected="true"]:active {
  background-color: #400;
  border-color: #400;
}

.button[data-disabled],
[role="button"][data-disabled] {
  cursor: default;
}

.button-large,
input[type="submit"] {
  background-color: rgba(79, 169, 203, 1);
  border: 0;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.72;
  min-width: 190px;
  padding: 0 1.9286em;
  width: 100%;
}

@media (min-width: 768px) {
  .button-large,
  input[type="submit"] {
    width: auto;
  }
}

.button-large:hover,
.button-large:active,
.button-large:focus,
input[type="submit"]:hover,
input[type="submit"]:active,
input[type="submit"]:focus {
  background-color: #400;
}

.button-large[disabled],
input[type="submit"][disabled] {
  background-color: #ddd;
}

.button-secondary {
  color: #333;
  border: 1px solid #ddd;
  background-color: transparent;
}

.button-secondary:hover,
.button-secondary:focus,
.button-secondary:active {
  color: rgba(0, 0, 0, 1);
  border: 1px solid #ddd;
  background-color: #f7f7f7;
}

/***** Tables *****/
.table {
  width: 100%;
  table-layout: fixed;
}

@media (min-width: 768px) {
  .table {
    table-layout: auto;
  }
}

.table th,
.table th a {
  color: #333;
  font-size: 13px;
  font-weight: 300;
  text-align: left;
}

[dir="rtl"] .table th,
[dir="rtl"] .table th a {
  text-align: right;
}

.table tr {
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .table tr {
    display: table-row;
  }
}

.table td {
  display: block;
}

@media (min-width: 768px) {
  .table td {
    display: table-cell;
  }
}

@media (min-width: 1024px) {
  .table td,
  .table th {
    padding: 20px 30px;
  }
}

@media (min-width: 768px) {
  .table td,
  .table th {
    padding: 10px 20px;
    height: 60px;
  }
}

/***** Forms *****/
.form {
  max-width: 650px;
  margin-bottom: 30px;
}

.form-field ~ .form-field {
  margin-top: 25px;
}

.form-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}

.form-field input {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}

.form-field input:focus {
  border: 1px solid rgba(79, 169, 203, 1);
}

.form-field input[type="text"] {
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-field input[type="text"]:focus {
  border: 1px solid rgba(79, 169, 203, 1);
}

.form-field input[type="checkbox"] {
  width: auto;
}

.form-field .nesty-input {
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  outline: none;
  vertical-align: middle;
}

.form-field .nesty-input:focus {
  border: 1px solid rgba(79, 169, 203, 1);
  text-decoration: none;
}

.form-field textarea {
  vertical-align: middle;
}

.form-field input[type="checkbox"] + label {
  margin: 0 0 0 10px;
}

.form-field.required > label::after {
  content: "*";
  color: #f00;
  margin-left: 2px;
}

.form-field p {
  color: #333;
  font-size: 12px;
  margin: 5px 0;
}

[data-loading="true"] input,
[data-loading="true"] textarea {
  background: transparent
    url(//theme.zdassets.com/theme_assets/9024935/6aae8ce36967837f706ac36deff4b753e43977a4.gif)
    99% 50% no-repeat;
  background-size: 16px 16px;
}

.form footer {
  margin-top: 40px;
  padding-top: 30px;
}

.form footer a {
  color: #333;
  cursor: pointer;
  margin-right: 15px;
}

.form .suggestion-list {
  font-size: 13px;
  margin-top: 30px;
}

.form .suggestion-list label {
  border-bottom: 1px solid #ddd;
  display: block;
  padding-bottom: 5px;
}

.form .suggestion-list li {
  padding: 10px 0;
}

.form .suggestion-list li a:visited {
  color: #400;
}

/***** Main *****/

main {
  padding-top: 142px;
}

/***** Header *****/
.header {
  position: fixed;
  height: 142px;
  margin: 0 auto;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.header-inner {
  display: flex;
  height: 71px;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

.header .logo {
  float: left;
}
.logo a {
  height: 37px;
  text-decoration: none;
}
.logo img {
  max-height: 37px;
  vertical-align: bottom;
  margin-right: 15px;
}
.logo h1 {
  display: inline-block;
  font-size: 15px;
  margin-bottom: 0px;
  color: #000;
  padding-left: 15px;
  border-left: 1px solid #000;
}

@media (max-width: 767px) {
  .header-inner {
    padding: 0 3%;
  }
  .header .logo {
    float: none;
  }
  .logo img {
    height: 27px;
  }
  .logo h1 {
    text-align: center;
    font-size: 13px;
    display: none;
  }
}
.user-nav {
  float: right;
  white-space: nowrap;
}

.user-nav[aria-expanded="true"] {
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15), 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 71px;
  z-index: 1;
}

.user-nav[aria-expanded="true"] p > a {
  display: block;
  margin: 20px;
  color: rgba(79, 169, 203, 1);
}

#user #user-dropdown {
  min-width: 0px;
}

.nav-wrapper a {
  display: none;
  font-size: 14px;
  padding: 0 20px 0 0;
  width: auto;
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 15px;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .nav-wrapper a {
    display: inline-block;
  }
}

[dir="rtl"] .nav-wrapper a {
  padding: 0 0 0 20px;
}

.nav-wrapper a:hover,
.nav-wrapper a:focus,
.nav-wrapper a:active {
  background-color: #fff;
  color: rgba(79, 169, 203, 1);
  text-decoration: none;
}

.nav-wrapper a.login {
  display: inline-block;
  color: #aa0000;
  font-size: 0;
}
.nav-wrapper a.login:before {
  font-size: 14px;
  content: "サインイン";
}

.nav-wrapper .icon-menu {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
}

@media (min-width: 768px) {
  .nav-wrapper .icon-menu {
    display: none;
  }
}

[dir="rtl"] .nav-wrapper .icon-menu {
  margin-left: 10px;
  margin-right: 0;
}

/***** User info in header *****/
.user-info {
  display: inline-block;
  padding: 10px;
}

.user-info .dropdown-toggle::after {
  display: none;
}

@media (min-width: 768px) {
  .user-info .dropdown-toggle::after {
    display: inline-block;
  }
}

.user-info > [role="button"] {
  border: 0;
  color: rgba(79, 169, 203, 1);
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > [role="button"]:hover {
  color: rgba(79, 169, 203, 1);
  background-color: transparent;
}

.user-info > [role="button"]::after {
  color: rgba(79, 169, 203, 1);
  padding-right: 15px;
}

[dir="rtl"] .user-info > [role="button"]::after {
  padding-left: 15px;
  padding-right: 0;
}

#user #user-name {
  display: none;
  font-size: 14px;
}

@media (min-width: 768px) {
  #user #user-name {
    display: inline-block;
  }
}

#user #user-name:hover {
  text-decoration: underline;
}

/***** User avatar *****/
.user-avatar {
  height: 20px;
  width: 20px;
  margin-right: 5px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.avatar {
  display: inline-block;
  position: relative;
}

.avatar img {
  height: 40px;
  width: 40px;
}

.avatar .icon-agent::before {
  background-color: rgba(79, 169, 203, 1);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  color: rgba(79, 169, 203, 1);
  content: "\1F464";
  font-size: 14px;
  height: 14px;
  line-height: 14px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 14px;
}

/***** Header contact-nav *****/

.header .contact-nav {
  background: #f8f8f8;
  height: 71px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-shadow: 0px 5px 5px -5px rgba(0, 0, 0, 0.5);
}
.header .contact-nav ul {
  display: flex;
  align-items: center;
  padding: 0 5% 0 0;
}
.header .contact-nav li a {
  display: block;
  padding: 10px;
  margin: 0 5px;
  border: 1px solid rgba(79, 169, 203, 1);
}
.header .contact-nav li a:hover {
  color: #fff;
  background: rgba(79, 169, 203, 1);
  text-decoration: none;
}
.header .contact-nav li.request a {
  color: #fff;
  background: rgba(79, 169, 203, 1);
}
.header .contact-nav li.request a:hover {
  color: rgba(79, 169, 203, 1);
  background: #fff;
}
.header .contact-nav li:first-child a {
  margin-right: 12px;
}
/* ▼ここから特設ボタン向けの設定追加▼ */
.header .contact-nav ul.award-box {
  padding-right: 0;
}
.header .contact-nav li.award a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  background: #eee9cd; /*ボタン色*/
  color: black; /*文字色*/
  font-weight: bold; /*太字*/
}
.header .contact-nav li.award a:hover {
  background: #b09e3b; /*ボタン色*/
}
.header .contact-nav li.award a:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  border: 1px solid #b09e3b;
}
.header .contact-nav li.award a:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -12px;
  width: 12px;
  height: 10px;
  background: #f8f8f8; /*光沢の色は背景色*/
  filter: blur(2px); /*ぼかし*/
  animation: 3s arround-circle linear infinite; /*枠線場を周るアニメーション*/
}
@keyframes arround-circle {
  /**************
  0%~40%：左上から右上
  40%~50%：右上から右下
  50%~90%：右下から左下
  90%~100%：左下から左上
  **************/
  0% {
    top: -10px;
    left: -12px;
  }
  40% {
    top: -10px;
    left: 100%; /*右まで移動*/
  }
  50% {
    top: 100%; /*下まで移動*/
    left: 100%;
  }
  90% {
    top: 100%;
    left: -12px; /*左まで移動*/
  }
  100% {
    top: -10px; /*元の位置*/
    left: -12px;
  }
}

@media (max-width: 767px) {
  .header .contact-nav {
    justify-content: center;
    /*↓特設ボタン表示時：100px、非表示時：71px*/
    height: 71px;
    flex-direction: column;
  }
  .header .contact-nav ul {
    padding: 0 3%;
    justify-content: space-between;
  }
  .header .contact-nav li {
    font-size: 14px;
  }
  /* ▼ここから特設ボタン向けの追加設定▼ */
  .header .contact-nav ul.contact-nav-box {
    order: 1;
    margin: 10px 0px 2px;
    padding: 0;
  }
  .header .contact-nav ul.award-box {
    justify-content: center;
    order: 2;
    margin: 10px 0;
    padding: 0;
  }
  .header .contact-nav ul.contact-nav-box {
    order: 1;
  }
  .header .contact-nav li a {
    padding: 5px 10px;
    border: 1px solid rgba(79, 169, 203, 1);
  }
  .header .contact-nav li.award a {
    padding: 5px 10px;
  }
}

/***** Footer *****/
.footer {
  padding: 30px 0;
  margin-top: 30px;
}
.homepage .footer {
  margin-top: 0;
}
.footer a {
  color: #333;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  justify-content: space-between;
  text-align: center;
}

@media (min-width: 1160px) {
  .footer-inner {
    padding: 0;
    width: 90%;
  }
}

.footer-language-selector {
  color: #333;
  display: inline-block;
  font-weight: 300;
}

/***** Breadcrumbs *****/
.breadcrumbs {
  padding: 0;
}

.breadcrumbs li {
  color: #333;
  display: inline;
  font-weight: 400;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li + li::before {
  content: ">";
  margin: 0 4px;
}

.breadcrumbs li a {
  color: #888;
}

/***** Search field *****/
.search {
  position: relative;
  float: right;
}

.search input[type="search"] {
  border: 1px solid #ddd;
  border-radius: 30px;
  box-sizing: border-box;
  color: #999;
  height: 50px;
  padding: 0 40px;
  -webkit-appearance: none;
  width: 130px;
}
@media (min-width: 768px) {
  .search input[type="search"] {
    padding: 25px 50px;
    width: 100%;
  }
  .search input[type="search"]::before {
    content: none;
  }
}

[dir="rtl"] .search input[type="search"] {
  padding-right: 40px;
  padding-left: 20px;
}

.search input[type="search"]:focus {
  border: 1px solid #ccc;
  color: #555;
}

.search::before {
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #ddd;
  content: "\1F50D";
  font-size: 18px;
  position: absolute;
  left: 15px;
}

[dir="rtl"] .search::before {
  right: 15px;
  left: auto;
}

/***** Hero component *****/
.hero {
  background: #eee;
  background-position: center;
  background-size: cover;
  height: auto;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
}

.hero-inner {
  max-width: 610px;
  margin: 0 auto;
}

.hero-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.page-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0;
}

@media (min-width: 768px) {
  .page-header {
    align-items: baseline;
    flex-direction: row;
    margin: 0;
  }
}

.page-header .section-subscribe {
  flex-shrink: 0;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .page-header .section-subscribe {
    margin-bottom: 0;
  }
}

.page-header h1,
.article-header h1 {
  margin-bottom: 15px;
}

.page-header-description {
  font-weight: 400;
  margin: 0 0 30px 0;
  word-break: break-word;
}

@media (min-width: 1024px) {
  .page-header-description {
    flex-basis: 100%;
  }
}

.page-header .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.sub-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 10px 5%;
  background: #eee;
}

@media (min-width: 768px) {
  .sub-nav {
    align-items: baseline;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .sub-nav input[type="search"] {
    min-width: 300px;
  }
}

.sub-nav input[type="search"]::after {
  font-size: 15px;
}

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */
.blocks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .blocks-list {
    margin: 0 -15px;
  }
}

.blocks-item {
  border-radius: 4px;
  box-sizing: border-box;
  color: rgba(79, 169, 203, 1);
  margin: 0 3% 30px 0;
  max-width: 100%;
  text-align: center;
  background: #fff;
  width: 30%;
  flex: auto;
}

@media (min-width: 768px) {
  .blocks-item {
    margin: 0 1% 30px;
  }
}
@media (max-width: 767px) {
  .blocks-item {
    display: block;
    width: 100%;
    flex: none;
  }
}

.blocks-item:hover,
.blocks-item:focus,
.blocks-item:active {
  text-decoration: none;
}

.blocks-item-internal {
  background-color: transparent;
  border: 1px solid #ddd;
}

.blocks-item-internal .icon-lock::before {
  content: "\1F512";
  font-size: 15px;
  bottom: 5px;
  position: relative;
}

.blocks-item-internal a {
  color: rgba(0, 0, 0, 1);
}

.blocks-item-link {
  color: rgba(79, 169, 203, 1);
  padding: 30px 20px;
  display: block;
}

.blocks-item-link:hover,
.blocks-item-link:focus,
.blocks-item-link:active {
  text-decoration: none;
  opacity: 0.8;
}

.blocks-item-title {
  margin-bottom: 0;
  font-size: 20px;
}

.blocks-item-icon {
  max-height: 70px;
  margin-bottom: 5px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .blocks-item-link {
    padding: 25px 10px;
  }
  .blocks-item-icon {
    margin-left: 5px;
  }
}

.blocks-item-description {
  font-weight: 400;
  margin: 0;
  font-size: 12px;
  color: #000;
}

.blocks-item-description:not(:empty) {
  margin: 5px 0;
}

.blocks-item-section {
  padding: 0 20px;
}
.blocks-item-section-title {
  text-align: left;
  font-weight: 400;
  margin: 0;
  font-size: 14px;
  color: #000;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
  text-decoration: none;
}
.blocks-item-section-title:last-child {
  margin-bottom: 0;
}
.blocks-item-section-title a {
  color: rgba(0, 0, 0, 1);
  display: block;
}
.blocks-item-section-title a::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -6px;
  transform: rotate(45deg);
}

.blocks-item-link-btn {
  font-size: 12px;
  padding: 15px 20px;
  display: block;
  text-align: right;
}
.blocks-item-link-btn .arrow {
  width: 0;
  height: 0;
  border-left: 4px solid #aa0000;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-right: 5px;
  display: inline-block;
}
/** signin **/

.blocks-item.signin {
  flex: none;
  width: 60%;
  margin: auto;
}
.blocks-item.signin .blocks-item-icon {
  height: 120px;
  max-height: unset;
}
@media (max-width: 767px) {
  .blocks-item.signin {
    width: 100%;
  }
  .blocks-item.signin .blocks-item-icon {
    height: 80px;
  }
}

/***** Homepage *****/

.homepage .inner {
  max-width: 1400px;
  margin: 0 auto;
}
.categories {
  background: url(//theme.zdassets.com/theme_assets/9024935/916864a041af5878c7ab62658d103121dedb1ace.jpg)
    no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.articles {
  padding: 60px 0;
}
.homepage h1 {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}
.homepage h2 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #999;
}
.homepage h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 25px;
  color: #555;
}
.homepage h3 img {
  width: 25px;
  vertical-align: bottom;
  margin-right: 5px;
}
.homepage .submit-a-request {
  padding: 0;
  display: inline-block;
}

@media (min-width: 768px) {
  .homepage h2 {
    font-size: 25px;
  }
  .homepage h3 {
    font-size: 28px;
  }
  .homepage h3 img {
    width: 38px;
  }
}
.homepage .contact {
  padding: 50px 0;
  background: #f8f8f8;
}
.homepage .contact .inner {
  text-align: center;
}
.homepage .contact h3 {
  font-size: 18px;
  display: inline-block;
  margin: 25px 0;
  font-weight: 600;
}
@media (min-width: 768px) {
  .homepage .contact h3 {
    margin: 15px 25px 25px;
  }
}

.homepage .feature {
  padding: 60px 0;
}
.homepage .feature-item {
  width: 48%;
  margin: auto;
  display: flex;
  justify-content: center;
}
.homepage .feature-item h4 {
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 15px;
}

.homepage .feature-item .img {
  margin: 0 15px 0 0;
}
.homepage .feature-item .img img {
  width: 110px;
}
.homepage .feature-item .link {
  color: rgba(79, 169, 203, 1);
  font-size: 12px;
}
.homepage .feature-item .link::before {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6.9px;
  border-color: transparent transparent transparent #aa0000;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .homepage .feature-item {
    width: 100%;
  }
  .homepage .feature-item h4 {
    font-size: 20px;
  }
}
.homepage .search-box {
  padding: 60px 0;
}
.homepage .search-box .search {
  width: 100%;
  margin: auto;
  float: none;
}
.homepage .search-box .search input[type="search"] {
  width: 100%;
}
@media (min-width: 768px) {
  .homepage .search-box .search {
    width: 60%;
  }
}

/***** CONTACT-BTN *****/
.submit-a-request a {
  background: rgba(79, 169, 203, 1);
  border: 1px solid #aa0000;
  color: #fff;
  padding: 15px 0;
  display: block;
  text-align: center;
  font-size: 16px;
  margin: auto;
}
.submit-a-request a:hover {
  background: #fff;
  text-decoration: none;
  color: #aa0000;
}
.homepage .submit-a-request a {
  padding: 10px 25px;
}
@media (min-width: 768px) {
  .section .submit-a-request a {
    max-width: 30%;
  }
}

/***** Promoted articles *****/

.promoted-articles {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .promoted-articles {
    margin: 0 -15px;
    justify-content: center;
    flex-direction: row;
  }
}

.promoted-articles-item {
  flex: 1 0 auto;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0 0 15px;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
}

@media (min-width: 768px) {
  .promoted-articles-item {
    margin: 0 10px 15px;
  }
}

@media (min-width: 1024px) {
  .promoted-articles-item {
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    text-align: center;
    /* Three columns on desktop */
  }
  [dir="rtl"] .promoted-articles-item {
    padding: 0 0 0 30px;
  }
}

.promoted-articles-item:nth-child(3n) {
  /*padding-right: 0;
    margin-right: 0;*/
}

.promoted-articles-item a {
  /*border-bottom: 1px solid #ddd;*/
  color: #333333;
  display: block;
  padding: 15px;
  height: 100%;
  position: relative;
  border-radius: 3px;
}
.promoted-articles-item a:hover {
  background: #eee;
  text-decoration: none;
}

.application .promoted-articles-item {
  width: 100%;
  border: 2px solid #aa0000;
}
.application .promoted-articles-item a {
  padding: 30px;
  font-size: 18px;
  color: #aa0000;
}
.application .promoted-articles-item a:hover {
  color: #fff;
  background: #aa0000;
}

@media (min-width: 1024px) {
  .application .promoted-articles-item {
    width: 50%;
    flex: 1;
  }
  .application .promoted-articles-item a {
    font-size: 24px;
  }
}
/***** NEWS articles *****/
.news {
  padding: 40px 0 30px;
  background: #f8f8f8;
  font-size: 14px;
}
.news h4 {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 28px;
  display: inline-block;
  margin-right: 15px;
  vertical-align: top;
}
.news-item {
  padding-bottom: 10px;
}
.news-item:last-child {
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  .news {
    width: 100%;
    margin: auto;
    font-size: 14px;
  }
  .news-articles-item {
    width: 100%;
  }
}
.news-articles-item {
  margin: 10px 0 20px;
}
.news-articles-item a {
  color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px) {
  .news-articles-item a {
    display: block;
    margin-top: 10px;
  }
}
.news-articles-item span {
  font-size: 10px;
  display: inline-block;
  border: 1px solid rgba(79, 169, 203, 1);
  color: rgba(79, 169, 203, 1);
  padding: 3px 5px;
  margin-right: 10px;
  font-weight: 500;
}
.news-articles-item .metadata {
  margin-right: 10px;
}
.news-more-link {
  text-align: right;
  font-size: 12px;
  display: inline-block;
}
.news-more-link::before {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6.9px;
  border-color: transparent transparent transparent #aa0000;
  margin-right: 5px;
}

/***** Community section in homepage *****/
.community {
  text-align: center;
}

.community-image {
  min-height: 300px;
  background-image: url(//theme.zdassets.com/theme_assets/9024935/e58c5e8c3ebf94cbbc4d3669def0adbd7d0ff479.svg);
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
}

.community,
.activity {
  border-top: 1px solid #ddd;
  padding: 30px 0;
}

/***** Recent activity *****/
.recent-activity-header {
  margin-bottom: 10px;
  text-align: center;
}

.recent-activity-list {
  padding: 0;
}

.recent-activity-item {
  border-bottom: 1px solid #ddd;
  overflow: auto;
  padding: 20px 0;
}

.recent-activity-item-parent {
  font-size: 16px;
}

.recent-activity-item-parent,
.recent-activity-item-link {
  margin: 6px 0;
  color: rgba(0, 0, 0, 1);
  display: inline-block;
  width: 100%;
}

@media (min-width: 768px) {
  .recent-activity-item-parent,
  .recent-activity-item-link {
    width: 70%;
    margin: 0;
  }
}

.recent-activity-item-link {
  font-size: 14px;
  font-weight: 300;
}

.recent-activity-item-meta {
  margin: 15px 0 0 0;
  float: none;
}

@media (min-width: 768px) {
  .recent-activity-item-meta {
    margin: 0;
    float: right;
  }
  [dir="rtl"] .recent-activity-item-meta {
    float: left;
  }
}

.recent-activity-item-time,
.recent-activity-item-comment {
  color: #333;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
}

.recent-activity-item-comment {
  padding-left: 5px;
}

[dir="rtl"] .recent-activity-item-comment {
  padding: 0 5px 0 0;
}

.recent-activity-item-comment::before {
  display: inline-block;
}

.recent-activity-item-comment span::before {
  color: rgba(79, 169, 203, 1);
  content: "\1F4AC";
  display: inline-block;
  font-size: 15px;
  padding-right: 3px;
  vertical-align: middle;
}

[dir="rtl"] .recent-activity-item-comment span::before {
  padding-left: 3px;
}

.recent-activity-controls {
  padding-top: 15px;
}

/***** Category pages *****/
.category-container {
  display: flex;
  justify-content: flex-end;
}

.category-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .category-content {
    flex: 1;
  }
}

.section-tree {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .section-tree {
    flex-direction: row;
  }
}

.section-tree .section {
  flex: initial;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .section-tree .section {
    flex: 0 0 45%;
    /* Two columns for tablet and desktop. Leaving 5% separation between columns */
  }
}

.section-tree .icon-lock::before {
  vertical-align: baseline;
}

.section-tree-title {
  margin-bottom: 10px;
}

.section-tree-title a {
  color: rgba(0, 0, 0, 1);
}

.section-tree .see-all-articles {
  display: block;
  padding: 15px 0;
}

.article-list-item {
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  padding: 15px 0 15px 16px;
  position: relative;
}

.article-list-item::before {
  content: "";
  left: 3px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #aa0000;
  border-right: 2px solid #aa0000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  vertical-align: middle;
}

.article-list-item a {
  color: rgba(0, 0, 0, 1);
}

.icon-star::before {
  color: rgba(79, 169, 203, 1);
  font-size: 18px;
}

/***** Section pages *****/
.section-container {
  display: flex;
  justify-content: flex-end;
}

.section-content {
  flex: 1;
}

.section-subscribe .dropdown-toggle::after {
  display: none;
}

/***** Article *****/
.article {
  /*
  * The article grid is defined this way to optimize readability:
  * Sidebar | Content | Free space
  * 17%     | 66%     | 17%
  */
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .article {
    flex: 1 0 66%;
    max-width: 100%;
    min-width: 640px;
  }
}

.article-container {
  display: flex;
  flex-direction: column;
  padding: 0;
}

@media (min-width: 1024px) {
  .article-container {
    flex-direction: row;
  }
}

.article-header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .article-header {
    margin-top: 0;
  }
}

.article-author {
  margin-bottom: 10px;
}

.article-title .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.article [role="button"] {
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari (https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored)*/
  width: 100%;
}

@media (min-width: 768px) {
  .article [role="button"] {
    width: auto;
  }
}

.article-info {
  max-width: 100%;
}

.article-meta {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.article-body img {
  height: auto;
  max-width: 100%;
}

.article-body ul,
.article-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .article-body ul,
[dir="rtl"] .article-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.article-body ul > ul,
.article-body ol > ol,
.article-body ol > ul,
.article-body ul > ol,
.article-body li > ul,
.article-body li > ol {
  margin: 0;
}

.article-body ul {
  list-style-type: disc;
}

.article-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.article-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.article-body blockquote {
  border-left: 1px solid #ddd;
  color: #333;
  font-style: italic;
  padding: 0 15px;
}

.article-body > p:last-child {
  margin-bottom: 0;
}

.article-body table {
  width: auto !important;
}

.article-body table,
.article-body th,
.article-body td {
  border-collapse: collapse;
  border: 1px solid #ddd;
}

@media (max-width: 767px) {
  .article-body table {
    width: 100% !important;
  }
}
.article-body td {
  padding: 10px;
}

.article-content {
  line-height: 1.6;
  margin: 40px 0;
  word-wrap: break-word;
}
.article-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.article-comment-count {
  color: #333;
  font-weight: 300;
}

.article-comment-count:hover {
  text-decoration: none;
}

.article-comment-count .icon-comments {
  color: rgba(79, 169, 203, 1);
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.article-sidebar {
  flex: 1;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .article-sidebar {
    border: 0;
    height: auto;
    min-width: 33%;
    padding: 0 0 0 30px;
  }
}

.article-relatives {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .article-relatives {
    flex-direction: row;
  }
}

.article-relatives > * {
  flex: 1 0 auto;
  margin-right: 0;
}

.article-relatives > *:last-child {
  margin: 0;
}

@media (min-width: 768px) {
  .article-relatives > * {
    margin-right: 20px;
  }
}

.article-votes {
  border-top: 1px solid #ddd;
  padding: 30px 0;
  text-align: center;
  clear: both;
}

.article-vote {
  background: transparent;
  border: 1px solid rgba(79, 169, 203, 1);
  color: rgba(79, 169, 203, 1);
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
  border-radius: 20px;
}

.article-vote::before {
  font-size: 8px;
  margin-right: 10px;
}

[dir="rtl"] .article-vote::before {
  margin-right: 0;
  margin-left: 10px;
}

.article-vote::after {
  content: attr(title);
  /* Yes/No label*/
}

.article-vote:focus,
.article-vote:active {
  background-color: transparent;
  color: rgba(79, 169, 203, 1);
}

.article-vote:hover {
  background-color: rgba(79, 169, 203, 1);
}

.article-vote:hover::before,
.article-vote:hover::after,
.article-vote[aria-selected="true"]::before,
.article-vote[aria-selected="true"]::after {
  color: #fff;
}

.article-vote-up::before {
  content: "\2713";
}

.article-vote-down::before {
  content: "\2715";
}

.article-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}

.article-return-to-top {
  border-top: 1px solid #ddd;
}

@media (min-width: 1024px) {
  .article-return-to-top {
    display: none;
  }
}

.article-return-to-top a {
  color: rgba(0, 0, 0, 1);
  display: block;
  padding: 20px 0;
}

.article-return-to-top a:hover,
.article-return-to-top a:focus {
  text-decoration: none;
}

.article-return-to-top .icon-arrow-up::before {
  font-size: 16px;
  margin-left: 5px;
}

[dir="rtl"] .article-return-to-top .icon-arrow-up::before {
  margin-right: 10px;
}

.article-unsubscribe {
  background-color: rgba(79, 169, 203, 1);
  color: rgba(79, 169, 203, 1);
  text-decoration: none;
}

.article-unsubscribe:hover {
  background-color: #400;
  border-color: #400;
}

.sidenav-title {
  font-size: 15px;
  position: relative;
}

.sidenav-item {
  color: rgba(0, 0, 0, 1);
  display: block;
  font-weight: 300;
  padding: 10px 0;
}

.sidenav-item.current-article,
.sidenav-item:hover {
  color: rgba(79, 169, 203, 1);
  text-decoration: none;
  font-weight: bold;
}

.recent-articles h3,
.related-articles h3 {
  font-size: 15px;
  margin: 0 0 20px;
}

.recent-articles li,
.related-articles li {
  margin-bottom: 15px;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  margin-left: 20px;
  list-style: disc;
}
.recent-articles li:last-child,
.related-articles li:last-child {
  margin-bottom: 30px;
}
/***** Attachments *****/
/* Styles attachments inside posts, articles and comments */
.attachments .attachment-item {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.attachments .attachment-item:last-child {
  margin-bottom: 0;
}

.attachments .attachment-item::before {
  color: rgba(0, 0, 0, 1);
  content: "\1F4CE";
  font-size: 15px;
  left: 0;
  position: absolute;
  top: 5px;
}

[dir="rtl"] .attachments .attachment-item {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] .attachments .attachment-item::before {
  left: auto;
  right: 0;
}

.upload-dropzone span {
  color: #333;
}

/***** Actions *****/
/* Styles admin and en user actions(edit, delete, change status) in comments and posts */
.actions {
  text-align: center;
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari*/
}

.actions .dropdown-toggle {
  font-size: 0;
  margin: 15px 0;
}

.actions .dropdown-toggle:hover::before,
.actions .dropdown-toggle:focus::before,
.actions .dropdown-toggle:active::before {
  background-color: #f7f7f7;
}

.actions .dropdown-toggle::before {
  background-color: transparent;
  border-radius: 50%;
  color: #333;
  content: "\2699";
  display: block;
  font-size: 13px;
  margin: auto;
  padding: 5px;
}

/***** Striped list *****/
/* Used in community posts list and requests list */
.striped-list {
  padding: 0;
}

.striped-list-item {
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .striped-list-item {
    align-items: center;
    flex-direction: row;
  }
}

.striped-list-info {
  flex: 2;
}

.striped-list-title {
  color: rgba(79, 169, 203, 1);
  margin-bottom: 10px;
  margin-right: 5px;
}

.striped-list-title:hover,
.striped-list-title:focus,
.striped-list-title:active {
  text-decoration: underline;
}

.striped-list-title:visited {
  color: #400;
}

.striped-list .meta-group {
  margin: 5px 0;
}

.striped-list-count {
  color: #333;
  font-weight: 300;
  font-size: 13px;
  justify-content: flex-start;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .striped-list-count {
    display: flex;
    flex: 1;
    justify-content: space-around;
  }
}

.striped-list-count-item::after {
  content: "·";
  display: inline-block;
  padding: 0 5px;
}

@media (min-width: 768px) {
  .striped-list-count-item::after {
    display: none;
  }
}

.striped-list-count-item:last-child::after {
  display: none;
}

.striped-list-number {
  font-weight: 300;
  text-align: center;
}

@media (min-width: 768px) {
  .striped-list-number {
    color: rgba(0, 0, 0, 1);
    display: block;
    font-weight: 400;
  }
}

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
  background-color: #1eb848;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  margin-right: 2px;
  padding: 3px 10px;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
}

.status-label:hover,
.status-label:active,
.status-label:focus {
  text-decoration: none;
}

.status-label-pinned,
.status-label-featured,
.status-label-official {
  background-color: rgba(79, 169, 203, 1);
}

.status-label-official {
  border-radius: 0;
  margin-right: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .status-label-official {
    border-radius: 0 0 4px 4px;
    right: 30px;
    width: auto;
  }
}

[dir="rtl"] .status-label-official {
  left: 30px;
  right: auto;
}

.status-label-pending,
.status-label-not-planned {
  background-color: #eee;
  color: #333;
}

.status-label-pending {
  text-align: center;
}

.status-label-open {
  background-color: #e03b30;
}

.status-label-closed {
  background-color: #ddd;
}

.status-label-solved {
  background-color: #999;
}

.status-label-new {
  background-color: #ffd12a;
}

.status-label-hold {
  background-color: #000;
}

.status-label-open,
.status-label-closed,
.status-label-solved,
.status-label-new,
.status-label-hold,
.status-label-answered {
  text-transform: lowercase;
}

/* Navigation element that collapses on mobile */
.collapsible-nav {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex-direction: column;
  max-height: 45px;
  overflow: hidden;
  font-size: 14px;
}

@media (min-width: 768px) {
  .collapsible-nav {
    border: 0;
    height: auto;
    flex-direction: row;
    max-height: none;
  }
}

.collapsible-nav-list {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .collapsible-nav-list {
    flex-direction: row;
  }
}

.collapsible-nav-list li {
  color: rgba(0, 0, 0, 1);
  line-height: 45px;
  order: 1;
}

@media (min-width: 768px) {
  .collapsible-nav-list li {
    line-height: normal;
    margin-right: 30px;
  }
  [dir="rtl"] .collapsible-nav-list li {
    margin-left: 30px;
    margin-right: 0;
  }
  .collapsible-nav-list li a {
    text-decoration: none;
    padding: 15px 0;
  }
}

.collapsible-nav-list li a {
  color: rgba(0, 0, 0, 1);
  display: block;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    border-bottom: 4px solid #ddd;
  }
  .collapsible-nav-list li:hover a {
    padding: 15px 0 11px 0;
    text-decoration: none;
  }
}

.collapsible-nav-list li[aria-selected="true"] {
  order: 0;
  position: relative;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    border-bottom: 4px solid rgba(79, 169, 203, 1);
    order: 1;
    padding: 15px 0 11px 0;
  }
}

.collapsible-nav-list li[aria-selected="true"] a {
  color: rgba(0, 0, 0, 1);
}

.collapsible-nav-list li[aria-selected="true"]::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 0;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"]::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-nav-list li[aria-selected="true"]::after {
  left: 0;
  right: auto;
}

.collapsible-nav[aria-expanded="true"] {
  max-height: none;
}

.collapsible-nav[aria-expanded="true"] li[aria-selected="true"]::after {
  content: "\2715";
}

/* Sidebar navigation that collapses on mobile */
.collapsible-sidebar {
  flex: 1;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  .collapsible-sidebar {
    max-height: none;
  }
}

.collapsible-sidebar[aria-expanded="true"] {
  max-height: none;
}

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
  content: "\2715";
}

@media (min-width: 1024px) {
  .collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
    display: none;
  }
}

.collapsible-sidebar-title {
  margin-top: 0;
  margin-bottom: 10px;
}

.collapsible-sidebar-title::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 10px;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-title::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-sidebar-title::after {
  left: 10px;
  right: auto;
}

/***** My activities *****/
.my-activities-nav {
  background-color: #f2f2f2;
  border: 0;
  margin-bottom: 20px;
}

.my-activities-sub-nav {
  background-color: transparent;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .my-activities-sub-nav li:hover {
    border-bottom: 4px solid #ddd;
  }
}

.my-activities-sub-nav li[aria-selected="true"] {
  border-color: rgba(79, 169, 203, 1);
}

.my-activities-table .striped-list-title {
  /* My activities tables */
  display: block;
  margin-bottom: 10px;
  max-width: 350px;
  white-space: normal;
}

@media (min-width: 1024px) {
  .my-activities-table .striped-list-title {
    margin-bottom: 0;
    max-width: 500px;
    min-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.my-activities-table thead {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table thead {
    display: table-header-group;
  }
}

.my-activities-table th:first-child,
.my-activities-table td:first-child {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .my-activities-table th:first-child,
  .my-activities-table td:first-child {
    width: 500px;
  }
}

.my-activities-table th:last-child,
.my-activities-table td:last-child {
  padding-right: 0;
}

.my-activities-table td:not(:first-child) {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table td:not(:first-child) {
    display: table-cell;
  }
}

/* Requests table */
.requests-search {
  width: 100%;
}

.requests-table-toolbar {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .requests-table-toolbar {
    flex-direction: row;
  }
}

.requests-table-toolbar .search {
  flex: 1;
  width: 100%;
}

.requests-table-toolbar .request-table-filter {
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-table-filter {
    width: auto;
  }
}

.requests-table-toolbar .request-filter {
  display: block;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter {
    margin: 0 0 0 30px;
  }
  [dir="rtl"] .requests-table-toolbar .request-filter {
    margin: 0 30px 0 0;
  }
}

.requests-table-toolbar .request-filter-label {
  font-size: 13px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter-label {
    margin-top: 0;
  }
}

.requests-table-toolbar select {
  max-height: 40px;
  margin-bottom: 30px;
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar select {
    margin-bottom: 0;
    max-width: 300px;
    width: auto;
  }
}

.requests-table-toolbar .organization-subscribe,
.requests-table-toolbar .organization-unsubscribe {
  line-height: 40px;
  max-height: 40px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .organization-subscribe,
  .requests-table-toolbar .organization-unsubscribe {
    margin-left: 10px;
  }
  [dir="rtl"] .requests-table-toolbar .organization-subscribe,
  [dir="rtl"] .requests-table-toolbar .organization-unsubscribe {
    margin: 0 10px 0 0;
  }
}

.requests-table-toolbar .organization-unsubscribe {
  background-color: rgba(79, 169, 203, 1);
  color: rgba(79, 169, 203, 1);
}

.requests-table-toolbar + .requests-search-info {
  margin-top: 15px;
}

.requests-table-toolbar + .requests-search-info.meta-data::after {
  content: "";
  margin: 0;
}

.requests-table-toolbar + .requests-search-info + .requests {
  margin-top: 20px;
}

.requests-table-toolbar + .requests {
  margin-top: 40px;
}

.requests .requests-table-meta {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-meta {
    display: none;
  }
}

.requests .requests-table thead {
  display: none;
}

@media (min-width: 768px) {
  .requests .requests-table thead {
    display: table-header-group;
  }
}

.requests .requests-table-info {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-info {
    display: table-cell;
    vertical-align: middle;
    width: auto;
  }
}

.requests .requests-table .requests-link {
  position: relative;
}

.requests .requests-table .requests-sort-symbol {
  position: absolute;
  left: calc(100% + 3px);
  bottom: 0;
  font-size: 10px;
}

/* Following table */
.subscriptions-unsubscribe a {
  background: rgba(79, 169, 203, 1);
  border-radius: 4px;
  color: rgba(79, 169, 203, 1);
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .subscriptions-unsubscribe a {
    width: auto;
  }
}

.subscriptions-unsubscribe a:hover {
  background-color: #400;
  text-decoration: none;
}

.subscriptions-table td:last-child {
  display: block;
}

@media (min-width: 768px) {
  .subscriptions-table td:last-child {
    display: table-cell;
  }
}

.subscriptions-table td:first-child {
  display: flex;
  align-items: center;
}

.subscriptions-table .user-avatar {
  margin-right: 10px;
}

.subscriptions .striped-list-title {
  display: inline-block;
  vertical-align: middle;
}

/* Contributions table */
.contributions-table td:last-child {
  color: #333;
  font-size: 13px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .contributions-table td:last-child {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
  }
}

.no-activities {
  color: #333;
}

/***** Request *****/
.request-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .request-container {
    align-items: flex-start;
    flex-direction: row;
  }
}

.request-container .comment-container {
  min-width: 0;
}

.request-breadcrumbs {
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .request-breadcrumbs {
    margin-bottom: 60px;
  }
}

.request-main {
  flex: 1 0 auto;
  order: 1;
}

.request-main .comment-fields,
.request-main .request-submit-comment {
  display: none;
}

.request-main .comment-fields.shown {
  display: block;
}

.request-main .request-submit-comment.shown {
  display: inline;
}

@media (min-width: 1024px) {
  .request-main {
    flex: 0 0 66%;
    order: 0;
    min-width: 0;
  }
}

.request-main .comment-form-controls {
  display: block;
}

.request-main .comment-ccs {
  display: block;
}

.request-main .comment-show-container {
  border-radius: 2px;
  border: 1px solid #ddd;
  cursor: pointer;
  display: flex;
  padding: 8px 15px;
  width: 100%;
}

.request-main .comment-show-container.hidden {
  display: none;
}

.request-main .comment-show-container-content {
  align-self: center;
  color: #333;
  margin-left: 10px;
}

.request-main .form-field.comment-ccs > ul {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.request-main .form-field.comment-ccs > ul[data-hc-focus="true"] {
  border: 1px solid rgba(79, 169, 203, 1);
}

.request-main .form-field.comment-ccs > input[type="text"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.request-main .comment-ccs + textarea {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
}

.request-main .comment-ccs + textarea:focus {
  border-top: 1px solid rgba(79, 169, 203, 1);
}

.request-main input#mark_as_solved {
  display: none;
}

.request-title {
  width: 100%;
}

@media (min-width: 1024px) {
  .request-title {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
    max-width: 66%;
    padding-bottom: 20px;
  }
}

.request-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  order: 0;
}

@media (min-width: 1024px) {
  .request-sidebar {
    background-color: #f7f7f7;
    border: 0;
    font-size: 13px;
    flex: 0 0 auto;
    padding: 0 20px;
    width: 30%;
  }
}

.request-sidebar h5 {
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

@media (min-width: 1024px) {
  .request-sidebar h5 {
    display: none;
  }
}

.request-details {
  border-bottom: 1px solid #ddd;
  font-size: 0;
  margin: 0;
  padding-bottom: 20px;
}

.request-details:last-child {
  border: 0;
}

.request-details dt,
.request-details dd {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  margin: 20px 0 0 0;
}

.request-details dd {
  padding: 0 10px;
  width: 60%;
}

.request-details dd::after {
  content: "\A";
  white-space: pre;
}

.request-details dt {
  color: #333;
  font-weight: 300;
  width: 40%;
}

.request-details .request-collaborators {
  display: inline-block;
}

.request-attachments dt,
.request-attachments dd {
  width: 100%;
}

.request-attachments dd {
  margin: 10px 0 0 0;
}

.request-form textarea {
  min-height: 120px;
}

.request-follow-up {
  padding-top: 20px;
}

/***** Pagination *****/
.pagination {
  margin: 20px 0;
  text-align: center;
}

.pagination * {
  display: inline-block;
}

.pagination li {
  border-radius: 50%;
  height: 40px;
  float: left;
  margin-left: 5px;
  width: 40px;
}

@media (min-width: 768px) {
  .pagination li {
    height: 30px;
    width: 30px;
  }
}

[dir="rtl"] .pagination li {
  float: right;
}

.pagination li:hover:not(.pagination-current) {
  background-color: #f3f3f3;
}

.pagination li:hover:not(.pagination-current) span,
.pagination li:hover:not(.pagination-current) a {
  color: rgba(0, 0, 0, 1);
  text-decoration: none;
}

.pagination a,
.pagination span {
  font-size: 15px;
  color: #333;
  padding: 10px 12px;
}

@media (min-width: 768px) {
  .pagination a,
  .pagination span {
    font-size: 13px;
    padding: 5px 12px;
  }
}

.pagination-current {
  background-color: rgba(79, 169, 203, 1);
}

.pagination-current a,
.pagination-current span {
  color: #fff;
}

.pagination-first {
  border-radius: 3px 0 0 3px;
}

[dir="rtl"] .pagination-first {
  border-radius: 0 3px 3px 0;
}

.pagination-last {
  border-radius: 0 3px 3px 0;
}

[dir="rtl"] .pagination-last {
  border-radius: 3px 0 0 3px;
}

/***** Metadata *****/
.meta-group {
  display: block;
}

@media (min-width: 768px) {
  .meta-group * {
    display: inline;
  }
}

.meta-data {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  display: inline-block;
}
/*
.meta-data:not(:last-child)::after {
  content: "\00B7";
  margin: 0 5px;
}
*/

/***** Icons *****/
[class^="icon-"]::before,
[class*=" icon-"]::before,
.icon,
.search::before,
.recent-activity-item-comment span::before,
.article-vote::before,
.attachments .attachment-item::before,
.share a::before,
.vote-up::before,
.vote-down::before,
.actions .dropdown-toggle::before,
.collapsible-nav-list li[aria-selected="true"]::after,
.collapsible-sidebar-title::after,
.search-result-votes::before,
.search-result-meta-count::before {
  font-family: "copenhagen-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  line-height: 1em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

.icon-lock::before {
  content: "\1F512";
}

.icon-star::before {
  content: "\2605";
}

.icon-linkedin::before {
  content: "\e900";
}

.icon-twitter::before {
  content: "\e901";
}

.icon-googleplus-::before {
  content: "\e902";
}

.icon-facebook::before {
  content: "\e903";
}

.icon-agent::before {
  content: "\1F464";
}

.icon-close::before {
  content: "\2715";
}

.icon-arrow-up::before {
  content: "\2B06";
}

.icon-arrow-down::before {
  content: "\2B07";
}

.icon-attachments::before {
  content: "\1F4CE";
}

.icon-comments::before {
  content: "\1F4AC";
}

.icon-search::before {
  content: "\1F50D";
}

.icon-vote::before {
  content: "\1F44D";
}

.icon-handle::before {
  content: "\25BE";
}

.icon-check::before {
  content: "\2713";
}

.icon-gear::before {
  content: "\2699";
}

.icon-menu::before {
  content: "\2630";
}

.icon-article::before {
  content: "\1F4C4";
}

.icon-post::before {
  content: "\1F4D4";
}

.icon-notification-alert::before {
  content: "\26A0";
}

.icon-notification-error::before {
  content: "\00D7";
}

.icon-notification-info::before {
  content: "\2139";
}

.icon-notification-success::before {
  content: "\2714";
}

/* 記事内カテゴリ表記（パンくずを利用） */
.article .breadcrumbs li {
  font-size: 14px;
}
.article .breadcrumbs li:first-child,
.article .breadcrumbs li:nth-child(2):before,
.article .breadcrumbs li:nth-child(3),
.article .breadcrumbs li:nth-child(3):before {
  display: none;
}
/* API用 */
.api-doc .caption {
  margin: 3em 0 0.1em;
}

.newsletter {
  background-image: url(//theme.zdassets.com/theme_assets/9024935/8e9184a0c414436749b8ab5e26b6e95b657c0786.jpg);
  color: #ffffff;
  font-weight: normal;
  font-size: 7vw;
  text-align: center;
  margin: auto;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 80px 5%;
  margin-top: -20px;
}
@media (min-width: 767px) {
  .newsletter {
    font-size: 40px;
    margin-top: 0;
  }
}

.newsletter_waku {
  margin: 0 auto;
  width: 60%;
  text-align: center;
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
}
@media (max-width: 560px) {
  .newsletter_waku {
    width: 95%;
  }
}

.ctv_waku {
  margin: 0 auto;
  width: 80%;
  text-align: center;
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
}
@media (max-width: 560px) {
  .ctv_waku {
    width: 95%;
  }
}

.helpicon {
  float: none;
}

.helpbox {
  display: none;
  padding: 8px;
  border-radius: 5px;
  background-color: #f5f5dc;
}

.helpbox_disp {
  padding: 8px;
  border-radius: 5px;
  background-color: #f5f5dc;
}

.errorbox {
  display: none;
  padding: 8px;
  background-color: #ffe4e1;
  color: red;
}

.ase_newsletter_menu {
  position: fixed;
  bottom: 0px;
  right: 1%;
  width: 200px;
  margin: 5%;
  left: auto;
  text-align: center;
  padding: 1em;
  background: #fff;
  border-bottom: solid 4px #aa0000;
  border-right: solid 4px #aa0000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  font-size: small;
}

@media screen and (max-width: 560px) {
  .ase_newsletter_menu {
    display: none;
  }
}

/*TVerフォームのボタン*/
.button-tver {
  background-color: #40b8dc;
  border: 0;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.72;
  min-width: 190px;
  padding: 0 1.9286em;
  width: 100%;
  font-weight: bold;
}

@media (min-width: 768px) {
  .button-tver {
    width: auto;
  }
}

.button-tver:hover {
  background-color: #1c7d9a;
}
.button-tver:focus {
  border: 1px solid #1c7d9a;
}

/* 法人番号「なし」チェックボックス */
.checkbox-label {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  margin-left: 5px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
.checkbox-label::after {
  content: none !important;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  height: 14px;
  margin: 0 5px 0 0;
  cursor: pointer;
  vertical-align: middle;
}
.checkbox-label span {
  line-height: 1;
  vertical-align: middle;
}
