@charset "UTF-8";
/***** Normalize.css *****/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/***** Base *****/
* {
  box-sizing: border-box;
}

body {
  background-color: #FFFFFF;
  color: #333333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1024px) {
  body > main {
    min-height: 65vh;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  margin-top: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 22px;
}

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

h4 {
  font-size: 16px;
}

a {
  color: rgba(43, 129, 255, 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;
  transition: border .12s ease-in-out;
}

input:not([type="checkbox"]) {
  outline: none;
}

input:not([type="checkbox"]):focus {
  border: 1px solid rgba(111, 40, 194, 1);
}

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23CCC' d='M0 0h10L5 6 0 0z'/%3E%3C/svg%3E%0A") 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(111, 40, 194, 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(111, 40, 194, 1);
}

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

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

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

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

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

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

.visibility-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/***** Buttons *****/
.button, .section-subscribe button, .article-subscribe button, .community-follow button, .requests-table-toolbar .organization-subscribe button, .subscriptions-subscribe button, .pagination-next-link, .pagination-prev-link, .pagination-first-link, .pagination-last-link, .edit-profile-button a {
  background-color: transparent;
  border: 1px solid rgba(111, 40, 194, 1);
  border-radius: 4px;
  color: rgba(111, 40, 194, 1);
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color .12s ease-in-out, border-color .12s ease-in-out, color .15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}

@media (min-width: 768px) {
  .button, .section-subscribe button, .article-subscribe button, .community-follow button, .requests-table-toolbar .organization-subscribe button, .subscriptions-subscribe button, .pagination-next-link, .pagination-prev-link, .pagination-first-link, .pagination-last-link, .edit-profile-button a {
    width: auto;
  }
}

.button:hover, .section-subscribe button:hover, .article-subscribe button:hover, .community-follow button:hover, .requests-table-toolbar .organization-subscribe button:hover, .subscriptions-subscribe button:hover, .pagination-next-link:hover, .pagination-prev-link:hover, .pagination-first-link:hover, .pagination-last-link:hover, .edit-profile-button a:hover, .button:active, .section-subscribe button:active, .article-subscribe button:active, .community-follow button:active, .requests-table-toolbar .organization-subscribe button:active, .subscriptions-subscribe button:active, .pagination-next-link:active, .pagination-prev-link:active, .pagination-first-link:active, .pagination-last-link:active, .edit-profile-button a:active, .button:focus, .section-subscribe button:focus, .article-subscribe button:focus, .community-follow button:focus, .requests-table-toolbar .organization-subscribe button:focus, .subscriptions-subscribe button:focus, .pagination-next-link:focus, .pagination-prev-link:focus, .pagination-first-link:focus, .pagination-last-link:focus, .edit-profile-button a:focus, .button.button-primary, .section-subscribe button.button-primary, .section-subscribe button[data-selected="true"], .article-subscribe button.button-primary, .article-subscribe button[data-selected="true"], .community-follow button.button-primary, .requests-table-toolbar .organization-subscribe button.button-primary, .requests-table-toolbar .organization-subscribe button[data-selected="true"], .subscriptions-subscribe button.button-primary, .subscriptions-subscribe button[data-selected="true"], .button-primary.pagination-next-link, .button-primary.pagination-prev-link, .button-primary.pagination-first-link, .button-primary.pagination-last-link, .edit-profile-button a.button-primary {
  background-color: rgba(111, 40, 194, 1);
  color: #FFFFFF;
  text-decoration: none;
}

.button.button-primary:hover, .section-subscribe button.button-primary:hover, .section-subscribe button[data-selected="true"]:hover, .article-subscribe button.button-primary:hover, .article-subscribe button[data-selected="true"]:hover, .community-follow button.button-primary:hover, .requests-table-toolbar .organization-subscribe button.button-primary:hover, .requests-table-toolbar .organization-subscribe button[data-selected="true"]:hover, .subscriptions-subscribe button.button-primary:hover, .subscriptions-subscribe button[data-selected="true"]:hover, .button-primary.pagination-next-link:hover, .button-primary.pagination-prev-link:hover, .button-primary.pagination-first-link:hover, .button-primary.pagination-last-link:hover, .edit-profile-button a.button-primary:hover, .button.button-primary:focus, .section-subscribe button.button-primary:focus, .section-subscribe button[data-selected="true"]:focus, .article-subscribe button.button-primary:focus, .article-subscribe button[data-selected="true"]:focus, .community-follow button.button-primary:focus, .requests-table-toolbar .organization-subscribe button.button-primary:focus, .requests-table-toolbar .organization-subscribe button[data-selected="true"]:focus, .subscriptions-subscribe button.button-primary:focus, .subscriptions-subscribe button[data-selected="true"]:focus, .button-primary.pagination-next-link:focus, .button-primary.pagination-prev-link:focus, .button-primary.pagination-first-link:focus, .button-primary.pagination-last-link:focus, .edit-profile-button a.button-primary:focus, .button.button-primary:active, .section-subscribe button.button-primary:active, .section-subscribe button[data-selected="true"]:active, .article-subscribe button.button-primary:active, .article-subscribe button[data-selected="true"]:active, .community-follow button.button-primary:active, .requests-table-toolbar .organization-subscribe button.button-primary:active, .requests-table-toolbar .organization-subscribe button[data-selected="true"]:active, .subscriptions-subscribe button.button-primary:active, .subscriptions-subscribe button[data-selected="true"]:active, .button-primary.pagination-next-link:active, .button-primary.pagination-prev-link:active, .button-primary.pagination-first-link:active, .button-primary.pagination-last-link:active, .edit-profile-button a.button-primary:active {
  background-color: #3f176d;
  border-color: #3f176d;
}

.button[data-disabled], .section-subscribe button[data-disabled], .article-subscribe button[data-disabled], .community-follow button[data-disabled], .requests-table-toolbar .organization-subscribe button[data-disabled], .subscriptions-subscribe button[data-disabled], .pagination-next-link[data-disabled], .pagination-prev-link[data-disabled], .pagination-first-link[data-disabled], .pagination-last-link[data-disabled], .edit-profile-button a[data-disabled] {
  cursor: default;
}

.button-large, input[type="submit"] {
  cursor: pointer;
  background-color: rgba(111, 40, 194, 1);
  border: 0;
  border-radius: 4px;
  color: #FFFFFF;
  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: #3f176d;
}

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

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

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

/***** Tables *****/
.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  
}

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

.table th,
.table th a {
  color: #666;
  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;
}

.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(111, 40, 194, 1);
}

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

.form-field input[type="text"]:focus {
  border: 1px solid rgba(111, 40, 194, 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(111, 40, 194, 1);
  text-decoration: none;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid rgba(111, 40, 194, 1);
  text-decoration: none;
}

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

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

.form-field .optional {
  color: #666;
  margin-left: 4px;
}

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

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

.form footer a {
  color: #666;
  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: #0050c4;
}

/***** Header *****/
.header {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  align-items: center;
  display: flex;
  height: 65px;
  justify-content: space-between;
}

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

.logo img {
  max-height: 24px;
}
@media screen and (max-width: 480px){
  .logo img {
  max-height: 15px;
}
}

.user-nav {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .user-nav {
    position: relative;
  }
}

.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"] > a {
  display: block;
  margin: 20px;
}

.nav-wrapper a {
  border: 0;
  color: rgba(43, 129, 255, 1);
  display: none;
  font-size: 14px;
  padding: 0 20px 0 0;
  width: auto;
}

@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: transparent;
  color: rgba(43, 129, 255, 1);
  text-decoration: underline;
}

.nav-wrapper a.sign-in {
  display: inline-block;
}

@media (max-width: 768px) {
  .nav-wrapper .hide-on-mobile {
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
  }
}

.nav-wrapper .menu-button {
  background: none;
  border: 0;
  color: rgba(43, 129, 255, 1);
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  width: auto;
}

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

.nav-wrapper .menu-button .icon-menu {
  vertical-align: middle;
  width: 13px;
  height: 13px;
}

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

.nav-wrapper .menu-button:hover, .nav-wrapper .menu-button:focus, .nav-wrapper .menu-button:active {
  background-color: transparent;
  color: rgba(43, 129, 255, 1);
}

.skip-navigation {
  align-items: center;
  background-color: black;
  color: white;
  display: flex;
  font-size: 14px;
  justify-content: center;
  left: -999px;
  margin: 20px;
  padding: 20px;
  overflow: hidden;
  position: absolute;
  top: auto;
  z-index: -999;
}

[dir="rtl"] .skip-navigation {
  left: initial;
  right: -999px;
}

.skip-navigation:focus, .skip-navigation:active {
  left: auto;
  overflow: auto;
  text-align: center;
  text-decoration: none;
  top: auto;
  z-index: 999;
}

[dir="rtl"] .skip-navigation:focus, [dir="rtl"] .skip-navigation:active {
  left: initial;
  right: auto;
}

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

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

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

.user-info > button {
  border: 0;
  color: rgba(43, 129, 255, 1);
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > button:hover, .user-info > button:focus {
  color: rgba(43, 129, 255, 1);
  background-color: transparent;
}

.user-info > button::after {
  color: rgba(43, 129, 255, 1);
  padding-right: 15px;
}

[dir="rtl"] .user-info > 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: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

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

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

.avatar .icon-agent {
  color: rgba(111, 40, 194, 1);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  background-color: #FFFFFF;
  font-size: 17px;
  height: 17px;
  line-height: 17px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 17px;
}

/***** Footer *****/
.footer {
  border-top: 1px solid #ddd;
  margin-top: 60px;
  padding: 30px 0;
}

.footer a {
  color: #666;
}

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

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

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

/***** Breadcrumbs *****/
.breadcrumbs {
  margin: 0 0 15px 0;
  padding: 0;
}

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

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

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

.breadcrumbs li a:visited {
  color: rgba(43, 129, 255, 1);
}

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

.search input[type="search"] {
  border: 1px solid #ddd;
  border-radius: 30px;
  box-sizing: border-box;
  color: #666;
  height: 40px;
  padding-left: 40px;
  padding-right: 20px;
  -webkit-appearance: none;
  width: 100%;
}

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

.search input[type="search"]:focus {
  border: 1px solid rgba(111, 40, 194, 1);
  color: #555;
}

.hero-inner .search input[type="search"] {
  border: 1px solid #ddd;
  border-radius: 30px;
  box-sizing: border-box;
  color: #666;
  font-size: 13px;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-appearance: none;
  width: 75%;
  margin-right:15px;
}

@media screen and (max-width: 480px){
  .hero-inner .search input[type="search"] {
    font-size: 11px;
    margin-right:45px;
  }
}

.hero-inner .search input[type="search"]:focus {
  border: 1px solid rgba(111, 40, 194, 1);
  color: #555;
}

.search-full input[type="search"] {
  border: 1px solid #fff;
}

.search-icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 15px;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: #777;
}

.search-icon-home {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 1;
  height: 40px;
}

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

.search-icon-tc{
  position: absolute;
  left: 200px;
}

.search-container {
  position: relative;
}

.search input[type="submit"]{
  font-family: "Font Awesome 5 Free";
  content: '\f002';
  color: #FFF;
  background-color:#FEBD45;
  font-size: 14px;
  font-weight: 900;
  line-height: 2.72;
  min-width: 20px;
  width:80px;
  border-radius: 30px;
  right:75px;
}

@media screen and (max-width: 480px){
.search input[type="submit"] {
  min-width: 0;
  width: 80px;
  right:30px;
  }
}

.search-ex{
  top: 75%;
  color:#fff;
  font-weight: 900;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size:14px;
  margin: 0 auto;
  position: relative;
  transform: translateY(-50%);
}

@media screen and (max-width: 480px){
  .search-ex{
    top: 70%;
    right: 2px;
  }
}

/***** Hero component *****/
.hero {
  background-image: url(/hc/theming_assets/01HZKPC9B2R3FJ84JC0HJC1C0S);
  background-position: center;
  background-size: cover;
  height: 360px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 350px;
  left: 0;
  background: rgba(112, 40, 195, 0.8);
}

.hero-inner:lang(ja) {
  position: relative;
  top: 30%;
  transform: translateY(-50%);
  max-width: 610px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-inner:lang(en-us) {
  position: relative;
  top: 30%;
  transform: translateY(-50%);
  max-width: 610px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 0 24px;
}

.hero-inner:lang(zh-cn) {
  position: relative;
  top: 30%;
  transform: translateY(-50%);
  max-width: 610px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 0 24px;
}

.hero-inner:lang(ko) {
  position: relative;
  top: 30%;
  transform: translateY(-50%);
  max-width: 610px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 0 24px;
}

.hero_banner_title {
  color: #FFFFFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 38px;
  font-weight: 600;
  margin: 0 auto;
  position: relative;
  top: 35%;
  transform: translateY(-50%);
}
@media screen and (max-width: 480px){
.hero_banner_title {
  font-size: 32px;
  transform: translateY(-60%);
  width:90%;
  }
}

.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 {
  flex-grow: 1;
  margin-bottom: 10px;
  color: #444;
  font-weight: bold;
}

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

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

.page-header .icon-lock {
  height: 20px;
  width: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.sub-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
  min-height: 50px;
  padding-bottom: 15px;
}

@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-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: 1px solid rgba(111, 40, 194, 1);
  border-radius: 4px;
  box-sizing: border-box;
  color: rgba(111, 40, 194, 1);
  display: flex;
  flex: 1 0 340px;
  margin: 0 0 30px;
  max-width: 100%;
  text-align: center;
  background: #fff;
}

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

.blocks-item:hover, .blocks-item:focus, .blocks-item:active {
  background-color: rgba(111, 40, 194, 1);
}

.blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
  color: #FFFFFF;
  text-decoration: none;
}

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

.blocks-item-internal .icon-lock {
  height: 15px;
  width: 15px;
  bottom: 5px;
  position: relative;
}

.blocks-item-internal a {
  color: #333333;
}

.blocks-item-link {
  color: rgba(111, 40, 194, 1);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  border-radius: inherit;
}

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

.blocks-item-link:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(111, 40, 194, 1);
  text-decoration: none;
}

.blocks-item-title {
  margin-bottom: 0;
  font-size: 17px;
}
/* .blocks-item-title:after {
    display: block;
    content: "";
    height: 1.5px;
    background: #f5e56b;
    margin: 10px 3px;
    position: relative;
} */

.blocks-item-description {
  font-weight: 300;
  font-size: 13px;
  margin: 0;
}

.blocks-item-description:not(:empty) {
  margin-top: 10px;
}

/***** Homepage *****/
.section {
  margin-bottom: 20px;
}
/* 
@media (min-width: 768px) {
  .section {
    margin-bottom: 60px;
  }
} */

.home-section h2 {
  margin-bottom: 10px;
  text-align: center;
}

.section-title {
  text-align: center;
  font-weight: 600;
  font-size: 30px;
}

/***** Promoted articles *****/
.promoted_section-title{
  font-weight: 600;
}
@media screen and (max-width:750px){
    .promoted_section-title{
          margin-top:50px;
    } 
}

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

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

.promoted-articles-item {
  flex: 1 0 auto;
  text-align: left;
}

