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

/******ベース*******/
* {
  box-sizing: border-box;
}

body {
  background-color: #FFFFFF;
  color: #2F3941;
  font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1024px) {
  body > main {
    min-height: 65vh;
  }
}

/*レイアウトそのまま不可視にする　見出し記述用*/
.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;
}

/*PC・スマホサイズで切り替えできるボトムマージン*/
.margin-btm-v{
  margin-bottom: 20px;
}

@media (min-width: 768px) {
.margin-btm-v{
  margin-bottom: 40px;
  }
}  

/*PC・スマホサイズで切り替えできるトップマージン*/
.margin-top-v{
  margin-top: 20px;
}

@media (min-width: 768px) {
.margin-top-v{
  margin-top: 40px;
  }
}  

/*PC・スマホサイズで切り替えできる上下マージン*/
.margin-tb-v{
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
.margin-tb-v{
  margin-top: 40px;
  margin-bottom: 40px;
  }
}  

.margin-tb-v2{
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
.margin-tb-v2{
  margin-top: 20px;
  margin-bottom: 20px;
  }
}  



/***************カスタムプロパティ***************/
:root{
  --secondary-color: #00BEEB;
  --light-color: #C7E2FF;
  --accent-color: #FF3278;
  --accent-color-second: #FFF366;
  --green-color: #05B473;
  --ul-color: #40BFA6;
  --ol-color: #1B418E;
  --back-gray: #F0F0F0;
  --font-normal: 400;
  --font-bold: 700;
  --siz-extra-large: 36px;
  --siz-large: 24px;
  --siz-medium: 20px;
  --siz-small: 16px;
  --font-siz-extra-small: 0.75rem;
  --font-siz-small: 0.875rem;
  --font-siz-medium: 1rem;
  --font-siz-large: 1.25rem;
  --font-siz-extra-large: 1.475rem;
  --spacing-narrow: 5px;
  --spacing-medium: 10px;
  --spacing-wide: 40px;
}

.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: nowrap;
    gap: 16px;
    margin: 0;
  }
}

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

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

/*　共通マージンの設定 */
.margin-narrow　{
  margin-bottom: calc(var(--spacing-narrow) * 0.9);
}

.margin-medium　{
  margin-bottom: calc(var(--spacing-medium) * 0.9);
}

.margin-wide　{
  margin-bottom: calc(var(--spacing-wide) * 0.9);
}

@media (min-width: 768px) {
.margin-narrow　{
  margin-bottom: var(--spacing-narrow);
}
.margin-medium　{
  margin-bottom: var(--spacing-medium);
}
.margin-medium　{
  margin-bottom: var(--spacing-wide);
}
}

/*見出し*/
h1{
  font-size:1.4rem;
}

h2 {
}

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

input {
  max-width: 100%;
  box-sizing: border-box;
  transition: border 0.12s ease-in-out;
}
input:not([type=checkbox]) {
  outline: none;
}
input:not([type=checkbox]):focus {
  border: 1px solid rgba(0, 73, 159, 1);
}

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23CCC' d='M0 0h10L5 6 0 0z'/%3E%3C/svg%3E%0A") no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #87929D;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}
select:focus {
  border: 1px solid rgba(0, 73, 159, 1);
}
select::-ms-expand {
  display: none;
}

textarea {
  border: 1px solid #87929D;
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}
textarea:focus {
  border: 1px solid rgba(0, 73, 159, 1);
}

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

/***** Buttons *****/
.button, .pagination-next-link, .pagination-prev-link, .pagination-first-link, .pagination-last-link, .subscriptions-subscribe button, .requests-table-toolbar .organization-subscribe button, .article-subscribe button, .section-subscribe button, .split-button button {
  background-color: transparent;
  border: 1px solid rgba(0, 73, 159, 1);
  border-radius: 4px;
  color: rgba(0, 73, 159, 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, .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, .article-subscribe button:visited, .section-subscribe button:visited, .split-button button:visited {
  color: rgba(0, 73, 159, 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, .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, .article-subscribe button:active, .section-subscribe button:active, .split-butto
n 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, .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], .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(0, 73, 159, 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, .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, .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, .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: #001a39;
  border-color: #001a39;
}
.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, input[type=submit] {
  cursor: pointer;
  background-color: rgba(0, 73, 159, 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, input[type=submit] {
    width: auto;
  }
}
.button-large:visited, input[type=submit]:visited {
  color: #FFFFFF;
}
.button-large:hover, .button-large:active, .button-large:focus, input[type=submit]:hover, input[type=submit]:active, input[type=submit]:focus {
  background-color: #001a39;
}
.button-large[disabled], input[type=submit][disabled] {
  background-color: #ddd;
}

.button-secondary {
  color: #5a6d7c;
  border: 1px solid #87929D;
  background-color: transparent;
}
.button-secondary:visited {
  color: #5a6d7c;
}
.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: #2F3941;
  border: 1px solid #87929D;
  background-color: #f7f7f7;
}


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

.split-button button {
  background-color: rgba(0, 73, 159, 1);
  border: 0;
  color: #FFFFFF;
  height: 32px;
  line-height: 16px;
  outline-color: rgba(0, 73, 159, 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;
}


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

input {
  max-width: 100%;
  box-sizing: border-box;
  transition: border 0.12s ease-in-out;
}
input:not([type=checkbox]) {
  outline: none;
}
input:not([type=checkbox]):focus {
  border: 1px solid rgba(0, 73, 159, 1);
}

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23CCC' d='M0 0h10L5 6 0 0z'/%3E%3C/svg%3E%0A") no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #87929D;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}
select:focus {
  border: 1px solid rgba(0, 73, 159, 1);
}
select::-ms-expand {
  display: none;
}

textarea {
  border: 1px solid #87929D;
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}
textarea:focus {
  border: 1px solid rgba(0, 73, 159, 1);
}




/*****************ここからヘッダー****************/

/* ヘッダー */

.header {
  background-color: white;
  width: 100%;
  height: 71px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom:1px solid #ddd;
}

.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

@media(min-width:1024px){
.header__title {
  margin-left: 30px;
}
}

/* imgタグ　リンクのためdisplay要素 */
.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ハンバーガーメニュー領域 RGBA　*/
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: rgba(240, 240, 240, 0.9);
  transition: ease .6s;
}


@media (min-width: 1024px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 70%;
    padding-right: 10px;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 80%;
    padding-right: 20px;
  }
}

@media (min-width: 768px){
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-evenly;
  }
}

.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  width: 60%;
}


@media (min-width: 768px) {
  .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
  }
}

.header__nav ul li a{
  text-decoration: none;
  border-bottom:1px solid var(--secondary-color);
}

