/*
Theme Name: Beblock Being
*/






@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;

  /* Accent / Brand */
  --accent: #bb000a;

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

  /* Text Colors */
  --text-base: #1D1D1D;
  --text-light: #f5f5f5;
  --text-wht: #ffffff;

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

:root{
  --cubic: cubic-bezier(0.22, 0.61, 0.36, 1);
}
html{
  scroll-behavior:smooth;
}

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


/* ==========================
   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(100%, 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;
}
.ceo-blog {
  background-color: var(--bg-dark);
  position: relative;
  padding-bottom: clamp(150px, calc(150px + (100vw - 750px) * 200 / 650), 350px);
}
.ceo-blog::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 40px;
  left: 0;
  top: -39px;
  background-color: var(--bg-dark);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.tatsujins-info {
  background-color: var(--bg-wht);
  position: relative;
    padding: 200px 0 300px;
}
.tatsujins-info::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 40px;
  left: 0;
  top: -39px;
  background-color: var(--bg-wht);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.vision-img {
  position: absolute;
  width: 94%;
  top: -8.4vw;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 10;
}
.vision-img img {
  width: 100%;
}

.license-info {
  background-color: var(--bg-dark);
  position: relative;
  padding-bottom: 100px;
  padding-top: 180px;
  padding-top: clamp(100px, calc(24.2vw - 62.4px), 180px);
  scroll-margin-top: 200px;
}
.license-info::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 40px;
  left: 0;
  top: -39px;
  background-color: var(--bg-dark);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.news-letter-archive {
  padding: 50px 0 100px;
  background-color: var(--bg-wht);
}

.footer {
  background-color: var(--bg-dark);
  position: relative;
  padding: 50px 0 60px;
  background-image: url(../img/footer_vision.png);
  background-repeat: no-repeat;
  background-size: 430px;
  background-position: right 40px bottom -160px;
}
.footer::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 40px;
  left: 0;
  top: -39px;
  background-color: var(--bg-dark);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.footer-container {
  width: min(100%, 1700px);
  margin: 0 auto;
  padding-inline: 60px;
}

.post-section {
  background-color: var(--bg-wht);
  position: relative;
  margin-top: 36px;
  padding-bottom: 150px;
}

.post-section::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 40px;
  left: 0;
  top: -39px;
  background-color: var(--bg-wht);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.post-related {
  background-color: var(--bg-base);
  position: relative;
  padding-bottom: 135px;
}
.post-related::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 40px;
  left: 0;
  top: -39px;
  background-color: var(--bg-base);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}



@media screen and (max-width: 750px) {
  
  .container--article {
    padding-inline: 0;
  }
  .container--narrow {
    padding-inline: 15px;
  }
  
  .ceo-blog::after {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  
  .tatsujins-info {
        padding: 80px 0 150px;
  }
  .tatsujins-info::after {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .vision-img {
    top: -15.3vw;
  }
    
  .license-info::after {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .footer {
    padding: 20px 0 30px;
    background-size: 290px;
    background-position: right 10px bottom -50px;
  }
  .footer::after {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .post-section {
    padding-bottom: 100px;
}
  .post-section::after {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

}


/* ==========================
   Common
========================== */
.link-underline {
  color: var(--accent);
  text-decoration: underline;
}


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

/* ---- header ---- */
.header {
  background: var(--bg-base);
  position:sticky;
  top:0;
  z-index:1000;
  width:100%;
  background:transparent;
  padding: 16px 20px 20px;
  margin-bottom: 15px;
  transition:background-color .2s ease, backdrop-filter .2s ease, box-shadow .2s ease;
}
.header.is-fixed{
  background:rgba(255,255,255,.3);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}
/* Safari対策：ぼかしが弱い/効かない時に読みやすさ確保 */
.header.is-fixed .header__tagline{
  opacity:.9;
}
.header__inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__branding {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__logo img {
  display: block;
  height: 40px;
  /* 実際のロゴサイズに調整 */
}
.header__tagline {
  font-size: 12px;
}
.header__nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header__nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__nav-item a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
.header__search img {
  width: 20px;
  height: 20px;
}
.header__SPnav {
  display: none;
}


@media screen and (max-width: 1200px) {
  .header__nav-item a {
    font-size: 14px;
  }
}


@media screen and (max-width: 900px) {

  .header__branding {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px; 
  }
}

@media screen and (max-width: 750px) {

  .header {
    padding: 11px 14px 11px;
  }
  .header__logo img {
    height: 30px;
  }
  .header__tagline {
    display: none;
  }
  .header__nav-list {
      display: none;
  }
  .header__nav-list.is-open {
    display: block;
    position: fixed;
    width: 100%;
    background-color: #fff;
    left: 0;
    top: 0;
    height: 100vh;
    padding: 32% 20% 20% 20%;
    z-index: 100;
  }
  .header__nav-item {
    margin-bottom: 20px;
}

  .header__SPnav {
    display: block;
    width: 34px;
    position: relative;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    padding: 19px 0 5px;
    z-index: 200;
  }
  .SPnav_line {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-base);
  }
  .SPnav_line:nth-of-type(1) {
    top: 2px;
  }
  .SPnav_line:nth-of-type(2) {
    top: 10px;
  }
  .header__SPnav .font-poppins {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 15px;
  }
  .header__SPnav.is-open .SPnav_line:nth-of-type(1) {
  top: 10px;
  transform: rotate(24deg);
}

.header__SPnav.is-open .SPnav_line:nth-of-type(2) {
  top: 10px;
  transform: rotate(-24deg);
}

.SPnav_line {
  transition: transform 0.3s ease, top 0.1s ease;
}

}


/* ===== Search Modal ===== */

.search-modal {
  position: fixed;
  inset: 0;
    z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s var(--cubic);
}

/* 表示状態 */
.search-modal.is-active {
  opacity: 1;
  visibility: visible;
}

/* オーバーレイ */
.search-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* ダイアログ本体 */
.search-modal__dialog {
  position: relative;
  width: min(96%, 1300px);
  height: 90vh;
  max-height: 720px;
  margin: 60px auto;
  padding: 5% 2%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: 0.4s var(--cubic);
}

