@charset "UTF-8";

/* ==========================
   Variables & Base style
========================== */

:root {
  --font-base: "Noto Sans JP", -apple-system,
                BlinkMacSystemFont, "Helvetica Neue",
                "Hiragino Sans", "Hiragino Kaku Gothic ProN",
                Meiryo, sans-serif;
}

:root {
  --font-heading: "Noto Sans JP", "Roboto",
                  -apple-system, BlinkMacSystemFont,
                  sans-serif;
}

:root {
  /* px */
  --fs-10: 10px;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-21: 21px;
  --fs-24: 24px;
  --fs-28: 28px;
  --fs-32: 32px;
  --fs-39: 39px;
  --fs-174: 174px;

  /* clamp */
  --fs-clamp-14-16: clamp(14px, 1.2vw, 16px);
  --fs-clamp-15-16: clamp(15px, 1.3vw, 16px);
  --fs-clamp-18-20: clamp(18px, 1.7vw, 20px);
  --fs-clamp-20-24: clamp(20px, 2.2vw, 24px);
  --fs-clamp-22-28: clamp(22px, 2.6vw, 28px);
  --fs-clamp-26-32: clamp(26px, 3vw, 32px);
}


:root {
  /* Background Base */
  --bg-wht: #ffffff; 
  --bg-base: #eeeeee;  
  --bg-sub: #f5f5f5; 
  --bg-dark: #2f2f2f;
  --bg-footer: #242424;

  /* Accent / Brand */
  --theme: #FB8700;
  --theme-paler:#FFF7EE;
  --theme-pale:#fff1e1;
  --theme-soft: #FFD6A5;
  --theme-light: #F7931E;
  --theme-dark: #D96F00;
  --theme-gray:#F9F8F6;

  

  /* Card / Tag */
  --card-dark: #1D1D1D;
  --bg-tag: #eeeeee;
  --bg-tag-dark: #3D3D3D;  

  /* Text Colors */
  --text-base: #3D3D3D;
  --text-dark: #111111;
  --text-light: #f5f5f5;
  --text-wht: #ffffff;

  /* Borders / Lines */
  --border: #e5e5e5;


  --date-shadow:
    1px 1px 0 var(--text-base),
    -1px -1px 0 var(--text-base),
    -1px 1px 0 var(--text-base),
    1px -1px 0 var(--text-base),
    0px 1px 0 var(--text-base),
    0 -1px 0 var(--text-base),
    -1px 0 0 var(--text-base),
    1px 0 0 var(--text-base);
}

:root{
  --cubic: cubic-bezier(0.22, 0.61, 0.36, 1);
}

body {
  font-family: var(--font-base);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  background-color: var(--bg-wht);
  color: var(--text-base);
  position: relative;
}


/* ==========================
   Layout
========================== */
.container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding-inline: clamp(30px, calc(10.77px + 2.564vw), 60px);
}
.container--article {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding-inline: clamp(30px, calc(10.77px + 2.564vw), 60px);
}
.container--wide {
  width: min(95%, 1300px);
  margin: 0 auto;
  /* padding-inline: clamp(30px, calc(10.77px + 2.564vw), 60px); */
}
.container--xwide {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding-inline: clamp(30px, calc(10.77px + 2.564vw), 60px);
}
.container--xxwide {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding-inline: clamp(30px, calc(10.77px + 2.564vw), 60px);
}
.container--narrow {
  width: min(100%, 920px);
  margin: 0 auto;
  padding-inline: clamp(30px, calc(10.77px + 2.564vw), 60px);
}
.articles {
    padding-bottom: 100px;
}

.main {
  padding-top: 140px;
}
.tatsujin-blog-layout {
    display: flex;
    margin-top: 40px;
    justify-content: space-between;
}
.tatsujin-blog-layout__main {
    width: 61%;
}
.tatsujin-blog-layout__sidebar {
    width: 36%;
}
.tatsujin-blog-layout--full .tatsujin-blog-layout__main {
  width: 100%;
}