@media (min-width: 768px) {
  .header__nav ul li a{
  padding-left:3px;
  border-bottom:0;
}
}

/* ナビのリンク */
.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: rgba(0, 73, 159, 1);
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media (any-hover: hover){
.nav-items__item a:hover{
    color: var(--accent-color);
  }
}

.nav-items__item a:active{
    color: var(--accent-color);
  }

@media (min-width: 769px) and (max-width: 1023px) {
  .nav-items__item a{
    margin-bottom: 0;
    font-size:0.85rem;
  }
}

@media (min-width: 1024px) {
  .nav-items__item a {
    margin-bottom: 0;
    font-size: 1rem;
  }
}

@media (min-width: 1024px), (max-width: 767px){
.nav-items__item a[target="_blank"]::after{
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: var(--siz-small);
	height: var(--siz-small);
  background-color: rgba(0, 73, 159, 1);
  mask-image: url(/hc/theming_assets/01JYX79HZ9KSTZNPGZABXKZ85P);
  -webkit-mask-image: url(/hc/theming_assets/01JYX79HZ9KSTZNPGZABXKZ85P);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
}

/* ハンバーガーメニューアイコン */

.header__hamburger {
  width: 48px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

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

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: rgba(0, 73, 159, 1);
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 6px;
  background-color: rgba(0, 73, 159, 1);
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -14px;
  background-color: rgba(0, 73, 159, 1);
  transform: rotate(-45deg);
}

/*パンくずリスト*/
.breadcrumbs {
  margin: 0 0 15px 0;
  padding: 0;
  display: flex;
}

.breadcrumbs li {
  color: rgba(0, 73, 159, 1), 10%;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.breadcrumbs li + li::before {
  content: ">";
  margin: 0 4px;
}
.breadcrumbs li a:visited {
  color: rgba(0, 73, 159, 1);
}

.breadcrumbs li:first-child {
 padding-left: 20px;
 position: relative;
}

.breadcrumbs li:last-child {
  pointer-events: none;
}

.breadcrumbs li:last-child a {
	color:#2F3941;}

.breadcrumbs li:first-child::before {
  display:inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  left: 0;
  content:"";
  width: var(--siz-small);
	height: var(--siz-small);
  background-color: rgba(0, 73, 159, 1);
  mask-image: url(/hc/theming_assets/01JYX79HYTHWRFSN75RKZQ47Q4);
  -webkit-mask-image: url(/hc/theming_assets/01JYX79HYTHWRFSN75RKZQ47Q4);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}


/***************フッター***************/

.footer {
  border-top: 1px solid #ddd;
  margin-top: 60px;
  padding: 30px 0;
  background: var(--back-gray);
}
.footer a {
  color: #5a6d7c;
}
.footer__inner ul{
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 1160px) {
  .footer__inner ul {
    padding: 0;
    width: 90%;
    flex-direction: row;
  }
}

.footer a,
.footer__inner li{
  color: rgba(0, 73, 159, 1);
}

.footer__inner li{
 margin:10px 0;
}

@media (min-width: 1160px) {
	.footer__inner li{
  margin:0;}
}
.footer a[target="_blank"]::after{
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: var(--siz-small);
	height: var(--siz-small);
  background-color: rgba(0, 73, 159, 1);
  mask-image: url(/hc/theming_assets/01JYX79HZ9KSTZNPGZABXKZ85P);
  -webkit-mask-image: url(/hc/theming_assets/01JYX79HZ9KSTZNPGZABXKZ85P);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/*セクション指定*/
.section {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .section {
    margin-bottom: 60px;
  }
}

/***************エラーページ***************/

.error-page {
  max-width: 1160px;
  margin: 20px auto;
  padding: 0 5%;
}
@media (min-width: 1160px) {
  .error-page {
    padding: 0;
    padding-top: 5%;
    width: 90%;
  }
}

.error-page h1 {
  color: var(--secondary-color);
  font-size: 1.9rem;
  font-weight: var(--font-bold);
  margin: 0;
  letter-spacing: 0.06em;
  position: relative;
  padding-left: 2.3rem;
}

.error-page h1::before {
  display:inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content:"";
  width: var(--siz-extra-large);
	height: var(--siz-extra-large);
  background-color: var(--secondary-color);
  mask-image: url(/hc/theming_assets/01JYX79HX5G7517Z0G23JG4A57);
  -webkit-mask-image: url(/hc/theming_assets/01JYX79HX5G7517Z0G23JG4A57);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media (min-width: 768px) {
  .error-page h1 {
    font-size: 2.2rem;
    padding-left: 2.3rem;
  }
}

.error-page__wrapper {
  background: var(--back-gray);
  border: 1px solid #aaa;
  padding: 10px;
  margin-top: var(--spacing-medium);
}

.error-page__wrapper p {
  color: #2F3941;
  font-size: var(--font-size-normal);
}

.error-page__heading {
	font-size: var(--font-siz-large);
  color: #2F3941;
  letter-spacing: 0.05em;
}

.error-page__heading span {
	display: flex;
	align-items: center;
	color:  rgba(0, 73, 159, 1);
	font-size: 16px;
	text-transform: uppercase;
}

.error-page__heading span::before {
	content: '';
	display: inline-block;
	margin-right: 20px;
	width: 20px;
	height: 1px;
	background-color: rgba(0, 73, 159, 1);
}

.error-page__articles {
  margin-top: calc(var(--spacing-wide) * 1.5);
}

.error-page__articles ul li {
  list-style-type: disc;
  margin-left: calc(var(--spacing-medium) * 2);
}

.error-page__articles ul li　a {
  color: #2F3941;
}

.error-page__articles h3{
 border-bottom: 1px solid #aaa;  
}

/*エラーページ　戻るボタン*/
a.error-page__return-button {
	display: block;
	text-align: center;
	vertical-align: middle;
	width: 200px;
	margin: 40px auto;
  padding: 10px;
	font-weight: bold;
	border: 1px solid rgba(0, 73, 159, 1);
	background: rgba(0, 73, 159, 1);
	color: #fff;
  border-radius: 10px;
	transition: 0.5s;
}


@media (any-hover: hover){
  a.error-page__return-button:hover {
  color: rgba(0, 73, 159, 1);
	background: #fff;
  text-decoration: none;
  }
  .error-page__articles ul li a:hover {
  color: var(--secondary-color);
  }
}

/***************トップページ***************/

/*スマホサイズの場合色のみ*/

.top-page-header {
  background-color: var(--secondary-color);
  height: 150px;
  text-align: center;
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(0, 73, 159, 1);
  border-top: 1px solid  rgba(0, 73, 159, 1); 
  margin-bottom: var(--margin-normal);
}
  .top-page-header__chara {
    display: none;
}
@media(min-width: 768px){
.top-page-header {
    position: relative;
    opacity: 1;
    background-color: var(--secondary-color);
    background-image: url('/hc/theming_assets/01K3N259GXWEYCM4TEYC27F7YE');
    background-repeat: repeat;
    background-size: auto;
    background: var(--secondary-color);
    height: 280px;
    margin-bottom: var(--margin-wide);
    border-bottom: 4px solid rgba(0, 73, 159, 1);
    border-top: 4px solid  rgba(0, 73, 159, 1);
}
.top-page-header::before {
  content: ''; 
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/hc/theming_assets/01K3N259GXWEYCM4TEYC27F7YE'); 
  background-repeat: repeat;
  background-size: auto;
  filter: opacity(50%);
  z-index: 1;
}
  .top-page-header__chara {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); 
    left: 85%;
    margin-right: 10px;
    max-height: 90%; 
    width: auto;
    z-index: 2;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
    .top-page-header__chara {
        max-height: 60%;
        margin-right: 5px;
        width: auto;
    }
}
/*タイトル領域*/
.top-page-header__title-wrapper {
  position: relative;
  max-width: 610px;
  margin: 0 auto;
}

/*　タイトル　*/
.top-page-header__title{
  white-space:nowrap;
  text-align:center;
  color: rgba(0, 73, 159, 1);
  font-size: clamp(1rem, 2vw + 1rem, 2.2em);
  letter-spacing: 0.07em;
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-style: normal;
  padding: 5px 0;
}

@media (max-width: 400px) {
  .top-page-header__title {
    font-size: clamp(12px, 5vw, 1.5rem);
  }
}

.top-page-header__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  gap: 0px;
}

.top-page-header__search-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px){
  .top-page-header__content{
    gap: 15px;
  }
}

/***************トップページコンテンツ***************/

.top-page-content {
  max-width: 1160px;
  margin: var(--spacing-medium) auto;
  padding: var(--spacing-medium) 5%;
}
@media (min-width: 1160px) {
 .top-page-content {
   margin: 30px auto;
   padding:0 auto;
   width: 90%;}
}

/*見出し*/
#pickup-heading,
#pickup-main-menu{
  position: relative;
	font-size: var(--font-siz-medium);
  font-weight: var(--font-bold);
  color: rgba(0, 73, 159, 1);
  padding: 0.5rem;
  background: linear-gradient(transparent 60%, var(--accent-color-second) 0%);
  line-height: 1.1em;
}

@media (min-width: 768px) {
  #pickup-heading,
  #pickup-main-menu {
  font-size: 1.3rem;
}
  #pickup-heading::after {
  content:"重要なお知らせを掲載しています";
	margin-top: 0;
  margin-left: 30px;
	font-size: var(--font-siz-small);
  font-weight: var(--font-normal);
  color: #2F3941;
  }
}