@media (min-width: 1024px) {
  .promoted-articles-item {
    align-self: flex-end;
    padding-left: 10px;
    text-align: left;
    flex: 1 0 300px;
    margin-bottom: 3px;
    text-align: left;
    /* Three columns on desktop */
  }
  [dir="rtl"] .promoted-articles-item {
    padding: 0 0 0 30px;
  }
}

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

.promoted-articles-item a {
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 10px;
  color: #333333;
}

.promoted-articles-item .icon-lock {
  vertical-align: baseline;
}

.promoted-articles-item:last-child a {
  border: 0;
}

@media (min-width: 1024px) {
  .promoted-articles-item:last-child a {
    border-bottom: 1px solid #ddd;
  }
}

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

.community-image {
  min-height: 300px;
  background-image: url(/hc/theming_assets/01HZKPC9QH09AS3AM62JYPT8B8);
  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: #333333;
  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: #666;
  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-controls {
  padding-top: 15px;
}

.recent-activity-accessibility-label {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.recent-activity-comment-icon svg {
  vertical-align: middle;
  color: rgba(111, 40, 194, 1);
  width: 16px;
  height: 16px;
}

.recent-activity-comment-icon:after {
  content: attr(data-comment-count);
  margin-left: 3px;
}

[dir="rtl"] .recent-activity-comment-icon:after {
  margin-left: 0;
  margin-right: 3px;
}

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

.category-content {
  flex: 1;
}

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

.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;
}

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

.section-tree-title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.section-tree-title a {
  color: #333333;
}

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

.article-list-item {
  font-size: 16px;
  padding: 15px 0;
}

.article-list-item a {
  color: #333333;
}

.icon-star {
  color: rgba(111, 40, 194, 1);
  font-size: 18px;
}

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

.section-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .section-content {
    flex: 0 0 80%;
  }
}

.section-list {
  margin: 40px 0;
}

.section-list--collapsed .section-list-item:nth-child(1n + 6) {
  display: none;
}

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

.section-list-item:first-child {
  border-top: 1px solid #ddd;
}

.section-list-item a {
  align-items: center;
  color: #333333;
  display: flex;
  justify-content: space-between;
}

.see-all-sections-trigger {
  cursor: pointer;
  display: block;
  padding: 15px;
  text-align: center;
}

.see-all-sections-trigger[aria-hidden="true"] {
  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: 75%;
    min-width: 640px;
    padding: 0 30px 0 45px;
  }
}

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

@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: 60px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .article-header {
    flex-direction: row;
    margin-top: 0;
    border-bottom: solid 1px #E7E4F1;
  }
}

.article-avatar {
  margin-right: 10px;
}

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

@media (min-width: 768px) {
  .article-title {
    flex-basis: 100%;
    color: #444;
    font-weight: bold;
/*     letter-spacing: 1px; */
    /* Take entire row */
  }
}

.article-title .icon-lock {
  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;
  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 a:visited {
  color: #0050c4;
}

.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: #666;
  font-style: italic;
  padding: 0 15px;
}

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

.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: #666;
  font-weight: 300;
}

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

.article-comment-count-icon {
  vertical-align: middle;
  color: rgba(111, 40, 194, 1);
  width: 18px;
  height: 18px;
}

.article-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

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

.article-sidebar-item {
  display: block;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color:#FAFAFA;
  border-radius:30px;
  letter-spacing: 1px;
  color:#fff;
  background-color: #444;
  line-height:10px;
  padding:15px 20px;
  font-weight: 600;
  
}

.article-sidebar-item:hover{
  color: #fff;
}

.article-sidebar-item:visited{
  color: #fff;
}

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

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

.article-relatives > * {
  flex: 1 0 50%;
  min-width: 50%;
  overflow-wrap: break-word;
  margin-right: 0;
}

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

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

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

.article-vote {
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
}

.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: #333333;
  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 {
  transform: rotate(0.5turn);
}

.sidenav-title {
  font-size: 18px;
  color: #444;
  position: relative;
  font-weight: 600;
}

.sidenav-item {
  border-radius: 4px;
  color: #333333;
  display: block;
  font-weight: 300;
  margin-bottom: 5px;
  padding: 10px;
}

.sidenav-item.current-article, .sidenav-item:hover {
  background-color: rgba(111, 40, 194, 1);
  color: #FFFFFF;
  text-decoration: none;
}

.recent-articles li,
.related-articles li {
  padding: 12px;
  border-bottom: dashed 1px #E7E4F1;
}

/***** 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 .attachment-icon {
  color: #333333;
  left: 0;
  position: absolute;
  top: 5px;
}

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

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

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

/***** Social share links *****/
.share {
  padding: 0;
  white-space: nowrap;
}

.share li, .share a {
  display: inline-block;
}

.share li {
  height: 25px;
  width: 25px;
}

.share a {
  color: #666;
}

.share a:hover {
  text-decoration: none;
  color: rgba(111, 40, 194, 1);
}

.share a svg {
  height: 18px;
  width: 18px;
  display: block;
}

/***** Comments *****/
/* Styles comments inside articles, posts and requests */
.comment {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.comment-heading, .recent-articles-title,
.related-articles-title {
  margin-bottom: 10px;
  margin-top: 10px;
  padding-bottom: 15px;
  border-bottom: 2px solid #444;
  font-size: 18px;
  color: #444;
  font-weight: bold;
}

.comment-overview {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.comment-overview p {
  margin-top: 0;
}

.comment-callout {
  color: #666;
  display: inline-block;
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 0;
}

.comment-callout a {
  color: rgba(111, 40, 194, 1);
}

.comment-sorter {
  display: inline-block;
  float: right;
}

.comment-sorter .dropdown-toggle {
  color: #666;
  font-weight: 300;
  font-size: 13px;
}

[dir="rtl"] .comment-sorter {
  float: left;
}

.comment-wrapper {
  display: flex;
  position: relative;
}

.comment-wrapper.comment-official {
  border: 1px solid rgba(111, 40, 194, 1);
  padding: 40px 20px 20px;
}

@media (min-width: 768px) {
  .comment-wrapper.comment-official {
    padding-top: 20px;
  }
}

.comment-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir="rtl"] .comment-info {
  padding-right: 0;
  padding-left: 20px;
}

.comment-author {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .comment-author {
    justify-content: space-between;
  }
}

.comment-avatar {
  margin-right: 10px;
}

[dir="rtl"] .comment-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.comment-meta {
  flex: 1 0 auto;
}

.comment-labels {
  flex-basis: 100%;
}

@media (min-width: 768px) {
  .comment-labels {
    flex-basis: auto;
  }
}

.comment .status-label:not(.status-label-official) {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .comment .status-label:not(.status-label-official) {
    margin-top: 0;
  }
}

.comment-form {
  display: flex;
  padding-top: 30px;
  word-wrap: break-word;
}

.comment-container {
  width: 100%;
}

.comment-form-controls {
  display: none;
  margin-top: 10px;
  text-align: left;
}

@media (min-width: 768px) {
  [dir="ltr"] .comment-form-controls {
    text-align: right;
  }
}

.comment-form-controls input[type="submit"] {
  margin-top: 15px;
}

@media (min-width: 1024px) {
  .comment-form-controls input[type="submit"] {
    margin-left: 15px;
  }
  [dir="rtl"] .comment-form-controls input[type="submit"] {
    margin-left: 0;
    margin-right: 15px;
  }
}

.comment-form-controls input[type="checkbox"] {
  margin-right: 5px;
}

.comment-form-controls input[type="checkbox"] [dir="rtl"] {
  margin-left: 5px;
}

.comment-ccs {
  display: none;
}

.comment-ccs + textarea {
  margin-top: 10px;
}

.comment-attachments {
  margin-top: 10px;
}

.comment-attachments a {
  color: rgba(111, 40, 194, 1);
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: auto;
}

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

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

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

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

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

.comment-body a:visited {
  color: #0050c4;
}

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

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

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

.comment-mark-as-solved {
  display: inline-block;
}

/***** Vote *****/
/* Used in article comments, post comments and post */
.vote {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.vote a:active, .vote a:hover, .vote a:focus {
  text-decoration: none;
}

.vote-sum {
  color: #666;
  display: block;
  margin: 3px 0;
}

[dir="rtl"] .vote-sum {
  direction: ltr;
  unicode-bidi: bidi-override;
}

.vote-up svg {
  transform: scale(1, -1);
}

.vote-up:hover,
.vote-down:hover {
  color: rgba(111, 40, 194, 1);
}

.vote-up, .vote-down {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  color: #666;
  cursor: pointer;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vote-voted {
  color: rgba(111, 40, 194, 1);
}

.vote-voted:hover {
  color: #3f176d;
}

/***** 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 button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/***** Community *****/
.community-hero {
  background-image: url(/hc/theming_assets/01HZKPC9J1036Q83K4C1FS2F2A);
  margin-bottom: 10px;
}

.community-footer {
  padding-top: 50px;
  text-align: center;
}

.community-footer-title {
  font-size: 16px;
  margin-bottom: 20px;
}

.community-featured-posts .title {
  font-size: 18px;
  font-weight: 600;
}

.community-featured-posts, .community-activity {
  padding-top: 40px;
  width: 100%;
}

.community-header {
  margin-bottom: 30px;
}

.community-header .title {
  margin-bottom: 0;
  font-size: 16px;
}

.post-to-community {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .post-to-community {
    margin: 0;
  }
}

/* Community topics grid */
.topics {
  max-width: none;
  width: 100%;
}

.topics-item .meta-group {
  justify-content: center;
  margin-top: 20px;
}

/* Community topic page */
.topic-header {
  border-bottom: 1px solid #ddd;
  font-size: 13px;
}

@media (min-width: 768px) {
  .topic-header {
    padding-bottom: 10px;
  }
}

.topic-header .dropdown {
  display: block;
  border-top: 1px solid #ddd;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .topic-header .dropdown {
    border-top: 0;
    display: inline-block;
    margin-right: 20px;
    padding: 0;
  }
}

.no-posts-with-filter {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Topic, post and user follow button */
.community-follow {
  margin-bottom: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow {
    margin-bottom: 0;
    width: auto;
  }
}

.community-follow button {
  line-height: 30px;
  padding: 0 10px 0 15px;
  position: relative;
  width: 100%;
}

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

.community-follow button:hover {
  background-color: rgba(111, 40, 194, 1);
}

.community-follow button:hover::after, .community-follow button:focus::after {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.community-follow button[data-selected="true"] {
  background-color: rgba(111, 40, 194, 1);
  color: #FFFFFF;
}

.community-follow button[data-selected="true"]::after {
  border-left: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.community-follow button[data-selected="true"]:hover {
  background-color: #3f176d;
  border-color: #3f176d;
}

.community-follow button::after {
  border-left: 1px solid rgba(111, 40, 194, 1);
  content: attr(data-follower-count);
  color: rgba(111, 40, 194, 1);
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  margin-left: 15px;
  padding-left: 10px;
  position: absolute;
  right: 10px;
}

@media (min-width: 768px) {
  .community-follow button::after {
    position: static;
  }
}

[dir="rtl"] .community-follow button::after {
  border-left: 0;
  border-right: 1px solid rgba(111, 40, 194, 1);
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

/***** 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(43, 129, 255, 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: #0050c4;
}

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

.striped-list-count {
  color: #666;
  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: #333333;
    display: block;
    font-weight: 400;
  }
}

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
  background-color: #038153;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  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(111, 40, 194, 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-not-planned, .status-label-closed {
  background-color: #e9ebed;
  color: #666;
}

.status-label-pending, .status-label-pending-moderation {
  background-color: #1f73b7;
  text-align: center;
}

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

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

.status-label-new {
  background-color: #ffb648;
  color: #703b15;
}

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

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

/***** Post *****/
/*
* The post grid is defined this way:
* Content | Sidebar
* 70%     | 30%
*/
.post {
  flex: 1;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .post {
    flex: 1 0 70%;
    max-width: 70%;
  }
}

.post-container {
  display: flex;
  flex-direction: column;
}

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

.post-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}

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

.post-header .status-label {
  vertical-align: super;
}

.post-title {
  margin-bottom: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .post-title {
    margin-bottom: 0;
    padding-right: 10px;
  }
}

.post-title h1 {
  display: inline;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .post-title h1 {
    margin-right: 5px;
  }
}

.post-author {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.post-avatar {
  margin-bottom: 30px;
}

.post-content {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  word-break: break-word;
}

.post-info-container {
  display: flex;
  margin-bottom: 40px;
}

.post-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir="rtl"] .post-info {
  padding-right: 0;
  padding-left: 20px;
}

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

[dir="rtl"] .post-meta {
  margin-left: 0;
  margin-right: 10px;
}

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

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

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

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

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

.post-body a:visited {
  color: #0050c4;
}

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

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

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

.post-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.post-comment-count {
  color: #666;
  font-weight: 300;
}

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

.post-comment-count .icon-comments {
  color: rgba(111, 40, 194, 1);
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 5px;
  vertical-align: middle;
}

.post-sidebar {
  border-top: 1px solid #ddd;
  flex: 1;
  padding: 30px 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .post-sidebar {
    border: 0;
    flex: 1 0 30%;
    padding: 0 0 0 50px;
    text-align: initial;
  }
  [dir="rtl"] .post-sidebar {
    padding: 0 50px 0 0;
  }
}

.post-sidebar-title {
  font-size: 18px;
  font-weight: 600;
}

.post-comments {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .post-comments {
    margin-bottom: 0;
  }
}

/* Navigation element that collapses on mobile */
.collapsible-nav {
  flex-direction: column;
  font-size: 14px;
  position: relative;
}

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

.collapsible-nav-border {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

@media (min-width: 768px) {
  .collapsible-nav-border {
    border-top: 0;
  }
}

.collapsible-nav-toggle {
  top: calc(45px / 2);
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .collapsible-nav-toggle {
    display: none;
  }
}

[dir="rtl"] .collapsible-nav-toggle {
  left: 0;
  right: auto;
}

.collapsible-nav-toggle-icon {
  display: none;
}

.collapsible-nav-toggle[aria-expanded="false"] .chevron-icon {
  display: inline-block;
}

.collapsible-nav-toggle[aria-expanded="true"] .x-icon {
  display: inline-block;
}

.collapsible-nav-toggle:focus {
  outline: none;
  border: 1px solid rgba(111, 40, 194, 1);
}

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

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

.collapsible-nav-list li {
  color: #333333;
  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: #333333;
  display: block;
}

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

.collapsible-nav-list li:not([aria-selected="true"]),
.collapsible-nav-list li:not(.current) {
  display: none;
}

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

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    padding: 15px 0 11px 0;
  }
}

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

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"],
  .collapsible-nav-list li.current {
    border-bottom: 4px solid rgba(111, 40, 194, 1);
    order: 1;
  }
}

.collapsible-nav-list li[aria-selected="true"] a,
.collapsible-nav-list li.current a {
  color: #333333;
}

.collapsible-nav[aria-expanded="true"] li:not([aria-selected="true"]),
.collapsible-nav[aria-expanded="true"] li:not(.current) {
  display: block;
}

/* Sidebar navigation that collapses on mobile */
.collapsible-sidebar {
  flex: 1;
  max-height: 45px;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

@media (min-width: 1024px) {
  .collapsible-sidebar {
    max-height: none;
    padding: 0;
    margin-right: 10px;
    padding: 30px 15px 15px 15px;
    background-color: #FAFAFA;
  }
}

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

.collapsible-sidebar-toggle {
  position: absolute;
  top: calc(45px / 2);
  transform: translateY(-50%);
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

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

[dir="rtl"] .collapsible-sidebar-toggle {
  left: 0;
  right: auto;
}

.collapsible-sidebar-toggle-icon {
  display: none;
}

.collapsible-sidebar-toggle[aria-expanded="false"] .chevron-icon {
  display: inline-block;
}

.collapsible-sidebar-toggle[aria-expanded="true"] .x-icon {
  display: inline-block;
}

.collapsible-sidebar-toggle:focus {
  outline: none;
  border: 1px solid rgba(111, 40, 194, 1);
}

.collapsible-sidebar-body {
  display: none;
  margin-top: 20px;
  padding-top: 5px;
  border-top: solid 2px #444;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-body {
    display: block;
  }
}

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

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-body {
  display: block;
}

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

.my-activities-sub-nav {
  margin-bottom: 30px;
}

.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;
  }
}

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

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

.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 */
@media (min-width: 768px) {
  .subscriptions-subscribe button {
    width: auto;
  }
}

.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: #666;
  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: #666;
}

/***** 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;
  color: #666;
  text-align: inherit;
  padding: 8px 25px;
  width: 100%;
}

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

.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(111, 40, 194, 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(111, 40, 194, 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 h2 {
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

@media (min-width: 1024px) {
  .request-sidebar h2 {
    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: #666;
  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-next, .pagination-prev, .pagination-first, .pagination-last {
  display: inline-block;
}

.pagination-first-link, .pagination-last-link {
  padding: 0 10px;
}

.pagination-first-text, .pagination-last-text {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.pagination-next-link {
  padding-right: 10px;
}

.pagination-next-text {
  margin-right: 10px;
}

[dir="rtl"] .pagination-next-link {
  padding-left: 10px;
}

[dir="rtl"] .pagination-next-text {
  margin-left: 10px;
}

.pagination-prev-link {
  padding-left: 10px;
}

.pagination-prev-text {
  margin-left: 10px;
}

[dir="rtl"] .pagination-prev-link {
  padding-right: 10px;
}

[dir="rtl"] .pagination-prev-text {
  margin-right: 10px;
}

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

.meta-group * {
  display: inline;
}

.meta-data {
  color: #666;
  font-size: 13px;
  font-weight: 300;
}

.meta-data:not(:last-child)::after {
  content: "\00B7";
  margin: 0 5px;
}

/* User Profiles */
.profile-header {
  padding: 30px 0;
  background-color: #f7f7f7;
}

.profile-header .container {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .container {
    flex-wrap: nowrap;
  }
}

.profile-header .profile-info {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
}

.profile-avatar {
  position: relative;
  line-height: 0;
  align-self: center;
  margin-right: 10px;
}

[dir="rtl"] .profile-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-avatar .user-avatar {
  width: 65px;
  height: 65px;
}

.profile-avatar .icon-agent {
  bottom: 0;
  right: 0;
}

.profile-header .basic-info {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.profile-header .basic-info .name {
  margin: 0;
}

.profile-header .options {
  display: flex;
  flex-basis: 100%;
  margin-top: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .options {
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 0;
    margin-left: 10px;
  }
  [dir="rtl"] .profile-header .options {
    margin-left: 0;
    margin-right: 10px;
  }
  .profile-header .options > :not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }
  [dir="rtl"] .profile-header .options > :not(:last-child) {
    margin-left: 10px;
    margin-right: 0;
  }
}

.edit-profile-button a {
  background-color: rgba(111, 40, 194, 1);
  border: 0;
  color: #FFFFFF;
  line-height: normal;
  padding: 8px 20px;
  outline-color: rgba(111, 40, 194, 1);
}

.profile-header .description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 15px 0;
  flex-basis: 100%;
}

