/* ========================================================================== サイト全体のフォント設定 欧文：Noto Sans / 日本文：Noto Sans JP ========================================================================== */ body, h1, h2, h3, h4, h5, h6, p, a, span, div, li, td, th { /* ★必ず欧文(Noto Sans)を左に、日本文(Noto Sans JP)を右に書きます★ */ font-family: 'Noto Sans', 'Noto Sans JP', sans-serif !important; }


@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: rgba(51, 51, 51, 1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 15px;
  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: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  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(102, 102, 170, 1);
  text-decoration: none;
}
a:visited {
  color: #9358B0;
}
a:hover, a:active, a:focus {
  text-decoration: underline;
}

.hbs-form input,
.hbs-form textarea, .search input,
.search textarea {
  color: #000;
  font-size: 14px;
}
.hbs-form input, .search input {
  max-width: 100%;
  box-sizing: border-box;
  transition: border 0.12s ease-in-out;
  /* We use the :where selector to not increase the specificity of the selector */
}
.hbs-form input:where(:not([type=checkbox])), .search input:where(:not([type=checkbox])) {
  outline: none;
}
.hbs-form input:where(:not([type=checkbox])):focus, .search input:where(:not([type=checkbox])):focus {
  border: 1px solid rgba(51, 51, 51, 1);
}
.hbs-form input[disabled], .search input[disabled] {
  background-color: #ddd;
}
.hbs-form select, .search 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 #848F99;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}
.hbs-form select:focus, .search select:focus {
  border: 1px solid rgba(51, 51, 51, 1);
}
.hbs-form select::-ms-expand, .search select::-ms-expand {
  display: none;
}
.hbs-form textarea, .search textarea {
  border: 1px solid #848F99;
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}
.hbs-form textarea:focus, .search textarea:focus {
  border: 1px solid rgba(51, 51, 51, 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, .pagination-next-link, .pagination-prev-link, .pagination-first-link, .pagination-last-link, .subscriptions-subscribe button, .requests-table-toolbar .organization-subscribe button, .community-follow button, .article-subscribe button, .section-subscribe button, .split-button button {
  background-color: transparent;
  border: 1px solid rgba(51, 51, 51, 1);
  border-radius: 4px;
  color: rgba(51, 51, 51, 1);
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color 0.12s ease-in-out, border-color 0.12s ease-in-out, color 0.15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}
@media (min-width: 768px) {
  .button, .pagination-next-link, .pagination-prev-link, .pagination-first-link, .pagination-last-link, .subscriptions-subscribe button, .requests-table-toolbar .organization-subscribe button, .community-follow button, .article-subscribe button, .section-subscribe button, .split-button button {
    width: auto;
  }
}
.button:visited, .pagination-next-link:visited, .pagination-prev-link:visited, .pagination-first-link:visited, .pagination-last-link:visited, .subscriptions-subscribe button:visited, .requests-table-toolbar .organization-subscribe button:visited, .community-follow button:visited, .article-subscribe button:visited, .section-subscribe button:visited, .split-button button:visited {
  color: rgba(51, 51, 51, 1);
}
.button:hover, .pagination-next-link:hover, .pagination-prev-link:hover, .pagination-first-link:hover, .pagination-last-link:hover, .subscriptions-subscribe button:hover, .requests-table-toolbar .organization-subscribe button:hover, .community-follow button:hover, .article-subscribe button:hover, .section-subscribe button:hover, .split-button button:hover, .button:active, .pagination-next-link:active, .pagination-prev-link:active, .pagination-first-link:active, .pagination-last-link:active, .subscriptions-subscribe button:active, .requests-table-toolbar .organization-subscribe button:active, .community-follow button:active, .article-subscribe button:active, .section-subscribe button:active, .split-button button:active, .button:focus, .pagination-next-link:focus, .pagination-prev-link:focus, .pagination-first-link:focus, .pagination-last-link:focus, .subscriptions-subscribe button:focus, .requests-table-toolbar .organization-subscribe button:focus, .community-follow button:focus, .article-subscribe button:focus, .section-subscribe button:focus, .split-button button:focus, .button.button-primary, .button-primary.pagination-next-link, .button-primary.pagination-prev-link, .button-primary.pagination-first-link, .button-primary.pagination-last-link, .subscriptions-subscribe button.button-primary, .subscriptions-subscribe button[data-selected=true], .requests-table-toolbar .organization-subscribe button.button-primary, .requests-table-toolbar .organization-subscribe button[data-selected=true], .community-follow button.button-primary, .article-subscribe button.button-primary, .article-subscribe button[data-selected=true], .section-subscribe button.button-primary, .section-subscribe button[data-selected=true], .split-button button.button-primary {
  background-color: rgba(51, 51, 51, 1);
  color: #FFFFFF;
  text-decoration: none;
}
.button.button-primary: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, .subscriptions-subscribe button.button-primary:hover, .subscriptions-subscribe button[data-selected=true]:hover, .requests-table-toolbar .organization-subscribe button.button-primary:hover, .requests-table-toolbar .organization-subscribe button[data-selected=true]:hover, .community-follow button.button-primary:hover, .article-subscribe button.button-primary:hover, .article-subscribe button[data-selected=true]:hover, .section-subscribe button.button-primary:hover, .section-subscribe button[data-selected=true]:hover, .split-button button:hover, .button.button-primary: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, .subscriptions-subscribe button.button-primary:focus, .subscriptions-subscribe button[data-selected=true]:focus, .requests-table-toolbar .organization-subscribe button.button-primary:focus, .requests-table-toolbar .organization-subscribe button[data-selected=true]:focus, .community-follow button.button-primary:focus, .article-subscribe button.button-primary:focus, .article-subscribe button[data-selected=true]:focus, .section-subscribe button.button-primary:focus, .section-subscribe button[data-selected=true]:focus, .split-button button.button-primary:focus, .button.button-primary: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, .subscriptions-subscribe button.button-primary:active, .subscriptions-subscribe button[data-selected=true]:active, .requests-table-toolbar .organization-subscribe button.button-primary:active, .requests-table-toolbar .organization-subscribe button[data-selected=true]:active, .community-follow button.button-primary:active, .article-subscribe button.button-primary:active, .article-subscribe button[data-selected=true]:active, .section-subscribe button.button-primary:active, .section-subscribe button[data-selected=true]:active, .split-button button.button-primary:active {
  background-color: #000;
  border-color: #000;
}
.button[data-disabled], [data-disabled].pagination-next-link, [data-disabled].pagination-prev-link, [data-disabled].pagination-first-link, [data-disabled].pagination-last-link, .subscriptions-subscribe button[data-disabled], .requests-table-toolbar .organization-subscribe button[data-disabled], .community-follow button[data-disabled], .article-subscribe button[data-disabled], .section-subscribe button[data-disabled], .split-button button[data-disabled] {
  cursor: default;
}

.button-large, .hbs-form input[type=submit] {
  cursor: pointer;
  background-color: rgba(51, 51, 51, 1);
  border: 0;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 2.72;
  min-width: 190px;
  padding: 0 1.9286em;
  width: 100%;
}
@media (min-width: 768px) {
  .button-large, .hbs-form input[type=submit] {
    width: auto;
  }
}
.button-large:visited, .hbs-form input[type=submit]:visited {
  color: #FFFFFF;
}
.button-large:hover, .button-large:active, .button-large:focus, .hbs-form input[type=submit]:hover, .hbs-form input[type=submit]:active, .hbs-form input[type=submit]:focus {
  background-color: #000;
}
.button-large[disabled], .hbs-form input[type=submit][disabled] {
  background-color: #ddd;
}

.button-secondary {
  color: #666;
  border: 1px solid #848F99;
  background-color: transparent;
}
.button-secondary:visited {
  color: #666;
}
.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: rgba(51, 51, 51, 1);
  border: 1px solid #848F99;
  background-color: #f7f7f7;
}

/***** Split button *****/
.split-button {
  display: flex;
}

.split-button button {
  background-color: rgba(51, 51, 51, 1);
  border: 0;
  color: #FFFFFF;
  height: 32px;
  line-height: 16px;
  outline-color: rgba(51, 51, 51, 1);
}

[dir=rtl] .split-button button:not(:only-child):first-child {
  border-left: 1px solid #FFFFFF;
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}
[dir=ltr] .split-button button:not(:only-child):first-child {
  border-right: 1px solid #FFFFFF;
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}
.split-button button:not(:only-child):last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  min-width: 26px;
  max-width: 26px;
  padding: 0;
}
[dir=rtl] .split-button button:not(:only-child):last-child {
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}
[dir=ltr] .split-button button:not(:only-child):last-child {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}

/***** 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;
  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 #848F99;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}
.form-field input:focus {
  border: 1px solid rgba(51, 51, 51, 1);
}

.form-field input[type=text] {
  border: 1px solid #848F99;
  border-radius: 4px;
}
.form-field input[type=text]:focus {
  border: 1px solid rgba(51, 51, 51, 1);
}

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

.form-field .nesty-input {
  border-radius: 4px;
  border: 1px solid #848F99;
  height: 40px;
  line-height: 40px;
  outline: none;
  vertical-align: middle;
}
.form-field .nesty-input:focus {
  border: 1px solid rgba(51, 51, 51, 1);
  text-decoration: none;
}

.form-field .hc-multiselect-toggle {
  border: 1px solid #848F99;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid rgba(51, 51, 51, 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: #9358B0;
}

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

.logo img {
  max-height: 37px;
  vertical-align: middle;
}

.logo span {
  margin: 0 10px;
  color: rgba(51, 51, 51, 1);
}

.logo a {
  display: inline-block;
}

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

.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;
}
.user-nav[aria-expanded=true] > .user-nav-list li {
  display: block;
}
.user-nav[aria-expanded=true] > .user-nav-list a {
  display: block;
  margin: 20px;
}

.user-nav-list {
  display: block;
  list-style: none;
}
.user-nav-list > li {
  display: inline-block;
}

@media (max-width: 768px) {
  .nav-wrapper-desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .nav-wrapper-desktop {
    display: none;
  }
}
@media (min-width: 1024px) {
  .nav-wrapper-desktop {
    display: inline-block;
  }
}
.nav-wrapper-desktop a {
  border: 0;
  color: rgba(102, 102, 170, 1);
  display: none;
  font-size: 14px;
  padding: 0 20px 0 0;
  width: auto;
}
@media (min-width: 768px) {
  .nav-wrapper-desktop a {
    display: inline-block;
  }
}
[dir=rtl] .nav-wrapper-desktop a {
  padding: 0 0 0 20px;
}
.nav-wrapper-desktop a:hover, .nav-wrapper-desktop a:focus, .nav-wrapper-desktop a:active {
  background-color: transparent;
  color: rgba(102, 102, 170, 1);
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .nav-wrapper-mobile {
    display: none;
  }
}
.nav-wrapper-mobile .menu-button-mobile {
  background: none;
  border: 0;
  width: auto;
  min-width: 71px;
  cursor: pointer;
}
.nav-wrapper-mobile .menu-button-mobile .icon-menu {
  padding: 7px;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.nav-wrapper-mobile .menu-button-mobile[aria-expanded=true] .icon-menu {
  background: #f3f3f3;
}
.nav-wrapper-mobile .menu-list-mobile {
  position: absolute;
  background-color: #fff;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 71px;
  z-index: 2;
}
.nav-wrapper-mobile .menu-list-mobile[aria-expanded=false] {
  display: none;
}
.nav-wrapper-mobile .menu-list-mobile[aria-expanded=true] {
  display: block;
}
.nav-wrapper-mobile .menu-list-mobile-items .item {
  margin: 4px 0;
}
.nav-wrapper-mobile .menu-list-mobile-items li:empty:not(.nav-divider) {
  display: none;
}
.nav-wrapper-mobile .menu-list-mobile-items .nav-divider {
  border-bottom: 0.1px solid #ddd;
  padding: 0;
}
.nav-wrapper-mobile .menu-list-mobile-items .nav-divider:last-child {
  display: none;
}
.nav-wrapper-mobile .menu-list-mobile-items button {
  background: none;
  border: none;
  padding: 8px 24px;
  width: 100%;
  height: 100%;
  color: rgba(51, 51, 51, 1);
  cursor: pointer;
  text-align: start;
}
.nav-wrapper-mobile .menu-list-mobile-items button:active, .nav-wrapper-mobile .menu-list-mobile-items button:focus, .nav-wrapper-mobile .menu-list-mobile-items button:hover {
  background-color: #f3f3f3;
  text-decoration: underline;
}
.nav-wrapper-mobile .menu-list-mobile-items a {
  display: block;
  padding: 8px 24px;
  width: 100%;
  height: 100%;
  color: rgba(51, 51, 51, 1);
}
.nav-wrapper-mobile .menu-list-mobile-items a:active, .nav-wrapper-mobile .menu-list-mobile-items a:focus, .nav-wrapper-mobile .menu-list-mobile-items a:hover {
  background-color: #f3f3f3;
}
.nav-wrapper-mobile .menu-list-mobile-items .my-profile {
  display: flex;
  line-height: 1.5;
}
.nav-wrapper-mobile .menu-list-mobile-items .my-profile .my-profile-tooltip {
  font-size: 12px;
  color: #68737D;
}
.nav-wrapper-mobile .menu-list-mobile-items .menu-profile-avatar {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  margin-top: 1px;
}
[dir=rtl] .nav-wrapper-mobile .menu-list-mobile-items .menu-profile-avatar {
  margin-right: 0;
  margin-left: 8px;
}

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

#zd-modal-container ~ .skip-navigation {
  display: none;
}

/***** 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(102, 102, 170, 1);
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}
.user-info > button:hover, .user-info > button:focus {
  color: rgba(102, 102, 170, 1);
  background-color: transparent;
}
.user-info > button::after {
  color: rgba(102, 102, 170, 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(51, 51, 51, 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 button {
  color: #666;
  display: inline-block;
}

.powered-by-zendesk a,
.powered-by-zendesk a:visited {
  color: #666;
}

/***** Breadcrumbs *****/
.breadcrumbs {
  margin: 0 0 15px 0;
  padding: 0;
  display: flex;
}
@media (min-width: 768px) {
  .breadcrumbs {
    margin: 0;
  }
}
.breadcrumbs li {
  color: #666;
  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(102, 102, 170, 1);
}

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

.search {
  border-color: #848F99;
  border-radius: 30px;
  border-style: solid;
  border-width: 1px;
  display: flex;
  position: relative;
  transition: border 0.12s ease-in-out;
}
.search:focus-within {
  border-color: rgba(51, 51, 51, 1);
}
.search input[type=search],
.search .clear-button {
  background-color: #fff;
  border-radius: 30px;
  border: none;
}
.search-full input[type=search], .search-full .clear-button {
  border-color: #fff;
}
.search input[type=search] {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  color: #666;
  flex: 1 1 auto;
  height: 40px;
  width: 100%;
}
.search input[type=search]:focus {
  color: #555;
}
.search input[type=search]::-webkit-search-decoration, .search input[type=search]::-webkit-search-cancel-button, .search input[type=search]::-webkit-search-results-button, .search input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.search input[type=search]:-webkit-autofill, .search input[type=search]:-webkit-autofill:hover, .search input[type=search]:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
.search .clear-button {
  align-items: center;
  box-sizing: border-box;
  color: #777;
  cursor: pointer;
  display: none;
  flex: none;
  justify-content: center;
  padding: 0 15px;
}
.search .clear-button:hover {
  background-color: rgba(51, 51, 51, 1);
  color: #fff;
}
.search .clear-button:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 1);
}
.search-has-value .clear-button {
  display: flex;
}

[dir=ltr] .search input[type=search] {
  padding-left: 40px;
  padding-right: 20px;
}
[dir=ltr] .search-has-value input[type=search] {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right-color: transparent;
}
[dir=ltr] .search-has-value input[type=search]:focus {
  border-right-color: rgba(51, 51, 51, 1);
}
[dir=ltr] .search .clear-button {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left-color: transparent;
}
[dir=ltr] .search .clear-button:focus {
  border-left-color: rgba(51, 51, 51, 1);
}

[dir=rtl] .search input[type=search] {
  padding-left: 20px;
  padding-right: 40px;
}
[dir=rtl] .search-has-value input[type=search] {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left-color: transparent;
}
[dir=rtl] .search-has-value input[type=search]:focus {
  border-left-color: rgba(51, 51, 51, 1);
}
[dir=rtl] .search .clear-button {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right-color: transparent;
}
[dir=rtl] .search .clear-button:focus {
  border-right-color: rgba(51, 51, 51, 1);
}

.search-icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 15px;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: #777;
  pointer-events: none;
}
[dir=rtl] .search-icon {
  left: auto;
  right: 15px;
}

/***** Hero component *****/
.hero {
  /*background-image: url(/hc/theming_assets/01KN99GF1T4V1X2HPQV1F78AHP);画像を無効化*/
  background-position: center;
  background-size: cover;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}
.hero-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 610px;
  margin: 0 auto;
}