#pickup {
  margin-bottom: 60px;
}

.pickup-container
{
  width: 96%;
  margin:var(--spacing-medium) 2%;
}

.pickup-container ul　{
  list-style: none;
}

.pickup-container ul a{
	text-decoration: none;
}

.pickup-container ul li{
  border-bottom: 1px solid #ddd;
  margin:10px auto 20px 0;
}

.pickup-container li{
  position:	relative;
  font-size:	var(--font-siz-small);
  padding-left: 26px;
}

@media (min-width: 768px) {
  .pickup-container li {
    font-size: var(--font-siz-medium);
  }
}

.pickup-container li::before {
  display:inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content:"";
  width: var(--siz-medium);
	height: var(--siz-medium);
  background-color: var(--accent-color);
  mask-image: url(/hc/theming_assets/01JYX79J5NJWP7DE6CHWNSVBDD);
  -webkit-mask-image: url(/hc/theming_assets/01JYX79J5NJWP7DE6CHWNSVBDD);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.pickup-container__text a{
  color:rgba(0, 73, 159, 1);
  margin:inherit auto;
}

/*ホバー、アクティブ*/
@media (any-hover: hover){
.pickup-container__text a:hover{ 
  color: var(--secondary-color);
  }
}

.pickup-container__text a:active {
  color: var(--secondary-color);
}


/***************トップページ＞メニュー一覧***************/

/*　メニューのflex指定　*/
.main-menu__container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: var(--spacing-wide) 0;
  list-style: none;
}

/*　メニューリンク */
.main-menu__items {
  border-radius: 4px;
  box-sizing: border-box;
  background-color: rgba(0, 73, 159, 1);
  display: flex;
  margin: 0 0 30px;
  text-align: center;
  flex: 1 1 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/*　呼び出したカテゴリidが「tabiwa by WESTER」の場合幅100%　*/
.main-menu__items[data-id="49685581010201"]{
    flex: 1 1 100%;
    max-width: 100%;  
}

@media (min-width: 768px) {
  .main-menu__items {
    margin: 0 15px 30px;
  }
  /*　呼び出したカテゴリidが「tabiwa by WESTER」以外の場合横並びで2つ表示　*/
  .main-menu__items:not([data-id="49685581010201"]) {
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}

.main-menu__items:hover *, .main-menu__items:focus *, .main-menu__items:active * {
  color: #fff;
  text-decoration: none;
}

.main-menu__items:hover, .main-menu__items:focus, .main-menu__items:active {
	background: var(--secondary-color);
  transition: background-color 0.5s;
}

.main-menu__link {
  color: #fff;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  border-radius: inherit;
}

.main-menu__link:visited, .main-menu__link:hover, .main-menu__link:active {
  color: #fff;
  text-decoration: none;
}

.main-menu__link:focus {
  outline: 0;
  text-decoration: none;
}

.main-menu__title {
  font-size: 1.1rem;
  color: #fff;
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-narrow);
}

.main-menu__description {
  color: #fff;
  font-size: 0.9rem;
  margin: 0;
}

.main-menu__description:not(:empty) {
  margin-top: 10px;
}

/***************検索ボックス***************/

.search-container {
  position: relative;
}

.search-container-top{
  position: absolute;
  width: 100%;
  max-width: 650px;
  top:50%;
  transform: translateY(40%);
  right: 0;
  left: 0;
}

.search {
  border-color: #87929D;
  border-style: solid;
  border-width: 1px;
  display: flex;
  position: relative;
  transition: border 0.12s ease-in-out;
  width: 100%;
}
.search:focus-within {
  border-color: rgba(0, 73, 159, 1);
}
.search input[type=search],
.search .clear-button {
  background-color: #fff;
  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(0, 73, 159, 1);
  color: #fff;
}
.search .clear-button:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 73, 159, 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(0, 73, 159, 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(0, 73, 159, 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;
}

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

@media (min-width: 401px) and (max-width: 768px) {
  .search-icon-full {
  top: 79%;
}
} 
@media (max-width: 400px) {
  .search-icon-full {
  top: 69%;
}
}

/*上部ナビゲーション（パンくずリスト・検索ボックス）*/
.sub-nav {
  align-items: baseline;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px 30px;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .sub-nav {
    flex-direction: row;
    margin-bottom: 55px;
  }
}
.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;
}


/*コンテナ*/
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}
@media (min-width: 1160px) {
  .container {
    padding: 0;
    width: 90%;
  }
}