@media screen and (max-width: 900px) {
    .container--narrow {
        padding-inline: 15px;
    }
  .tatsujin-blog-layout {
    flex-direction: column;
  }
  .tatsujin-blog-layout__main {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .main {
    padding-top: 70px;
  }
}


/* ==========================
   Common
========================== */
.link-underline {
  color: var(--accent);
  text-decoration: underline;
}
a img {transition: all 0.2s ease;}
a img:hover {opacity: 0.7;}


/* ==========================
   Components
========================== */

/* ---- header ---- */

.tatsujin-blog-header {
    position: fixed;
    width: 100%;
    background-color: var(--bg-wht);
    z-index: 50;
    box-shadow: 0 3px 3px rgb(131 65 0 / 9%);
}
.tatsujin-blog-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
    height: 69px;
    padding: 0 15px;
}
.tatsujin-blog-header__logo {
    width: 198px;
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.tatsujin-blog-header__logo.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.tatsujin-blog-header__logo-link img {
  width: 100%;
}
.tatsujin-blog-header__nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 50px;
}
.tatsujin-blog-header__cta {
  background-color: var(--theme);
  background-image: url(../img/icon_new_tab.png);
  background-repeat: no-repeat;
  background-position: right 15px  center;
  background-size: 16px;
    color: var(--text-wht);
    font-weight: bold;
    padding: 11px 41px 14px;
    border-radius: 50px;
    position: relative;
    line-height: 1;
}
.tatsujin-blog-header__cta img {
  position: absolute;
    width: 57px;
    left: -17px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.tatsujin-blog-header__cta img:hover {
    opacity: 1;
}

.tatsujin-blog-header__search {
    width: 45px;
    height: 45px;
    display: block;
    position: relative;
}
.tatsujin-blog-header__search img {
    width: 49%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.tatsujin-blog-header__menu {
  background-color: var(--theme);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  position: fixed;
  z-index: 500;
  top: 15px;
  right: 16px;
}
.tatsujin-blog-header__menu-line {
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: var(--text-wht);
    left: 0;
    right: 0;
    margin: auto;
  transition: 0.3s;
}


.tatsujin-blog-header__menu-line:nth-child(1) {
  top: 13px;
}
.tatsujin-blog-header__menu-line:nth-child(2) {
  top: 19px;
}
.tatsujin-blog-header__menu-line:nth-child(3) {
  top: 25px;
}


.tatsujin-blog-header__menu.is-open .tatsujin-blog-header__menu-line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.tatsujin-blog-header__menu.is-open .tatsujin-blog-header__menu-line:nth-child(2) {
  opacity: 0;
}

.tatsujin-blog-header__menu.is-open .tatsujin-blog-header__menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.tatsujin-blog-header-search {
  margin: 20px 0;
}
.tatsujin-blog-header-search__inner {
  width: 95%;
  max-width: 550px;
  margin: 0 auto;
}
.tatsujin-blog-header-search__input {
    border: 1px solid #ccc;
    padding: 8px 15px;
    width: calc(100% - 66px);
}
.tatsujin-blog-header-search__button {
  width: 57px;
  margin-left: 5px;
  padding: 8px 0;
  background-color: var(--theme-pale);
    text-align: center;
    border-radius: 3px;
}
.tatsujin-blog-header-search__button img {
    width: 21px;
}

.tatsujin-blog-header-search {
  display: none;
}
.tatsujin-blog-header-search.is-show {
  display: block;
}


@media screen and (max-width: 900px) {
  .tatsujin-blog-header__cta {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .tatsujin-blog-header {
    background-color: transparent;
    box-shadow: none;
  }
  .tatsujin-blog-header:has(.js-header-search.is-show) {
    background: #fff;
    box-shadow: 0 3px 3px rgb(131 65 0 / 9%);
  }
  
  .tatsujin-blog-header__inner {
    height: 55px;
    padding: 0 3px;
}
  .tatsujin-blog-header__logo {
    width: 130px;
    top: 17px;
  }
  .tatsujin-blog-header__menu {
    top: 9px;
    right: 10px;
  }
}

.tatsujin-blog-fv {
  padding-top: 69px;
}
.tatsujin-blog-fv__inner {
    padding: 30px 0;
  background-image: url(../img/header_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 75px;
}
.tatsujin-blog-fv__content {
    width: 91%;
    max-width: 600px;
    padding: 32px 0;
  margin: auto;
  background-color: var(--bg-wht);
  border-radius: 20px;
    position: relative;
}

.tatsujin-blog-fv__content::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 82%;
  top: 9%;
  left: 0;
  border-top: 2px dashed #d8c3a5;
  border-bottom: 2px dashed #d8c3a5;
}
.tatsujin-blog-fv__logo {
    width: 256px;
    margin: 0 auto 13px;
}
.tatsujin-blog-fv__logo img {
  width: 100%;
}
.tatsujin-blog-fv__lead {
  text-align: center;
}


@media screen and (max-width: 750px) {
  .tatsujin-blog-fv__inner {
  background-image: url(../img/header_bg_sp.png);
  }
  .tatsujin-blog-fv {
      padding-top: 0;
  }
}

@media screen and (max-width: 480px) {
  
  .tatsujin-blog-fv__content {
    width: 67%;
    padding: 33px 20px 30px;
    font-size: 12px;
  }
  .tatsujin-blog-fv__logo {
    width: 180px;
  }
}


/* ---- 共通見出し ---- */

.tatsujin-blog-heading {
  background-color: var(--theme-pale);
    position: relative;
    display: inline-block;
    padding: 40px 110px 36px 0;
    border-top-right-radius: 90px;
    border-bottom-right-radius: 90px;
}
.tatsujin-blog-heading::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
  left: calc(50% - 50vw);
  width: calc(50vw - 50%);
  height: 100%;
    background-color: var(--theme-pale);
}
.tatsujin-blog-heading__en {
  color: var(--theme-light);
  font-size: clamp(17px, 10.28px + 1.4vw, 24px);
  font-weight: bold;
  margin-bottom: clamp(0px, -9.6px + 2vw, 10px);
    display: block;
}
.tatsujin-blog-heading__jp {
  color: var(--text-dark);
  font-size: clamp(20px, 9.2px + 2.25vw, 30px);
  font-weight: 900;
}




@media screen and (max-width: 480px) {
  .tatsujin-blog-heading {
    padding: 15px 80px 15px 15px;
  }
}









/* ---- horizontal-card ---- */
.tatsujin-blog-sidebar-heading {
    margin-bottom: 20px;
}
.tatsujin-blog-sidebar-heading__en {
    color: var(--theme-light);
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    margin-right: 5px;
}
.tatsujin-blog-sidebar-heading__jp {
    font-size: 21px;
    font-weight: 900;
    color: var(--text-dark);
}
.tatsujin-blog-horizontal-card-list__item {
    margin-bottom: 13px;
}
.tatsujin-blog-horizontal-card {
    display: flex;
    box-shadow: 3px 3px 10px rgba(71, 0, 33, 0.05);
    border-radius: 12px;
    overflow: hidden;
}
.tatsujin-blog-horizontal-card__content {
    padding: 20px 15px;
    width: 65%;
}
.tatsujin-blog-horizontal-card__thumb {
    width: 35%;
    aspect-ratio: 157 / 126;
    overflow: hidden;
}
.tatsujin-blog-horizontal-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tatsujin-blog-horizontal-card__category {
    display: inline-block;
    background-color: #fff;
    padding: 3px 11px 4px;
    border: 1px solid #000;
    font-size: 10px;
    border-radius: 40px;
}
.tatsujin-blog-horizontal-card__body {
    margin-top: 10px;
}
.tatsujin-blog-horizontal-card__date {
    font-size: 10px;
    font-weight: 600;
}
.tatsujin-blog-horizontal-card__number {
    font-size: 35px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1;
    text-shadow: var(--date-shadow);
}
.tatsujin-blog-horizontal-card__meta {
    width: 60px;
}
.tatsujin-blog-horizontal-card__title {
    font-size: 14px;
    font-weight: bold;
}

@media screen and (max-width: 900px) {
  .tatsujin-blog-layout__sidebar {
    width: 100%;
    margin-bottom: 100px;
  }
  .tatsujin-blog-horizontal-card-list__item {
    width: 49%;
  }
  .tatsujin-blog-horizontal-card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%;
  }
}


@media screen and (max-width: 750px) {
  .tatsujin-blog-layout__sidebar {
    max-width: 500px;
    margin: 0 auto 100px;
}
  .tatsujin-blog-horizontal-card-list__item {
    width: 100%;
}
.tatsujin-blog-sidebar-heading__en {
    font-size: 19px;
}
.tatsujin-blog-sidebar-heading__jp {
    font-size: 18px;
}
}





/* ---- blog-card ---- */

.tatsujin-blog-card-list {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.tatsujin-blog-card-list__item {
    width: calc((100% - 20px) / 2);
}
.tatsujin-blog-layout--full .tatsujin-blog-card-list__item {
    width: calc((100% - 40px) / 3);
}


.tatsujin-blog-card {
    display: block;
    box-shadow: 3px 3px 10px rgba(71, 0, 33, 0.05);
    border-radius: 12px;
    overflow: hidden;
}
.tatsujin-blog-card__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.tatsujin-blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tatsujin-blog-card__content {
    position: relative;
}
.tatsujin-blog-card__category {
    position: absolute;
    display: block;
    background-color: #fff;
    padding: 3px 11px 4px;
    border: 1px solid #000;
    font-size: 10px;
    border-radius: 40px;
    top: -14px;
    left: 15px;
}
.tatsujin-blog-card__body {
    display: flex;
    padding: 40px 20px;
    justify-content: space-between;
    background-color: var(--bg-wht);
    height: 100%;
}
.tatsujin-blog-card__meta {
    width: 60px;
}
.tatsujin-blog-card__number {
    color: #ffffff;
    font-weight: 600;
    font-size: 40px;
    line-height: 1;
    text-shadow: var(--date-shadow);
}
.tatsujin-blog-card__date {
    font-size: 12px;
    font-weight: 600;
}
.tatsujin-blog-card__text {
    width: calc(98% - 60px);
}

.tatsujin-blog-card__title {
    font-weight: bold;
    margin-bottom: 5px;
}
.tatsujin-blog-card__description {
    color: #8A8A8A;
    font-size: 14px;
}

@media screen and (max-width: 900px) {
  .tatsujin-blog-layout--full .tatsujin-blog-card-list__item {
    width: calc((100% - 20px) / 2);
  }
}


@media screen and (max-width: 750px) {
  .tatsujin-blog-card-list {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 40px;
  }

  .tatsujin-blog-card-list__item {
    width: 100%;
  }
  .tatsujin-blog-layout--full .tatsujin-blog-card-list__item {
    width: 100%;
  }
}


/* ---- 関連記事 Related Posts　---- */
.post-related {
    padding: 60px 0;
    border-top: 3px dotted var(--theme-light);
    background-image: url(../img/bg_dot.png);
    background-size: 20px;
}
.tatsujin-blog-card-list__item {
  height: auto;
}

.tatsujin-blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tatsujin-blog-card__content {
  flex: 1;
}
.tatsujin-blog-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tatsujin-blog-card__description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- ブログカードスライダー ---- */
.tatsujin-blog-card-list.swiper-wrapper {
  flex-wrap: nowrap;
}
.slider__wrap .tatsujin-blog-card-list {
  gap: 0;
}
.slider__wrap {
  position: relative;
}

.slider__prev,
.slider__next {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--theme);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 20;

}

.slider__prev {
    left: -15px;
}
.slider__next {
    right: -15px;
}

.slider__prev::after,
.slider__next::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--bg-wht);
  border-right: 2px solid var(--bg-wht);
  transform: rotate(45deg);
  top: 50%;
  bottom: 50%;
  margin: auto;
  transition: all 0.2s ease;
}
.slider__prev::after {
    transform: rotate(225deg);
    right: 11px;
}
.slider__next::after {
    left: 11px;
}