/* モーダル本体の表示アニメーション */
.search-modal.is-active .search-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 閉じるボタン */
.search-modal__close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 16px; 
  right: 24px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.search-modal__close::before,
.search-modal__close::after {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 1px;
  left: 5px;
  background-color: var(--text-base);
}
.search-modal__close::before {
  transform: rotate(45deg);
}
.search-modal__close::after {
  transform: rotate(-45deg);
}

/* 中身 */
.search-modal__inner {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
}

.search-modal__title {
  font-size: 20px;
  margin-bottom: 24px;
}

.search-modal__form {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}

.search-modal__input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 16px;
}
.search-modal__input:focus {
  outline: none;
}
.search-modal__submit {
  padding: 12px 24px;
}

.search-modal__form:has(.search-modal__input:focus) {
  border-bottom: 2px solid #1E1E1E;
}
.modal-category {
  position: relative;
}
.modal-category__title {
    width: 148px;
    margin-bottom: 20px;
}
.modal-category__title img {
    width: 100%;
}
.modal-category__list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 1%;
    margin-bottom: 50px;
}
.modal-category__item {
    width: calc(98% / 3);
}
.modal-category__link {
  width: 100%;
  display: block;
  position: relative;
}
.modal-category__link img {
  width: 100%;
}
.modal-category__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 17px;
  font-weight: bold;
}
.modal-tag {
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    padding: 20px 0;
}
.modal-tag__title {
    width: 66px;
    margin-top: -36px;
    background-color: #fff;
    padding-right: 10px;
}
.modal-tag__title img {
    width: 100%;
}
.modal-tag__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
    margin-top: 15px;
}
.modal-tag__item {
    
}
.modal-tag__link {
  display: block;
  background-color: var(--bg-tag);
    padding: 2px 9px 2px;
  border-radius: 3px;
  font-size: 15px;
}
.modal-articles__link {
  display: none;
}
.modal-brands {
  display: none;
}



@media screen and (max-width: 750px) {
  .search-modal__dialog {
    width: 100%;
    height: 100vh;
    top: 0;
    margin: 0;
    border-radius: 0;
    max-height: inherit;
    padding: 60px 0px 0;
  }
  .search-modal__close {
    top: 8px;
    right: 8px;
  }
  .search-modal__inner {
    overflow-y: auto;
    padding: 0;
  }
  .modal-category {
    margin: 0 20px;
}
  .modal-category__title {
    width: 130px;
    margin-bottom: 15px;
}
  .modal-category__list {
    gap: 4px;
  }
  .modal-category__link {
    overflow:hidden;
    border-radius:5px; 
    aspect-ratio: 2.5; 
  }
  .modal-category__thumb {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  .modal-category__item {
    width: calc((100% - 4px) / 2);
  }
  .modal-category__label {
    font-size: 13px;
  }
  .modal-tag {
    margin: 0 20px 40px;
  }
  .modal-tag__title {
    width: 56px;
}
  .modal-tag__link {
    font-size: 12px;
  }
  .search-modal__form {
    margin: 0 20px 30px;
  }

  .search-modal__input {
    padding: 7px 7px;
    font-size: 14px;
  }
  .search-modal__submit {
    padding: 8px 11px;
  }
  .search-modal__submit img {
    width: 20px;
  }
  .modal-articles__link {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
  }
  .modal-articles__link a {
    display: block;
    padding: 5px 0 5px 5px;
    font-size: 13px;
    font-weight: bold;
  }
  .modal-brands{
    display: block;
    background-color: var(--bg-dark);
    padding: 40px 20px;
  }
  .modal-brands__list{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
  }
  .modal-brands__item{
    width: 100%;
  }
  .modal-brands__link{
    display: block;
    background-color: #3A3A3A;
    border-radius: 5px;
    position: relative;
    padding: 10px 40px 10px 15px;
  }
  .tatsujins.modal-brands__link {
    padding: 15px 40px 15px 15px;
  }
  .newsletter.modal-brands__link {
    padding: 19px 40px 19px 17px;
  }
  .modal-brands__content{
    display: flex;
        align-items: center;
  }
  .tatsujins .modal-brands__logo {
    width: 120px;
    margin-right: 5%;
  }
  .meetoma .modal-brands__logo {
    width: 120px;
    margin-right: 5%;
  }
  .newsletter .modal-brands__logo {
    width: 84%;
    line-height: 1;
  }
  .modal-brands__logo img {
    width: 100%;
  }
  .modal-brands__text {
    color: var(--text-wht);
    font-size: 10px;
  }
  .tatsujins .modal-brands__text{
    width: calc(95% - 120px);
  }
  .meetoma .modal-brands__text{
    width: calc(95% - 130px);
  }
  .modal-brands__link::after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(-45deg);
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

}








/* ---- Card ---- */
.flex-container {
  display: flex;
  flex-wrap: wrap; 
  padding-left: 0;
  gap: 40px 3.7%;
}
.flex-container > .article-card--featured {
  width: 100%;
}
.flex-container > .article-card:not(.article-card--featured) {
  width: calc((100% - 7.4%) / 3);
}
.article-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card a {
  display: block;
  background-color: var(--bg-wht);
  border-radius: 8px;
  height: 100%;
  position: relative;
}
.article-card a::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-right: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  right: 0;
  bottom: 0;
}
.article-card.article-card--featured a {
    display: flex;
  border-radius: 15px;
    justify-content: space-between;
    align-items: center;
}
.article-card__thumb {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1.98;
}
.article-card--featured .article-card__thumb {
  border-radius: 15px;
  width: 60%;
  height: 100%;
}
.article-card--featured .article-card__body {
  width: 38%;
    padding: 26px 24px;
}
.article-card__label {
    background-color: var(--accent);
    display: inline-block;
    padding: 7px 16px 8px;
    line-height: 1;
    border-radius: 3px;
    margin-bottom: 10px;
}
.article-card__label img {
    width: 44px;
}
.article-card__body {
    padding: 7% 7%;
}
.article-card--featured .article-card__title {
    font-size: clamp(18px, 1.7vw, 20px);
    line-height: 1.5;
}
.article-card a,
.article-card a img,
.article-card a h3 {
  transition: all 0.4s var(--cubic);
}
.article-card a:hover {
  box-shadow: 0 3px 25px rgba(68, 67, 68, 0.1);
  transform: translateY(-5px);

}
.article-card a:hover h3 {
  text-decoration: underline;
}
.article-card a:hover .article-card__thumb img {
  transform: scale(1.05);
}
.article-card__title {
  margin-bottom: 20px;
}

