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

body {
  background-color: rgba(246, 248, 250, 1);
  color: rgba(84, 95, 102, 1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.top-page-announcement {
  color: rgba(64, 184, 124, 1);
  margin: -24px auto 24px;
  text-align: center;
  padding: 0 24px;
  font-size: 15px;
  width: 100%;
}

.top-page-announcement_2 {
  color: rgba(64, 184, 124, 1);
  font-size: 15px;
	text-align: center;
	padding: 20px;
	width: 600px;
	margin-right: 30%;
	margin-left: 30%;
}

p.top-page-announcement_2 {
  text-align: left;
	display: inline-block;
}

.top-page-announcement a {
  color: #469FD6;
}

@media (min-width: 768px) {
  .top-page-announcement {
  	margin: -40px auto 24px;
	}
}

@media (min-width: 1600px) {
  .top-page-announcement {
  	margin: -30px auto 24px;
	}
}
  
@media (min-width: 1024px) {
  body > main {
    min-height: calc(100vh - 213px);
    box-sizing: border-box;
  }
}

h1, h2, h3, h4, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin-top: 0;
}

h1 {
  font-size: 40px;
  font-weight: bold;
}

h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 3em 0 1.5em;
}

h3 {
  font-size: 24px;
  font-weight: bold;
	margin: 3em 0 1.5em;
}

h4 {
  font-size: 20px;
  font-weight: bold;
}

hr{
  border:none;
  border-top:1px solid #DEE5EC;
  margin:24px 0;
}

a {
  color: #469FD6;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  text-decoration: none;
  color:#3E8EC0;
}

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

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

input:focus {
  border: 1px solid rgba(20, 42, 56, 1);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(/hc/ja/images/theming_assets/dropdown-arrow.svg) no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}

select:focus {
  border: 1px solid rgba(20, 42, 56, 1);
}

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

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

textarea:focus {
  border: 1px solid rgba(20, 42, 56, 1);
}

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

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

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

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

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

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

p.alert, p.information {
  padding: 16px 16px 16px 40px;
  border-radius:3px;
  position:relative;
}

p.alert {
  background-color: #ffefef;
  border: solid 1px #ffdada;
}

p.alert:before{
  background-image: url(/hc/ja/images/theming_assets/Alert.svg);
}

p.information {
  background-color: #f2faff;
  border: solid 1px #d5efff;
}

p.information:before{
  background-image: url(/hc/ja/images/theming_assets/Info.svg);
}

p.information:before,p.alert:before {
	content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  vertical-align: middle; 
	position:absolute; 
  left: 16px;
  top: 16px;
}

.alert-title {
  position:absolute;
	left: 40px;
  top: 12px;
}

.alert-title {
  color:#ff5f5f;
}


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

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

.button::after, [role="button"]::after {
  color: rgba(20, 42, 56, 1);
}

.button:hover, .button:active, .button:focus, .button[aria-selected="true"], [role="button"]:hover, [role="button"]:active, [role="button"]:focus, [role="button"][aria-selected="true"] {
  background-color: rgba(20, 42, 56, 1);
  color: #FFFFFF;
  text-decoration: none;
}

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

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

 input[type="submit"] {
  background-color: rgba(20, 42, 56, 1);
  border: 0;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.72;
  min-width: 190px; 
  padding: 0 1.9286em;
  width: 100%;
}

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

 input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus {
  background-color: #000;
}

/***** Tables *****/
.table {
  width: 100%;
  table-layout: fixed;
  border: solid 1px rgba(84, 95, 102, 1);
}

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

/* テーブル全体を100%幅に設定 */
.article-body table,
.section-content table,
.category-content table {
  width: 100%;
}

/* 全てのセルに最小幅を設定して、狭くなりすぎないようにする */
.article-body table th,
.article-body table td,
.section-content table th,
.section-content table td,
.category-content table th,
.category-content table td {
  min-width: 120px;
  padding: 10px;
}

/* 最初の列は少し広めに */
.article-body table th:first-child,
.article-body table td:first-child,
.section-content table th:first-child,
.section-content table td:first-child,
.category-content table th:first-child,
.category-content table td:first-child {
  min-width: 150px;
}

.table th,
.table th a {
  color: #85929b;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.table tr:not(:last-child){
  border-bottom: 1px solid #ddd;
}
  .table tr{
  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;
  }
}

/***** Table artile: WOVN supported languages *****/

/***** Table customize *****/


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

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