/*コンテナ境界線*/
.container-divider {
  margin-top: 72px;
  margin-bottom: 20px;
}

/***************カテゴリ―ページ***************/

.page-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0;
}
@media (min-width: 768px) {
  .page-header {
    align-items: baseline;
    flex-direction: row;
    margin: 0;
  }
}

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

.category-container {
  display: flex;
  justify-content: flex-end;
}

/*カテゴリーページコンテナ　サイドバー非表示のためセンタリング*/
.category-container-center {
  display: flex;
  justify-content: center;
}

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

.nested-ul{
  margin-left:20px;
}

.nested-ul li{
  margin-left: 10px;
  display:flex;
  flex-direction: column;
}

.nested-ul li,
.nested-ul a
{
  font-size:0.8rem;
}

@media (min-width: 768px){
.nested-ul li,
.nested-ul a
{
  font-size:1rem;
}
.nested-ul li{
  flex-direction: row;
}
.nested-ul li::before{
content:"・";
  }
}

.nested-ul a:hover{
  text-decoration: underline;
}

#headline_main {
  color: #fff;
  background-color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: var(--font-bold);
  padding: 15px 10px;
  text-align: center;
  border-radius: 8px;
  text-shadow: 5px 5px 0 rgba(0, 73, 159, 1);
}

@media (min-width: 768px) {
  #headline_main {
  position: relative;
  font-size: 2rem;
}
#headline_main:before{
  position: absolute;
  content: '';
  display: block;
  bottom: 0;
  right: 0;
  width: 15%;
  height: 100%;
  background-color: rgba(0, 73, 159, 1);
  clip-path: polygon(60% 0, 100% 0%, 100% 100%, 0% 100%);
}
}

/*カテゴリー大見出し*/
#section1-heading,
#Heading1,
#confirm-heading{
    color: #FFFFFF;
    font-size: 1.3rem;
  	font-weight: var(--font-bold);
    padding: 10px;
  	background-color: rgba(0, 73, 159, 1);
    border: 2px solid #FFFFFF;
    text-align: center;
    border-radius: 8px;
}

/* レスポンシブデザイン */
@media (min-width: 768px) {
#section1-heading,
#Heading1,
#confirm-heading{
    font-size: 2rem;
    padding: 12px;
    border-left: 20px double #FFFFFF;
    }
}

/*大見出し下説明*/
.headline-notes
{
font-size: 0.9rem;
margin-bottom: 10px;
}

@media (min-width: 768px){
.headline-notes
{
font-size: 1rem;
margin-left: 20px;
}
}

/****************よくある質問****************/

/* 上部 */
#faq-nav__menu,
#faq-nav__menu-five {
  display: none; /* デフォルトでは非表示 */
}
/* メニューの文字 */
.faq-nav__title{
  color: inherit;
  font-size: 0.852rem;
  font-weight: var(--font-bold);
}
.faq-nav__description {
  font-size: 0.8rem;
  font-weight: var(--font-bold);  
}

/* メニューの文字（複数行） */
.faq-nav__multi-line {
  display: block;
  text-align: center;
  white-space: normal;
}  

a.faq-nav__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 73, 159, 1);
  box-sizing: border-box;
  padding: 0 25px 0 40px;
  color: rgba(0, 73, 159, 1);
  font-size: 15px;
  font-weight: var(--font-bold);
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}
a.faq-nav__item:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid rgba(0, 73, 159, 1);
  border-right: 2px solid rgba(0, 73, 159, 1);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}

@media (min-width: 1280px){
  #faq-nav__menu,
  #faq-nav__menu-five{
    display: block;
    width: 95%;
    margin: 0 auto;
  }
  #faq-nav__menu ul,
  #faq-nav__menu-five ul {
    display: grid;
    grid-gap: 15px;
    padding: 0;
    list-style: none;
}
  #faq-nav__menu ul{  
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr); 
  }
#faq-nav__menu-five ul {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
}
  #faq-nav__menu-five li:nth-child(1) { grid-area: 1 / 1 / 2 / 3; }
  #faq-nav__menu-five li:nth-child(2) { grid-area: 1 / 3 / 2 / 5; }
  #faq-nav__menu-five li:nth-child(3) { grid-area: 1 / 5 / 2 / 7; }
  #faq-nav__menu-five li:nth-child(4) { grid-area: 2 / 1 / 3 / 4; }
  #faq-nav__menu-five li:nth-child(5) { grid-area: 2 / 4 / 3 / 7; } 
  
  a.faq-nav__item{
  font-size: 0.852rem;
}
}

@media (min-width: 768px) and (max-width: 1279px) {
  #faq-nav__menu,
  #faq-nav__menu-five {
    display: block;
    width: 95%;
    margin: 0 auto;
  }
  #faq-nav__menu ul,
  #faq-nav__menu-five ul {
    display: grid;
    grid-gap: 15px;
    padding: 0;
    list-style: none;
  }
  #faq-nav__menu ul,
  #faq-nav__menu-five ul{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;   
  } 
}

@media (any-hover: hover){
a.faq-nav__item:hover {
  background: var(--secondary-color);
  color: #fff;
  border: 1px solid #fff;
}
a.faq-nav__item:hover:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
}
.faq-nav__item:active {
  background: var(--secondary-color);
  color: #fff;
  border: 1px solid #fff;
}
a.faq-nav__item:active:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/****************記事一覧****************/

.article-menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .article-menu {
    flex-direction: row;
    width: 100%;
    margin: 60px auto;
  }
}

.article-menu .article-section {
  flex: initial;
  max-width: 100%;
}
@media (min-width: 768px) {
.article-menu .article-section {
    flex: 0 0 46%;
  }
  .article-section{
    margin-bottom:20px;
  }
}

.accordion-section {
  margin-bottom: 5px;
  padding: 5px;
  transition: all 0.3s ease;
}

.article-menu-title {
  cursor: pointer;
  color: rgba(0, 73, 159, 1);
  font-size:  var(--font-siz-normal);
  font-weight: bold;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:15px;
  border-bottom: 1px solid #ddd;
}

.article-menu-title::-webkit-details-marker {
  display: none;
}

@media (min-width: 768px) {
  .article-menu-title {
      font-size:  var(--font-siz-large);
  }
}
.summary-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: var(--accent-color);
}

