@charset "UTF-8";
/* others */
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.section__wrapper {
  margin: 64px 0;
}
@media screen and (max-width: 768px) {
  .section__wrapper {
    margin: 48px 0;
  }
}
.section__wrapper.band {
  padding: 64px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .section__wrapper.band {
    padding: 48px 0;
  }
}

.section__inner {
  max-width: 1216px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1216px) {
  .section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.section__inner + .section__inner {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .section__inner + .section__inner {
    margin-top: 30px;
  }
}

.txt p {
  line-height: 1.75;
}

.txt > *:not(:last-child) {
  margin-bottom: 1em;
}

.txt ul li + li {
  margin-top: 0.5em;
}

@media screen and (min-width: 1216px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
.section__wrapper.section_latest {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .section__wrapper.section_latest {
    margin-top: 64px;
  }
}

.post_list {
  position: relative;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.post_list:after {
  width: calc((100% - 56px) / 3);
  content: "";
}
.post_item {
  width: calc((100% - 56px) / 3);
}
.post_item article {
  position: relative;
  width: 100%;
  height: 100%;
  border: 5px solid;
  border-color: #777;
  box-sizing: border-box;
  border-radius: 48px;
  background: #fff;
  filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
}
.post_item article a {
  padding: 2.25em 1.75em 1.75em;
  width: 100%;
  height: 100%;
}
.post_item_img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
}
.post_item_img figure {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.post_item_img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  transition: all 0.3s ease;
}
.post_item_ttl {
  margin-top: 1em;
  padding: 0 8px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: justify;
  height: 4.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.post_item_info {
  margin-top: 2em;
  padding: 0 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.post_item_cat .cat_item {
  position: relative;
  font-size: 1.4rem;
  overflow: hidden;
  z-index: 500;
  padding: 0.5em 1em;
}
.single-post .post_item_cat .cat_item {
  padding: 0;
}
.single-post .post_item_cat .cat_item a {
  padding: 0.5em 1em;
}
.post_item_cat .cat_item_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  opacity: 1;
  border: 2px solid;
  border-radius: 1.5em;
}
.post_item_cat .cat_item_txt {
  position: relative;
  z-index: 500;
  font-weight: 600;
}
.post_item time {
  flex: 1;
  text-align: right;
}
.post_item_border {
  position: absolute;
  left: -5px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  content: "";
  border: 5px solid;
  border-color: #777;
  border-radius: 48px;
  transition: all 0.3s ease;
}
.post_item:hover .post_item_img figure {
  transform: scale(1.1);
}
.post_item:hover .post_item_img figure img {
  opacity: 0.6;
}
.post_item:hover .post_item_border {
  transform: scale(0.99);
  border-radius: 46px;
}
@media screen and (max-width: 960px) {
  .post_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .post_item {
    width: inherit;
  }
  .post_item_ttl {
    font-size: 1.8rem;
  }
  .post_item_img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .post_list:after {
    display: none;
  }
  .post article, .post_border {
    border-radius: 42px;
  }
}

.related_ttl {
  margin-bottom: 1.75em;
  font-weight: bold;
}
.related_ttl span {
  display: inline-block;
  margin-right: 0.25em;
  font-size: 4.8rem;
  font-family: "Roboto", sans-serif;
  text-transform: capitalize;
  letter-spacing: 0.025em;
}
.related_list .post_list {
  gap: 20px;
}
.related_list .post_list:after {
  width: calc((100% - 40px) / 3);
}
.related_list .post_item {
  width: calc((100% - 40px) / 3);
}
.related_list .post_item article {
  border: 4px solid;
  border-color: #777;
  border-radius: 42px;
}
.related_list .post_item article a {
  padding: 2em 1.5em 1.5em;
}
.related_list .post_item_ttl {
  font-size: 1.8rem;
}
.related_list .post_item_cat .cat_item {
  padding: 0.5em 1em;
  font-size: 1.2rem;
}
.related_list .post_item_border {
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: 4px solid;
  border-color: #777;
  border-radius: 42px;
}
.related_list .post_item:hover .post_item_border {
  border-radius: 41px;
}
@media screen and (max-width: 960px) {
  .related_list .post_item {
    width: inherit;
  }
}
@media screen and (max-width: 768px) {
  .related_list .post_list:after {
    display: none;
  }
  .related_list .post article, .related_list .post_border {
    border-radius: 42px;
  }
}
@media screen and (max-width: 768px) {
  .related_ttl {
    margin-bottom: 1.25em;
  }
  .related_ttl span {
    font-size: 3.6rem;
  }
}

.btn__wrapper {
  margin-top: 48px;
}

.btn01 {
  position: relative;
  margin: 0 auto;
  padding: 1em 2em;
  display: block;
  width: 100%;
  max-width: 300px;
  background: #333;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 12px;
  overflow: hidden;
}
.btn01:after {
  position: absolute;
  right: 1.25em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  content: "";
  background: url("../img/common/icon_arrow--w.svg") center center/contain no-repeat;
  z-index: 501;
}
.btn01_txt {
  position: relative;
  z-index: 501;
}
.btn01-hover_before {
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: #666;
  content: "";
  -webkit-clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
  transition: all 0.3s ease;
  z-index: 500;
}
.btn01-hover_after {
  position: absolute;
  top: 0;
  right: -120%;
  width: 120%;
  height: 100%;
  background: #666;
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
  transition: all 0.3s ease;
  z-index: 500;
}
.btn01:hover .btn01-hover_before {
  left: 0;
}
.btn01:hover .btn01-hover_after {
  right: 0;
}

.footer {
  margin-top: 100px;
}
.footer__inner {
  padding: 30px 5.2631578947vw;
  border-top: 1px solid #f5f5f5;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 5.2631578947vw;
  background: #fcfcfc;
}
.footer_logo__wrapper {
  flex: 1;
}
.footer_logo {
  margin-right: 32px;
  width: 100%;
  max-width: 200px;
  min-width: 100px;
}
.footer_link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1em 3.9473684211vw;
  border-radius: 48px 0 0 0;
}
.footer_link_list {
  display: flex;
  gap: 15px;
}
.footer_link_item a {
  position: relative;
  padding-right: 18px;
  display: inline-block;
}
.footer_link_item a:after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 10px;
  height: 10px;
  background: url("../img/common/icon_link--b.svg") center center/contain no-repeat;
  opacity: 0.7;
}
.footer_link_item a:hover {
  opacity: 0.5;
}
.footer_link_company_txt a {
  position: relative;
  padding-right: 18px;
  display: inline-block;
  /*letter-spacing: 0.05em;*/
  transition: all 0.3s ease;
}
.footer_link_company_txt a:after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 10px;
  height: 10px;
  background: url("../img/common/icon_link--b.svg") center center/contain no-repeat;
  opacity: 0.7;
}
.footer_link_company_txt a:hover {
  opacity: 0.5;
}
.footer_link_sns_list {
  display: none;
  flex-wrap: wrap;
}
.footer_link_sns_list:has(.footer_link_sns_item) {
  display: flex;
}
.footer_link_sns_item + .footer_link_sns_item {
  margin-left: 1.25em;
}
.footer_link_sns_item a {
  width: 28px;
}
.footer_link_sns_item a:hover {
  opacity: 0.5;
}
.footer .copyright {
  margin-top: 2em;
  font-size: 1.4rem;
  color: #777;
}
@media screen and (min-width: 960px) and (max-width: 1216px) {
  .footer_link_item a {
    font-size: 1.4rem;
  }
  .footer_link_company_txt a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 960px) {
  .footer_logo {
    max-width: 160px;
  }
  .footer_link {
    flex-direction: column;
    align-items: unset;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 64px;
  }
  .footer__inner {
    padding: 64px 16px 32px;
    gap: 64px;
    flex-direction: column-reverse;
  }
  .footer_logo__wrapper {
    width: 100%;
  }
  .footer_link {
    width: 100%;
  }
}