@media screen and (max-width: 750px) {
  .slider__wrap {
      width: 95%;
      margin: auto;
  }
}


/* ---- カテゴリページ・記事ページ内の人気記事 ---- */
.post-popular {
    padding: 60px 0 100px;
    border-top: 3px dotted var(--theme-light);
}
.post-popular .tatsujin-blog-horizontal-card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%;
}
.post-popular .tatsujin-blog-horizontal-card-list__item {
  width: 49%;
}

@media screen and (max-width: 750px) {
  .post-popular .tatsujin-blog-horizontal-card-list__item {
    width: 100%;
  }
}


/* ---- もっと見る ---- */

.section-more {
  text-align: center;
  margin-bottom: 150px;
}
.section-more__link {
  display: inline-block;
  font-weight: bold;
    font-size: 17px;
    padding: 15px 52px 15px 27px;
    border-bottom: 1px solid var(--text-base);
  position: relative;
}
.section-more__link::before {
  content: "";
  display: block;
  position: absolute;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid var(--theme-light);
  top: 50%;
  bottom: 50%;
  margin: auto;
  right: 18px;
  transition: all 0.2s ease;
}
.section-more__link::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--theme-light);
  border-right: 2px solid var(--theme-light);
  transform: rotate(45deg);
  top: 50%;
  bottom: 50%;
  margin: auto;
  right: 27px;
  transition: all 0.2s ease;
}