@media (min-width: 768px) {
.summary-icon {  
  color: rgba(0, 73, 159, 1);
  } 
}

.icon-plus, .icon-minus {
  display: none;
}

/*開閉時のスタイル*/

details[open] .article-menu-title{
 border-bottom: 4px solid var(--secondary-color);
  background: #fff;
}

details:not([open]) .article-menu-title{
 border-bottom: 4px solid var(--secondary-color);
    background: #fff;
}

details:not([open]) .icon-plus {
  display: inline;
}

details[open] .icon-minus {
  display: inline;
}

.article-list {
  list-style: none;
  padding: 0;
}

.article-list-item {
  margin: 0px 10px;
}

.article-list-link {
  text-decoration: none;
  color: rgba(0, 73, 159, 1);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .article-list-link {
    font-size: 1rem;
  }}

.article-list-link:hover {
  text-decoration: underline;
}

.more-articles {
  display: block;
  margin-top: 10px;
  text-align: right;
  text-decoration: none;
  color: var(--accent-color);
  font-weight: var(--font-bold);
}

.more-articles:hover {
  text-decoration: underline;
}

.icon-lock {
  margin-left: 5px;
}
.section-tree-title a {
      color: #1B418E;
      text-decoration: none;
    }

    .section-tree-title a:hover {
      text-decoration: underline;
    }

    /* 768px以上の場合のスタイル */
    @media (min-width: 768px) {
      details.accordion-section[open] {
        background-color: #fff;
      }
      
     .article-menu-title{
       background-color :var(--back-gray);}
} 
    }

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

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

h2.section-tree-title{
  padding: 10px  5px;
  font-size: 1.1rem;
  font-weight: var(--font-bold);
  color: rgba(0, 73, 159, 1);
  border-bottom:2px solid rgba(0, 73, 159, 1);
}

.section-tree .see-all-articles {
  display: block;
  padding: 15px 0;
  color: var(--accent-color);
}

.article-list-item {
  font-size: 16px;
  padding: 15px 15px 15px 20px;
  border-bottom: 2px dotted #ddd;
}

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

.icon-star {
  color: rgba(0, 73, 159, 1);
  font-size: 18px;
}
.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 */
  }
}

.collapsible-sidebar details {
  border: 1px solid #aaa;
  margin-top: 20px;
}
 
.collapsible-sidebar details .details-content {
   padding:1rem 1rem 1rem 1.8rem;  
   position: relative;
}

.details-content ul li{
  font-size:0.9rem;
}

.article-aclist summary {
  display: block;
  list-style: none;
  cursor: pointer; /* カーソルの形状をポインターに */
  position: relative; /* 絶対配置する疑似要素のアイコンの基準に */
  padding: 0.5rem 0.5rem 0.5rem 36px;
  background-color: var(--back-gray);
  color: #2F3941;
}
 
.article-aclist summary::-webkit-details-marker {
  display: none; /* Safari で三角形のアイコンを非表示に */
}
 
/* アイコンを擬似要素で作成 */
.article-aclist summary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto 0;  /* top:0 と bottom:0 と共に指定して垂直方向中央揃え */
  width: 10px;
  height: 10px;
  border-top: 2px solid #2F3941;
  border-right: 2px solid  #2F3941;
  transform: rotate(45deg);  /* 回転して右向きの矢印に */
  transition: transform 0.2s ease-in; /* transition プロパティを設定 */
}
 
.collapsible-sidebar details[open] summary {
  border-bottom: 1px solid #aaa;
}
 
.collapsible-sidebar details[open] summary::before {
  transform: rotate(135deg); /* 開いた状態では90度回転 */
}

.more a{
  display: block;
  text-align: right;
  position: relative;
  color: var(--secondary-color);
}


.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: 0px;
  margin-top: 20px;
}

/*　各記事のタイトルスタイル　*/
.article-header h1 {
  position: relative;
  padding: 1rem 2rem calc(1rem + 10px);
  background: var(--light-color);
	font-size: 1.3rem;
  font-weight: var(--font-bold);
  color: #2F3941;
  padding: 0.5rem ;
}

.article-header h1::after{
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 4px solid rgba(0, 73, 159, 1);
}

@media (min-width: 768px) {
  .article-header {
    flex-direction: row;
    margin-top: 0;
  }
  
  .article-header h1 {
	font-size: 1.5rem;
}
}

.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;
  font-size: 0.9rem;
}

@media (min-width: 768px){
.article-body {
  display: flow-root;
  font-size: 1rem;
}
}

/*　見出し1　*/
.article-body h1{
  font-size: 1.275rem;
  font-weight: var(--font-bold);
  color: rgba(0, 73, 159, 1);
  border-bottom: 4px double #5a6d7c;
}

/*　見出し2　*/
.article-body h2{
  font-size: 1.2rem;
  border-left: 10px solid var(--accent-color-second);
  padding-left:10px;
  font-weight: var(--font-bold);
  color: #2F3941;
  line-height: 2;
  margin-bottom: 1rem;
}

/*　2番目以降の見出し2は、上部スペースを取る　*/
.article-body h2:not(:first-child){ 
  margin-top: 2rem;
}

/*　見出し3　*/
.article-body h3{
  font-size: 1.1rem;
  color: #2F3941;
  font-weight: var(--font-bold);
  border-bottom:2px solid #a3a3a3;
}

/*　見出し4*/
.article-body h4{
  font-size: 1rem;
  color: var(--secondary-color);
}

/*　囲み枠　余白と角を丸める　*/
.article-body .back,
.article-body .back2,
.article-body .back3,
.article-body .back4
{
  padding: 8px 16px;
  border-radius: 8px;
}

@media (min-width: 768px){
.article-body .back,
.article-body .back2,
.article-body .back3,
.article-body .back4{
  padding: 10px 20px;
  border-radius: 10px;
}
}

/*　囲み枠1　*/
.article-body .back{
  background-color: #EBF8F4;
  border: 1px solid var(--green-color);
}

/*　囲み枠2　*/
.article-body .back2{
  background: var(--back-gray);
  border: 1px solid #999;
  font-size:0.8rem;
}

@media (min-width: 768px){
.article-body .back2{
  font-size:0.9rem;
}
}

/*　囲み枠3　*/
.article-body .back3
{
  background-color: #FEEDF3;
  border: 1px solid var(--accent-color);
}

/*　囲み枠4　*/
.article-body .back4
{
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 73, 159, 1);
}

/*　太字にした時の色　*/
.article-body strong{
  color: var(--accent-color);
}

/*　テキストカラーの太字　*/
.article-body__font-bold {
  font-weight: var(--font-bold);
  color: #2F3941;
}