.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;
    flex-wrap: wrap;
    gap: 16px;
    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;
}
.page-header-description {
  font-style: italic;
  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 {
  align-items: baseline;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px 30px;
  justify-content: space-between;
  margin-bottom: 55px;
}
@media (min-width: 768px) {
  .sub-nav {
    flex-direction: row;
  }
}
.sub-nav .breadcrumbs {
  margin: 0;
}
.sub-nav .search-container {
  max-width: 300px;
  width: 100%;
}
@media (min-width: 768px) {
  .sub-nav .search-container {
    flex: 0 1 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(51, 51, 51, 1);
  border-radius: 4px;
  box-sizing: border-box;
  color: rgba(51, 51, 51, 1);
  display: flex;
  flex: 1 0 340px;
  margin: 0 0 30px;
  max-width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .blocks-item {
    margin: 0 15px 30px;
  }
}
.blocks-item:hover, .blocks-item:focus, .blocks-item:active {
  background-color: rgba(51, 51, 51, 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: rgba(51, 51, 51, 1);
}
.blocks-item-link {
  color: rgba(51, 51, 51, 1);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  border-radius: inherit;
}
.blocks-item-link:visited, .blocks-item-link:hover, .blocks-item-link:active {
  color: inherit;
  text-decoration: none;
}
.blocks-item-link:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 1);
  text-decoration: none;
}
.blocks-item-title {
  margin-bottom: 0;
  font-size: 16px;
}
.blocks-item-description {
  margin: 0;
}
.blocks-item-description:not(:empty) {
  margin-top: 10px;
}

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

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

/***** Promoted articles *****/
.promoted-articles {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .promoted-articles {
    flex-direction: row;
  }
}
.promoted-articles-item {
  flex: 1 0 auto;
}
@media (min-width: 1024px) {
  .promoted-articles-item {
    align-self: flex-end;
    flex: 0 0 auto;
    padding-right: 30px;
    width: 33%; /* 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: 15px 0;
}
.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;
  margin-top: 32px;
  background-image: url(/hc/theming_assets/01KFZ66RE8G85P1NVY62W3PZ0E);
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
}
.community a {
  color: rgba(102, 102, 170, 1);
  text-decoration: underline;
}
.community a:visited {
  color: #9358B0;
}
.community a:hover, .community a:active, .community a:focus {
  color: #0F3554;
}

.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 h3 {
  margin: 0;
}
.recent-activity-item-parent {
  font-size: 16px;
  font-weight: 600;
}
.recent-activity-item-parent, .recent-activity-item-link {
  margin: 6px 0;
  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;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recent-activity-item-meta {
  color: rgba(51, 51, 51, 1);
  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 {
  display: inline-block;
  font-size: 13px;
}
.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-controls a {
  color: rgba(102, 102, 170, 1);
  text-decoration: underline;
}
.recent-activity-controls a:visited {
  color: #9358B0;
}
.recent-activity-controls a:hover, .recent-activity-controls a:active, .recent-activity-controls a:focus {
  color: #0F3554;
}
.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(51, 51, 51, 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;
  max-width: 100%;
}
@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;
  max-width: 100%;
}
@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: rgba(51, 51, 51, 1);
}
.section-tree .see-all-articles {
  display: block;
  padding: 15px 0;
}

.article-list-item {
  font-size: 16px;
  padding: 15px 0;
  text-overflow: ellipsis;
  overflow: hidden;
}
.article-list-item a {
  color: rgba(51, 51, 51, 1);
}

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

/***** Section pages *****/
.section-container {
  display: flex;
  justify-content: flex-end;
}
.section-content {
  flex: 1;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .section-content {
    flex: 0 0 80%;
  }
}
.section-list {
  margin: 40px 0;
}

.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: rgba(51, 51, 51, 1);
  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: 66%;
    min-width: 640px;
    padding: 0 30px;
  }
}
.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: 40px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .article-header {
    flex-direction: row;
    margin-top: 0;
  }
}
.article-avatar {
  margin-right: 10px;
}
.article-author {
  margin-bottom: 10px;
}
.article-title {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
@media (min-width: 768px) {
  .article-title {
    flex-basis: 100%; /* 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 {
  display: flow-root;
}
.article-body a {
  color: rgba(102, 102, 170, 1);
  text-decoration: underline;
}
.article-body a:visited {
  color: #9358B0;
}
.article-body a:hover, .article-body a:active, .article-body a:focus {
  color: #0F3554;
}
.article-body img {
  height: auto;
  max-width: 100%;
}
.article-body p > img.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.article-body p > img.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.article-body p > img.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.article-body p > img.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.article-body figure.image {
  display: table;
  margin: 0 auto;
}
.article-body figure.image > img {
  display: block;
  width: 100%;
}
.article-body figure.image.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.article-body figure.image.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.article-body figure.image.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.article-body figure.image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.article-body figcaption {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  background-color: #f2f2f2;
}
.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 :not(pre) > 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;
  direction: ltr;
}
.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;
}
.article-comment-count:hover {
  text-decoration: none;
}
.article-comment-count-icon {
  vertical-align: middle;
  color: rgba(51, 51, 51, 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 17%;
    height: auto;
    max-width: 17%;
  }
}
.article-relatives {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .article-relatives {
    flex-direction: row;
  }
}
.article-relatives > * {
  flex: 1 0 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-votes-question {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 0;
}
.article-vote {
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
}
.article-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}
.article-more-questions a {
  color: rgba(102, 102, 170, 1);
  text-decoration: underline;
}
.article-more-questions a:visited {
  color: #9358B0;
}
.article-more-questions a:hover, .article-more-questions a:active, .article-more-questions a:focus {
  color: #0F3554;
}
.article-return-to-top {
  border-top: 1px solid #848F99;
}
@media (min-width: 1024px) {
  .article-return-to-top {
    display: none;
  }
}
.article-return-to-top a {
  color: rgba(51, 51, 51, 1);
  display: block;
  padding: 20px 0;
}
.article-return-to-top a:hover, .article-return-to-top a:focus {
  text-decoration: none;
}
.article-return-to-top-icon {
  transform: rotate(0.5turn);
}
.article td > p:first-child,
.article th > p:first-child {
  margin-top: 0;
}
.article td > p:last-child,
.article th > p:last-child {
  margin-bottom: 0;
}

.sidenav-title {
  font-size: 15px;
  position: relative;
  font-weight: 600;
}
.sidenav-item {
  display: block;
  margin-top: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-articles li,
.related-articles li {
  margin-bottom: 15px;
}

/***** 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: rgba(51, 51, 51, 1);
  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(51, 51, 51, 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: 5px;
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
}
.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-size: 13px;
  margin-bottom: 0;
}
.comment-callout a {
  color: rgba(102, 102, 170, 1);
  text-decoration: underline;
}
.comment-callout a:visited {
  color: #9358B0;
}
.comment-callout a:hover, .comment-callout a:active, .comment-callout a:focus {
  color: #0F3554;
}
.comment-sorter {
  display: inline-block;
  float: right;
}
.comment-sorter .dropdown-toggle {
  color: #666;
  font-size: 13px;
}
[dir=rtl] .comment-sorter {
  float: left;
}
.comment-wrapper {
  display: flex;
  position: relative;
}
.comment-wrapper.comment-official {
  border: 1px solid rgba(51, 51, 51, 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 1 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(51, 51, 51, 1);
}
.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  display: flow-root;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: auto;
}
.comment-body a {
  color: rgba(102, 102, 170, 1);
  text-decoration: underline;
}
.comment-body a:visited {
  color: #9358B0;
}
.comment-body a:hover, .comment-body a:active, .comment-body a:focus {
  color: #0F3554;
}
.comment-body img {
  height: auto;
  max-width: 100%;
}
.comment-body p > img.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.comment-body p > img.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.comment-body p > img.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.comment-body p > img.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.comment-body figure.image {
  display: table;
  margin: 0 auto;
}
.comment-body figure.image > img {
  display: block;
  width: 100%;
}
.comment-body figure.image.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.comment-body figure.image.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.comment-body figure.image.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.comment-body figure.image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.comment-body figcaption {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  background-color: #f2f2f2;
}
.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 :not(pre) > 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;
  direction: ltr;
}
.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(51, 51, 51, 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(51, 51, 51, 1);
}

.vote-voted:hover {
  color: #000;
}

/***** 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/01KFZ66R3HNNS4FT10XVNECBM7);
  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(51, 51, 51, 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(51, 51, 51, 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: #000;
  border-color: #000;
}
.community-follow button::after {
  border-left: 1px solid rgba(51, 51, 51, 1);
  content: attr(data-follower-count);
  color: rgba(51, 51, 51, 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(51, 51, 51, 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(102, 102, 170, 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: #9358B0;
}
.striped-list .meta-group {
  margin: 5px 0;
}
.striped-list-count {
  color: #666;
  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 {
  text-align: center;
}
@media (min-width: 768px) {
  .striped-list-number {
    color: rgba(51, 51, 51, 1);
    display: block;
  }
}

/***** 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(51, 51, 51, 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-request {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .status-label-request {
    max-width: 150px;
  }
}

/***** 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 {
  display: flow-root;
}
.post-body a {
  color: rgba(102, 102, 170, 1);
  text-decoration: underline;
}
.post-body a:visited {
  color: #9358B0;
}
.post-body a:hover, .post-body a:active, .post-body a:focus {
  color: #0F3554;
}
.post-body img {
  height: auto;
  max-width: 100%;
}
.post-body p > img.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.post-body p > img.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.post-body p > img.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.post-body p > img.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.post-body figure.image {
  display: table;
  margin: 0 auto;
}
.post-body figure.image > img {
  display: block;
  width: 100%;
}
.post-body figure.image.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.post-body figure.image.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.post-body figure.image.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.post-body figure.image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.post-body figcaption {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  background-color: #f2f2f2;
}
.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 :not(pre) > 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;
  direction: ltr;
}
.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;
}
.post-comment-count:hover {
  text-decoration: none;
}
.post-comment-count .icon-comments {
  color: rgba(51, 51, 51, 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;
  }
}

/***** Community Badges *****/
/* Styles labels used next to the authors of article comments, community posts, and community comments */
.community-badge-title {
  background-color: #04444d;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 0px 8px;
  vertical-align: top;
  white-space: nowrap;
  display: inline-block;
  line-height: 18px;
  vertical-align: middle;
}

.community-badge-titles {
  display: inline;
}

.community-badge-achievement {
  display: block;
  height: 16px;
  white-space: nowrap;
  width: 16px;
}
.community-badge-achievement img {
  width: 100%;
  height: 100%;
}

.community-badge-achievements {
  display: flex;
}

.community-badge-achievements-rest {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  vertical-align: top;
}

.community-badge {
  margin: 2px;
}

.profile-info .community-badge-title {
  padding: 2px 8px;
  line-height: 20px;
}
.profile-info .community-badge-achievement {
  height: 40px;
  width: 40px;
}
.profile-info .community-badge-achievements-rest {
  line-height: 40px;
  font-size: 20px;
}

/* 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: 22.5px;
  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(51, 51, 51, 1);
}

.collapsible-nav-list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .collapsible-nav-list {
    flex-direction: row;
  }
}
.collapsible-nav-list li {
  color: rgba(51, 51, 51, 1);
  line-height: 45px;
  order: 1;
}
@media (min-width: 768px) {
  .collapsible-nav-list li {
    line-height: normal;
    margin-right: 30px;
  }
  [dir=rtl] .collapsible-nav-list li {
    margin-left: 30px;
    margin-right: 0;
  }
  .collapsible-nav-list li a {
    text-decoration: none;
    padding: 15px 0;
  }
}
.collapsible-nav-list li a {
  color: rgba(51, 51, 51, 1);
  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(51, 51, 51, 1);
    order: 1;
  }
}
.collapsible-nav-list li[aria-selected=true] a,
.collapsible-nav-list li.current a {
  color: rgba(51, 51, 51, 1);
}

.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;
  }
}
.collapsible-sidebar-title {
  margin-top: 0;
}
.collapsible-sidebar-toggle {
  position: absolute;
  top: 22.5px;
  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(51, 51, 51, 1);
}
.collapsible-sidebar-body {
  display: none;
}
@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;
}
@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(51, 51, 51, 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(51, 51, 51, 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%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.request-details dd::after {
  content: "\a";
  white-space: pre;
}
.request-details dt {
  line-break: strict;
  color: #666;
  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-opposite {
  float: right;
}

[dir=rtl] .meta-group-opposite {
  float: left;
}

.meta-group * {
  display: inline;
}

.meta-data {
  color: #666;
  font-size: 13px;
}
.meta-data:not(:last-child)::after {
  content: "·";
  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: 80px;
  height: 80px;
}

.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;
  line-height: 25px;
  vertical-align: middle;
  display: inline;
}

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

.user-profile-actions {
  width: 100%;
  margin-bottom: 15px;
}

.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;
  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(51, 51, 51, 1);
  border-radius: 4px;
  color: rgba(51, 51, 51, 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-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-badges-items {
  margin-top: 25px;
}
.profile-badges-item {
  border-top: 1px solid #ddd;
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: flex-start;
  padding: 27px 12px;
}
.profile-badges-item > div {
  padding-right: 12px;
  padding-left: 12px;
}
.profile-badges-item-image {
  height: 40px;
  width: 40px;
  margin-right: 12px;
}
.profile-badges-item-image img {
  max-height: 40px;
}
[dir=rtl] .profile-badges-item-image {
  margin-left: 12px;
  margin-right: 0;
}
.profile-badges-item-title, .profile-badges-item-metadata-title {
  font-size: 15px;
  margin-bottom: 10px;
}
.profile-badges-item-title {
  font-weight: 600;
}
.profile-badges-item-description, .profile-badges-item-metadata-description {
  color: #666;
  font-size: 13px;
  margin: 0;
}
.profile-badges-item-metadata {
  margin-left: auto;
  text-align: right;
}
[dir=rtl] .profile-badges-item-metadata {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.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 {
  border-radius: 4px;
  padding: 10px 36px;
  margin-bottom: 4px;
  color: rgba(51, 51, 51, 1);
}
.search-results-sidebar .sidenav-item:hover, .search-results-sidebar .sidenav-item.current {
  background-color: #e9ebed;
  text-decoration: none;
}
.search-results-sidebar .sidenav-subitem {
  unicode-bidi: embed;
}
.search-results-sidebar .sidenav-tag {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-grow: 0;
}
.search-results-sidebar .sidenav-tag .content-tag {
  background: #E9EBED;
  border-radius: 4px;
  padding: 4px 12px;
  text-decoration: none;
}
.search-results-sidebar .sidenav-tag .content-tag .label {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.000427656px;
  color: #49545C;
  flex-grow: 0;
  vertical-align: middle;
  display: inline-block;
}
.search-results-sidebar .sidenav-tag .content-tag .close-icon {
  color: #555555;
  vertical-align: middle;
  display: inline-block;
}
.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(102, 102, 170, 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: " ⌄";
  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 .no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
}
.search-results .no-results .headline {
  color: #2F3941;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.45px;
}
.search-results .no-results .action-prompt {
  color: #68737D;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.154px;
}
.search-results .no-results .action-prompt a {
  color: rgba(102, 102, 170, 1);
}
.search-results .no-results .action-prompt a:visited {
  color: rgba(102, 102, 170, 1);
}

.search-result-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-result-title {
  font-size: 16px;
  margin-bottom: 0;
}
.search-result-votes, .search-result-meta-count {
  color: #666;
  font-size: 13px;
}
.search-result-votes-icon, .search-result-meta-count-icon {
  color: rgba(51, 51, 51, 1);
  vertical-align: middle;
  width: 13px;
  height: 13px;
}
[dir=ltr] .search-result-votes, [dir=ltr] .search-result-meta-count {
  margin-left: 20px;
}
[dir=rtl] .search-result-votes, [dir=rtl] .search-result-meta-count {
  margin-right: 20px;
}
.search-result-meta-container {
  color: #666;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .search-result-meta-container {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .search-result-meta-container nav {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  [dir=ltr] .search-result-meta-container .meta-data {
    margin-left: 20px;
  }
}
@media (min-width: 1024px) {
  [dir=rtl] .search-result-meta-container .meta-data {
    margin-right: 20px;
  }
}
.search-result-meta-container .meta-data::after {
  content: none;
}
.search-result-breadcrumbs {
  margin: 0;
}
.search-result-description {
  margin-top: 10px;
  margin-bottom: 0;
  word-break: break-word;
}

/* 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;
}

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

.notification a {
  color: #158ec2;
}

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

.notification-icon, .notification-inline.notification-error::before, .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: 0.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-toggle[aria-expanded=true] + .dropdown-menu {
  display: block;
}

.dropdown-menu {
  background: #fff;
  border: 1px solid #d8dcde;
  border-radius: 3px;
  box-shadow: 0px 20px 30px 0px rgba(23, 73, 77, 0.15);
  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 [role=separator] {
  border-bottom: 1px solid #e9ebed;
  margin: 4px 0;
}
.dropdown-menu [role=menuitem],
.dropdown-menu [role=menuitemradio] {
  color: #2f3941;
  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],
[dir=rtl] .dropdown-menu [role=menuitemradio] {
  padding: 7px 20px 7px 40px;
}
.dropdown-menu [role=menuitem]:hover, .dropdown-menu [role=menuitem]:focus,
.dropdown-menu [role=menuitemradio]:hover,
.dropdown-menu [role=menuitemradio]:focus {
  background: rgba(31, 115, 183, 0.08);
  text-decoration: none;
  color: #2f3941;
}
.dropdown-menu [role=menuitem][aria-selected=true], .dropdown-menu [role=menuitem][aria-checked=true],
.dropdown-menu [role=menuitemradio][aria-selected=true],
.dropdown-menu [role=menuitemradio][aria-checked=true] {
  cursor: default;
}
.dropdown-menu [role=menuitem][aria-selected=true]::after, .dropdown-menu [role=menuitem][aria-checked=true]::after,
.dropdown-menu [role=menuitemradio][aria-selected=true]::after,
.dropdown-menu [role=menuitemradio][aria-checked=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, [dir=rtl] .dropdown-menu [role=menuitem][aria-checked=true]::after,
[dir=rtl] .dropdown-menu [role=menuitemradio][aria-selected=true]::after,
[dir=rtl] .dropdown-menu [role=menuitemradio][aria-checked=true]::after {
  margin-left: 0;
  margin-right: 10px;
  float: left;
}
.dropdown-menu [role=menuitem][hidden], .dropdown-menu [role=menuitem][aria-hidden=true],
.dropdown-menu [role=menuitemradio][hidden],
.dropdown-menu [role=menuitemradio][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;
}

.content-tags > p {
  color: #68737D;
  margin-top: 32px;
  margin-bottom: 4px;
}
.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: 4px;
}
[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;
}

/***** WYSIWYG Editor *****/
#hc-wysiwyg {
  border: 1px solid #848F99;
}

/***** Upload Dropzone *****/
.upload-dropzone {
  border: 1px solid #848F99;
}

/***** Summary component *****/
zd-summary-block {
  background: #f3f6f6;
}
[dir=ltr] zd-summary-block {
  border-left-color: #859fa1;
}
[dir=rtl] zd-summary-block {
  border-right-color: #859fa1;
}

.service-catalog-hero {
  background-image: url(/hc/theming_assets/01KFZ66RSPDXKPT4V5V11QVAKJ);
  margin-bottom: 10px;
  height: 320px;
}
.service-catalog-description {
  display: flow-root;
}
.service-catalog-description a {
  color: rgba(102, 102, 170, 1);
  text-decoration: underline;
}
.service-catalog-description a:visited {
  color: #9358B0;
}
.service-catalog-description a:hover, .service-catalog-description a:active, .service-catalog-description a:focus {
  color: #0F3554;
}
.service-catalog-description img {
  height: auto;
  max-width: 100%;
}
.service-catalog-description p > img.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.service-catalog-description p > img.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.service-catalog-description p > img.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.service-catalog-description p > img.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.service-catalog-description figure.image {
  display: table;
  margin: 0 auto;
}
.service-catalog-description figure.image > img {
  display: block;
  width: 100%;
}
.service-catalog-description figure.image.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.service-catalog-description figure.image.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.service-catalog-description figure.image.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.service-catalog-description figure.image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.service-catalog-description figcaption {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  background-color: #f2f2f2;
}
.service-catalog-description ul,
.service-catalog-description ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}
[dir=rtl] .service-catalog-description ul,
[dir=rtl] .service-catalog-description ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}
.service-catalog-description ul > ul,
.service-catalog-description ol > ol,
.service-catalog-description ol > ul,
.service-catalog-description ul > ol,
.service-catalog-description li > ul,
.service-catalog-description li > ol {
  margin: 0;
}
.service-catalog-description ul {
  list-style-type: disc;
}
.service-catalog-description :not(pre) > code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}
.service-catalog-description pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
  direction: ltr;
}
.service-catalog-description blockquote {
  border-left: 1px solid #ddd;
  color: #666;
  font-style: italic;
  padding: 0 15px;
}
@charset "UTF-8";
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

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

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

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #333333;
  background-color: #fff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #428bca;
  text-decoration: none;
}

a:hover, a:focus {
  color: #2a6496;
  text-decoration: underline;
}

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 2;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 28px;
  margin-bottom: 28px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #999999;
}

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 28px;
  margin-bottom: 14px;
}

h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 14px;
  margin-bottom: 14px;
}

h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

h1, .h1 {
  font-size: 30px;
}

h2, .h2 {
  font-size: 21px;
}

h3, .h3 {
  font-size: 21px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 14px;
}

p {
  margin: 0 0 14px;
}

.lead {
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.4;
}

@media (min-width: 540px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}

cite {
  font-style: normal;
}

mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-muted {
  color: #999999;
}

.text-primary {
  color: #428bca;
}

a.text-primary:hover {
  color: #3071a9;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover {
  color: #843534;
}

.bg-primary {
  color: #fff;
}

.bg-primary {
  background-color: #428bca;
}

a.bg-primary:hover {
  background-color: #3071a9;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:hover {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:hover {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:hover {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:hover {
  background-color: #e4b9b9;
}

.page-header {
  padding-bottom: 13px;
  margin: 56px 0 28px;
  border-bottom: 1px solid #eeeeee;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 14px;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

.list-unstyled, .list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  margin-left: -5px;
}

.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 28px;
}

dt,
dd {
  line-height: 2;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table;
}

.dl-horizontal dd:after {
  clear: both;
}

@media (min-width: 540px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 14px 28px;
  margin: 0 0 28px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 2;
  color: #999999;
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}

.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}

.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

blockquote:before,
blockquote:after {
  content: "";
}

address {
  margin-bottom: 28px;
  font-style: normal;
  line-height: 2;
}