@media screen and (max-width: 900px) {

  .flex-container > .article-card:not(.article-card--featured) {
    width: calc((100% - 3.7%) / 2);
  }
  .article-card.article-card--featured a,
  .article-card--featured .article-card__thumb {
    border-radius: 8px;
  }
  .article-card.article-card--featured a {
    flex-direction: column;
  }
  
  .article-card--featured .article-card__thumb {
    width: 100%;
  }
  .article-card--featured .article-card__body {
    width: 100%;
  }

}

@media screen and (max-width: 750px) {

  .flex-container > .article-card:not(.article-card--featured) {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
  }
  .article-card a {
    border-radius: 4px;
  }
  .article-card__thumb {
    border-radius: 4px;
  }
}




/* ---- Tag ---- */
.tag-list {
    display: flex;
    gap: 8px;
    font-size: 15px;
    flex-wrap: wrap;
}
.tag-list__item {
    background-color: var(--bg-tag);
    padding: 4px 9px;
    border-radius: 3px;
}
.article-card__tags.tag-list {
    margin-bottom: 15px;
    font-size: 12px;
}
.article-card__date {
    font-size: 15px;
}
.article-card--featured .article-card__tags.tag-list {
    margin-bottom: 15px;
    font-size: 13px;
}

/* ---- ceo-blog slider ---- */
.ceo-blog__inner {
    display: flex;
    padding-left: 0.5%;
    justify-content: space-between;
    padding-top: 20px;
    margin-bottom: 70px;
}
.ceo-blog__title {
    width: 362px;
    position: relative;
}
.ceo-blog__title-img {
    position: absolute;
    width: 400px;
    z-index: 100;
    margin-top: 80px;
}
.ceo-blog__title-img img {
    width: 100%;
}
.ceo-blog-menu{
  writing-mode: vertical-rl;
  color: var(--text-wht);
  padding-top: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.ceo-blog-menu__item{
    font-size: 18px;
  }

.ceo-blog__slider {
    width: calc(100% - 362px);
    position: relative;
    padding: 70px 0 50px 70px;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    overflow: hidden;
}
.ceo-blog__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  opacity: 0.3;
  transform: scale(1.1);
  transition: background-image 0.6s ease;
  z-index: 0;
}
.ceo-blog__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.9);
  mix-blend-mode: soft-light;
}
.ceo-blog__bg-clip{
  position:absolute;
  inset:0;
  overflow:hidden;         /* ← ここで blur のにじみをカット */
  border-radius:inherit;   /* PCの丸みを継承 */
  z-index:0;
  pointer-events:none;
}

.ceo-blog__slider-body {
  position: relative;
  z-index: 1;
}
.ceo-blog__slider-body-wrap li {
  padding: 100px 0;
}



.card02 {
  overflow: hidden;
  padding-top: 10px;
}
.card02 .swiper,
.card02 .swiper-wrapper {
  overflow: visible;
}
.card02 .swiper-slide {
  width: 36rem;
}
.card02 .swiper-controller {
  display: flex;
  align-items: center;
  margin-top: 3.2rem;
}
.card02 .swiper-pagination {
  margin-right: auto;
  width: calc(100% - 139px);
}
.swiper-button-prev {
  margin-right: 16px;
}
.swiper-button-next {
  margin-right: 45px;
}
.swiper-button-prev,
.swiper-button-next {
  width: 39px;
  height: 39px;
  border: 1px solid var(--bg-wht);
  border-radius: 50%;
  position: relative;
}
.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: var(--bg-wht);
  top: 0;
  bottom: 0;
  margin: auto;
}
.swiper-button-prev::before {
  left: 12px;
}
.swiper-button-next::before {
  right: 12px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--bg-wht);
  border-bottom: 2px solid var(--bg-wht);
  top: 0;
  bottom: 0;
  margin: auto;
}
.swiper-button-prev::after {
  transform: rotate(135deg);
  left: 12px;
}
.swiper-button-next::after {
  transform: rotate(-45deg);
  right: 12px;
}

.swiper-pagination-bullet {
    display: inline-block;
    width: 150px;
    height: 3px;
    margin-right: 5px;
    background-color: rgba(255, 255, 255, 0.26);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgba(255, 255, 255, 1);
    height: 5px;
}
.card02 .slide-media img {
    height: calc(100% + 16px);
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
}