@media screen and (max-width: 900px) {
  .section-more {
    margin-bottom: 60px;
  }
}


/* ---- pagination ---- */

.pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
}
.pagination__item {
  
  color: var(--theme);
}
.pagination__link {
  display: inline-block;
    min-width: 48px;
    text-align: center;
    padding: 12px 14px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    border: 3px solid var(--theme-pale);
    line-height: 1;
    transition: all 0.2s ease;
}
.pagination__link:hover {
  border-color: var(--theme);
}
.pagination__link--current {
  background-color: var(--theme);
  border-color: var(--theme);
  color: var(--text-wht);
}
.pagination__text {
  display: inline-block;
    text-align: center;
    padding: 12px 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

@media screen and (max-width: 480px) {
  .pagination {
      gap: 8px;
  }
  .pagination__link {
    min-width: 44px;
    padding: 10px 8px;
}

}


/* ---- child category 子カテゴリ ---- */

.category-nav {
  display: flex;
  gap: 10px;
  margin-top: 43px;overflow-x: auto;
}
.category-nav__item {
  flex-shrink: 0;
}
.category-nav__link {
  display: block;
  padding: 5px 15px;
  border-radius: 50px;
  border: 1px solid #333;
  font-weight: bold;
  position: relative;
}
.category-nav__link.is-current {
  border-color: var(--theme);
  background-color: var(--theme);
  color: var(--text-wht);
  padding-left: 25px;
}
.category-nav__link.is-current::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 7px;
  border-top: 2px solid var(--text-wht);
  border-right: 2px solid var(--text-wht);
  transform: rotate(135deg);
  top: 37%;
  left: 10px;
}


/* ---- article　記事ページ ---- */

.breadcrumb {
    margin-bottom: 30px;
}
.breadcrumb__list {
  font-size: 12px;
  color: #686868;
}
.breadcrumb__item {
  position: relative;
    display: inline-block;
}
.breadcrumb__item:not(:last-of-type)::after {
  content: "／";
    margin: 0 8px;
}

.post-header {
}
.post-header__categories {
  display: flex;
  gap: 10px;
    margin-bottom: 10px;
}
.post-header__category {
    
}
.post-header__category-link {
  display: block;
    background-color: #fff;
    padding: 3px 11px 4px;
    border: 1px solid #000;
    font-size: 12px;
    font-weight: bold;
    border-radius: 40px;
    top: -14px;
    left: 15px;
}
.post-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
}
.post-header__meta {
  width: 70px;
}
.post-header__number {
  color: #ffffff;
    font-weight: 600;
    font-size: 44px;
    line-height: 1;
    text-shadow: var(--date-shadow);
}
.post-header__date {
  font-size: 14px;
    font-weight: 600;
}
.post-header__title {
  width: calc(99% - 70px);
  font-size: clamp(20px, 4vw, 30px);
  font-weight: bold;
}

.post-eyecatch {
    margin-bottom: 40px;
}