/*　全体の行の高さ　*/
.article-content {
  line-height: 1.9;
  margin: 10px 0;
  word-wrap: break-word;
}

/*　<BR>改行した場合の余白　*/
.article-body br,
{
display: block;
content: "";
margin:0.1rem 0;
}

.article-body tr td,
.article-body ul li,
.article-body ol li,
.article-body .back,
.article-body .back2
{
  line-height:2;
}


/*　罫線2種　*/
.article-body .hr-top,
.article-body .hr-top2
{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.article-body .hr-top{
 border-bottom: 1px dashed #666;  
}

.article-body .hr-top2{
  border-bottom:2px solid #a3a3a3;
}

/*箇条書きリストのスタイル*/
.article-body li{
margin:1.2rem 0;
}

.article-body ul li{
	list-style:none;
	padding-left: 30px;
	position:relative;
  line-height: 1.7 /* 文字の高さ */
}

.article-body ul li::before,
.article-body ul li::after{
	content:"";
	display:block;
	position:absolute;
}
.article-body ul li::before{
	width: 14px;
	height: 14px;
	border-radius: 7px;
	background-color: #666;
	left:12px;
  top: 0.3rem;
}
.article-body ul li::after{
	border-left:2px solid #fff;
	border-bottom:2px solid #fff;
	width:6px;
	height:3px;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	left:15px;
	top: 0.5rem;
}

.article-body ol{
  counter-reset:number;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-body ol li{
  position: relative;
  padding-left: 1.5em; /* 左の余白 */
  line-height: 1.7; /* 文字の高さ */
  padding-left:36px;
}

.article-body ol li::before{
  position: absolute;
  counter-increment: number;
  content: counter(number);
  left: 12px;
  top: 2px;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--ol-color);
  font-size: 12px;
  color: #fff;
  line-height: 18px;
  text-align: center;
}

.article-body ul li:not(:first-child),
.article-body ol li:not(:first-child){
  margin-top: 0.5em;
}

.article-body .note
{
  font-size: 0.9rem;
}

.article-body a {
  color: rgba(34, 0, 204, 1);
  font-size: 1rem;
  font-weight: var(--font-bold);
  text-decoration: underline;
}

@media (min-width: 768px){
.article-body a {
  font-size: 1.1rem;
}
}

.article-body .back a,
.article-body .back2 a,
.article-body tr td, 
.article-body pre a{
  font-size: 0.9rem;
  font-weight: var(--font-normal);
}

@media (min-width: 768px){
.article-body .back a,
.article-body .back2 a,
.article-body tr td, 
.article-body pre a{
  font-size: 1rem;
  font-weight: var(--font-normal);
}
}

.article-body a:visited {
  color: rgba(85, 26, 139, 1);
}
.article-body a:hover, .article-body a:active, .article-body a:focus {
  color: var(--secondary-color);
}

.article-body a::before{
  content:"＞＞";
}

/*　記事内リンク（#)の場合、リンクの下線・＞＞記号なし*/
.article-body a[href^="#"]{
 text-decoration: none;
}

.article-body a[href^="#"]::before{
 content:"";
}

/*　その他、リンクの＞＞を外したい箇所設定　*/
.article-body a[name]::before,
.article-body pre a::before,
.article-body .back2 a::before,
.article-body .back4 a::before,
.article-body .bari a::before,
.article-body .simplelink a::before{
   content:"";
}

.article-body .bari,
.article-body .bari a{
  font-size:0.9rem;
}

.article-body .bari .rubi
{
    font-size:0.75rem;
}

/*テーブルの設定*/
.article-body th{
  background-color: var(--back-gray);
  font-size: 0.8rem;
  padding: 5px;
}
  
  @media (min-width: 768px){
.article-body th{
  font-size: 0.9rem;
}
}

.article-body tr td{
 padding: 5px;  
 font-size: 0.8rem;
}

/*　テーブル（フォントサイズ大きめ) */
.article-body .article-body__table-large {
 font-size: 0.85rem;
}

@media (min-width: 768px){
.article-body .article-body__table-large {
  font-size: 0.95rem;
}
}

/*画像の枠線　不要の場合は個々にstyle="border:none;"指定*/
.article-body img {
  height: auto;
  max-width: 100%;
  border: 3px solid rgba(0, 73, 159, 1);
}
.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 > 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 .article-shoplist
{
  width:60%;
  border:2px solid rgba(0, 73, 159, 1);
  padding: 10px;
  color:  rgba(0, 73, 159, 1);
  border-radius: 10px;
  background:  #fff;
  margin-bottom: 10px;
}

.article-body .article-shoplist-t a,
.article-body .article-shoplist-t a:visited,
.article-body .article-shoplist-t2 a,
.article-body .article-shoplist-t2 a:visited
{
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(0, 73, 159, 1);
}

.article-body .article-shoplist-t a:hover,
.article-body .article-shoplist-t2 a:hover
{
   color: var(--secondary-color); 
}


.article-body .article-shoplist-t,
.article-body .article-shoplist-t2
{
position: relative;
padding-left: 30px;
}

.article-body .article-shoplist-t::before,
.article-body .article-shoplist-t2::before
{
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content:"";
  width: var(--siz-large);
	height: var(--siz-large);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: rgba(0, 73, 159, 1);
}

.article-body .article-shoplist-t::before{
  -webkit-mask-image: url(/hc/theming_assets/01JYX79J527HYSY91NFRCW4Y17);
  mask-image: url(/hc/theming_assets/01JYX79J527HYSY91NFRCW4Y17);
}

.article-body .article-shoplist-t2::before
{
  -webkit-mask-image: url(/hc/theming_assets/01JYX79HYW1PYFV3FF7NH6PTRW);
  mask-image: url(/hc/theming_assets/01JYX79HYW1PYFV3FF7NH6PTRW);
}

.article-body .article-shoplist-t a::before,
.article-body .article-shoplist-t2 a::before
{
  content:"";
}

.article-body :not(pre) > code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}
.article-body pre {
  background: var(--back-gray);
  border: 1px solid #999;
  font-size: 0.9rem;
  border-radius: 10px;
  padding: 15px;
  overflow: auto;
  white-space: pre;
}

.article-body blockquote {
  border-left: 1px solid #ddd;
  color: #5a6d7c;
  font-style: italic;
  padding: 0 15px;
}
.article-body > p:last-child {
  margin-bottom: 0;
}

.article-body .t-border{
            border: 1px solid #ddd;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 5px;
}
.article-body .t-border h2{
            margin: 0;
  					padding: 0;
  					border:none;
  					color: #2F3941;
}

.article-body .t-border strong{
  					color: rgba(0, 73, 159, 1);
}