.profile-stats {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}

.profile-stats .stat {
  display: flex;
  margin-bottom: 10px;
}

.profile-stats .stat-label {
  color: #666;
  font-weight: 300;
  flex: 0 0 100px;
  margin-right: 10px;
}

[dir="rtl"] .profile-stats .stat-label {
  margin-left: 10px;
  margin-right: 0;
}

.profile-stats-activity {
  border-top: solid 1px #ddd;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .profile-stats-activity {
    border-top: 0;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat {
    flex-direction: column;
  }
}

.profile-stats-activity .stat:first-child {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:first-child {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:not(:last-child) {
    margin-right: 40px;
  }
  [dir="rtl"] .profile-stats-activity .stat:not(:last-child) {
    margin-left: 40px;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat-label {
    flex: 0 1 auto;
  }
}

.profile-stats-counters {
  border-bottom: solid 1px #ddd;
}

@media (min-width: 768px) {
  .profile-stats-counters {
    flex: 0 0 200px;
    border-bottom: 0;
    margin-left: 40px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-left: 0;
    margin-right: 40px;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters {
    flex: 0 0 270px;
    margin-left: 60px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-right: 60px;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat-label {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat-label {
    flex: 0 0 100px;
  }
}

.profile-private-badge {
  flex-basis: 100%;
  border: solid 1px rgba(111, 40, 194, 1);
  border-radius: 4px;
  color: rgba(111, 40, 194, 1);
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}

.profile-private-badge .profile-private-icon {
  margin-left: 5px;
  line-height: 15px;
}

@media (min-width: 768px) {
  .profile-private-badge {
    flex-basis: auto;
  }
}

.profile-nav {
  background-color: #f2f2f2;
  margin-bottom: 37px;
}

.profile-section {
  width: 100%;
}

@media (min-width: 1024px) {
  .profile-section {
    width: calc(100% - 330px);
  }
}

.profile-section-header {
  display: flex;
  flex-wrap: wrap;
}

.profile-section-title {
  flex-basis: 100%;
  margin-bottom: 0;
}

.profile-section-description {
  flex-basis: 100%;
  padding: 10px 0;
  color: #666;
  font-weight: 300;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .profile-section-description {
    flex: 1 0 50%;
    padding-bottom: 0;
  }
}

.profile-section-sorter {
  flex-basis: 100%;
  border-top: solid 1px #eee;
  font-size: 13px;
}

.profile-section-sorter .dropdown-toggle {
  padding: 10px 0;
  width: 100%;
}

.profile-section-sorter .dropdown-toggle::after {
  position: absolute;
  right: 0;
}

[dir="rtl"] .profile-section-sorter .dropdown-toggle::after {
  left: 0;
  right: initial;
}

@media (min-width: 768px) {
  .profile-section-sorter .dropdown-toggle::after {
    position: relative;
  }
}

@media (min-width: 768px) {
  .profile-section-sorter {
    flex: 0 1 auto;
    padding-top: 0;
    border-top: 0;
    margin-left: 20px;
  }
  [dir="rtl"] .profile-section-sorter {
    margin-left: 0;
    margin-right: 20px;
  }
}

.profile-contribution {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  padding: 20px 0;
  position: relative;
}

.profile-contribution-header {
  margin-bottom: 5px;
}

.profile-contribution-title {
  margin: 0 0 5px 0;
  display: inline;
  line-height: 21px;
  font-size: 15px;
  vertical-align: middle;
}

.profile-contribution-body {
  margin: 10px 0;
}

.profile-contribution-list > .profile-contribution {
  border-top: 1px solid #eee;
}

@media (min-width: 768px) {
  .profile-contribution-list > .profile-contribution {
    padding-left: 30px;
  }
  [dir="rtl"] .profile-contribution-list > .profile-contribution {
    padding-right: 30px;
    padding-left: 0;
  }
}

.profile-contribution-list > .profile-contribution:last-child {
  border-bottom: 1px solid #eee;
}

.profile-contribution-icon {
  left: 0;
  position: absolute;
  color: #ccc;
  line-height: 25px;
}

[dir="rtl"] .profile-contribution-icon {
  right: 0;
}

.profile-contribution-icon svg {
  vertical-align: middle;
}

.profile-contribution-list .profile-contribution-header {
  margin-left: 30px;
}

[dir="rtl"] .profile-contribution-list .profile-contribution-header {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-contribution-list .profile-contribution-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-contribution-list .profile-contribution-header {
    padding-right: 0;
  }
}

.profile-comments .profile-contribution-breadcrumbs {
  margin-left: 30px;
}

[dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-comments .profile-contribution-breadcrumbs {
    margin-left: 0;
  }
  [dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
    padding-right: 0;
  }
}

.profile-section .no-activity,
.profile-section .private-activity {
  display: block;
  margin-top: 40px;
  color: #999;
}

.private-activity-icon {
  margin-right: 10px;
}

[dir="rtl"] .private-activity-icon {
  margin-right: 0;
  margin-left: 10px;
}

.profile-activity-list {
  margin-top: 25px;
}

.profile-activity {
  position: relative;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .profile-activity {
    padding-left: 20px;
  }
  [dir="rtl"] .profile-activity {
    padding-right: 20px;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-activity:not(:last-child) {
    border-left: 1px solid #ddd;
  }
  [dir="rtl"] .profile-activity:not(:last-child) {
    border-left: 0;
    border-right: 1px solid #ddd;
  }
}

.profile-activity-header {
  display: flex;
  align-items: center;
  margin-left: 35px;
}

[dir="rtl"] .profile-activity-header {
  margin-left: 0;
  margin-right: 35px;
}

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

.profile-activity-header .user-avatar {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  min-width: 40px;
  align-self: flex-start;
}

[dir="rtl"] .profile-activity-header .user-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-activity-description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.profile-activity-description span:first-child {
  font-weight: 600;
  display: inline;
}

.profile-activity-contribution {
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  background-color: #f7f7f7;
}

@media (min-width: 768px) {
  .profile-activity-contribution {
    margin-top: 0;
    margin-left: 50px;
  }
  [dir="rtl"] .profile-activity-contribution {
    margin-left: 0;
    margin-right: 50px;
  }
}

.profile-activity-icon {
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: #FFFFFF;
  background-position: 50% 50%;
  text-align: center;
  color: #ccc;
}

[dir="rtl"] .profile-activity-icon {
  right: 0;
}

@media (min-width: 768px) {
  .profile-activity-icon {
    left: -14px;
  }
  [dir="rtl"] .profile-activity-icon {
    right: -14px;
  }
}

.profile-activity-icon svg {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  margin: auto;
}

/***** Search results *****/
.search-results {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

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

.search-results-column {
  flex: 1;
}

@media (min-width: 1024px) {
  .search-results-column {
    flex: 0 0 75%;
  }
}

.search-results-sidebar {
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .search-results-sidebar {
    border: 0;
    flex: 0 0 20%;
    height: auto;
  }
}

.search-results-sidebar .sidenav-item:hover, .search-results-sidebar .sidenav-item.current {
  background-color: #e9ebed;
  color: inherit;
  text-decoration: none;
}

.search-results-sidebar .sidenav-subitem {
  unicode-bidi: embed;
}

.search-results-sidebar .collapsible-sidebar {
  margin-bottom: 30px;
}

.search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
  display: none;
}

@media (min-width: 1024px) {
  .search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
    display: block;
  }
}

.search-results-sidebar .multibrand-filter-list--collapsed li:nth-child(1n + 6) {
  display: none;
}

.search-results-sidebar .multibrand-filter-list .doc-count {
  color: #666;
}

.search-results-sidebar .see-all-filters {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  padding: 10px;
  color: rgba(43, 129, 255, 1);
}

.search-results-sidebar .see-all-filters[aria-hidden="true"] {
  display: none;
}

.search-results-sidebar .see-all-filters:hover {
  text-decoration: underline;
}

.search-results-sidebar .see-all-filters::after {
  content: ' \2304';
  font-weight: bold;
}

.search-results-subheading {
  font-size: 18px;
  font-weight: 600;
}

.search-results-list {
  margin-bottom: 25px;
}

.search-results-list > li {
  padding: 20px 0;
}

.search-results-list > li:first-child {
  border-top: 1px solid #ddd;
}

.search-results-list > li h2 {
  margin-bottom: 0;
}

.search-results .meta-group {
  display: block;
  align-items: center;
  clear: both;
  color: #666;
}

@media (min-width: 1024px) {
  .search-results .meta-group {
    display: flex;
  }
}

.search-results .meta-group > li {
  display: block;
}

@media (min-width: 1024px) {
  .search-results .meta-group > li {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .search-results .meta-group li:first-child {
    flex: 1;
  }
}

.search-results .meta-group .meta-data {
  color: inherit;
}

[dir="ltr"] .search-results .meta-group .meta-data:not(:last-child) {
  margin-right: 20px;
}

[dir="rtl"] .search-results .meta-group .meta-data:not(:last-child) {
  margin-left: 20px;
}

.search-results .meta-group .meta-data::after {
  content: none;
}

.search-results-description {
  margin-top: 10px;
  word-break: break-word;
}

.search-result-title {
  font-size: 16px;
  display: inline-block;
}

[dir="ltr"] .search-result-icons {
  float: right;
}

[dir="rtl"] .search-result-icons {
  float: left;
}

.search-result-votes, .search-result-meta-count {
  color: #666;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  padding: 4px 5px;
  position: relative;
}

.search-result-votes-icon, .search-result-meta-count-icon {
  color: rgba(111, 40, 194, 1);
  vertical-align: middle;
  width: 13px;
  height: 13px;
}

[dir="ltr"] .search-result-votes, [dir="ltr"] .search-result-meta-count {
  margin-left: 5px;
}

[dir="ltr"] .search-result-votes::before, [dir="ltr"] .search-result-meta-count::before {
  margin-right: 3px;
}

[dir="rtl"] .search-result-votes, [dir="rtl"] .search-result-meta-count {
  margin-right: 5px;
}

[dir="rtl"] .search-result-votes::before, [dir="rtl"] .search-result-meta-count::before {
  margin-left: 3px;
}

.search-result .meta-group {
  align-items: center;
}

.search-result-breadcrumbs {
  margin: 0;
}

@media (min-width: 1024px) {
  .search-result-breadcrumbs {
    display: table-row;
  }
}

@media (min-width: 1024px) {
  .search-result-breadcrumbs li {
    display: table-cell;
  }
}

.search-result-breadcrumbs li, .search-result-breadcrumbs li a, .search-result-breadcrumbs li a:visited {
  color: inherit;
}

/* By default use bold instead of italic to highlight */
.search-results-description em {
  font-style: normal;
  font-weight: bold;
}

/* Add a yellow background for Chinese */
html[lang|="zh"] .search-results-description em {
  font-style: normal;
  background: yellow;
}

.search-guide{
  background: #FFD1D9;
  padding: 10px;
  margin: 7px;
  border-radius: 3px;
  font-size: 14px;
  color: #CC0046;
}

/***** Notifications *****/
.notification {
  border: 1px solid;
  display: table;
  font-family: sans-serif;
  font-size: 12px;
  padding: 13px 15px;
  transition: height .2s;
  width: 100%;
  color: #555;
}

.notification a {
  color: #158ec2;
}

.notification-inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 980px;
}

.notification-icon, .notification-text, .notification-dismiss {
  display: table-cell;
  vertical-align: middle;
}

.notification-text {
  padding: 0 15px;
  width: 100%;
}

.notification + .notification {
  margin-bottom: -1px;
  position: relative;
  top: -1px;
}

/* Error */
.notification-error {
  background: #ffeded;
  border-color: #f7cbcb;
}

.notification-error .notification-icon::before, .notification-error .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23555555'/%3E%3C/svg%3E");
}

/* Notice */
.notification-notice {
  background: #dbf3ff;
  border-color: #b5e0f5;
}

.notification-notice .notification-icon::before, .notification-notice .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.5 6l2 2L9 4.5'/%3E%3Ccircle cx='6' cy='6' r='5.5'/%3E%3C/g%3E%3C/svg%3E");
}

/* Alert / Lock */
.notification-alert {
  color: #ad5e18;
  background: #fff8ed;
  border-color: #fcdba9;
}

.notification-alert .notification-icon::before, .notification-alert .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ad5e18' stroke-linecap='round' d='M5.06 1.27l-4.5 8.5c-.18.33.06.73.44.73h9c.38 0 .62-.4.44-.73l-4.5-8.5a.494.494 0 00-.88 0zM5.5 4v2'/%3E%3Ccircle cx='5.5' cy='8' r='.8' fill='%23ad5e18'/%3E%3C/svg%3E");
}

.notification-icon::before, .notification-inline.notification-error::before {
  background-size: cover;
  content: "";
  display: inline-block;
  height: 14px;
  width: 14px;
  vertical-align: middle;
}

/* Dismiss button */
.notification-dismiss, a.notification-dismiss {
  color: #555;
  cursor: pointer;
  opacity: .6;
  transition: opacity 100ms ease;
  text-decoration: none !important;
}

.notification-dismiss:hover {
  opacity: 1;
}

/* Inline notifications */
.notification-inline {
  border-radius: 4px;
  line-height: 14px;
  margin-top: 5px;
  padding: 5px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

[dir="rtl"] .notification-inline {
  text-align: right;
}

.notification-inline[aria-hidden="true"] {
  display: none;
}

.notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23e35b66'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23e35b66'/%3E%3C/svg%3E");
  margin: -2px 5px 0 0;
}

[dir="rtl"] .notification-inline.notification-error::before {
  margin: 0 0 0 5px;
}

.notification-inline.notification-error {
  background-color: #fff0f1;
  border: 1px solid #e35b66;
  color: #cc3340;
}

.notification-inline.notification-large {
  padding: 13px 15px;
  margin-bottom: 25px;
}

.notification-left-aligned {
  text-align: left;
  padding-left: 0;
}

html[dir="rtl"] .notification-left-aligned {
  text-align: right;
  padding-left: auto;
  padding-right: 0;
}

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

.dropdown-toggle {
  cursor: pointer;
  background: none;
  border: 0;
  display: inline-block;
  padding: 0;
  text-align: initial;
  vertical-align: middle;
}

.dropdown-toggle:hover {
  text-decoration: none;
}

.dropdown-toggle > * {
  display: inline-block;
}

.dropdown-menu {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  display: none;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  left: 0;
  margin-top: 1px;
  min-width: 170px;
  padding: 10px 0;
  position: absolute;
  text-align: left;
  z-index: 1000;
}

[dir="rtl"] .dropdown-menu {
  text-align: right;
}

.dropdown-menu[aria-expanded="true"] {
  display: block;
}

.dropdown-menu [role="separator"] {
  border-bottom: 1px solid #d8d8d8;
  color: #969696;
  display: block;
  font-weight: normal;
  font-size: 11px;
  padding: 5px 0;
  margin: 5px 20px 10px 20px;
}

.dropdown-menu [role="menuitem"] {
  color: #333;
  cursor: pointer;
  display: block;
  padding: 7px 40px 7px 20px;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  text-align: start;
  line-height: inherit;
  width: 100%;
}

[dir="rtl"] .dropdown-menu [role="menuitem"] {
  padding: 7px 20px 7px 40px;
}

.dropdown-menu [role="menuitem"]:hover, .dropdown-menu [role="menuitem"]:focus {
  background: #f3f3f3;
  text-decoration: none;
  color: #333;
}

.dropdown-menu [role="menuitem"][aria-selected="true"] {
  cursor: default;
}

.dropdown-menu [role="menuitem"][aria-selected="true"]::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1 7l3 3 7-7'%3E%3C/path%3E%3C/svg%3E");
  display: inline-block;
  height: 12px;
  margin-left: 10px;
  width: 12px;
}

[dir="rtl"] .dropdown-menu [role="menuitem"][aria-selected="true"]::after {
  margin-left: 0;
  margin-right: 10px;
  float: left;
}

.dropdown-menu [role="menuitem"][hidden], .dropdown-menu [role="menuitem"][aria-hidden="true"] {
  display: none !important;
}

.dropdown-menu-end {
  left: auto;
  right: 0;
}

.dropdown-menu-top {
  bottom: 100%;
  margin-bottom: 1px;
}

[dir="rtl"] .dropdown-menu {
  left: auto;
  right: 0;
  text-align: right;
}

[dir="rtl"] .dropdown-menu-end {
  left: 0;
  right: auto;
}

.dropdown-chevron-icon {
  vertical-align: middle;
}


/*==========================================*/
/*   記事装飾
/*==========================================*/
/* 点滅 */
.blinking{
	  -webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

/* かこみ */
.hogehoge{
  padding:15px !important;
  margin-bottom:10px;
  border:1px dashed #333333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}


/* 警告 */
.hogepiyo {
  padding:10px;
  margin-bottom:10px;
  border-radius:5px;
  background: rgba(255, 0, 45, 0.18);
  color: #c00;
  border:1px solid #b94047;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

/* アイコンをインライン（文章と同じ行） */
.hogepiyo:before {
  font-family: "Font Awesome 5 Free";
  content: '\f071';
  font-weight: 900;
  display: inline-block;
  margin-right: .3em;
  font-size: 1.2em;
  padding-right : 5px;
  color: #b94047;
  vertical-align: middle;
}

/* 最初の p だけアイコンと横並び（inline）にする */
.hogepiyo > p:first-of-type {
  display: inline;
  margin: 0;
  padding: 0;
}

/* 最初の p の後は必ず改行して ul/p を下へ落とす */
.hogepiyo > p:first-of-type::after {
  content: "";
  display: block;
}

/* 警告用ボタン */
.hogepiyobox {
    display: block; /* <div>がブロック要素になる */
    width: 100%; /* 画面幅に合わせる */
    padding: 0.5em 1em;
    margin: 10px 0 5px 0; /* 上下のマージン */
    background: #CC0046; /* 背景色 */
    border: solid 3px #CC0046; /* 枠線 */
    border-radius: 10px; /* 角を丸める */
    cursor: pointer; /* カーソルをポインターに */
    text-align: center; /* 中央寄せ */
}

.hogepiyobox a {
    display: block; /* <a>タグをブロック要素に */
    padding:	0px 0; /* クリック領域を広げる */
    color: #fff; /* 文字色を白に */
    text-decoration: none; /* 下線を削除 */
    font-weight: bold; /* 文字を太字に */
}

/* ホバー時のスタイル */
.hogepiyobox:hover {
    background: #ab023c; /* 背景色を濃くする */
}

.hogepiyobox a:link { /*アクセスしたことのないリンク*/
color:#fff;
}

.hogepiyobox a:visited {
color:#fff;
}

/* 注意
.hugahuga { padding:10px !important; 
margin-bottom:10px !important; 
  border-radius:5px !important; 
  background: #ffffe0 !important; 
  color: #f90 !important; 
  border:1px solid #f6ad49 !important; 
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif !important; 
}  */ 

.hugahuga {
  padding:10px !important;
  margin-bottom:10px !important;
  border-radius:5px !important;
  background: #ffffe0 !important;
  color: #f90 !important;
  border:1px solid #f6ad49 !important;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif !important;
}

/* アイコンをインライン表示にする */
.hugahuga:before {
  font-family: "Font Awesome 5 Free" !important;
  content: '\f0f3' !important;
  font-weight: 900 !important;
  display: inline-block !important;
  margin-right: .3em !important;
  font-size: 1.2em !important;
  padding-right : 5px !important;
  color: #f6ad49 !important;
  vertical-align: middle !important;
}

/* pをインライン化してアイコンと同じ行に置く */
.hugahuga p {
  display: inline !important;
  margin: 0 !important;
}

/* ボタン部分（figure）は強制的に改行して下に落とす */
.hugahuga figure {
  display: block !important;
  margin-top: 8px !important;
}

.hugahuga:before {
    font-family: "Font Awesome 5 Free" !important;
    content: '\f0f3' !important;
    font-weight: 900 !important;
    display: inline-block !important;
    margin-right: .3em !important;
    font-size: 1.2em !important;
    padding-right : 5px !important;/*文字との隙間*/
    color: #f6ad49 !important;/*アイコンの色*/
}

/* 注意用ボタン */
.hugahugabox {
    display: block; /* <div>がブロック要素になる */
    width: 100%; /* 画面幅に合わせる */
    padding: 0.5em 1em;
    margin: 10px 0 5px 0; /* 上下のマージン */
    background: #FF9900; /* 背景色 */
    border: solid 3px #FF9900; /* 枠線 */
    border-radius: 10px; /* 角を丸める */
    cursor: pointer; /* カーソルをポインターに */
    text-align: center; /* 中央寄せ */
}

.hugahugabox a {
    display: block; /* <a>タグをブロック要素に */
    padding:	0px 0; /* クリック領域を広げる */
    color: #fff; /* 文字色を白に */
    text-decoration: none; /* 下線を削除 */
    font-weight: bold; /* 文字を太字に */
}

/* ホバー時のスタイル */
.hugahugabox:hover {
    background: #f09000; /* 背景色を濃くする */
}

.hugahugabox a:link { /*アクセスしたことのないリンク*/
color:#fff;
}

.hugahugabox a:visited {
color:#fff;
}

/* ヒント */
.hogehuga {
  padding:10px;
  margin-bottom:10px;
  border-radius:5px;
  background: #efffe0;
  color: #090;
  border:1px solid #65ab31;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

/* アイコンをインライン（文章と同じ行） */
.hogehuga:before {
  font-family: "Font Awesome 5 Free";
  content: '\f0a4';
  font-weight: 900;
  display: inline-block;
  margin-right: .3em;
  font-size: 1.2em;
  padding-right : 5px;
  color: #090;
  vertical-align: middle;
}

/* 最初の p だけアイコンと横並び（inline）にする */
.hogehuga > p:first-of-type {
  display: inline;
  margin: 0;
  padding: 0;
}

/* 最初の p の後は必ず改行して ul/p を下へ落とす */
.hogehuga > p:first-of-type::after {
  content: "";
  display: block;
}

/* グリーンボタンのスタイル */
.hogehugabox {
    display: block; /* <div>がブロック要素になる */
    width: 100%; /* 画面幅に合わせる */
    padding: 0.5em 1em;
    margin: 10px 0 5px 0; /* 上下のマージン */
    background: #64A324; /* 背景色 */
    border: solid 3px #64A324; /* 枠線 */
    border-radius: 10px; /* 角を丸める */
    cursor: pointer; /* カーソルをポインターに */
    text-align: center; /* 中央寄せ */
}

.hogehugabox a {
    display: block; /* <a>タグをブロック要素に */
    padding:	0px 0; /* クリック領域を広げる */
    color: #fff; /* 文字色を白に */
    text-decoration: none; /* 下線を削除 */
    font-weight: bold; /* 文字を太字に */
}

/* ホバー時のスタイル */
.hogehugabox:hover {
    background: #558b1f; /* 背景色を濃くする */
}

.hogehugabox a:link { /*アクセスしたことのないリンク*/
color:#fff;
}

.hogehugabox a:visited {
color:#fff;
}

.background-gray{
  padding:15px;
  margin:10px 0 0 0;
  background-color: #fafafa;
  border:1px solid #C0C0C0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

/*---タイトルfukidashi blue---*/
h2.fukidashi {

  position: relative;
  padding: 0.6em;
  background: #668ad8;
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

h2.fukidashi:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #668ad8;
  width: 0;
  height: 0;
}

/*---タイトルfukidashi yellow---*/
h2.fukidashiyellow {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  position: relative;
  padding: 0.6em;
  background: #e9b81a;
  color: #fff;
}
h2.fukidashiyellow:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #e9b81a;
  width: 0;
  height: 0;
}

/*---タイトルfukidashi pink---*/
h2.fukidashipink {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  position: relative;
  padding: 0.6em;
  background: #c01b6c;
  color: #fff;
}

h2.fukidashipink:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #c01b6c;
  width: 0;
  height: 0;
}



/*---リスト ボタン---*/
.btn-square-shadow {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  display: inline-block;
  padding: 0.5em 1em;
  tExamplet-decoration: none;
  background: #668ad8;/*ボタン色*/
  color: #FFF;
  border-bottom: solid 4px #627295;
  border-radius: 3px;
}

.btn-square-shadow:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
  border-bottom: none;
}



/*---リスト 目次blue---*/
ul.index {
  border: solid 2px #668ad8;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  padding: 0.5em;
  position: relative;
  margin-top: 2em;
}
ul.index li {
  line-height: 1.5;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  padding: 0.5em 0 0.5em 1.4em;
  border-bottom: dashed 1px silver;
  list-style-type: none!important;
}
ul.index li:last-of-type {
  border-bottom: none;
}
ul.index li:before {
  /*リスト内のアイコン*/
  font-family: "Font Awesome 5 Free";
  font-weight:900;
  content: "\f138";/*アイコン種類*/
  
  position: absolute;
  left : 0.5em; /*左端からのアイコンまで*/
  color: #668ad8; /*アイコン色*/
}

ul.index li:after {
  /*タイトルタブ*/
  background: #668ad8;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 1px 7px;
  content: "index";/*タブの文字*/
  letter-spacing: 0.05em;/*字間*/
}

/*---リスト 目次blueglobal---*/
ul.indexms {
  border: solid 2px #668ad8;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  padding: 0.5em;
  position: relative;
  margin-top: 2em;
}
ul.indexms li {
  line-height: 1.5;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  padding: 0.5em 0 0.5em 1.4em;
  border-bottom: dashed 1px silver;
  list-style-type: none!important;
}
ul.indexms li:last-of-type {
  border-bottom: none;
}
ul.indexms li:before {
  /*リスト内のアイコン*/
  font-family: "Font Awesome 5 Free";
  font-weight:900;
  content: "\f138";/*アイコン種類*/
  
  position: absolute;
  left : 0.5em; /*左端からのアイコンまで*/
  color: #668ad8; /*アイコン色*/
}

ul.indexms li:after {
  /*タイトルタブ*/
  background: #668ad8;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 1px 7px;
  content: "Related Articles";/*タブの文字*/
  letter-spacing: 0.05em;/*字間*/
}

/*---リスト 目次 yellow(e9b81a)---*/
ul.indexyellow {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  border: solid 2px #e9b81a;
  padding: 0.5em;
  position: relative;
  margin-top: 2em;
}
ul.indexyellow li {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  line-height: 1.5;
  padding: 0.5em 0 0.5em 1.4em;
  border-bottom: dashed 1px silver;
  list-style-type: none!important;
}
ul.indexyellow li:last-of-type {
  border-bottom: none;
}
ul.indexyellow li:before {
  /*リスト内のアイコン*/
  font-family: "Font Awesome 5 Free";
  content: "\f138";/*アイコン種類*/
  font-weight: 900;
  position: absolute;
  left : 0.5em; /*左端からのアイコンまで*/
  color: #e9b81a; /*アイコン色*/
}
ul.indexyellow li:after {
  /*タイトルタブ*/
  background: #e9b81a;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 1px 7px;
  content: "index";/*タブの文字*/
  letter-spacing: 0.05em;/*字間*/
}

/*---リスト 目次 pink(c01b6c)---*/
ul.indexpink {
  border: solid 2px #c01b6c;
  padding: 0.5em;
  position: relative;
  margin-top: 2em;
}
ul.indexpink li {
  line-height: 1.5;
  padding: 0.5em 0 0.5em 1.4em;
  border-bottom: dashed 1px silver;
  list-style-type: none!important;
}
ul.indexpink li:last-of-type {
  border-bottom: none;
}
ul.indexpink li:before {
  /*リスト内のアイコン*/
  font-family: "Font Awesome 5 Free";
  content: '\f138';/*アイコン種類*/
  font-weight: 900;
  position: absolute;
  left : 0.5em; /*左端からのアイコンまで*/
  color: #c01b6c; /*アイコン色*/
}
ul.indexpink li:after {
  /*タイトルタブ*/
  background: #c01b6c;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 1px 7px;
  content: "index";/*タブの文字*/
  letter-spacing: 0.05em;/*字間*/
}
/*---リスト 目次 blue2(#4CACC6)---*/
ul.indexblue {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  border: solid 2px #4CACC6;
  padding: 0.5em;
  position: relative;
  margin-top: 2em;
  color:#333333;
}
ul.indexblue a {
  color:#333333;
}
ul.indexblue li {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  line-height: 1.5;
  padding: 0.5em 0 0.5em 1.4em;
  border-bottom: dashed 1px silver;
  list-style-type: none!important;
}
ul.indexblue li:last-of-type {
  border-bottom: none;
}
ul.indexblue li:before {
  /*リスト内のアイコン*/
  font-family: "Font Awesome 5 Free";
  content: "\f138";/*アイコン種類*/
  font-weight: 900;
  position: absolute;
  left : 0.5em; /*左端からのアイコンまで*/
  color: #4CACC6; /*アイコン色*/
}
ul.indexblue li:after {
  /*タイトルタブ*/
  background: #4CACC6;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 1px 7px;
  content: "index";/*タブの文字*/
  letter-spacing: 0.05em;/*字間*/
}
/*---リスト 目次 紫(#402175)---*/
ul.indexp {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  border: solid 2px #402175;
  padding: 0.5em;
  position: relative;
  margin-top: 2em;
  color:#333333;
}
ul.indexp a {
  color:#333333;
}
ul.indexp li {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  line-height: 1.5;
  padding: 0.5em 0 0.5em 35px;
  border-bottom: dashed 1px silver;
  list-style-type: none!important;
}
ul.indexp li:last-of-type {
  border-bottom: none;
}
ul.indexp li:before {
  /*リスト内のアイコン*/
  font-family: "Font Awesome 5 Free";
  content: "\f138";/*アイコン種類*/
  font-weight: 900;
  position: absolute;
  left : 20px; /*左端からのアイコンまで*/
  color: #402175; /*アイコン色*/
}
ul.indexp li:after {
  /*タイトルタブ*/
  background: #402175;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 1px 7px;
  content: "index";/*タブの文字*/
  letter-spacing: 0.05em;/*字間*/
}
/*---リスト こんな時に---*/
ul.Example{
  border: solid 2px #ffb03f;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
  margin-top: 2em;
}
ul.Example li{
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;
}
ul.Example li:before{
  /*リストのアイコン*/
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  position: absolute;
  font-weight: 900;
  left : 1em; /*左端からのアイコンまでの距離*/
  color: #ffb03f; /*アイコン色*/
}
ul.Example li:after{
  /*タイトルタブ*/
  background: #ffb03f;
  color: #fff;
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 1px 7px;
  content: '\f0a7  こんな時に';/*アイコンコード＋文字*/
  font-weight: 900;
  letter-spacing: 0.05em;/*字間*/
}

  /*---リスト チェックポイント---*/
  ul.checkpoint{
    border: solid 2px #ffb03f;
    padding: 0.7em 1em 0.7em 2.3em;
    position: relative;
    margin: 2em 0 0 0;
  }
  ul.checkpoint li{
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none!important;
  }
  ul.checkpoint li:before{
    /*リストのアイコン*/
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-weight: 900;
    position: absolute;
    left : 1em; /*左端からのアイコンまでの距離*/
    color: #ffb03f; /*アイコン色*/
  }
  ul.checkpoint li:after{
    /*タイトルタブ*/
    background: #ffb03f;
    color: #fff;
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: -2px;
    bottom: 100%;
    padding: 1px 7px;
    content: '\f0a7  checkpoint';/*アイコンコード＋文字*/
    font-weight: 900;
    letter-spacing: 0.05em;/*字間*/
  }

/*---リスト content global---*/
  ul.mscontent{
    border: solid 2px #A16EFF;
    padding: 0.5em 1em 0.5em 2.3em;
    position: relative;
    margin-top: 2em;
  }
  ul.mscontent li{
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none!important;
  }
  ul.mscontent li:before{
    /*リストのアイコン*/
    font-family: "Font Awesome 5 Free";
    content: "\f13a";
    font-weight: 900;
    position: absolute;
    left : 1em; /*左端からのアイコンまでの距離*/
    color: #A16EFF; /*アイコン色*/
  }
  ul.mscontent li:after{
    /*タイトルタブ*/
    background: #A16EFF;
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: -2px;
    bottom: 100%;
    padding: 1px 7px;
    content: 'Contents';/*タブの文字*/
    letter-spacing: 0.05em;/*字間*/
  }

/*---リスト チェックポイントTCカラー---*/
  ul.checkpoint-purple{
    border: solid 2px #A16EFF;
    padding: 0.5em 1em 0.5em 2.3em;
    position: relative;
    margin-top: 2em;
  }
  ul.checkpoint-purple li{
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none!important;
  }
  ul.checkpoint-purple li:before{
    /*リストのアイコン*/
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-weight: 900;
    position: absolute;
    left : 1em; /*左端からのアイコンまでの距離*/
    color: #A16EFF; /*アイコン色*/
  }
  ul.checkpoint-purple li:after{
    /*タイトルタブ*/
    background: #A16EFF;
    color: #fff;
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: -2px;
    bottom: 100%;
    padding: 1px 7px;
    content: '\f0a7';/*アイコンコード＋文字*/
    font-weight: 900;
    letter-spacing: 0.05em;/*字間*/
  }

  /*---リスト 他の記事を読む---*/
  ul.nextlink {
    border: solid 2px #668ad8;
    padding: 0.5em;
    position: relative;
    margin-top: 2em;
  }
  ul.nextlink li {
    line-height: 1.5;
    padding: 0.5em 0 0.5em 1.4em;
    border-bottom: dashed 1px silver;
    list-style-type: none!important;
  }
  ul.nextlink li:last-of-type {
    border-bottom: none;
  }
  ul.nextlink li:before {
    /*リスト内のアイコン*/
    font-family: "Font Awesome 5 Free";
    content: "\f138";/*アイコン種類*/
    font-weight: 900;
    position: absolute;
    left : 0.5em; /*左端からのアイコンまで*/
    color: #668ad8; /*アイコン色*/
  }
  ul.nextlink li:after {
    /*タイトルタブ*/
    background: #668ad8;
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: -2px;
    bottom: 100%;
    padding: 1px 7px;
    content: "他の記事を見る";/*タブの文字*/
    letter-spacing: 0.05em;/*字間*/
  }


/*---ボックス---①*/

.box24 {
    position: relative;
    padding: 16px;
    margin: 2em 0;
    background: #e6f4ff;
    color: #668ad8;
    font-weight: bold;
}
.box24:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #e6f4ff;
    width: 0;
    height: 0;
}
.box24 p {
    margin: 0;
    padding: 0;
}


/*---ボックス---②*/

.box27 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #668ad8;
}
.box27 .box-fukidashi {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #668ad8;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box27 p {
    margin: 0;
    padding: 0;
}

/*---ボックス紫---②*/

.box28 {
    position: relative;
    margin: 2em 0;
    padding: 15px 25px;
    border: solid 3px #6F28C2;
}
.box28 .box-fukidashi {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #6F28C2;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
/* .box28 p {
    margin: 0;
    padding: 0;
} */

/* index青 */
.topicbox {
    position: relative;
    margin: 2em 0;
    padding: 20px;
    border: solid 3px #59b9c6;
    border-radius: 8px;
}
.topicbox .box-title {
    position: absolute;
    display: inline-block;
    top: -10px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 17px;
    background: #FFF;
    color: #59b9c6;
    font-weight: bold;
}
.topicbox p {
    margin: 0; 
    padding: 0;
}

/* index紫 */
.topicbox2 {
    position: relative;
    margin: 2em 0;
    padding: 20px;
    border: solid 3px #8B00FF;
    border-radius: 8px;
}
.topicbox2 .box-title {
    position: absolute;
    display: inline-block;
    top: -10px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 17px;
    background: #FFF;
    color: #8B00FF;
    font-weight: bold;
}
.topicbox2 p {
    margin: 0; 
    padding: 0;
}

/* てんてんトピックボックス */
.topicbox-dot {
    position: relative;
    margin: 2em 0;
    padding: 20px;
    border: dotted 2px #8B00FF;
    border-radius: 8px;
}
.topicbox-dot .box-title {
    position: absolute;
    display: inline-block;
    top: -10px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 17px;
    background: #FFF;
    color: #A16EFF;
    font-weight: bold;
}
.topicbox-dot p {
    margin: 0; 
    padding: 0;
}

/* ノーマルな枠 水色 */
.normalbox {
    padding: 0.5em 1em;
    margin: 10px 0;
    color: #fff;/*文字色*/
    background: #63B4D1;
    border: solid 3px #63B4D1;/*線*/
    border-radius: 10px;/*角の丸み*/
    text-align: center;
}
.normalbox p {
    margin: 0; 
    padding: 0;
    color: #fff;/*文字色*/
}

.normalbox a {
 color: #fff;
 font-weight:bold;
}

.normalbox a:link { /*アクセスしたことのないリンク*/
color:#fff;
}

.normalbox a:visited {
color:#fff;
}

/* ノーマルな枠 水色2 */
.normalbox2 {
    padding: 0.5em 1em;
    margin: 10px 0;
    color: #fff;/*文字色*/
    background: #63B4D1;
    border: solid 3px #63B4D1;/*線*/
    border-radius: 10px;/*角の丸み*/
    text-align: center;
    display:inline-block;
}
.normalbox2 p {
    margin: 0; 
    padding: 0;
    color: #fff;/*文字色*/
}

.normalbox2 a {
 color: #fff;
 font-weight:bold;
}

.normalbox2 a:link { /*アクセスしたことのないリンク*/
color:#fff;
}

.normalbox2 a:visited {
color:#fff;
}

/* おしゃれボタン　水色 */
.btn-01 {
  text-align: center;
  background-color: #63B4D1;
  border: 2px solid #63B4D1;
  color: #63B4D1;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 4px;
  position: relative;
}

.btn-01 span.span1 {
  position: relative;
  z-index: 1;
}
a.btn-01 {
  color: #63B4D1;
}
a.btn-01:link {
  color: #63B4D1;
}
a:visited.btn-01 {
  color: #63B4D1;
}
a.btn-01:hover {
  color: #FFF;
}


.btn-01::before,
.btn-01::after {
  content: "";
  display: block;
  background-color: #FFF;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
}
.btn-01:before {
  left: 0;
}
.btn-01::after {
  right: 0;
}

.btn-01:hover:before,
.btn-01:hover:after {
  width: 0;
  background-color: #FFF;
}

.btn-01:hover {
  color: #FFF;
}

/* ノーマルな枠 紫 */
.normalbox3 {
    display: block; /* <div>がブロック要素になる */
    width: 100%; /* 画面幅に合わせる */
    padding: 0.5em 1em;
    margin: 10px 0;
    color: #fff;/*文字色*/
    background: #A333FF;
    border: solid 3px #A333FF;/*線*/
    border-radius: 10px;/*角の丸み*/
    cursor: pointer; /* カーソルをポインターに */
    text-align: center;
}

.normalbox3 a {
    display: block; /* <a>タグをブロック要素に */
    padding:	0px 0; /* クリック領域を広げる */
    color: #fff; /* 文字色を白に */
    text-decoration: none; /* 下線を削除 */
    font-weight: bold; /* 文字を太字に */
}

/* ホバー時のスタイル */
.hogepiyobox:hover {
    background: #ab023c; /* 背景色を濃くする */
}

.normalbox3 a:link { /*アクセスしたことのないリンク*/
color:#fff;
}

.normalbox3 a:visited {
color:#fff;
}

/* ノーマルな枠 紫２ */
.normalbox4 {
    padding: 0.5em 1em;
    margin: 10px 0;
    color: #fff;/*文字色*/
    background: #A333FF;
    border: solid 3px #A333FF;/*線*/
    border-radius: 10px;/*角の丸み*/
    text-align: center;
    display:inline-block;
}
.normalbox4 p {
    margin: 0; 
    padding: 0;
    color: #fff;/*文字色*/
}

.normalbox4 a {
 color: #fff;
 font-weight:bold;
}

.normalbox4 a:link { /*アクセスしたことのないリンク*/
color:#fff;
}

.normalbox4 a:visited {
color:#fff;
}

/* ノーマルな枠 紫２ */
.simple-box {
    display: block; /* <div>がブロック要素になる */
    width: 100%; /* 画面幅に合わせる */
    padding: 0.5em 1em;
    margin: 10px 0;
    color: #fff;/*文字色*/
    background: #A333FF;
    border: solid 3px #A333FF;/*線*/
    border-radius: 3px;/*角の丸み*/
    cursor: pointer; /* カーソルをポインターに */
    text-align: center;
}

.simple-box a {
    display: block; /* <a>タグをブロック要素に */
    padding:	0px 0; /* クリック領域を広げる */
    color: #fff; /* 文字色を白に */
    text-decoration: none; /* 下線を削除 */
    font-weight: bold; /* 文字を太字に */
}

.simple-box a:link { /*アクセスしたことのないリンク*/
color:#fff;
}

.simple-box a:visited {
color:#fff;
}

/* おしゃれボタン　紫 */
.btn-05 {
  text-align: center;
  background-color: #A333FF;
  border: 2px solid #A333FF;
  color: #A333FF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 4px;
  position: relative;
}

.btn-05 span.span1 {
  position: relative;
  z-index: 1;
}
a.btn-05 {
  color: #A333FF;
}
a.btn-05:link {
  color: #A333FF;
}
a:visited.btn-05 {
  color: #A333FF;
}
a.btn-05:hover {
  color: #FFF;
}


.btn-05::before,
.btn-05::after {
  content: "";
  display: block;
  background-color: #FFF;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
}
.btn-05:before {
  left: 0;
}
.btn-05::after {
  right: 0;
}

.btn-05:hover:before,
.btn-05:hover:after {
  width: 0;
  background-color: #FFF;
}

.btn-05:hover {
  color: #FFF;
}
/* 　紫 */
.btn-06 {
  text-align: center;
  background-color: #A333FF;
  border: 2px solid #A333FF;
  color:  #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 4px;
  position: relative;
}
a.btn-06 {
  color: #FFF;
}
a.btn-06:link {
  color: #FFF;
}
a.btn-06:visited {
  color: #FFF;
}
a.btn-06:hover {
  color: #FFF;
}

/* ノーマルな枠 オレンジ */
.normalbox9 {
    padding: 0.5em 1em;
    margin: 10px 0;
    color: #fff;/*文字色*/
    background: #e17b34;
    border: solid 3px #e17b34;/*線*/
    border-radius: 10px;/*角の丸み*/
    text-align: center;
}
.normalbox9 p {
    margin: 0; 
    padding: 0;
    color: #fff;/*文字色*/
}

.normalbox9 a {
 color: #fff;
 font-weight:bold;
}

.normalbox9 a:link { /*アクセスしたことのないリンク*/
color:#fff;
}

.normalbox9 a:visited {
color:#fff;
}

/* ノーマルな枠 オレンジ2 */
.normalbox10 {
    padding: 0.5em 1em;
    margin: 10px 0;
    color: #fff;/*文字色*/
    background: #e17b34;
    border: solid 3px #e17b34;/*線*/
    border-radius: 10px;/*角の丸み*/
    text-align: center;
    display:inline-block;
}
.normalbox10 p {
    margin: 0; 
    padding: 0;
    color: #fff;/*文字色*/
}

.normalbox10 a {
 color: #fff;
 font-weight:bold;
}

.normalbox10 a:link { /*アクセスしたことのないリンク*/
color:#fff;
}

.normalbox10 a:visited {
color:#fff;
}

/* おしゃれボタン　オレンジ */
.btn-04 {
  text-align: center;
  background-color: #E98771;
  border: 2px solid #E98771;
  color: #E98771;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 4px;
  position: relative;
}

.btn-04 span.span1 {
  position: relative;
  z-index: 1;
}
a.btn-04 {
  color: #E98771;
}
a.btn-04:link {
  color: #E98771;
}
a:visited.btn-04 {
  color: #E98771;
}
a.btn-04:hover {
  color: #FFF;
}

.btn-04::before,
.btn-04::after {
  content: "";
  display: block;
  background-color: #FFF;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
}
.btn-04:before {
  left: 0;
}
.btn-04::after {
  right: 0;
}

.btn-04:hover:before,
.btn-04:hover:after {
  width: 0;
  background-color: #FFF;
}

.btn-04:hover {
  color: #FFF;
}
/* ノーマルな枠コーラル */
.normalbox9-coral {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #fff;/*文字色*/
    background: #ff85a3;
    border: solid 3px #ff85a3;/*線*/
    border-radius: 10px;/*角の丸み*/
    text-align: center;
}
.normalbox9-coral p {
    margin: 0; 
    padding: 0;
    color: #fff;/*文字色*/
}

.normalbox9-coral a {
 color: #fff;
 font-weight:bold;
}

.normalbox9-coral a:link { /*アクセスしたことのないリンク*/
color:#fff;
}

.normalbox9-coral a:visited {
color:#fff;
}

/* ノーマルな枠 コーラル2 */
.normalbox10-coral {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #fff;/*文字色*/
    background: #ff85a3;
    border: solid 3px #ff85a3;/*線*/
    border-radius: 10px;/*角の丸み*/
    text-align: center;
    display:inline-block;
}
.normalbox10-coral p {
    margin: 0; 
    padding: 0;
    color: #fff;/*文字色*/
}

.normalbox10-coral a {
 color: #fff;
 font-weight:bold;
}

.normalbox10-coral a:link { /*アクセスしたことのないリンク*/
color:#fff;
}

.normalbox10-coral a:visited {
color:#fff;
}

/* おしゃれボタン　コーラル */
.btn-04-coral {
  text-align: center;
  background-color: #ff85a3;
  border: 2px solid #ff85a3;
  color: #ff85a3;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 4px;
  position: relative;
}

.btn-04-coral span.span1 {
  position: relative;
  z-index: 1;
}
a.btn-04-coral {
  color: #ff85a3;
}
a.btn-04-coral:link {
  color: #ff85a3;
}
a.btn-04-coral:visited {
  color: #ff85a3;
}
a.btn-04-coral:hover {
  color: #FFF;
}

.btn-04-coral::before,
.btn-04-coral::after {
  content: "";
  display: block;
  background-color: #FFF;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
}
.btn-04-coral:before {
  left: 0;
}
.btn-04-coral::after {
  right: 0;
}

.btn-04-coral:hover:before,
.btn-04-coral:hover:after {
  width: 0;
  background-color: #FFF;
}

.btn-04-coral:hover {
  color: #FFF;
}

/* ノーマルな枠コーラル2 */
.normalbox9-coral2 {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #ff85a3;/*文字色*/
    background: #fff;
    border: solid 3px #ff85a3;/*線*/
    border-radius: 10px;/*角の丸み*/
    text-align: center;
}
.normalbox9-coral2 p {
    margin: 0; 
    padding: 0;
    color: #ff85a3;/*文字色*/
}

.normalbox9-coral2 a {
 color: #ff85a3;
 font-weight:bold;
}

.normalbox9-coral2 a:link { /*アクセスしたことのないリンク*/
color:#ff85a3;
}

.normalbox9-coral a:visited {
color:#ff85a3;
}

/* ノーマルな枠 コーラル2-2 */
.normalbox10-coral2 {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #ff85a3;/*文字色*/
    background: #fff;
    border: solid 3px #ff85a3;/*線*/
    border-radius: 10px;/*角の丸み*/
    text-align: center;
    display:inline-block;
}
.normalbox10-coral2 p {
    margin: 0; 
    padding: 0;
    color: #ff85a3;/*文字色*/
}

.normalbox10-coral2 a {
 color: #ff85a3;
 font-weight:bold;
}

.normalbox10-coral2 a:link { /*アクセスしたことのないリンク*/
color:#ff85a3;
}

.normalbox10-coral2 a:visited {
color:#ff85a3;
}

/*---ダウンロードボタン---*/
.dl_tablecheck{
  padding:8px;
  border-radius: 20px;
  color:#fff;
  font-weight:bold;
  background:#6f28c2;
  text-align:center;
  width:120px;
}

.dl_tablecheck a{
  text-align:center;
  color:#fff;
}
.dl_tablecheck a:link{
  color:#fff;
}
.dl_tablecheck a:visited{
  color:#fff;
}

/* 見出し */
.banner{
    color : #383c3c;
    font-size : 150% ;
    padding : 0.1em 0.5em ;
    border-left : solid 15px #6F28C2 ;
    border-bottom : solid 1px #6F28C2 ;
}

/* 見出し2 */
.normalbox5 {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #fff;/*文字色*/
    background: #114E88;
    border: solid 3px #114E88;/*線*/
    border-radius: 20px;/*角の丸み*/
    text-align: center;
    box-shadow: 3px 3px 4px #ABABAB;
}
.normalbox5 p {
    margin: 0; 
    padding: 0;
    color: #fff;/*文字色*/
}

.normalbox5 a {
 color: #fff;
 font-weight:bold;
}

.normalbox5 a:link { /*アクセスしたことのないリンク*/
color:#fff;
}

.normalbox5 a:visited {
color:#fff;
}

/*---パンくずリスト---*/

.breadcrumbbox {
  margin-left: 0;
  padding-left: 0;
}

.breadcrumbbox li {
  display:inline-block;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}

.breadcrumbbox li:after {
  /* ▶を表示*/
  font-family: "FontAwesome";
  content: '\f0da';
  font-weight: 900;
  padding: 0 4px;
  color: #72a1f7;
}

.breadcrumbbox li:last-child:after {
  content: '';
}

.breadcrumbbox li a {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 15px;
  tExamplet-decoration: none;
  color: #72a1f7;
  background: #c6e2ff;
  font-size: 0.9em;
}

.breadcrumb li a:hover {
  background: #c9dbfb;
}


/*---画像のシャドー---*/
img.filter { filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.3)); }