.clearfix:before, .row:before, .block-link:before, .block-link-item a:before, .l-global-area:before, .l-global-navi:before, .l-footer-sitemap > ul:before, .l-footer ul.l-utility-navi:before, .l-footer .l-site-data:before, .footer-switcharea ul:before, .l-property-area:before, .l-breadcrumbs-wrap:before, .l-breadcrumbs-wrap .l-breadcrumbs-nav:before, .l-contents:before, .l-contents .l-main:before, .l-contents .l-side:before, .frame-line .line-navi-item a:before, .ban-area:before, .theme-smp .cta-navi:before, ul.text-link-ul-v:before, .asterisk-list:before, .asterisk-s-list:before, .attention-list:before, .text-icon-1em:before, .text-icon-2em:before, .text-icon-3em:before, .text-icon-4em:before, .text-icon-5em:before, .text-icon-6em:before, .text-icon-7em:before, .text-icon-8em:before, .text-icon-9em:before, .text-icon-10em:before, .text-icon-11em:before, .text-icon-12em:before, .clearfix:after, .row:after, .block-link:after, .block-link-item a:after, .l-global-area:after, .l-global-navi:after, .l-footer-sitemap > ul:after, .l-footer ul.l-utility-navi:after, .l-footer .l-site-data:after, .footer-switcharea ul:after, .l-property-area:after, .l-breadcrumbs-wrap:after, .l-breadcrumbs-wrap .l-breadcrumbs-nav:after, .l-contents:after, .l-contents .l-main:after, .l-contents .l-side:after, .frame-line .line-navi-item a:after, .ban-area:after, .theme-smp .cta-navi:after, ul.text-link-ul-v:after, .asterisk-list:after, .asterisk-s-list:after, .attention-list:after, .text-icon-1em:after, .text-icon-2em:after, .text-icon-3em:after, .text-icon-4em:after, .text-icon-5em:after, .text-icon-6em:after, .text-icon-7em:after, .text-icon-8em:after, .text-icon-9em:after, .text-icon-10em:after, .text-icon-11em:after, .text-icon-12em:after {
  content: " ";
  display: table;
}