.ceo-slide__body {
    margin-top: 14px;
}
.ceo-slide__thum {
  overflow: hidden;
}
.ceo-slide__thum img {
  width: 100%;
}
.ceo-slide__title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
}
.ceo-slide__body {
  color: var(--text-wht);
}
.ceo-slide__tags {
  display: flex;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.ceo-slide__tagitem {
  padding: 4px 9px;
  border-radius: 3px;
  border: 1px solid var(--text-wht);
}
.card02 a,
.card02 .ceo-slide__thum img {
  transition: all 0.4s var(--cubic);
}
.card02 a:hover {
    transform: translateY(-10px);
    z-index: 100;
}
.card02 a:hover .ceo-slide__title {
  text-decoration: underline;
}
.card02 a:hover .ceo-slide__thum img {
  transform: scale(1.05);
}


@media screen and (max-width: 1200px) {
  .ceo-blog__inner {
    flex-direction: column;
    gap: 50px;
    padding-left: 0;
    padding-top: 0;
  }
  .ceo-blog__title {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  .ceo-blog__title-img {
    position: static;
    width: 100%;
    margin-top: 0;
  }
  .ceo-blog-menu {
    padding-top: 30px;
}
  .ceo-blog__slider {
    width: 100%;
    border-radius: 0;
    padding: 23px;
    overflow: visible;
  }
  .card02 .swiper-slide {
    width: 29rem;
  }
  .ceo-slide__thum {
    border-radius: 8px;
  }
  .swiper-pagination-bullet {
    width: 80px;
  }
  .ceo-blog__slider-body {
    transform: translateY(-47px);
    position: relative;
    z-index: 5;
  }
}


@media screen and (max-width: 750px) {
  
  .ceo-blog__title-img {
    width: 70%;
    margin: 0 auto;
    max-width: 360px;
}
  .ceo-blog-menu {
    display: none;
}
  .card02 .swiper-slide {
    width: 100%;
  }
  .ceo-slide__title {
    font-size: 18px;
  }
  .swiper-pagination-bullet {
    width: 50px;
}
}



/* ---- ceo-blog card ---- */
.ceo-blog__card a {
  background-color: var(--card-dark);
  color: var(--text-light);
}
.ceo-blog__card .tag-list__item {
  background-color: var(--bg-tag-dark);
}


/* ---- youtube ---- */

.youtube-intro {
  margin: 80px 0 40px;
  padding-top: 80px;
  border-top: 1px solid #4D4D4D;
}
.youtube-intro__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
    gap: 20px;
}
.youtube-intro__content {
  width: 43%;
  color: var(--text-light);
}
.youtube-intro__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.youtube-intro__movie {
  width: 49%;
}
.youtube-intro__movie img {
  width: 100%;
}

.youtube-area__logo {
  width: 105px;
  margin-bottom: 5px;
}
.youtube-area__logo img {
  width: 100%;
}
.youtube-area__text {
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}
.youtube-area__list {
  display: flex;
  gap: 33px;
  flex-wrap: wrap;
}
.youtube-area__item {
  width: 14%;
}
.youtube-area__item img {
  width: 100%;
}

@media screen and (max-width: 750px) {
  .youtube-intro__inner {
    flex-direction: column;
  }
  .youtube-intro__content {
    width: 100%;
    max-width: 500px;
  }
  .youtube-intro__movie.youtube-intro__movie {
    width: 100%;
    max-width: 500px;
  }
  .youtube-area__list {
    gap: 6.6%;
  }
  .youtube-area__item {
    width: 20%;
  }
}


/* ---- tatsujins News ---- */
.tatsujins-news {
  display: flex;
  justify-content: space-between;
}
.tatsujins-news__lead {
  width: 200px;
  text-align: center;
}
.tatsujins-news__logo img {
  width: 100%;
}
.tatsujins-news__logo {
  margin-bottom: 35px;
}
.tatsujins-news__text {
  margin-bottom: 30px;
}
.tatsujins-news__list-area {
  width: calc(95% - 200px);
}
.tatsujins-news__item {
  display: flex;
  justify-content: space-between;
    align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #B1B1B1;
}
.tatsujins-news__item-link {
    width: calc(98% - 115px);
}
.tatsujins-news__item-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tatsujins-news__thumb {
    width: 216px;
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 2 / 1;
}
.tatsujins-news__thumb img {
  transition: all 0.4s var(--cubic);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tatsujins-news__info {
    width: calc(97% - 216px);
}
.tatsujins-news__date {
    font-size: 21px;
}
.tatsujins-news__title {
  font-weight: bold;
    margin-top: 3px;
}
.tatsujins-news__title::after {
  content: "";
  background: url(../img/link.png) no-repeat;
  background-size: 13px;
  width: 13px;
  height: 11px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 7px;
}
.tatsujins-news__item-link:hover .tatsujins-news__title {
  text-decoration: underline;
}

.tatsujins-news__item-link:hover .tatsujins-news__thumb img {
    transform: scale(1.1);
}




.tatsujins-news__brand {
    width: 115px;
}
.tatsujins-news__brand img {
    width: 100%;
}


@media screen and (max-width: 900px) {
  .tatsujins-news {
    flex-direction: column;
        gap: 17px;
  }
  .tatsujins-news__lead {
    width: 100%;
    text-align: left;
}
.tatsujins-news__logo {
    width: 40%;
    min-width: 140px;
    margin-bottom: 20px;
}

.tatsujins-news__text {
  margin-bottom: 20px;
}
.tatsujins-news__list-area {
    width: 100%;
}
.tatsujins-news__item {
    padding: 15px 0;
}
.tatsujins-news__item-link {
    width: 100%;
}
.tatsujins-news__brand {
    display: none;
}
.tatsujins-news__thumb {
    width: 120px;
}
.tatsujins-news__info {
    width: calc(97% - 120px);
}
.tatsujins-news__date {
    font-size: 16px;
}
.tatsujins-news__title {
    font-weight: bold;
    margin-top: 0;
}





}




/* ---- license info ---- */

.license-news {
  text-align: right;
  margin-right: auto;
  padding-right: clamp(60px, calc(60px + (100vw - 750px) * 57 / 610), 117px);
  position: absolute;
  width: 100%;
    top: -84px;
  z-index: 1;
}
/* .license-news__title {
  color: rgba(112, 112, 112, 0.26);
  font-size: 174px;
}
.license-news__initial {
  color: var(--accent);
}*/
.license-news__lead {
  color: var(--text-light);
    margin-top: -10px;
} 

.license-news__title_logo {
  width: 623px;
    margin-left: auto;
} 
.license-news__title_logo img {
    width: 100%;
}
.license-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 3.5%;
}
.license-list__item {
  width: 31%;
}
.license-list__thumb {
  width: 100%;
  transition: all 0.4s var(--cubic);
}
.license-list__link:hover .license-list__thumb {
  opacity: 0.5;
}

@media screen and (max-width: 900px) {

  .license-news {
    top: -65px;
  }
  .license-news__title_logo {
    width: 450px;
}
}

@media screen and (max-width: 750px) {
  .license-news {
    padding-right: 6vw;
        top: -63px;
  }
  .license-news__title_logo {
    width: 350px;
}
  .license-list__item {
    width: 45%;
  }
}

@media screen and (max-width: 550px) {
  .license-news {
    top: -13.6vw;
}
  .license-news__title_logo {
    width: 68vw;
}
.license-news__lead {
    font-size: 2.8vw;
    margin-top: -1.4vw;
}
  .license-list__item {
    width: 100%;
  }
  
}




/* ---- News letter archive ---- */

.news-letter-archive__inner {
  position: relative;
  padding: 50px 0;
    z-index: 1;
}
.news-letter-archive__inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 93%;
  height: 85%;
  background-color: #F2F2F2;
  top: 140px;
  right: 0;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
    z-index: -1;
}
.newsletter-list {
  display: flex;
  justify-content: space-between;
}
.newsletter-list__logo {
  width: 28px;
  margin-right: 2%;
}
.newsletter-list__logo img {
  width: 100%;
}
.newsletter-list__item {
  width: calc((83% - 36px) / 3);
  transition: all 0.4s var(--cubic);
}
.newsletter-list__item:hover {
    transform: translateY(-8px);
}
.newsletter-list__meta {
  margin-bottom: 5px;
}
.newsletter-list__date {
  font-size: 34px;
}
.newsletter-list__vol {
  color: #515151;
  font-size: 23px;
  font-weight: 500;
  display: inline-block;
  margin-left: 5px;
}
.newsletter-list__thumb {
  position: relative;
  box-shadow: 0 4px 16px rgba(60, 60, 100, 0.08);
}
.newsletter-list__thumb img  {
  width: 100%;
}
.newsletter-list__thumb::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-right: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  top: 0;
  left: 0;
}

