@charset "UTF-8";
/* リセット */
:root {
  --color-theme: #45b035;
  --gray-cccccc: #ccc;
  --gray-0: #fff;
  --gray: #e1e1e1;
}

.l-container *,
.l-container *::before,
.l-container *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.l-container img {
  height: auto;
  max-width: 100%;
}

/* レイアウト */
.l-content-body {
  background: #fff;
  padding: 30px 0 50px;
}
.c-overflowv-isible{
  overflow: visible !important;
}
.l-main-body {
  width: 1170px;
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}
.l-main-body__main {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  margin-bottom: 50px;
}
.l-main-body__sub {
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* 見出し */
.c-heading-category {
  font-size: 22px;
  color: var(--color-theme);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.5em;
  padding-bottom: 0.35em;
  border-bottom: 1px solid;
}

.p-heading-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.c-layout {
  display: flex;
  flex-wrap: wrap;
  margin: -7.5px;
}
.c-layout__col {
  flex: 0 1 auto;
  width: 100%;
  padding: 7.5px;
  display: flex;
}
.c-layout--3col .c-layout__col {
  width: 50%;
}
.c-layout--4col .c-layout__col {
  width: 50%;
}

/* トップページ */
.p-front-feed {
  padding: 40px 0 50px 0;
  border-top: 2px solid var(--gray);
}
.p-front-feed__heading {
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-theme);
  margin-bottom: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-front-feed__heading::before, .p-front-feed__heading::after {
  content: "";
  display: block;
  width: 5rem;
  height: 2px;
  background: var(--color-theme);
  max-width: 100%;
}
.p-front-feed__heading-label {
  padding: 0 15px;
}
.p-front-feed__inner {
  width: 1170px;
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}

/* サイドバー */
.c-sidebar {
  width: 560px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 1px 4px 2px rgba(0, 0, 0, 0.1);
}
.c-sidebar--bnr-small{
  margin-bottom: 15px;
}
.c-sidebar--bgnone{
  background: none;
  box-shadow: unset;
  border-radius: 0;
}
.c-sidebar a {
  color: currentColor;
}
.c-side-cta__btn-link img{
  opacity: 1;
  transform: scale(1, 1);
  transition: transform .3s;
}
.c-side-cta__btn-link:hover img{
  opacity: 0.85;
  transform: scale(0.95, 0.95);
  transition: transform .3s;
}
.c-sidebar__heading {
  background: var(--color-theme);
  color: #fff;
  padding: 20px 10px 15px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
}
.c-sidebar__menu {
  width: 100%;
  font-size: 16px;
  list-style: none;
}
.c-sidebar__menu a {
  display: block;
  padding: 15px 15px;
  transition: color 0.3s ease;
}
.c-sidebar__menu > li + li {
  border-top: 1px solid #eee;
}
.c-sidebar__menu > li > a {
  position: relative;
  padding-right: 30px;
}
.c-sidebar__menu > li > a::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  transition: right 0.3s ease;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20class%3D%22icon%20icon-tabler%20icon-tabler-chevron-right%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20stroke-width%3D%222%22%20stroke%3D%22%2345b035%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%20%3Cpath%20stroke%3D%22none%22%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%20%3Cpolyline%20points%3D%229%206%2015%2012%209%2018%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E") no-repeat center center/100% 100%;
}
.c-sidebar__menu > li ul {
  padding-bottom: 10px;
}
.c-sidebar__menu > li li {
  font-size: 0.9em;
}
.c-sidebar__menu > li li a {
  padding: 5px 15px;
}

/* ヒーロー */
.c-hero {
  display: flex;
  height: 100px;
  padding: 20px 20px 50px 20px;
  align-items: center;
  justify-content: center;
}
.c-hero__heading {
  font-weight: 700;
  color: #fff;
  font-size: 30px;
}

