<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url(css/reset.css);
@import url(css/iphone.css);
@import url(css/properties.css);
/*
Theme Name: koetomo-help-thema
Author: ****
Author URI: ****
Version: 1.0
 */

* {
  font-size: 1em;
}

.main-body,
.single-page {
  display: flex;
  flex-flow: column;
  margin: 0 auto; /* PC対応 */
  width: 100vw;
  max-width: 1000px; /* PC対応 */
  min-height: 100vh;
  font-size: 1em;
  font-weight: 500;
  background-color: var(--help-page-background-white-color);
  color: var(--text-gray-color);
  box-sizing: border-box;
}

.main_contents {
  /* ヘッダーの高さにあわせてpaddingを調整 (header高さ+headerとmain_contentsのmargin) */
  /* padding: 72px 16px 16px 16px; */
  /* ヘッダーなしのパターン */
  width: 100vw;
  max-width: 1000px; /* PC対応 */
  padding: 16px 16px 48px 16px;
  flex: 1;
  margin: auto;
  box-sizing: border-box;
}

.main_contents-h1 {
  margin-top: 12px;
  text-align: center;
}

h1 {
  font-size: 1.5em;
  color: var(--text-gray-color);
}

h2 {
  font-size: 1.2em;
  color: var(--text-gray-color);
}

/* リンク */
a {
  color: #5c9ee7;
  text-decoration: none;
}

/* 背景 */
.background-gradient {
  background-image: var(--gradient-background-image);
  background-image: var(--moz-gradient-background-image);
  background-image: var(---webkit-gradient-background-image);
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}

/* 投稿 */
.single_content a {
  color: #5c9ee7;
}

.single_content a:active {
  color: var(--a-active-color);
  text-decoration: underline;
}

.single_content a:hover {
  color: var(--a-hover-color);
  text-decoration: underline;
}

.single-page p {
  color: var(--text-gray-color);
  line-height: 1.6;
  margin: 16px 0 16px 0;
}

.single_content ul {
  margin: 20px 0 20px 20px;
  padding-left: 20px;
  list-style: none;
}

.single_content ul li {
  position: relative;
}

.single_content ul li::after,
.single_content ul li::before {
  display: block;
  content: "";
  position: absolute;
}

.single_content ul li::after {
  top: 0.35em;
  left: -1.2em;
  width: 14px;
  height: 14px;
  background-color: #3498db;
  border-radius: 100%;
}

.single_content ul li::before {
  z-index: 2;
  top: 0.625em;
  left: -0.975em;
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.single_content h2 {
  position: relative;
  padding: 10px 0 2px 28px;
  border-bottom: 2px solid var(--single-h2-background-color);
}

.single_content h2::before {
  content: "";
  position: absolute;
  margin: auto;
  width: 12px;
  height: 12px;
  top: 0;
  left: 14px;
  background: var(--single-h2-background-color);
  transform: rotate(50deg);
}

.single_content h2::after {
  content: "";
  position: absolute;
  margin: auto;
  width: 8px;
  height: 8px;
  top: 18px;
  left: 6px;
  background: var(--single-h2-background-color);
  transform: rotate(20deg);
}

hr {
  border: 0;
  height: 1px;
  background: #333;
  background-image: -webkit-linear-gradient(left, #ccc, #333, #ccc);
  background-image: -moz-linear-gradient(left, #ccc, #333, #ccc);
  background-image: -ms-linear-gradient(left, #ccc, #333, #ccc);
  background-image: -o-linear-gradient(left, #ccc, #333, #ccc);
}

/* ヘッダーは非表示にする */
#header {
  display: none;
}

/* パンくずリスト */
.pan_list {
  list-style: none;
  padding: 0;
  max-width: 1100px;
  margin: 0 auto 12px;
}

.pan_list li {
  display: -webkit-inline-box;
  font-size: 12px;
}

/* パンくずリスト Top */
.breadcrumb-item-top-span {
  color: #5c9ee7;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #999;
  content: "&gt;";
}
@media (max-width: 1100px) {
  .pan_list {
    width: 95%;
  }
}
@media (max-width: 768px) {
  .pan_list li {
    font-size: 10px;
  }
}

/* Footer */
#footer {
  position: relative;
  bottom: 0;
  /* width: 100%; */
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#footer .copyright {
  text-align: center;
  padding: 10px;
  font-size: 0.7em;
  color: #fff;
  background-color: var(--footer-copyright-color);
}

/* Front Page */
.front-page-h1 {
  font-size: 30px;
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
  color: #fff;
}

.category-link-icon {
  margin-bottom: 8px;
  width: 64px;
  height: 64px;
}

li a {
  height: 100%;
  width: 100%;
}
.front-page-search-container {
  margin-top: 32px;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  margin: 30px auto 0px auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.flex-item-a {
  flex-grow: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.flex-item {
  margin: 20px auto 20px auto;
  padding: 12px;
  border: solid 1px;
  border-color: var(--koetomo-blue-color);
  border-radius: 10px 10px 10px 10px;
  background-color: #fff;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.flex-item h2 {
  padding-bottom: 4px;
}

.flex-item hr {
  position: relative;
  margin: 0 auto;
  width: 80%;
}

.flex-item h3 {
  padding-top: 4px;
  color: var(--text-gray-color);
  font-style: bold;
}

/* flexアイテムの長さ */
.search-php .flex-item {
  height: 250px;
  /* width: 350px; */
  max-width: 350px;
}

.front-page-php .flex-item {
  height: 200px;
  /* width: 300px; */
  max-width: 350px;
}

/* 検索フォーム */
#search-form {
  margin: 0 20px;
  height: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#sform {
  position: relative;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#sbox {
  height: 50px;
  padding: 0 10px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px;
  outline: 0;
  background: #fff; /* 検索窓の背景色 */
  border: none;
  width: -webkit-fill-available; /* 横幅埋め */
  color: #333;
  font-size: 1.2em;
}

#sbtn {
  height: 50px;
  width: 50px;
  position: absolute;
  left: calc(100% - 50px);
  top: 0;
  background: var(--koetomo-blue-color); /*検索ボタンの色*/
  color: #fff; /*検索アイコンの色*/
  border: none;
  border-radius: 0 5px 5px 0;
}

#sbtn .fa-search {
  font-size: 20px;
  position: absolute;
  top: 30%;
  left: 30%;
}

#sbtn:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background-image: url(./image/search-button-icon.png);
}

#sbtn:hover {
  color: #888;
}