.post-eyecatch img {
    width: 100%;
    height: auto;
}
.post-intro {
    margin-bottom: 30px;
}
.post-index {
    border: 5px solid #F8F7F6;
    border-radius: 8px;
    padding: 35px 40px;
    margin-bottom: 65px;
}
.post-index__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 26px;
}
.post-index #ez-toc-container {
  border: none;
  box-shadow: none;
  margin-bottom: 0;
    padding-top: 0;
    padding-right: 20;
    padding-bottom: 0;
    padding-left: 0;
}

#ez-toc-container .ez-toc-heading-level-2 {
  position: relative;
    padding-left: 1.4em;
    margin-bottom: 10px;
}
#ez-toc-container .ez-toc-heading-level-2::after {
  content: "";
    position: absolute;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 15px;
    background-color: var(--theme);
    top: 9px;
    left: 5px;
}

#ez-toc-container a {
  font-size: 16px;
}
#ez-toc-container a:visited {
  color: inherit;
}
#ez-toc-container .ez-toc-list-level-3 {
    margin-top: 10px;
}
#ez-toc-container .ez-toc-heading-level-3 {
  margin-bottom: 10px;
}
#ez-toc-container .ez-toc-heading-level-3:last-of-type {
  margin-bottom: 0;
}


.post-index__item ul {
    margin-top: 10px;
    padding-left: 1.4em;
    font-weight: normal;
}
.post-index__item ul li {
    margin-bottom: 10px;
}
.post-body {
   margin-bottom: clamp(40px, 12vw, 100px);
   overflow-wrap: anywhere;
   font-size: clamp(16px, 1.1vw, 18px);
   line-height: 1.8;
}
.post-body > * + * { margin-top: clamp(18px, 2.6vw, 28px); }

.post-body h2,
.post-body h3,
.post-body h4 {
  margin-top: clamp(34px, 6vw, 64px);
}
.post-body h2 + *,
.post-body h3 + *,
.post-body h4 + * {
  margin-top: clamp(16px, 3vw, 24px);
}
.post-body h2 + .note-point,
.post-body h3 + .note-point,
.post-body h4 + .note-point{
  margin-top: calc(clamp(16px, 3vw, 24px) + 20px);
}

.post-body h2:first-child,
.post-body h3:first-child,
.post-body h4:first-child {
  margin-top: 0;
}






.post-body #ez-toc-container {
  display: none;
}
.post-body h2.wp-block-heading {
  font-size: clamp(20px, 1.5vw, 22px);
  font-weight: bold;
  padding: clamp(5px, 1vw, 10px);
  border-bottom: 2px dotted var(--theme);
}
.post-body h3.wp-block-heading {
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: bold;
  padding: clamp(5px, 1vw, 10px);
  position: relative;
  border-bottom: 2px solid #EDEDED;
}
.post-body h3.wp-block-heading::after {
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: var(--theme);
  bottom: -2px;
  left: 0;
}
.post-body h4.wp-block-heading {
  padding-left: 1em;
  font-size: 17px;
  position: relative;
  font-weight: bold;
}

.post-body h4.wp-block-heading::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--theme);
    top: 0.7em;
    left: 0.2em;
}
.post-body p {
  margin-bottom: 0;
}
.post-body p a,
.post-body .wp-block-list li a {
    color: var(--theme);
    text-decoration: underline;
}
.post-body p a:hover,
.post-body .wp-block-list li a:hover {
    text-decoration: none;
}
.post-body figcaption.wp-element-caption {
    color: #555555;
    font-size: 14px;
    margin-top: 8px;
}
.post-body .wp-block-list li {
    padding-left: 20px;
    position: relative;
}
.post-body .wp-block-list li::after {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--theme);
    top: 0.8em;
    left: 8px;
    border-radius: 50%;
}
.post-body .wp-block-list li ul li::after {
    border-radius: 0;
    width: 7px;
    height: 2px;
    top: 0.9em;
}

blockquote {
    position: relative;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    padding: 20px;
}
blockquote::before, blockquote::after {
    position: absolute;
    background-color: #FFFFFF;
    color: var(--theme-light);
    font-family: 'FontAwesome';
    line-height: 1;
    text-align: center;
    padding: 0 10px;
    font-size: 20px;
}
blockquote::before {
    content: '\f10d';
    top: -10px;
    left: -10px;
}
blockquote::after {
    content: '\f10e';
    right: -10px;
    bottom: -10px;
}

/* リンクカード */
.link-card__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 3px solid #E8E8E8;
  border-radius: 5px;
  transition: all 0.4s var(--cubic);
  background-color: var(--bg-wht);
}

.link-card__link:hover {
  box-shadow: 0 3px 25px rgba(68, 67, 68, 0.1);
  transform: translateY(-5px);
}

.link-card__link:hover .link-card__image img {
  transform: scale(1.05);
}

.link-card__image {
  width: 200px;
  overflow: hidden;
}

.link-card__image img {
  width: 100%;
  transition: all 0.4s var(--cubic);
}

.link-card__content {
  width: calc(97% - 200px);
}