.rlmg {
    display: table-cell;
    width: 100px;
    height: 100px;
    vertical-align: middle;
}
.box11{
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #5d627b;
    background: white;
    border-top: solid 5px #5d627b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
.box11 p {
    margin: 0;
    padding: 0;
}

/*アコーディオン*/

/*ボックス全体*/
.accbox {
    margin: 2em 0;
    padding: 0;
    max-width: 400px;/*最大幅*/
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 1.5px 0;
    padding : 13px 12px;
    color: #ffba47;
    font-weight: bold;
    background: #fff2cc;
    cursor :pointer;
    transition: all 0.5s;
}

/*アイコンを表示*/
.accbox label:before {
    content: '\f054';
    font-family: 'FontAwesome';
    padding-right: 8px;
}

/*ラベルホバー時*/
.accbox label:hover {
    background :#ffe9a9;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 5px;
    background: #fff5eb;
    opacity: 1;
}

.accbox .accshow p {
    margin: 15px 10px}

/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: '\f078';
}

/* テーブル　シンプル枠 */
.td .contract{
  background-color:#c6c6ff
}

/* テーブル　デザイン１ 青
.design1{
  width: 100%;
  border-collapse: collapse;
}

.design1 tr{
  border-bottom: solid 2px #fff;
}

.design1 tr:last-child{
  border-bottom: none;
}

.design1 th{
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #6f28c2;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.design1 th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #6f28c2;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.design1 td{
  text-align: left;
  width: 70%;
  background-color: #eee;
  padding: 10px 10px 10px 20px;
}
*/

