@charset "UTF-8";
body {
  overflow-x: initial;
}

#mainContent {
  overflow-x: initial;
}

#pageTop .wp-pagenavi {
  justify-content: space-between;
}
#pageTop .wp-pagenavi .postLink {
  width: 50px;
  height: 50px;
}
#pageTop .wp-pagenavi .postLink a {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

@media screen and (min-width: 768px) {
  #pageTop .wp-pagenavi {
    padding-bottom: 180px;
  }
}
@media screen and (max-width: 767px) {
  #pageTop .wp-pagenavi {
    padding-bottom: 140px;
  }
}
.secCrossTalkArea {
  background-image: linear-gradient(to right, rgba(235, 109, 30, 0.1) 1px, transparent 1px), linear-gradient(to bottom, rgba(235, 109, 30, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* -------------------------------------------
 * 共通レイアウト（画面幅で変動しないプロパティ）
 * ------------------------------------------- */
.secTalkTheme .themeLabel {
  color: #EB6D1E;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid #EB6D1E;
  padding-bottom: 4px;
}
.secTalkTheme .themeLabel::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #EB6D1E;
  margin-right: 8px;
}
.secTalkTheme .themeTitle {
  color: #EB6D1E;
  font-weight: bold;
}
.secTalkTheme .staffCards {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.secTalkTheme .staffCard {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.secTalkTheme .staffImg {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.secTalkTheme .staffImg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.secTalkTheme .staffProfileHead {
  display: flex;
  flex-direction: column;
}
.secTalkTheme .staffMeta {
  color: #EB6D1E;
  font-weight: bold;
}
.secTalkTheme .staffName {
  color: #EB6D1E;
  font-weight: bold;
}
.secTalkTheme .staffDesc {
  color: #EB6D1E;
  font-weight: bold;
}
.secTalkTheme .btnDetail {
  background-color: #F28A4A;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  border: 1px solid #F28A4A;
}
.secTalkTheme .btnDetail:hover {
  background: #fff;
  color: #F28A4A;
}
.secTalkTheme .crossMark {
  position: relative;
}
.secTalkTheme .crossMark::before, .secTalkTheme .crossMark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #EB6D1E;
}
.secTalkTheme .crossMark::before {
  transform: rotate(45deg);
}
.secTalkTheme .crossMark::after {
  transform: rotate(-45deg);
}

/* -------------------------------------------
 * PC用レイアウト (min-width: 768px)
 * ------------------------------------------- */
@media only screen and (min-width: 768px) {
  .secTalkTheme {
    padding: 80px 0;
  }
  .secTalkTheme .themeHeader {
    margin-bottom: 50px;
  }
  .secTalkTheme .themeLabel {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .secTalkTheme .themeTitle {
    font-size: clamp(22px, 1.67vw, 24px);
    line-height: 1.6;
  }
  .secTalkTheme .staffCards {
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
  }
  .secTalkTheme .staffCard {
    flex: 1;
    padding: 30px;
    display: block;
  }
  .secTalkTheme .staffCardTop {
    margin-bottom: 20px;
  }
  .secTalkTheme .staffImg {
    border-radius: 16px;
    aspect-ratio: 16/9;
    margin-bottom: 24px;
  }
  .secTalkTheme .staffProfileHead {
    gap: 8px;
  }
  .secTalkTheme .staffMeta {
    font-size: 12px;
  }
  .secTalkTheme .staffName {
    font-size: clamp(18px, 1.39vw, 20px);
  }
  .secTalkTheme .staffDesc {
    font-size: 12px;
    line-height: 1.6;
    flex-grow: 1;
    /* テキスト量が違ってもボタンが最下部で揃うようにする */
  }
  .secTalkTheme .pcBtn {
    margin-top: 16px;
    width: 94px;
    height: 34px;
    font-size: 13px;
    align-self: flex-start;
  }
  .secTalkTheme .spBtn {
    display: none;
    /* PCではSP用ボタンを非表示 */
  }
  .secTalkTheme .crossMark {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    margin: auto;
  }
}
/* -------------------------------------------
 * SP用レイアウト (max-width: 767px)
 * ------------------------------------------- */
@media only screen and (max-width: 767px) {
  .secTalkTheme {
    padding: 50px 0;
  }
  .secTalkTheme .themeHeader {
    margin-bottom: 40px;
  }
  .secTalkTheme .themeLabel {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .secTalkTheme .themeTitle {
    font-size: clamp(14px, 5.13vw, 20px);
    line-height: 1.5;
  }
  .secTalkTheme .staffCards {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .secTalkTheme .staffCard {
    width: 100%;
    padding: 24px;
  }
  .secTalkTheme .staffCardTop {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }
  .secTalkTheme .staffImg {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    margin: 0;
  }
  .secTalkTheme .staffProfileHead {
    gap: 8px;
    padding-top: 4px;
  }
  .secTalkTheme .staffMeta {
    font-size: 12px;
  }
  .secTalkTheme .staffName {
    font-size: clamp(14px, 4.62vw, 18px);
  }
  .secTalkTheme .staffDesc {
    font-size: 14px;
    line-height: 1.6;
  }
  .secTalkTheme .spBtn {
    font-size: 12px;
    align-self: flex-start;
    margin-top: 4px;
    height: 30px;
    width: 80px;
  }
  .secTalkTheme .pcBtn {
    display: none;
    /* SPではPC用ボタンを非表示 */
  }
  .secTalkTheme .crossMark {
    width: 30px;
    height: 30px;
    margin: auto;
  }
}
/* -----------------------------------
   変動しないプロパティ（色・ベースレイアウト）
----------------------------------- */
.secThemeContent {
  background: #fff;
  padding: 100px 0 0px;
}
.secThemeContent .bottomImgArea img {
  overflow: hidden;
  border-radius: 20px;
}

.secTheme .themeContentWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Stickyを機能させるために必須 */
}
.secTheme .imgArea {
  /* Sticky設定を追加 */
  position: sticky;
  top: 20px; /* 固定ヘッダーがある場合はその高さ分に合わせて調整してください */
}
.secTheme .imgArea img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.secTheme .theme {
  color: #EB6D1E;
  font-weight: 700;
  line-height: 1;
}
.secTheme .tl {
  color: #EB6D1E;
  font-weight: 700;
  line-height: 1.8;
}
.secTheme .repeatArea {
  display: flex;
  flex-direction: column;
}
.secTheme .content {
  display: flex;
  flex-direction: column;
}
.secTheme .top {
  display: flex;
  align-items: center;
  color: #868686;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.secTheme .top img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secTheme .bottom {
  color: #868686;
  font-size: 14px;
  line-height: 1.8;
}

/* -----------------------------------
   変動するプロパティ（PC：余白・サイズ）
----------------------------------- */
.secTheme {
  padding: 0px 0 80px;
}
.secTheme .themeContentWrap {
  gap: 40px;
}
.secTheme .imgArea {
  width: 42%;
}
.secTheme .textArea {
  width: 54%;
}
.secTheme .theme {
  font-size: clamp(20px, 1.53vw, 22px);
  margin-bottom: 0px;
  font-family: "Libre Franklin", sans-serif;
  font-weight: bold;
}
.secTheme .tl {
  font-size: clamp(20px, 1.53vw, 22px);
  padding: 32px 0 40px;
}
.secTheme .repeatArea {
  gap: 25px;
}
.secTheme .content {
  gap: 8px;
}
.secTheme .top {
  gap: 10px;
  font-size: 14px;
}
.secTheme .top img {
  width: 48px;
  height: 48px;
}
.secTheme .bottom {
  font-size: clamp(14px, 1.04vw, 15px);
}

/* -----------------------------------
   変動するプロパティ（SP：メディアクエリをまとめる）
----------------------------------- */
@media only screen and (max-width: 767px) {
  .secTheme {
    padding: 0px 0 70px;
  }
  .secTheme .themeContentWrap {
    flex-direction: column;
    gap: 30px;
  }
  .secTheme .imgArea {
    width: 100%;
    /* スマホ時は追従（Sticky）を解除 */
    position: static;
    top: auto;
  }
  .secTheme .textArea {
    width: 100%;
  }
  .secTheme .theme {
    font-size: clamp(14px, 4.1vw, 16px);
    margin-bottom: 0px;
  }
  .secTheme .tl {
    font-size: clamp(14px, 4.62vw, 18px);
    padding: 0;
    margin-bottom: 30px;
  }
  .secTheme .repeatArea {
    gap: 30px;
  }
  .secTheme .content {
    gap: 12px;
  }
  .secTheme .top {
    gap: 12px;
    font-size: 13px;
  }
  .secTheme .top img {
    width: 40px;
    height: 40px;
  }
  .secTheme .bottom {
    font-size: clamp(14px, 3.85vw, 15px);
  }
}/*# sourceMappingURL=style.css.map */