.link-card__title {
  font-weight: bold;
  font-size: clamp(16px, 1.1vw, 18px);
  margin-bottom: 6px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.link-card__link:hover .link-card__title {
  text-decoration: underline;
}

p.link-card__desc {
  color: #747474;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 1.5;
}

.link-card__cta {
  color: var(--theme);
  font-size: 12px;
}

/* ボタンbutton */
.is-style-btn-primary a {
  background-color: var(--theme);
  display: block;
  position: relative;
  padding: 10px 60px;
  font-size: 15px;
}

.is-style-btn-primary a::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  transform: rotate(-45deg);
  right: 25px;
  top: 0;
  bottom: 0;
  border-right: 2px solid var(--bg-wht);
  border-bottom: 2px solid var(--bg-wht);
  margin: auto;
  transition: all 0.2s ease;
}
.is-style-btn-primary a:hover:after {
    right: 19px;
}

.is-style-btn-secondary a {
  background-color: var(--bg-wht);
  color: var(--text-base);
  display: block;
  position: relative;
  padding: 8px 60px;
  border: 2px solid var(--text-base);
  font-size: 15px;
}

.is-style-btn-secondary a::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  transform: rotate(-45deg);
  right: 25px;
  top: 0;
  bottom: 0;
  border-right: 2px solid var(--text-base);
  border-bottom: 2px solid var(--text-base);
  margin: auto;
  transition: all 0.2s ease;
}
.is-style-btn-secondary a:hover:after {
    right: 19px;
}



.wp-block-table table{
  width:100%;
  border-collapse:collapse;
}
.wp-block-table thead {
    border: none;
}
.wp-block-table th{
  padding:16px;
  background:#f1f1f1;
  font-weight:700;
  text-align:left;
    border: none;
}
.wp-block-table td{
  padding:20px 16px;
    border: none;
    border-bottom: 1px dotted #ccc;
}


/* 補足用BOX */
.post-note {
  padding: 24px;
  border-radius: 10px;
}