.article-body .patternA,
.article-body .patternB,
.article-body .patternC
{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 190px;
  height: 64px;
  padding: 8px 24px;
  font-size: 16px;
  text-align: center;
  overflow-wrap: anywhere;
}

.article-body .patternA{
  border: 4px solid #CC0066;
  background-color: #F8CECC;
  color:#CC0066;
}

.article-body .patternB{
  border: 4px solid #6C8EBF;
  background-color: #DAE8FC;
  color:#5C5A8F;
}

.article-body .patternC{
  border: 4px solid #82B366;
  background-color: #D5E8D4;
  color:#3B6B31;
}

@media (any-hover: hover) {
.article-body .patternA,
.article-body .patternB,
.article-body .patternC
{
    transition: background-color 0.2s;
  }

.article-body .patternA:hover,
.article-body .patternB:hover,
.article-body .patternC:hover
  {
    background-color: #fff;
  }
}

/*折り畳みリスト*/

.article-body details{
  --arrow-size: 18px;
  --anime-speed: 0.3s;
}

.article-body details summary {
  box-sizing: border-box;
  position: relative;
  display: block;
  font-weight: 700;
  padding: 0.5em calc(var(--arrow-size) + 2em) 0.5em 1em;
  background: #fff;
  border: 1px solid var(--secondary-color);
  /*border: 1px solid #84b1de;*/
  cursor: pointer;
}

.article-body details summary:hover
{
  background-color: #C3DEF7;
}

.article-body details summary::-webkit-details-marker {
  display: none;
}

.article-body details summary .ico {
  position: absolute;
  top: 0;
  right: 1.5em;
  bottom: 0;
  display: block;
  width: var(--arrow-size);
  height: calc(var(--arrow-size) * 0.6);
  margin: auto;
  background: var(--secondary-color);
  clip-path: polygon(100% 13%, 50% 100%, 0 13%, 8% 0, 50% 73%, 92% 0);
  transition: transform var(--anime-speed);
}

.article-body details[open] summary .ico {
  transform: rotate(180deg);
}

.article-body details[open] summary
{
  background-color: #C3DEF7;
}

.article-body details .inner {
  position: relative;
  padding: 0.7em;
  background: #ffffff;
}

@media (min-width: 768px){
.article-body details .inner {
  padding: 1em 1.5em;
}
}

/*特殊details*/
/*A*/
.article-body > details.highlightA summary {
  background: #fff; /* 背景色 */
  border: 1px solid #CC0066; /* ボーダー色 */
}

.article-body > details.highlightA summary:hover {
  background-color: #F8CECC; /* ホバー時の背景色 */
}

.article-body > details.highlightA[open] summary {
  background-color: #F8CECC; /* 開いた時の背景色 */
}
.article-body > details.highlightA summary .ico {
  background: #CC0066; /* 矢印の色を変更 */
}

/*B*/
.article-body > details.highlightB summary {
  background: #fff; /* 背景色 */
  border: 1px solid #6C8EBF; /* ボーダー色 */
}

.article-body > details.highlightB summary:hover {
  background-color: #DAE8FC; /* ホバー時の背景色 */
}

.article-body > details.highlightB[open] summary {
  background-color: #DAE8FC; /* 開いた時の背景色 */
}
.article-body > details.highlightB summary .ico {
  background: #6C8EBF; /* 矢印の色を変更 */
}

/*C*/
.article-body > details.highlightC summary {
  background: #fff; /* 背景色 */
  border: 1px solid #82B366; /* ボーダー色 */
}

.article-body > details.highlightC summary:hover {
  background-color: #D5E8D4; /* ホバー時の背景色 */
}

.article-body > details.highlightC[open] summary {
  background-color: #D5E8D4; /* 開いた時の背景色 */
}

.article-body > details.highlightC summary .ico {
  background: #82B366; /* 矢印の色を変更 */
}


.article-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.article-comment-count {
  color: #5a6d7c;
}
.article-comment-count:hover {
  text-decoration: none;
}
.article-comment-count-icon {
  vertical-align: middle;
  color: rgba(0, 73, 159, 1);
  width: 18px;
  height: 18px;
}

/*main66%指定のため、max34%まで*/

.article-sidebar {
  flex: 1 0 auto;
  margin-bottom: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .article-sidebar {
    display: block;
    border: 0;
    flex: 0 0 25%;
    height: auto;
    max-width: 25%;
  }
}
.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(34, 0, 204, 1);
  text-decoration: underline;
}
.article-more-questions a:visited {
  color: rgba(85, 26, 139, 1);
}
.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 #87929D;
}
@media (min-width: 1024px) {
  .article-return-to-top {
    display: none;
  }
}
.article-return-to-top a {
  color: #2F3941;
  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: var(--font-bold);
}
.sidenav-item {
  display: block;
  margin-top: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
}

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


/***** Hero component *****/
.hero {
  background-image: url(/hc/theming_assets/01JV8STACX83WGZJ1B2W3YNG5N);
  background-position: center;
  background-size: cover;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}
.hero-inner {
  position: relative;
  transform: translateY(25%);
  max-width: 610px;
  margin: 15px 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: nowrap;
    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 {
  color: rgba(0, 73, 159, 1);
  flex-grow: 1;
  margin-bottom: 10px;
}
.page-header-description {
  font-style: italic;
  margin: 0 0 30px 0;
  word-break: break-all;
}
@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;
}


/***** 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(0, 73, 159, 1);
  border-radius: 4px;
  box-sizing: border-box;
  color: rgba(0, 73, 159, 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(0, 73, 159, 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: #2F3941;
}

.blocks-item-link {
  color: rgba(0, 73, 159, 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(0, 73, 159, 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;
  }
}


/***** 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: var(--font-bold);
  color: rgba(0, 73, 159, 1);
}
.section-tree-title a {
  color: rgba(0, 73, 159, 1);
}
.section-tree .see-all-articles {
  display: block;
  padding: 15px 0;
}

.article-list-item {
  position: relative;
  font-size: 16px;
  padding: 10px 28px;
  border-bottom: 2px dotted #b8b8b8;
}

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

.article-list-item::before{
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: var(--siz-small);
	height: var(--siz-small);
  -webkit-mask-image: url(/hc/theming_assets/01JYX79J57VGXT6BNBYY6YBNCX);
  mask-image: url(/hc/theming_assets/01JYX79J57VGXT6BNBYY6YBNCX);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: rgba(0, 73, 159, 1);
}

.icon-star {
  color: rgba(0, 73, 159, 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;
}

/*推奨記事の時*/
.article-promoted{
}

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


/***************問い合わせフォーム***************/


/***************検索結果画面***************/

.search-results {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1024px) {
  .search-results {
    flex-direction: row;
  }
}

