@charset "utf-8";

/*================================

共通

================================*/
/*色*/
:root {
  /* タイトル1等の文字色 */
  --primary-color: #1eb9ee;

  /* サブ2の文字色 */
  --secondary-color: #6eb92b;

  /* サブ3の色 */
  --third-back-color: #8a7257;
}

.lower_fv {
  z-index: 1;
}

/*投稿時間*/
.entry-meta a {
  color: #db7e19;
}

/*header
--------------------------------*/
.lower_fv .lower_h2_wrap .lower_h2_ttl {
  color: #a98f73;
  font-size: clamp(34px, 20 / 524 * 100vw, 50px);
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  line-height: 1.226;
  margin-top: 40px;
}

/*TOP（タイトル一覧）
--------------------------------*/
.top-cont .entry-header {
  border: solid 1px #a98f73;
  border-radius: 3px;
  text-align: center;
}
.top-cont .entry-meta {
}
.top-cont .entry-meta span {
  display: block;
}
.top-cont .entry-meta a {
  display: block;
  padding: 10px 20px 0;
  line-height: 1;
}

.top-cont .entry-list-title {
  color: #333;
  font-size: clamp(20px, 20 / 824 * 100vw, 24px);
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  line-height: 1.1;
}

/*リンク*/
.top-cont .entry-list-title > a {
  /*flex*/
  display: flex;
  justify-content: center; /*space-between*/
  align-items: center;
  gap: 14px;
  /*other*/
  position: relative;
  padding: 5px 20px 10px;
  color: #333;
}
.top-cont .entry-list-title > a::after {
  content: "";
  background: url(../../../../common/img/lnk_arrow_mandarinorange.png) no-repeat;
  width: 25px;
  height: 25px;
  /*transform: translateX(0);*/
  transition: 0.5s;
}

.top-cont .entry-list-title > a:visited {
  color: #333;
}
.top-cont .entry-list-title > a:hover,
.top-cont .entry-list-title > a:active {
  color: #333;
  opacity: 0.7;
}