/* テーブル　デザイン１ 青*/
.wysiwyg-table {
  display: block;
  width: 100%;
}

table.design1 {
  width: 100% !important;
  border-collapse: collapse;
}

table.design1 tr {
  border-bottom: solid 2px #fff;
}

table.design1 tr:last-child {
  border-bottom: none;
}

table.design1 th {
  position: relative;
  width: 30%;
  background-color: #6f28c2;
  color: white;
  text-align: center;
  padding: 10px 10px 10px 15px !important;
}

table.design1 th:after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 10px solid #6f28c2;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table.design1 td {
  width: 70%;
  background-color: #eee;
  padding: 10px 15px 10px 35px !important;
}

/* テーブル　下線スタイル */
.design2{
/*   width: 100%; */
  border-spacing: 0;
  table-layout: fixed;
}

.design2 th{
  border-bottom: solid 2px #A333FF;
  padding: 15px 12px;
}

.design2 td{
  border-bottom: solid 2px #ddd;
  padding: 15px 12px;
}

/* テーブル　横線のみ */
.design3 {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
/*   width: 650px; */
  table-layout: fixed;
  color: #a569e4;
}

.design3 tr {
  background-color: #fff;
  padding: .35em;
  border-bottom: 1px dotted #d5b3f2;
}
.design3 tr:last-child{
   border-bottom: 2px solid #6904d3;
}
.design3 th,
.design3 td {
  padding: 1em 10px 1em 1em;
}
.design3 th {
    color: #8941dc;
}
@media screen and (max-width: 600px) {
  .design3 {
    border: 0;
    width:100%
  }
  .design3 th{
    display: block;
    border-right: none;
    border-bottom: 2px solid #402175;
    padding-bottom: .6em;
    margin-bottom: .6em;

  }
  .design3 thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  .design3 tr {
    display: block;
    margin-bottom: 2em;
        border-bottom: 2px solid #402175;
  }
  
  .design3 td {
    border-bottom: 1px solid #bbb;
    display: block;
/*     font-size: .8em; */
/*     text-align: right; */
    position: relative;
    padding: .625em .625em .625em 4em;
    border-right: none;
  }
  
 .design3 td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
  }
  
  .design3 td:last-child {
    border-bottom: 0;
  }
}
/*=========================================*/
/*　　ページトップ
/*=========================================*/
#page_top{
    position: fixed;
    right: 43px;
    width: 65px;
    height: 65px;
    border-radius: 65px;
    text-align: center;
    background: #999;
    opacity: .5;
    z-index: 10000;
    transition: visibility 0s linear 0s,opacity 1s;
    color: #fff;
  bottom: -120px;
}
#page_top a{
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0d8';
  font-size: 40px;
  color: #fff;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0px;
  bottom: 40px;
  right: 4px;
  left: 0;
  margin: auto;
  text-align: center;
}