/* カード */
.c-feed-card {
  line-height: 1.75;
  font-size: 14px;
}
.c-feed-card a {
  color: currentColor;
  transition: transform 0.3s ease-in-out;
}
.c-feed-card__time {
  display: block;
  color: #aaa;
  font-weight: 700;
  padding: 3px 0 0 0;
  font-size: 12px;
}
.c-feed-card__inner {
  width: 270px;
  max-width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px 2px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: auto;
}
.c-feed-card__thumb {
  width: 100%;
  position: relative;
  z-index: 0;
  padding-top: 59.2592592593%;
}
.c-feed-card__thumb-img {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.c-feed-card__heading {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 5px;
  margin-bottom: 10px;
  transition: color 0.3s ease-in-out;
}
.c-feed-card__tags {
  margin-top: 10px;
}
.c-feed-card__main {
  padding: 10px 10px 20px 10px;
}
.c-feed-card__textarea {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.c-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-tags__item {
  padding: 2.5px 5px 2.5px 0;
}

.c-tag {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: currentColor;
}
.c-tag svg {
  flex: 0 0 auto;
  color: var(--color-theme);
  fill: currentColor;
  margin-right: 2px;
}

.navigation.pagination {
  margin-top: 70px;
  margin-bottom: 50px;
  max-width: calc(100vw - 40px);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.screen-reader-text {
  word-wrap: normal !important;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.nav-links {
  overflow: hidden;
  line-height: 1.4;
  font-weight: 400;
}

ul.page-numbers {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 0;
  margin: -5px -8px;
  font-weight: 700;
}
ul.page-numbers li {
  flex: 0 1 auto;
  padding: 5px 8px;
}

.page-numbers[href] {
  transition: background 0.35s ease-in-out, transform 0.35s ease-in-out, color 0.35s ease-in-out;
}
.page-numbers[href], .page-numbers[aria-current=page] {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  border: 1px solid #f6f7f9;
  color: #333333;
  background: #f6f7f9;
  font-size: 18px;
  line-height: 1;
}
.page-numbers[href]:not(.prev):not(.next), .page-numbers[aria-current=page]:not(.prev):not(.next) {
  width: 5rem;
  border-radius: 50%;
}
.page-numbers[aria-current=page] {
  border: 1px solid var(--color-theme);
  background: var(--color-theme);
  color: #fff;
}
.page-numbers .prev,
.page-numbers .next {
  width: 9rem;
  border-radius: 5rem;
  border: 1px solid var(--color-theme);
  background: var(--color-theme);
  color: #fff;
  border-width: 2px;
  font-size: 16px;
  font-weight: 700;
  padding-top: 2px;
}
.c-post {
  font-size: 16px;
  line-height: 1.75;
  width: 770px;
  max-width: 100%;
  margin: 0 auto;
}
.c-post__editor {
  padding-top: 15px;
}
.c-post__tags {
  margin-bottom: 20px;
  margin-top: 10px;
  justify-content: flex-end;
}

.c-post-cta__top-bnr{
  margin: 0 auto 40px;
  width: max-content;
  max-width: 100%;
}
.c-post-cta {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  flex-flow: row nowrap;
  margin-top: 50px;
}
.c-post-cta__btn {
  width: max-content;
  max-width: 50%;
  display: block;
  padding:0;
  text-align: center;
}
.c-post-cta__btn-link img{
  opacity: 1;
  transform: scale(1, 1);
  transition: transform .3s;
}
.c-post-cta__btn-link:hover img{
  opacity: 0.85;
  transform: scale(1.05, 1.05);
  transition: transform .3s;
}
.c-post-time {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 5px;
}

.c-editor {
  letter-spacing: normal;
}
.c-editor .wp-die-message,
.c-editor p {
  font-size: 1em;
}

.c-editor #ez-toc-container {
  background: var(--gray-0);
  border: 1px solid var(--gray);
  border-radius: 0;
  display: block;
  margin-bottom: 40px;
  margin-top: 30px;
  padding: 0;
}

.c-editor #ez-toc-container .ez-toc-title {
  align-items: flex-end;
  display: flex;
  font-size: 20px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  padding: 13px 0;
}

.c-editor #ez-toc-container nav {
  margin-bottom: 0;
  padding: 0 15px 20px;
}

.c-editor #ez-toc-container .ez-toc-list {
  list-style-type: none;
  padding-left: 0;
}

.c-editor #ez-toc-container .ez-toc-list.ez-toc-list-level-1 > .ez-toc-heading-level-2 {
  counter-increment: item 1;
}

.c-editor #ez-toc-container .ez-toc-list li:not(:last-of-type) {
  margin-bottom: 5px;
}

.c-editor #ez-toc-container .ez-toc-list li ul {
  margin-top: 10px;
  margin-bottom: 20px;
}

.c-editor #ez-toc-container .ez-toc-list li ul:not([class=ez-toc-list-level-1]) {
  list-style-type: none;
  margin-left: 0;
  padding-left: 30px;
}