.clearfix:after, .row:after, .block-link:after, .block-link-item a:after, .l-global-area:after, .l-global-navi:after, .l-footer-sitemap > ul:after, .l-footer ul.l-utility-navi:after, .l-footer .l-site-data:after, .footer-switcharea ul:after, .l-property-area:after, .l-breadcrumbs-wrap:after, .l-breadcrumbs-wrap .l-breadcrumbs-nav:after, .l-contents:after, .l-contents .l-main:after, .l-contents .l-side:after, .frame-line .line-navi-item a:after, .ban-area:after, .theme-smp .cta-navi:after, ul.text-link-ul-v:after, .asterisk-list:after, .asterisk-s-list:after, .attention-list:after, .text-icon-1em:after, .text-icon-2em:after, .text-icon-3em:after, .text-icon-4em:after, .text-icon-5em:after, .text-icon-6em:after, .text-icon-7em:after, .text-icon-8em:after, .text-icon-9em:after, .text-icon-10em:after, .text-icon-11em:after, .text-icon-12em:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 539px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 539px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 539px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 539px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 540px) and (max-width: 739px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 540px) and (max-width: 739px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 540px) and (max-width: 739px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 540px) and (max-width: 739px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 740px) and (max-width: 999px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 740px) and (max-width: 999px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 740px) and (max-width: 999px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 740px) and (max-width: 999px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1000px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1000px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1000px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1000px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 539px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 540px) and (max-width: 739px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 740px) and (max-width: 999px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1000px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.icon-answer:before {
  content: url(../images/layout/icon_answer.png);
}

.icon-arrow-bottom:before {
  content: url(../images/layout/icon_arrow_bottom_r.png);
}

.icon-arrow-left:before {
  content: url(../images/layout/icon_arrow_left_r.png);
}

.icon-arrow-right:before {
  content: url(../images/layout/icon_arrow_right_r.png);
}

.icon-arrow-top:before {
  content: url(../images/layout/icon_arrow_top_r.png);
}

.icon-download:before {
  content: url(../images/layout/icon_download.png);
}

.icon-openwindow:before {
  content: url(../images/layout/icon_owr.png);
}

.icon-question:before {
  content: url(../images/layout/icon_question.png);
}

.icon-question-small:before {
  content: url(../images/layout/icon_question_small.png);
}

.icon-rss:before {
  content: url(../images/layout/icon_rss.png);
}

.icon-print:before {
  content: url(../images/layout/icon_print.png);
}

.text-link:before, .theme-smp .l-footer ul.l-utility-navi li:before, .l-local-navi li a:before, .frame-line .line-navi-item .line-navi-text:before, .stock-quotation .chart-link a:before, h2.title-link:before, ul.text-link-ul li:before, ul.text-link-ul-v li:before, .flat-btn:before, .more-btn:before, .block-link-item a:before, .frame-line .line-navi-item a[target="_blank"] .line-navi-text:after {
  display: inline;
}

/*base*/
/*color*/
/*link_color*/
/*font-size*/
/*line-height*/
/*box-shadow*/
/*border-radius*/
/*link-color*/
.row, .block-link {
  margin-left: -10px;
  margin-right: -10px;
}

a {
  color: #224488;
}

a:hover, a:active, a:focus {
  color: #4170cf;
}

.flat-btn, .more-btn, .block-link-item a, .l-global-navi li a,
.l-global-navi li a:hover,
.l-global-navi li a:active,
.l-global-navi li a:visited, .l-footer-sitemap a,
.l-footer-sitemap a:hover,
.l-footer-sitemap a:active,
.l-footer-sitemap a:visited {
  text-decoration: none;
}

.flat-btn:hover, .more-btn:hover, .block-link-item a:hover, .l-global-navi li a:hover, .l-footer-sitemap a:hover {
  text-decoration: none;
}

.l-global-area, .l-global-navi, .l-footer-sitemap > ul, .l-footer ul.l-utility-navi, .l-footer .l-site-data, .l-branding-head, .l-property-area {
  width: 990px;
  margin: 0 auto;
}

.theme-smp .l-global-area, .theme-smp .l-global-navi, .theme-smp .l-footer-sitemap > ul, .theme-smp .l-footer ul.l-utility-navi, .l-footer .theme-smp ul.l-utility-navi, .theme-smp .l-footer .l-site-data, .l-footer .theme-smp .l-site-data, .theme-smp .l-branding-head, .theme-smp .l-property-area {
  width: 100%;
  min-width: 320px;
}

.theme-popup .l-global-area, .theme-popup .l-global-navi, .theme-popup .l-footer-sitemap > ul, .theme-popup .l-footer ul.l-utility-navi, .l-footer .theme-popup ul.l-utility-navi, .theme-popup .l-footer .l-site-data, .l-footer .theme-popup .l-site-data, .theme-popup .l-branding-head, .theme-popup .l-property-area {
  width: 736px;
}

.l-pagetop p, .l-breadcrumbs-wrap {
  width: 990px;
  margin: 0 auto;
}

/*arrow link*/
.text-link, .theme-smp .l-footer ul.l-utility-navi li, .l-local-navi li a, .frame-line .line-navi-item .line-navi-text, .stock-quotation .chart-link a, h2.title-link, ul.text-link-ul li, ul.text-link-ul-v li {
  list-style: none;
}

.text-link:before, .theme-smp .l-footer ul.l-utility-navi li:before, .l-local-navi li a:before, .frame-line .line-navi-item .line-navi-text:before, .stock-quotation .chart-link a:before, h2.title-link:before, ul.text-link-ul li:before, ul.text-link-ul-v li:before {
  position: relative;
  display: inline-block;
  content: url(../images/layout/icon_arrow_right_r.png);
  font-size: 16px;
  color: #cc0022;
  margin-left: -3px;
  text-decoration: none !important;
}

.text-link:before {
  /*ie8fix*/
  font-family: 'sompoicon';
  line-height: 1;
}

.clearfix, .row, .block-link, .block-link-item a, .l-global-area, .l-global-navi, .l-footer-sitemap > ul, .l-footer ul.l-utility-navi, .l-footer .l-site-data, .footer-switcharea ul, .l-property-area, .l-breadcrumbs-wrap, .l-breadcrumbs-wrap .l-breadcrumbs-nav, .l-contents, .l-contents .l-main, .l-contents .l-side, .frame-line .line-navi-item a, .ban-area, .theme-smp .cta-navi, ul.text-link-ul-v, .asterisk-list, .asterisk-s-list, .attention-list, .text-icon-1em, .text-icon-2em, .text-icon-3em, .text-icon-4em, .text-icon-5em, .text-icon-6em, .text-icon-7em, .text-icon-8em, .text-icon-9em, .text-icon-10em, .text-icon-11em, .text-icon-12em {
  *zoom: 1;
}

.clearfix:after, .row:after, .block-link:after, .block-link-item a:after, .l-global-area:after, .l-global-navi:after, .l-footer-sitemap > ul:after, .l-footer ul.l-utility-navi:after, .l-footer .l-site-data:after, .footer-switcharea ul:after, .l-property-area:after, .l-breadcrumbs-wrap:after, .l-breadcrumbs-wrap .l-breadcrumbs-nav:after, .l-contents:after, .l-contents .l-main:after, .l-contents .l-side:after, .frame-line .line-navi-item a:after, .ban-area:after, .theme-smp .cta-navi:after, ul.text-link-ul-v:after, .asterisk-list:after, .asterisk-s-list:after, .attention-list:after, .text-icon-1em:after, .text-icon-2em:after, .text-icon-3em:after, .text-icon-4em:after, .text-icon-5em:after, .text-icon-6em:after, .text-icon-7em:after, .text-icon-8em:after, .text-icon-9em:after, .text-icon-10em:after, .text-icon-11em:after, .text-icon-12em:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

/*hover effect*/
/*animation*/
/*button*/
.flat-btn {
  display: block;
  background: #eeeeee;
  position: relative;
  border-right: 2px solid #d6d6d6;
  border-bottom: 2px solid #d6d6d6;
  padding: 15px 15px 15px 30px;
  line-height: 1.2em;
  font-weight: bold;
  color: #333;
  font-size: 15px;
}

.flat-btn:before {
  position: absolute;
  display: block;
  width: 1em;
  height: 1em;
  text-align: center;
  content: url(../images/layout/icon_arrow_right_r.png);
  font-size: 15px;
  left: 8px;
  top: 50%;
  margin-top: -8px;
  color: #cc0022;
  line-height: 1.2em;
}

.fxb-block-channel .flat-btn:before {
  top: 16px;
  margin-top: 0;
}

.flat-btn:hover, .flat-btn:active, .flat-btn:focus {
  background: #d6d6d6;
  color: #333;
  border-color-right: #c1c1c1;
  border-color-bottom: #c1c1c1;
}

.flat-btn:visited {
  color: #333;
}

.flat-btn.float-right {
  margin: 0 0 0 10px;
}

.flat-btn.float-left {
  margin: 0 10px 0 0;
}

.btn-inline {
  display: inline-block;
  padding: 8px 8px 8px 25px;
  font-size: 14px;
  font-weight: normal;
  border-right-width: 1px;
  border-bottom-width: 1px;
}

.btn-small {
  padding: 8px 8px 8px 25px;
  font-size: 12px;
  font-weight: normal;
  border-right-width: 1px;
  border-bottom-width: 1px;
}

.btn-dark {
  background: #666;
  border-right: 2px solid #525252;
  border-bottom: 2px solid #525252;
  color: #fff;
}

.btn-dark:before {
  content: url(../images/layout/icon_arrow_right_c.png);
}

.btn-dark:hover, .btn-dark:active, .btn-dark:visited, .btn-dark:focus {
  background: #5c5c5c;
  text-decoration: none;
  color: #fff;
  border-color-right: #4a4a4a;
  border-color-bottom: #4a4a4a;
}

.btn-anchor:before {
  content: url(../images/layout/icon_arrow_bottom_r.png);
}

.btn-anchor.btn-dark:before {
  content: url(../images/layout/icon_arrow_bottom_c.png);
}

.btn-fit {
  width: 100%;
}

.btn-msize {
  width: 50%;
}

.btn-lsize {
  width: 100%;
}

.btn-rss {
  background: #fe9900;
  border-right: 1px solid #e58900;
  width: 33px;
  height: 33px;
  padding: 0;
}

.btn-rss:hover {
  background: #cb7a00;
}

.btn-rss:before {
  content: url(../images/layout/icon_rss.png);
  left: 6px;
  top: 14px;
}

.btn-rss span {
  display: block;
  overflow: hidden;
  text-indent: -999px;
}

.more-btn {
  color: #9f9f9f;
  position: absolute;
  width: 5em;
  right: 0;
  top: 15px;
  font-size: 11px;
  font-weight: normal;
}

.more-btn:before {
  content: "\e607";
  font-size: 10px;
  padding: 0 5px;
  /*ie8fix*/
  font-family: 'sompoicon';
  line-height: 1;
}

.more-btn:hover {
  color: #e0667a;
}

.block-link {
  margin-top: 30px;
  margin-bottom: 30px;
}

.block-link-item a {
  position: relative;
  margin: -10px;
  padding: 10px;
  display: block;
  color: #333;
}

.block-link-item a:hover {
  color: #333;
  background: #f7d9de;
}

.block-link-item a:before {
  position: absolute;
  display: block;
  width: 1em;
  height: 1em;
  text-align: center;
  content: "\e607";
  font-size: 10px;
  right: 10px;
  bottom: 10px;
  color: #cc0022;
  /*ie8fix*/
  font-family: 'sompoicon';
  line-height: 1;
}

.block-link-item a .image-wrap img {
  width: 100%;
}

.frame-red-bold, .frame-red, .frame-glay-bold, .frame-glay, .frame-titlebox .frame-titlebox-contents {
  padding: 10px 0;
  margin-bottom: 20px;
}

.frame-red-bold *:last-child, .frame-red *:last-child, .frame-glay-bold *:last-child, .frame-glay *:last-child, .frame-titlebox .frame-titlebox-contents *:last-child {
  margin-bottom: 0;
}

.frame-red-bold {
  border: 2px solid #cc0022;
}

.frame-red {
  border: 1px solid #cc0022;
}

.frame-glay-bold {
  border: 2px solid #777;
}

.frame-glay {
  border: 1px solid #777;
}

.frame-titlebox .frame-titlebox-title {
  background: #e6e6e6;
  padding: 10px;
  margin: 0;
}

.frame-titlebox .frame-titlebox-title .btn-inline {
  padding: 6px 8px 6px 25px;
  margin: -2px;
}

.frame-titlebox .frame-titlebox-contents {
  border: 2px solid #e6e6e6;
  border-top: 0px;
  margin-bottom: 30px;
}

.theme-smp .frame-titlebox .frame-titlebox-contents {
  margin-bottom: 35px;
}

/*font-size*/
.text-size-10 {
  font-size: 10px !important;
}

.text-size-11 {
  font-size: 11px !important;
}

.text-size-12 {
  font-size: 12px !important;
}

.text-size-13 {
  font-size: 13px !important;
}

.text-size-14 {
  font-size: 14px !important;
}

.text-size-15 {
  font-size: 15px !important;
}

.text-size-16 {
  font-size: 16px !important;
}

.text-size-17 {
  font-size: 17px !important;
}

.text-size-18 {
  font-size: 18px !important;
}

.text-size-19 {
  font-size: 19px !important;
}

.text-size-20 {
  font-size: 20px !important;
}

.text-size-21 {
  font-size: 21px !important;
}

.text-size-22 {
  font-size: 22px !important;
}

.text-size-23 {
  font-size: 23px !important;
}

/*margin*/
.margin-all0 {
  margin: 0px !important;
}

.margin-allm0 {
  margin: -0px !important;
}

.margin-top0 {
  margin-top: 0px !important;
}

.margin-topm0 {
  margin-top: -0px !important;
}

.margin-bottom0 {
  margin-bottom: 0px !important;
}

.margin-bottomm0 {
  margin-bottom: -0px !important;
}

.margin-right0 {
  margin-right: 0px !important;
}

.margin-rightm0 {
  margin-right: -0px !important;
}

.margin-left0 {
  margin-left: 0px !important;
}

.margin-leftm0 {
  margin-left: -0px !important;
}

.margin-all10 {
  margin: 10px !important;
}

.margin-allm10 {
  margin: -10px !important;
}

.margin-top10 {
  margin-top: 10px !important;
}

.margin-topm10 {
  margin-top: -10px !important;
}

.margin-bottom10 {
  margin-bottom: 10px !important;
}

.margin-bottomm10 {
  margin-bottom: -10px !important;
}

.margin-right10 {
  margin-right: 10px !important;
}

.margin-rightm10 {
  margin-right: -10px !important;
}

.margin-left10 {
  margin-left: 10px !important;
}

.margin-leftm10 {
  margin-left: -10px !important;
}

.margin-all20 {
  margin: 20px !important;
}

.margin-allm20 {
  margin: -20px !important;
}

.margin-top20 {
  margin-top: 20px !important;
}

.margin-topm20 {
  margin-top: -20px !important;
}

.margin-bottom20 {
  margin-bottom: 20px !important;
}

.margin-bottomm20 {
  margin-bottom: -20px !important;
}

.margin-right20 {
  margin-right: 20px !important;
}

.margin-rightm20 {
  margin-right: -20px !important;
}

.margin-left20 {
  margin-left: 20px !important;
}

.margin-leftm20 {
  margin-left: -20px !important;
}

.margin-all30 {
  margin: 30px !important;
}

.margin-allm30 {
  margin: -30px !important;
}

.margin-top30 {
  margin-top: 30px !important;
}

.margin-topm30 {
  margin-top: -30px !important;
}

.margin-bottom30 {
  margin-bottom: 30px !important;
}

.margin-bottomm30 {
  margin-bottom: -30px !important;
}

.margin-right30 {
  margin-right: 30px !important;
}

.margin-rightm30 {
  margin-right: -30px !important;
}

.margin-left30 {
  margin-left: 30px !important;
}

.margin-leftm30 {
  margin-left: -30px !important;
}

.margin-all40 {
  margin: 40px !important;
}

.margin-allm40 {
  margin: -40px !important;
}

.margin-top40 {
  margin-top: 40px !important;
}

.margin-topm40 {
  margin-top: -40px !important;
}

.margin-bottom40 {
  margin-bottom: 40px !important;
}

.margin-bottomm40 {
  margin-bottom: -40px !important;
}

.margin-right40 {
  margin-right: 40px !important;
}

.margin-rightm40 {
  margin-right: -40px !important;
}

.margin-left40 {
  margin-left: 40px !important;
}

.margin-leftm40 {
  margin-left: -40px !important;
}

.margin-all50 {
  margin: 50px !important;
}

.margin-allm50 {
  margin: -50px !important;
}

.margin-top50 {
  margin-top: 50px !important;
}

.margin-topm50 {
  margin-top: -50px !important;
}

.margin-bottom50 {
  margin-bottom: 50px !important;
}

.margin-bottomm50 {
  margin-bottom: -50px !important;
}

.margin-right50 {
  margin-right: 50px !important;
}

.margin-rightm50 {
  margin-right: -50px !important;
}

.margin-left50 {
  margin-left: 50px !important;
}

.margin-leftm50 {
  margin-left: -50px !important;
}

.margin-all5 {
  margin: 5px !important;
}

.margin-allm5 {
  margin: -5px !important;
}

.margin-top5 {
  margin-top: 5px !important;
}

.margin-topm5 {
  margin-top: -5px !important;
}

.margin-bottom5 {
  margin-bottom: 5px !important;
}

.margin-bottomm5 {
  margin-bottom: -5px !important;
}

.margin-right5 {
  margin-right: 5px !important;
}

.margin-rightm5 {
  margin-right: -5px !important;
}

.margin-left5 {
  margin-left: 5px !important;
}

.margin-leftm5 {
  margin-left: -5px !important;
}

.margin-all15 {
  margin: 15px !important;
}

.margin-allm15 {
  margin: -15px !important;
}

.margin-top15 {
  margin-top: 15px !important;
}

.margin-topm15 {
  margin-top: -15px !important;
}

.margin-bottom15 {
  margin-bottom: 15px !important;
}

.margin-bottomm15 {
  margin-bottom: -15px !important;
}

.margin-right15 {
  margin-right: 15px !important;
}

.margin-rightm15 {
  margin-right: -15px !important;
}

.margin-left15 {
  margin-left: 15px !important;
}

.margin-leftm15 {
  margin-left: -15px !important;
}

.margin-all25 {
  margin: 25px !important;
}

.margin-allm25 {
  margin: -25px !important;
}

.margin-top25 {
  margin-top: 25px !important;
}

.margin-topm25 {
  margin-top: -25px !important;
}

.margin-bottom25 {
  margin-bottom: 25px !important;
}

.margin-bottomm25 {
  margin-bottom: -25px !important;
}

.margin-right25 {
  margin-right: 25px !important;
}

.margin-rightm25 {
  margin-right: -25px !important;
}

.margin-left25 {
  margin-left: 25px !important;
}

.margin-leftm25 {
  margin-left: -25px !important;
}

.margin-all35 {
  margin: 35px !important;
}

.margin-allm35 {
  margin: -35px !important;
}

.margin-top35 {
  margin-top: 35px !important;
}

.margin-topm35 {
  margin-top: -35px !important;
}

.margin-bottom35 {
  margin-bottom: 35px !important;
}

.margin-bottomm35 {
  margin-bottom: -35px !important;
}

.margin-right35 {
  margin-right: 35px !important;
}

.margin-rightm35 {
  margin-right: -35px !important;
}

.margin-left35 {
  margin-left: 35px !important;
}

.margin-leftm35 {
  margin-left: -35px !important;
}

.margin-all45 {
  margin: 45px !important;
}

.margin-allm45 {
  margin: -45px !important;
}

.margin-top45 {
  margin-top: 45px !important;
}

.margin-topm45 {
  margin-top: -45px !important;
}

.margin-bottom45 {
  margin-bottom: 45px !important;
}

.margin-bottomm45 {
  margin-bottom: -45px !important;
}

.margin-right45 {
  margin-right: 45px !important;
}

.margin-rightm45 {
  margin-right: -45px !important;
}

.margin-left45 {
  margin-left: 45px !important;
}

.margin-leftm45 {
  margin-left: -45px !important;
}

.margin-all55 {
  margin: 55px !important;
}

.margin-allm55 {
  margin: -55px !important;
}

.margin-top55 {
  margin-top: 55px !important;
}

.margin-topm55 {
  margin-top: -55px !important;
}

.margin-bottom55 {
  margin-bottom: 55px !important;
}

.margin-bottomm55 {
  margin-bottom: -55px !important;
}

.margin-right55 {
  margin-right: 55px !important;
}

.margin-rightm55 {
  margin-right: -55px !important;
}

.margin-left55 {
  margin-left: 55px !important;
}

.margin-leftm55 {
  margin-left: -55px !important;
}

.margin-bottom35 {
  margin-bottom: 35px !important;
}

.padding-all0 {
  padding: 0px !important;
}

.padding-top0 {
  padding-top: 0px !important;
}

.padding-bottom0 {
  padding-bottom: 0px !important;
}

.padding-right0 {
  padding-right: 0px !important;
}

.padding-left0 {
  padding-left: 0px !important;
}

.padding-all10 {
  padding: 10px !important;
}

.padding-top10 {
  padding-top: 10px !important;
}

.padding-bottom10 {
  padding-bottom: 10px !important;
}

.padding-right10 {
  padding-right: 10px !important;
}

.padding-left10 {
  padding-left: 10px !important;
}

.padding-all20 {
  padding: 20px !important;
}

.padding-top20 {
  padding-top: 20px !important;
}

.padding-bottom20 {
  padding-bottom: 20px !important;
}

.padding-right20 {
  padding-right: 20px !important;
}

.padding-left20 {
  padding-left: 20px !important;
}

.padding-all30 {
  padding: 30px !important;
}

.padding-top30 {
  padding-top: 30px !important;
}

.padding-bottom30 {
  padding-bottom: 30px !important;
}

.padding-right30 {
  padding-right: 30px !important;
}

.padding-left30 {
  padding-left: 30px !important;
}

.padding-all40 {
  padding: 40px !important;
}

.padding-top40 {
  padding-top: 40px !important;
}

.padding-bottom40 {
  padding-bottom: 40px !important;
}

.padding-right40 {
  padding-right: 40px !important;
}

.padding-left40 {
  padding-left: 40px !important;
}

.padding-all50 {
  padding: 50px !important;
}

.padding-top50 {
  padding-top: 50px !important;
}

.padding-bottom50 {
  padding-bottom: 50px !important;
}

.padding-right50 {
  padding-right: 50px !important;
}

.padding-left50 {
  padding-left: 50px !important;
}

.padding-all5 {
  padding: 5px !important;
}

.padding-top5 {
  padding-top: 5px !important;
}

.padding-bottom5 {
  padding-bottom: 5px !important;
}

.padding-right5 {
  padding-right: 5px !important;
}

.padding-left5 {
  padding-left: 5px !important;
}

.padding-all15 {
  padding: 15px !important;
}

.padding-top15 {
  padding-top: 15px !important;
}

.padding-bottom15 {
  padding-bottom: 15px !important;
}

.padding-right15 {
  padding-right: 15px !important;
}

.padding-left15 {
  padding-left: 15px !important;
}

.padding-all25 {
  padding: 25px !important;
}

.padding-top25 {
  padding-top: 25px !important;
}

.padding-bottom25 {
  padding-bottom: 25px !important;
}

.padding-right25 {
  padding-right: 25px !important;
}

.padding-left25 {
  padding-left: 25px !important;
}

.padding-all35 {
  padding: 35px !important;
}

.padding-top35 {
  padding-top: 35px !important;
}

.padding-bottom35 {
  padding-bottom: 35px !important;
}

.padding-right35 {
  padding-right: 35px !important;
}

.padding-left35 {
  padding-left: 35px !important;
}

.padding-all45 {
  padding: 45px !important;
}

.padding-top45 {
  padding-top: 45px !important;
}

.padding-bottom45 {
  padding-bottom: 45px !important;
}

.padding-right45 {
  padding-right: 45px !important;
}

.padding-left45 {
  padding-left: 45px !important;
}

.padding-all55 {
  padding: 55px !important;
}

.padding-top55 {
  padding-top: 55px !important;
}

.padding-bottom55 {
  padding-bottom: 55px !important;
}

.padding-right55 {
  padding-right: 55px !important;
}

.padding-left55 {
  padding-left: 55px !important;
}

/*accordion*/
.ac-section {
  border-top: 1px solid #e5e5e5;
}

.ac-section h2 {
  margin: 20px auto;
  padding: 0 0 0 70px;
}

.ac-btn {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  background-size: 30px 30px;
  border-bottom: 0px;
  font-size: 1.8em;
}

.ac-btn:before {
  display: none;
}

.active .ac-btn {
  background-size: 30px 30px;
}

.ac-area {
  display: none;
  margin: 0 auto 50px;
  width: 100%;
  max-width: 1200px;
  padding: 0 5%;
}

.active .ac-area {
  display: block;
}

/*link*/
a {
  color: #6666AA;
  text-decoration: none;
}

a:visited {
  color: #6666AA;
}

a:hover {
  color: #444488;
  text-decoration: underline;
}

a:active {
  color: #444488;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Arial, sans-serif;
  color: #222;
  -webkit-text-size-adjust: 100%;
  vertical-align: bottom;
  zoom: 1;
}

body.theme-en {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif !important;
}

.fontS {
  font-size: 12px;
}

.fontM {
  font-size: 14px;
}

.fontL {
  font-size: 16px;
}

html {
  overflow-y: scroll;
  word-wrap: break-word;
}

img {
  max-width: 100%;
}

.theme-smp img {
  max-width: 100%;
}

.theme-smp .l-main img {
  height: auto !important;
}

.blockSkip {
  position: relative;
  top: -48px;
  display: block;
  text-align: center;
  background-color: #fbf1f2;
  padding: 8px;
  margin-bottom: -48px;
  width: 100%;
  height: 48px;
}

.blockSkip:focus {
  top: 0;
  margin-bottom: 0;
}

.blockSkip::before {
  content: '';
  width: 15px;
  height: 15px;
  margin-right: 8px;
  display: inline-block;
  background: url(../images/layout/icon_arrow_bottom_r.png) center no-repeat;
}

@media (max-width: 600px) {
  .blockSkip {
    display: none;
  }
}
/*header*/
.l-header {
  position: relative;
  background: #ffffff;
}

.theme-smp .l-header {
  width: auto;
  min-width: 320px;
  height: 65px;
  margin: 0;
  position: relative;
  z-index: 10;
  /* background: url(../images/layout/header_arc_bg_center_m.png) no-repeat bottom left; */
  background-size: 1000px 8px;
}

.theme-smp .l-header:before {
  background-color: #cc0022;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

/* @media (min-width: 960px) and (max-width: 2400px) {
  .theme-smp .l-header:before {
    width: 30%;
  }
}
@media (min-width: 2401px) and (max-width: 4000px) {
  .theme-smp .l-header:before {
    width: 40%;
  }
} */
.theme-smp .l-header:after {
  /* background: url(../images/layout/header_arc_bg_right_m.png) repeat-x bottom center; */
  background-size: 1px 8px;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

/* @media (min-width: 1001px) and (max-width: 1500px) {
  .theme-smp .l-header:after {
    width: 40%;
  }
}
@media (min-width: 1501px) and (max-width: 2000px) {
  .theme-smp .l-header:after {
    width: 60%;
  }
}
@media (min-width: 600px) {
  .theme-smp .l-header {
    height: 70px;
  }
}
@media (min-width: 600px) {
  .l-header #headerwrapper {
    height: 70px;
  }
} */
.panelBK {
  position: fixed;
  z-index: 9;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.2;
  filter: alpha(opacity=20);
  -moz-opacity: 0.20;
  display: none;
  top: 0;
}

/*global-navi*/
.l-global-area-warp {
  height: 82px;
  position: relative;
}

.l-global-area-warp:before {
  background-color: #cc0022;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

.l-global-area-warp:after {
  /* background: url(../images/layout/header_arc_bg_right.png) repeat-x center bottom; */
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

@media (min-width: 960px) and (max-width: 2000px) {
  .l-global-area-warp:after {
    width: 32%;
  }
}
@media (min-width: 2001px) and (max-width: 3500px) {
  .l-global-area-warp:after {
    width: 38%;
  }
}
@media (min-width: 3501px) and (max-width: 4000px) {
  .l-global-area-warp:after {
    width: 40%;
  }
}
.theme-popup .l-global-area-warp {
  height: 82px;
}

.theme-popup .l-global-area-warp:after {
  /* background: url(../images/layout/header_arc_bg_right_736.png) repeat-x center bottom; */
}

@media (min-width: 736px) and (max-width: 930px) {
  .theme-popup .l-global-area-warp:after {
    width: 10%;
  }
}
@media (min-width: 931px) and (max-width: 1240px) {
  .theme-popup .l-global-area-warp:after {
    width: 20%;
  }
}
@media (min-width: 1241px) and (max-width: 1500px) {
  .theme-popup .l-global-area-warp:after {
    width: 26%;
  }
}
/* .theme-popup.theme-990w .l-global-area-warp:after {
  background: url(../images/layout/header_arc_bg_right.png) repeat-x center bottom;
} */
/* .l-global-area {
  margin: 0 auto;
  position: relative;
  height: 82px;
  background: url(../images/layout/header_arc_bg_center.png) no-repeat center bottom;
  z-index: 2;
  background-size: 990px 16px;
} */
.theme-smp .l-global-area {
  background: #fff;
}

/* .theme-popup .l-global-area {
  height: 58px;
  background: url(../images/layout/header_arc_bg_center_736.png) repeat-x center bottom;
  background-size: 736px 16px;
} */
.logo-area {
  margin: 0;
  width: 170px;
  position: absolute;
  left: 20px;
  top: 50%;
  height: 38px;
  transform: translateY(-50%);
}

.theme-smp .logo-area {
  /* position: relative;
  top: 7px;
  left: 10px;
  width: 185px;
  z-index: 21; */
  margin: 0 auto;
  position: relative;
  height: 65px;
  z-index: 21;
  left: 0;
  transform: none;
}

.theme-smp .logo-area .l-logo a img:first-child {
  display: block;
  width: 113px;
  height: 26px;
  position: relative;
  top: 2px;
}

.theme-smp .logo-area .l-logo a img:last-child {
  display: block;
  width: 180px;
  height: 28px;
  position: relative;
  right: 0;
  bottom: 1px;
}

/* .theme-smp .logo-area .l-logo a img:last-child {
  display: block;
  width: 180px;
  height: 28px;
  position: relative;
  right: -5px;
  bottom: 1px;
} */
/* .theme-en .logo-area {
  margin: 0;
  width: 275px;
  position: absolute;
  left: 20px;
  top: 14px;
  height: 48px;
} */
/* @media (min-width: 600px) {
  .theme-smp .logo-area {
    top: 10px;
    width: 260px;
  }
} */
/* .theme-en .logo-area {
  top: 7px;
} */
/* .theme-en.theme-popup .logo-area {
  top: 7px;
  width: 197px;
} */
.theme-popup .logo-area {
  margin: 0;
  width: 170px;
  position: absolute;
  left: 20px;
  /* top: 50%; */
  transform: translateY(-50%);
  /* top: calc(50% + 5px); */
}

.logo-area h1 {
  margin: 0;
}

p.btn-pc {
  border: none;
  width: 52px;
  height: 46px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  position: absolute;
  right: 52px;
  top: 0;
  text-indent: -9999px;
  background: url(../images/layout/mobile_btn_pc.png) no-repeat center center;
  background-size: 52px 46px;
  margin: 0;
}

@media (min-width: 600px) {
  p.btn-pc {
    width: 70px;
    height: 62px;
    right: 70px;
    background-size: 70px 62px;
  }
}
.theme-en p.btn-pc {
  background: url(../images/layout/mobile_btn_pc_en.png) no-repeat center center;
  background-size: 52px 46px;
}

@media (min-width: 600px) {
  .theme-en p.btn-pc {
    background-size: 70px 62px;
  }
}
p.btn-pc a {
  display: block;
  width: 52px;
  height: 46px;
}

@media (min-width: 600px) {
  p.btn-pc a {
    width: 70px;
    height: 62px;
  }
}
.dl-trigger {
  border: none;
  width: 52px;
  height: 46px;
  background: url(../images/layout/mobile_btn_menu.png) no-repeat 0px 0px;
  background-size: 52px 46px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  position: absolute;
  right: 0;
  top: 10px;
  margin: 0;
}

@media (min-width: 600px) {
  .theme-pc .dl-trigger {
    /* width: 70px; */
    height: 62px;
    /* background-size: 70px 62px; */
  }
}
.theme-en .dl-trigger {
  background: url(../images/layout/mobile_btn_menu_en.png) no-repeat 0px 0px;
  background-size: 52px 46px;
}

@media (min-width: 600px) {
  .theme-pc.theme-en .dl-trigger {
    background-size: 70px 62px;
  }
}
.dl-trigger.close {
  background: url(../images/layout/mobile_btn_close.png) no-repeat 0px 0px;
  background-size: 52px 46px;
}

@media (min-width: 600px) {
  .theme-pc.dl-trigger.close {
    background-size: 70px 62px;
  }
}
.theme-en .dl-trigger.close {
  background: url(../images/layout/mobile_btn_close_en.png) no-repeat 0px 0px;
  background-size: 52px 46px;
}

@media (min-width: 600px) {
  .theme-pc.theme-en .dl-trigger.close {
    background-size: 70px 62px;
  }
}
.dl-trigger a {
  display: block;
  width: 52px;
  height: 46px;
}

@media (min-width: 600px) {
  .theme-pc .dl-trigger a {
    width: 70px;
    height: 62px;
  }
}
p.btn_close {
  border: none;
  width: 52px;
  height: 46px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  position: absolute;
  right: 0;
  top: 0;
}

p.btn_close img {
  width: 52px;
  height: 46px;
}

.theme-smp .dl-menuwrapper div.dl-menu {
  margin: 5px 5px 10px;
  position: absolute;
  background: #fff;
  width: 97%;
  display: none;
  z-index: 10;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
}

.theme-smp .dl-menuwrapper div.dl-menu:after {
  content: ' ';
  height: 0;
  position: absolute;
  width: 0;
  border: 10px solid transparent;
  border-bottom-color: #fff;
  bottom: 100%;
  right: 8px;
}

.theme-smp .dl-menuwrapper div.dl-menu a:hover {
  text-decoration: none;
  color: #333;
}

.l-global-navi {
  position: relative;
  margin: 0 auto;
  padding: 0;
}

.theme-smp .l-global-navi {
  width: 100%;
  min-width: 300px;
  border-radius: 3px 3px 0 0;
}

.l-global-navi li {
  float: left;
  width: 165px;
  position: relative;
  list-style: none;
  text-align: center;
}

.theme-smp .l-global-navi li {
  margin: 0;
}

.l-global-navi li a,
.l-global-navi li a:hover,
.l-global-navi li a:active,
.l-global-navi li a:visited {
  display: block;
  padding: 0;
}

.theme-smp .l-global-navi li a, .theme-smp
.l-global-navi li a:hover, .theme-smp
.l-global-navi li a:active, .theme-smp
.l-global-navi li a:visited {
  padding: 12px 12px 12px 43px;
  color: #333;
}

.l-global-navi li:first-child {
  width: 165px;
  margin-left: 0px;
}

.l-global-navi li:last-child {
  width: 165px;
  margin-right: 0px;
}

.l-global-navi li:hover {
  z-index: 2;
  background: #ededed;
}

.l-global-navi li.is-active {
  z-index: 3;
  background: #5f5f5f;
}

.theme-smp .l-global-navi li {
  float: none;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #ccc;
  font-size: 115%;
  line-height: 22px;
  font-weight: bold;
  background-color: #fff;
  text-align: left;
}

.theme-smp .l-global-navi li:before {
  position: absolute;
  content: url(../images/layout/icon_arrow_right_r.png);
  left: 15px;
  top: 13px;
}

.theme-smp .l-global-navi li:first-child {
  border-radius: 3px 3px 0 0;
}

.theme-smp .l-global-navi li.n_leisure {
  background-color: #fbdee0;
}

.l-extra-navi {
  position: absolute;
  right: 257px;
  top: 16px;
  margin: 0;
}

.theme-smp .l-extra-navi {
  position: relative;
  top: 0;
  border-radius: 0 0 3px 3px;
  margin: 0;
  right: 0;
}

.l-extra-navi li {
  float: left;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-extra-navi li::before {
  content: '';
  display: block;
  height: 1em;
  border-left: 1px solid #cdcdcd;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.l-extra-navi li:last-child::after {
  content: '';
  display: block;
  height: 1em;
  border-left: 1px solid #cdcdcd;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.l-extra-navi li a {
  display: block;
  color: #666666;
  padding: 0 12px;
  font-size: 100%;
}
@media (max-width: 600px) {
  .l-extra-navi li a {
    padding: 0;
  }
}
.thema-pc .l-extra-navi li a {
  padding: 0 12px;
}

.l-extra-navi li img {
  display: block;
}

.theme-smp .l-extra-navi li {
  float: none;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ccc;
  padding: 8px 43px;
  font-weight: bold;
}

.theme-smp .l-extra-navi li:before {
  position: absolute;
  content: url(../images/layout/icon_arrow_right_r.png);
  left: 15px;
  top: -4px;
  border-left: none;
}

.theme-smp .l-extra-navi li a {
  font-size: 100%;
  padding: 0;
  color: #333;
  padding: 0;
}

.theme-smp .l-extra-navi li.last {
  border-radius: 0 0 3px 3px;
  border-bottom: 0px;
}

.theme-smp .l-extra-navi:last-child li:last-child {
  border-radius: 0 0 3px 3px;
  border-bottom: 0px;
}

.theme-smp .l-extra-navi li:last-child::after {
  border-left: none;
}

.l-search-area {
  position: absolute;
  top: 41px;
  right: 257px;
}

.theme-en .l-search-area {
  /* width: 257px; */
  right: 21px;
}

.theme-smp .l-search-area {
  position: relative;
  width: 100%;
  right: 0;
  top: 0;
  border-bottom: 1px solid #ccc;
  padding: 10px;
}

.l-search-area .search-box {
  width: 191px;
  height: 22px;
  float: left;
  color: #444;
  border: 1px solid #d9d9d9;
  padding: 0 2px;
  line-height: 1em;
  margin-right: 5px;
  margin-top: 1px;
  font-size: 100%;
}

.theme-smp .l-search-area .search-box {
  width: 73%;
  height: 32px;
  border-radius: 3px;
}

.l-search-area .search-but {
  height: 22px;
  line-height: 24px;
  border: none;
  background: #e6e6e6;
  color: #333;
  font-size: 100%;
  vertical-align: top;
  margin-top: 1px;
  padding: 0 10px;
}

.l-search-area .search-but:hover {
  background: #666666;
  color: #fff;
}

.theme-smp .l-search-area .search-but {
  width: 25%;
  height: 32px;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  background: #626161;
  background: -webkit-linear-gradient(top, #626161, #484747);
  background: linear-gradient(to bottom, #626161, #484747);
  border: 1px solid #717171;
  padding: 0;
}

.l-search-area legend {
  display: none;
}

.l-font-size {
  position: absolute;
  width: 133px;
  right: 21px;
  top: 35px;
}

.theme-en .l-font-size {
  width: 126px;
}

.l-font-size img {
  vertical-align: top;
}

.l-font-size p {
  font-size: 12px;
  color: #999;
  width: 58px;
  height: 12px;
  padding: 3px 0;
  float: left;
  margin: 2px 0;
}

.theme-en .l-font-size p {
  width: 51px;
  height: 9px;
  padding: 5px 0;
}

.l-font-size ul {
  float: left;
  margin: 0;
  padding: 0;
}

.l-font-size li {
  margin: 0;
  margin-left: 5px;
  list-style: none;
  float: left;
  width: 20px;
  height: 22px;
  display: block;
  background: none no-repeat 0 0 transparent;
  cursor: pointer;
}

.l-font-size li.active {
  background-repeat: no-repeat;
  background-position: left top;
}

.l-font-size li.active img {
  visibility: hidden;
}

.l-font-size #fontS {
  background-image: url(../images/layout/fontsize_s_on.png);
}

.theme-en .l-font-size #fontS {
  background-image: url(../images/layout/fontsize_s_en_on.png);
}

.l-font-size #fontM {
  background-image: url(../images/layout/fontsize_m_on.png);
}

.theme-en .l-font-size #fontM {
  background-image: url(../images/layout/fontsize_m_en_on.png);
}

.l-font-size #fontL {
  background-image: url(../images/layout/fontsize_l_on.png);
}

.theme-en .l-font-size #fontL {
  background-image: url(../images/layout/fontsize_l_en_on.png);
}

.theme-smp .dl-menuwrapper {
  width: 100%;
  min-width: 320px;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 65px;
  z-index: 20;
}

/* @media (min-width: 600px) {
  .theme-smp .dl-menuwrapper {
    padding-top: 70px;
  }
} */
.theme-smp .dl-menuwrapper hr {
  background: #cc0022;
  border: 0;
  height: 2px;
  margin: 0;
}

.theme-smp .dl-menuwrapper ul {
  background: #fff;
  padding: 0;
  list-style: none;
  position: relative;
}

.theme-smp .dl-menuwrapper li {
  position: relative;
}

.theme-smp .dl-menuwrapper li a {
  display: block;
  position: relative;
  outline: none;
}

.l-global-area {
  margin: 0 auto;
  position: relative;
  height: 82px;
  z-index: 2;
  background-size: 990px 16px;
  font-size: 12px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.group-logo {
  position: relative;
  top: 3px;
  right: 9px;
  width: 226px;
  height: 36px;
}

.theme-popup .group-logo {
  position: relative;
  right: 96px;
}

.theme-en .group-logo {
  position: relative;
  top: 3px;
  right: 15px;
}

.theme-en .group-logo {
  position: relative;
  top: 3px;
  right: 15px;
  width: 185px;
}

.theme-en .group-logo a {
  display: block;
}

.theme-en .l-global-area .l-extra-navi {
  right: 226px;
}

.theme-en .l-global-area .l-search-area {
  right: 226px;
}

.l-popup-close {
  position: absolute;
  right: 10px;
  top: calc(50% - 6px);
  margin: 0;
  cursor: pointer;
  line-height: 0;
  border: none;
  background: none;
}

.theme-smp .l-popup-close {
  border: none;
  width: 52px;
  height: 46px;
  overflow: hidden;
  outline: none;
  position: absolute;
  right: 0;
  top: 10px;
  text-indent: -9999px;
  background: url(../images/layout/mobile_btn_close.png) no-repeat center center;
  background-size: 52px auto;
  margin: 0;
}

/* @media (min-width: 600px) {
  .theme-smp .l-popup-close {
    width: 70px;
    height: 62px;
    background-size: 70px auto;
  }
} */
/* .theme-en.theme-smp .l-popup-close {
  background: url(../images/layout/mobile_btn_close_en.png) no-repeat center center;
  background-size: 52px auto;
} */
/* @media (min-width: 600px) {
  .theme-en.theme-smp .l-popup-close {
    width: 70px;
    height: 62px;
    background-size: 70px auto;
  }
} */
/*footer*/
.l-footer-sitemap {
  width: 100%;
  position: relative;
  padding: 15px 0;
}

.l-footer-sitemap:before {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 3px;
  background: #cc0022;
  top: 0;
  left: 0;
}

.l-footer-sitemap:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 5px;
  top: 3px;
  left: 0;
  background: url(../images/layout/shadow.png) repeat 0px 0px;
}

.l-footer-sitemap a,
.l-footer-sitemap a:hover,
.l-footer-sitemap a:active,
.l-footer-sitemap a:visited {
  color: #666666;
}

.l-footer-sitemap > ul {
  margin: 0 auto;
}

.l-footer-sitemap > ul > li {
  float: left;
  list-style: none;
  width: 16.66667%;
  padding: 10px;
  font-size: 86%;
}

.l-footer-sitemap > ul > li:first-child {
  width: 100%;
  float: none;
}

.l-footer-sitemap > ul > li > a {
  font-weight: bold;
  padding-top: 20px;
  display: block;
}

.l-footer-sitemap > ul > li > a:first-child {
  padding-top: 0;
}

.l-footer-sitemap > ul > li > ul {
  padding: 0;
  margin: 0;
}

.l-footer-sitemap > ul > li > ul > li {
  list-style: none;
  margin: 6px 0;
  line-height: 1.4em;
}

.l-footer {
  width: 100%;
  height: 69px;
  position: relative;
  border-top: 1px solid #999;
}

.theme-smp .l-footer {
  border-top: 1px solid #ccc;
}

.theme-popup .l-footer {
  border-top: 0;
}

.l-footer ul.l-utility-navi {
  margin: 0 auto;
  padding: 10px 20px;
}

.theme-smp .l-footer ul.l-utility-navi {
  width: 100%;
  padding: 0;
}

.l-footer ul.l-utility-navi li {
  position: relative;
  float: left;
  list-style: none;
  line-height: 12px;
  margin: 0;
  padding: 0;
  height: 12px;
}

.l-footer ul.l-utility-navi li::before {
  content: '';
  display: block;
  height: 1em;
  border-left: 1px solid #cdcdcd;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.l-footer ul.l-utility-navi li:last-child::after {
  content: '';
  display: block;
  height: 1em;
  border-left: 1px solid #cdcdcd;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.l-footer ul.l-utility-navi li a {
  display: block;
  color: #666666;
  padding: 0 12px;
  font-size: 86%;
}

.theme-smp .l-footer ul.l-utility-navi li {
  position: relative;
  width: 100%;
  height: auto;
}

.theme-smp .l-footer ul.l-utility-navi li:before {
  position: absolute;
  left: 10px;
  top: 8px;
  content: url(../images/layout/icon_arrow_right_g.png);
  border: none;
  height: auto;
}

.theme-smp .l-footer ul.l-utility-navi li:last-child::after {
  display: none;
}

.theme-smp .l-footer ul.l-utility-navi li a {
  font-size: 100%;
}

.theme-smp .l-footer ul.l-utility-navi li a,
.theme-smp .l-footer ul.l-utility-navi li a:hover,
.theme-smp .l-footer ul.l-utility-navi li a:active,
.theme-smp .l-footer ul.l-utility-navi li a:visited {
  padding: 9px 4px 9px 25px;
  border-bottom: 1px solid #ccc;
  font-size: 100%;
  color: #333;
}

.theme-smp .l-footer .l-footer-popup-close {
  width: 156px;
  margin: 15px auto;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/layout/mobile_footer_close.png) no-repeat center center;
  background-size: 156px 20px;
  border: none;
  display: block;
}

.l-footer .l-footer-popup-close .theme-smp, .theme-en .l-footer .l-footer-popup-close, .theme-multi.theme-en.theme-popup .l-footer .l-footer-popup-close {
  background: url(../images/layout/mobile_footer_close_en.png) no-repeat center center;
  background-size: 156px 20px;
}

.l-footer .l-footer-contents {
  background: #cc0022;
  width: 100%;
  height: 35px;
}

.theme-smp .l-footer .l-footer-contents {
  position: relative;
  width: 100%;
  height: auto;
  min-width: 320px;
}

.l-footer .l-site-data {
  margin: 0 auto;
  position: relative;
}

.theme-smp .l-footer .l-site-data {
  min-width: 320px;
}

.l-footer .l-footer-logo {
  position: absolute;
  margin: 0;
  line-height: 12px;
  top: 12px;
  left: 20px;
}

.l-footer .l-copy {
  position: absolute;
  top: 12px;
  right: 20px;
  color: #ffffff;
  font-size: 72%;
  line-height: 13px;
  text-align: right;
  padding: 0;
  margin: 0;
  font-family: 'Helvetica', 'Arial';
}

.theme-smp .l-footer .l-copy {
  position: relative;
  text-align: center;
  top: 0;
  right: 0;
  padding: 10px;
  line-height: 143%;
}

#footer-search-form {
  background: #f2f2f2;
  padding: 10px;
  border-bottom: 1px solid #cccccc;
}