@media screen and (max-width: 900px) {
  .newsletter-list {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 500px;
    margin: auto;
  }
  .newsletter-list__logo {
    width: 22px;
    margin-right: 9%;
  }
  .newsletter-list__item:nth-of-type(2) {
    width: calc(81% - 28px);
  }
  .newsletter-list__item:nth-of-type(3) {
    margin-right: 8%;
  }
  .newsletter-list__item:nth-of-type(3),
  .newsletter-list__item:nth-of-type(4) {
    width: 46%;
    margin-top: 10%;
  }
  .newsletter-list__date {
    font-size: clamp(25px, calc(6vw - 20px), 34px);
  }
  .newsletter-list__vol {
    font-size: clamp(16px, calc(4.6667vw - 19px), 23px);
  }
}


@media screen and (max-width: 750px) {
  .news-letter-archive__inner {
    padding: 0;
  }
  .news-letter-archive__inner::after {
    width: 95%;
    height: 89%;
    top: 5%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }
  
  
  .newsletter-list__item:nth-of-type(3) .newsletter-list__date,
  .newsletter-list__item:nth-of-type(4) .newsletter-list__date {
    font-size: clamp(15px, calc(2.86vw + 3.57px), 25px);
  }
  .newsletter-list__item:nth-of-type(3) .newsletter-list__vol,
  .newsletter-list__item:nth-of-type(4) .newsletter-list__vol {
    font-size: clamp(10px, calc(1.71vw + 3.14px), 16px);
  } 
  .newsletter-list__thumb::after {
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
}
}



/* ---- footer ---- */
.site-footer {
  color: var(--text-light);
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 100px;
}
.site-footer__logo {
  width: 294px;
  margin-bottom: 15px;
}
.site-footer__logo img {
  width: 100%;
}
.site-footer__sns {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer__sns-item {
  width: 29px;
}
/* .site-footer__sns-item:last-of-type {
  width: 38px;
} */
.site-footer__sns-item img {
  width: 100%;
}
.site-footer__sns-link img {
  transition: all 0.4s var(--cubic);
}
.site-footer__sns-link:hover img {
    opacity: 0.5;
}
.site-footer__tiktok-link {
  transition: all 0.4s var(--cubic);
}
.site-footer__tiktok-link:hover {
    opacity: 0.5;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.site-footer__nav {
  display: flex;
  gap: 30px;
  font-weight: bold;
}
.site-footer__copy {
  font-size: 15px;
}
.backTopBtn {
  position: fixed;
  display: block;
  width: 60px;
  height: 60px;
  background: rgb(255 255 255 / 45%);
  bottom: 30px;
  right: 30px;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 3px 6px -1px rgba(0, 0, 128, 0.2), 0 0 8px -4px rgba(0, 0, 128, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
  display: none;
    z-index: 100;
}
.backTopBtn:hover {
    background-color: rgba(197, 197, 197, 0.5);
    backdrop-filter: blur(2px);
}
.backTopBtn span {
  width: 2px;
  background-color: var(--bg-dark);
  border-radius: 50px;
  margin: auto;
  position: relative;
  display: block;
  height: 23px;
  margin-top: 19px;
  transition: all 0.2s ease;
}
.backTopBtn span::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 1px;
  width: 6px;
  height: 6px;
  border: solid 2px var(--bg-dark);
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg) skew(8deg, 8deg);
  transform-origin: left top;
}
.backTopBtn:hover span {
    height: 34px;
    margin-top: 14px;
}



@media screen and (max-width: 750px) {
  .footer-container {
    padding-inline: 20px;
  }
  .site-footer__top {
    flex-direction: column;
    gap: 50px;
  }
  .site-footer__logo {
    width: 65%;
  }
  .site-footer__nav {
    flex-wrap: wrap;
    gap: 14px 30px;
  }
  .site-footer__nav-item {
    width: 38%;
    min-width: 126px;
  }
  .site-footer__bottom {
    gap: 40px;
  }
  .backTopBtn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .backTopBtn span {
    margin-top: 15px;
  height: 20px;
  }
  .backTopBtn:hover span {
    height: 30px;
    margin-top: 11px;
  }
  

}






/* ---- post ---- */
.breadcrumb {
    margin-bottom: 30px;
}
.breadcrumb__list {
  display: flex;
  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__tags {
  display: flex;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 11px;
  flex-wrap: wrap;
}
.post-header__tag a {
    background-color: var(--bg-tag);
    padding: 4px 9px;
    border-radius: 3px;
}
.post-header__title {
  font-weight: bold;
  font-size: clamp(20px, 4vw, 30px);
  margin-bottom: 12px;
}
.post-header__meta {
  margin-bottom: 12px;
}
.post-eyecatch {
  margin-bottom: 40px;
}
.post-eyecatch img {
  width: 100%;
}

.post-intro {
  margin-bottom: 60px;
}


/* 目次プラグインの調整 */
div#ez-toc-container {
  border: none;
  padding: 0;
  box-shadow: none;
  margin-bottom: 0;
}
div#ez-toc-container a {
  transition: all 0.4s var(--cubic);
}
div#ez-toc-container a:hover,
div#ez-toc-container a:visited:hover {
  text-decoration: none;
  color: var(--accent);
}
div#ez-toc-container a:visited {
    color: inherit;
}