/*下層（各記事内）
--------------------------------*/
.low-cont .entry-header {
  margin-bottom: 50px;
}
.low-cont .entry-header .entry-meta {
}
.low-cont .entry-header .entry-title {
  position: relative;
  margin-bottom: 50px;
  color: var(--primary-color);
  font-family: "Zen Maru Gothic";
  font-size: clamp(32px, 20 / 524 * 100vw, 39px);
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}
.low-cont .entry-header .entry-title::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  background: url(/common/img/worries_icon_hover.png) center / cover no-repeat;
}
.low-cont .entry-header .entry-title::after {
  content: ""; /* 疑似要素にはcontentプロパティが必須 */
  display: block; /* 幅と高さを指定するためにdisplayをblockまたはinline-blockにする */
  width: 36px;
  height: 5px;
  margin: 10px auto 0;
  background-image: radial-gradient(circle, #6eb92b 2.5px, transparent 2.5px),
    radial-gradient(circle, #6eb92b 2.5px, transparent 2.5px),
    radial-gradient(circle, #6eb92b 2.5px, transparent 2.5px),
    radial-gradient(circle, #6eb92b 2.5px, transparent 2.5px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
  background-position: 0 0, 9px 0, 18px 0, 27px 0;
}
.low-cont .entry-header .entry-title a {
  color: var(--primary-color);
}

.low-cont .entry-content {
  margin-top: 0;
  margin-bottom: 50px;
}
.low-cont .entry-content a {
  position: relative;
  display: inline;
  transition: 0.5s;
}
.low-cont .entry-content a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out, opacity 0.5s ease-out;
}
.low-cont .entry-content a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
  opacity: 0.9;
}

/*太字*/
.low-cont .entry-content strong {
  font-weight: 700;
}

/*斜体*/
.low-cont .entry-content em {
  font-style: italic;
}

/*削除（打ち消し）*/
.low-cont .entry-content del {
  text-decoration: line-through;
}

/*訂正（下線）*/
.low-cont .entry-content ins {
  background: none;
  text-decoration: underline;
}

/*引用*/
.low-cont .entry-content blockquote {
  position: relative;
  margin-bottom: 20px;
  padding: 32px 3% 20px;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  border-radius: 4px;
  color: #555;
}
.low-cont .entry-content blockquote:before {
  content: "“";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  color: #cfcfcf;
  font-family: sans-serif;
  font-size: 90px;
  line-height: 1;
}
.low-cont .entry-content blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

.low-cont .entry-content blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

/*タイトル*/
/*ページ内で使用済
.low-cont .entry-content h1 {}
.low-cont .entry-content h2 {}
*/
.low-cont .entry-content h3 {
  position: relative;
  margin-bottom: 50px;
  padding: 12px 0;
  background-color: var(--primary-color);
  color: #fff;
  font-size: clamp(22px, 20 / 524 * 100vw, 30px);
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}
.low-cont .entry-content h4 {
  margin-bottom: 20px;
  padding-left: 6px;
  padding-bottom: 2px;
  border-bottom: solid 1px #6eb92b;
  color: #1eb9ee;
  font-size: clamp(20px, 20 / 524 * 100vw, 24px);
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  text-align: left;
}
.low-cont .entry-content h5 {
  margin-bottom: 5px;
  color: #6eb92b;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-weight: 600;
}
.low-cont .entry-content h6 {
  margin-bottom: 5px;
  color: #7c4c19;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-weight: 600;
}

/*テキスト*/
.low-cont .entry-content p:not(:last-child) {
  margin-bottom: 20px;
}

/*黒丸リスト*/
.low-cont .entry-content ul {
  margin-bottom: 20px;
}
.low-cont .entry-content ul > li {
  position: relative;
  padding-left: 1.5em;
  text-align: left;
}
.low-cont .entry-content ul > li::before {
  content: "";
  position: absolute;
  left: 0.5em;
  top: 12px;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: #6eb92b;
}
.low-cont .entry-content ul > li:not(:last-child) {
  margin-bottom: 10px;
}

/*数字リスト*/
.low-cont .entry-content ol {
  margin-bottom: 20px;
  padding-left: 1.5em;
  list-style: decimal;
}
.low-cont .entry-content ol > li {
  display: list-item;
  text-align: left;
}
.low-cont .entry-content ol > li:not(:last-child) {
  margin-bottom: 10px;
}

/*投稿記事下部のカテゴリ・タグなど*/
.low-cont .entry-footer {
  padding: 30px 3%;
  background-color: #fff;
  border-radius: 15px;
  border: solid 1px #a98f73;
}
.low-cont .entry-footer .cat-links,
.low-cont .entry-footer .tags-links {
  display: inline-block;
  margin-right: 20px;
}
.low-cont .entry-footer .cat-links > .ttl,
.low-cont .entry-footer .tags-links > .ttl {
  display: inline-block;
  margin-right: 20px;
  padding: 2px 20px;
  background: #a98f73;
  border-radius: 20px;
  color: #fff;
  font-size: 18px;
}
.low-cont .entry-footer .cat-links a {
}
.low-cont .entry-footer .comments-link {
  display: none;
}
.low-cont #comments {
  display: none;
}

/*記事ナビゲーション（下層のみ）
--------------------------------*/
.navigation.post-navigation {
}
.navigation.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.navigation.post-navigation .nav-links .nav-previous,
.navigation.post-navigation .nav-links .nav-next {
  flex: 1 0 45%;
}
.navigation.post-navigation .nav-links .nav-previous {
  order: 2;
  text-align: right;
}
.navigation.post-navigation .nav-links .nav-next {
  order: 1;
  text-align: left;
}

/*ナビサブタイトル*/
.navigation.post-navigation .nav-links .nav-subtitle {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  color: #db7e19;
}
.navigation.post-navigation .nav-links .nav-previous .nav-subtitle {
  padding-left: 8px;
  padding-right: 30px;
}
.navigation.post-navigation .nav-links .nav-next .nav-subtitle {
  padding-left: 30px;
  padding-right: 8px;
}

/*矢印*/
.navigation.post-navigation .nav-links .nav-subtitle::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-inline: auto;
  transition: 0.2s ease-out;
  background-color: #db7e19;
}
.navigation.post-navigation .nav-links .nav-subtitle::after {
  content: "";
  width: 24px;
  height: 1px;
  position: absolute;
  bottom: 8.5px;
  transition: 0.2s ease-out;
  background-color: #db7e19;
}
.navigation.post-navigation .nav-links .nav-previous .nav-subtitle::after {
  right: -3px;
  transform: rotate(45deg);
}
.navigation.post-navigation .nav-links .nav-next .nav-subtitle::after {
  left: -3px;
  transform: rotate(-45deg);
}

/*矢印hover*/
.navigation.post-navigation
  .nav-links
  .nav-previous
  .nav-subtitle:hover::before {
  left: 10px;
}
.navigation.post-navigation
  .nav-links
  .nav-previous
  .nav-subtitle:hover::after {
  right: -13px;
}
.navigation.post-navigation .nav-links .nav-next .nav-subtitle:hover::before {
  left: -10px;
}
.navigation.post-navigation .nav-links .nav-next .nav-subtitle:hover::after {
  left: -13px;
}

/*ナビタイトル*/
.navigation.post-navigation .nav-links .nav-title {
  display: block;
  margin-top: 10px;
}

/*ページネーション（TOPのみ）
--------------------------------*/
.navigation.pagination {
  margin-bottom: 20px;
}
.navigation.pagination .nav-links {
}
.navigation.pagination .nav-links ul.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 20px;
}
.navigation.pagination .nav-links ul.page-numbers > li .page-numbers {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  color: #db7e19;
}