.form-field .nesty-input:focus {
  border: 1px solid rgba(20, 42, 56, 1);
  text-decoration: none;
}

[data-loading="true"] input,
[data-loading="true"] textarea {
  background: transparent url(/hc/ja/images/theming_assets/loader.gif) 99% 50% no-repeat;
  background-size: 16px 16px;
}

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

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

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

.header .logo a {
  font-size:0;
}

.heaer-inner__logo {
  width:auto;
  height:15px;
  display:inline-block;
  vertical-align:middle;
}
.header-title{
  display:inline-block;
  margin:0 0 0 16px;
  vertical-align:middle;
  color:#82959f;
  font-size:16px;
}



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

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

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

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

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

.user-nav[aria-expanded="true"] > a {
  display: block;
  margin: 20px;
}

.nav-wrapper a {
  border: 0;
  color: rgba(70, 159, 214, 1);
  display: none;
  font-size: 14px;
  padding: 0 20px 0 0;
  width: auto;
}
.nav-wrapper a:hover {
  text-decoration:none;
}

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

.nav-wrapper a:hover, .nav-wrapper a:focus, .nav-wrapper a:active {
  background-color: transparent;
  color: rgba(70, 159, 214, 1);
  text-decoration: underline;
}

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

.nav-wrapper .icon-menu {
  display: inline-block;
  margin-right: 10px;
  color: rgba(70, 159, 214, 1);
}

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

/***** User info in header *****/

/***** User avatar *****/

/***** Footer *****/
.footer {
  margin-top: 60px;
  padding: 60px 0;
  border-top:1px solid #DEE5EC;
  background:#343C40;
}

.footer a {
  color: #85929b;
}

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

.footer-inner__logo {
	width: 90px;
}

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



.footer-text {
  font-size:12px;
  color:#82959f;
  margin: 16px 0 0;
}

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

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

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

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

.breadcrumbs li a:visited {
  color: rgba(70, 159, 214, 1);
}

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

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

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

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

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