/* 検索結果画面 */
.search-php .search-result-p {
  margin-top: 16px;
  text-align: center;
  font-size: x-large;
}

.search-php p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 制限したい行数が3の場合 */
  overflow: hidden;
  color: var(--text-gray-color);
  font-size: 0.8em;
  line-height: 1.6;
  margin-top: 8px;
}

.search-php .not-found-text-p {
  font-size: 1.2em;
  line-height: 1.6;
  text-align: center;
}

.search-php .home-link p {
  font-size: 1.2em;
  line-height: 1.6;
  text-align: center;
  margin-top: 80px;
  text-decoration: underline;
}

/* カテゴリーアーカイブ */
.post-excerpt-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 制限したい行数が3の場合 */
  overflow: hidden;
}

/* アコーディオンリスト */
.acd-list {
  max-width: 750px;
  height: auto;
  margin: 20px auto 20px auto;
  background-color: #fff;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.faq-page .acd-list {
  border: solid 1px;
  border-color: var(--material-dark-pink-color);
}

.instruction-page .acd-list {
  border: solid 1px;
  border-color: var(--material-dark-green-color);
}

.acd-check {
  display: none;
}

.acd-label {
  display: block;
  position: relative;
  padding: 10px;
  height: auto;
  font-weight: bold;
  color: #fff;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* 開くマーク */
.acd-label:after {
  box-sizing: border-box;
  content: "▼";
  color: #fff;
  display: block;
  height: auto;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  top: 0px;
}

.faq-page .acd-label:after {
  background-color: var(--material-dark-pink-color);
}

.instractions-page .acd-label:after {
  background-color: var(--material-dark-green-color);
}

.instractions-page .acd-label:after {
  background-color: var(--material-dark-green-color);
}

/* 閉じるマーク */
.acd-check:checked + .acd-label:after {
  content: "▲";
  color: #fff;
}

.acd-content {
  height: 0;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}

.archives-single-post {
  padding: 5px 10px;
}

.acd-check:checked + .acd-label + .acd-content {
  height: auto;
  opacity: 1;
  visibility: visible;
}

/* アコーディオンリスト開閉時のラベル下border 不要ならコメントアウトする */
.acd-check:checked + .acd-label {
  border-bottom: solid 1px;
}

.acd-article-title {
  color: var(--a-active-color);
  padding: 10px 5px 10px 5px;
}

.acd-article-title:hover {
  text-decoration: underline;
}

/* border color */
.instractions-border-color {
  border-color: var(--material-dark-green-color);
}

/* 投稿 */
.single-page h1 {
  line-height: 1.6;
  position: relative;
  padding: 0.6em;
  background: #e0edff;
}

.single-page .single_content {
  margin-top: 16px;
  line-height: 1.6;
}

.single-page .post-last-modified-time {
  text-align: end;
  margin-top: 12px;
  font-size: 0.8em;
}

/* KoeTomoからのお知らせ */
.news-main .archives-single-post-ul {
  margin-top: 30px;
}

.news-main h4 {
  text-align: end;
}

/* アコーディオンメニューの背景色設定 */
.faq-acd-label-background {
  background-color: #ffb2ae;
}

.instructions-acd-label-background {
  background-color: var(--material-green-color);
}

/* news リスト */

.news_list {
  margin: 20px 0;
  border-top: 1px dashed var(--material-dark-blue-color);
}

.news_list li {
  padding: 15px 5px;
  border-bottom: 1px dashed var(--material-blue-color);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.news_list_date {
  font-size: 16px;
  margin-right: 10px;
}

.news_category {
  display: inline-block;
  color: #fff;
  width: 120px;
  font-size: 14px;
  text-align: center;
  margin-right: 10px;
  padding: 2px 10px;
  background-color: var(--material-blue-color);
}

@media screen and (max-width: 559px) {
  .news-main {
    width: 100%;
    padding: 0 20px;
  }
  .news_title {
    display: block;
    margin-top: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
</pre></body></html>