.post-body #ez-toc-container {
    display: none;
}
.post-index {
  padding: 30px 0;
  border-bottom: 2px solid var(--border);
  position: relative;
  margin-bottom: 70px;
}
.post-index::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
  left: 0;
  top: 0;
}
.post-index::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 43px);
  height: 2px;
  background-color: var(--border);
  right: 0;
  top: 0;
}
.post-index__title {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 26px;
}
.post-index__title span {
  font-size: 20px;
  display: inline-block;
  margin-right: 14px;
  font-weight: 700;
}
.post-index__item {
  margin-bottom: 10px;
}
.post-index__item a:hover {
  color: var(--accent);
}
.post-index__item a {
  transition: all 0.4s var(--cubic);
}
.post-persons {
  margin-bottom: 100px;
}
.post-person__inner {
  background-color: #F6F6F6;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.post-person__thumb {
  width: 83px;
  height: 83px;
  border-radius: 50%;
  overflow: hidden;
}
.post-person__thumb img {
  width: 100%;
}
.post-person__body {
  width: calc(95% - 83px);
}
.post-person__meta {
  font-weight: bold;
  margin-bottom: 10px;
}
.post-person__name,
.post-person__role {
  display: inline-block;
}


@media screen and (max-width: 750px) {
  .breadcrumb__list {
    font-size: 10px;
  }
  .post-index {
    margin-bottom: 35px;
}
.post-persons {
    margin-bottom: 40px;
}
  .post-person__inner {
    display: block;
    position: relative;
  }
  .post-person__thumb {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
  }
  .post-person__body {
    width: 100%;
  }
  .post-person__meta {
    padding-left: 70px;
    min-height: 60px;
    display: flex;
    align-items: center;
  }
}

/* ---- .post-body 内 ---- */
.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 p[class*="is-style-talk-"] + p {
  margin-top: 0;
}
.post-body > .post-body__heading--main,
.post-body > .post-body__heading--sub,
.post-body > .post-body__heading--small {
  margin-top: clamp(34px, 6vw, 64px);
}

.post-body > .post-body__heading--main + *,
.post-body > .post-body__heading--sub + *,
.post-body > .post-body__heading--small + * {
  margin-top: clamp(16px, 3vw, 24px);
}

.post-body > .post-body__heading--main:first-child,
.post-body > .post-body__heading--sub:first-child,
.post-body > .post-body__heading--small:first-child {
  margin-top: 0;
}

.post-body__heading--main {
  font-weight: 900;
  font-size: clamp(18px, 1.2vw, 22px);
  padding: 11px 13px 13px 20px;
  position: relative;
}

.post-body__heading--main::after {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: var(--accent);
  left: 0;
  top: 0;
}

.post-body p {
  margin-bottom: 0;
}

.is-style-interviewer-comment {
  position: relative;
  padding-left: 2em;
  font-weight: bold;
}

.is-style-interviewer-comment::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 1.9em;
  height: 1px;
  background: var(--text-base);
}

/* 通常本文のあとに質問コメントが来る時だけ少し広く */
.post-body p + .is-style-interviewer-comment {
  margin-top: clamp(24px, 4vw, 40px);
}

.post-body__img img {
  width: 100%;
}

/* h3 */
.post-body__heading--sub {
  font-size: 18px;
  font-weight: 700;
  padding: 9px 14px;
  background-color: #f3f3f3;
}

/* h4 */
.post-body__heading--small {
  font-size: 17px;
  font-weight: 700;
  /* color: var(--accent); */
    padding: 5px 17px;
    border-bottom: 2px dotted #afafaf;
    position: relative;
}
.post-body__heading--small::after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    bottom: 0;
    top: 0;
    margin: auto;
    left: 2px;
    background-color: #b80009;
}

/* 本文内リンク */
.post-body p a,
.post-body .wp-block-list li a {
  color: var(--accent);
}

.post-body p a:hover,
.post-body .wp-block-list li a:hover {
  text-decoration: underline;
}

/* =========================
   各発言者（共通部分）
========================= */
p[class*="is-style-talk-"] {
  font-size: 15px;
  font-weight: bold;
  color: var(--talk-color);
  padding: 10px 0 10px 42px;
  position: relative;
  margin-bottom: 0;
}

p[class*="is-style-talk-"]::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  border-radius: 50%;
  background-image: var(--talk-icon);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* =========================
   各発言者（人物ごと）
========================= */
.is-style-talk-koala {
  --talk-color: #669500;
  --talk-icon: url('../img/icon_koala.png');
}

.is-style-talk-panda {
  --talk-color: #00a8c5;
  --talk-icon: url('../img/icon_panda.png');
}

.is-style-talk-okapen {
  --talk-color: #e93b75;
  --talk-icon: url('../img/icon_okapen.png');
}

.is-style-talk-suzuko {
  --talk-color: #e66f00;
  --talk-icon: url('https://beblock-being.com/wp-content/uploads/2026/03/suzuko.jpg');
}

.is-style-talk-waka {
  --talk-color: #00a8c5;
  --talk-icon: url('https://beblock-being.com/wp-content/uploads/2026/04/waka.jpg');
}

.is-style-talk-kona {
  --talk-color: #669500;
  --talk-icon: url('https://beblock-being.com/wp-content/uploads/2026/04/kona.jpg');
}






blockquote {
  position: relative;
  border-top: 2px solid #e5e5e5;
  border-bottom: 2px solid #e5e5e5;
  padding: 20px;
}

blockquote.wp-block-quote p {
  margin-bottom: 0;
}