#footer-search-form .footer-search-form-area {
  width: 100%;
  margin: 0 auto;
}

#footer-search-form .footer-search-form-area legend {
  display: none;
}

#footer-search-form .footer-search-form-area .search-box-f {
  width: 73%;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 7px;
  height: 34px;
}

#footer-search-form .footer-search-form-area .search-but {
  width: 25%;
  height: 32px;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  background: #626161;
  background: -webkit-linear-gradient(top, #626161, #484747);
  background: linear-gradient(to bottom, #626161, #484747);
  border: 1px solid #717171;
  padding: 0;
}

.header-switcharea {
  background-color: #f2f2f2;
  background: #ffffff;
  background: -webkit-linear-gradient(top, #ffffff, #f1f1f3);
  background: linear-gradient(to bottom, #ffffff, #f1f1f3);
  border-bottom: 1px solid #ccc;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  font-size: 300%;
  font-weight: bold;
}

.header-switcharea a {
  color: #333;
  display: block;
  text-decoration: none;
  padding: 35px 0 30px;
}

.header-switcharea img {
  width: 45px;
  height: 76px;
  vertical-align: middle;
  margin-right: 15px;
}

.footer-switcharea {
  background: #f2f2f2;
  padding: 40px 0 40px;
}

.footer-switcharea ul {
  width: 90%;
  border-radius: 3px;
  margin: 0 auto;
}

.footer-switcharea ul li {
  list-style: none;
  float: left;
  width: 49%;
  margin-left: -1px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 13px;
  line-height: 13px;
  font-weight: bold;
  vertical-align: middle;
  position: relative;
  height: 42px;
  background-color: #5e5e5e;
  background: #5e5e5e;
  background: -webkit-linear-gradient(top, #5e5e5e, #5e5e5e);
  background: linear-gradient(to bottom, #5e5e5e, #5e5e5e);
}

.footer-switcharea ul li.active {
  background-color: #fbfbfc;
  background: #fbfbfc;
  background: -webkit-linear-gradient(top, #fbfbfc, #f1f1f3);
  background: linear-gradient(to bottom, #fbfbfc, #f1f1f3);
}

.footer-switcharea ul li.active a {
  color: #333;
}

.footer-switcharea ul li img {
  height: 15px;
  position: absolute;
  left: 13px;
  top: 13px;
}

.footer-switcharea ul li:nth-child(1) {
  border-radius: 3px 0 0 3px;
}

.footer-switcharea ul li:nth-child(2) {
  border-radius: 0 3px 3px 0;
}

.footer-switcharea ul li a,
.footer-switcharea ul li span.a-active {
  display: block;
  padding: 13px 4px 0px 13px;
  height: 40px;
  color: #ffffff;
}

.footer-switcharea ul li a:hover,
.footer-switcharea ul li span.a-active:hover {
  text-decoration: none;
}

.footer-switcharea ul li a span,
.footer-switcharea ul li span.a_active span {
  display: block;
  font-size: 11px;
}

#btn-page-list {
  position: fixed;
  bottom: 2px;
  right: 50px;
  z-index: 2;
}

@media (min-width: 600px) {
  #btn-page-list {
    right: 74px;
  }
}
#btn-page-list p {
  margin: 0;
}

#btn-page-list a {
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  text-indent: -9999px;
  background: url(../images/layout/mobile_pagelist.png) no-repeat left top;
  background-size: 44px 44px;
}

@media (min-width: 600px) {
  #btn-page-list a {
    width: 70px;
    height: 70px;
    background-size: 70px 70px;
  }
}
.l-pagetop {
  position: fixed;
  bottom: 50px;
  right: 10px;
  z-index: 2;
  width: 100%;
  display: none;
}

.theme-smp .l-pagetop {
  right: 2px;
  bottom: 46px;
}

@media (min-width: 600px) {
  .theme-smp .l-pagetop {
    bottom: 72px;
  }
}
.l-pagetop p {
  margin: 0 auto;
  position: relative;
  height: 0;
}

.theme-smp .l-pagetop p {
  margin: 0;
  width: 100%;
}

.theme-popup .l-pagetop p {
  width: 736px;
}

.l-pagetop a {
  width: 97px;
  height: 31px;
  right: 0;
  display: block;
  text-indent: -9999px;
  background: url(../images/layout/pagetop_off.png) no-repeat left top;
  overflow: hidden;
  position: absolute;
}

.l-pagetop a:hover {
  background: url(../images/layout/pagetop_on.png) no-repeat left top;
}

.theme-en .l-pagetop a {
  background: url(../images/layout/pagetop_en_off.png) no-repeat left top;
}

.theme-en .l-pagetop a:hover {
  background: url(../images/layout/pagetop_en_on.png) no-repeat left top;
}

.theme-smp .l-pagetop a, .theme-smp.theme-en .l-pagetop a {
  width: 44px;
  height: 44px;
  background: url(../images/layout/mobile_pagetop.png) no-repeat left top;
  background-size: 44px 44px;
}

@media (min-width: 600px) {
  .theme-smp .l-pagetop a, .theme-smp.theme-en .l-pagetop a {
    width: 70px;
    height: 70px;
    background-size: 70px 70px;
  }
}
.theme-smp .l-pagetop a:hover, .theme-smp.theme-en .l-pagetop a:hover {
  background: url(../images/layout/mobile_pagetop.png) no-repeat left top;
  width: 44px;
  height: 44px;
  background-size: 44px 44px;
}

@media (min-width: 600px) {
  .theme-smp .l-pagetop a:hover, .theme-smp.theme-en .l-pagetop a:hover {
    width: 70px;
    height: 70px;
    background-size: 70px 70px;
  }
}
.theme-smp.theme-en .logo-area {
  display: flex;
  align-items: center;
  width: 152px;
}

.theme-smp .logo-area .l-logo {
  height: 65px;
  display: flex;
  align-items: center;
  width: 180px;
  position: relative;
  right: 5px;
}

.theme-smp .logo-area .l-logo a {
  display: flex;
  flex-flow: column;
  align-items: center;
  height: 50px;
}

.l-girdText {
  clear: both;
  padding: 10px 21px;
  height: 12px;
  font-size: 86%;
  border-top: 1px solid #d9d9d9;
}

/*hero*/
.hero-slider {
  display: none;
}

.l-branding-head {
  margin: 0 auto;
}

.l-property-area {
  width: 100%;
  position: relative;
  background: #cc0022;
  z-index: 2;
}

.l-hero {
  overflow: hidden;
  padding-bottom: 30px;
  margin-bottom: 0;
}

.l-main .l-hero {
  margin-bottom: 10px;
}

.l-hero:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
  background: url(../images/layout/shadow.png) repeat 0px 0px;
}

.theme-smp .l-hero.slick-slider {
  background: #fff;
  margin-bottom: 0;
  padding-bottom: 46px;
}

.l-hero .slick-list {
  overflow: hidden;
  background: #f4f4f4;
}

.l-hero .slick-dots {
  bottom: -26px;
}

.theme-smp .l-hero .slick-dots {
  bottom: 10px;
  margin: 0;
}

.l-hero .slick-dots li {
  width: 10px;
  height: 10px;
}

.theme-smp .l-hero .slick-dots li {
  width: 20px;
  height: 20px;
}

.theme-smp .l-hero .slick-dots li button {
  height: 20px;
}

.l-hero .slick-dots li button:before {
  background: #e4e4e4;
  width: 10px;
  color: #e4e4e4;
  opacity: 1;
  font-size: 24px;
  content: "";
  height: 10px;
  border-radius: 5px;
}

.theme-smp .l-hero .slick-dots li button:before {
  font-size: 48px;
  width: 16px;
  height: 16px;
  border-radius: 8px;
}

.l-hero .slick-dots li.slick-active button:before {
  color: #646464;
  background: #646464;
}

.is-disaster {
  text-align: center;
}

.is-disaster .slick-list {
  background: #fff;
}

.is-disaster img {
  max-width: initial;
  width: auto;
  height: auto;
}

.theme-smp .is-disaster img {
  max-width: 100%;
  height: auto;
}

.theme-smp .is-disaster .hero-item {
  max-width: 100%;
  height: auto;
}

.is-disaster .hero-item img {
  margin: 0 auto;
  max-width: initial;
  width: auto !important;
}

.theme-smp .is-disaster .hero-item img {
  max-width: 100%;
  height: auto;
}

.hero-item {
  margin: 0 auto !important;
  display: none;
}

.hero-item.slick-slide {
  display: block;
}

.hero-item img {
  width: 100%;
}

#bodyfade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  opacity: 1;
  z-index: 20;
  display: none\9;
}

.theme-smp .l-breadcrumbs-wrap {
  width: 100%;
  min-width: 320px;
}

.theme-popup .l-breadcrumbs-wrap {
  width: 736px;
}

.l-breadcrumbs-wrap .l-breadcrumbs-nav {
  margin: 0 21px 0;
  padding: 21px 0 0 0;
}

.theme-smp .l-breadcrumbs-wrap .l-breadcrumbs-nav {
  padding: 0;
  margin: 20px 10px;
}

.l-breadcrumbs-wrap .l-breadcrumbs-nav li {
  display: inline-block;
  list-style: none;
  float: left;
  font-size: 86%;
  line-height: 115%;
  margin: 1px 0 5px 5px;
}

.theme-smp .l-breadcrumbs-wrap .l-breadcrumbs-nav li {
  float: none;
}

.l-breadcrumbs-wrap .l-breadcrumbs-nav li a {
  background: url(../images/layout/topicpath_arrow.gif) no-repeat right center;
  padding: 0 20px 0 0;
}

.l-local-navi + .l-breadcrumbs-wrap {
  margin-top: -20px;
}

.l-contents {
  width: 990px;
  margin: 0 auto;
  z-index: 0;
  position: relative;
  background: #ffffff;
  font-size: 16px;
}

.theme-single .l-contents {
  width: 100%;
  min-width: 990px;
}

.theme-popup .l-contents {
  width: 736px;
}

.theme-popup.theme-smp .l-contents {
  width: 100%;
  min-width: 320px;
}

.theme-popup.theme-en .group-logo {
  position: relative;
  right: 109px;
}

.theme-smp .l-contents {
  width: 100%;
  min-width: 320px;
}

.l-contents .l-main {
  width: 696px;
  margin: 21px 0px 21px 21px;
  position: relative;
  float: left;
}