.post-note--main {background: #fff8e6;}
.post-note--sub {background: #F5F6F8;}


/* マーカー */
.marker-yellow {
  background: linear-gradient(
    transparent 60%,
    #fff3a3 60%
  );
}

/*  ポイントBOX*/
.note-point {
  border-top: 2px dotted var(--theme-light);
  border-bottom: 2px dotted var(--theme-light);
  padding: 36px 20px 20px 20px;
  position: relative;
}
.note-point__label{
  position: absolute;
    display: inline-block;
    padding: 7px 23px 8px 55px;
    border-radius: 40px;
    background-color: var(--theme-light);
    color: var(--text-wht);
    font-weight: bold;
    font-size: 14px;
    line-height: 1.5;
    top: -21px;
    left: 20px;
}
.note-point__label::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 13px;
    border-left: 4px solid var(--text-wht);
    border-bottom: 4px solid var(--text-wht);
    transform: rotate(315deg);
    left: 19px;
    top: 8px;
}

@media screen and (max-width: 750px) {
  .link-card__link {
    padding: 13px;
    align-items: flex-start;
    border-width: 2px;
  }

  .link-card__image {
    width: 30%;
  }

  .link-card__content {
    width: 66%;
  }

  .link-card__title {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .link-card__desc {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .link-card__cta {
    font-size: 11px;
    font-weight: bold;
  }

  .post-body > * + * {
    margin-top: 18px;
  }
  .post-body > h2,
  .post-body > h3,
  .post-body > h4 {
    margin-top: 32px;
  }

  .post-body > h2 + *,
  .post-body > h3 + *,
  .post-body > h4 + * {
    margin-top: 14px;
  }
}


@media screen and (max-width: 480px) {
  .breadcrumb__list {
    font-size: 10px;
  }
  .post-header__category-link {
    font-size: 10px;
  }
  .post-header__meta {
    width: 54px;
  }
  .post-header__number {
    font-size: 35px;
  }
  .post-header__date {
    font-size: 11px;
  }
  .post-header__title {
    width: calc(99% - 54px);
  }

}




/* ---- share ---- */
.post-share {
  background-color: var(--theme-gray);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 100px;
}
.post-share__heading-en {
    color: var(--theme);
    font-size: 24px;
    display: block;
}
.post-share__title{
  margin-bottom: 20px;
}
.post-share__list{
  display: flex;
  gap: 13px;
  justify-content: center;
}
.post-share__link{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #6A6A6A;
  position: relative;
  z-index:0;
  overflow: hidden;
}

.post-share__link:hover img{
  opacity: 1;
}
.post-share__x::before,
.post-share__pin::before,
.post-share__line::before,
.post-share__copy::before {
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:110%;
  height:110%;
  border-radius:50%;
  transform:translate(-50%, -50%) scale(0);
  transition: all 0.3s var(--cubic);
  z-index:-1;
  opacity: 0;
}

.post-share__x:hover::before,
.post-share__pin:hover::before,
.post-share__line:hover::before,
.post-share__copy:hover::before {
  transform:translate(-50%, -50%) scale(1);
  opacity: 1;
}

.post-share__x::before {background-color: #000000;}
.post-share__pin::before {background-color:#e60023;}
.post-share__line::before {background-color:#06c755;}
.post-share__copy::before {background-color:var(--theme);}


/* ---- 検索画面 ---- */
.search-result__keyword {
    font-size: 20px;
    font-weight: bold;
    margin: 48px 0 0;
}
.search-result__empty {
    text-align: center;
    margin: 50px 0 120px;
    font-size: 18px;
}




/* ---- footer ---- */

.tatsujin-blog-footer-category {
  background-color: var(--theme-paler);
  border-top: 3px dotted var(--theme-light);
  padding: 70px 0;
}
.tatsujin-blog-footer-category__heading {
    text-align: center;
    margin-bottom: 30px;
}
.tatsujin-blog-footer-category__heading-en {
  display: block;
  color: var(--theme-light);
  font-size: 24px;
    font-weight: bold;
}
.tatsujin-blog-footer-category__heading-ja {
  display: block;
  color: var(--text-dark);
    font-size: 29px;
    font-weight: 900;
}
.tatsujin-blog-footer-category__list {
    width: 95%;
  margin: auto;
  max-width: 1080px;
  display: flex;
    gap: 15px 2%;
    flex-wrap: wrap;
}
.tatsujin-blog-footer-category__item {
  width: calc( 96% / 3 );
}
.tatsujin-blog-footer-category__link {
  background-color: var(--bg-wht);
  border: 2px solid var(--theme-soft);
  border-radius: 50px;
  padding: 20px 67px 20px 30px;
  width: 100%;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: block;
  transition: all 0.2s ease;
}
.tatsujin-blog-footer-category__link:hover {
  border: 2px solid var(--theme);
}
.tatsujin-blog-footer-category__link::before {
  content: "";
  display: block;
  position: absolute;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid var(--theme-light);
  top: 50%;
  bottom: 50%;
  margin: auto;
  right: 28px;
  transition: all 0.2s ease;
}
.tatsujin-blog-footer-category__link::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--theme-light);
  border-right: 2px solid var(--theme-light);
  transform: rotate(45deg);
  top: 50%;
  bottom: 50%;
  margin: auto;
  right: 37px;
  transition: all 0.2s ease;
}
.tatsujin-blog-footer-category__link:hover:before {
  right: 23px;
}
.tatsujin-blog-footer-category__link:hover:after {
  right: 32px;
}

.tatsujin-blog-footer-about {
  background-image: url(../img/footer_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
    padding: 80px 0;
}
.tatsujin-blog-footer-about__inner {
  width: 95%;
  max-width: 1300px;
  margin: auto;
  background-color: var(--bg-wht);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
    flex-wrap: wrap;
}
.tatsujin-blog-footer-about__logo {
    width: 140px;
}
.tatsujin-blog-footer-about__logo img {
  width: 100%;
}
.tatsujin-blog-footer-about__content {
  width: calc(89% - 385px);
}
.tatsujin-blog-footer-about__text {
  margin-bottom: 20px;
}
.tatsujin-blog-footer-about__sns-list {
  display: flex;
  gap: 15px;
}
.tatsujin-blog-footer-about__sns-item {
  width: 32px;
}
.tatsujin-blog-footer-about__sns-link img {
  width: 100%;
}

.tatsujin-blog-footer-product {
  border-left: 1px solid #F5F5F5;
    width: 245px;
    padding-left: 36px;
}
.tatsujin-blog-footer-product__item {
    margin-bottom: 10px;
}
.tatsujin-blog-footer-product__link {
    display: flex;
    align-items: center;
    padding-left: 30px;
    position: relative;
}
.tatsujin-blog-footer-product__link::before {
  content: "";
  position: absolute;
  display: block;
  width: 11px;
  height: 2px;
  background-color: #333333;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
    transition: all 0.2s ease;
}

.tatsujin-blog-footer-product__link::after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  margin: auto;
    left: 3px;
    transition: all 0.2s ease;
}
.tatsujin-blog-footer-product__link:hover:before {
  background-color: var(--theme);
  left: 3px;
}
.tatsujin-blog-footer-product__link:hover:after {
  border-top: 2px solid var(--theme);
  border-right: 2px solid var(--theme);
  left: 6px;
}


.tatsujin-blog-footer-product__image {
    width: 40px;
    padding-right: 10px;
}
.tatsujin-blog-footer-product__image:hover {
  opacity: 1;
}
.tatsujin-blog-footer-product__name {
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.tatsujin-blog-footer-product__link:hover .tatsujin-blog-footer-product__name {
  color: var(--theme);
}

.tatsujin-blog-footer-copyright {
    background-color: var(--bg-footer);
    padding: 45px 0 25px;
    text-align: center;
    color: #B4B4B4;
}
.tatsujin-blog-footer-copyright__text {
    font-size: 10px;
    margin-bottom: 10px;
}
.tatsujin-blog-footer-copyright__logo {
    width: 124px;
    margin: 0 auto 38px;
}
.tatsujin-blog-footer-copyright__logo img {
  width: 100%;
}
.tatsujin-blog-footer-copyright__copy {
  font-size: 14px;
}



@media screen and (max-width: 900px) {
  .tatsujin-blog-footer-about {
  background-image: url(../img/footer_bg_sp.png);
  }
  .tatsujin-blog-footer-category__item {
    width: calc(96% / 2);
  }
  .tatsujin-blog-footer-about__content {
    width: calc(95% - 140px);
  }
  .tatsujin-blog-footer-product {
    width: 100%;
    margin: 30px auto 0;
    padding-top: 30px;
    border-top: 2px solid #F5F5F5;
    border-left: none;
    padding-left: 0;
  }
  .tatsujin-blog-footer-product__list {
      display: flex;
      flex-wrap: wrap;
  }
  .tatsujin-blog-footer-product__item {
      margin-bottom: 10px;
      width: 50%;
  }
}


@media screen and (max-width: 750px) {
  
  .tatsujin-blog-footer-category__list {
    max-width: 500px;
  }
  .tatsujin-blog-footer-category__item {
      width: 100%;
  }
  .tatsujin-blog-footer-about__inner {
    width: 88%;
    padding: 40px 30px;
  }
  .tatsujin-blog-footer-about__logo {
    width: 60%;
    max-width: 140px;
    margin: 0 auto 20px;
  }
  .tatsujin-blog-footer-about__content {
      width: 100%;
      max-width: 400px;
        margin: 0 auto 30px;
  }
  .tatsujin-blog-footer-about__sns-list {
    justify-content: center;
  }
  .tatsujin-blog-footer-product {
        max-width: 400px;
        margin: 0 auto;
    }
  .tatsujin-blog-footer-product__list {
    max-width: 220px;
        margin: auto;
  }
  .tatsujin-blog-footer-product__item {
    width: 100%;
  }
  .tatsujin-blog-footer-copyright__copy {
    font-size: 10px;
  }
    
}





/* ---- modal ---- */


.tatsujin-blog-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.tatsujin-blog-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}




.tatsujin-blog-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.tatsujin-blog-modal__content {
  position: absolute;
  z-index: 1;
  width: 365px;
  height: 100vh;
  right: 0;
  top: 0;
  background: #fff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 55px 30px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.tatsujin-blog-modal.is-open .tatsujin-blog-modal__content {
    transform: translateX(0);
}
.tatsujin-blog-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.tatsujin-blog-modal__nav {
    position: relative;
    height: 100%;
}
.tatsujin-blog-modal__heading {
    margin-bottom: 34px;
}
.tatsujin-blog-modal__heading-en {
    color: var(--theme);
    font-size: 18px;
    font-weight: bold;
    display: block;
}
.tatsujin-blog-modal__heading-ja {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-dark);
}
.tatsujin-blog-modal__body {
    overflow: auto;
    height: calc(100% - 180px);
}
.tatsujin-blog-modal__item {
    border-bottom: 2px dotted #E5E5E5;
}
.tatsujin-blog-modal__link {
    display: block;
  padding: 13px 0;
  position: relative;
  color: var(--text-dark);
  font-weight: bold;
}

.tatsujin-blog-modal__child-link::after,
.tatsujin-blog-modal__link::after {
  content: "";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-top: 2px solid #535353;
    border-right: 2px solid #535353;
    transform: rotate(45deg);
    top: 50%;
    bottom: 50%;
    margin: auto;
    right: 27px;
    transition: all 0.2s ease;
}

.tatsujin-blog-modal__child-list {
    padding-left: 1em;
}
.tatsujin-blog-modal__child-item {
    border-bottom: 2px dotted #E5E5E5;
}
.tatsujin-blog-modal__child-item:last-of-type {
    border-bottom: none;
}
.tatsujin-blog-modal__child-link {
    font-size: 14px;
    font-weight: bold;
    color: #111111;
    padding: 13px 0;
    display: block;
    position: relative;
}
.tatsujin-blog-modal__child-item:first-of-type .tatsujin-blog-modal__child-link {
  padding-top: 8px;
}

.tatsujin-blog-modal__child-link:hover:after,
.tatsujin-blog-modal__link:hover:after {
  right: 20px;
}
.tatsujin-blog-modal__logo {
    position: absolute;
    width: 80%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.tatsujin-blog-modal__logo img {
  width: 100%;
}

@media screen and (max-width: 480px) {
  .tatsujin-blog-modal__content {
    width: 92%;
  }
}



/* ==========================
   404
========================== */

.error404__inner {
    padding: 150px 0;
}
.error404__title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}
.error404__text {
  text-align: center;
    margin-bottom: 60px;
}








/* ==========================
   Page-specific
========================== */




/* ==========================
   Utility
========================== */

.f10 { font-size: 10px; line-height: 1.4; }
.f12 { font-size: 12px; line-height: 1.5; }

.f14 { font-size: clamp(14px, 1.2vw, 14px); line-height: 1.7; } 
.f16 { font-size: clamp(15px, 1.3vw, 16px); line-height: 1.7; }
.f18 { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.6; }

.f20 { font-size: clamp(18px, 1.7vw, 20px); line-height: 1.5; }
.f24 { font-size: clamp(20px, 2.2vw, 24px); line-height: 1.4; }
.f28 { font-size: clamp(22px, 2.6vw, 28px); line-height: 1.3; }
.f32 { font-size: clamp(26px, 3vw, 32px); line-height: 1.25; }

.bold {font-weight: bold;}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}
.font-quicksand {
  font-family: "Quicksand", sans-serif;
}
.center {text-align: center;}

.pcbr{display:inline;}
.spbr{display:none;}

@media screen and (max-width:900px){
  .pcbr{display:none;}
  .spbr{display:inline;}
}