.pager {
  font-weight: bold;
}
.pager__inner {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
}
.pager a {
  margin: 0.25em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4em;
  height: 2.4em;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.pager a:hover, .pager a.current {
  background: #333;
  color: #fff;
}
.pager a:hover span, .pager a.current span {
  border-color: #fff;
}
.pager .previouspostslink {
  margin-right: 2em;
}
.pager .previouspostslink span {
  width: 0.5em;
  height: 0.5em;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}
.pager .nextpostslink {
  margin-left: 2em;
}
.pager .nextpostslink span {
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #333;
  border-top: 2px solid #333;
  transform: rotate(45deg);
}
.pager .ommision {
  display: inline-block;
  transform: translateY(-0.25em);
}
.pager .ommision_left {
  margin: 0 2em 0 0;
}
.pager .ommision_right {
  margin: 0 0 0 2em;
}

/*single.php*/
.single_contents .has-background {
  padding: 1.25em 2.375em;
}
.single_contents .wp-block-heading {
  margin-top: 1.75em;
  margin-bottom: 0.75em;
  font-weight: bold;
}
.single_contents h1.wp-block-heading,
.single_contents h2.wp-block-heading {
  font-size: 2.8rem;
}
.single_contents h3.wp-block-heading {
  font-size: 2.4rem;
}
.single_contents h4.wp-block-heading {
  font-size: 1.8rem;
}
.single_contents h5.wp-block-heading,
.single_contents h6.wp-block-heading {
  font-size: 1.6rem;
}
.single_contents p a {
  text-decoration: underline;
  word-break: break-word;
}
.single_contents .wp-block-image {
  margin: 1em 0;
}
.single_contents ul.wp-block-list li:before {
  content: "・";
}
.single_contents ol.wp-block-list {
  counter-reset: cnt;
}
.single_contents ol.wp-block-list li:before {
  margin-right: 0.2em;
  counter-increment: cnt;
  content: counter(cnt, decimal-leading-zero) ".";
}
.single_contents .wp-block-table {
  margin: 2em 0;
}
.single_contents .wp-block-table thead {
  border-bottom: 2px solid;
  background: #f5f5f5;
}
.single_contents .wp-block-table tfoot {
  border-top: 2px solid;
}

.single_index {
  margin: 2em 0;
  padding: 2em;
  background: #f5f5f5;
  font-size: 1.4rem;
}
.single_index .index_title {
  font-weight: bold;
  cursor: pointer;
}
.single_index .index_list__child {
  padding-left: 1.5em;
}
.single_index .index_link {
  padding: 1em 0;
  display: block;
  border-bottom: 1px dotted #aaa;
}

.single_pager {
  position: relative;
  margin-top: 100px;
  padding: 32px 0;
  border-top: 4px double #efefef;
  border-bottom: 4px double #efefef;
  display: flex;
  justify-content: space-between;
}
.single_pager:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  content: "";
  background: #efefef;
  display: none;
}
.single_pager_item {
  width: 48%;
  max-width: 320px;
}
.single_pager_item.link_next {
  display: flex;
  justify-content: right;
}
.single_pager_txt {
  position: relative;
  margin-bottom: 0.25em;
  font-weight: bold;
  line-height: 1;
}
.single_pager_txt:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  content: "";
  border-radius: 50%;
  background: url("../img/common/icon_arrow--w.svg") center center/34% auto no-repeat, #333;
}
.link_next .single_pager_txt {
  text-align: right;
  padding-right: 1.5em;
}
.link_next .single_pager_txt:after {
  right: 0;
}
.link_prev .single_pager_txt {
  padding-left: 1.5em;
}
.link_prev .single_pager_txt:after {
  left: 0;
  transform: rotate(180deg);
}
.single_pager_img {
  margin-top: 0.75em;
  width: 100%;
  aspect-ratio: 40/21;
  border-radius: 8px;
  overflow: hidden;
}
.single_pager_img figure {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.3s ease;
}
.single_pager_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_pager_ttl {
  margin-top: 0.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 3em;
  font-size: 1.4rem;
  line-height: 1.5em;
  text-align: justify;
}
.single_pager_border {
  margin: 0 16px;
  display: block;
  width: 1px;
  height: 100%;
  background: #ccc;
}
.single_pager a:hover {
  opacity: 0.7;
}
.single_pager a:hover .single_pager_img figure {
  transform: scale(1.1);
}