blockquote::before,
blockquote::after {
  position: absolute;
  background-color: #FFFFFF;
  color: #896a6a;
  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;
}

blockquote cite {
  display: block;
  padding-right: 30px;
  font-size: 0.8rem;
  text-align: right;
  color: #808080;
  margin-top: 12px;
}

.note-box {
  padding: 23px 30px;
  border-radius: 10px;
}

.note-box p {
  margin-bottom: 0;
}

.note-box--yellow {
  background: #FFFDEB;
}

.note-box--gray {
  background: #F5F6F8;
}

.is-style-btn-primary a {
  background-color: var(--accent);
  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;
}

.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(--accent);
  font-size: 12px;
}

.post-body .wp-block-list {
  padding-left: 0;
}

.post-body .wp-block-list li + li {
  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: #b80009;
  top: 0.8em;
  left: 8px;
  border-radius: 50%;
}

.post-body .wp-block-list li ul {
  margin-top: 8px;
}

.post-body .wp-block-list li ul li::after {
  border-radius: 0;
  width: 7px;
  height: 2px;
  top: 0.9em;
}

.post-body figcaption.wp-element-caption {
  color: #555555;
  font-size: 14px;
  margin-top: 8px;
}

/* table カスタム */
.table-guide {
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.table-guide.wp-block-table thead {
  border-bottom: none;
}

.table-guide thead tr th {
  background-color: #f2f2f2;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 16px;
  text-align: left;
  border: none;
}

.table-guide tbody tr td {
  padding: 16px;
  border: none;
  border-bottom: 1px dotted #ccc;
  font-size: 14px;
  vertical-align: middle;
  line-height: 1.6;
}

.table-guide tbody tr:last-child td {
  border-bottom: 1px dashed #ccc;
}

.table-guide tbody tr td:first-child {
  font-weight: 700;
  white-space: nowrap;
  width: 200px;
}

@media screen and (max-width: 750px) {
  .post-body__heading--main {
    padding: 5px 13px 7px 16px;
  }

  .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 > .post-body__heading--main,
  .post-body > .post-body__heading--sub,
  .post-body > .post-body__heading--small {
    margin-top: 32px;
  }

  .post-body > .post-body__heading--main + *,
  .post-body > .post-body__heading--sub + *,
  .post-body > .post-body__heading--small + * {
    margin-top: 14px;
  }
  .note-box {
    padding: 15px 20px;
    border-radius: 5px;
}
}

/* 著者名 */
.post-author__wrap {
  margin-bottom: 70px;
}
.post-author{
  padding: 30px 20px;
  border-bottom: 2px solid var(--border);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-author:nth-of-type(n+2) {
    margin-top: 20px;
}
.post-author::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
  left: 0;
  top: 0;
}
.post-author::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 43px);
  height: 2px;
  background-color: var(--border);
  right: 0;
  top: 0;
}
.post-author__icon{
  width: 118px;
  height: 118px;
  border-radius: 50%;
  overflow: hidden;
}
.post-author__icon img{
  width: 100%;
}
.post-author__info{
  width: calc(95% - 118px);
}
.post-author__label{
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 7px;
}
.post-author__name{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
.post-author__desc {
  font-size: clamp(12px, 1.2vw, 14px);
}


/* シェア */
.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__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(--accent);}


@media screen and (max-width: 750px) {
  .post-author__wrap {
    margin-bottom: 60px;
  }

}


@media screen and (max-width: 480px) {
    .post-author {
    flex-direction: column;
        gap: 10px;
  }
  .post-author__info {
    width: 100%;
  }
  .post-author__label {
    text-align: center;
  }
  .post-author__name {
    text-align: center;
  }

}






/* ---- post-related(関連記事) ---- */

.post-related__inner {
    padding-top: 60px;
}
.post-related__title{
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: bold;
}
.post-related__item{
  margin-bottom: 14px;
}
.post-related__link{
  display: block;
  border-radius: 8px;
  background-color: var(--bg-wht);
  padding: 28px;
  position: relative;
}
.post-related__link::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0px;
    bottom: 0px;
    border-right: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
}
.post-related__card{
  display: flex;
  justify-content: space-between;
}
.post-related__thumb{
  width: 248px;
  overflow: hidden;
  border-radius: 8px;
    aspect-ratio: 1.98;
}
.post-related__thumb img{
  width: 100%;
}
.post-related__body{
  width: calc(97% - 248px);
}
.post-related__heading{
  margin-bottom: 20px;
}
.post-related__tags{
  display: flex;
  font-size: 10px;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.post-related__tag{
    background-color: var(--bg-tag);
    padding: 4px 9px;
    border-radius: 3px;
  }
.post-related__date{
  font-size: 12px;
}

.article-card__tags.tag-list {
    margin-bottom: 15px;
    font-size: 12px;
}
.post-related__link,
.post-related__link img,
.post-related__link h3 {
  transition: all 0.4s var(--cubic);
}
.post-related__link:hover {
  box-shadow: 0 3px 25px rgba(68, 67, 68, 0.1);
  transform: translateY(-5px);

}
.post-related__link:hover h3 {
  text-decoration: underline;
}
.post-related__link:hover .post-related__thumb img {
  transform: scale(1.05);
}


@media screen and (max-width: 750px) {
  .post-related {
    padding-bottom: 100px;
}
  .post-related__inner {
    padding-top: 10px;
  }
  .post-related__title {
    font-size: 18px;
}
  .post-related__thumb {
    width: 30%;
    border-radius: 4px;
}
.post-related__body {
    width: 67%;
}
.post-related__link {
  padding: 14px;
  border-radius: 4px;
}
.post-related__heading {
    font-size: 12px;
    margin-bottom: 10px;
}
}


/* ---- archive系ページ ---- */

.archive-title {
    padding: 60px 0 80px;
}
.archive-title__heading{
  margin-bottom: 13px;
}
.archive-title__heading img{
  width: 100%;
}
.archive-title__heading .heading--category {
  width: 350px;
}
.archive-title__heading .heading--tag {
  width: 125px;
}

.archive-title__desc{
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: bold;
}


@media screen and (max-width: 750px) {
  .archive-title {
    padding: 30px 0 40px;
}
.archive-title__heading {
  margin-bottom: 10px;
}
  .archive-title__heading .heading--category {
    width: 220px;
}
}



/* ---- Category紹介ページ ---- */

.theme{}
.theme--category{}
.theme--feature{}
.theme--series{}
.theme__inner{}
.theme__heading {
  width: 360px;
  margin: 50px auto 140px;
}
.theme__heading img {
  width: 100%;
}
.theme__list-wrap {
    margin-bottom: 200px;
}
.theme__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
}
.theme__item {
    width: 48%;
    overflow: hidden;
    border-radius: 20px;
    background-color: #fff;
}
.theme__thumb{}
.theme__thumb img{
  width: 100%;
}
.theme__body {
    padding: 30px;
}
.theme__title {
  margin-bottom: 12px;
}
.theme__title span {
  font-size: 13px;
  line-height: 1.2;
  display: block;
  font-weight: bold;
}
.theme__title-link {
  font-size: 25px;
  font-weight: bold;
  padding-right: 31px;
  position: relative;
  display: inline-block;
}
.theme__title-link::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  right: 0;
  top: 10px;
}
.theme__title-link::after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(225deg);
  right: 8px;
  top: 17px;
}