.c-editor #ez-toc-container .ez-toc-list li ul:not([class=ez-toc-list-level-1]) li a {
  align-items: center;
}

.c-editor #ez-toc-container .ez-toc-list li ul:not([class=ez-toc-list-level-1]) li a:before {
  background: none;
  border-radius: 0;
  border-right: 2px solid var(--color-theme);
  border-top: 2px solid var(--color-theme);
  content: "";
  height: 9px;
  margin-right: 12px;
  margin-top: 0;
  min-width: 0;
  padding: 0;
  transform: rotate(45deg);
  width: 9px;
}

.c-editor #ez-toc-container .ez-toc-list li ul li a {
  font-weight: 400;
}

.c-editor #ez-toc-container .ez-toc-list li ul li a:before {
  padding: 5px 10px;
}

.c-editor #ez-toc-container .ez-toc-link {
  align-items: flex-start;
  color: var(--gray-text);
  display: flex;
  font-size: 16px;
  font-weight: 700;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.c-editor #ez-toc-container .ez-toc-link:focus {
  color: var(--color-theme);
}

.c-editor #ez-toc-container .ez-toc-link:visited {
  color: currentColor;
}

.c-editor #ez-toc-container .ez-toc-link:before {
  display: flex !important;
}

.c-editor #ez-toc-container .ez-toc-link:before {
  align-items: center;
  background: var(--color-theme);
  border-radius: 50%;
  color: var(--gray-0);
  content: counters(item, ".");
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin-right: 5px;
  margin-top: 3px;
  min-width: 24px;
  padding: 5px 0;
}

.c-editor .has-background {
  margin-top: 60px;
  padding: 30px 40px;
}

.c-editor h1,
.c-editor h2,
.c-editor h3,
.c-editor h4,
.c-editor h5,
.c-editor h6 {
  clear: both;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.25em;
  margin-top: 45px;
}

.c-editor h1 + *,
.c-editor h1:first-child,
.c-editor h2 + *,
.c-editor h2:first-child,
.c-editor h3 + *,
.c-editor h3:first-child,
.c-editor h4 + *,
.c-editor h4:first-child,
.c-editor h5 + *,
.c-editor h5:first-child,
.c-editor h6 + *,
.c-editor h6:first-child {
  margin-top: 0;
}

.c-editor h1,
.c-editor h2 {
  background: var(--color-theme);
  color: var(--gray-0);
  font-size: 20px;
  margin-top: 45px;
  padding: 20px 15px;
  border-radius: 5px;
}

.c-editor h1 {
  font-size: 24px;
}

.c-editor h3 {
  border-bottom: 2px solid var(--gray-cccccc);
  font-size: 20px;
  line-height: 1.6;
  margin-top: 45px;
  padding: 10px 15px;
  position: relative;
}

.c-editor h3:before {
  background: var(--color-theme);
  bottom: -3px;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  width: 30.2325581395%;
}

.c-editor h4 {
  border-left: 3px solid var(--color-theme);
  font-size: 18px;
  line-height: 1.6;
  margin-top: 45px;
  padding: 4px 0 4px 15px;
}

.c-editor h5 {
  font-size: 18px;
}

.c-editor h5,
.c-editor h6 {
  color: #db2521;
  font-weight: 700;
}

.c-editor h6 {
  font-size: 16px;
}

.c-editor h4,
.c-editor h5,
.c-editor h6 {
  margin-bottom: 0.5em;
}