/*==========================================*/
/*   お知らせテスト
/*==========================================*/
  
@media (min-width: 768px)
.newstopics {
    border: 1px solid rgba(0, 101, 158, 1);
    border-radius: 10px;
    padding: 12px 20px 12px 20px;
    margin: 80px 20px 20px 20px;
}

.newstopics {
    border: 1px solid #522F60;
    border-radius: 10px;
    background-color: #f7f6fb;
    font-size: 15.5px;
    padding: 5px 20px 12px 20px;
    margin: 30px auto;
    position: relative;
    text-align: left;
    max-width: 800px;
}

@media (min-width: 768px)
.newstopics h4 {
    padding: 0;
}
.newstopics h4 {
    font-size: 20px;
    line-height: 1.2em;
    color: #522F60;
    margin-bottom: 18px;
    padding: 10px 20px 0 0;
}
.newstopics h4::before {
    content: "\1f4f0";
    font-size: 24px;
    font-family: "Entypo";
    margin-right: 8px;
}

.newstopics ul {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

.newstopics ul li {
    display: block;
    padding: 6px 20px;
    border-top: 1px dotted #ddd;
    width: 100%;
}

@media (min-width: 768px)
.newstopics ul li span {
    display: inline;
    margin-right: 30px;
}
  
.newstopics ul li span {
    display: inline;
    margin-right: 30px;
    color: #522F60;
}

.newstopics ul li a{
   color: #745399;
}

@media (min-width: 768px)
.newstopics > a {
    padding: 3px 10px;
}
  
.newstopics > a {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
    border: 1px solid #745399;
    color: #745399;
    font-size: 13px;
    border-radius: 15px;
    padding: 5px 10px;
    line-height: 1em;
    text-decoration: none;
}

/*==========================================*/
/*   Base Starts
/*==========================================*/

@charset "utf-8";
body.helpcenter-enable {
    height: 100%;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
main {
    flex: 1 0 auto;
}
body img,
body iframe {
    max-width: 100%;
}
body a,
body a:hover,
body a:focus {
    outline: 0;
    text-decoration: none;
    color: rgba(111, 40, 194, 1);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
p:empty {
    display: none;
}
/* body ul,
body ol {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
} */
body pre {
    white-space: normal;
}
table {
    border-collapse: collapse;
    text-align: left;
    width: 100%;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
body th {
    border-width: 1px 0;
    white-space: nowrap;
    
}
body td,
body th {
    padding: 8px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    vertical-align: top!important;
}
/* @media screen and (max-width: 599px) {
body td,
body th {
    width:100%;
    padding: 8px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    vertical-align: top!important;
}
} */
::-webkit-scrollbar {
    width: 15px;
    height: 1px;
}
::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 10px;
}


/*カテゴリページのバックグラウンドカラー等*/
.section-with-article-block {
    background: #fafafa;
    border: 1px solid #f6f6f6;
    padding: 25px 30px 30px 30px;
    margin: 20px 0;
    border-radius: 20px;
}
.section-with-article-block h3{
  color: #595857;
  margin-bottom: 15px;
}
.attachment-item {
display:none;
}

/*ピックアップ記事オープンボタン*/
.btn-10{
  width:75%; 
/*   max-width:520px; */
  padding:18px 18px 18px 18px;
  margin-top:15px;
  display:inline-block;
  color:#fff;
  font-weight: 900;
  font-size: 18px;
  background-color:#402175;
  background-size: 150% auto;
  border-radius:30px;
}

a.btn-10 {
  text-decoration:none;
  text-align:center;
  color:#fff;
  font-weight: 900;
  font-size: 18px;
}

a:link.btn-10 {
  color:#fff;
}

a:hover.btn-10 {
  color:#fff;
}

a:visited.btn-10 {
  color:#fff;
}

/*Team Viewer用ボタン*/
.btn-11{
  width:90%; 
  padding:12px;
  margin-top:10px;
  display:inline-block;
  color:#fff;
  font-weight: 900;
  font-size: 14px;
  background-color:#2E749E;
  background-size: 150% auto;
  border-radius:30px;
}

a.btn-11 {
  text-decoration:none;
  text-align:center;
  color:#fff;
  font-weight: 900;
  font-size: 16px;
}

a:link.btn-11 {
  color:#fff;
}

a:hover.btn-11 {
  color:#fff;
}

a:visited.btn-11 {
  color:#fff;
}

/*** 注釈 ***/

.noteyellow {
	background-color: #fbf2d0;
	padding: 10px;
	margin-left: 0px;
	margin-right: 15px;
	margin-top: 15px;
	margin-bottom: 15px;
	border-color: #D1CAAD;
	border-left-width: 5px;
	border-left-style: solid;
	color: #06363C;
}
.noteblue {
	background-color: #def1f4;
	padding: 10px;
	margin-left: 0px;
	margin-right: 15px;
	margin-top: 15px;
	margin-bottom: 15px;
	border-color: #BECFD1;
	border-left-width: 5px;
	border-left-style: solid;
	color: #06363C;
}
.notegray {
	background-color: #F3F0EE;
	padding: 10px;
	margin-left: 0px;
	margin-right: 15px;
	margin-top: 15px;
	margin-bottom: 15px;
	border-color: #D1CFCD;
	border-left-width: 5px;
	border-left-style: solid;
	color: #06363C;
}

/*** チャットおすすめボタン ***/

.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

/*背景*/
.btn-wrap {
  margin: 5px 0 15px 0;
}

.btn-c {
  font-size: 13px;
  position: relative;
  padding: 8px 15px 8px 15px;
  color: #000;
  border: 2px solid #000;
  border-radius: 100vh;
  background: #fff100;
  -webkit-box-shadow: 0 5px 0 #e6d900;
  box-shadow: 0 5px 0 #e6d900;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.btn-c span em {
  font-style: normal;

  color: #d20010;
}

.btn-c small {
  font-weight: bold;
}

.btn-c i {
  margin-right: 1rem;
}

/*downloadボタン*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.download_btn,
a.download_btn,
button.download_btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 10px 45px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5rem;
}

a.download_btn-tag {
  padding: 13px 30px 13px 75px;
  color: #fff;
  background: #664D90;
}

a.download_btn-tag:before {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  
  font-family: "Font Awesome 5 Free";
  content: '\f019';
  font-size: 20px;
  padding: 8px 0 0 2px;

  width: 50px;
  height: 100%;

  border-radius: 0.5rem 0 0 0.5rem;
  background: rgba(0, 0, 0, 0.07);
}

a.download_btn-tag:link {
  color: #fff;
}

a.download_btn-tag:visited {
  color: #fff;
}

a.download_btn-tag:hover {
  color: #fff;
  background: #79639E;
}

a.download_btn-tag i {
  font-size: 120%;
  color: #fff;

  position: absolute;
  top: 0;
  left: 0;

  width: 50px;
  padding: 1.5rem 0;

  text-align: center;
  letter-spacing: 0;
}

/* アコーディオン */

.menu_item {
    background: #fff;
    color: #33105f;
    cursor: pointer;
    display: block;
    margin-bottom: 1px;
}

.menu_item_link {
  color: #33105f;
  display: block;
  line-height: 60px;
  padding: 0 10px 0 10px;
  position: relative;
    font-size : 150% ;
    border-bottom : solid 1px #33105f ;
}

.menu_item_link:link {
  color: #33105f;
}
.menu_item_link:hover {
  color: #33105f;
}

.menu_item_link:after {
  background: #33105f;
  font-family: "Font Awesome 5 Free";
  content: '\f107';
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  display: block;
  line-height: 35px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 28px;
  width: 35px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.menu_item_link.on:after {
  font-family: "Font Awesome 5 Free";
  content: '\f106';
  color: #fff;
  font-weight: 700;  
}
 
.submenu {
  background: #fff;
  display: none;
}
ul .submenu {
    padding-left: 0!important;
}
.submenu_item {
  border-bottom: 1px solid #5200b7;
  color: #222;
  padding: 1rem;
}
li.submenu_item {
  list-style: none;
}

/* 横並びブロック*/
@media(min-width:751px){
  /*PC版のみ*/
  .yokonarabe{
    display:flex;
    width:100%;
    margin:0;
  }
  .yokonarabe>div{
    width:48%;
  }
}
/*PC・スマホ共通*/
.yokonarabe>div{
  margin:0 1%;
/*   border:1px solid #999; */
  background:#FFF;
}

/* 横並びブロック2*/
@media(min-width:751px){
  /*PC版のみ*/
  .tateyoko_tc{
    display:flex;
    width:100%;
    margin:0;
  }
  .tateyoko_tc>div{
    width:48%;
  }
}
  /*スマホ版のみ*/
@media(max-width:750px){
  .tateyoko_tc{
    display: block;
    width:100%;
    margin:0;
  }
.tateyoko_tc td{
    display: block;
    width:100%;
    margin:0;
  }
  }
/*PC・スマホ共通*/
.tateyoko_tc>div{
  margin:0 1%;
/*   border:1px solid #999; */
  background:#FFF;
}

/* 横並びブロック*/
@media(min-width:751px){
  /*PC版のみ*/
  .tateyoko{
    display:flex;
    width:100%;
    margin:0;
  }
  .tateyoko>div{
    width:100%;
  }
}
  /*スマホ版のみ*/
@media(max-width:750px){
  .tateyoko{
    display: block;
    width:100%;
    margin:0;
  }
  }
/*PC・スマホ共通*/
.tateyoko>div{
  margin:0 1%;
/*   border:1px solid #999; */
  background:#FFF;
}

/* 横並び表*/
 /*PC版のみ*/
  .table_tc{
    width:100%;
    margin:0;
  }
  .table_tc>div{
    width:48%;
  }

.table_tc td{
    padding: 10px !important;
  }

  /*スマホ版のみ*/
@media(max-width:750px){
  .table_tc{
    display: block;
    width:100%;
    margin:0;
  }
.table_tc td{
    display: block;
    width:100% !important;
    padding: 10px !important;
    margin:0;
  }
  }
/*PC・スマホ共通*/
.table_tc>div{
  margin:0 1%;
  background:#FFF;
}

.sitemap a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px auto;
  padding: 7px 20px;
  width: 150px;
  color: #444444;
  font-size: 11px;
  font-weight: 700;
  background-color: #fff;
  border: 2px solid #444444;
  border-radius: 15px;
  transition: 0.3s;
}

.sitemap a::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #444444;
  transition: 0.3s;
}

.sitemap a:hover {
  text-decoration: none;
  background-color: #eaeaea;
  color: #444444;
}

.sitemap a:hover::after {
  transform: translateX(5px);
}

 /*---リスト 設定方法---*/
  ul.Setting {
    border: solid 2px #66ABE4;
    padding: 0.5em;
    position: relative;
    margin-top: 2em;
  }
  ul.Setting li {
    line-height: 1.5;
    padding: 0.5em 0 0.5em 1.4em;
    border-bottom: dashed 1px silver;
    list-style-type: none!important;
  }
  ul.Setting li:last-of-type {
    border-bottom: none;
  }
  ul.Setting li:before {
    /*リスト内のアイコン*/
    font-family: "Font Awesome 5 Free";
    content: "\f138";/*アイコン種類*/
    font-weight: 900;
    position: absolute;
    left : 0.5em; /*左端からのアイコンまで*/
    color: #66ABE4; /*アイコン色*/
  }
  ul.Setting li:after {
    /*タイトルタブ*/
    background: #66ABE4;
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: -2px;
    bottom: 100%;
    padding: 1px 7px;
    content: "設定方法";/*タブの文字*/
    letter-spacing: 0.05em;/*字間*/
  }


/* hr装飾 */
/* 実線 */
.hr1 {
  border-top: 1px solid #a9a9a9;
}

/* 二重線 */
.hr2 {
  border-top: 3px double #a9a9a9;
}

/* 破線 */
.hr3 {
  border-top: 1px dashed #a9a9a9;
}

/*　問合せボタン　*/

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

/* 背景用*/
body {
  padding: 0 10px;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn-wrap-pc-sp {
  max-width: 435px;
  margin: 0 auto 20px;
}

a.btn-pc-sp {
  line-height: 1.4;
  width: 49.5%;
  padding: 1.25rem 0;
  color: #ffff;
}

a.btn--contact {
  font-size: 16px;
  display: block;
  margin-top: 10px;
  padding: 1.6rem 0;
  color: #fff;
  border-radius: 100vh;
  background: #A333FF;
  -webkit-box-shadow: 0 5px 0 #6F28C2;
  box-shadow: 0 5px 0 #6F28C2;
}

a.btn--contact .number {
  line-height: 1;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 2rem;
  letter-spacing: 0;
  color: #A333FF;
  border-radius: 0.5rem;
  background: #fff;
}

a.btn--contact:link {
  color: #fff;
}

a.btn--contact:visited {
  color: #fff;
}

a.btn--contact:hover {
  color: #fff;
}



a.btn--tel {
  display: block;
/*   margin-top: 15px; */
  padding: 1rem 0;
  color: #fff;
  border-radius: 100vh;
  background: #A333FF;
  -webkit-box-shadow: 0 5px 0 #6F28C2;
  box-shadow: 0 5px 0 #6F28C2;
}

a.btn--tel .number {
  line-height: 1;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 2rem;
  letter-spacing: 0;
  color: #A333FF;
  border-radius: 0.5rem;
  background: #fff;
}

a.btn--tel:link {
  color: #fff;
}

a.btn--tel:visited {
  color: #fff;
}

a.btn--tel:hover {
  color: #fff;
}

.btn--chat {
  display: block;
  margin-top: 15px;
  padding: 1rem 0;
  color: #fff;
  border-radius: 100vh;
  background: #E9B81A;
  -webkit-box-shadow: 0 5px 0 #d9a62e;
  box-shadow: 0 5px 0 #d9a62e;
}

.btn--chat .number {
  line-height: 1;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 2rem;
  letter-spacing: 0;
  color: #E9B81A;
  border-radius: 0.5rem;
  background: #fff;
}

.btn--chat:link {
  color: #fff;
}

a.btn--chat:visited {
  color: #fff;
}

a.btn--chat:hover {
  color: #fff;
}

/* チャット案内用ふきだし */
.balloon1 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 10px 15px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 14px;
  background: #EEEEEE!important;
  border-radius: 15px;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #EEEEEE;
}

.balloon1 p {
  margin: 0;
  padding: 0;
  background: #EEEEEE;
}

@media screen and (max-width:480px) {
  .balloon1 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 10px 15px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 14px;
  background: #EEEEEE!important;
 border-radius: 15px;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  margin-left: -13px;
  border: 15px solid transparent;
  border-bottom: 15px solid #EEEEEE;
}

.balloon1 p {
  margin: 0;
  padding: 0;
  background: #EEEEEE;
}}


/* 画像拡大 */

.lbpp {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,.7);
    opacity: 0;
    transition: .3s opacity ease;
    pointer-events: none;
    z-index: 100;
}