.theme-smp .l-contents .l-main {
  width: auto;
  overflow: hidden;
  min-width: 320px;
  margin: 0;
  float: none;
  padding: 20px 0;
}

.theme-single .l-contents .l-main {
  width: 948px;
  margin: 21px auto;
  float: none;
}

.theme-single.theme-smp .l-contents .l-main {
  width: auto;
  overflow: hidden;
  min-width: 320px;
  margin: 0;
  float: none;
  padding: 20px 0;
}

.l-contents .l-side {
  width: 222px;
  margin: 18px 21px 21px 0;
  float: right;
}

.theme-smp .l-contents .l-side {
  width: auto;
  min-width: 320px;
  margin: 0 auto;
  float: none;
}

.l-local-navi {
  margin: 0 0 20px;
}

.l-local-navi .local-navi-panel {
  position: relative;
}

.l-local-navi .local-navi-panel .local-navi-switch {
  height: 42px;
  display: block;
  background: #333 url(../images/layout/mobile_icon_m_plus.png) no-repeat right center;
  background-size: 34px 34px;
  padding: 8px 40px 8px 10px;
  color: #ffffff;
  font-size: 100%;
  font-weight: bold;
}

.l-local-navi .local-navi-panel .local-navi-switch .close {
  display: none;
}

.l-local-navi .local-navi-box {
  display: none;
}

.l-local-navi.is-hide .local-navi-panel .local-navi-switch {
  background: #333 url(../images/layout/mobile_icon_m_minus.png) no-repeat right center;
  background-size: 34px 34px;
}

.l-local-navi.is-hide .local-navi-panel .local-navi-switch .open {
  display: none;
}

.l-local-navi.is-hide .local-navi-panel .local-navi-switch .close {
  display: inline;
}

.l-local-navi.is-hide .local-navi-box {
  display: block;
}

.l-local-navi h3 {
  padding: 0;
  margin: 0;
  border-left: 0;
  border-radius: 3px 3px 0 0;
  overflow: hidden;
  font-size: 100%;
}

.theme-smp .l-local-navi h3 {
  padding: 0;
  border-radius: 0;
  margin: 0;
}