.theme__description{
  font-size: 14px;
  margin-bottom: 30px;
}
.theme__tag-list{
  display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}
.theme__tag-link{
  display: block;
    background-color: var(--bg-tag);
    padding: 2px 9px 2px;
    border-radius: 3px;
    font-size: 15px;
}


@media screen and (max-width: 750px) {
  .theme__heading {
        width: 170px;
    margin-top: 40px;
    margin-bottom: 30px;
    margin-left: 0;
}
  .theme__list {
    width: 100%;
    max-width: 600px;
    margin: auto;
}
  .theme__item {
    width: 100%;
    border-radius: 10px;
}
.theme__body {
    padding: 25px;
}
.theme__title-link {
    font-size: 22px;
}
.theme__title-link::before {
    top: 8px;
}
.theme__title-link::after {
    top: 15px;
}
.theme__tag-link {
    font-size: 12px;
}

}



/* ---- button ---- */
.c-btn-wrap{
  text-align: center;
  margin: 120px auto 50px;
}
.c-btn{
  display: inline-block;
  border: 2px solid var(--text-base);
  border-radius: 40px;
  font-size: 16px;
  font-weight: bold;
  padding: 14px 20px;
  width: 284px;
  position: relative;
  transition: all 0.3s var(--cubic);
}
.c-btn:hover {
  background-color: rgba(0, 0, 0, 0.02);
  letter-spacing: 0.15em;
}
.c-btn__icon {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--accent);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  overflow: hidden;
}
.c-btn__icon::before {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 2px;
  background-color: var(--bg-wht);
  top: 0;
  bottom: 0;
  margin: auto;
  left: 8px;
  transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.c-btn__icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--bg-wht);
  border-bottom: 2px solid var(--bg-wht);
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
  right: 9px;
  transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes c-btn-arrow-line{
  0%{transform: translateX(0);opacity:1;}
  40%{transform: translateX(8px);opacity:0;}
  60%{transform: translateX(-6px);opacity:0;}
  100%{transform: translateX(0);opacity:1;}
}

@keyframes c-btn-arrow-head{
  0%{transform: translateX(0) rotate(-45deg);opacity:1;}
  40%{transform: translateX(8px) rotate(-45deg);opacity:0;}
  60%{transform: translateX(-6px) rotate(-45deg);opacity:0;}
  100%{transform: translateX(0) rotate(-45deg);opacity:1;}
}

.tatsujins-news__list-link:hover:before,
.c-btn:hover .c-btn__icon::before{
  animation: c-btn-arrow-line .35s ease-out forwards;
}
.tatsujins-news__list-link:hover:after,
.c-btn:hover .c-btn__icon::after{
  animation: c-btn-arrow-head .35s ease-out forwards;
}

/* 色違い */
.c-btn--inverse {
    border-color: var(--text-wht);
    color: var(--text-wht);
}
.license-info .c-btn--inverse {
  font-size: 14px;
  font-weight: normal;
}
.license-info .c-btn--inverse .font-poppins {
  font-size: 18px;
  font-weight: bold;
}

.tatsujins-news__list-link {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  padding: 8px 50px 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--text-base);
  position: relative;
}
.tatsujins-news__list-link::before {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 2px;
  background-color: var(--text-base);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 12px;
  transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.tatsujins-news__list-link::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-base);
  border-bottom: 2px solid var(--text-base);
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
  right: 13px;
  transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media screen and (max-width: 750px) {
  .c-btn-wrap {
    margin: 50px auto 0;
}
}




/* ---- ページネーション ---- */
.pagination {
    margin-top: 60px;
}

ul.page-numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
}

a.page-numbers,
span.page-numbers.current,
span.page-numbers.dots {
  display: inline-block;
  min-width: 48px;
  text-align: center;
  padding: 11px 14px;
  border-radius: 5px;
}

a.page-numbers {
  border: 1px solid #232323;
  transition: all 0.5s ease;
}

a.page-numbers:hover {
  background-color: var(--bg-wht);
}
span.page-numbers.current {
  background-color: var(--accent);
  color: var(--text-wht);
  border: 1px solid var(--accent);
}
span.page-numbers.dots {
    padding: 7px 2px 0;
    min-width: inherit;
}


/* ---- 達人ズ更新情報アーカイブ ---- */
.archive-tatsujins__logo img {
    width: 200px;
}
.archive-tatsujins__logo span {
    font-size: 18px;
    font-weight: bold;
    color: #232323;
    display: inline-block;
    margin-left: 15px;
    vertical-align: top;
    margin-top: 13px;
}


/* ---- 404 not found ---- */
.notfound__inner {
  padding: 200px 0;
}
.notfound__title {
    font-size: 30px;
}

/* ==========================
   Page-specific
========================== */
/* News List Page */

/* ==========================
   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-oswald {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}

.center {text-align: center;}

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

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