.contents_error404 {
  margin-top: 100px;
}
.contents_error404 img {
  width: 70%;
  max-width: 360px;
}
.contents_error404 .txt404 {
  margin-top: 32px;
  text-align: center;
}
.contents_error404 .txt404 * + * {
  margin-top: 1em;
}
.contents_error404 .txt404 a {
  text-decoration: underline;
}

.search_ttl {
  margin-top: 100px;
  display: block;
  font-size: 4.2rem;
  font-weight: bold;
  text-align: center;
}

.search_result_ttl {
  margin-top: 64px;
  text-align: center;
}

.search-result_form {
  margin: 32px auto 64px;
  max-width: 768px;
}
.search-result_form .search_form_input {
  width: calc(100% - 60px);
  padding: 18px 1em;
  font-size: 1.8rem;
  line-height: 1;
  background: #efefef;
  border-radius: 8px;
}
.search-result_form .search_form_btn {
  width: 56px;
  height: 56px;
  vertical-align: top;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: url("../img/common/icon_search.svg") center center/50% auto no-repeat, #333;
}

.ss-notfound_hint {
  max-width: 768px;
  margin: 32px auto 0;
}
.ss-notfound_hint-message {
  margin-top: 0.5em;
}

.wp-block-mamaduka-bookmark-card {
  text-align: left;
}