/*検索結果画面のリストには黒丸をつけない*/
.search-results ul {
  list-style: none;
}

/*検索結果画面の記事タイトル*/
.search-results h2{
  padding-left: 25px;
  margin-bottom: 10px
  padding-left: 0.5em;
  font-size: 1.1rem;
  font-weight: var(--font-bold);
  border: none;
  position: relative;

}

/*タイトル前に？表示*/
.search-results h2::before { 
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-60%);
  content: "";
  width: var(--siz-medium);
	height: var(--siz-medium);
  -webkit-mask-image: url(/hc/theming_assets/01JYX79J57VGXT6BNBYY6YBNCX);
  mask-image: url(/hc/theming_assets/01JYX79J57VGXT6BNBYY6YBNCX);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: rgba(0, 73, 159, 1);
}

.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: #2F3941;
}
.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 .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(34, 0, 204, 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-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: var(--font-bold);
  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-column h1{
  border:none;
  padding:0;
}
.search-results-subheading {
  font-size: 18px;
  font-weight: var(--font-bold);
  color: #2F3941;
}
.search-results-list {
  margin-bottom: 25px;
}
.search-results-list > li {
  padding: 20px 0;
}
.search-results-list > li:first-child {
  border-top: 1px solid #666666;
}

/* 検索結果0件のページ　*/
.no-results__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: 0.5fr minmax(150px, 1fr) minmax(150px, 1fr) 0.5fr;
  grid-column-gap: 15px;
  grid-row-gap: 25px;
}

.no-results__grid-title { 
  grid-area: 1 / 1 / 2 / 3;
  display: flex;
  align-items: end;
}

.no-results__grid-title h1{
  position: relative;
  font-size: var(--font-siz-large);
  font-weight: var(--font-bold);
  letter-spacing: 0.09em;
  margin: var(--spacing-narrow) auto;
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background: rgba(0, 73, 159, 1);
  color: #fff;
}
.no-results__grid-title h1::after{
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	bottom: -10px;
	left: 1.5em;
	border-width: 10px 10px 0 10px;
	border-style: solid;
	border-color: rgba(0, 73, 159, 1) transparent transparent transparent;  
}
.no-results__grid-image { 
  grid-area: 2 / 1 / 4 / 2; 
  background-image: url('/hc/theming_assets/01JYX79HFGQ4ZTZAXK95VDFKVG');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.no-results__grid-description { 
  grid-area: 2 / 2 / 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.no-results__grid-description-font {
  color: #2F3941;
  font-size: var(--font-siz-medium);
  line-height: 1.7;
  letter-spacing: 0.09em;
  margin: 8px;
}
@media (min-width: 768px) {
  .no-results__grid-title h1 {
    font-size: var(--font-siz-extra-large);
  }
  .no-results__grid-description-font {
    font-size: var(--font-siz-large);
  }
}

.no-results__grid-bottom { 
  grid-area: 4 / 1 / 5 / 3;
}

a.no-results__return-button {
	display: block;
	text-align: center;
	vertical-align: middle;
	width: 200px;
	margin: 40px auto;
  padding: 10px;
	font-weight: bold;
	border: 1px solid rgba(0, 73, 159, 1);
	background: rgba(0, 73, 159, 1);
	color: #fff;
  border-radius: 10px;
	transition: 0.5s;
}

@media (any-hover: hover){
  .no-results__grid-description-font a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  a.no-results__return-button:hover {
  color: rgba(0, 73, 159, 1);
	background: #fff;
  text-decoration: none;
  }
}

.no-results__grid-description-font a,
.no-results__grid-description-font a:visited {
  color: rgba(34, 0, 204, 1);
}

.no-results__grid-description-font a{
  position: relative;
  padding-left: 22px;
}

.no-results__grid-description-font a::before{
  display: inline-block;
  content: '';
  width: var(--siz-medium);
	height: var(--siz-medium);
  background-color: rgba(34, 0, 204, 1);
  mask-image: url(/hc/theming_assets/01JYX79J5GX5MT5QD3TDGZAEAH);
  -webkit-mask-image: url(/hc/theming_assets/01JYX79J5GX5MT5QD3TDGZAEAH);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}

.search-result-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-result-title {
  font-size: 1.2em;
}

.search-result-title a{
  color: rgba(0, 73, 159, 1);
}
.search-result-meta-container {
  color: #666;
  display: flex;
  flex-direction: column;
  border-bottom:1px dashed #DDD;
}
@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-breadcrumbs li a:visited{
  color: #2F3941;
}
.search-result-breadcrumbs li a{
  color: #2F3941;
}
  
.search-result-breadcrumbs li:first-child::before {
  display:inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  left: 0;
  content:"";
  width: var(--siz-small);
	height: var(--siz-small);
  background-color: #2F3941;
}

.search-result-breadcrumbs li:last-child {
  pointer-events: auto;
  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;
}


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

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

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

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

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

/***** 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: #5a6d7c;
  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;
  }
}
.no-posts-with-filter {
  margin-top: 20px;
  margin-bottom: 20px;
}

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

/***** 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: #2F3941;
  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: #5a6d7c;
}

/***** 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: #5a6d7c;
}
.share a:hover {
  text-decoration: none;
  color: rgba(0, 73, 159, 1);
}
.share a svg {
  height: 18px;
  width: 18px;
  display: 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: #5a6d7c;
  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(0, 73, 159, 1);
}

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

.vote-voted {
  color: rgba(0, 73, 159, 1);
}

.vote-voted:hover {
  color: #001a39;
}

/***** 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 topics grid */
.topics {
  max-width: none;
  width: 100%;
}
.topics-item .meta-group {
  justify-content: center;
  margin-top: 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(0, 73, 159, 1);
}

.collapsible-nav-list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .collapsible-nav-list {
    flex-direction: row;
  }
}
.collapsible-nav-list li {
  color: #2F3941;
  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: #2F3941;
  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(0, 73, 159, 1);
    order: 1;
  }
}
.collapsible-nav-list li[aria-selected=true] a,
.collapsible-nav-list li.current a {
  color: #2F3941;
}

.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;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}
@media (min-width: 1024px) {
  .collapsible-sidebar {
    max-height: none;
    padding: 0;
  }
}
.collapsible-sidebar-title {
  margin-top: 0;
}

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

/* Contributions table */
.contributions-table td:last-child {
  color: #5a6d7c;
  font-size: 13px;
}
@media (min-width: 768px) {
  .contributions-table td:last-child {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
  }
}

.no-activities {
  color: #5a6d7c;
}


/***** 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: #5a6d7c;
  font-size: 13px;
}
.meta-data:not(:last-child)::after {
  content: "·";
  margin: 0 5px;
}


/*　スクリーンリーダー　*/

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