/***** Hero component *****/
.hero {
  background-image: url(/hc/ja/images/header-background.png);
  background-position: center;
  background-size: cover;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

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

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

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

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

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

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

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

.blocks-item {
  border: 1px solid rgba(20, 42, 56, 1);
  border-radius: 4px;
  box-sizing: border-box;
  color: rgba(20, 42, 56, 1);
  display: flex;
  flex: 1 0 340px;
  flex-direction: column;
  justify-content: center;
  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(20, 42, 56, 1);
}

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

.blocks-item-link {
  color: rgba(20, 42, 56, 1);
  padding: 20px 30px;
}

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

.blocks-item-title {
  margin-bottom: 0;
  font-weight:bold;
}

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

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

/***** Homepage *****/
.section {
  margin-bottom: 40px;
}

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

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

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

/***** Community section in homepage *****/



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

/***** Recent activity *****/

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

.category-content {
  flex: 1;
}

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

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

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

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

.section-tree-title {
  margin-bottom: 0;
}

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

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

.article-list-item {
  border-bottom: 1px solid #dee5ec;
  font-size: 16px;
  padding: 24px 0;
}

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

.article-list-item a:hover {
  color: #40B87C;
}

/***** Section pages *****/

.section-content {
  flex: 1;
}

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

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

@media (min-width: 1024px) {
  .article {
    flex: 1 0 66%;
    max-width: 100%;
    min-width: 640px;
    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: 64px;
  margin-top: 20px;
}

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

@media (min-width: 768px) {
  .article-title {
    flex-basis: 100%;
    margin-bottom: 0px;
    /* Take entire row */
  }
}

.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-body p {
  line-height: 1.7;
}

.article-body img {
  height: auto;
  max-width: 100%;
  margin:24px 0;
}

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

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

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

.article-body a:visited {
  color: #469fd6;
}

.article-body a:hover {
  color: #3E8EC0;
}

.article-body > code {
  border: 1px solid #dee5ec;
  padding: 4px 6px;
  margin: 0 2px;
}

.article-body pre > code span.comment {
  border-bottom: 0px;
}

.article-body pre {
  padding: 16px 20px;
  overflow: auto;
  white-space: pre;
  background-color: #f6f8fa;
}

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

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

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

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

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

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

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

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

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

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

.sidenav-item {
  border-radius: 4px;
  color: #82959F;
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 10px;
}
.sidenav-item:hover{
	color:#545F66;
  text-decoration: none;
}
.sidenav-item.current-article {
  background-color: none;
  color: #40B87C;
  text-decoration: none;
	font-weight:bold;  
}

/***** Attachments *****/
/* Styles attachments inside posts, articles and comments */

/***** Social share links *****/

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

/***** Vote *****/
/* Used in article comments, post comments and post */

/***** Actions *****/
/* Styles admin and en user actions(edit, delete, change status) in comments and posts */

/***** Community *****/

/* Community topics grid */

/* Community topic page */

/* Topic, post and user follow button */

/***** Striped list *****/
/* Used in community posts list and requests list */

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */

/***** Post *****/
/*
* The post grid is defined this way:
* Content | Sidebar
* 70%     | 30%
*/

/* Navigation element that collapses on mobile */

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

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

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

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

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

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

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

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

/***** My activities *****/

/* Requests table */

/* Following table */

/* Contributions table */

/***** Request *****/

/***** Pagination *****/

/***** Metadata *****/

/***** Icons *****/
[class^="icon-"]::before,
[class*=" icon-"]::before,
.search::before,
.collapsible-sidebar-title::after,
.search-result-votes::before,
.search-result-meta-count::before {
  font-family: "copenhagen-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  line-height: 1em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

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

/* User Profiles */

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

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

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

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

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

.search-results-list > li {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

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

.search-result-description {
  margin-top: 15px;
}

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

.search-result-votes::before, .search-result-meta-count::before {
  color: rgba(20, 42, 56, 1);
}

.search-result-votes::before {
  content: "\1F44D";
}

.search-result-meta-count::before {
  content: "\1F4AC";
}

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

.search-result-breadcrumbs li:last-child::after {
  content: "·";
  display: inline-block;
  margin: 0 5px;
}

/*
*
 装飾
*
*/

.labels-small {
  font-size: 80%;
}

.article-label {
  	border: 1px solid #27313b;
    border-radius: 20px;
    padding: 0px 8px 0px 8px;
    display: inline-block;
}


/* 検索結果のハイライト */
.search-result-description em {  
  font-weight: bold;
  background-color: #FFF3CA;
  padding: 0px 3px 2px;
  border-radius: 3px;
}

/*
-----------------------------------
* Prism.js
-----------------------------------

/* PrismJS 1.24.1
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript+apacheconf+bash+c+csharp+css-extras+diff+ini+java+json+kotlin+markdown+markup-templating+nginx+objectivec+php+python+ruby+swift&plugins=line-highlight+line-numbers+highlight-keywords+inline-color+normalize-whitespace+diff-highlight */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

code[class*="language-"],
pre[class*="language-"] {
	color: black;
	background: none;
	text-shadow: 0 1px white;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	font-size: 1em;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
	text-shadow: none;
	background: #b3d4fc;
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
	text-shadow: none;
	background: #b3d4fc;
}

@media print {
	code[class*="language-"],
	pre[class*="language-"] {
		text-shadow: none;
	}
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: #f5f2f0;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype {
	color: slategray;
}

.token.punctuation {
	color: #999;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol {
	color: #905;
}

.token.selector,
.token.attr-name,
.token.string {
	color: #690;
}

.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
	color: #9a6e3a;
	/* This background color was intended by the author of this theme. */
	background: hsla(0, 0%, 100%, .5);
}


.token.attr-value,
.token.keyword {
	color: #07a;
}

.token.function {
	color: #DD4A68;
}


.token.important,
.token.variable {
	color: #e90;
}

.token.important,
.token.bold {
	font-weight: bold;
}

.token.entity {
	cursor: help;
}

pre[data-line] {
	position: relative;
	padding: 1em 0 1em 3em;
}


/*以下、セミナーLP用CSS*/

/* バナー パソコンで見たときは"seminar-banner-pc"のclassがついた画像が表示される */
 
/* バナー スマートフォンで見たときは"seminar-banner-sp"のclassがついた画像が表示される */

/* トップページ空白行用 */
/* ｐ．.seminar-banner - コメントアウト（構文エラー） */
/* ========================================
   Footer Logo Styles
   ======================================== */

.footer-inner__logo {
  max-width: 120px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

/* ========================================
   Article/Category/Section Content Tables
   ======================================== */

#article-container .article-body table,
.article-body table,
.category-content table,
.section-content table,
article table {
  width: 100%;
  border-collapse: collapse !important;
  border: 1px solid #ddd !important;
  margin: 20px 0 !important;
}

#article-container .article-body table th,
.article-body table th,
.category-content table th,
.section-content table th,
article table th {
  background-color: #f5f5f5 !important;
  font-weight: bold !important;
  padding: 10px !important;
  border: 1px solid #ddd !important;
  text-align: center !important;
}

#article-container .article-body table td,
.article-body table td,
.category-content table td,
.section-content table td,
article table td {
  padding: 10px !important;
  border: 1px solid #ddd !important;
}

/* Simple table borders - override everything */
table {
  border-collapse: collapse !important;
  border: 1px solid #ddd !important;
}

th, td {
  border: 1px solid #ddd !important;
  padding: 10px !important;
}


/* ========================================
   Code Block Syntax Highlighting
   ======================================== */

/* All code blocks with language specification - Black background (VS Code Dark theme) */
pre code[class*="language-"] {
  background: #1e1e1e !important;
  color: #d4d4d4 !important;
  text-shadow: none !important;
}

pre:has(> code[class*="language-"]) {
  background: #1e1e1e !important;
  border: 1px solid #3e3e3e;
  border-radius: 4px;
}

/* Remove text-shadow from all tokens in dark code blocks */
pre code[class*="language-"] .token {
  text-shadow: none !important;
}

/* Token colors for dark background (VS Code style) */
.token.tag {
  color: #569cd6 !important;
}

.token.attr-name {
  color: #9cdcfe !important;
}

.token.attr-value,
.token.string {
  color: #ce9178 !important;
}

.token.punctuation {
  color: #808080 !important;
}

.token.comment,
.token.prolog,
.token.doctype {
  color: #6a9955 !important;
}

.token.property,
.token.selector {
  color: #d4d4d4 !important;
}

.token.keyword {
  color: #c586c0 !important;
  font-weight: bold;
}

.token.function {
  color: #dcdcaa !important;
}

.token.number,
.token.boolean {
  color: #b5cea8 !important;
}


/* Default code blocks (no language specified) - No background */
pre code:not([class*="language-"]) {
  background: transparent !important;
  color: #24292e !important;
}

/* Inline code - No background */
:not(pre) > code {
  background: transparent !important;
}



/* ========================================
   Error Page Styles
   ======================================== */

/* Apply flexbox layout only to error pages */
body.error-page-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Container should grow to push footer to bottom (error pages only) */
body.error-page-body .container {
  flex: 1 0 auto;
}

/* Footer stays at bottom (error pages only) */
body.error-page-body .footer {
  flex-shrink: 0;
}

/* Error page specific styles */
.error-page {
  padding: 60px 0;
  min-height: 400px;
}

.error-content {
  max-width: 800px;
  margin: 0 auto;
}


/* ========================================
   WOVN Site Search Styles
   ======================================== */

/* Search Modal */
.search-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.search-results-container {
  background-color: #f8f9fa;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.search-results-header {
  padding: 20px 30px;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.search-results-header h3 {
  margin: 0 0 10px 0;
  font-size: 24px;
  color: #333;
}

.search-results-header p {
  margin: 5px 0;
  color: #666;
  font-size: 14px;
}

.search-close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #999;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
}

.search-close-button:hover {
  color: #333;
}

.search-results-list {
  padding: 20px 30px;
  overflow-y: auto;
  flex: 1;
}

.search-result-item {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
}

.search-result-item h4 a {
  color: #0066cc;
  text-decoration: none;
}

.search-result-item h4 a:hover {
  text-decoration: underline;
}

.search-result-url {
  font-size: 13px;
  color: #006621;
  margin: 5px 0;
}

.search-result-highlight {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 10px 0 0 0;
  max-height: 100px;
  overflow: hidden;
}

.search-result-highlight em {
  font-style: normal;
}

.search-loading,
.search-error,
.search-no-results {
  background-color: #f8f9fa;
  margin: 10% auto;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.search-error {
  color: #d32f2f;
}

.search-loading {
  font-size: 18px;
  color: #666;
}

.search-no-results h3 {
  margin-bottom: 15px;
  color: #333;
}

.search-no-results p {
  color: #666;
  margin: 10px 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .search-results-container {
    width: 95%;
    margin: 10px auto;
    max-height: 90vh;
  }

  .search-results-header,
  .search-results-list {
    padding: 15px 20px;
  }

  .search-results-header h3 {
    font-size: 20px;
  }

  .search-result-item h4 {
    font-size: 16px;
  }
}