/* 固定ページ・投稿 基本スタイル */
.page_contents .section__inner.up_contents > *:not(:last-child),
.single_contents .section__inner.up_contents > *:not(:last-child) {
  margin-bottom: 1em;
}
.page_contents p,
.page_contents div,
.single_contents p,
.single_contents div {
  margin-top: 16px;
  margin-bottom: 16px;
}
.page_contents p,
.single_contents p {
  line-height: 1.75;
}
.page_contents a,
.single_contents a {
  color: #e48140;
  text-decoration: underline;
  word-break: break-word;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.page_contents a[class*=button],
.single_contents a[class*=button] {
  color: #fff;
  text-decoration: none;
}
.page_contents a:hover,
.single_contents a:hover {
  opacity: 0.7;
}
.page_contents .has-background,
.single_contents .has-background {
  padding: 1.25em 2.375em;
}
.page_contents .wp-block-heading,
.page_contents h1,
.page_contents h2,
.page_contents h3,
.page_contents h4,
.page_contents h5,
.page_contents h6,
.single_contents .wp-block-heading,
.single_contents h1,
.single_contents h2,
.single_contents h3,
.single_contents h4,
.single_contents h5,
.single_contents h6 {
  margin-top: 1.75em;
  margin-bottom: 0.75em;
  font-weight: bold;
}
.page_contents h1,
.single_contents h1 {
  font-size: 3.6rem;
}
.page_contents h2,
.single_contents h2 {
  font-size: 2.8rem;
}
.page_contents h3,
.single_contents h3 {
  font-size: 2.4rem;
}
.page_contents h4,
.single_contents h4 {
  font-size: 1.8rem;
}
.page_contents h5,
.page_contents h6,
.single_contents h5,
.single_contents h6 {
  font-size: 1.6rem;
}
.page_contents p a,
.single_contents p a {
  text-decoration: underline;
  word-break: break-word;
}
.page_contents .wp-block-image,
.single_contents .wp-block-image {
  margin: 1em 0;
}
.page_contents .wp-block-list,
.single_contents .wp-block-list {
  padding-left: 1.2em;
}
.page_contents .wp-block-list li,
.single_contents .wp-block-list li {
  text-indent: -0.5em;
}
.page_contents .wp-block-list li a,
.single_contents .wp-block-list li a {
  text-indent: 0;
}
.page_contents .wp-block-list li:not(:first-child),
.single_contents .wp-block-list li:not(:first-child) {
  margin-top: 0.5em;
}
.page_contents .wp-block-list li .wp-block-list,
.single_contents .wp-block-list li .wp-block-list {
  margin-top: 0.3em;
  margin-bottom: 0.7em;
}
.page_contents ul.wp-block-list li:before,
.single_contents ul.wp-block-list li:before {
  content: "・";
}
.page_contents ol.wp-block-list,
.single_contents ol.wp-block-list {
  counter-reset: cnt;
}
.page_contents ol.wp-block-list li:before,
.single_contents ol.wp-block-list li:before {
  margin-right: 0.2em;
  counter-increment: cnt;
  content: counter(cnt, decimal-leading-zero) ".";
}
.page_contents .wp-block-table,
.single_contents .wp-block-table {
  margin: 2em 0;
}
.page_contents .wp-block-table thead,
.single_contents .wp-block-table thead {
  border-bottom: 2px solid;
  background: #f5f5f5;
}
.page_contents .wp-block-table tfoot,
.single_contents .wp-block-table tfoot {
  border-top: 2px solid;
}

.single_contents .single_index a {
  color: #333;
}