/*矢印（次へ）*/
.navigation.pagination .nav-links ul.page-numbers > li .next.page-numbers {
  padding-left: 8px;
  padding-right: 30px;
}
.navigation.pagination
  .nav-links
  ul.page-numbers
  > li
  .next.page-numbers::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-inline: auto;
  transition: 0.2s ease-out;
  background-color: #db7e19;
}
.navigation.pagination
  .nav-links
  ul.page-numbers
  > li
  .next.page-numbers::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: 8.5px;
  width: 24px;
  height: 1px;
  transform: rotate(45deg);
  transition: 0.2s ease-out;
  background-color: #db7e19;
}

/*矢印（前へ）*/
.navigation.pagination .nav-links ul.page-numbers > li .prev.page-numbers {
  padding-left: 30px;
  padding-right: 8px;
}
.navigation.pagination
  .nav-links
  ul.page-numbers
  > li
  .prev.page-numbers::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-inline: auto;
  transition: 0.2s ease-out;
  background-color: #db7e19;
}
.navigation.pagination
  .nav-links
  ul.page-numbers
  > li
  .prev.page-numbers::after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: 8.5px;
  width: 24px;
  height: 1px;
  transform: rotate(-45deg);
  transition: 0.2s ease-out;
  background-color: #db7e19;
}

/*矢印（次へ）hover*/
.navigation.pagination
  .nav-links
  ul.page-numbers
  > li
  .next.page-numbers:hover::before {
  left: 10px;
}
.navigation.pagination
  .nav-links
  ul.page-numbers
  > li
  .next.page-numbers:hover::after {
  right: -13px;
}

/*矢印（前へ）hover*/
.navigation.pagination
  .nav-links
  ul.page-numbers
  > li
  .prev.page-numbers:hover::before {
  left: -10px;
}
.navigation.pagination
  .nav-links
  ul.page-numbers
  > li
  .prev.page-numbers:hover::after {
  left: -13px;
}

/*ウィジェット
--------------------------------*/
.widget:last-of-type {
  margin-bottom: 0;
}

/*検索ボックス*/
.widget.widget_search {
  margin-top: 20px;
}
.widget.widget_search .search-form {
  /*flex*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
}
.widget.widget_search .search-form label {
  /*flex*/
  flex-basis: 60%;
}
.widget.widget_search .search-form label .search-field {
  width: 100%;
  min-height: 32px;
  font-size: 16px;
}
.widget.widget_search .search-form .search-submit {
  /*flex*/
  flex-basis: 30%;
  /*other*/
  cursor: pointer;
  position: relative;
  background: #1eb9ee;
  border: none;
  border-radius: 30px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  transition: 0.5s opacity;
}
.widget.widget_search .search-form .search-submit:hover {
  opacity: 0.8;
}

/*タイトル*/
.widget .widget-title {
  padding: 15px 0;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-family: "Zen Maru Gothic";
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

/*ボックス（角丸水色枠白背景）*/
.widget.widget_recent_entries,
.widget.widget_categories,
.widget.widget_tag_cloud {
  background-color: #fff;
  border-radius: 15px;
  border: solid 1px #a98f73;
  overflow: hidden;
}

/*最近の投稿*/
.widget.widget_recent_entries .widget-title + ul {
  padding: 20px 3%;
}
.widget.widget_recent_entries .widget-title + ul > li:not(:last-child) {
  margin-bottom: 10px;
}

/*カテゴリ*/
.widget.widget_categories .widget-title + ul {
  /*flex*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 20px;
  /*other*/
  padding: 20px 3%;
}
.widget.widget_categories .widget-title + ul > li {
}

/*タグ*/
.widget.widget_tag_cloud .tagcloud {
  /*flex*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 20px;
  /*other*/
  padding: 30px 20px 20px;
}
.widget.widget_tag_cloud .tagcloud > a.tag-cloud-link {
  display: inline-block;
  font-size: 1.6rem !important;
}

/*================================

0〜1440px

================================*/
@media screen and (max-width: 1440px) {
}

/*================================

0〜1200px

================================*/
@media screen and (max-width: 1200px) {
}

/*================================

0〜1023px（SP縦〜TABLET縦）

================================*/
@media screen and (max-width: 1023px) {
}

/*================================

0〜700px（SP縦〜SP横）

================================*/
@media screen and (max-width: 700px) {
  /*下層（各記事内）
  ------------------------------*/
  /*投稿記事下部のカテゴリ・タグなど*/
  .low-cont .entry-footer .cat-links,
  .low-cont .entry-footer .tags-links {
    display: block;
    margin-right: 0;
    margin-bottom: 20px;
  }

  /*ウィジェット
  ------------------------------*/
  .widget.widget_search .search-form label {
    /*flex*/
    flex-basis: 100%;
  }
  .widget.widget_search .search-form .search-submit {
    /*flex*/
    flex-basis: 100%;
  }
}

/*================================

0〜480px（SP縦）

================================*/
@media screen and (max-width: 480px) {
  .low-cont .entry-content h4 {
    padding: 6px 0 8px;
    margin-bottom: 20px;
    font-size: 20px;
  }
}

/*================================

0〜374px（SP縦）

================================*/
@media screen and (max-width: 374px) {
}