.lbpp img {
    width: auto !important;
    max-height: １００%!important;
    cursor: pointer;
}

.lbpp img,
.lbpp iframe {
    transform: scale(.85);
    transition: .3s all ease;
}

.lbpp:target {
    opacity: 1;
    pointer-events: auto;
    z-index: 101;
}

.lbpp:target img,
.lbpp:target iframe {
    transform: scale(1);
}

/* なんちゃって閉じるボタン*/
.lbpp::before,.lbpp::after {
    display: block;
    position: fixed;
    content: "";
    width: 24px;
    height:3px;
    top: 24px;
    right: 12px;
    background: #fff;
    border-radius: 4px;
}
.lbpp::before {
    transform: rotate(-315deg);
}
.lbpp::after {
    transform: rotate(315deg);
}
  }

/* table横スクロール */
#table02 th, #table02 td {
  text-align: center;
  width: 20%;
  min-width: 130px;
  padding: 10px;
  height: 60px;
}

/* tab */
@media only screen and (max-width: 768px) {
  #table02 {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
  }
}

/*** アコーディオン ***/
.accordion-TC {
/*     max-width: 500px; */
    margin-bottom: 7px;
    border-bottom: 2px solid #d6dde3;
}

.accordion-TC summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 20px;
    color: #333333;
  margin-top: 7px;
  background: #FAFAFA;
  font-size:14px;
/*     font-weight: 600; */
    cursor: pointer;
}

.accordion-TC summary::-webkit-details-marker {
    display: none;
}

.accordion-TC summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion-TC[open] summary::after {
    transform: rotate(225deg);
}

.accordion-TC p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-TC[open] p {
    transform: none;
    opacity: 1;
}

/*** テーブル固定 ***/
.th_fixed_tc{
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-left: none;
  border-right: none;
}
.th_fixed_tc:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 1px solid #f00;
  border-right: 1px solid #f00;
/*   background: #ffeb3b; */
  z-index: -1;
}

/*==========================================*/
/*   記事装飾終了
/*==========================================*/

/*==========================================*/
/*   トップページ装飾一覧
/*==========================================*/

/***** 言語別 非表示 *****/
html[lang='ja'] *:is([lang]):not([lang='ja']),
html[lang='en-us'] *:is([lang]):not([lang='en-us']),
html[lang='ko'] *:is([lang]):not([lang='ko']),
html[lang='zh-cn'] *:is([lang]):not([lang='zh-cn']){
  display:none!important;
}

/*** 各種メニュー（旧フッター）　***/
.tc-contents-R {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  background-color: #fff;
  
  width: 60px; /* バナーの横幅 */
  height: 60px; /* バナーの縦幅 */
  position: fixed ;
  margin: 1px;
  right: 0;
  bottom: 0;
  z-index: 999;
  border-radius : 12px;
}