.theme-smp .l-local-navi h3 a {
  background: #7f7f7f;
  background: -webkit-linear-gradient(top, #7f7f7f, #424242);
  background: linear-gradient(to bottom, #7f7f7f, #424242);
  color: #ffffff !important;
  font-weight: bold;
  line-height: 136%;
  font-size: 107%;
  padding: 12px 40px 12px 10px;
  display: block;
}

.theme-smp .l-local-navi h3 a:hover {
  color: #ffffff;
  background: #4e4e4e;
  background: -webkit-linear-gradient(top, #4e4e4e, #383838);
  background: linear-gradient(to bottom, #4e4e4e, #383838);
}

.theme-smp .l-local-navi h3 a:active {
  color: #ffffff;
}

.l-local-navi h3 a {
  background: #7d7e7e;
  background: -webkit-linear-gradient(top, #7d7e7e, #454444);
  background: linear-gradient(to bottom, #7d7e7e, #454444);
  color: #ffffff !important;
  font-weight: bold;
  padding: 15px 10px;
  display: block;
}

.l-local-navi h3 a:hover {
  color: #ffffff;
  background: #7c7c7c;
  background: -webkit-linear-gradient(top, #7c7c7c, #343334);
  background: linear-gradient(to bottom, #7c7c7c, #343334);
}

.l-local-navi h3 a:active {
  color: #ffffff;
}

.l-local-navi a {
  color: #333;
}

.l-local-navi a:visited {
  color: #333;
}

.l-local-navi a:hover {
  text-decoration: none;
}

.l-local-navi ul {
  padding: 0;
  margin: 0;
  border-bottom: 0;
  overflow: hidden;
}

.theme-smp .l-local-navi ul {
  border-right: 0;
  border-left: 0;
}

.l-local-navi li {
  /*navi 1*/
  padding: 0;
  margin: 0;
  list-style: none;
}

.l-local-navi li a {
  font-size: 100%;
  line-height: 136%;
  font-weight: bold;
  position: relative;
  display: block;
  padding: 6px 6px 6px 25px;
  border-bottom: 1px solid #b3b3b3;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #fff;
  background: #e6e6e6;
}

.l-local-navi li a:hover {
  background: #b8b8b8;
  border-top: 1px solid #cccccc;
}

.l-local-navi li a:hover:before {
  content: url(../images/layout/icon_arrow_right_s_r.png);
}

.l-local-navi li a:before {
  position: absolute;
  left: 10px;
  top: 6px;
  content: url(../images/layout/icon_arrow_right_s_r.png);
}

.l-local-navi li a:hover, .l-local-navi li a:active, .l-local-navi li a:visited, .l-local-navi li a:focus {
  text-decoration: none;
}

.l-local-navi li.ac > a, .l-local-navi li.ac > a:hover {
  background: #696969;
  border: 1px solid #696969;
  color: #ffffff;
}

.l-local-navi li.ac > a:before, .l-local-navi li.ac > a:hover:before {
  content: url(../images/layout/icon_arrow_right_s_c.png);
}

.l-local-navi li.ac > a span, .l-local-navi li.ac > a:hover span {
  color: #ffffff;
}

.l-local-navi li.ac a, .l-local-navi li.ac a:visited {
  color: #ffffff;
}

.l-local-navi li.ac li a, .l-local-navi li.ac li a:visited {
  color: #333;
}

.l-local-navi li ul {
  z-index: 1;
  margin: 0;
  zoom: 1;
  border: none;
  position: relative;
}

.l-local-navi li ul:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  background: url(../images/layout/shadow.png) repeat bottom left;
}

.l-local-navi li ul ul:after {
  display: none;
}

.l-local-navi li li, .l-local-navi li.ac li {
  /*navi 2*/
}

.l-local-navi li li a, .l-local-navi li.ac li a {
  background-color: #fff;
  background-image: none;
  font-size: 93%;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  padding: 6px 6px 6px 25px;
  border-bottom: 1px solid #b3b3b3;
}

.l-local-navi li li a:before, .l-local-navi li.ac li a:before {
  content: url(../images/layout/icon_arrow_right_s_g.png);
  left: 10px;
}

.l-local-navi li li a:hover, .l-local-navi li.ac li a:hover {
  color: #333;
  background-color: #b8b8b8;
  background-image: none;
}

.l-local-navi li li a:hover:before, .l-local-navi li.ac li a:hover:before {
  content: url(../images/layout/icon_arrow_right_s_g.png);
}

.l-local-navi li li a ul:after, .l-local-navi li.ac li a ul:after {
  display: none;
}

.l-local-navi li li li, .l-local-navi li li.ac li, .l-local-navi li.ac li li, .l-local-navi li.ac li.ac li {
  /*navi 3*/
}

.l-local-navi li li li a, .l-local-navi li li.ac li a, .l-local-navi li.ac li li a, .l-local-navi li.ac li.ac li a {
  background-color: #fff;
  padding: 6px 6px 6px 31px;
}

.l-local-navi li li li a:before, .l-local-navi li li.ac li a:before, .l-local-navi li.ac li li a:before, .l-local-navi li.ac li.ac li a:before {
  left: 16px;
}

.l-local-navi li li li a.ac a, .l-local-navi li li li a.ac a:hover, .l-local-navi li li.ac li a.ac a, .l-local-navi li li.ac li a.ac a:hover, .l-local-navi li.ac li li a.ac a, .l-local-navi li.ac li li a.ac a:hover, .l-local-navi li.ac li.ac li a.ac a, .l-local-navi li.ac li.ac li a.ac a:hover {
  background-position: 37px 10px;
  color: #ffffff;
}

.l-local-navi li li li li, .l-local-navi li li li.ac li, .l-local-navi li li.ac li li, .l-local-navi li li.ac li.ac li, .l-local-navi li.ac li li li, .l-local-navi li.ac li li.ac li, .l-local-navi li.ac li.ac li li, .l-local-navi li.ac li.ac li.ac li {
  /*navi 4*/
}

.l-local-navi li li li li a, .l-local-navi li li li.ac li a, .l-local-navi li li.ac li li a, .l-local-navi li li.ac li.ac li a, .l-local-navi li.ac li li li a, .l-local-navi li.ac li li.ac li a, .l-local-navi li.ac li.ac li li a, .l-local-navi li.ac li.ac li.ac li a {
  background-color: #fff;
  padding: 6px 6px 6px 37px;
}

.l-local-navi li li li li a:before, .l-local-navi li li li.ac li a:before, .l-local-navi li li.ac li li a:before, .l-local-navi li li.ac li.ac li a:before, .l-local-navi li.ac li li li a:before, .l-local-navi li.ac li li.ac li a:before, .l-local-navi li.ac li.ac li li a:before, .l-local-navi li.ac li.ac li.ac li a:before {
  left: 22px;
}

.theme-smp .l-local-navi a {
  color: #333;
  cursor: pointer;
}

.theme-smp .l-local-navi a:visited {
  color: #333;
}

.theme-smp .l-local-navi a:hover {
  text-decoration: none;
}

.theme-smp .l-local-navi .localNavPanel {
  position: relative;
}

.theme-smp .l-local-navi .localNavPanel .localNavSwitch {
  height: 14px;
  display: block;
  background: #333 url(../images/mobile_icon_m_plus.png) no-repeat right center;
  background-size: 34px 34px;
  padding: 14px 40px 14px 10px;
  color: #ffffff;
  font-size: 100%;
  font-weight: bold;
}

.theme-smp .l-local-navi .localNavPanel .localNavSwitch .close {
  display: none;
}

.theme-smp .l-local-navi.hide_l .localNavPanel .localNavSwitch {
  background: #333 url(../images/mobile_icon_m_minus.png) no-repeat right center;
  background-size: 34px 34px;
}

.theme-smp .l-local-navi.hide_l .localNavPanel .localNavSwitch .open {
  display: none;
}

.theme-smp .l-local-navi.hide_l .localNavPanel .localNavSwitch .close {
  display: inline;
}

.l-main-title {
  width: 990px;
  margin: 0 auto;
  padding: 0;
}

.theme-smp .l-main-title {
  width: 100%;
}

.theme-smp .l-main-title img {
  width: 100%;
}

.l-sns {
  background: #efefef;
  padding: 15px 15px 20px;
  text-align: center;
}

.l-sns ul {
  margin: 0;
  padding: 0;
  height: 86px;
}

.theme-smp .l-sns ul {
  height: 47px;
}

.l-sns li {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.l-sns li a {
  display: block;
  width: 84px;
  height: 86px;
  background-size: 84px 86px;
  overflow: hidden;
  text-indent: -9999px;
}

.theme-smp .l-sns li a {
  width: 64px;
  height: 47px;
}

.l-sns .sns-facebook a {
  background: url(../images/layout/sns_icon_facebook.png) no-repeat center bottom;
}

.theme-en .l-sns .sns-facebook a {
  background: url(../images/layout/sns_icon_facebook_e.png) no-repeat center bottom;
}

.l-sns .sns-twitter a {
  background: url(../images/layout/sns_icon_twitter.png) no-repeat center bottom;
}

.theme-en .l-sns .sns-twitter a {
  background: url(../images/layout/sns_icon_twitter_e.png) no-repeat center bottom;
}

.l-sns .sns-gplus a {
  background: url(../images/layout/sns_icon_gplus.png) no-repeat center bottom;
}

.theme-en .l-sns .sns-gplus a {
  background: url(../images/layout/sns_icon_gplus_e.png) no-repeat center bottom;
}

.l-sns .sns-line a {
  background: url(../images/layout/sns_icon_line.png) no-repeat center bottom;
}

.theme-en .l-sns .sns-line a {
  background: url(../images/layout/sns_icon_line_e.png) no-repeat center bottom;
}

.l-sns .sns-x a {
  background: url(../images/layout/sns_icon_x.png) no-repeat center bottom;
}

.theme-en .l-sns .sns-x a {
  background: url(../images/layout/sns_icon_x_e.png) no-repeat center bottom;
}

.l-sns .sns-linkedin a {
  background: url(../images/layout/sns_icon_linkedin.png) no-repeat center bottom;
}

.theme-en .l-sns .sns-linkedin a {
  background: url(../images/layout/sns_icon_linkedin_e.png) no-repeat center bottom;
}

/*side*/
.l-side hr {
  border-top: 1px solid #aaaaaa;
  margin: 20px 0;
}

.theme-smp .l-side hr {
  margin: 20px 10px;
}

.frame-line {
  margin-bottom: 18px;
  border: 2px solid #d6d6d6;
  background: #fff;
}

.theme-smp .frame-line {
  margin: 0 10px 30px;
}

.frame-line h4 {
  padding: 10px 12px;
  margin: -2px;
  border-top: 3px solid #777777;
}

.frame-line .line-navi {
  margin: 0 10px;
}

.frame-line .line-navi.line-navi-pdf .line-navi-item a[target="_blank"] .line-navi-text:after {
  display: none;
}

.frame-line .line-navi.line-navi-pdf .line-navi-item .line-navi-text {
  padding-left: 75px;
}

.frame-line .line-navi.line-navi-pdf .line-navi-item .line-navi-text:before {
  position: absolute;
  left: 57px;
  content: url(../images/layout/icon_pdf.png);
  margin-top: -5px;
}

.frame-line .line-navi-item {
  border-top: 1px solid #ccc;
}

.frame-line .line-navi-item a {
  display: block;
  padding: 11px 0;
  font-size: 93%;
}

.frame-line .line-navi-item a[target="_blank"] .line-navi-text:after {
  display: inline-block;
  content: url(../images/layout/icon_owr.png);
  padding: 0 10px;
  font-size: 93%;
  color: #cc0022;
  text-decoration: none;
}

.frame-line .line-navi-item p {
  margin: 0;
  padding: 0;
  font-size: 93%;
  line-height: 1.4em;
}

.frame-line .line-navi-item .line-navi-image {
  float: left;
  display: inline-block;
  width: 50px;
}

.frame-line .line-navi-item .line-navi-text {
  position: relative;
  padding-left: 18px;
}

.frame-line .line-navi-item .line-navi-text:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: url(../images/layout/icon_arrow_right_g.png);
  margin-top: -8px;
}

.frame-line .line-navi-item .line-navi-image + .line-navi-text {
  padding-left: 75px;
}

.frame-line .line-navi-item .line-navi-image + .line-navi-text:before {
  position: absolute;
  left: 60px;
  top: 4px;
  content: url(../images/layout/icon_arrow_right_g.png);
  margin-top: 0;
}

.stock-quotation {
  margin-bottom: 18px;
}

.stock-quotation .chart-table {
  height: 100px;
}

.stock-quotation .chart-link {
  margin: -1px;
}

.stock-quotation .chart-link a {
  position: relative;
  display: block;
  margin: 0;
  padding: 10px 10px 10px 28px;
  background: #656565;
  color: #fff;
}

.stock-quotation .chart-link a:before {
  content: url(../images/layout/icon_arrow_right_c.png);
  position: absolute;
  left: 10px;
  top: 12px;
}

.stock-quotation .chart-link a:hover {
  text-decoration: none;
}

.access-rank .access-rank-list {
  padding: 0;
  margin: 0 10px;
}

.access-rank .access-rank-list li {
  list-style: none;
  position: relative;
  padding: 9px 0 9px 28px;
  border-top: 1px solid #cccccc;
  font-size: 93%;
}

.access-rank .access-rank-list li:before {
  position: absolute;
  display: block;
  left: 0;
  top: 10px;
  width: 17px;
  height: 17px;
  border-radius: 8px;
  background: #cc0022;
  color: #fff;
  line-height: 10px;
  font-size: 10px;
  text-align: center;
  padding: 3px;
  font-weight: bold;
}

.access-rank .access-rank-list li:first-child:before {
  content: '1';
}

.access-rank .access-rank-list li:first-child + *:before {
  content: '2';
}

.access-rank .access-rank-list li:first-child + * + *:before {
  content: '3';
}

.access-rank .access-rank-list li:first-child + * + * + *:before {
  content: '4';
}

.access-rank .access-rank-list li:first-child + * + * + * + *:before {
  content: '5';
}

.ban-area {
  margin-bottom: 18px;
}

.theme-smp .ban-area {
  margin: 0 5px 18px;
}

.ban-area .ban-item {
  margin-bottom: 6px;
}

.theme-smp .ban-area .ban-item {
  padding: 5px;
  margin: 0;
  width: 50%;
  float: left;
}

.theme-smp .ban-area .ban-item img {
  width: 100%;
}

.theme-smp .ban-area .ban-item.ban-l-smp {
  width: 100%;
}

.cta-navi {
  background: #eeeeee;
  padding: 0 0 10px;
  margin: 0 0 18px;
}

.theme-smp .cta-navi {
  width: 100%;
  padding: 5px;
}

.cta-navi a {
  display: block;
  background: #fff;
  padding: 10px 2px 10px 40px;
  color: #333;
  font-weight: bold;
  font-size: 14px;
}

.cta-navi a:hover {
  text-decoration: none;
  background-color: #c4c4c4;
}

.theme-smp .cta-navi a:hover {
  text-decoration: none;
  background-color: #c4c4c4;
}

.theme-smp .cta-navi a {
  height: 74px;
  display: block;
  background: #fff;
  padding: 10px;
  color: #333;
  font-weight: bold;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 11px;
}

.theme-smp .cta-navi a:before {
  display: block;
  width: 100%;
  height: 35px;
  text-align: center;
  content: '';
}

.theme-en.theme-smp .cta-navi a {
  height: 80px;
  line-height: 1.2em;
}

.cta-navi li {
  padding: 10px 10px 0;
  list-style: none;
}

.theme-smp .cta-navi li {
  width: 50%;
  float: left;
  padding: 5px;
  list-style: none;
}

.cta-navi .cta-mail a {
  background: #fff url(../images/layout/icon_mail.png) no-repeat 10px 12px;
}

.theme-smp .cta-navi .cta-mail a {
  background: #fff;
}

.theme-smp .cta-navi .cta-mail a:before {
  background: #fff url(../images/layout/icon_mail_smp.png) no-repeat center top;
  background-size: 27px auto;
}

.cta-navi .cta-mail a:hover {
  background-color: #c4c4c4;
}

.theme-smp .cta-navi .cta-mail a:hover:before {
  background-color: #c4c4c4;
}

.cta-navi .cta-question a {
  background: #fff url(../images/layout/icon_help.png) no-repeat 10px 12px;
}

.theme-smp .cta-navi .cta-question a {
  background: #fff;
}

.theme-smp .cta-navi .cta-question a:before {
  background: #fff url(../images/layout/icon_help_smp.png) no-repeat center top;
  background-size: 27px auto;
}

.cta-navi .cta-question a:hover {
  background-color: #c4c4c4;
}

.theme-smp .cta-navi .cta-question a:hover:before {
  background-color: #c4c4c4;
}

.cta-navi .cta-contact a {
  background: #fff url(../images/layout/icon_contact.png) no-repeat 10px 12px;
}

.theme-smp .cta-navi .cta-contact a {
  background: #fff;
}

.theme-smp .cta-navi .cta-contact a:before {
  background: #fff url(../images/layout/icon_contact_smp.png) no-repeat center top;
  background-size: 27px auto;
}

.cta-navi .cta-contact a:hover {
  background-color: #c4c4c4;
}

.theme-smp .cta-navi .cta-contact a:hover:before {
  background-color: #c4c4c4;
}

.cta-navi .cta-irevent a {
  background: #fff url(../images/layout/icon_ir_event.png) no-repeat 10px 12px;
}

.theme-smp .cta-navi .cta-irevent a {
  background: #fff;
}

.theme-smp .cta-navi .cta-irevent a:before {
  background: #fff url(../images/layout/icon_ir_event_smp.png) no-repeat center top;
  background-size: 27px auto;
}

.cta-navi .cta-irevent a:hover {
  background-color: #c4c4c4;
}

.theme-smp .cta-navi .cta-irevent a:hover:before {
  background-color: #c4c4c4;
}

.theme-smp {
  -webkit-text-size-adjust: none;
  background: #ffffff;
}

.theme-smp #i_search_autocomplete {
  z-index: 20 !important;
}

.theme-smp #contentswrapper {
  width: 100%;
  min-width: 320px;
  margin: 0 auto;
}

.theme-smp .footer_close {
  width: 100%;
  text-align: center;
  margin: 0 auto 15px;
}

.theme-smp .footer_close img {
  width: 156px;
  height: 20px;
}

.theme-smp .f_s_zenrin ul li.active a {
  padding-top: 8px;
  height: 32px;
}

ul, ol ul {
  list-style-type: disc;
}

h2 {
  position: relative;
  font-size: 150%;
  font-weight: bold;
  line-height: 30px;
  border-top: 3px solid #cc0022;
  margin: 0;
  padding: 20px 10px 23px;
  color: #333;
}

.theme-smp h2 {
  font-size: 122%;
  padding: 12px 10px 23px;
}

h2.titleB {
  border-top: 3px solid #777;
}

h2.title-link {
  padding-left: 24px;
  position: relative;
}

h2.title-link:before {
  font-size: 115%;
  position: absolute;
  left: 10px;
  top: 20px;
}

.theme-smp h2.title-link:before {
  top: 12px;
}

h2.title-link a {
  color: #333;
}

h2.title-link a:hover {
  text-decoration: none;
}

h3 {
  font-size: 115%;
  font-weight: bold;
  line-height: 24px;
  color: #333;
  border-left: 4px solid #cc0022;
  margin: 0 10px 23px;
  padding: 8px 0 8px 15px;
}

.theme-smp h3 {
  font-size: 107%;
  margin: 0 5px 15px;
  padding: 0 0 0 5px;
}

h3.titleB {
  border-left: 4px solid #777;
}

.theme-smp h3.title-bg {
  background: #f6f6f6;
}

h4 {
  font-size: 115%;
  font-weight: bold;
  color: #333;
  line-height: 24px;
  margin: 0 10px 23px;
}

h5 {
  margin: 0 10px 23px;
  font-size: 115%;
  line-height: 24px;
  font-weight: bold;
  color: #333;
}

h6 {
  line-height: 1.4em;
  margin: 0 10px 23px;
  font-size: 100%;
  font-weight: bold;
  color: #333;
}

p {
  line-height: 1.6em;
  margin: 0 10px 23px;
  font-size: 100%;
}

blockquote {
  font-size: 100%;
}

ul {
  margin: 0 10px 23px;
  padding: 0 0 0 15px;
}

ul li {
  line-height: 1.6em;
}

ul.text-link-ul {
  padding: 0;
  margin: 0 10px 23px;
}

ul.text-link-ul li {
  position: relative;
  padding-left: 15px;
  margin: 0 0 10px;
}

ul.text-link-ul li:before {
  position: absolute;
  left: 0px;
  top: 0px;
}

ul.text-link-ul ul {
  margin: 20px 0;
  padding-left: 0;
}

ul.text-link-ul.list-gray li:before {
  content: url(../images/layout/icon_arrow_right_g.png);
}

ul.text-link-ul.anchor-list li:before {
  content: url(../images/layout/icon_arrow_bottom_r.png);
}

ul.text-link-ul-v {
  padding: 0;
}

ul.text-link-ul-v li {
  position: relative;
  float: left;
  width: 33.3333%;
  padding: 0 10px 10px 15px;
  margin-bottom: 15px;
}

ul.text-link-ul-v li:before {
  position: absolute;
  left: 0px;
  top: 0px;
}

ul.text-link-ul-v.list-gray li:before {
  color: #777;
}

ul.text-link-ul-v.anchor-list li:before {
  content: url(../images/layout/icon_arrow_bottom_r.png);
}

ol {
  padding: 0 0 0 15px;
  margin: 0 10px 23px;
}

ol li {
  line-height: 1.6em;
}

ol.style-decimal > li {
  list-style-type: decimal;
}

ol.style-lalfa > li {
  list-style-type: lower-alpha;
}

ol.style-lroman > li {
  list-style-type: lower-roman;
}

.asterisk-list {
  padding: 0;
  counter-reset: asterisk;
}

.asterisk-list li {
  padding-left: 30px;
  list-style: none;
  position: relative;
}

.asterisk-list li:before {
  position: absolute;
  left: 0;
  counter-increment: asterisk;
  content: "※" counter(asterisk);
}

ul.asterisk-list li {
  padding-left: 15px;
}

ul.asterisk-list li:before {
  content: "※";
}

.asterisk-s-list {
  padding: 0;
  counter-reset: asterisk;
}

.asterisk-s-list li {
  padding-left: 30px;
  list-style: none;
  position: relative;
}

.asterisk-s-list li:before {
  position: absolute;
  left: 0;
  counter-increment: asterisk;
  content: "*" counter(asterisk);
}

ul.asterisk-s-list li {
  padding-left: 15px;
}

ul.asterisk-s-list li:before {
  content: "*";
}

.attention-list {
  padding: 0;
  counter-reset: attention;
}

.attention-list li {
  padding-left: 30px;
  list-style: none;
  position: relative;
}

.attention-list li:before {
  position: absolute;
  left: 0;
  counter-increment: attention;
  content: "注" counter(attention) ")";
}

ul.attention-list li:before {
  content: "(注)";
}

.text-icon-1em, .text-icon-2em, .text-icon-3em, .text-icon-4em, .text-icon-5em, .text-icon-6em, .text-icon-7em, .text-icon-8em, .text-icon-9em, .text-icon-10em, .text-icon-11em, .text-icon-12em {
  position: relative;
}

.text-icon-1em span.text-icon, .text-icon-2em span.text-icon, .text-icon-3em span.text-icon, .text-icon-4em span.text-icon, .text-icon-5em span.text-icon, .text-icon-6em span.text-icon, .text-icon-7em span.text-icon, .text-icon-8em span.text-icon, .text-icon-9em span.text-icon, .text-icon-10em span.text-icon, .text-icon-11em span.text-icon, .text-icon-12em span.text-icon {
  position: absolute;
  display: block;
  left: 0;
}

div > span.text-icon {
  margin-left: 10px;
}

.text-icon-1em {
  padding-left: 1.5em;
}

.text-icon-1em span.text-icon {
  width: 1.5em;
}

.text-icon-2em {
  padding-left: 2.5em;
}

.text-icon-2em span.text-icon {
  width: 2.5em;
}

.text-icon-3em {
  padding-left: 3.5em;
}

.text-icon-3em span.text-icon {
  width: 3.5em;
}

.text-icon-4em {
  padding-left: 4.5em;
}

.text-icon-4em span.text-icon {
  width: 4.5em;
}

.text-icon-5em {
  padding-left: 5.5em;
}

.text-icon-5em span.text-icon {
  width: 5.5em;
}

.text-icon-6em {
  padding-left: 6.5em;
}

.text-icon-6em span.text-icon {
  width: 6.5em;
}

.text-icon-7em {
  padding-left: 7.5em;
}

.text-icon-7em span.text-icon {
  width: 7.5em;
}

.text-icon-8em {
  padding-left: 8.5em;
}

.text-icon-8em span.text-icon {
  width: 8.5em;
}

.text-icon-9em {
  padding-left: 9.5em;
}

.text-icon-9em span.text-icon {
  width: 9.5em;
}

.text-icon-10em {
  padding-left: 10.5em;
}

.text-icon-10em span.text-icon {
  width: 10.5em;
}

.text-icon-11em {
  padding-left: 11.5em;
}

.text-icon-11em span.text-icon {
  width: 11.5em;
}

.text-icon-12em {
  padding-left: 12.5em;
}

.text-icon-12em span.text-icon {
  width: 12.5em;
}

dl dt {
  font-size: 115%;
  color: #555;
}

dl dd {
  margin-bottom: 1em;
}

hr {
  border-top: 1px solid #e5e5e5;
  margin: 20px 0;
}

.blank {
  background: url("../images/layout/window-icon.png") no-repeat right center;
  padding-right: 15px;
  margin-right: 5px;
}

.lead-text {
  margin: 0 0 35px;
  font-weight: bold;
}

table {
  margin: 0 0 23px 0;
  width: 100%;
  background: #fff;
}

table caption {
  font-size: 100%;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: left;
}

table td {
  border: 1px solid #ccc;
  padding: 8px;
  line-height: 172%;
  font-size: 100%;
  word-wrap: break-word;
  text-align: center;
}

table th {
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 100%;
  line-height: 172%;
  background: #f5f5f5;
  word-wrap: break-word;
}

table ul {
  margin: 10px 0;
}

table li {
  font-size: 100%;
}

table p {
  font-size: 100%;
  margin: 0;
}

table.noline {
  background: none;
}

table.noline td {
  border: none;
}

table.noline th {
  border: none;
  background: none;
}

table.bline {
  background: none;
}

table.bline thead + tbody > tr:first-child {
  border-top: 1px solid #707070;
}

table.bline tbody > tr > th + td {
  border-left: 1px dotted #707070;
}

table.bline tr {
  border-bottom: 1px solid #e0e0e0;
}

table.bline thead tr {
  border-bottom: 0px;
}

table.bline tbody tr:nth-child(2n+1) {
  background: whitesmoke;
}

table.bline tbody > tr:first-child {
  border-top: 1px solid #e0e0e0;
}

table.bline td {
  border: none;
}

table.bline th {
  border: none;
  background: none;
  color: #333;
}

table .lg-bg {
  background: #aaa;
}

table .hd-bg {
  background: #777;
  color: #fff;
}

table .ac-bg {
  background: #f5ccd3;
}

.tablewrap {
  padding: 0 10px;
}

.theme-smp .tablewrap {
  overflow-y: hidden;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.theme-smp .tablewrap.noscroll table {
  opacity: 0.4;
}

.theme-smp .tablewrap.scroll table {
  width: auto;
  min-width: 676px;
}

.theme-smp .tablewrap .icon-scroll {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 56px;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: url("../images/layout/icon_scrollarea.png") no-repeat center center;
  background-size: 56px 56px;
  z-index: 2;
}

.theme-smp .tablewrap table caption {
  background: #fff;
  margin-bottom: 0;
  padding-bottom: 10px;
}

.img-wrap {
  max-width: 100%;
  text-align: center;
  overflow: hidden;
}

.img-wrap .text-left {
  text-align: left;
}

.img-wrap .text-center {
  text-align: center;
}

.img-wrap .text-right {
  text-align: right;
}

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

.float-left {
  float: left;
  margin: 0 15px 15px 0;
}

.float-right {
  float: right;
  margin-left: 0 0 15px 15px;
}

.float-tag {
  float: right;
  display: inline-block;
  margin-left: 10px;
}

.float-tag.float-clear {
  clear: right;
}

input, textarea {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Arial, sans-serif;
}

sub, sup {
  font-size: 84%;
}

/*          レスポンシブ対応          */
.theme-multi .l-contents .l-main {
  width: 100%;
}

.theme-multi .l-header #headerwrapper {
  display: none;
}

.theme-multi .footer-switcharea {
  display: none;
}

.theme-multi .l-footer ul.l-utility-navi li {
  padding: 0;
  /* font-size: 90%; */
  /* border-right: 1px solid #999; */
}

/* .theme-multi .l-footer ul.l-utility-navi li:first-child {
  border-left: 1px solid #999;
} */
/* .theme-multi .l-footer ul.l-utility-navi li a {
  font-size: 100%;
  color: #999;
}
.theme-multi .l-footer ul.l-utility-navi li a:hover {
  color: #333;
} */
.theme-multi .l-footer .l-copy br {
  display: none;
}

/*popup 990w*/
.theme-multi.theme-popup.theme-990w .l-global-area {
  background-size: 990px 16px;
  margin: 0 auto;
  position: relative;
  /* background: url(../images/layout/header_arc_bg_center.png) no-repeat center bottom; */
  z-index: 2;
}

.theme-multi.theme-popup.theme-990w .l-global-area,
.theme-multi.theme-popup.theme-990w .l-contents,
.theme-multi.theme-popup.theme-990w .l-footer ul.l-utility-navi,
.theme-multi.theme-popup.theme-990w .l-footer .l-site-data {
  width: 990px;
}

#footer-search-form {
  display: none;
}

.theme-multi.theme-popup .l-footer-popup-close {
  display: none;
}

/* .theme-multi.theme-en.theme-popup .logo-area {
  top: 7px;
  width: 197px;
} */
/* .theme-multi.theme-popup .logo-area {
  top: 8px;
  width: 197px;
} */
@media (max-width: 600px) {
  /*popup 990w*/
  .theme-multi.theme-popup.theme-990w .l-global-area,
  .theme-multi.theme-popup.theme-990w .l-contents,
  .theme-multi.theme-popup.theme-990w .l-footer ul.l-utility-navi,
  .theme-multi.theme-popup.theme-990w .l-footer .l-site-data {
    width: 100%;
  }

  .theme-multi.theme-en.theme-popup .logo-area {
    width: 185px;
  }

  /* .theme-multi.theme-popup .logo-area {
    width: 185px;
    top: 7px;
  } */
  .theme-multi.theme-popup .l-footer-popup-close {
    display: block;
  }

  .theme-multi .l-contents,
  .theme-multi .l-contents .l-main {
    width: 100%;
    margin: 0;
  }

  .theme-multi .l-header > .l-global-navi {
    display: none;
  }

  .theme-multi .l-header .l-global-area-warp {
    display: none;
  }

  .theme-multi .l-header #headerwrapper {
    display: block;
  }

  .theme-multi .dl-menuwrapper div.dl-menu {
    margin: 5px 5px 10px;
    position: absolute;
    background: #fff;
    width: 97%;
    display: none;
    z-index: 10;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
    -ms-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  }

  .theme-multi .dl-menuwrapper div.dl-menu:after {
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border: 10px solid transparent;
    border-bottom-color: #fff;
    bottom: 100%;
    right: 8px;
  }

  .theme-multi .dl-menuwrapper div.dl-menu a:hover {
    text-decoration: none;
    color: #333;
  }

  .theme-multi .dl-menuwrapper div.dl-menu {
    margin: 5px 5px 10px;
    position: absolute;
    background: #fff;
    width: 97%;
    display: none;
    z-index: 10;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
    -ms-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  }

  .theme-multi .dl-menuwrapper div.dl-menu:after {
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border: 10px solid transparent;
    border-bottom-color: #fff;
    bottom: 100%;
    right: 8px;
  }

  .theme-multi .dl-menuwrapper div.dl-menu a:hover {
    text-decoration: none;
    color: #333;
  }

  .theme-multi .l-global-navi {
    width: 100%;
    min-width: 300px;
    border-radius: 3px 3px 0 0;
  }

  .theme-multi .l-global-navi li {
    margin: 0;
  }

  .theme-multi .l-global-navi li a,
  .theme-multi .l-global-navi li a:hover,
  .theme-multi .l-global-navi li a:active,
  .theme-multi .l-global-navi li a:visited {
    padding: 12px 12px 12px 43px;
    color: #333;
  }

  .theme-multi .l-global-navi li {
    float: none;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #ccc;
    font-size: 115%;
    line-height: 22px;
    font-weight: bold;
    background-color: #fff;
    text-align: left;
  }

  .theme-multi .l-global-navi li:before {
    position: absolute;
    content: url(../images/layout/icon_arrow_right_r.png);
    left: 15px;
    top: 13px;
  }

  .theme-multi .l-global-navi li:first-child {
    border-radius: 3px 3px 0 0;
  }

  .theme-multi .l-global-navi li.n_leisure {
    background-color: #fbdee0;
  }

  .theme-multi .l-extra-navi {
    position: relative;
    top: 0;
    border-radius: 0 0 3px 3px;
    margin: 0;
    right: 0;
  }

  .theme-multi .l-extra-navi li {
    float: none;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ccc;
    padding: 8px 43px;
    font-weight: bold;
  }

  .theme-multi .l-extra-navi li:last-child::after {
    border-left: none;
  }

  .theme-multi .l-extra-navi li:before {
    position: absolute;
    content: url(../images/layout/icon_arrow_right_r.png);
    left: 15px;
    top: -4px;
    border: none;
  }

  .theme-multi .l-extra-navi li a {
    font-size: 100%;
    color: #333;
  }

  .theme-multi .l-extra-navi li.last {
    border-radius: 0 0 3px 3px;
    border-bottom: 0px;
  }

  .theme-multi .l-extra-navi:last-child li:last-child {
    border-radius: 0 0 3px 3px;
    border-bottom: 0px;
  }

  .theme-multi .l-search-area {
    position: relative;
    width: 100%;
    right: 0;
    top: 0;
    border-bottom: 1px solid #ccc;
    padding: 10px;
  }

  .theme-multi .l-search-area .search-box {
    width: 73%;
    height: 32px;
    border-radius: 3px;
  }

  .theme-multi .l-search-area .search-but {
    width: 25%;
    height: 32px;
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
    background: #626161;
    background: -webkit-linear-gradient(top, #626161, #484747);
    background: linear-gradient(to bottom, #626161, #484747);
    border: 1px solid #717171;
    padding: 0;
  }

  .theme-multi .dl-menuwrapper {
    width: 100%;
    min-width: 320px;
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 54px;
    z-index: 20;
  }

  .theme-multi .dl-menuwrapper hr {
    background: #cc0022;
    border: 0;
    height: 2px;
    margin: 0;
  }

  .theme-multi .dl-menuwrapper ul {
    background: #fff;
    padding: 0;
    list-style: none;
    position: relative;
  }

  .theme-multi .dl-menuwrapper li {
    position: relative;
  }

  .theme-multi .dl-menuwrapper li a {
    display: block;
    position: relative;
    outline: none;
  }

  .theme-multi .l-popup-close {
    border: none;
    width: 52px;
    height: 46px;
    overflow: hidden;
    outline: none;
    position: absolute;
    right: 0;
    top: 10px;
    text-indent: -9999px;
    background: url(../images/layout/mobile_btn_close.png) no-repeat center center;
    background-size: 52px auto;
    margin: 0;
  }

  .theme-en.theme-multi .l-popup-close {
    background: url(../images/layout/mobile_btn_close_en.png) no-repeat center center;
    background-size: 52px auto;
  }

  .theme-multi img {
    max-width: 100%;
  }

  .theme-multi .l-main img {
    height: auto !important;
  }

  .theme-multi .l-header {
    width: auto;
    /* min-width: 320px;
    height: 54px; */
    margin: 0;
    position: relative;
    z-index: 10;
    /* background: url(../images/layout/header_arc_bg_center_m.png) no-repeat bottom left; */
    background-size: 1000px 8px;
  }

  .theme-multi .l-header:before {
    background-color: #cc0022;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }

  .theme-multi .l-header:after {
    /* background: url(../images/layout/header_arc_bg_right_m.png) repeat-x bottom center; */
    background-size: 1px 8px;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
  }

  .theme-multi .logo-area {
    /* top: 7px;
    left: 10px;
    width: 185px; */
    z-index: 21;
  }

  .theme-multi .footer-switcharea {
    display: block;
  }

  /*     footer     */
  #footer-search-form {
    display: block;
  }

  .theme-multi .l-footer {
    border-top: 1px solid #ccc;
  }

  .theme-multi .l-footer ul.l-utility-navi {
    width: 100%;
    padding: 0;
  }

  .theme-multi .l-footer ul.l-utility-navi li:last-child::after {
    border-left: none;
  }

  .theme-multi .l-footer ul.l-utility-navi li::before {
    border: none;
  }

  .theme-multi .l-footer ul.l-utility-navi li {
    position: relative;
    width: 100%;
    height: auto;
    border-right: none;
    border-left: none !important;
  }

  .theme-multi .l-footer ul.l-utility-navi li:before {
    position: absolute;
    left: 10px;
    content: url(../images/layout/icon_arrow_right_g.png);
  }

  .theme-pc.theme-multi .l-footer ul.l-utility-navi li:before {
    top: -4px;
  }

  .theme-multi .l-footer ul.l-utility-navi li a,
  .theme-multi .l-footer ul.l-utility-navi li a:hover,
  .theme-multi .l-footer ul.l-utility-navi li a:active,
  .theme-multi .l-footer ul.l-utility-navi li a:visited {
    /* display: block; */
    padding: 9px 4px 9px 25px;
    color: #333;
    font-size: 100%;
    border-bottom: 1px solid #ccc;
  }

  .theme-multi .l-footer .l-footer-popup-close {
    width: 156px;
    margin: 15px auto;
    cursor: pointer;
    text-indent: -9999px;
    overflow: hidden;
    background: url(../images/layout/mobile_footer_close.png) no-repeat center center;
    background-size: 156px 20px;
    border: none;
  }

  .theme-multi.theme-en .l-footer .l-footer-popup-close,
  .theme-multi.theme-en.theme-theme-popup .l-footer .l-footer-popup-close {
    width: 156px;
    margin: 15px auto;
    cursor: pointer;
    text-indent: -9999px;
    overflow: hidden;
    background: url(../images/layout/mobile_footer_close_en.png) no-repeat center center;
    background-size: 156px 20px;
    border: none;
  }

  .theme-multi .l-footer .l-footer-contents {
    position: relative;
    width: 100%;
    height: auto;
    min-width: 320px;
  }

  .theme-multi .l-footer .l-site-data {
    width: 100%;
    min-width: 320px;
  }

  .theme-multi .l-footer .l-copy {
    position: relative;
    text-align: center;
    top: 0;
    right: 0;
    padding: 10px;
    line-height: 143%;
  }

  .theme-multi .l-footer .l-copy br {
    display: block;
  }

  .theme-multi .l-footer .l-footer-logo {
    display: none;
  }
}
/*          グロナビ固定          */
.l-global-navi.is-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.dl-menu .l-global-navi.is-fixed {
  display: block;
  background: #fff;
  padding: 0;
  list-style: none;
  position: relative;
  width: 100%;
  min-width: 300px;
  border-radius: 3px 3px 0 0;
}

@media (max-width: 600px) {
  .theme-multi:not(.theme-pc) .l-header:before, .theme-popup:not(.theme-pc) .l-header:before {
    background-color: #c02;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
  }

  .theme-multi:not(.theme-pc) .logo-area, .theme-popup:not(.theme-pc) .logo-area {
    margin: 0 auto;
    position: relative;
    height: 65px;
    z-index: 21;
    top: auto;
    left: auto;
    transform: none;
    width: 180px;
    left: 0;
  }

  .theme-multi:not(.theme-pc) .logo-area .l-logo, .theme-popup:not(.theme-pc) .logo-area .l-logo {
    height: 65px;
    display: flex;
    align-items: center;
    width: 180px;
  }

  .theme-multi:not(.theme-pc) .logo-area .l-logo a, .theme-popup:not(.theme-pc) .logo-area .l-logo a {
    display: flex;
    flex-flow: column;
    align-items: center;
    height: 50px;
  }

  .theme-multi:not(.theme-pc) .logo-area .l-logo a img:first-child, .theme-popup:not(.theme-pc) .logo-area .l-logo a img:first-child {
    display: block;
    width: 113px;
    height: 26px;
    position: relative;
    top: 2px;
  }

  .theme-multi:not(.theme-pc) .logo-area .l-logo a img:last-child, .theme-popup:not(.theme-pc) .logo-area .l-logo a img:last-child {
    display: block;
    width: 180px;
    height: 28px;
    position: relative;
    right: -5px;
    bottom: 1px;
  }

  .theme-multi:not(.theme-pc) .dl-menuwrapper, .theme-popup.theme-multi:not(.theme-pc) .dl-menuwrapper {
    padding-top: 65px;
  }

  .theme-multi.theme-en:not(.theme-pc) .logo-area .l-logo img:last-child, .theme-popup.theme-en:not(.theme-pc) .logo-area .l-logo img:last-child {
    display: block;
    width: 152px;
    height: 28px;
    right: -1px;
  }
}
@media (min-width: 600px) {
  .l-global-navi:not(.theme-smp .l-global-navi) {
    display: flex;
  }
}

.l-global-navi ul {
  margin: 0 auto;
  padding: 0;
  width: 990px;
  display: flex;
}
.l-global-navi ul li {
  width: 165px;
  position: relative;
}
.l-global-navi ul li.is-active {
  z-index: 3;
  font-weight: bold;
  position: relative;
  background-color: #fff;
}
.l-global-navi ul li.is-active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  border-bottom: 2px solid #cc0022;
  bottom: 0;
  left: 0;
}
.l-global-navi ul li + li a::before {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  content: '';
  display: block;
  height: 20px;
  left: 0;
  margin-top: -10px;
  position: absolute;
  top: 50%;
}
.l-global-navi ul li a,
.l-global-navi ul li a:hover,
.l-global-navi ul li a:active,
.l-global-navi ul li a:visited {
  align-items: center;
  color: #333;
  display: flex;
  flex-direction: column;
  font-size: 87.5%;
  height: 46px;
  justify-content: center;
  line-height: 113%;
  padding: 0 0.5rem;
  text-align: center;
}
.l-global-navi ul li a:hover,
.l-global-navi ul li a:hover:hover,
.l-global-navi ul li a:active:hover,
.l-global-navi ul li a:visited:hover {
  z-index: 2;
  font-weight: bold;
  background: #ededed;
}
@media print {
  html {
    background: none;
  }

  body {
    -webkit-print-color-adjust: exact;
  }

  .l-extra-navi,
  .l-search-area,
  .l-global-navi,
  .l-pagetop,
  .l-footer ul,
  .l-footer-logo,
  .close,
  .footer-switcharea {
    display: none !important;
  }

  .l-header {
    height: 80px;
    background: none;
  }

  .l-header:after {
    background: none;
    border-top: 3px solid #cc0022;
  }

  .theme-multi #wrapper {
    width: 746px;
    overflow: hidden;
  }

  .theme-multi .l-header,
  .theme-multi .l-footer,
  .theme-multi .l-contents-wrap,
  .theme-multi .l-footer .l-copy-area,
  .theme-multi .l-global-area,
  .theme-multi .l-contents,
  .theme-multi .l-site-data {
    width: 746px !important;
  }

  .theme-single .l-header,
  .theme-single .l-footer,
  .theme-single .l-contents-wrap,
  .theme-single .l-footer .l-copy-area {
    width: 990px;
  }

  .theme-popup .l-footer {
    border-top: 1px solid #ccc !important;
  }

  .l-footer {
    height: 30px;
  }

  .l-copy {
    color: #ccc;
  }

  .l-main {
    float: none;
    zoom: 1;
    width: 100%;
    height: 100% !important;
    margin: auto !important;
  }

  /*top*/
  .theme-single .l-extra-navi,
  .theme-single .l-search-area,
  .theme-single .l-global-navi,
  .theme-single .l-footer ul,
  .theme-single .l-footer-logo {
    display: block;
  }

  .theme-single .l-header,
  .theme-single .l-footer,
  .theme-single .l-contents-wrap,
  .theme-single .l-footer .l-copy-area {
    width: 990px;
  }

  .theme-single .l-main {
    float: left;
  }

  .theme-single .l-contents-wrap {
    border-top: none;
  }

  .l-global-area-warp {
    height: 82px;
    position: relative;
  }

  .theme-multi.theme-popup.theme-990w .l-global-area .l-contents,
  .theme-multi.theme-popup.theme-990w .l-global-area .l-footer ul.l-utility-navi,
  .theme-multi.theme-popup.theme-990w .l-global-area .l-footer .l-site-data {
    width: 100%;
  }

  #SMP_STYLE .body_tbl {
    width: 100% !important;
  }

  #SMP_STYLE .smp_tmpl {
    width: calc(100% - 20px) !important;
    margin: 0 20px !important;
  }
}



/* ========================================================================== SOMPO ID 共通レイアウト幅の適用（メインコンテンツの幅：786px） ========================================================================== */
@media (min-width: 769px) {
  .container, .hero-inner, .knowledge-base {
    max-width: 786px !important;
    margin-left: auto !important;
    margin-right: auto !important; } }
/* ==========================================================================
★完全準拠版★ ヘッダー (g-header-hd / g-header-id)
========================================================================== */
/* --- 1段目：HDロゴエリア --- */
.g-header-hd {
  background-color: #ffffff !important;
  border-bottom: 1px solid #e4002b !important;
}

.g-header-id .inner {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  max-width: 990px !important; margin: 0 auto !important;
  padding: 0 20px !important; height: auto !important; }

.g-header-id .l_logo { margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  height: 100% !important; }

.g-header-id .l_logo img {
  display: block !important;
  height: auto !important;
  object-fit: contain !important; }

/* --- ヘッダー：PC表示時の高さとサイズ --- */
@media (min-width: 769px) {
  .g-header-hd .inner {
    height: 82px !important; }
  .g-header-hd .left img { width: 140px !important; }
  .g-header-hd .right img { width: 185px !important; }
  .g-header-id .inner { height: 70px !important; }
  .g-header-id .l_logo img { width: 110px !important; } }



/* --- ヘッダー：スマホ表示時の高さとサイズ --- */
@media (max-width: 768px) {
  .g-header-hd .inner {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: auto !important; padding: 15px !important;
    gap: 0px !important; }
  .g-header-hd .left img { width: 113px !important; }
  .g-header-hd .right img { width: 178px !important; }
  .g-header-id .inner { height: auto !important; padding: 12px 15px !important; }
  .g-header-id .l_logo img { width: 80px !important; } }


/* ========================================================================== 
★完全準拠版★ ボトムナビゲーション (.g-bottom_nav)
========================================================================== */
.g-bottom_nav { background-color: #FFFFFF !important;
  width: 100% !important;
  border-top: 1px solid #000000 !important;
  padding: 5px 20px 5px 0 !important;
  margin: 0 !important;
  display: block !important; position: relative !important;
  z-index: 10 !important; flex-shrink: 0 !important; }

.g-bottom_nav .inner { display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 1px !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0px 0px !important; }

.g-bottom_nav .nav-row { display: flex !important;
  flex-direction: row !important;
  align-items: center !important; flex-wrap: wrap !important;
  width: 100% !important; line-height: 1.2 !important; }

.g-bottom_nav .pipe { color: #000000 !important;
  font-size: 12px !important;
  margin: 0 9px !important; }

.g-bottom_nav .link { margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important; }

.g-bottom_nav .link a { color: #333333 !important;
  text-decoration: underline !important;
  font-size: 12px !important;
  font-family: "Noto Sans", "Noto Sans JP", sans-serif !important; transition: color 0.2s ease !important; }

.g-bottom_nav .link a:hover { color: #cc0022 !important; }
.g-bottom_nav .only-sp { display: none !important; }
@media (max-width: 768px) {
  .g-bottom_nav .only-pc { display: none !important; } .g-bottom_nav .only-sp { display: flex !important; } }


/* ==========================================================================
   ★完全準拠版★ フッター本体 (.g-footer) - エターナルレッド
   ========================================================================== */

.g-footer {
  /* 背景色をヘッダーの境界線と同じ #cc0022 (エターナルレッド) に変更 */
  background-color: #cc0022 !important; 
  color: #FFFFFF !important;
  width: 100% !important;
  height: auto !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  clear: both !important;
  position: relative !important;
  flex-shrink: 0 !important;
  bottom: 0 !important;
}

.g-footer .inner {
  display: flex !important;
  align-items: center !important;
  max-width: 1030px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
}

.g-footer .company_name {
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
}

/* ロゴ画像を白抜きにする処理 */
.g-footer .company_name img {
  filter: brightness(0) invert(1) !important;
  width: 175px !important;
  height: auto !important; /* アスペクト比維持のためauto推奨 */
  display: block !important;
}

.g-footer .copyright {
  color: #FFFFFF !important;
  font-size: 11px !important;
  font-family: "Noto Sans", sans-serif !important;
  letter-spacing: 0.00em !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-block !important;
}

/* PC表示時の調整 */
@media (min-width: 769px) {
  .hidden_pc {
    display: none !important;
  }
  .g-footer {
    height: 36px !important; /* SOMPO HPのコピーライトバーに合わせた高さ */
  }
  .g-footer .inner {
    flex-direction: row !important;
    justify-content: space-between !important;
    height: 100% !important;
  }
  .g-footer .company_name {
    flex-shrink: 0 !important;
  }
  .g-footer .copyright {
    text-align: right !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
}

/* スマホ表示時の調整 */
@media (max-width: 768px) {
  .g-footer .hidden_sp,
  .g-footer .company_name {
    display: none !important;
  }
  .hidden_pc {
    display: block !important;
  }
  .g-footer {
    height: auto !important;
    padding: 15px 0 !important;
  }
  .g-footer .inner {
    flex-direction: column !important;
    justify-content: center !important;
    padding: 0 15px !important;
  }
  .g-footer .copyright {
    text-align: center !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    width: 100% !important;
  }
}



/* ==========================================================================
トップページ：検索エリアとカテゴリティルの隙間を極限まで詰める
========================================================================== */
.hero { background-image: none !important;
  background-color: #ffffff !important;
  border-bottom: none !important;
  padding-top: 30px !important;
  padding-bottom: 0px !important;
  min-height: 0 !important;
  height: auto !important;
  margin-bottom: 0 !important; }

.hero-inner h1, .hero-inner h2, .hero-inner p { color: #333333 !important; text-shadow: none !important; margin-top: 0 !important; margin-bottom: 10px !important; } .hero-inner .search-box { background-color: #ffffff !important; border: 1px solid #cccccc !important; box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important; margin-bottom: 0 !important; } main[role="main"] { padding-top: 0 !important; margin-top: 0 !important; } .container { padding-top: 0 !important; } .knowledge-base { margin-top: 15px !important; padding-top: 0 !important; } .blocks-list { margin-top: 0 !important; }



/* ========================================================================== 検索結果ページ：不要な要素（作成者・日付・いいね・コメント等）の完全非表示 ========================================================================== */
.search-results-list .meta-group, .search-results-list .meta-data, .search-results-list .search-result-meta, .search-results-list .search-result-meta-data { display: none !important; } .search-results-list .search-result-votes, .search-results-list .search-result-comments, .search-results-list .icon-star, .search-results-list .icon-comments { display: none !important; } .search-results-list .search-result-votes-container { display: none !important; }


/* ==========================================================================
   ★★★ SOMPO ID 完全準拠 ヘッダー＆フッター 強制上書きCSS ★★★
   ※Zendeskの基本デザインは壊さず、ヘッダー/フッターの幅とデザインのみを上書きします
   ========================================================================== */

/* --------------------------------------------------
   2. ヘッダー/フッター共通の幅設定 (990px)
-------------------------------------------------- */
.g-header-hd .inner,
.g-header-id .inner,
.g-bottom_nav .inner,
.g-footer .inner {
  max-width: 1030px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
}

/* Zendeskのメインコンテナ（記事など）は786pxで中央寄せ */
@media (min-width: 769px) {
  .container {
    max-width: 786px !important;
    margin: 0 auto !important;
  }
  /* ただし、ヘッダー等のコンテナは990pxを維持させる */
  header .container,
  footer .container {
    max-width: 990px !important;
  }
}

/* --------------------------------------------------
   3. SOMPO ID ヘッダー (PC/SP対応)
-------------------------------------------------- */
.g-header-hd {
  background-color: #ffffff !important;
  border-bottom: 1px solid #cc0022 !important;
}
.g-header-hd .inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

/* ==========================================================================
   ★完全再現版★ ヘッダーロゴのサイズ設定
   ========================================================================== */

/* --- 共通設定：アスペクト比を維持して表示 --- */
.g-header-hd img,
.g-header-id img {
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* --- PC表示時 (769px以上) --- */
@media (min-width: 769px) {
  /* 1段目：左側の SOMPO アイコン */
  .g-header-hd .left img {
    width: 170px !important;
  }

  /* 1段目：右側の SOMPOホールディングス アイコン */
  .g-header-hd .right img {
    width: 230px !important;
  }

  /* 2段目：中央（または左）の SOMPO ID アイコン */
  .g-header-id .l_logo img {
    width: 130px !important;
  }
}

/* --- スマホ表示時 (768px以下) --- */
@media (max-width: 768px) {
  /* 1段目：左側の SOMPO アイコン */
  .g-header-hd .left img {
    width: 113px !important;
  }

  /* 1段目：右側の SOMPOホールディングス アイコン */
  .g-header-hd .right img {
    width: 185px !important;
  }

  /* 2段目：SOMPO ID アイコン */
  .g-header-id .l_logo img {
    width: 85px !important;
  }
}


/* ==========================================================================
   スマホ表示時：SOMPO IDアイコン（2段目）の上下余白を調整
   ========================================================================== */

@media (max-width: 768px) {
  /* 2段目（IDロゴエリア）全体の内側余白を増やす */
  .g-header-id .inner {
    padding-top: 15px !important;    /* 赤線（上）からの余白 */
    padding-bottom: 15px !important; /* 下からの余白 */
    padding-left: 15px !important;   /* 左右の余白（維持） */
    padding-right: 15px !important;
    height: auto !important;
  }

  /* アイコン自体にも念のためマージンを持たせる（枠に張り付くのを防ぐ） */
  .g-header-id .l_logo {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
}

/* ==========================================================================
RP専用ポータル名 ヘッダー表示
========================================================================== */
.portal-name { display: inline-block; margin-left: 20px; /* SOMPO IDロゴとの隙間 */
  padding-left: 20px; border-left: 2px solid #cccccc; /* 左側に区切り線を入れてロゴと区別 */
  font-size: 22px !important;
  font-weight: bold !important;
  color: #cc0022 !important;
  line-height: 1.2 !important; vertical-align: middle; } /* スマホ表示時の調整 */

@media (max-width: 768px) { .portal-name { font-size: 16px !important; margin-left: 8px; padding-left: 8px; } }


/* ========================================================================== RPポータル：トップページ案内ボタン（確実なボタンデザイン版） ========================================================================== */ /* エリア全体のコンテナ */ .top-nav-buttons-container { max-width: 786px; margin: 40px auto 60px; text-align: center; padding: 0 20px; } /* 説明テキスト */ .top-nav-description { font-size: 14px; color: #666666; margin-bottom: 24px; font-weight: normal; } /* ボタンを横に並べる枠 */ .top-nav-buttons { display: flex; justify-content: center; gap: 24px; } /* -------------------------------------------------- ボタン本体の基本デザイン -------------------------------------------------- */ .rp-nav-btn { display: inline-flex; justify-content: center; align-items: center; min-width: 240px; height: 50px; padding: 0 24px; font-size: 14px; font-weight: bold; border-radius: 4px; text-decoration: none !important; transition: all 0.2s ease-in-out; cursor: pointer; box-sizing: border-box; } .rp-nav-btn span { display: inline-block; line-height: 1; }
/* --- プライマリーボタン (黒背景) --- */
.rp-btn-primary { background-color: #333333 !important; color: #ffffff !important; border: 1px solid #333333 !important; } .rp-btn-primary:hover { background-color: #555555 !important; border-color: #555555 !important; }
/* -------------------------------------------------- スマホ表示 (768px以下) の調整 -------------------------------------------------- */
@media (max-width: 768px) { .top-nav-buttons-container { margin: 30px auto 40px; } .top-nav-buttons { flex-direction: column;
  /* スマホでは縦に並べる */ align-items: center; gap: 16px; } .rp-nav-btn { width: 100%; /* スマホでは横幅いっぱいにする */ max-width: 340px; height: 56px; /* スマホでは少し高さを出してタップしやすくする */ } }


/* ========================================================================== お問い合わせフォームとボトムナビの間の余白調整 ========================================================================== */ /* メインコンテンツエリア全体の最下部に余白を追加 */
main[role="main"], .container { padding-bottom: 10px !important; /* 送信ボタンの下に 20px の空間を作ります */ }
/* お問い合わせフォーム（新規リクエスト画面）に限定してさらに広げたい場合 */ .request-form { margin-bottom: 10px !important; } /* ボトムナビの上側の余白も念のため確保 */
.g-bottom_nav { margin-top: 10px !important; /* コンテンツが終わってから黒線が出るまでの距離 */ } /* スマホ表示時の調整（画面が小さいため、少し余白を抑える） */
@media (max-width: 768px) { main[role="main"] { padding-bottom: 10px !important; } }