.c-editor p {
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.c-editor p:first-of-type {
  margin-bottom: 30px;
  margin-top: 30px;
}

.c-editor p:first-child {
  margin-top: 0;
}

.c-editor p:last-child {
  margin-bottom: 0;
}

.c-editor .wp-block-column p {
  padding-left: 0;
  padding-right: 0;
}

.c-editor .wp-block-image {
  margin-bottom: 30px;
}

.c-editor .wp-block-image:first-child {
  margin-top: 0;
}

.c-editor .wp-block-image:last-child {
  margin-bottom: 0;
}

.c-editor b,
.c-editor strong {
  font-weight: 700;
}

.c-editor cite,
.c-editor dfn,
.c-editor em,
.c-editor i {
  font-style: italic;
}

.c-editor blockquote {
  border-left: 4px solid #1a1a1a;
  color: #686868;
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 30px;
  overflow: hidden;
  padding: 0 0 0 24px;
}

.c-editor blockquote:not(.alignleft):not(.alignright) {
  margin-left: -18px;
}

.c-editor blockquote blockquote:not(.alignleft):not(.alignright) {
  margin-left: 0;
}

.c-editor blockquote:after,
.c-editor blockquote:before {
  content: "";
  display: table;
}

.c-editor blockquote:after {
  clear: both;
}

.c-editor blockquote > :last-child {
  margin-bottom: 0;
}

.c-editor blockquote cite,
.c-editor blockquote small {
  color: #1a1a1a;
  font-size: 0.8888888889em;
  line-height: 1.75;
}

.c-editor blockquote cite,
.c-editor blockquote em,
.c-editor blockquote i {
  font-style: normal;
}

.c-editor blockquote b,
.c-editor blockquote strong {
  font-weight: 400;
}

.c-editor blockquote.alignleft,
.c-editor blockquote.alignright {
  border: solid #1a1a1a;
  border-width: 4px 0 0;
  padding: 1em 0 0;
  width: calc(50% - 14px);
}

.c-editor address {
  font-style: italic;
  margin: 0 0 28px;
}

.c-editor code,
.c-editor kbd,
.c-editor pre,
.c-editor samp,
.c-editor tt,
.c-editor var {
  font-family: Inconsolata, monospace;
}

.c-editor pre {
  word-wrap: break-word;
  border: 1px solid #d1d1d1;
  font-size: 16px;
  line-height: 1.3125;
  margin: 0 0 1.75em;
  max-width: 100%;
  overflow: auto;
  padding: 0.875em;
  white-space: pre;
  white-space: pre-wrap;
}

.c-editor code {
  background: #d1d1d1;
  padding: 2px 4px;
}

.c-editor abbr[title] {
  border-bottom: 1px dotted #d1d1d1;
  cursor: help;
}

.c-editor ins,
.c-editor mark {
  background: #007acc;
  color: #fff;
  padding: 2px 4px;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.c-editor sub,
.c-editor sup {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: initial;
}

.c-editor sub {
  bottom: -3px;
}

.c-editor sup {
  top: -6px;
}

.c-editor small {
  font-size: 80%;
}

.c-editor big {
  font-size: 125%;
}

.c-editor hr {
  background: #d1d1d1;
  border: 0;
  height: 1px;
  margin-bottom: 28px;
}

.c-editor ol,
.c-editor ul {
  margin-bottom: 20px;
  padding: 0;
}

.c-editor ol:first-child,
.c-editor ul:first-child {
  margin-top: 0;
}

.c-editor ol:last-child,
.c-editor ul:last-child {
  margin-bottom: 0;
}

.c-editor ul:not([class]) {
  list-style-type: disc;
  padding-left: 30px;
}

.c-editor ul:not([class]) li {
  list-style-type: inherit;
}

.c-editor ol:not([class]) {
  list-style-type: decimal;
  padding-left: 30px;
}

.c-editor ol:not([class]) li {
  list-style-type: inherit;
}

.c-editor li > ol,
.c-editor li > ul {
  margin-bottom: 0;
}

.c-editor dl {
  margin: 0 0 28px;
}

.c-editor dt {
  font-weight: 700;
}

.c-editor dd {
  margin: 0 0 28px;
}

.c-editor .mce-item-table,
.c-editor .mce-item-table td,
.c-editor .mce-item-table th,
.c-editor table,
.c-editor td,
.c-editor th {
  border: 1px solid #d1d1d1;
}

.c-editor table a {
  color: #007acc;
}

.c-editor .mce-item-table,
.c-editor table {
  border-collapse: initial;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
  margin: 0 0 28px;
  width: 100%;
}

.c-editor .mce-item-table th,
.c-editor table caption,
.c-editor table th {
  font-weight: 700;
  text-align: left;
}

.c-editor .mce-item-table td,
.c-editor .mce-item-table th,
.c-editor table caption,
.c-editor table td,
.c-editor table th {
  border-width: 0 1px 1px 0;
  border-color: #d1d1d1;
  font-size: 16px;
  padding: 0.4375em;
  vertical-align: initial;
}

.c-editor img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

.c-editor a img {
  display: block;
}

.c-editor figure {
  margin: 25px 0;
}

.c-editor del {
  opacity: 0.8;
}

.c-editor a {
  color: #0085c7;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.c-editor a:focus {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.c-editor fieldset {
  border: 1px solid #d1d1d1;
  margin: 0 0 28px;
  padding: 14px;
}

.c-editor .alignleft {
  float: left;
  margin: 0.6px 28px 28px 0;
}

.c-editor .alignright {
  float: right;
  margin: 0.6px 0 28px 28px;
}

.c-editor .aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 28px;
}

.c-editor .wp-caption {
  background: rgba(0, 0, 0, 0);
  border: none;
  margin-bottom: 28px;
  max-width: 100%;
  padding: 0;
  text-align: inherit;
  text-align: center;
}

.c-editor .wp-block-image figcaption,
.c-editor .wp-caption-dd,
.c-editor .wp-caption-text {
  color: #686868;
  font-size: 14px;
  font-style: italic;
  line-height: 1.6153846154;
  padding-top: 0.5384615385em;
}

.c-editor .wp-block-image figcaption {
  text-align: center;
}

.c-editor .wp-block-image + figure.wp-block-image {
  margin-top: 2em;
}

.c-editor .wp-block-embed {
  margin-bottom: 1em;
}

.c-editor .wp-block-embed__wrapper {
  height: 0;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

.c-editor .wp-block-embed__wrapper iframe {
  height: 100% !important;
  width: 100% !important;
}

.c-editor .wp-block-embed__wrapper iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.c-editor .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper {
  padding-top: 75%;
}

.c-editor .mce-content-body .wpview-wrap {
  margin-bottom: 28px;
}

.c-editor .gallery {
  margin: 0 -1.1666667%;
  padding: 0;
}

.c-editor .gallery .gallery-item {
  display: inline-block;
  max-width: 33.33%;
  padding: 0 1.1400652% 2.2801304%;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.c-editor .gallery-columns-1 .gallery-item {
  max-width: 100%;
}

.c-editor .gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.c-editor .gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.c-editor .gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.c-editor .gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.c-editor .gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.c-editor .gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.c-editor .gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.c-editor .gallery .gallery-caption {
  font-size: 1.3px;
  margin: 0;
}

.c-editor .gallery-columns-6 .gallery-caption,
.c-editor .gallery-columns-7 .gallery-caption,
.c-editor .gallery-columns-8 .gallery-caption,
.c-editor .gallery-columns-9 .gallery-caption {
  display: none;
}

.c-editor .wp-audio-shortcode a,
.c-editor .wp-playlist a {
  box-shadow: none;
}

.c-editor .mce-content-body .wp-audio-playlist {
  margin: 0;
  padding-bottom: 0;
}

.c-editor .mce-content-body .wp-playlist-tracks {
  margin-top: 0;
}

.c-editor .mce-content-body .wp-playlist-item {
  padding: 10px 0;
}

.c-editor .mce-content-body .wp-playlist-item-length {
  top: 10px;
}

.c-editor .rtl blockquote {
  border: solid #1a1a1a;
  border-width: 0 4px 0 0;
}

.c-editor .rtl blockquote.alignleft,
.c-editor .rtl blockquote.alignright {
  border: solid #1a1a1a;
  border-width: 4px 0 0;
}

.c-editor .rtl blockquote:not(.alignleft):not(.alignright) {
  margin-right: -28px;
  padding: 0 24px 0 0;
}

.c-editor .rtl blockquote blockquote:not(.alignleft):not(.alignright) {
  margin-left: auto;
  margin-right: 0;
}

.c-editor .rtl blockquote > ul,
.c-editor .rtl li > ul {
  margin-left: auto;
  margin-right: 20px;
}

.c-editor .rtl blockquote > ol,
.c-editor .rtl li > ol {
  margin-left: auto;
  margin-right: 24px;
}

.c-editor .rtl .mce-item-table th,
.c-editor .rtl table caption,
.c-editor .rtl table th {
  text-align: right;
}



.p-top-document-request{
  margin-top: 82px;
}
.p-top-document-request-gray{
  background: #f3f3f3;
  padding-bottom: 80px;
  margin-top: -10px;
}
.p-top-document-request__btn,
.p-top-btn-box-document-request__btn{
  max-width:440px;
  padding:0 20px;
  margin:0 auto;
}
.p-top-document-request__btn-title,
.p-top-btn-box-document-request__btn-title{

  font-size: 23px;
  font-size:min(5vw,23px);
  letter-spacing: 0;
  line-height: 1;
  text-align:center;
  margin-bottom:15px;
  font-weight: 700;
  width: 100%;
}
.p-top-document-request__btn-red{
  width: 100%;
  height: 3.334em;
  font-size:29px;
  font-size:min(5.3vw,29px);
  font-weight: 700;
  color:#fff;
  border-radius: 10px;
  background-color: #f00000;
  box-shadow: 8px 8px 0 #a80000;
  display: flex;
  flex-wrap: wrap;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  gap:18px;
  transition: 0.3s;
}
.p-top-btn-box-document-request__btn-red{
  max-width: 100%;
  width: 350px;
  height: 7rem;
  font-size:24px;
  font-weight: 700;
  color:#fff;
  border-radius: 10px;
  background-color: #f00000;
  box-shadow: 8px 8px 0 #a80000;
  display: flex;
  flex-wrap: wrap;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  gap:5px;
  transition: 0.3s;
}
.p-top-document-request__btn-red:hover,
.p-top-btn-box-document-request__btn-red:hover{

    transform: translate(7px, 7px);
    box-shadow: unset;
}

.p-pagebottom-cta{
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto 30px;

}

.p-pagebottom-cta > div{
  width: 400px;
  max-width: 100%;
}


.p-pagebottom-cta__btn{
  max-width: 100%;
  width: 400px;
  height: 10rem;
  font-size:28px;
  font-weight: 700;
  color:#fff;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  gap:16px;
  transition: 0.3s;
}
.p-pagebottom-cta__btn:hover{
  transform: translate(7px, 7px);
  box-shadow: unset;
}
.p-pagebottom-cta__btn--request{
  background-color: #f00000;
  box-shadow: 8px 8px 0 #a80000;
}
.p-pagebottom-cta__btn--contact{
  background-color: #a3cc2c;
  box-shadow: 8px 8px 0 #415212;
}

.c-sidebar__ranking .wpp-list {
  border: solid #ccc 1px;
  border-top: none;
  padding: 10px 0px 15px;
  border-radius: 0 0 10px 10px;
}
.c-sidebar__ranking .wpp-list li {
  padding: 20px 15px 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  border-bottom: solid #ccc 1px;
  align-items: center;
  gap: 15px;
  position: relative;
}
.c-sidebar__ranking .wpp-list li:last-child{
  border-bottom:none;
}
.c-sidebar__ranking .wpp-list li figure.side_ranking_thumb{
  min-width: 120px;
  margin:0;
}
.c-sidebar__ranking .wpp-list li span.side_ranking_title{
  font-size: 15px;
  font-weight: 500;
  width: auto;
}


/*ランキングカウンター*/
.c-sidebar__ranking02 ul.wpp-list li:before {
    content: counter(wpp-count);
    font-size: 16px;
    font-weight: bold;
    width: 52px;
    display: flex;
    height: 40px;
    text-align: center;
    color: #fff;
    padding: 18px 0 0;
    z-index: 1;
    background-image: url(./img/common/icon/crown-solid_normal.png);
    flex-direction: row;
    justify-content: center;
    background-size: cover;
    align-items: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 48px;
}
/*カウント数*/
.c-sidebar__ranking02 ul.wpp-list li {
    counter-increment: wpp-count;
}
/*ランキング1〜3の色変更*/
.c-sidebar__ranking02 ul.wpp-list li:nth-child(1):before{
    background-image: url(./img/common/icon/crown-solid_1.png);
}
.c-sidebar__ranking02  ul.wpp-list li:nth-child(2):before{
    background-image: url(./img/common/icon/crown-solid_2.png);
}
.c-sidebar__ranking02 ul.wpp-list li:nth-child(3):before{
    background-image: url(./img/common/icon/crown-solid_3.png);
}
@media (min-width: 768px){
  .c-heading-category {
    font-size: 30px;
  }
  .c-layout {
    margin: -15px;
  }
  .c-layout--3col .c-layout__col {
    padding: 15px;
    width: 33.33%;
  }
  .c-layout--4col .c-layout__col {
    padding: 15px;
    width: 50%;
  }
  .p-front-feed {
    padding: 60px 0 70px 0;
  }
  .p-front-feed__heading {
    font-size: 36px;
  }
  .c-hero {
    height: 140px;
  }
  .c-hero__heading {
    font-size: 5rem;
  }
  .c-feed-card__heading {
    font-size: 18px;
  }
  .c-feed-card__main {
    padding: 10px 20px 20px 20px;
  }
  .c-post {
    padding-left: 20px;
    padding-right: 20px;
  }
  .c-post__pc--hidden{
    display: none !important;
  }
  .c-post__sp--hidden{
    display: block !important;
  }
  .c-editor #ez-toc-container .ez-toc-title {
    font-size: 24px;
    padding: 27px 0;
  }
  .c-editor #ez-toc-container nav {
    padding: 0 30px 45px;
  }
  .c-editor h1,
  .c-editor h2 {
    font-size: 24px;
    margin-top: 60px;
    padding: 22px 20px;
  }
  .c-editor h3 {
    font-size: 24px;
    padding: 15px 20px;
  }
}
@media (min-width: 1024px){
  .l-main-body {
    display: flex;
    padding-top: 30px;
    padding-bottom: 100px;
  }
  .l-main-body__main {
    width: auto;
    flex: 1 1 auto;
    padding-right: 30px;
    margin-bottom: 0;
    padding-bottom: 5px;
    overflow: hidden;
  }
  .l-main-body__sub {
    width: 370px;
    flex: 0 0 auto;
  }
  .p-heading-title {
    font-size: 32px;
  }
  .c-layout--3col {
    margin: -15px;
  }
  .c-layout--3col .c-layout__col {
    width: 33.33%;
    padding: 15px;
  }
  .c-layout--4col .c-layout__col {
    padding: 15px;
    width: 25%;
  }
  .c-sidebar--position-sticky{
    position: sticky;
    top: 150px;
  }
  .c-post {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1024px){
  .c-side-cta__btn-link{
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 768px){
  .c-sidebar{
    margin-bottom: 50px;
  }
  .c-sidebar--bnr-small{
    margin-bottom: 0px;
    margin-top: 50px;
  }
  .c-sidebar--bnr-small:last-child{
    margin-top: 30px;
  }
  ul.page-numbers {
    padding-bottom: 70px;
    position: relative;
  }
  .page-numbers .prev,
  .page-numbers .next {
    position: absolute;
    bottom: 5px;
  }
  .page-numbers .prev {
    left: 8px;
  }
  .page-numbers .next {
    right: 8px;
  }
  .c-post-cta__top-bnr{
    margin-bottom: 0px;
  }
  .c-post-cta {
    margin-top: 50px;
    flex-flow:column ;
    align-items: center;
  }
  .c-post-cta__btn {
    max-width: 100%;
    margin-top: 30px;
  }
  .c-post-cta__btn:first-child{
    margin-top: 0;
  }
  .c-post__sp--hidden{
    display: none !important;
  }
  .c-post__pc--hidden{
    display: block !important;
  }
  .p-top-document-request-gray{
    margin-top: 52px;
  }
  .p-top-document-request-gray{
    padding:30px 0 40px;
    margin-top: 0px;
  }
  .p-pagebottom-cta{
    align-items: center;
    flex-direction: column;
    width: 90%;
    margin:60px auto;
  }
  .c-k-first-view__box{
    padding:10px 0;
  }
}
@media (max-width: 560px){
  .p-k-top-first-view{
    padding-top:2.75vw ;
  }
}
@media (max-width: 420px){
  .p-pagebottom-cta__btn{
    gap:0;
    justify-content: space-evenly;
  }
}
@media (any-hover: hover){
  .c-sidebar__menu a[href]:hover {
    color: var(--color-theme);
  }
  .c-sidebar__menu a[href]:hover::before {
    right: 10px;
  }
  .c-feed-card__inner[href]:hover {
    transform: translate3d(0, -5px, 0);
  }
  .c-feed-card__inner[href]:hover .c-feed-card__heading {
    color: var(--color-theme);
  }
  .page-numbers[href]:hover {
    background: var(--color-theme);
    color: #fff;
  }
  .page-numbers[href]:hover.prev, .page-numbers[href]:hover.next {
    color: var(--color-theme);
    background: #fff;
  }
  .c-editor #ez-toc-container .ez-toc-link:hover {
    color: var(--color-theme);
    -webkit-text-decoration: none;
    text-decoration: none;
  }
  .c-editor a:hover {
    -webkit-text-decoration: none;
    text-decoration: none;
  }
}