.tc-contents-R a {
  display: block;
  width: 100%;
  height: 100%;
}

.tc-contents-R .caption {
	font-size:12px;
  font-weight: 900;
	text-align:center;
  padding-top:18px;
	color:#fff;
}

.tc-contents-R .mask {
	width:			60px;
	height:			60px;
	position:		absolute;	/* 絶対位置指定 */
	top:			0;
	left:			0;
	opacity:		0;	/* マスクを表示しない */
	background-color:	rgba(0,0,0,0.4);	/* マスクは半透明 */
	-webkit-transition:	all 0.2s ease;
	transition:		all 0.2s ease;
  border-radius : 10px;
}
.tc-contents-R:hover .mask {
	opacity:		1;	/* マスクを表示する */
}

/*サポート電話予約*/
#tc-R-btn01 {
  color: #fff;
  top: 180px;
}
@media screen and (max-width: 480px) {
  #tc-R-btn01{
    display:none;
  }
}
#tc-R-btn01 i{
  font-size:60px;
  color:#9564E2;
  margin: 0 auto;
  vertical-align:middle;
}

/*LINE*/
#tc-R-btn02 {
  color: #fff;
  top: 240px;
}
@media screen and (max-width: 480px) {
	#tc-R-btn02{
    display:none;
  }
}
#tc-R-btn02 i{
  font-size:60px;
  color:#06C152;
  margin: 0 auto;
  margin-left: -7.5px;
}

/*予備*/
#tc-R-btn03 {
  background-color: #333;
  color: #fff;
  top: 120px;
}
#tc-R-btn03:hover {
  background-color: #59b1eb;
}
@media screen and (max-width: 480px) {
	#tc-R-btn03{
    display:none;
  }
}

/*** フッター ***/
.footer-menu{
  width: 100%;
  position: fixed;
  margin: 0;
  bottom: 0;
  left: 0;
  z-index:999; 
}
/* PC */
.btn-social-square-pc ul {
  list-style: none;
  display: -webkit-flex;
  display: flex;
}
.btn-social-square-pc li {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  background: #7E7E7E;
  width: 100%;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
  color: #fff;
  font-size: 18px;
  border-right: dotted 1.5px #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.btn-social-square-pc .footer-pc3 {
  width: 200%;
  background: #C0BACF;
}
/* .btn-social-square-pc .footer-pc3:hover {
  width: 200%;
} */
.btn-social-square-pc li:hover {
  width: 200%;
}
.btn-social-square-pc .footer-pc1:hover {
  background: #7839C6;
}
.btn-social-square-pc .footer-pc2:hover {
  background: #39B900;
}
/* .btn-social-square-pc .footer-pc3:hover {
  background: #C8B6F2;
} */
.btn-social-square-pc .footer-pc4 {
  background: #e17b34;
} 
.btn-social-square-pc a {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: normal;
  text-decoration: none;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn-social-square-pc a:link {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  color: #fff;
}
.btn-social-square-pc a:visited {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  color: #fff;
}
.btn-social-square-pc a:hover {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  color: #fff;
}
.btn-social-square-pc a:active {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  color: #fff;
}
.btn-social-square-pc li i {
  line-height:100px;
  text-align: center;
  color: #fff;
  font-size: 30px;
}

.btn-social-square-sp {
  display:none;
}
.btn-social-square-sp btn-social-square--manual {
  display:none;
}
.btn-social-square-sp btn-social-square--setting {
  display:none;
}
.btn-social-square-sp btn-social-square--anke {
  display:none;
}
.btn-social-square-sp btn-social-square--crm {
  display:none;
}
.oshirase-sp{
  display:none;
}

html[lang=en-us] .btn-social-square-sp {
    display: none;
}

/* スマホ */
@media screen and (max-width: 480px){
.btn-social-square-sp {
  display: inline-block;
  text-decoration: none;
  width: 50px;
  margin:2px;
  margin-top: 5px;
  margin-bottom: 5px;
  height: 50px;
  line-height: 50px;
  font-size: 23px;
  color:white;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
  font-weight: bold;
  transition: .3s;
}
.btn-social-square-sp i {
  line-height:50px;
}
.btn-social-square-sp:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  color: #fff;
}
.btn-social-square--manual {
  background: #7839C6;
}
.btn-social-square--setting {
  background: #9564E2;
}
.btn-social-square--anke {
  background: #C8B6F2;
}
.btn-social-square--crm {
  background: #e17b34;
}
.btn-social-square--line {
  background: #39B900;
}
.menu .banner{
  display:none;
}
.oshirase-sp{
  display:block;
}
.oshirase-pc{
  display:none;
}
.btn-social-square-pc {
  display:none;
}
}

/*** ピックアップ記事オープンボタン ***/
.section-open-btn{
  display:block;
  letter-spacing: 4px;
  text-decoration: none; 
  padding: 12px; 
  text-align: center; 
  border-radius: 30px; 
  border: solid; 
  color: #fff; 
  width:200px;
  margin-top:15px !important;
  margin:0 auto;
  background-color: #8244CC; 
  font-weight: 900;
}

a.section-open-btn {
  text-decoration:none;
  text-align:center;
  color:#fff;
  font-weight: 900;
  font-size: 18px;
}

a:link.section-open-btn {
  color:#fff;
}

a:hover.section-open-btn {
  color:#fff;
}

a:visited.section-open-btn {
  color:#fff;
}

/*** サブタイトル ***/
.titlesub{
  display: inline-block;
  background:linear-gradient(transparent 60%, #99ccff 0%);
}

/** 最上部お知らせバナー **/
.tc_top_content{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin: 0 calc(50% - 50vw) ;
  color: #232433;
  background-color:#FEBD45;
  width: 100vw;
  font-weight:900;
}
@media screen and (max-width: 480px) {
    .tc_top_content{
  font-size: 13px;
}
}

.top_content_btn{
  font-size: 13px;
  margin:0 0 0 20px;
  padding: 5px 10px;
  border: solid 2px #232433;
  border-radius:10px;
}

.fa-bullhorn:before {
  font-family: "Font Awesome 5 Free";
  content: "/f0a1";
  font-size:23px;
  margin: 0 0 1px 0;
}
@media screen and (max-width: 480px) {
    .fa-bullhorn:before{
  font-size: 19px;
}
}

.top_content_btn a{
  color: #232433;
}

.top_content_btn a:link{
  color: #232433;
}

.top_content_btn a:visited{
  color: #232433;
}

.top_content_btn a:hover{
  color: #232433;
}

/** バナー設置位置 **/
.top-banner{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  color:#333333;
}

.top-banner li{
  margin: 0 0 30px 0;
  
}
@media screen and (min-width:900px){
    .top-banner li{
  margin: 0 5px;
}
}

#main-content.section.hero{
  margin-bottom: 0;
}

/** バナー部分のボタン **/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.banner-wrap {
  padding: 30px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background: #FBFBFB;
  border-bottom:solid 1px #ECECEC;
}

@media screen and (max-width:750px){
    .banner-wrap{
        display:none
    } 
}

.banner-blocks{
  display: flex;
  box-sizing: border-box;
  color: #444444;
  flex: 1 0;
  margin: 0 0 30px;
  max-width: 100%;
  text-align: center;
}

.banner-btn {
  display:flex;
  font-size:17px;
  font-weight: 700;
  padding: 10px 30px;
  vertical-align: middle;
  flex: 1 0;
  justify-content: center;
  border: 3px solid #444444;
  border-radius: 0.5rem;
  color: #444444;
  letter-spacing: 0.1em; 
  background: #fff;
}

@media screen and (max-width: 1180px){
.banner-btn {
  font-size:15px;
}
  }

a.banner-btn:link{
  color: #444444;
}

a.banner-btn:visited{
  color: #212529;
}

a.banner-btn:hover{
  color: #212529;
}

/** バナー表示画像　**/
.tc_banner_img{
  margin-right: 10px;
  width: 80px;
  height: 80px;
  text-align: center;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1180px){
.tc_banner_img {
  margin-right: 10px;
  width: 60px;
  height: 60px;
}
}
/* 一番左（逆引き辞典） */
.banner-img-event{
  background-image: url(https://support-restaurants.tablecheck.com/hc/article_attachments/12590068971673);
}
/* 一番左 */
.banner-img-tcpoint{
  background-image: url(https://tablesolution.zendesk.com/guide-media/01KPSY7DY1RGR82MG83YYGXEA7);
}
/* 左から2番目（セミナー） */
.banner-img-seminar{
  background-image: url(https://tablesolution.zendesk.com/hc/article_attachments/17160822750873);
}
/* 右から2番目（操作トレーニング） */
.banner-img-training{
  background-image: url(https://support-restaurants.tablecheck.com/hc/article_attachments/12592657632281);
}
/* 一番右 */
.banner-img-contact{
  background-image: url(https://support-restaurants.tablecheck.com/hc/article_attachments/12590038408217);
}

/** バナーテキスト　**/
.tc-banner-text{
  margin-top: auto;
  margin-bottom: auto;
}

/** よくある質問　**/
.help-tc-pickup {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 60px 0 30px 0;
}
@media (min-width: 1024px){
.help-tc-pickup {
    padding: 60px 0;
}
  }
.help-tc-pickup h1{
  margin-bottom:25px;
}

.help-tc-pickup2 {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 60px 0 40px 0;
    background-color: #FBFBFB;
}
@media (min-width: 1024px){
.help-tc-pickup2 {
    padding: 60px 0;
}
  }

/*よくある質問、ピックアップ横並び*/
.help-tc_inner {
/*     max-width: 1160px; */
    margin: 15px auto;
    padding: 0 5%;
}

.help-tc_wrap {
    display: grid;
    grid-template-columns: repeat(1, 100%);
    grid-row-gap: 10px;
}
@media (min-width: 1024px){
.help-tc_wrap {
    grid-template-columns: repeat(3, calc((100% - 40px) / 3));
    grid-row-gap: 30px;
    grid-column-gap: 20px;
}
}

.help-tc_list {
  padding: 0 10px;
  position: relative;
}
@media screen and (max-width: 300px) {
  .help-tc_list {
    column-count: auto;
  }
}

.help-tc_list li {
  color: #2d8fdd;
  font-size:14px;
  text-align: left;
  border-bottom: 1px solid #dadada;
  margin-bottom: 3px;/*下のバーとの余白*/
   line-height: 1.5;
  padding: 10px 7px;
  list-style-type: none!important;/*ポチ消す*/
}

.help-tc_list li a:link {
  color:#333;
}

.help-tc_list li a:visited {
  color:#333;
}

.help-tc_list li a:hover {
  color:#333;
}

.help-tc_item_1 a{
  color: #c00;
}

/** TOP動画 **/
.top_movie {
    padding: 0 10px;
  }

@media screen and (max-width: 480px) {
  .top_movie {
    margin-bottom:50px !important;
  }
}

/** セミナー開催日ボタン **/
.top-seminar {
  vertical-align: top;
  position: relative;
  display: inline-block;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 0 3px 0 7px;
  height: 28px;
  line-height: 28px;
  text-decoration: none;
  color: #747772;
  background: #FEE006;/*背景色*/
  font-size: 13px;
}
.top-seminar:after {/*三角の部分*/
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  border-style: solid;
  border-color: transparent;
  border-left-color: #FEE006;/*背景色*/
  border-width: 14px 12px;
  width: 0;
  height: 0;
}

/*****フッター*****/
.tc_navlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 0;
}
@media (min-width: 1024px){
.tc_navlist {
    justify-content: flex-end;
    flex-wrap: nowrap;
    margin: 0;
}
  }

.tc_navitem {
    position: relative;
    margin: 0 0 20px;
    width: calc(50% - 5px);
    line-height: 1em;
    height: 1em;
}
@media (min-width: 1024px){
.tc_navitem {
    margin: 0 10px;
    width: auto;
}
  }

.tc_nav_inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 5%;
}
@media (min-width: 1160px){
.tc_nav_inner {
    padding: 0;
    width: 90%;
}
  }

@media (min-width: 1024px){
.tc_nav_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  }

/***** ダイナー向け誘導 *****/
.header_contents{
  display: flex;
  justify-content: center;
  align-items: center;
}

.diner_page{
  margin-right:20px;
}

.diner_page a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right:10px;
  padding: 7px 20px;
  width: 100%;
  color: #444444;
  font-size: 13px;
  font-weight: 700;
  background-color: #fff;
  border: 2px solid #444444;
  border-radius: 15px;
  transition: 0.3s;
}
.diner_page a::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #444444;
  transition: 0.3s;
}

.diner_page a:hover {
  text-decoration: none;
  color: #444444;
}

@media screen and (max-width: 480px) {
	.diner_page a {

  justify-content: space-between;
  align-items: center;
  margin-right:5px;
  padding: 5px 7px;
  width: 100%;
  color: #444444;
  font-size: 8px;
  font-weight: 700;
  background-color: #fff;
  border: 2px solid #444444;
  border-radius: 15px;
  transition: 0.3s;
}
.diner_page a::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent #444444;
  transition: 0.3s;
}

.diner_page a:hover {
  text-decoration: none;
  color: #444444;
}
}

/**** ピックアップ省略 ****/
.articles .article-list li:nth-of-type(n+7){
  display: none;
}

/***** 各セクションへのコンテナ *****/
.help-tc-category {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 60px 0 20px 0;
    background-color: #FBFBFB;
}
@media (min-width: 1024px){
.help-tc-category {
/*     padding: 60px 0; */
}
  }

.blocks-container{
  padding: 40px 10px;
  flex: 1 0 340px;
  max-width: 100%;
  margin:0 7px;
  margin-bottom:30px;
  background: #fff;
  border-radius: 15px;
}

.blocks-title{
  color: #65318e;
  font-weight:600;
}

.blocks-subtitle{
  font-size:18px;
  color: #6F27C1;
  font-weight:600;
}

.blocks-title-circle {
  display: inline-block;
  background: #6F27C1;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: #fff;
  text-align: center;
  margin-right:2px;
}

/*==========================================*/
/*　　　　　トップページ装飾関係終了　　　　　　*/
/*==========================================*/

.content-tags > p {
  color: #68737D;
  margin-top: 10px;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: bold;
  
}
.content-tags-add-hint {
  color: #68737D;
  font-size: 14px;
}
.content-tag-list {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word;
}
.content-tag-list li {
  border-right: 1px solid #C2C8CC;
  margin-bottom: 15px;
  font-size: 13px;
}
[dir=ltr] .content-tag-list li {
  padding-right: 8px;
  margin-right: 8px;
}
[dir=rtl] .content-tag-list li {
  padding-left: 8px;
  margin-left: 8px;
}
.content-tag-list li:last-child {
  border: none;
}
/* 背景グレー */
.bg01{
  background: #fafafa;
  padding: 20px;
}

.bg02{
  background: #fafafa;
}

/* 全ての波線装飾を無効化 */
figure.wysiwyg-table table,
figure.wysiwyg-table td,
figure.wysiwyg-table th {
  border-style: none !important;
 
}

/* has-wave の表だけ線を表示 */
figure.wysiwyg-table.has-wave td,
figure.wysiwyg-table.has-wave th {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #ccc !important; 
  
}

