@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.8.6
*/


#container {
  background-color: #fff;
}

@media screen and (min-width: 769px) {
  #container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #fff !important; /* 念のため */
  }

  html {
    background-color: #fff !important;
  }
}




/************************************
** モバイル固定ヘッダー
************************************/


div.header-container{
display: none;
}

/* ▼ モバイルヘッダー（ロゴとハンバーガー） */
.custom-mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.mobile-logo img {
  height: 35px;
  width: auto;
  display: block;
}

/* ▼ ハンバーガーアイコン */
#hamburger-toggle {
  position: fixed;
  top: 15px;
  right: 35px;
  width: 15px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

#hamburger-toggle .bar {
  position: absolute;
  left: 0;
  width: 32px;
  height: 1px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#hamburger-toggle .top {
  top: 8px;
}

#hamburger-toggle .bottom {
  top: 18px;
}

#hamburger-toggle.open .top {
  transform: rotate(25deg);
  top: 13px;
}

#hamburger-toggle.open .bottom {
  transform: rotate(-25deg);
  top: 13px;
}

/* 画像タイトル用の調整（中央揃え＋幅調整など） */
.category-title-img {
  display: block;
  max-width: 60%;
  height: auto;
  margin: 0 auto 20px;
  padding: 40px 0;
}



/* ▼ メニュー本体 */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff; /* ← シンプル白背景 */
  z-index: 999;
  padding: 80px 24px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}



.mobile-nav.menu-open {
  opacity: 1;
  visibility: visible;
}

/* ▼ メニューリスト */
.simple-menu {
  list-style: none;
  padding: 30px 10px 0 10px;
  margin: 0 0 40px;
}

.simple-menu li {
  margin-bottom: 24px;
}

.simple-menu li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #111;
}

/* ▼ CTAボタン（大きめ・角丸） */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cta-button {
  position: relative;
  display: block;
  padding: 16px 60px 16px 20px; /* ← 右に余白広めにして矢印スペースを作る */
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
}

/* CTAボタン内の矢印アイコンを右端に配置 */
.cta-button::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: #fff;
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 色バリエーション */
.cta-button.blue {
  background: #000;
}

.cta-button.dark {
  background: #00B900;
}



/* ▼ オーバーレイ背景 */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 900;
}

.menu-overlay.active {
  display: block;
}


/* ▼ アニメーション定義 */
@keyframes textRevealUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

/* ▼ 初期状態：アニメ前は見えない */
.simple-menu li,
.cta-button {
  overflow: hidden;
  display: block;
  opacity: 1; /* ← li自体は表示してOK */
}

.simple-menu li span,
.cta-button span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

/* ▼ メニューが開いたらアニメ発動 */
.mobile-nav.menu-open .simple-menu li span,
.mobile-nav.menu-open .cta-button span {
  animation: textRevealUp 0.5s ease forwards;
}

.mobile-nav.menu-open .simple-menu li:nth-child(1) span { animation-delay: 0.1s; }
.mobile-nav.menu-open .simple-menu li:nth-child(2) span { animation-delay: 0.1s; }
.mobile-nav.menu-open .simple-menu li:nth-child(3) span { animation-delay: 0.1s; }
.mobile-nav.menu-open .simple-menu li:nth-child(4) span { animation-delay: 0.1s; }
.mobile-nav.menu-open .simple-menu li:nth-child(5) span { animation-delay: 0.1s; }
.mobile-nav.menu-open .simple-menu li:nth-child(6) span { animation-delay: 0.1s; }

.mobile-nav.menu-open .cta-button:nth-child(1) span { animation-delay: 0.1s; }
.mobile-nav.menu-open .cta-button:nth-child(2) span { animation-delay: 0.1s; }


/* PC画面用に中央寄せ・最大幅を設定 */
@media screen and (min-width: 769px) {
  .custom-mobile-header {
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  .custom-mobile-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px; /* ← コンテンツ幅に制限 */
    height: 60px;
    background: #fff;
    z-index: -1;
    border-left: 1px solid transparent;  /* Firefox対策 */
  }

  .custom-mobile-header .header-left {
    max-width: 1000px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }



  .mobile-nav {
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;         /* ← ここを変更！ */
    max-width: 90%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 8px;
  }


  #hamburger-toggle {
    right: calc(5vw + 180px); /* ロゴとのバランス調整 */
  }
}

/* === PT Career menu refinement (2026-07) === */
.mobile-nav {
  top: 0;
  width: 100vw;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  box-sizing: border-box;
  padding: 102px clamp(20px, 5vw, 48px) 30px;
  border: 0;
  border-radius: 0;
  background: #f7f2ec;
  color: #111;
  font-family: "Helvetica Neue", "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.mobile-nav::before {
  content: "EXPLORE PT CAREER";
  display: block;
  width: min(820px, 100%);
  margin: 0 auto 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #111;
  color: #f09a43;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .2em;
}

.mobile-nav::after {
  content: "CAREER MEDIA FOR PHYSICAL THERAPISTS";
  display: block;
  width: min(820px, 100%);
  margin: 22px auto 0;
  color: #777;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .18em;
}

.simple-menu {
  width: min(820px, 100%);
  margin: 0 auto 22px;
  padding: 0;
  border-bottom: 1px solid #111;
  counter-reset: ptc-menu;
}

.simple-menu li {
  display: block;
  margin: 0;
  overflow: visible;
  border-top: 1px solid #111;
  counter-increment: ptc-menu;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}

.simple-menu li a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  min-height: 78px;
  align-items: center;
  gap: 14px;
  padding: 12px 6px;
  color: #111;
  font-size: clamp(19px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.035em;
  transition: color .2s ease, padding .2s ease;
}

.simple-menu li a::before {
  content: "0" counter(ptc-menu);
  color: #f09a43;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.simple-menu li a::after {
  content: "↗";
  font-size: 15px;
  font-weight: 400;
  transition: transform .2s ease;
}

.simple-menu li span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: visible;
  opacity: 1;
  transform: none;
  animation: none;
}

.simple-menu li span::after {
  color: #777;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .15em;
}

.simple-menu li:nth-child(1) span::after {
  content: "CAREER INTERVIEW";
}

.simple-menu li:nth-child(2) span::after {
  content: "SEMINAR & LEARNING";
}

.simple-menu li:nth-child(3) span::after {
  content: "CAREER JOURNAL";
}

.simple-menu li:nth-child(4) span::after {
  content: "FOR PARTNERS";
}

.simple-menu li a:hover,
.simple-menu li a:focus-visible {
  padding-right: 12px;
  padding-left: 12px;
  background: #111;
  color: #fff;
  outline: 0;
}

.simple-menu li a:hover span::after,
.simple-menu li a:focus-visible span::after {
  color: #bbb;
}

.simple-menu li a:hover::after,
.simple-menu li a:focus-visible::after {
  transform: translate(2px, -2px);
}

.mobile-nav.menu-open .simple-menu li {
  opacity: 1;
  transform: none;
}

.mobile-nav.menu-open .simple-menu li span,
.mobile-nav.menu-open .cta-button span {
  opacity: 1;
  transform: none;
  animation: none;
}

.mobile-nav.menu-open .simple-menu li:nth-child(1) {
  transition-delay: .05s;
}

.mobile-nav.menu-open .simple-menu li:nth-child(2) {
  transition-delay: .1s;
}

.mobile-nav.menu-open .simple-menu li:nth-child(3) {
  transition-delay: .15s;
}

.mobile-nav.menu-open .simple-menu li:nth-child(4) {
  transition-delay: .2s;
}

.cta-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(820px, 100%);
  gap: 8px;
  margin: 0 auto;
}

.cta-button {
  display: flex;
  min-height: 74px;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 31px 52px 14px 18px;
  border: 1px solid #111;
  border-radius: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .04em;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease, background-color .2s ease;
}

.cta-button.blue::before,
.cta-button.dark::before {
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .17em;
}

.cta-button.blue::before {
  content: "CONTACT";
  color: #f09a43;
}

.cta-button.dark::before {
  content: "OFFICIAL LINE";
  color: rgba(255, 255, 255, .75);
}

.cta-button::after {
  right: 15px;
  width: 27px;
  height: 27px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 13px;
}

.cta-button.blue:hover,
.cta-button.blue:focus-visible {
  background: #f09a43;
  color: #111;
  outline: 0;
}

.cta-button.dark:hover,
.cta-button.dark:focus-visible {
  background: #079d13;
  color: #fff;
  outline: 0;
}

.mobile-nav.menu-open .cta-button {
  opacity: 1;
  transform: none;
}

.mobile-nav.menu-open .cta-button:nth-child(1) {
  transition-delay: .24s;
}

.mobile-nav.menu-open .cta-button:nth-child(2) {
  transition-delay: .28s;
}

.cta-button span {
  opacity: 1;
  transform: none;
}

#hamburger-toggle {
  width: 32px;
  height: 30px;
  padding: 0;
}

#hamburger-toggle.open .top {
  top: 13px;
  transform: rotate(45deg);
}

#hamburger-toggle.open .bottom {
  top: 13px;
  transform: rotate(-45deg);
}

body:has(.mobile-nav.menu-open) {
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .mobile-nav {
    left: 50%;
    width: min(1000px, 90%);
    max-width: none;
    padding: 104px 80px 34px;
    border-right: 1px solid #111;
    border-left: 1px solid #111;
    border-radius: 0;
    transform: translateX(-50%);
  }

  .simple-menu li a {
    min-height: 84px;
  }
}

@media screen and (max-width: 520px) {
  .mobile-nav {
    padding: 88px 20px 24px;
  }

  .mobile-nav::before {
    margin-bottom: 12px;
    padding-bottom: 9px;
    font-size: 8px;
  }

  .simple-menu {
    margin-bottom: 15px;
  }

  .simple-menu li a {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    min-height: 68px;
    gap: 9px;
    padding: 10px 4px;
    font-size: 18px;
  }

  .simple-menu li span::after {
    font-size: 7px;
  }

  .cta-buttons {
    gap: 6px;
  }

  .cta-button {
    min-height: 66px;
    padding: 28px 40px 11px 13px;
    font-size: 11px;
  }

  .cta-button.blue::before,
  .cta-button.dark::before {
    top: 10px;
    left: 13px;
  }

  .cta-button::after {
    right: 10px;
    width: 24px;
    height: 24px;
  }

  .mobile-nav::after {
    margin-top: 16px;
    font-size: 7px;
  }
}


/************************************
** フロントページ
************************************/
.top-main {
  width: 100%;
  overflow: hidden;
  background: #fff;
}


/* トップヒーロー全体 */
.top-hero {
  width: 100%;
  padding-top: 60px; /* ヘッダー分 */
  padding-bottom: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

@media screen and (min-width: 769px) {
.top-hero {
margin-top: -40px;
}
}

/* 画像とキャッチまとめ */
.hero-inner {
  position: relative;
  width: 100%; /* 画面幅の90%だけ使用（右側に少し余白） */
  aspect-ratio: 4 / 5; /* ← ここで正しく高さも制御する */
  background: #fff;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .hero-inner {
    aspect-ratio: 4 / 3;
  }
}

/* 最初に両方非表示にしておく（JSのスライド用） */
.slide-pc,
.slide-sp {
  display: none;
}

/* スマホではスマホ用画像だけ表示 */
@media screen and (max-width: 768px) {
  .slide-sp {
    display: block;
  }
}

/* PCではPC用画像だけ表示 */
@media screen and (min-width: 769px) {
  .slide-pc {
    display: block;
  }
}



/* 画像本体 */
.hero-inner img {
  width: 100%;
  height: 100%; /* ← 高さを必ず合わせる */
  object-fit: cover; /* ここは cover にして自然な5:4表示に */
  display: block;
}



/* キャッチコピー */
.hero-overlay {
  position: absolute;
  bottom: 5%;
  left: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  z-index: 2; /* ← ★画像より前面に表示させる */
}

/* テキスト本体 */
/* アニメーションは初回のみ発動するように1回制限 */
.catch-line {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #FA9D72, #F9B976, #F7CD6B);
  padding: 3px 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  width: 0%;
  max-width: max-content;
  animation: expandFromLeft 1s ease forwards;
  animation-fill-mode: forwards; /* ← 完了後はそのまま状態を保持 */
  animation-iteration-count: 1;   /* ← 1回だけ実行 */
}


.catch-line:nth-child(1) {
  animation-delay: 0s;
}

.catch-line:nth-child(2) {
  animation-delay: 0.5s;
}

.catch-line span {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  display: inline-block;
  line-height: 1; /* ← 文字上下の隙間も完全に詰める！ */
}


.break-line {
  font-family: 'Noto Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.05em;
}



/* 幅を0%→100%に広げるだけのアニメーション */
@keyframes expandFromLeft {
  0% {
    width: 0%;

  }
  100% {
    width: 100%;

  }
}

/* フェード用の共通クラス */
.fade-slideshow {
  position: relative;
}

.fade-slideshow img.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}

/* 最初に表示される画像 */
.fade-slideshow img.slide.active {
  opacity: 1;
  z-index: 1;
}


/************************************
** NEWSセクション
************************************/
/* POPEYE風NEWSセクション */
.popeye-news {
  width: 90%;
  max-width: 800px;
  margin: 40px auto 0;
  padding-bottom: 20px;
  font-family: "Helvetica Neue", "Hiragino Sans", sans-serif;
  color: #111;
}

.popeye-news-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid #111;
  padding-bottom: 6px;
  margin-bottom: 24px;
}

/* リスト構造 */
.popeye-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各行 */
.popeye-news-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  font-size: 13px;
}

/* 日付 */
.popeye-news-date {
  color: #888;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* タイトルリンク */
.popeye-news-link {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
  font-weight: 500;
  line-height: 1.6;
  flex-grow: 1;
}

.popeye-news-link:hover {
  color: #000;
}





/************************************
** 子テーマ用のスタイルを書く
************************************/

/*見出し*/
.article h2,
.article h3,
.article h4,
.article h6 {
	background-color:initial;/*背景色リセット*/
	border:initial;/*上下左右の枠線リセット*/
	border-radius:initial;/*角の丸みリセット*/
}

.article h2 {
  font-size: 14px!important;
  background: #000;/*背景色*/
  padding: 20px 20px;/*余白*/
  color: #FFF;
  margin-bottom: 15px;
  margin-top: 40px;
  border-top: none;
  border-bottom: none;
  letter-spacing: 1px!important;
}

.article h3 {
  font-size: 14px !important;
  border-left: 5px solid black;
  color: #000;
  background-color: #f5f5f5;
  padding-left: 10px;
  margin-bottom: 15px;
  margin-top: 25px;
}

/** カスタム目次（H2 + H3） **/
.toc-003 {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 16px;
  font-family: sans-serif;
  margin-bottom: 30px;
}

.toc-003 .toc-title {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 2px 20px;
  margin-bottom: 12px;
  font-size: 12px;
  border-radius: 6px;
}

.toc-003 .toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- H2項目 --- */
.toc-003 .toc-list > li {
  margin-bottom: 2px;
  line-height: 1.3;
}

.toc-003 .toc-list > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #111;
  font-size: 11px;
  padding: 4px 0;
  position: relative;
}

.toc-003 .toc-list > li > a:hover {
  background-color: #eee;
}

.toc-003 .toc-text {
  flex: 1;
  position: relative;
  text-align: left;
  padding-right: 8px;
  text-decoration: underline;
  text-underline-offset: 2px;
  line-height: 1.3;
}

.toc-003 .toc-num {
  min-width: 2em;
  font-family: monospace;
  color: #000;
  background-color: #f8f8f8;
  padding-left: 6px;
  position: relative;
  z-index: 1;
}

.toc-003 .toc-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-bottom: 1px dotted #aaa;
  z-index: 0;
}

.toc-003 .toc-text span {
  position: relative;
  background-color: #f8f8f8;
  padding-right: 4px;
  z-index: 1;
}

/* --- H3項目 --- */
.toc-003 .toc-sublist {
  list-style: none;
  padding-left: 0; /* 左寄せ */
  margin: 0 0 6px 0;
}

.toc-003 .toc-sublist li {
  font-size: 11.5px;
  line-height: 1.3;
  margin-left: 0;
  padding-left: 0;
  padding: 2px 0;
}

.toc-003 .toc-sublist a {
  color: #444;
  text-decoration: none;
  padding-left: 0;
  display: inline-block;
}

.toc-003 .toc-sublist .toc-text {
  text-decoration: none;
  position: relative;
}

.toc-003 .toc-sublist .toc-text::after {
  display: none !important;
}

/* --- 表示制御 --- */
.toc-003.device-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .toc-003.device-only {
    display: block;
  }
}
.toc-003.pc-only {
  display: none;
}
@media screen and (min-width: 1025px) {
  .toc-003.pc-only {
    display: block;
  }
}





/************************************
** 投稿ページ
************************************/
@media screen and (max-width: 768px) {
    .main.main, div.sidebar {
        padding: 10px 0px!important;
    }
	
	.content {
        margin-top: -20px!important;
    }
	}
	div.entry-content.cf{
		padding: 0px 25px!important;
		letter-spacing: -0.05em!important;
	}
	
	.entry-header {
    margin-top: 55px;
  }

	.article .entry-header .entry-title {
  font-size: 20px !important;
  line-height: 1.5 !important;
  letter-spacing: -0.05em !important;
  padding:10px 30px!important;
}



.date-tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}






.post-category {
  background: #000;
  color: #fff;
  padding: 12px 8px;
  font-size: 12px;
  border-radius: 0;
  display: inline-block;
  margin: 0;
  line-height: 1;
}

.post-category a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}


.updated {
  font-size: 12px;
  color: #000;
  font-weight: bold;
}

.entry-content {
  letter-spacing: -0.03em; /* ← お好みで調整OK！ */
}



 /* テーブルデザイン */
table.nomad_table {
  max-width: 900px !important;
  width: 100%;
  margin: 15px auto !important;
  background: #FFF;
  text-align: center !important;
  font-size: 14px !important;
  display: block !important;
  overflow-x: scroll !important;
  overflow-y: hidden !important;
  white-space: nowrap !important;
  -webkit-overflow-scrolling: touch !important;
  color: #333 !important;
  border: none !important;
  border-collapse: collapse !important;
}

table.nomad_table a {
  color: #333 !important;
  text-decoration: none !important;
  transition: .2s;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.25em !important;
  font-size: 13px !important;
  display: block !important;
  position: relative !important;
  text-align: center !important;
}

table.nomad_table a:hover {
  opacity: .8;
}

table.nomad_table tr td,
table.nomad_table tr th {
  padding: 1.5em 2.2em !important;
  line-height: 1.25em !important;
  font-size: 14px !important;
  border: none !important;
  position: relative !important;
  text-align: center !important;
  vertical-align: middle !important;
}

table.nomad_table tr td {
  font-size: 13px !important;
}

table.nomad_table tr td:first-child {
  position: static !important;
  left: 0 !important;
  background: #FFF !important;
  z-index: 2;
}

table.nomad_table tr th:first-child {
  position: static !important;
  left: 0 !important;
  z-index: 2;
}

table.nomad_table tr td:nth-child(even) {
  background: #FAFAFA !important;
}

table.nomad_table tr th {
  padding: .8em 2em !important;
  background: #505050 !important;
  color: #fff !important;
  width: 100% !important;
  position: relative !important;
}

table.nomad_table tr th:nth-child(even):after {
  content: "";
  display: block !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .05);
  position: absolute;
}

table.nomad_table tr:nth-child(even) td:nth-child(even):after {
  content: "";
  display: block !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .03);
  position: absolute;
}

table.nomad_table::-webkit-scrollbar {
  width: 10px !important;
  height: 10px !important;
}

table.nomad_table::-webkit-scrollbar-track {
  background: #FAFAFA !important;
}

table.nomad_table::-webkit-scrollbar-thumb {
  border-radius: 5px !important;
  background: #505050 !important;
}

@media(max-width:480px) {

  table.nomad_table tr td,
  table.nomad_table tr th {
    padding: 2em !important;
    font-size: 12px !important;
  }

table.nomad_table tr th {
    padding: .8em 2em !important;
    font-size: 13px !important;
  }

table.nomad_table a {
    font-size: 10px !important;
  }

}

div.footer-meta{
display: none;
}


/* ========== カスタムカテゴリーウィジェット ========== */
.custom-category-widget {
  font-family: sans-serif;
  border: 1px solid #ccc;
  background-color: #fff;
  margin-bottom: 20px;
  margin: 0px 15px;
}

@media screen and (min-width: 769px) {
.custom-category-widget {
  margin-top: 50px;
}
}

.custom-category-widget .category-title {
  background-color: #000;
  color: #fff;
  padding: 16px 10px; /* ← 上下の余白を広げる */
  font-weight: bold;
  font-size: 14px;
  text-transform: lowercase;
  text-align: center; /* ← 中央揃え */
}

/* カテゴリーリスト */
.custom-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-category-list > li {
  border-bottom: 1px solid #ccc;
  position: relative;
}

/* カテゴリー名（クリックで展開） */
.custom-category-list .category-toggle {
  background: #fafafa;
  padding: 15px 12px 14px 36px; /* ← 上下を広げる */
  cursor: pointer;
  position: relative;
  font-size: 14px; /* ← カテゴリー文字サイズを小さく */
  font-weight: 600;
}

/* ▶ アイコン */
.custom-category-list .category-toggle::before {
  content: "▶";
  background: #000;
  color: #fff;
  font-size: 8px; /* ← 三角形を少し小さく */
  border-radius: 50%;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;           /* ← アニメーション設定 */
}

/* アコーディオンが開いたとき（下向きに回転） */
.custom-category-list li.open > .category-toggle::before {
  content: "▼";
}

/* ホバー */
.custom-category-list .category-toggle:hover {
  background-color: #f4f4f4;
}

/* 開いた時のアイコン */
.custom-category-list li.open > .category-toggle::before {
  content: "▼";
}

/* 投稿リスト（記事タイトル） */
.custom-category-list .post-list {
  display: none;
  padding: 8px 0 8px 32px;
  margin: 0;
  list-style: none;
}

/* 記事タイトル項目 */
.custom-category-list .post-list li {
  position: relative;
  padding: 0px 6px 6px 0px;
  font-size: 13px;
}

.custom-category-list .post-list li::before {
  content: "＞";
  position: absolute;
  margin-left: -20px;
  color: #999;
  font-size: 12px;
}

.custom-category-list .post-list li a {
  color: #333;
  text-decoration: none;
}

.custom-category-list .post-list li a:hover {
  text-decoration: underline;
}


/* アニメーション定義 */
@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 投稿リスト（記事タイトル） */
.custom-category-list .post-list {
  display: none;
  padding: 8px 0 8px 32px;
  margin: 0;
  list-style: none;
  animation: slideFadeIn 0.3s ease forwards;
  opacity: 0;
}

/* 表示時のアニメーション適用 */
.custom-category-list li.open > .post-list {
  display: block;
  animation: slideFadeIn 0.3s ease forwards;
  opacity: 1;
}

/************************************
** 人気記事
************************************/
.custom-popular-posts .popular-post-card {
  position: relative;
  overflow: visible; 
  background: #fff;
  border-radius: 0px;
  margin-bottom: 20px;
  margin-top: 10px;
  transition: transform 0.2s;
}
.custom-popular-posts .popular-post-card:hover {
  transform: translateY(-3px);
}
.custom-popular-posts .popular-post-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
/* アイキャッチ画像だけカード化 */
.custom-popular-posts .post-thumb {
  position: relative;
  border-radius: 0px;
}
.custom-popular-posts .post-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
  object-fit: cover;
}

/* 画像の下の情報ブロック */
.custom-popular-posts .post-info {
  margin-top: 12px;
  padding: 0 4px;
}
.custom-popular-posts .post-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  color: #222;
}
.custom-popular-posts .post-date {
  font-size: 11px;
  color: #4d4d4d;
  margin-top: 4px;
}

.custom-popular-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 16px!important;
  color: #fff;
  position: relative;
  display: block;
  padding: 16px 10px!important;
  background-color: #000!important; /* ← 白背景 */
  text-align: center;
}



/************************************
** ブログカード
************************************/
.simple-blog-card {
  display: block;
  border: 1.5px solid #000;
  background: #fafafa;
  border-radius: 0;
  padding: 15px;
  margin: 24px 0;
  position: relative;
  text-decoration: none;
  color: #222;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25); /* ← 追加 */
  transition: box-shadow 0.2s;
}

.simple-blog-card:hover {
  box-shadow: 0 3px 7px rgba(0,0,0,0.25);
}

.simple-blog-card .card-label {
  position: absolute;
  top: 0px;
  left: 0;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 0px;
}

.simple-blog-card .card-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.simple-blog-card .card-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 80px;
  overflow: hidden;
}

.simple-blog-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.simple-blog-card .card-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}





/************************************
** ロゴ
************************************/
/* ロゴ画像のサイズ調整 */
.site-logo {
  max-height: 50px;  /* ← 高さをお好みで調整 */
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto; /* 中央揃え */
}

/* ロゴ全体を中央寄せ（親要素のaタグ） */
.site-logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}



.marker-under {
background: linear-gradient(transparent 60%, #F7CD6B 60%);
}


/************************************
**新着記事
************************************/
/* =======================
   POPEYE風サイドウィジェットCSS
   ======================= */

/* 全体ブロック */
.pt-career-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 0;
  padding-right: 0;
  font-family: "Helvetica Neue", "Hiragino Sans", sans-serif;
  color: #111;
}

/* 見出し部分 */
.pt-career-heading {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: -8px;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

.pt-career-heading .pt-num {
  font-size: 12px;
  margin-right: 6px;
}

.pt-career-heading .pt-line {
  flex-grow: 1;
  height: 1px;
  background: #000;
  margin-right: 6px;
  max-width: 60px;
}

.pt-career-heading .pt-title {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  color: #111;
}

/* 新着・人気切り替え */
.pt-toggle-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.pt-toggle-btn {
  font-size: 12px;
  padding: 5px 12px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pt-toggle-btn.active,
.pt-toggle-btn:hover {
  background: #111;
  color: #fff;
}

/* 各記事アイテム */
.pt-career-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  text-align: left;
}

.pt-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 6px;
}

.pt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(10%);
  transition: filter 0.3s;
}

.pt-career-item:hover .pt-thumb img {
  filter: grayscale(0%);
}

.pt-text {
  flex: 1;
}

.pt-post-title {
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 4px;
  line-height: 1.5;
}

.pt-post-title a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.pt-post-title a:hover {
  color: #111;
}

.pt-date {
  font-size: 12px;
  color: #666;
}

@media screen and (max-width: 768px) {
  .pt-career-block {
    padding-left: 25px;
    padding-right: 25px;
  }
  .pt-career-item {
    flex-direction: row;
  }
}


/************************************
** アーカイブページ
************************************/
.archive-main {
  padding: 60px 5%;
  background: #fff;
  color: #333;
  font-family: 'Helvetica Neue', sans-serif;
}

.tag-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  font-family: 'Helvetica Neue', sans-serif;
  border-left: 5px solid #000;
  padding-left: 10px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}


.archive-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.archive-post-list {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .archive-post-list {
    grid-template-columns: 1fr 1fr;
  }
}

.archive-post-item {
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.archive-post-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.post-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9比率 */
  overflow: hidden;
  background-color: #eee;
}

.post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  padding: 20px;
}

.post-title {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}

.post-date {
  font-size: 0.8rem;
  color: #999;
}

.archive-post-list {
  padding-left: 0 !important;
}



/* === SEO改修 2026-07: ヒーローH1化に伴う調整 === */
h1.hero-copy {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: inherit;
  line-height: inherit;
  background: none;
}

/* === SEO改修 2026-07: パンくず === */
.ptc-breadcrumb { font-size: 0.8rem; margin: 8px 0 16px; }
.ptc-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; margin: 0; padding: 0; }
.ptc-breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 4px; color: #999; }
.ptc-breadcrumb a { color: #666; text-decoration: none; }
.ptc-breadcrumb span[aria-current] { color: #333; font-weight: 600; }

/* === SEO改修 2026-07: FAQブロック === */
.ptc-faq { border: 1px solid #e5e5e5; border-radius: 8px; margin: 12px 0; padding: 0; }
.ptc-faq summary { cursor: pointer; font-weight: 600; padding: 14px 16px; list-style-position: inside; }
.ptc-faq summary::before { content: "Q. "; color: #FA9D72; font-weight: 700; }
.ptc-faq-answer { padding: 0 16px 14px; border-top: 1px solid #f0f0f0; }
.ptc-faq-answer::before { content: "A. "; color: #4a90d9; font-weight: 700; }

/* === SEO改修 2026-07: アーカイブのページネーション === */
.archive-main .pagination { margin: 32px 0; }
.archive-main .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.archive-main .nav-links .page-numbers { padding: 8px 14px; border: 1px solid #ddd; border-radius: 6px; text-decoration: none; color: #333; }
.archive-main .nav-links .page-numbers.current { background: #333; color: #fff; border-color: #333; }

/* === 2026-07 FAQ・監修者コメント デザイン統一（シンプル版） === */
.entry-content .ptc-faq{font-size:14px;line-height:1.9;border:none;border-bottom:1px solid #e8e8e8;border-radius:0;margin:0;padding:0}
.entry-content .ptc-faq:first-of-type{border-top:1px solid #e8e8e8}
.ptc-faq summary{font-size:14px;font-weight:600;padding:16px 4px;cursor:pointer;list-style:none}
.ptc-faq summary::-webkit-details-marker{display:none}
.ptc-faq summary::before{content:"Q. ";color:#f0a04b;font-weight:700}
.ptc-faq summary::after{content:"＋";float:right;color:#bbb;font-weight:400}
.ptc-faq[open] summary::after{content:"−"}
.ptc-faq summary:focus{outline:none;box-shadow:none}
.ptc-faq summary:focus-visible{outline:2px solid #ddd}
.ptc-faq[open] summary{border-bottom:none}
.ptc-faq .ptc-faq-answer{font-size:14px;line-height:1.9;padding:0 4px 18px;border:none}
.ptc-faq-answer::before{content:"A. ";color:#999;font-weight:700}
.entry-content .wp-block-quote{font-size:14px;line-height:1.9;background:#fafafa;border:none;border-left:3px solid #f0a04b;border-radius:0 8px 8px 0;padding:16px 20px;margin:1.8em 0}
.entry-content .wp-block-quote p{font-size:14px;margin-bottom:0}
.entry-content .wp-block-quote cite{font-size:12px;color:#888;font-style:normal;display:block;margin-top:10px}
.entry-content .wp-block-quote::before,.entry-content .wp-block-quote::after{content:none}

/* === 2026-07 インタビュー末尾の「次の一歩」ブロック === */
.ptc-next-steps{font-size:14px;line-height:1.9;background:#fafafa;border-radius:8px;padding:20px 22px;margin:2.5em 0 1em}
.ptc-next-steps .ptc-next-title{font-size:15px;margin-bottom:8px}
.ptc-next-steps ul{margin:0;padding-left:1.3em}
.ptc-next-steps li{margin-bottom:6px;font-size:14px}

/* === 2026-07 記事本文フォント統一（全段落・リストを14pxに） === */
.entry-content p,
.entry-content li,
.entry-content table{font-size:14px}

/* === 2026-07 アフィリテキストリンクのデザイン統一 === */
.ptc-af-links{font-size:14px;line-height:1.9;background:#fafafa;border-radius:8px;padding:16px 20px;margin:1.5em 0}
.ptc-af-links>p{font-size:13px;color:#888;margin:0 0 8px}
.ptc-af-links ul{list-style:none;margin:0;padding:0}
.ptc-af-links li{margin:0 0 10px;padding:0}
.ptc-af-links li:last-child{margin-bottom:0}
.ptc-af-links li a{color:#1f2937;text-decoration:none;font-weight:600;border-bottom:1px solid #f0a04b;padding-bottom:1px}
.ptc-af-links li a::before{content:"▶ ";color:#f0a04b;font-size:11px}
.ptc-af-links li a:hover{color:#d9822b}

/* === 2026-07 研修会情報（pt_seminar） === */
.ptc-sem-box{margin:0 0 1.8em}
.ptc-sem-table{width:100%;border-collapse:collapse;font-size:14px}
.ptc-sem-table th{width:7em;text-align:left;font-weight:600;padding:10px 12px;border-bottom:1px solid #eee;background:#fafafa;white-space:nowrap}
.ptc-sem-table td{padding:10px 12px;border-bottom:1px solid #eee}
.ptc-sem-ended{margin-top:10px;padding:8px 14px;background:#f5f5f5;color:#888;border-radius:6px;font-size:13px}
.ptc-sem-cta{text-align:center;margin:2em 0 1em}
.ptc-sem-cta a{display:inline-block;background:#f0a04b;color:#fff;font-weight:700;font-size:15px;padding:14px 36px;border-radius:32px;text-decoration:none;box-shadow:0 2px 8px rgba(240,160,75,.35)}
.ptc-sem-cta a:hover{background:#d9822b;color:#fff}
.ptc-sem-cta-note{font-size:12px;color:#999;margin-top:8px}
.ptc-sem-note{font-size:12px;color:#888;background:#fafafa;border-radius:6px;padding:10px 14px;margin-top:1.5em}
.ptc-sem-back{font-size:14px;margin-top:1em}

/* === 2026-07 研修会の絞り込みUI === */
.ptc-sem-filter{margin:0 0 24px;font-size:14px;display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.ptc-sem-filter label{font-weight:600}
.ptc-sem-filter select{font-size:14px;padding:8px 32px 8px 12px;border:1px solid #ddd;border-radius:6px;background:#fff;cursor:pointer}

/* === 2026-07 研修会の複合フィルタ（POPEYE調） === */
.ptc-sem-filter2{border:2px solid #111;border-radius:14px;padding:16px 20px 18px;margin:0 0 30px;background:#fff}
.ptc-f-head{font-weight:800;font-size:14px;letter-spacing:.16em}
.ptc-f-head span{margin-left:12px;font-weight:400;color:#888;letter-spacing:.02em;font-size:12px}
.ptc-f-row{display:flex;flex-wrap:wrap;gap:12px 16px;margin-top:14px;align-items:flex-end}
.ptc-f-item{display:flex;flex-direction:column;gap:5px;position:relative}
.ptc-f-label{font-size:10px;font-weight:800;letter-spacing:.14em}
.ptc-f-label em{font-style:normal;color:#999;font-weight:400;margin-left:6px;letter-spacing:.02em}
.ptc-f-item select{appearance:none;-webkit-appearance:none;font-size:13px;font-weight:600;padding:9px 34px 9px 16px;border:1.5px solid #111;border-radius:999px;background:#fff;cursor:pointer;line-height:1.4}
.ptc-f-item::after{content:"▾";position:absolute;right:14px;bottom:10px;font-size:11px;pointer-events:none}
.ptc-f-reset{display:inline-block;background:#111;color:#fff;font-size:11px;font-weight:800;letter-spacing:.14em;padding:11px 20px;border-radius:999px;text-decoration:none;line-height:1.4}
.ptc-f-reset:hover{background:#f0a04b;color:#fff}
@media screen and (max-width:600px){.ptc-f-row{gap:10px}.ptc-f-item{flex:1 1 45%}.ptc-f-item select{width:100%}}

/* === 2026-07 研修会ページのタイトル（pt-career-heading共通部品を使用）＋縦並びフィルタ === */
h1.ptc-sem-head-ja{font-size:12px;color:#888;font-weight:500;margin:14px 0 18px;letter-spacing:.06em}
.ptc-sem-filter2 .ptc-f-row{flex-direction:column;align-items:stretch;gap:14px}
.ptc-sem-filter2 .ptc-f-item{width:100%;max-width:420px}
.ptc-sem-filter2 .ptc-f-item select{width:100%}
.ptc-sem-filter2 .ptc-f-label{font-size:12px;letter-spacing:.04em}
.ptc-sem-filter2 .ptc-f-label em{font-size:9px;letter-spacing:.16em;text-transform:uppercase}
.ptc-sem-filter2 .ptc-f-reset{align-self:flex-start;margin-top:2px}

/* === 2026-07 絞り込みカードを黒背景フィルタに反転 === */
.ptc-sem-filter2{background:#111;border-color:#111;color:#fff}
.ptc-sem-filter2 .ptc-f-head{color:#fff}
.ptc-sem-filter2 .ptc-f-head span{color:#999}
.ptc-sem-filter2 .ptc-f-label{color:#fff}
.ptc-sem-filter2 .ptc-f-label em{color:#888}
.ptc-sem-filter2 .ptc-f-item select{background:#fff;border-color:#fff;color:#111}
.ptc-sem-filter2 .ptc-f-reset{background:#fff;color:#111}
.ptc-sem-filter2 .ptc-f-reset:hover{background:#f0a04b;color:#fff}

/* === 2026-07 絞り込み検索：トリガーバー＋モーダル（求人サイト風） === */
.ptc-fb{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin:0 0 24px}
.ptc-fb-btn{display:inline-flex;align-items:center;gap:10px;background:#111;color:#fff;border:none;font-size:13px;font-weight:800;letter-spacing:.12em;padding:13px 24px;border-radius:999px;cursor:pointer;line-height:1.4}
.ptc-fb-btn span{font-size:9px;color:#aaa;letter-spacing:.2em}
.ptc-fb-btn::after{content:"▾";font-size:11px}
.ptc-fb-btn:hover{background:#f0a04b}
.ptc-fb-btn:hover span{color:#fff}
.ptc-fb-count{font-size:12px;font-weight:600}
.ptc-fb-count strong{font-size:17px;font-weight:800;margin:0 2px}
.ptc-fb-chips{display:flex;gap:6px;flex-wrap:wrap;align-items:center;width:100%}
.ptc-fb-chip{font-size:10.5px;font-weight:700;border:1.5px solid #111;border-radius:999px;padding:3px 10px;line-height:1.4}
.ptc-fb-clear{font-size:10.5px;font-weight:700;color:#999;text-decoration:underline;margin-left:4px}
.ptc-fm{position:fixed;inset:0;z-index:2147483000;display:none}
.ptc-fm.is-open{display:block}
.ptc-fm-bg{position:absolute;inset:0;background:rgba(0,0,0,.55)}
.ptc-fm-panel{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:min(560px,92vw);max-height:88vh;background:#fff;border-radius:12px;overflow:hidden;display:flex;flex-direction:column;box-shadow:0 20px 60px rgba(0,0,0,.3)}
.ptc-fm-head{position:relative;background:#111;color:#fff;text-align:center;font-size:13px;font-weight:800;letter-spacing:.14em;padding:16px 48px;flex-shrink:0}
.ptc-fm-head span{margin-left:8px;font-size:9px;color:#999;letter-spacing:.2em}
.ptc-fm-x{position:absolute;right:8px;top:50%;transform:translateY(-50%);background:none;border:none;color:#fff;font-size:24px;font-weight:400;cursor:pointer;padding:4px 14px;line-height:1}
.ptc-fm-body{overflow-y:auto;padding:6px 22px}
.ptc-fm-row{display:flex;align-items:center;gap:14px;padding:16px 2px;border-bottom:1px solid #ececec}
.ptc-fm-row:last-child{border-bottom:none}
.ptc-fm-row.is-kw{padding-top:20px}
.ptc-fm-label{flex:0 0 88px;font-size:12.5px;font-weight:800;line-height:1.3;color:#111}
.ptc-fm-label em{display:block;font-style:normal;font-size:8.5px;color:#999;font-weight:700;letter-spacing:.18em;margin-top:2px}
.ptc-fm-sel{position:relative;flex:1;display:flex;min-width:0}
.ptc-fm-sel::after{content:"▾";position:absolute;right:14px;top:50%;transform:translateY(-50%);font-size:11px;pointer-events:none;color:#111}
.ptc-fm-sel select{flex:1;font-size:13px;font-weight:600;padding:11px 36px 11px 14px;border:1.5px solid #111;border-radius:8px;background:#fff;appearance:none;-webkit-appearance:none;cursor:pointer;line-height:1.4;min-width:0;color:#111}
.ptc-fm-row.is-kw input[type=text]{flex:1;font-size:13px;font-weight:600;padding:12px 14px;border:1.5px solid #111;border-radius:8px;line-height:1.4;min-width:0;color:#111;background:#fff}
.ptc-fm-row.is-kw input[type=text]::placeholder{color:#aaa;font-weight:500}
.ptc-fm-foot{display:flex;align-items:center;gap:10px;background:#111;color:#fff;padding:13px 18px;flex-shrink:0}
.ptc-fm-count{font-size:10px;font-weight:700;line-height:1.5;letter-spacing:.06em}
.ptc-fm-count strong{display:block;font-size:17px;color:#f0a04b;letter-spacing:.02em}
.ptc-fm-reset{margin-left:auto;font-size:11px;font-weight:800;letter-spacing:.1em;color:#fff;border:1.5px solid #fff;border-radius:999px;padding:10px 18px;text-decoration:none;line-height:1.4}
.ptc-fm-reset:hover{background:#fff;color:#111}
.ptc-fm-submit{background:#f0a04b;color:#fff;border:none;font-size:12.5px;font-weight:800;letter-spacing:.08em;padding:12px 20px;border-radius:999px;cursor:pointer;line-height:1.4}
.ptc-fm-submit:hover{background:#e08c30}
@media screen and (max-width:600px){
.ptc-fm-panel{width:100%;height:100%;max-height:none;left:0;top:0;transform:none;border-radius:0}
.ptc-fm-label{flex-basis:74px}
}


/* === 2026-07 研修会一覧カード（求人サイト風リストUI） === */
ul.ptc-sem-list{display:flex;flex-direction:column;gap:20px;list-style:none;padding:0;margin:0}
.ptc-sem-card{background:#fff;border:2px solid #111;border-radius:8px;padding:18px 18px 16px;display:flex;flex-direction:column;gap:10px}
.ptc-sem-card.is-ended{opacity:.55}
.ptc-sc-top{display:flex;justify-content:space-between;align-items:center;gap:10px}
.ptc-sc-org{font-size:11px;color:#777;font-weight:600;letter-spacing:.04em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.ptc-sc-badges{display:flex;gap:6px;flex-shrink:0}
.ptc-sc-badge{font-size:10px;font-weight:800;letter-spacing:.12em;padding:3px 10px;border-radius:999px;line-height:1.4}
.ptc-sc-badge.is-new{background:#f0a04b;color:#fff}
.ptc-sc-badge.is-soon{background:#111;color:#fff}
.ptc-sc-badge.is-ended{background:#999;color:#fff}
a.ptc-sc-title{font-size:16px;font-weight:800;line-height:1.5;color:#111;text-decoration:none}
a.ptc-sc-title:hover{color:#f0a04b}
.ptc-sc-tags{display:flex;flex-wrap:wrap;gap:6px}
.ptc-sc-tag{font-size:10.5px;font-weight:700;padding:3px 10px;border:1.5px solid #111;border-radius:999px;line-height:1.4;letter-spacing:.04em;color:#111}
.ptc-sc-tag.is-format{background:#111;color:#fff}
dl.ptc-sc-info{background:#f7f6f2;border-radius:6px;padding:12px 14px;margin:0;display:flex;flex-direction:column;gap:7px}
.ptc-sc-row{display:flex;gap:10px;align-items:baseline}
.ptc-sc-row dt{flex:0 0 3.5em;font-size:10.5px;font-weight:800;letter-spacing:.08em;color:#111}
.ptc-sc-row dd{margin:0;font-size:13px;font-weight:500;line-height:1.6}
a.ptc-sc-btn{display:flex;justify-content:center;align-items:center;gap:8px;background:#111;color:#fff;font-size:12.5px;font-weight:800;letter-spacing:.14em;padding:12px;border-radius:999px;text-decoration:none;margin-top:2px}
a.ptc-sc-btn:hover{background:#f0a04b;color:#fff}
.ptc-sc-arrow{font-weight:400}
@media screen and (min-width:768px){a.ptc-sc-title{font-size:17px}}


/* =========================================================
   PT Career home — original-world refinement (2026-07)
   ========================================================= */
body.home #content,
body.front-page #content {
  margin: 0;
}

body.home #content-in,
body.front-page #content-in {
  display: block;
  width: 100%;
  margin: 0;
}

body.home #main,
body.front-page #main {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

body.home #sidebar,
body.front-page #sidebar {
  display: none;
}

.ptc-home-refined {
  --ptc-home-black: #111;
  --ptc-home-orange: #f0a04b;
  --ptc-home-orange-soft: #fa9d72;
  --ptc-home-gray: #777;
  --ptc-home-line: #dedede;
  width: 100%;
  overflow: hidden;
  background: #fff;
  color: var(--ptc-home-black);
  font-family: "Helvetica Neue", "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.ptc-home-refined,
.ptc-home-refined * {
  box-sizing: border-box;
}

.ptc-home-refined a {
  color: inherit;
  text-decoration: none;
}

.ptc-home-refined .top-hero {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 0;
}

.ptc-home-refined .hero-inner {
  background: #eee;
}

.ptc-home-refined .hero-inner img {
  filter: saturate(.9) contrast(1.02);
}

.ptc-hero-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .03) 45%, rgba(0, 0, 0, .4) 100%);
  pointer-events: none;
}

.ptc-home-refined .hero-overlay {
  z-index: 3;
  bottom: 7%;
  left: clamp(20px, 5%, 58px);
}

.ptc-hero-kicker {
  margin: 0 0 12px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}

.ptc-home-refined h1.hero-copy {
  gap: 4px;
}

.ptc-home-refined .catch-line {
  background: linear-gradient(135deg, var(--ptc-home-orange-soft), #f9b976, #f7cd6b);
  padding: 5px 5px 3px;
}

.ptc-home-refined .catch-line span {
  font-size: clamp(1.35rem, 3.3vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.ptc-hero-lead {
  display: inline-block;
  margin: 11px 0 0;
  padding: 5px 8px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .04em;
}

.ptc-hero-counter {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4%, 44px);
  bottom: 6%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-shadow: 0 1px 7px rgba(0, 0, 0, .5);
}

.ptc-hero-counter i {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, .75);
}

.ptc-home-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 求人再開時は repeat(4, ...) に戻す */
  width: min(1000px, 90%);
  margin: 0 auto;
  border-right: 1px solid var(--ptc-home-line);
  border-bottom: 1px solid var(--ptc-home-line);
  background: #fff;
}

.ptc-home-shortcuts a {
  position: relative;
  display: grid;
  min-height: 96px;
  align-content: center;
  padding: 18px 20px 16px 42px;
  border-top: 1px solid var(--ptc-home-line);
  border-left: 1px solid var(--ptc-home-line);
  transition: background-color .2s ease, color .2s ease;
}

.ptc-home-shortcuts a > span {
  position: absolute;
  top: 20px;
  left: 17px;
  color: var(--ptc-home-orange);
  font-size: 9px;
  font-weight: 700;
}

.ptc-home-shortcuts strong {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ptc-home-shortcuts small {
  margin-top: 3px;
  color: var(--ptc-home-gray);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

.ptc-home-shortcuts a::after {
  content: "↗";
  position: absolute;
  right: 14px;
  bottom: 13px;
  font-size: 10px;
}

.ptc-home-shortcuts a:hover,
.ptc-home-shortcuts a:focus-visible {
  background: var(--ptc-home-black);
  color: #fff;
}

.ptc-home-shortcuts a:hover small,
.ptc-home-shortcuts a:focus-visible small {
  color: #aaa;
}

.ptc-home-news {
  width: min(1000px, 90%);
  max-width: none;
  margin-top: 46px;
  padding-bottom: 0;
}

.ptc-home-news__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--ptc-home-black);
}

.ptc-home-news .popeye-news-heading {
  margin: 0;
  border-bottom: 0;
}

.ptc-home-news__head > span {
  padding-bottom: 6px;
  color: #999;
  font-size: 9px;
  letter-spacing: .08em;
}

.ptc-home-news .popeye-news-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  min-height: 52px;
  align-items: center;
  padding: 10px 0;
}

.ptc-home-news .popeye-news-link {
  text-decoration: none;
}

.ptc-news-arrow {
  font-size: 11px;
}

.ptc-home-block {
  width: min(1000px, 90%);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 112px) 0;
}

.ptc-home-heading {
  display: grid;
  grid-template-columns: auto minmax(50px, 1fr) minmax(0, 4fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 38px;
}

.ptc-home-heading__num {
  padding-top: 2px;
  font-size: 10px;
  font-weight: 700;
}

.ptc-home-heading__line {
  height: 1px;
  margin-top: 8px;
  background: var(--ptc-home-black);
}

.ptc-home-heading p {
  margin: 0 0 7px;
  color: var(--ptc-home-orange);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .18em;
}

.ptc-home-heading h2,
.ptc-home-popular h2,
.ptc-home-actions h2 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ptc-home-black);
  font-size: clamp(25px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.05em;
}

.ptc-home-heading--compact {
  grid-template-columns: auto minmax(35px, 75px) minmax(0, 1fr);
}

.ptc-home-heading--compact h2 {
  font-size: clamp(23px, 2.8vw, 34px);
}

.ptc-pickup-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  border-top: 1px solid var(--ptc-home-black);
  border-bottom: 1px solid var(--ptc-home-black);
}

.ptc-pickup-card__image {
  display: block;
  min-height: 420px;
  overflow: hidden;
  background: #eee;
}

.ptc-pickup-card__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform .5s ease;
}

.ptc-pickup-card:hover .ptc-pickup-card__image img {
  transform: scale(1.02);
}

.ptc-pickup-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 50px);
  border-left: 1px solid var(--ptc-home-black);
}

.ptc-pickup-card__label {
  margin: 0 0 24px;
  color: var(--ptc-home-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.ptc-pickup-card h3 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: clamp(18px, 2.1vw, 27px);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: -.03em;
}

.ptc-pickup-card h3 a:hover,
.ptc-pickup-card h3 a:focus-visible {
  color: var(--ptc-home-orange);
}

.ptc-pickup-card__excerpt {
  margin: 18px 0 0;
  color: #666;
  font-size: 12px;
  line-height: 1.9;
}

.ptc-home-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: fit-content;
  min-width: 142px;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ptc-home-black);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.ptc-home-more:hover,
.ptc-home-more:focus-visible {
  color: var(--ptc-home-orange);
  border-color: var(--ptc-home-orange);
}

.ptc-home-stories {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(250px, .8fr);
  gap: clamp(44px, 7vw, 78px);
  border-top: 1px solid #eee;
}

.ptc-latest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 22px;
}

.ptc-latest-card__image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eee;
}

.ptc-latest-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9);
  transition: transform .4s ease;
}

.ptc-latest-card:hover .ptc-latest-card__image img {
  transform: scale(1.025);
}

.ptc-latest-card__image > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ccc;
  font-size: 18px;
  font-weight: 800;
  line-height: .9;
  text-align: center;
}

.ptc-latest-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  color: #999;
  font-size: 9px;
  letter-spacing: .04em;
}

.ptc-latest-card__meta span {
  color: var(--ptc-home-orange);
  font-weight: 700;
}

.ptc-latest-card h3 {
  margin: 7px 0 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.ptc-latest-card h3 a:hover,
.ptc-latest-card h3 a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ptc-home-more--list {
  margin-top: 38px;
}

.ptc-home-popular {
  padding-left: clamp(24px, 3vw, 38px);
  border-left: 1px solid var(--ptc-home-black);
}

.ptc-home-popular__en {
  margin: 0 0 7px;
  color: var(--ptc-home-orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.ptc-home-popular h2 {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -.02em;
}

.ptc-popular-list {
  margin: 26px 0 0;
  padding: 0;
  border-top: 1px solid var(--ptc-home-black);
  list-style: none;
}

.ptc-popular-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ptc-home-line);
}

.ptc-popular-list li > span {
  color: var(--ptc-home-orange);
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
}

.ptc-popular-list a {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.7;
}

.ptc-popular-list a:hover,
.ptc-popular-list a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ptc-home-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  background: #fafafa;
  color: #888;
  font-size: 12px;
  text-align: center;
}

.ptc-home-explore {
  border-top: 1px solid #eee;
}

.ptc-home-explore__body {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 8vw, 100px);
}

.ptc-home-search {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--ptc-home-black);
}

.ptc-home-search > label {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
}

.ptc-home-search > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 1px solid var(--ptc-home-black);
}

.ptc-home-search input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 8px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ptc-home-black);
  font-size: 12px;
}

.ptc-home-search button {
  border: 0;
  background: transparent;
  color: var(--ptc-home-black);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  cursor: pointer;
}

.ptc-home-search button:hover,
.ptc-home-search button:focus-visible {
  color: var(--ptc-home-orange);
}

.ptc-explore-links {
  border-top: 1px solid var(--ptc-home-black);
}

.ptc-explore-links a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--ptc-home-line);
}

.ptc-explore-links span {
  color: var(--ptc-home-orange);
  font-size: 9px;
  font-weight: 700;
}

.ptc-explore-links strong {
  font-size: 13px;
  font-weight: 600;
}

.ptc-explore-links i {
  font-size: 11px;
  font-style: normal;
}

.ptc-explore-links a:hover,
.ptc-explore-links a:focus-visible {
  color: var(--ptc-home-orange);
}

.ptc-home-actions {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  padding: 0;
  border-top: 1px solid var(--ptc-home-black);
  border-right: 1px solid var(--ptc-home-black);
  border-bottom: 1px solid var(--ptc-home-black);
}

.ptc-home-actions__intro,
.ptc-home-actions > a {
  min-height: 210px;
  padding: clamp(24px, 3vw, 36px);
  border-left: 1px solid var(--ptc-home-black);
}

.ptc-home-actions__intro > p {
  margin: 0 0 12px;
  color: var(--ptc-home-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.ptc-home-actions h2 {
  max-width: none;
  font-size: clamp(25px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.05em;
  text-wrap: initial;
}

.ptc-home-actions__intro > span {
  display: block;
  margin-top: 18px;
  color: #777;
  font-size: 11px;
  line-height: 1.8;
}

.ptc-home-actions > a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color .2s ease, color .2s ease;
}

.ptc-home-actions > a > span {
  color: var(--ptc-home-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.ptc-home-actions > a > strong {
  max-width: 85%;
  font-size: 15px;
  line-height: 1.6;
}

.ptc-home-actions > a > i {
  position: absolute;
  right: 26px;
  bottom: 25px;
  font-size: 15px;
  font-style: normal;
}

.ptc-home-actions > a:hover,
.ptc-home-actions > a:focus-visible {
  background: var(--ptc-home-black);
  color: #fff;
}

@media screen and (min-width: 769px) {
  .ptc-home-refined .top-hero {
    width: min(1000px, 90%);
    margin-top: 0;
  }
}

@media screen and (max-width: 900px) {
  .ptc-pickup-card {
    grid-template-columns: 1.2fr .8fr;
  }

  .ptc-home-stories {
    grid-template-columns: 1fr;
  }

  .ptc-home-popular {
    padding-top: 34px;
    padding-left: 0;
    border-top: 1px solid var(--ptc-home-black);
    border-left: 0;
  }

  .ptc-popular-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }
}

@media screen and (max-width: 768px) {
  .ptc-home-refined .top-hero {
    padding-top: 60px;
  }

  .ptc-home-refined .hero-inner {
    aspect-ratio: 4 / 5;
  }

  .ptc-home-refined .hero-overlay {
    bottom: 7%;
  }

  .ptc-home-refined .catch-line span {
    font-size: clamp(1.25rem, 6.2vw, 1.65rem);
  }

  .ptc-hero-counter {
    right: 18px;
    bottom: 3.5%;
  }

  .ptc-home-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 40px);
  }

  /* 3枚構成のため最後のカードを全幅に（求人再開時は削除） */
  .ptc-home-shortcuts a:last-child {
    grid-column: 1 / -1;
  }

  .ptc-home-shortcuts a {
    min-height: 84px;
    padding: 15px 15px 13px 36px;
  }

  .ptc-home-shortcuts a > span {
    top: 17px;
    left: 13px;
  }

  .ptc-home-shortcuts strong {
    font-size: 10px;
  }

  .ptc-home-shortcuts small {
    font-size: 9px;
  }

  .ptc-home-news,
  .ptc-home-block {
    width: calc(100% - 40px);
  }

  .ptc-home-news {
    margin-top: 38px;
  }

  .ptc-home-news .popeye-news-item {
    grid-template-columns: 76px minmax(0, 1fr) auto;
  }

  .ptc-home-block {
    padding: 70px 0;
  }

  .ptc-home-heading {
    grid-template-columns: auto 42px minmax(0, 1fr);
    gap: 9px;
    margin-bottom: 28px;
  }

  .ptc-home-heading h2 {
    font-size: clamp(23px, 7vw, 31px);
  }

  .ptc-pickup-card {
    grid-template-columns: 1fr;
  }

  .ptc-pickup-card__image,
  .ptc-pickup-card__image img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .ptc-pickup-card__body {
    padding: 28px 24px 32px;
    border-top: 1px solid var(--ptc-home-black);
    border-left: 0;
  }

  .ptc-pickup-card__label {
    margin-bottom: 16px;
  }

  .ptc-pickup-card h3 {
    font-size: 19px;
  }

  .ptc-pickup-card__excerpt {
    font-size: 11px;
  }

  .ptc-latest-grid {
    gap: 30px 14px;
  }

  .ptc-latest-card h3 {
    font-size: 12px;
  }

  .ptc-home-explore__body {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ptc-home-actions {
    grid-template-columns: 1fr 1fr;
  }

  .ptc-home-actions__intro {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 28px 24px;
    border-bottom: 1px solid var(--ptc-home-black);
  }

  .ptc-home-actions > a {
    min-height: 180px;
    padding: 24px 20px;
  }
}

@media screen and (max-width: 520px) {
  .ptc-hero-kicker {
    margin-bottom: 9px;
    font-size: 8px;
  }

  .ptc-hero-lead {
    max-width: calc(100vw - 94px);
    font-size: 9px;
  }

  .ptc-home-news .popeye-news-item {
    grid-template-columns: 1fr auto;
    gap: 5px 10px;
  }

  .ptc-home-news .popeye-news-date {
    grid-column: 1 / 2;
  }

  .ptc-home-news .popeye-news-link {
    grid-column: 1 / 2;
  }

  .ptc-home-news .ptc-news-arrow {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }

  .ptc-latest-grid {
    grid-template-columns: 1fr;
  }

  .ptc-latest-card {
    display: grid;
    grid-template-columns: 42% minmax(0, 1fr);
    gap: 12px;
  }

  .ptc-latest-card__image {
    grid-row: 1 / 3;
    aspect-ratio: 4 / 3;
  }

  .ptc-latest-card__meta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2px;
    margin: 0;
  }

  .ptc-latest-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .ptc-popular-list {
    grid-template-columns: 1fr;
  }

  .ptc-home-search {
    padding: 22px 18px;
  }

  .ptc-home-actions {
    grid-template-columns: 1fr;
  }

  .ptc-home-actions__intro,
  .ptc-home-actions > a {
    grid-column: 1;
  }

  .ptc-home-actions > a {
    min-height: 132px;
    border-top: 1px solid var(--ptc-home-black);
  }
}

/* =========================================================
   PT Career interview article — original-world refinement
   ========================================================= */
body.ptc-interview-article-view #content {
  margin: 0;
}

body.ptc-interview-article-view #content-in {
  display: block;
  width: 100%;
  margin: 0;
}

body.ptc-interview-article-view #main {
  width: 100%;
  margin: 0;
  padding: 0 !important;
  border: 0;
}

body.ptc-interview-article-view #sidebar {
  display: none;
}

.ptc-article-page {
  --ptca-black: #111;
  --ptca-orange: #f0a04b;
  --ptca-warm: #f6eee7;
  --ptca-line: #dedbd7;
  width: 100%;
  overflow: hidden;
  background: #fff;
  color: var(--ptca-black);
  font-family: "Helvetica Neue", "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.ptc-article-page,
.ptc-article-page * {
  box-sizing: border-box;
}

.ptc-article-page a {
  color: inherit;
  text-decoration: none;
}

.ptca-shell {
  width: min(1000px, 90%);
  margin-inline: auto;
}

.ptca-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.ptca-progress > span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--ptca-orange, #f0a04b);
}

.ptca-breadcrumb {
  display: flex;
  overflow: hidden;
  gap: 9px;
  padding: 18px 0;
  color: #888;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .05em;
  white-space: nowrap;
}

.ptca-breadcrumb span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.ptca-breadcrumb a:hover,
.ptca-breadcrumb a:focus-visible {
  color: var(--ptca-orange);
}

.ptca-header {
  padding: clamp(64px, 8vw, 96px) 0 clamp(44px, 6vw, 68px);
}

.ptca-header__label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  color: var(--ptca-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ptca-header__label span:first-child {
  padding: 6px 9px;
  background: var(--ptca-black);
  color: #fff;
}

.ptca-header h1 {
  max-width: 880px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ptca-black);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: -.055em;
}

.ptca-header__lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: #666;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
}

.ptca-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--ptca-line);
  color: #777;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .07em;
}

.ptca-cover {
  margin-bottom: 0;
  padding: 8px;
  border: 1px solid var(--ptca-black);
  background: #fff;
  box-shadow: 10px 10px 0 var(--ptca-warm);
}

.ptca-cover img {
  display: block;
  width: 100%;
  max-height: 680px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ptca-cover figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 8px 3px 1px;
  color: var(--ptca-black);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
}

.ptca-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 680px);
  justify-content: space-between;
  gap: clamp(50px, 8vw, 100px);
  padding-top: clamp(72px, 9vw, 112px);
  padding-bottom: clamp(78px, 10vw, 124px);
}

.ptca-sidebar__sticky {
  position: sticky;
  top: 110px;
}

.ptca-toc,
.ptca-share {
  border-top: 1px solid var(--ptca-black);
}

.ptca-toc > p,
.ptca-share > p {
  margin: 0;
  padding: 13px 0 11px;
  border-bottom: 1px solid var(--ptca-line);
  color: var(--ptca-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ptca-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ptca-toc li {
  margin: 0;
  font-size: 10px;
  line-height: 1.65;
}

.ptca-toc a {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 7px;
  padding: 11px 0;
  border-bottom: 1px solid var(--ptca-line);
}

.ptca-toc a span {
  color: var(--ptca-orange);
  font-size: 8px;
  font-weight: 800;
}

.ptca-toc a:hover,
.ptca-toc a:focus-visible {
  color: var(--ptca-orange);
}

.ptca-share {
  margin-top: 34px;
}

.ptca-share a,
.ptca-share button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--ptca-line);
  border-radius: 0;
  background: transparent;
  color: var(--ptca-black);
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.ptca-share a:hover,
.ptca-share a:focus-visible,
.ptca-share button:hover,
.ptca-share button:focus-visible {
  color: var(--ptca-orange);
}

.ptca-share small {
  display: block;
  min-height: 1.5em;
  margin-top: 7px;
  color: #777;
  font-size: 8px;
}

.ptca-note {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 25px;
  margin-bottom: 58px;
  padding: 26px 28px;
  border: 1px solid var(--ptca-black);
  background: var(--ptca-warm);
}

.ptca-note > p {
  margin: 0;
  color: var(--ptca-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.ptca-note > div {
  color: #555;
  font-size: 12px;
  line-height: 2;
}

.ptca-content {
  padding: 0 !important;
  color: #292929;
  font-size: 15px;
  line-height: 2.08;
  letter-spacing: .015em !important;
}

.ptca-content > *:first-child {
  margin-top: 0;
}

.ptca-content p,
.ptca-content li,
.ptca-content table {
  font-size: 15px;
}

.ptca-content p {
  margin: 0 0 1.75em;
  line-height: 2.08;
}

.ptca-content h2 {
  margin: 3.7em 0 1.25em;
  padding: 0 0 17px;
  border: 0;
  border-bottom: 1px solid var(--ptca-black);
  background: none;
  color: var(--ptca-black);
  font-size: clamp(24px, 3vw, 31px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -.04em;
  scroll-margin-top: 100px;
}

.ptca-content h2::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-bottom: 15px;
  background: var(--ptca-orange);
}

.ptca-content h3 {
  margin: 2.8em 0 1em;
  padding: 0 0 0 16px;
  border: 0;
  border-left: 3px solid var(--ptca-orange);
  background: none;
  color: var(--ptca-black);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -.025em;
}

.ptca-content h4 {
  margin: 2.2em 0 .8em;
  font-size: 16px;
  line-height: 1.6;
}

.ptca-content a {
  color: #b96517;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.ptca-content blockquote,
.ptca-content .wp-block-quote {
  position: relative;
  margin: 2.5em 0;
  padding: 25px 28px 25px 34px;
  border: 0;
  border-left: 3px solid var(--ptca-orange);
  border-radius: 0;
  background: var(--ptca-warm);
  color: #333;
  font-size: 15px;
  line-height: 2;
}

.ptca-content blockquote p,
.ptca-content .wp-block-quote p {
  margin: 0;
  font-size: 15px;
}

.ptca-content figure,
.ptca-content .wp-block-image {
  margin: 3em 0;
}

.ptca-content figure img,
.ptca-content .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
}

.ptca-content figcaption {
  margin-top: 9px;
  color: #888;
  font-size: 9px;
  line-height: 1.7;
  text-align: left;
}

.ptca-content ul,
.ptca-content ol {
  margin: 1.7em 0;
  padding-left: 1.5em;
}

.ptca-content li {
  margin-bottom: .6em;
  line-height: 1.9;
}

.ptca-content .ptc-next-steps,
.ptca-content .ptc-af-links {
  margin: 3em 0 1em;
  padding: 24px 26px;
  border: 1px solid var(--ptca-line);
  border-radius: 0;
  background: #fafafa;
}

.ptca-article-footer {
  margin-top: 82px;
  padding-top: 36px;
  border-top: 1px solid var(--ptca-black);
}

.ptca-editor-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 22px;
  align-items: center;
  padding: 26px;
  background: var(--ptca-warm);
}

.ptca-editor-card__avatar {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fa9d72, #f7cd6b);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
}

.ptca-editor-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ptca-editor-card p {
  margin: 0;
  color: #666;
  font-size: 10px;
  line-height: 1.8;
}

.ptca-editor-card div > p:first-child {
  color: var(--ptca-orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ptca-editor-card h2 {
  margin: 5px 0 8px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ptca-black);
  font-size: 17px;
  line-height: 1.5;
}

.ptca-editor-card .ptca-editor-card__role {
  margin-bottom: 5px;
  color: #333;
  font-size: 10px;
  font-weight: 700;
}

.ptca-mobile-share {
  display: none;
}

.ptca-adjacent {
  border-top: 1px solid var(--ptca-black);
  border-bottom: 1px solid var(--ptca-black);
  background: var(--ptca-warm);
}

.ptca-adjacent__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ptca-adjacent a {
  display: grid;
  min-height: 142px;
  align-content: center;
  padding: 30px clamp(20px, 4vw, 42px);
  background: #fff;
}

.ptca-adjacent a + a {
  border-left: 1px solid var(--ptca-black);
  text-align: right;
}

.ptca-adjacent a:hover,
.ptca-adjacent a:focus-visible {
  background: var(--ptca-black);
  color: #fff;
}

.ptca-adjacent a span {
  margin-bottom: 12px;
  color: var(--ptca-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.ptca-adjacent a strong {
  font-size: 14px;
  line-height: 1.6;
}

.ptca-related {
  padding: clamp(76px, 9vw, 112px) 0;
}

.ptca-section-heading {
  display: grid;
  grid-template-columns: auto minmax(50px, 1fr) minmax(0, 4fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 40px;
}

.ptca-section-heading > span {
  padding-top: 2px;
  font-size: 10px;
  font-weight: 700;
}

.ptca-section-heading > i {
  height: 1px;
  margin-top: 8px;
  background: var(--ptca-black);
}

.ptca-section-heading p {
  margin: 0 0 7px;
  color: var(--ptca-orange);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .18em;
}

.ptca-section-heading h2 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ptca-black);
  font-size: clamp(25px, 3.4vw, 40px);
  line-height: 1.35;
  letter-spacing: -.05em;
}

.ptca-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ptca-related-card {
  padding: 8px 8px 18px;
  border: 1px solid var(--ptca-black);
  background: #fff;
}

.ptca-related-card__image {
  display: grid;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  place-items: center;
  background: linear-gradient(135deg, #fa9d72, #f7cd6b);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ptca-related-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.ptca-related-card:hover img {
  transform: scale(1.025);
}

.ptca-related-card time {
  display: block;
  margin: 15px 8px 0;
  color: #888;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}

.ptca-related-card h3 {
  margin: 9px 8px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.ptca-related-card h3 a:hover,
.ptca-related-card h3 a:focus-visible {
  color: var(--ptca-orange);
}

.ptca-related__all {
  display: flex;
  width: fit-content;
  min-width: 190px;
  justify-content: space-between;
  gap: 30px;
  margin: 38px 0 0 auto;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ptca-black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

@media screen and (max-width: 900px) {
  .ptca-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ptca-sidebar {
    order: 0;
  }

  .ptca-sidebar__sticky {
    position: static;
  }

  .ptca-toc {
    padding: 0 22px 10px;
    border: 1px solid var(--ptca-black);
  }

  .ptca-toc ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .ptca-share {
    display: none;
  }

  .ptca-main {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .ptca-mobile-share {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
  }

  .ptca-mobile-share p {
    width: 100%;
    margin: 0 0 4px;
    color: #777;
    font-size: 9px;
  }

  .ptca-mobile-share a,
  .ptca-mobile-share button {
    min-height: 36px;
    padding: 8px 14px;
    border: 1px solid var(--ptca-black);
    border-radius: 0;
    background: #fff;
    color: var(--ptca-black);
    font-family: inherit;
    font-size: 9px;
    font-weight: 700;
  }

  .ptca-mobile-share small {
    width: 100%;
    color: #777;
    font-size: 8px;
  }
}

@media screen and (max-width: 620px) {
  body.ptc-interview-article-view #content {
    margin-top: 0 !important;
  }

  .ptca-header {
    padding-top: 48px;
  }

  .ptca-header h1 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .ptca-header__lead {
    margin-top: 22px;
    font-size: 12px;
  }

  .ptca-cover {
    padding: 5px;
    box-shadow: 6px 6px 0 var(--ptca-warm);
  }

  .ptca-cover img {
    aspect-ratio: 4 / 3;
  }

  .ptca-layout {
    padding-top: 60px;
  }

  .ptca-toc ol {
    grid-template-columns: 1fr;
  }

  .ptca-note {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 42px;
    padding: 22px;
  }

  .ptca-content,
  .ptca-content p,
  .ptca-content li,
  .ptca-content table,
  .ptca-content blockquote,
  .ptca-content .wp-block-quote,
  .ptca-content blockquote p,
  .ptca-content .wp-block-quote p {
    font-size: 14px;
  }

  .ptca-content h2 {
    margin-top: 3.2em;
    font-size: 23px;
  }

  .ptca-content h3 {
    font-size: 18px;
  }

  .ptca-editor-card {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .ptca-editor-card__avatar {
    width: 52px;
    height: 52px;
  }

  .ptca-adjacent__grid {
    grid-template-columns: 1fr;
  }

  .ptca-adjacent a + a {
    border-top: 1px solid var(--ptca-black);
    border-left: 0;
  }

  .ptca-related__grid {
    grid-template-columns: 1fr;
  }

  .ptca-related-card {
    display: grid;
    grid-template-columns: 118px 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 14px;
    padding: 7px;
  }

  .ptca-related-card__image {
    grid-row: 1 / 3;
    min-height: 120px;
    aspect-ratio: auto;
  }

  .ptca-related-card time,
  .ptca-related-card h3 {
    margin-right: 5px;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ptc-article-page *,
  .ptc-article-page *::before,
  .ptc-article-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Career journal refinement: quieter cards and stable pagination */
.ptcj-grid {
  gap: 48px 28px;
}

.ptcj-card {
  padding-bottom: 30px;
  border-bottom: 1px solid #dedbd8;
}

.ptcj-card--lead {
  gap: clamp(30px, 5vw, 52px);
  padding-bottom: 40px;
}

.ptcj-card__image > i {
  display: none;
}

.ptcj-card__body {
  padding-top: 15px;
}

.ptcj-card h3 {
  margin-top: 12px;
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.55;
}

.ptcj-card--lead h3 {
  font-size: clamp(25px, 3.6vw, 35px);
  line-height: 1.4;
}

.ptcj-card__body > p {
  margin-top: 12px;
  font-size: 11px;
}

.ptcj-card__read {
  gap: 16px;
  margin-top: 17px;
  padding: 0;
  border: 0;
}

.ptcj-card__read span {
  font-size: 13px;
}

.ptcj-pagination {
  display: flex;
  width: 100%;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 66px 0 0;
  padding: 0;
  overflow: visible;
}

.ptcj-pagination .page-numbers {
  display: grid;
  width: auto;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  margin: 0;
  padding: 0 13px;
  place-items: center;
  border: 1px solid var(--ptcj-black);
  border-radius: 0;
  color: var(--ptcj-black);
  background: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.ptcj-pagination .page-numbers.current {
  color: #fff;
  border-color: var(--ptcj-black);
  background: var(--ptcj-black);
}

.ptcj-pagination .page-numbers.prev,
.ptcj-pagination .page-numbers.next {
  min-width: 76px;
  letter-spacing: .06em;
}

.ptck-header {
  max-width: 750px;
}

.ptck-summary {
  padding: 24px 0;
  border-top: 1px solid #dedbd8;
  border-right: 0;
  border-bottom: 1px solid #dedbd8;
  border-left: 0;
  background: #fff;
}

.ptck-summary > div {
  font-size: 12px;
  font-weight: 500;
}

.ptck-content h2::before {
  display: none;
}

.ptck-content h2 {
  margin-top: 3em;
  padding-top: 20px;
  border-top-width: 1px;
}

.ptck-content h3 {
  padding: 0 0 9px;
  border-left: 0;
}

.ptck-content blockquote,
.ptck-content .wp-block-quote {
  padding: 27px 30px 27px 38px;
  border-left: 2px solid var(--ptcj-orange);
  background: #faf7f4;
}

.ptck-author {
  border: 1px solid #dedbd8;
  background: #fff;
}

@media screen and (max-width: 640px) {
  .ptcj-grid {
    gap: 38px;
  }

  .ptcj-card,
  .ptcj-card--lead {
    display: block;
    padding-bottom: 28px;
  }

  .ptcj-card--lead h3,
  .ptcj-card h3 {
    font-size: 21px;
    line-height: 1.52;
  }

  .ptcj-card__body > p {
    display: none;
  }

  .ptcj-card__read {
    margin-top: 14px;
  }

  .ptcj-pagination {
    gap: 7px;
    margin-top: 50px;
  }

  .ptcj-pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0 11px;
  }

  .ptcj-pagination .page-numbers.prev,
  .ptcj-pagination .page-numbers.next {
    min-width: 70px;
  }

  .ptck-summary {
    padding: 21px 0;
  }
}

/* === Career Journal directory / article detail 2026-07 === */
body.ptc-career-journal-view #content,
body.ptc-career-article-view #content {
  margin: 0;
  padding: 0;
  background: #fff;
}

body.ptc-career-journal-view #content-in,
body.ptc-career-article-view #content-in {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.ptc-career-journal-view #main,
body.ptc-career-article-view #main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.ptc-career-journal-view #sidebar,
body.ptc-career-article-view #sidebar {
  display: none;
}

.ptc-career-journal-page,
.ptc-career-article-page {
  --ptcj-black: #111;
  --ptcj-orange: #f49a43;
  --ptcj-warm: #f5eee8;
  --ptcj-gray: #6d6d6d;
  color: var(--ptcj-black);
  font-family: "Helvetica Neue", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: #fff;
}

.ptc-career-journal-page *,
.ptc-career-article-page * {
  box-sizing: border-box;
}

.ptc-career-journal-page a,
.ptc-career-article-page a {
  color: inherit;
  text-decoration: none;
}

.ptcj-shell,
.ptck-shell {
  width: min(90%, 940px);
  margin-right: auto;
  margin-left: auto;
}

.ptcj-hero {
  padding: clamp(86px, 11vw, 126px) 0 clamp(70px, 9vw, 100px);
  overflow: hidden;
  background: var(--ptcj-warm);
}

.ptcj-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, .65fr);
  gap: clamp(50px, 9vw, 96px);
  align-items: end;
}

.ptcj-eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 30px;
  color: var(--ptcj-orange);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ptcj-eyebrow span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--ptcj-orange);
}

.ptcj-hero h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(62px, 10vw, 112px);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.ptcj-hero h1 span:last-of-type {
  margin-left: clamp(28px, 7vw, 72px);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ptcj-black);
}

.ptcj-hero h1 small {
  margin: 34px 0 0 clamp(30px, 7vw, 74px);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .12em;
  text-transform: none;
}

.ptcj-hero__statement {
  padding-top: 24px;
  border-top: 2px solid var(--ptcj-black);
}

.ptcj-hero__statement span {
  color: var(--ptcj-orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ptcj-hero__statement p {
  margin: 22px 0 0;
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}

.ptcj-breadcrumb,
.ptck-breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 20px 0;
  overflow: hidden;
  color: #969696;
  font-size: 10px;
  white-space: nowrap;
}

.ptcj-breadcrumb a:hover,
.ptck-breadcrumb a:hover {
  color: var(--ptcj-orange);
}

.ptcj-breadcrumb span:last-child,
.ptck-breadcrumb span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.ptcj-directory {
  padding: clamp(76px, 10vw, 116px) 0 clamp(96px, 12vw, 138px);
}

.ptcj-intro {
  display: grid;
  grid-template-columns: .45fr 1.05fr .7fr;
  gap: clamp(28px, 6vw, 64px);
  align-items: start;
  margin-bottom: clamp(62px, 9vw, 92px);
}

.ptcj-intro > p,
.ptcj-policy span {
  margin: 9px 0 0;
  color: var(--ptcj-orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ptcj-intro h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(34px, 5.4vw, 55px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.055em;
}

.ptcj-intro div {
  padding-top: 10px;
  border-top: 1px solid var(--ptcj-black);
}

.ptcj-intro div p {
  margin: 0;
  color: var(--ptcj-gray);
  font-size: 12px;
  line-height: 2;
}

.ptcj-filter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
  align-items: end;
  padding: 28px;
  border: 1px solid var(--ptcj-black);
  background: #fff;
  box-shadow: 8px 8px 0 var(--ptcj-warm);
}

.ptcj-filter label,
.ptcj-filter__topics > span {
  display: block;
  margin-bottom: 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
}

.ptcj-filter__search > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  border-bottom: 1px solid var(--ptcj-black);
}

.ptcj-filter input,
.ptcj-filter select,
.ptcj-filter button {
  min-width: 0;
  min-height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font: inherit;
}

.ptcj-filter input {
  padding: 0 12px 0 0;
  font-size: 14px;
}

.ptcj-filter button {
  padding: 0 14px;
  color: #fff;
  background: var(--ptcj-black);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  cursor: pointer;
}

.ptcj-filter select {
  width: 100%;
  padding: 0 36px 0 14px;
  border: 1px solid #d7d2cd;
  color: var(--ptcj-black);
  background: #fff;
  font-size: 12px;
}

.ptcj-results-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: clamp(62px, 8vw, 88px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ptcj-black);
}

.ptcj-results-head > div {
  display: flex;
  gap: 10px;
  align-items: end;
}

.ptcj-results-head > div span {
  font-size: 44px;
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.06em;
}

.ptcj-results-head > div p {
  margin: 0;
  color: var(--ptcj-orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.ptcj-results-head nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 10px;
}

.ptcj-results-head nav > span {
  color: #999;
}

.ptcj-results-head nav a {
  position: relative;
  padding-bottom: 4px;
  font-weight: 700;
}

.ptcj-results-head nav a.is-active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--ptcj-orange);
  content: "";
}

.ptcj-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 28px;
  padding-top: 32px;
}

.ptcj-card {
  min-width: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #dedbd8;
}

.ptcj-card--lead {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(30px, 5vw, 52px);
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #dedbd8;
}

.ptcj-card__image {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ptcj-black);
}

.ptcj-card__image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(17,17,17,.08);
  pointer-events: none;
  content: "";
}

.ptcj-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.ptcj-card:hover .ptcj-card__image img,
.ptck-related-card:hover img {
  transform: scale(1.025);
}

.ptcj-card__image > span {
  color: var(--ptcj-orange);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .1em;
}

.ptcj-card__image > span b {
  display: block;
  color: #fff;
  font-size: 56px;
  line-height: .9;
  letter-spacing: -.08em;
}

.ptcj-card__image > i {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--ptcj-black);
  background: var(--ptcj-orange);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.ptcj-card__body {
  padding-top: 15px;
}

.ptcj-card--lead .ptcj-card__body {
  padding-top: 0;
}

.ptcj-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: #888;
  font-size: 9px;
  letter-spacing: .06em;
}

.ptcj-card__meta a {
  color: var(--ptcj-orange);
  font-weight: 800;
}

.ptcj-card h3 {
  margin: 12px 0 0;
  padding: 0;
  border: 0;
  font-size: clamp(18px, 2.4vw, 23px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -.035em;
}

.ptcj-card--lead h3 {
  font-size: clamp(25px, 3.6vw, 35px);
  line-height: 1.4;
}

.ptcj-card__body > p {
  margin: 12px 0 0;
  color: var(--ptcj-gray);
  font-size: 11px;
  line-height: 1.9;
}

.ptcj-card__read {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-top: 17px;
  padding: 0;
  border: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.ptcj-card__read span {
  color: var(--ptcj-orange);
  font-size: 13px;
}

.ptcj-directory .page-numbers {
  list-style: none;
}

.ptcj-directory > .ptcj-shell > ul.page-numbers {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin: 72px 0 0;
  padding: 0;
}

.ptcj-directory ul.page-numbers a,
.ptcj-directory ul.page-numbers span {
  display: grid;
  min-width: 39px;
  min-height: 39px;
  padding: 0 12px;
  place-items: center;
  border: 1px solid var(--ptcj-black);
  font-size: 9px;
  font-weight: 700;
}

.ptcj-directory ul.page-numbers .current {
  color: #fff;
  background: var(--ptcj-black);
}

.ptcj-empty {
  margin-top: 32px;
  padding: 54px;
  border: 1px solid var(--ptcj-black);
  text-align: center;
}

.ptcj-empty > span {
  color: var(--ptcj-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.ptcj-empty h3 {
  margin: 20px 0 0;
  font-size: 24px;
}

.ptcj-empty p {
  color: var(--ptcj-gray);
  font-size: 12px;
}

.ptcj-empty a {
  display: inline-block;
  margin-top: 12px;
  border-bottom: 1px solid var(--ptcj-black);
  font-size: 11px;
  font-weight: 700;
}

.ptcj-policy {
  padding: clamp(72px, 9vw, 106px) 0;
  color: #fff;
  background: var(--ptcj-black);
}

.ptcj-policy__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(50px, 10vw, 110px);
  align-items: end;
}

.ptcj-policy__grid > p {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.055em;
}

.ptcj-policy h2 {
  margin: 18px 0 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.45;
}

.ptcj-policy div div p {
  margin: 18px 0 0;
  color: #bdbdbd;
  font-size: 11px;
  line-height: 2;
}

/* Career article */
.ptck-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.ptck-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #f49a43;
}

.ptck-header {
  max-width: 750px;
  padding-top: clamp(60px, 8vw, 90px);
  padding-bottom: clamp(52px, 7vw, 72px);
}

.ptck-header__category {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--ptcj-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.ptck-header__category span {
  padding-right: 16px;
  border-right: 1px solid #d7d2cd;
}

.ptck-header__category a {
  color: var(--ptcj-black);
  letter-spacing: .04em;
}

.ptck-header h1 {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  font-size: clamp(40px, 6vw, 62px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.06em;
}

.ptck-header__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #626262;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.ptck-header__meta {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  color: #969696;
  font-size: 9px;
  letter-spacing: .04em;
}

.ptck-cover {
  position: relative;
  max-width: 940px;
  margin-bottom: 0;
  padding: 0;
  border: 0;
}

.ptck-cover > img {
  display: block;
  width: 100%;
  max-height: 620px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ptck-cover--placeholder {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: clamp(40px, 7vw, 72px);
  justify-content: space-between;
  color: #fff;
  background: var(--ptcj-black);
}

.ptck-cover--placeholder > span {
  color: var(--ptcj-orange);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -.04em;
}

.ptck-cover--placeholder > span b {
  color: #fff;
  font-size: clamp(70px, 12vw, 130px);
  line-height: .8;
  letter-spacing: -.1em;
}

.ptck-cover--placeholder > i {
  align-self: flex-end;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .15em;
}

.ptck-cover figcaption {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 10px 0 0;
  border: 0;
  color: #9a9a9a;
  background: #fff;
  font-size: 8px;
  font-style: normal;
  letter-spacing: .08em;
}

.ptck-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 650px);
  gap: clamp(50px, 9vw, 90px);
  justify-content: center;
  padding-top: clamp(76px, 10vw, 108px);
  padding-bottom: clamp(92px, 12vw, 130px);
}

.ptck-sidebar__sticky {
  position: sticky;
  top: 100px;
}

.ptck-toc > p,
.ptck-share > p {
  margin: 0 0 18px;
  color: var(--ptcj-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ptck-toc ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ptck-toc a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  color: #656565;
  font-size: 9px;
  line-height: 1.7;
}

.ptck-toc a span {
  color: var(--ptcj-orange);
  font-weight: 800;
}

.ptck-share {
  display: grid;
  gap: 0;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--ptcj-black);
}

.ptck-share a,
.ptck-share button {
  display: flex;
  min-height: 35px;
  padding: 0;
  justify-content: space-between;
  align-items: center;
  border: 0;
  border-bottom: 1px solid #dedbd8;
  color: var(--ptcj-black);
  background: transparent;
  font: inherit;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.ptck-share a span,
.ptck-share button span {
  color: var(--ptcj-orange);
}

.ptck-share small {
  min-height: 18px;
  padding-top: 5px;
  color: #888;
  font-size: 8px;
}

.ptck-summary {
  margin-bottom: 50px;
  padding: 24px 0;
  border-top: 1px solid #dedbd8;
  border-bottom: 1px solid #dedbd8;
  background: #fff;
}

.ptck-summary > p {
  margin: 0 0 12px;
  color: var(--ptcj-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.ptck-summary > div {
  color: #575757;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.9;
}

.ptck-content {
  color: #333;
  font-size: 15px;
  line-height: 2.15;
}

.ptck-content > :first-child {
  margin-top: 0;
}

.ptck-content p {
  margin: 0 0 2em;
  font-size: inherit;
  line-height: inherit;
}

.ptck-content h2 {
  margin: 3em 0 1.35em;
  padding: 20px 0 0;
  border: 0;
  border-top: 1px solid var(--ptcj-black);
  background: transparent;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -.04em;
}

.ptck-content h2::before {
  display: none;
}

.ptck-content h3 {
  margin: 2.4em 0 1em;
  padding: 0 0 9px;
  border: 0;
  border-bottom: 1px solid #dedbd8;
  background: transparent;
  font-size: 21px;
  line-height: 1.55;
}

.ptck-content h4 {
  margin-top: 2em;
  font-size: 17px;
}

.ptck-content a {
  color: #b96017;
  border-bottom: 1px solid currentColor;
}

.ptck-content blockquote,
.ptck-content .wp-block-quote {
  position: relative;
  margin: 2.8em 0;
  padding: 27px 30px 27px 38px;
  border: 0;
  border-left: 2px solid var(--ptcj-orange);
  background: #faf7f4;
  color: #444;
}

.ptck-content blockquote::before {
  position: absolute;
  top: 12px;
  left: 16px;
  color: var(--ptcj-orange);
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  content: "“";
}

.ptck-content blockquote p:last-child {
  margin-bottom: 0;
}

.ptck-content ul,
.ptck-content ol {
  margin: 1.8em 0 2.4em;
  padding: 25px 28px 25px 50px;
  border: 1px solid #ddd8d3;
}

.ptck-content li + li {
  margin-top: .75em;
}

.ptck-content figure,
.ptck-content .wp-block-image {
  margin: 3em 0;
}

.ptck-content figure img {
  width: 100%;
  height: auto;
}

.ptck-content figcaption {
  margin-top: 9px;
  color: #929292;
  font-size: 9px;
  line-height: 1.7;
}

.ptck-content table {
  width: 100%;
  margin: 2.5em 0;
  border-collapse: collapse;
  font-size: 12px;
}

.ptck-content th,
.ptck-content td {
  padding: 13px;
  border: 1px solid #dedbd8;
}

.ptck-content th {
  background: var(--ptcj-warm);
}

.ptck-article-footer {
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid var(--ptcj-black);
}

.ptck-author {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid #dedbd8;
  background: #fff;
}

.ptck-author__avatar {
  display: block;
  width: 84px;
  height: 84px;
  overflow: hidden;
  background: var(--ptcj-orange);
}

.ptck-author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ptck-author div > p:first-child {
  margin: 0;
  color: var(--ptcj-orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

.ptck-author h2 {
  margin: 9px 0 0;
  padding: 0;
  border: 0;
  font-size: 21px;
}

.ptck-author div > span {
  display: block;
  margin-top: 5px;
  color: #777;
  font-size: 9px;
}

.ptck-author div > p:last-child {
  margin: 12px 0 0;
  color: #666;
  font-size: 10px;
  line-height: 1.8;
}

.ptck-mobile-share {
  display: none;
}

.ptck-adjacent {
  border-top: 1px solid var(--ptcj-black);
  border-bottom: 1px solid var(--ptcj-black);
}

.ptck-adjacent__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ptck-adjacent a {
  display: flex;
  min-height: 132px;
  padding: 27px 0;
  flex-direction: column;
  justify-content: center;
}

.ptck-adjacent a + a {
  padding-left: 40px;
  border-left: 1px solid #dedbd8;
}

.ptck-adjacent a:last-child {
  text-align: right;
}

.ptck-adjacent a span {
  color: var(--ptcj-orange);
  font-size: 9px;
  font-weight: 800;
}

.ptck-adjacent a strong {
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.6;
}

.ptck-related {
  padding: clamp(80px, 10vw, 116px) 0;
  background: var(--ptcj-warm);
}

.ptck-section-heading {
  display: grid;
  grid-template-columns: 30px minmax(50px, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.ptck-section-heading > span {
  font-size: 12px;
  font-weight: 800;
}

.ptck-section-heading > i {
  height: 1px;
  background: var(--ptcj-black);
}

.ptck-section-heading p {
  margin: 0;
  color: var(--ptcj-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.ptck-section-heading h2 {
  margin: 5px 0 0;
  padding: 0;
  border: 0;
  font-size: 27px;
}

.ptck-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.ptck-related-card__image {
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  color: var(--ptcj-orange);
  background: var(--ptcj-black);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .08em;
}

.ptck-related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.ptck-related-card > div {
  padding-top: 14px;
}

.ptck-related-card time {
  color: #8d8d8d;
  font-size: 8px;
}

.ptck-related-card h3 {
  margin: 7px 0 0;
  padding: 0;
  border: 0;
  font-size: 14px;
  line-height: 1.55;
}

.ptck-related__all {
  display: flex;
  width: max-content;
  gap: 34px;
  align-items: center;
  margin: 46px 0 0 auto;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ptcj-black);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.ptck-related__all span {
  color: var(--ptcj-orange);
}

.ptck-next {
  padding: clamp(72px, 9vw, 100px) 0;
  color: #fff;
  background: var(--ptcj-black);
}

.ptck-next .ptck-shell {
  display: grid;
  grid-template-columns: 1fr .8fr .8fr;
  gap: clamp(30px, 6vw, 62px);
  align-items: end;
}

.ptck-next span {
  color: var(--ptcj-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ptck-next h2 {
  margin: 15px 0 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: clamp(35px, 5vw, 50px);
  line-height: 1.2;
  letter-spacing: -.05em;
}

.ptck-next .ptck-shell > p {
  margin: 0;
  color: #bcbcbc;
  font-size: 11px;
  line-height: 2;
}

.ptck-next .ptck-shell > div:last-child {
  display: grid;
}

.ptck-next .ptck-shell > div:last-child a {
  display: flex;
  min-height: 48px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #555;
  font-size: 10px;
  font-weight: 700;
}

.ptck-next a i {
  color: var(--ptcj-orange);
  font-size: 15px;
  font-style: normal;
}

@media screen and (max-width: 850px) {
  .ptcj-hero__grid,
  .ptcj-intro,
  .ptck-next .ptck-shell {
    grid-template-columns: 1fr;
  }

  .ptcj-hero__statement {
    max-width: 500px;
  }

  .ptcj-intro {
    gap: 22px;
  }

  .ptcj-intro div {
    max-width: 500px;
  }

  .ptck-layout {
    grid-template-columns: minmax(0, 650px);
  }

  .ptck-sidebar {
    order: -1;
  }

  .ptck-sidebar__sticky {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 40px;
    padding: 24px;
    border: 1px solid var(--ptcj-black);
  }

  .ptck-share {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .ptck-next .ptck-shell {
    align-items: start;
  }

  .ptck-next .ptck-shell > p,
  .ptck-next .ptck-shell > div:last-child {
    max-width: 520px;
  }
}

@media screen and (max-width: 640px) {
  .ptcj-shell,
  .ptck-shell {
    width: calc(100% - 36px);
  }

  .ptcj-hero {
    padding-top: 64px;
  }

  .ptcj-hero__grid {
    gap: 46px;
  }

  .ptcj-hero h1 {
    font-size: clamp(55px, 20vw, 78px);
  }

  .ptcj-hero h1 span:last-of-type {
    margin-left: 18px;
  }

  .ptcj-hero h1 small {
    margin: 27px 0 0 20px;
    font-size: 12px;
  }

  .ptcj-directory {
    padding-top: 62px;
  }

  .ptcj-intro h2 {
    font-size: 36px;
  }

  .ptcj-filter {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    box-shadow: 5px 5px 0 var(--ptcj-warm);
  }

  .ptcj-filter__search > div {
    grid-template-columns: minmax(0, 1fr) 88px;
  }

  .ptcj-results-head {
    display: block;
  }

  .ptcj-results-head nav {
    margin-top: 24px;
  }

  .ptcj-grid,
  .ptcj-card--lead,
  .ptcj-policy__grid,
  .ptck-related__grid {
    grid-template-columns: 1fr;
  }

  .ptcj-grid {
    gap: 38px;
  }

  .ptcj-card,
  .ptcj-card--lead {
    display: block;
    padding-bottom: 28px;
  }

  .ptcj-card--lead .ptcj-card__body {
    padding-top: 0;
  }

  .ptcj-card--lead h3,
  .ptcj-card h3 {
    font-size: 21px;
    line-height: 1.52;
  }

  .ptcj-card__body > p {
    display: none;
  }

  .ptcj-policy__grid {
    gap: 48px;
  }

  .ptck-header {
    padding-top: 46px;
  }

  .ptck-header h1 {
    font-size: 38px;
  }

  .ptck-header__lead {
    font-size: 13px;
  }

  .ptck-header__meta {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .ptck-cover--placeholder {
    min-height: 270px;
    padding: 26px;
  }

  .ptck-cover figcaption {
    font-size: 7px;
  }

  .ptck-layout {
    padding-top: 58px;
  }

  .ptck-sidebar__sticky {
    display: block;
  }

  .ptck-share {
    display: none;
  }

  .ptck-summary {
    padding: 21px 0;
  }

  .ptck-content {
    font-size: 14px;
    line-height: 2.05;
  }

  .ptck-content h2 {
    font-size: 27px;
  }

  .ptck-content h3 {
    font-size: 19px;
  }

  .ptck-content blockquote,
  .ptck-content .wp-block-quote {
    padding: 28px 22px 28px 38px;
  }

  .ptck-author {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 17px;
    padding: 22px;
  }

  .ptck-author__avatar {
    width: 64px;
    height: 64px;
  }

  .ptck-mobile-share {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
  }

  .ptck-mobile-share p {
    width: 100%;
    margin: 0 0 4px;
    font-size: 10px;
    font-weight: 700;
  }

  .ptck-mobile-share a,
  .ptck-mobile-share button {
    padding: 8px 11px;
    border: 1px solid var(--ptcj-black);
    background: #fff;
    font: inherit;
    font-size: 9px;
  }

  .ptck-mobile-share small {
    width: 100%;
    font-size: 8px;
  }

  .ptck-adjacent__grid {
    grid-template-columns: 1fr;
  }

  .ptck-adjacent a {
    min-height: 105px;
  }

  .ptck-adjacent a + a {
    padding-left: 0;
    border-top: 1px solid #dedbd8;
    border-left: 0;
  }

  .ptck-related__grid {
    gap: 34px;
  }

  .ptck-related-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
  }

  .ptck-related-card__image {
    aspect-ratio: 1 / 1;
  }

  .ptck-related-card > div {
    padding-top: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ptc-career-journal-page *,
  .ptc-career-article-page *,
  .ptc-career-journal-page *::before,
  .ptc-career-article-page *::before,
  .ptc-career-journal-page *::after,
  .ptc-career-article-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   PT Career seminar detail — editorial information layout
   ========================================================= */
body.ptc-seminar-detail-view #content {
  margin: 0;
}

body.ptc-seminar-detail-view #content-in {
  display: block;
  width: 100%;
  margin: 0;
}

body.ptc-seminar-detail-view #main {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

body.ptc-seminar-detail-view #sidebar {
  display: none;
}

.ptc-seminar-detail-page {
  --ptcsd-black: #111;
  --ptcsd-orange: #f0a04b;
  --ptcsd-warm: #f6eee7;
  --ptcsd-line: #dcd8d3;
  width: 100%;
  overflow: hidden;
  background: #fff;
  color: var(--ptcsd-black);
  font-family: "Helvetica Neue", "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.ptc-seminar-detail-page,
.ptc-seminar-detail-page * {
  box-sizing: border-box;
}

.ptc-seminar-detail-page a {
  color: inherit;
  text-decoration: none;
}

.ptcsd-shell {
  width: min(1000px, 90%);
  margin-inline: auto;
}

.ptcsd-hero {
  padding: clamp(66px, 8vw, 98px) 0 clamp(58px, 7vw, 84px);
  border-bottom: 1px solid var(--ptcsd-black);
  background: #fff;
}

.ptcsd-hero__grid {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: clamp(25px, 5vw, 54px);
  align-items: stretch;
}

.ptcsd-location {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 0;
  border: 1px solid var(--ptcsd-black);
  background: var(--ptcsd-warm);
}

.ptcsd-location span {
  margin-inline: auto;
  writing-mode: vertical-rl;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .2em;
}

.ptcsd-hero__copy {
  max-width: 850px;
  padding: 7px 0;
}

.ptcsd-hero__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ptcsd-hero__labels span {
  padding: 5px 9px;
  border: 1px solid var(--ptcsd-black);
  color: var(--ptcsd-black);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .14em;
}

.ptcsd-hero__labels span:first-child {
  border-color: var(--ptcsd-orange);
  background: var(--ptcsd-orange);
}

.ptcsd-hero h1 {
  margin: 27px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ptcsd-black);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 750;
  line-height: 1.43;
  letter-spacing: -.045em;
}

.ptcsd-hero__lead {
  max-width: 49em;
  margin: 22px 0 0;
  color: #606060;
  font-size: 12px;
  line-height: 2;
}

.ptcsd-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 24px;
  color: #777;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .04em;
}

.ptcsd-status {
  padding: 5px 10px;
  background: var(--ptcsd-black);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.ptcsd-status.is-soon {
  background: var(--ptcsd-orange);
  color: var(--ptcsd-black);
}

.ptcsd-status.is-ended {
  background: #999;
}

.ptcsd-breadcrumb {
  display: flex;
  gap: 8px;
  padding: 18px 0;
  overflow: hidden;
  color: #888;
  font-size: 9px;
  letter-spacing: .05em;
  white-space: nowrap;
}

.ptcsd-breadcrumb span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.ptcsd-breadcrumb a:hover,
.ptcsd-breadcrumb a:focus-visible {
  color: var(--ptcsd-orange);
}

.ptcsd-facts {
  border-top: 1px solid var(--ptcsd-black);
  border-bottom: 1px solid var(--ptcsd-black);
  background: var(--ptcsd-warm);
}

.ptcsd-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ptcsd-facts__grid > div {
  display: flex;
  min-width: 0;
  min-height: 126px;
  flex-direction: column;
  padding: 23px 22px;
  border-right: 1px solid var(--ptcsd-black);
}

.ptcsd-facts__grid > div:first-child {
  border-left: 1px solid var(--ptcsd-black);
}

.ptcsd-facts__grid span {
  color: var(--ptcsd-orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ptcsd-facts__grid small {
  margin-top: 5px;
  color: #888;
  font-size: 8px;
}

.ptcsd-facts__grid strong {
  margin-top: auto;
  padding-top: 15px;
  color: var(--ptcsd-black);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

.ptcsd-cover {
  margin-top: clamp(52px, 7vw, 78px);
}

.ptcsd-cover img {
  display: block;
  width: 100%;
  max-height: 650px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ptcsd-cover figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 2px 0;
  color: #777;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
}

.ptcsd-layout {
  display: grid;
  grid-template-columns: minmax(0, 660px) 260px;
  gap: clamp(48px, 8vw, 80px);
  justify-content: space-between;
  padding-top: clamp(68px, 9vw, 104px);
  padding-bottom: clamp(78px, 10vw, 118px);
}

.ptcsd-content-heading {
  display: grid;
  grid-template-columns: auto minmax(32px, 1fr) minmax(0, 5fr);
  gap: 11px;
  align-items: start;
  margin-bottom: 38px;
}

.ptcsd-content-heading > span {
  padding-top: 2px;
  font-size: 9px;
  font-weight: 800;
}

.ptcsd-content-heading > i {
  height: 1px;
  margin-top: 8px;
  background: var(--ptcsd-black);
}

.ptcsd-content-heading p {
  margin: 0 0 7px;
  color: var(--ptcsd-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ptcsd-content-heading h2 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #aaa;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.045em;
}

.ptcsd-content {
  padding: 0 !important;
  color: #2d2d2d;
  font-size: 14px;
  line-height: 2.05;
}

.ptcsd-content > *:first-child {
  margin-top: 0;
}

.ptcsd-content p,
.ptcsd-content li,
.ptcsd-content table {
  font-size: 14px;
}

.ptcsd-content p {
  margin: 0 0 1.75em;
  line-height: 2.05;
}

.ptcsd-content h2 {
  margin: 3.4em 0 1.2em;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid var(--ptcsd-black);
  background: none;
  color: var(--ptcsd-black);
  font-size: clamp(22px, 3vw, 29px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -.035em;
}

.ptcsd-content h2::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-bottom: 14px;
  background: var(--ptcsd-orange);
}

.ptcsd-content h3 {
  margin: 2.7em 0 1em;
  padding: 0 0 0 15px;
  border: 0;
  border-left: 3px solid var(--ptcsd-orange);
  background: none;
  color: var(--ptcsd-black);
  font-size: 19px;
  line-height: 1.65;
}

.ptcsd-content a {
  color: #b96517;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ptcsd-content figure,
.ptcsd-content .wp-block-image {
  margin: 2.8em 0;
}

.ptcsd-content img {
  max-width: 100%;
  height: auto;
}

.ptcsd-content blockquote {
  margin: 2.4em 0;
  padding: 22px 25px;
  border: 0;
  border-left: 3px solid var(--ptcsd-orange);
  background: var(--ptcsd-warm);
}

.ptcsd-information {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--ptcsd-black);
}

.ptcsd-content-heading--small {
  margin-bottom: 25px;
}

.ptcsd-information dl {
  margin: 0;
  border-top: 1px solid var(--ptcsd-black);
}

.ptcsd-information dl > div {
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr);
  margin: 0;
  border-bottom: 1px solid var(--ptcsd-line);
}

.ptcsd-information dt,
.ptcsd-information dd {
  margin: 0;
  padding: 14px 16px;
  font-size: 11px;
  line-height: 1.75;
}

.ptcsd-information dt {
  background: var(--ptcsd-warm);
  font-weight: 800;
}

.ptcsd-information dd {
  font-weight: 500;
}

.ptcsd-note {
  margin: 24px 0 0;
  padding: 15px 17px;
  border-left: 3px solid var(--ptcsd-orange);
  background: #fafafa;
  color: #777;
  font-size: 9px;
  line-height: 1.9;
}

.ptcsd-note a {
  border-bottom: 1px solid var(--ptcsd-orange);
}

.ptcsd-aside__sticky {
  position: sticky;
  top: 105px;
  padding: 25px 23px;
  border: 1px solid var(--ptcsd-black);
  background: #fff;
  box-shadow: 7px 7px 0 var(--ptcsd-warm);
}

.ptcsd-aside__sticky::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 80px;
  height: 4px;
  background: var(--ptcsd-orange);
}

.ptcsd-aside__label {
  margin: 0;
  color: var(--ptcsd-orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ptcsd-aside h2 {
  margin: 17px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ptcsd-black);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -.035em;
}

.ptcsd-aside__sticky > p:not(.ptcsd-aside__label) {
  margin: 14px 0 0;
  color: #666;
  font-size: 10px;
  line-height: 1.85;
}

.ptcsd-apply {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 15px 16px;
  background: var(--ptcsd-black);
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.55;
}

.ptcsd-apply i {
  color: var(--ptcsd-orange);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.ptcsd-apply:hover,
.ptcsd-apply:focus-visible {
  background: var(--ptcsd-orange);
  color: var(--ptcsd-black) !important;
}

.ptcsd-apply:hover i,
.ptcsd-apply:focus-visible i {
  color: var(--ptcsd-black);
}

.ptcsd-apply.is-secondary {
  background: var(--ptcsd-warm);
  color: var(--ptcsd-black) !important;
}

.ptcsd-aside__sticky > small {
  display: block;
  margin-top: 12px;
  color: #999;
  font-size: 8px;
  line-height: 1.75;
}

.ptcsd-back {
  display: inline-block;
  margin-top: 23px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ptcsd-black);
  font-size: 9px;
  font-weight: 700;
}

.ptcsd-adjacent {
  border-top: 1px solid var(--ptcsd-black);
  background: var(--ptcsd-warm);
}

.ptcsd-adjacent__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ptcsd-adjacent__grid > a {
  min-height: 132px;
  padding: 27px 30px;
  border-left: 1px solid var(--ptcsd-black);
}

.ptcsd-adjacent__grid > a:last-child {
  border-right: 1px solid var(--ptcsd-black);
  text-align: right;
}

.ptcsd-adjacent__grid a + a {
  border-left: 1px solid var(--ptcsd-black);
}

.ptcsd-adjacent__grid a span {
  color: var(--ptcsd-orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ptcsd-adjacent__grid a strong {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  line-height: 1.75;
}

.ptcsd-adjacent__grid a:hover strong,
.ptcsd-adjacent__grid a:focus-visible strong {
  color: #a75a15;
}

.ptcsd-footer-cta {
  padding: clamp(58px, 7vw, 82px) 0;
  background: var(--ptcsd-black);
  color: #fff;
}

.ptcsd-footer-cta .ptcsd-shell {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.ptcsd-footer-cta div > span {
  color: var(--ptcsd-orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ptcsd-footer-cta h2 {
  margin: 13px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: clamp(27px, 4vw, 42px);
  font-weight: 750;
  letter-spacing: -.05em;
}

.ptcsd-footer-cta a {
  display: flex;
  min-width: 200px;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.ptcsd-footer-cta a span {
  color: var(--ptcsd-orange);
}

@media screen and (max-width: 900px) {
  .ptcsd-facts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ptcsd-facts__grid > div:nth-child(3) {
    border-left: 1px solid var(--ptcsd-black);
  }

  .ptcsd-facts__grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--ptcsd-black);
  }

  .ptcsd-layout {
    grid-template-columns: 1fr;
  }

  .ptcsd-aside {
    grid-row: 1;
  }

  .ptcsd-aside__sticky {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, .7fr);
    gap: 8px 28px;
    align-items: start;
  }

  .ptcsd-aside__label,
  .ptcsd-aside h2,
  .ptcsd-aside__sticky > p:not(.ptcsd-aside__label),
  .ptcsd-aside__sticky > small,
  .ptcsd-back {
    grid-column: 1;
  }

  .ptcsd-apply {
    grid-column: 2;
    grid-row: 1 / 5;
    min-height: 100%;
    margin-top: 0;
  }
}

@media screen and (max-width: 620px) {
  .ptcsd-hero {
    padding-top: 48px;
  }

  .ptcsd-hero__grid {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 17px;
  }

  .ptcsd-location {
    padding: 14px 0;
  }

  .ptcsd-hero h1 {
    font-size: clamp(27px, 8vw, 37px);
  }

  .ptcsd-hero__labels {
    gap: 5px;
  }

  .ptcsd-hero__labels span {
    padding: 4px 7px;
    font-size: 7px;
  }

  .ptcsd-facts__grid {
    grid-template-columns: 1fr;
  }

  .ptcsd-facts__grid > div,
  .ptcsd-facts__grid > div:nth-child(3) {
    min-height: 0;
    padding: 17px 18px;
    border-right: 1px solid var(--ptcsd-black);
    border-bottom: 1px solid var(--ptcsd-black);
    border-left: 1px solid var(--ptcsd-black);
  }

  .ptcsd-facts__grid > div:last-child {
    border-bottom: 0;
  }

  .ptcsd-facts__grid strong {
    margin-top: 0;
    padding-top: 8px;
  }

  .ptcsd-layout {
    gap: 54px;
    padding-top: 58px;
  }

  .ptcsd-aside__sticky {
    display: block;
    padding: 23px 20px;
  }

  .ptcsd-apply {
    min-height: 0;
    margin-top: 20px;
  }

  .ptcsd-content-heading {
    grid-template-columns: auto minmax(28px, 52px) minmax(0, 1fr);
  }

  .ptcsd-information dl > div {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .ptcsd-information dt,
  .ptcsd-information dd {
    padding: 12px 10px;
    font-size: 10px;
  }

  .ptcsd-adjacent__grid {
    grid-template-columns: 1fr;
  }

  .ptcsd-adjacent__grid > a,
  .ptcsd-adjacent__grid > a:last-child {
    min-height: 0;
    padding: 22px 18px;
    border-right: 1px solid var(--ptcsd-black);
    border-bottom: 1px solid var(--ptcsd-black);
    text-align: left;
  }

  .ptcsd-footer-cta .ptcsd-shell {
    display: block;
  }

  .ptcsd-footer-cta a {
    width: 100%;
    margin-top: 30px;
  }
}

/* Seminar detail — simple, participation-first revision */
.ptcsd-simple-shell {
  width: min(940px, 90%);
  margin-inline: auto;
}

.ptcsd-simple-breadcrumb {
  display: flex;
  gap: 8px;
  padding: 18px 0;
  overflow: hidden;
  color: #888;
  font-size: 9px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.ptcsd-simple-breadcrumb span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.ptcsd-simple-breadcrumb a:hover,
.ptcsd-simple-breadcrumb a:focus-visible {
  color: var(--ptcsd-orange);
}

.ptcsd-simple-hero {
  padding: clamp(54px, 7vw, 80px) 0 clamp(58px, 8vw, 88px);
  border-top: 1px solid var(--ptcsd-black);
  border-bottom: 1px solid var(--ptcsd-black);
  background: #fff;
}

.ptcsd-simple-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.ptcsd-simple-labels span {
  padding: 5px 9px;
  border: 1px solid var(--ptcsd-black);
  color: var(--ptcsd-black);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .12em;
}

.ptcsd-simple-labels span:first-child {
  border-color: var(--ptcsd-orange);
  background: var(--ptcsd-orange);
}

.ptcsd-simple-labels .ptcsd-simple-status {
  margin-left: auto;
  border-color: var(--ptcsd-black);
  background: var(--ptcsd-black);
  color: #fff;
}

.ptcsd-simple-labels .ptcsd-simple-status.is-soon {
  border-color: var(--ptcsd-orange);
  background: var(--ptcsd-orange);
  color: var(--ptcsd-black);
}

.ptcsd-simple-labels .ptcsd-simple-status.is-ended {
  border-color: #999;
  background: #999;
}

.ptcsd-simple-hero h1 {
  max-width: 880px;
  margin: 27px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ptcsd-black);
  font-size: clamp(30px, 4.6vw, 47px);
  font-weight: 750;
  line-height: 1.45;
  letter-spacing: -.045em;
}

.ptcsd-simple-lead {
  max-width: 52em;
  margin: 21px 0 0;
  color: #555;
  font-size: 12px;
  line-height: 2;
}

.ptcsd-simple-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 38px 0 0;
  border-top: 1px solid var(--ptcsd-black);
  border-left: 1px solid var(--ptcsd-black);
}

.ptcsd-simple-summary > div {
  min-width: 0;
  margin: 0;
  padding: 17px 18px;
  border-right: 1px solid var(--ptcsd-black);
  border-bottom: 1px solid var(--ptcsd-black);
}

.ptcsd-simple-summary dt,
.ptcsd-simple-summary dd {
  margin: 0;
}

.ptcsd-simple-summary dt {
  color: #777;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.ptcsd-simple-summary dd {
  margin-top: 9px;
  color: var(--ptcsd-black);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

.ptcsd-simple-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: 21px 23px;
  background: var(--ptcsd-warm);
}

.ptcsd-simple-action > a {
  display: flex;
  width: min(420px, 100%);
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  background: var(--ptcsd-black);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.ptcsd-simple-action > a i,
.ptcsd-simple-final a i {
  color: var(--ptcsd-orange);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.ptcsd-simple-action > a:hover,
.ptcsd-simple-action > a:focus-visible {
  background: var(--ptcsd-orange);
  color: var(--ptcsd-black);
}

.ptcsd-simple-action > a:hover i,
.ptcsd-simple-action > a:focus-visible i {
  color: var(--ptcsd-black);
}

.ptcsd-simple-action > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ptcsd-simple-action strong {
  color: var(--ptcsd-black);
  font-size: 9px;
}

.ptcsd-simple-action small {
  color: #777;
  font-size: 8px;
  line-height: 1.7;
}

.ptcsd-simple-cover {
  margin-top: clamp(44px, 6vw, 66px);
}

.ptcsd-simple-cover img {
  display: block;
  width: 100%;
  max-height: 620px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ptcsd-simple-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  padding-top: clamp(64px, 8vw, 94px);
  padding-bottom: clamp(78px, 10vw, 118px);
}

.ptcsd-simple-heading {
  margin-bottom: 31px;
  padding-left: 16px;
  border-left: 3px solid var(--ptcsd-orange);
}

.ptcsd-simple-heading span {
  color: var(--ptcsd-orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.ptcsd-simple-heading h2 {
  margin: 8px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ptcsd-black);
  font-size: clamp(24px, 3vw, 31px);
  font-weight: 750;
  line-height: 1.45;
  letter-spacing: -.04em;
}

.ptcsd-simple-content {
  padding: 0 !important;
  color: #2c2c2c;
  font-size: 14px;
  line-height: 2.05;
}

.ptcsd-simple-content > *:first-child {
  margin-top: 0;
}

.ptcsd-simple-content p,
.ptcsd-simple-content li,
.ptcsd-simple-content table {
  font-size: 14px;
}

.ptcsd-simple-content p {
  margin: 0 0 1.7em;
  line-height: 2.05;
}

.ptcsd-simple-content h2 {
  margin: 3.3em 0 1.15em;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid var(--ptcsd-black);
  background: none;
  color: var(--ptcsd-black);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.55;
  letter-spacing: -.035em;
}

.ptcsd-simple-content h2::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 13px;
  background: var(--ptcsd-orange);
}

.ptcsd-simple-content h3 {
  margin: 2.6em 0 1em;
  padding-left: 14px;
  border: 0;
  border-left: 3px solid var(--ptcsd-orange);
  background: none;
  color: var(--ptcsd-black);
  font-size: 18px;
  line-height: 1.6;
}

.ptcsd-simple-content a {
  color: #a75a15;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ptcsd-simple-content img {
  max-width: 100%;
  height: auto;
}

.ptcsd-simple-information {
  margin-top: 76px;
  padding-top: 36px;
  border-top: 1px solid var(--ptcsd-black);
}

.ptcsd-simple-information dl {
  margin: 0;
  border-top: 1px solid var(--ptcsd-black);
}

.ptcsd-simple-information dl > div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  margin: 0;
  border-bottom: 1px solid var(--ptcsd-line);
}

.ptcsd-simple-information dt,
.ptcsd-simple-information dd {
  margin: 0;
  padding: 13px 15px;
  font-size: 11px;
  line-height: 1.7;
}

.ptcsd-simple-information dt {
  background: var(--ptcsd-warm);
  font-weight: 800;
}

.ptcsd-simple-note {
  margin: 23px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--ptcsd-orange);
  background: #fafafa;
  color: #777;
  font-size: 9px;
  line-height: 1.9;
}

.ptcsd-simple-note a {
  border-bottom: 1px solid var(--ptcsd-orange);
}

.ptcsd-simple-aside__sticky {
  position: sticky;
  top: 105px;
  padding: 24px 22px;
  border: 1px solid var(--ptcsd-black);
  background: #fff;
  box-shadow: 6px 6px 0 var(--ptcsd-warm);
}

.ptcsd-simple-aside__sticky::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 76px;
  height: 4px;
  background: var(--ptcsd-orange);
}

.ptcsd-simple-aside__sticky > span {
  color: var(--ptcsd-orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.ptcsd-simple-aside h2 {
  margin: 15px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ptcsd-black);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -.035em;
}

.ptcsd-simple-aside p {
  margin: 12px 0 0;
  color: #666;
  font-size: 10px;
  line-height: 1.8;
}

.ptcsd-simple-aside__sticky > a:not(.ptcsd-simple-back) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 19px;
  padding: 14px 15px;
  background: var(--ptcsd-black);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.65;
}

.ptcsd-simple-aside__sticky > a:not(.ptcsd-simple-back) i {
  color: var(--ptcsd-orange);
  font-size: 16px;
  font-style: normal;
}

.ptcsd-simple-aside__sticky > small {
  display: block;
  margin-top: 11px;
  color: #999;
  font-size: 8px;
  line-height: 1.7;
}

.ptcsd-simple-back {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ptcsd-black);
  font-size: 9px;
  font-weight: 700;
}

.ptcsd-simple-final {
  padding: clamp(54px, 7vw, 76px) 0;
  background: var(--ptcsd-black);
  color: #fff;
}

.ptcsd-simple-final .ptcsd-simple-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  gap: 50px;
  align-items: center;
}

.ptcsd-simple-final div > span {
  color: var(--ptcsd-orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.ptcsd-simple-final h2 {
  margin: 11px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.35;
  letter-spacing: -.05em;
}

.ptcsd-simple-final p {
  margin: 12px 0 0;
  color: #bbb;
  font-size: 10px;
  line-height: 1.8;
}

.ptcsd-simple-final > div > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 19px;
  background: var(--ptcsd-orange);
  color: var(--ptcsd-black);
  font-size: 11px;
  font-weight: 800;
}

.ptcsd-simple-final a i {
  color: var(--ptcsd-black);
}

@media screen and (max-width: 850px) {
  .ptcsd-simple-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ptcsd-simple-layout {
    grid-template-columns: 1fr;
  }

  .ptcsd-simple-aside {
    grid-row: 1;
  }

  .ptcsd-simple-aside__sticky {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, .8fr);
    gap: 7px 28px;
    align-items: start;
  }

  .ptcsd-simple-aside__sticky > span,
  .ptcsd-simple-aside h2,
  .ptcsd-simple-aside p,
  .ptcsd-simple-aside__sticky > small,
  .ptcsd-simple-back {
    grid-column: 1;
  }

  .ptcsd-simple-aside__sticky > a:not(.ptcsd-simple-back) {
    grid-column: 2;
    grid-row: 1 / 5;
    min-height: 100%;
    margin-top: 0;
  }
}

@media screen and (max-width: 620px) {
  .ptcsd-simple-hero {
    padding-top: 42px;
  }

  .ptcsd-simple-labels .ptcsd-simple-status {
    width: 100%;
    margin: 3px 0 0;
    text-align: center;
  }

  .ptcsd-simple-hero h1 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .ptcsd-simple-summary {
    grid-template-columns: 1fr;
    margin-top: 29px;
  }

  .ptcsd-simple-action {
    display: block;
    padding: 17px;
  }

  .ptcsd-simple-action > a {
    width: 100%;
  }

  .ptcsd-simple-action > div {
    margin-top: 12px;
  }

  .ptcsd-simple-layout {
    gap: 54px;
    padding-top: 54px;
  }

  .ptcsd-simple-aside__sticky {
    display: block;
  }

  .ptcsd-simple-aside__sticky > a:not(.ptcsd-simple-back) {
    min-height: 0;
    margin-top: 18px;
  }

  .ptcsd-simple-information dl > div {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .ptcsd-simple-information dt,
  .ptcsd-simple-information dd {
    padding: 12px 10px;
    font-size: 10px;
  }

  .ptcsd-simple-final .ptcsd-simple-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* =========================================================
   PT Career interview — original-world refinement (2026-07)
   ========================================================= */
body.ptc-interview-view #content {
  margin: 0;
}

body.ptc-interview-view #content-in {
  display: block;
  width: 100%;
  margin: 0;
}

body.ptc-interview-view #main {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

body.ptc-interview-view #sidebar {
  display: none;
}

.ptc-interview-page {
  --ptci-black: #111;
  --ptci-orange: #f0a04b;
  --ptci-warm: #f6eee7;
  --ptci-line: #dcd8d3;
  width: 100%;
  overflow: hidden;
  background: #fff;
  color: var(--ptci-black);
  font-family: "Helvetica Neue", "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.ptc-interview-page,
.ptc-interview-page * {
  box-sizing: border-box;
}

.ptc-interview-page a {
  color: inherit;
  text-decoration: none;
}

.ptci-shell {
  width: min(1000px, 90%);
  margin-inline: auto;
}

.ptci-hero {
  padding: clamp(70px, 8vw, 104px) 0 clamp(54px, 7vw, 86px);
  border-bottom: 1px solid var(--ptci-black);
  background: #fff;
}

.ptci-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 0;
  align-items: start;
}

.ptci-eyebrow {
  margin: 0;
  color: var(--ptci-orange);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.ptci-eyebrow span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  place-items: center;
  border: 1px solid var(--ptci-black);
  color: var(--ptci-black);
  letter-spacing: 0;
}

.ptci-hero h1 {
  margin: 24px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ptci-black);
  font-size: clamp(46px, 6.6vw, 76px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.ptci-hero h1 > span {
  display: block;
}

.ptci-hero h1 small {
  display: block;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
}

.ptci-hero__lead {
  max-width: 36em;
  margin: 26px 0 0;
  color: #666;
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
}

.ptci-hero__visual {
  margin: 0;
  padding: 8px;
  border: 1px solid var(--ptci-black);
  background: #fff;
  box-shadow: 12px 12px 0 var(--ptci-warm);
}

.ptci-hero__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ptci-hero__visual figcaption {
  margin: 8px 3px 1px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
}

.ptci-breadcrumb {
  display: flex;
  gap: 9px;
  padding: 18px 0;
  color: #888;
  font-size: 9px;
  letter-spacing: .06em;
}

.ptci-breadcrumb a:hover,
.ptci-breadcrumb a:focus-visible {
  color: var(--ptci-orange);
}

.ptci-policy h2 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-weight: 700;
  letter-spacing: -.05em;
}

.ptci-stories {
  padding: clamp(58px, 8vw, 92px) 0 clamp(76px, 9vw, 112px);
}

.ptci-sort {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin: 0 0 30px;
}

.ptci-sort > span {
  margin-right: 5px;
  color: #777;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

.ptci-sort a,
.ptci-sort button {
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid var(--ptci-black);
  border-radius: 0;
  background: #fff;
  color: var(--ptci-black);
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.ptci-sort a:hover,
.ptci-sort a:focus-visible,
.ptci-sort button:hover,
.ptci-sort button:focus-visible,
.ptci-sort .is-active {
  background: var(--ptci-black);
  color: #fff;
}

.ptci-card h3 a:hover,
.ptci-card h3 a:focus-visible {
  color: var(--ptci-orange);
}

.ptci-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 24px;
  margin-top: 0;
}

.ptci-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 10px 10px 18px;
  border: 1px solid var(--ptci-black);
  background: #fff;
  transition: box-shadow .2s ease, transform .2s ease;
}

.ptci-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ptci-warm);
}

.ptci-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eee;
}

.ptci-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.ptci-card:hover .ptci-card__image img {
  transform: scale(1.025);
}

.ptci-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: linear-gradient(135deg, #fa9d72, #f7cd6b);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ptci-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 16px 4px;
}

.ptci-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #777;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

.ptci-card__meta span {
  color: var(--ptci-orange);
}

.ptci-card h3 {
  margin: 22px 0 0;
  font-size: clamp(21px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -.04em;
}

.ptci-card__body > p {
  margin: 16px 0 24px;
  color: #666;
  font-size: 11px;
  line-height: 1.9;
}

.ptci-card__link {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--ptci-line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ptci-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 58px;
}

.ptci-pagination .page-numbers,
.ptci-pagination button {
  display: inline-grid;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  place-items: center;
  border: 1px solid var(--ptci-black);
  border-radius: 0;
  background: #fff;
  color: var(--ptci-black);
  font-family: inherit;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
}

.ptci-pagination .page-numbers.current,
.ptci-pagination .page-numbers:hover,
.ptci-pagination .page-numbers:focus-visible,
.ptci-pagination button:hover,
.ptci-pagination button:focus-visible,
.ptci-pagination button.is-current {
  background: var(--ptci-black);
  color: #fff;
}

.ptci-pagination .prev,
.ptci-pagination .next,
.ptci-pagination button[data-page-direction] {
  min-width: 108px;
}

.ptci-pagination button:disabled {
  border-color: #ccc;
  color: #aaa;
  cursor: default;
}

.ptci-pagination button:disabled:hover {
  background: #fff;
  color: #aaa;
}

.ptci-policy {
  padding: clamp(68px, 8vw, 96px) 0;
  background: var(--ptci-black);
  color: #fff;
}

.ptci-policy__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(50px, 9vw, 110px);
  align-items: end;
}

.ptci-policy__statement {
  margin: 0;
  color: #fff;
  font-size: clamp(35px, 6vw, 68px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.065em;
}

.ptci-policy__grid > div > span {
  color: var(--ptci-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ptci-policy h2 {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.45;
}

.ptci-policy__grid > div > p {
  margin: 18px 0 0;
  color: #bbb;
  font-size: 11px;
  line-height: 2;
}

@media screen and (max-width: 900px) {
  .ptci-hero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ptci-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 620px) {
  .ptci-hero {
    padding-top: 52px;
  }

  .ptci-hero h1 {
    font-size: clamp(42px, 15vw, 61px);
  }

  .ptci-policy__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ptci-sort {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 0 26px;
  }

  .ptci-sort > span {
    width: 100%;
    margin-bottom: 2px;
  }

  .ptci-story-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ptci-card {
    padding: 7px 7px 14px;
  }

  .ptci-card__image {
    aspect-ratio: 16 / 10;
  }

  .ptci-card__body {
    padding: 20px 13px 3px;
  }

  .ptci-card__meta {
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }

  .ptci-card h3 {
    margin-top: 18px;
    font-size: 21px;
  }

  .ptci-card__body > p {
    display: block;
    margin: 13px 0 20px;
  }

  .ptci-card__link {
    margin-top: auto;
    padding-top: 13px;
  }

  .ptci-policy__statement {
    font-size: clamp(34px, 11vw, 50px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ptc-interview-page *,
  .ptc-interview-page *::before,
  .ptc-interview-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ptc-home-refined *,
  .ptc-home-refined *::before,
  .ptc-home-refined *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* === Home refinement: section rhythm and card balance === */
.ptc-home-pickup {
  background: #faf7f2;
  box-shadow: 0 0 0 100vmax #faf7f2;
  clip-path: inset(0 -100vmax);
}

.ptc-pickup-card {
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 17, 17, .055);
}

.ptc-pickup-card h3 {
  line-break: strict;
  overflow-wrap: break-word;
  word-break: auto-phrase;
}

.ptc-home-stories {
  background: #f4f4f2;
  box-shadow: 0 0 0 100vmax #f4f4f2;
  clip-path: inset(0 -100vmax);
  border-top: 0;
}

.ptc-latest-card {
  padding: 11px 11px 15px;
  border: 1px solid #e3e3df;
  background: #fff;
  box-shadow: 0 6px 18px rgba(17, 17, 17, .035);
}

.ptc-latest-card__meta {
  margin-top: 13px;
}

.ptc-home-popular {
  padding: 28px 26px;
  border: 1px solid var(--ptc-home-black);
  background: #fff;
}

.ptc-home-popular .ptc-popular-list {
  margin-top: 22px;
}

.ptc-home-explore {
  border-top: 0;
}

.ptc-home-search {
  background: #fff;
  box-shadow: 7px 7px 0 #f2e5d9;
}

.ptc-explore-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ptc-home-black);
  border-left: 1px solid var(--ptc-home-black);
}

.ptc-explore-links a {
  min-height: 92px;
  padding: 18px 20px;
  border-right: 1px solid var(--ptc-home-black);
  border-bottom: 1px solid var(--ptc-home-black);
  background: #fafafa;
}

.ptc-explore-links a:hover,
.ptc-explore-links a:focus-visible {
  background: var(--ptc-home-black);
  color: #fff;
}

.ptc-home-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(38px, 5vw, 56px) 12px 12px;
  border: 0;
  background: #f6eee7;
  box-shadow: 0 0 0 100vmax #f6eee7;
  clip-path: inset(0 -100vmax);
}

.ptc-home-actions > a {
  border: 1px solid var(--ptc-home-black);
  background: #fff;
}

.ptc-home-actions__intro {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 0 4px clamp(26px, 3vw, 38px);
  border: 0;
  background: transparent;
}

@media screen and (min-width: 901px) {
  .ptc-pickup-card {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  }

  .ptc-pickup-card__body {
    padding: 42px 40px;
  }

  .ptc-pickup-card h3 {
    font-size: clamp(19px, 1.75vw, 24px);
  }
}

@media screen and (max-width: 900px) {
  .ptc-home-popular {
    margin-top: 0;
    padding: 26px 22px;
    border: 1px solid var(--ptc-home-black);
  }
}

@media screen and (max-width: 768px) {
  .ptc-home-pickup,
  .ptc-home-stories {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .ptc-latest-card {
    padding: 8px 8px 12px;
  }

  .ptc-home-actions {
    gap: 8px;
    padding: 34px 8px 8px;
  }

  .ptc-home-actions > a {
    border: 1px solid var(--ptc-home-black);
  }
}

@media screen and (max-width: 620px) {
  .ptc-explore-links {
    grid-template-columns: 1fr;
  }

  .ptc-explore-links a {
    min-height: 68px;
    padding: 13px 14px;
  }
}

@media screen and (max-width: 520px) {
  .ptc-latest-card {
    gap: 10px;
  }

  .ptc-home-actions {
    grid-template-columns: 1fr;
  }

  .ptc-home-actions__intro,
  .ptc-home-actions > a {
    grid-column: 1;
  }

  .ptc-home-actions__intro {
    grid-column: 1 / -1;
  }

  .ptc-home-actions > a {
    border-top: 1px solid var(--ptc-home-black);
  }
}

/* =========================================================
   PT Career seminar directory — original-world refinement
   ========================================================= */
body.ptc-seminar-view #content {
  margin: 0;
}

body.ptc-seminar-view #content-in {
  display: block;
  width: 100%;
  margin: 0;
}

body.ptc-seminar-view #main {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

body.ptc-seminar-view #sidebar {
  display: none;
}

.ptc-seminar-page {
  --ptcs-black: #111;
  --ptcs-orange: #f0a04b;
  --ptcs-warm: #f6eee7;
  --ptcs-line: #dcd8d3;
  width: 100%;
  overflow: hidden;
  background: #fff;
  color: var(--ptcs-black);
  font-family: "Helvetica Neue", "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.ptc-seminar-page,
.ptc-seminar-page * {
  box-sizing: border-box;
}

.ptc-seminar-page a {
  color: inherit;
  text-decoration: none;
}

.ptcs-shell {
  width: min(1000px, 90%);
  margin-inline: auto;
}

.ptcs-hero {
  padding: clamp(70px, 8vw, 104px) 0 clamp(58px, 7vw, 88px);
  border-bottom: 1px solid var(--ptcs-black);
  background: #fff;
}

.ptcs-hero__grid {
  display: block;
}

.ptcs-hero__copy {
  max-width: 720px;
}

.ptcs-eyebrow,
.ptcs-section-label {
  margin: 0;
  color: var(--ptcs-orange);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.ptcs-eyebrow span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  place-items: center;
  border: 1px solid var(--ptcs-black);
  color: var(--ptcs-black);
  letter-spacing: 0;
}

.ptcs-hero h1 {
  margin: 24px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ptcs-black);
  font-size: clamp(43px, 6.2vw, 72px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.ptcs-hero h1 > span {
  display: block;
}

.ptcs-hero h1 small {
  display: block;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .07em;
  text-transform: none;
}

.ptcs-hero__lead {
  max-width: 37em;
  margin: 26px 0 0;
  color: #666;
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
}

.ptcs-breadcrumb-wrap .ptc-breadcrumb {
  margin: 0;
  padding: 18px 0;
  color: #888;
  font-size: 9px;
  letter-spacing: .06em;
}

.ptcs-breadcrumb-wrap .ptc-breadcrumb a:hover,
.ptcs-breadcrumb-wrap .ptc-breadcrumb a:focus-visible {
  color: var(--ptcs-orange);
}

.ptcs-heading h2,
.ptcs-policy h2 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-weight: 700;
  letter-spacing: -.05em;
}

.ptcs-directory {
  padding: clamp(36px, 5vw, 56px) 0 clamp(82px, 10vw, 126px);
}

.ptcs-heading {
  display: grid;
  grid-template-columns: auto minmax(50px, 1fr) minmax(0, 4fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 40px;
}

.ptcs-heading__num {
  padding-top: 2px;
  font-size: 10px;
  font-weight: 700;
}

.ptcs-heading__line {
  height: 1px;
  margin-top: 8px;
  background: var(--ptcs-black);
}

.ptcs-heading p {
  margin: 0 0 7px;
  color: var(--ptcs-orange);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .18em;
}

.ptcs-heading h2 {
  color: #aaa;
  font-size: clamp(25px, 3.4vw, 40px);
  line-height: 1.35;
}

.ptcs-filter-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: stretch;
  margin-bottom: 52px;
  padding: 32px 34px;
  border: 1px solid var(--ptcs-black);
  background: #fff;
  box-shadow: 8px 8px 0 var(--ptcs-warm);
}

.ptcs-filter-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 96px;
  height: 4px;
  background: var(--ptcs-orange);
}

.ptcs-filter-panel__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.ptcs-filter-panel__intro span {
  color: var(--ptcs-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ptcs-filter-panel__intro h3 {
  margin: 11px 0 0;
  color: var(--ptcs-black);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.5;
}

.ptcs-filter-panel__intro p {
  margin: 9px 0 0;
  color: #777;
  font-size: 10px;
  line-height: 1.8;
}

.ptc-seminar-page .ptc-fb {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  margin: 0;
}

.ptc-seminar-page .ptc-fb-btn {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 13px;
  width: 100%;
  min-height: 74px;
  align-items: center;
  padding: 14px 17px;
  border-radius: 0;
  text-align: left;
  transition: background .2s ease, color .2s ease;
}

.ptc-seminar-page .ptc-fb-count {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: center;
  margin: 0;
  padding: 16px 9px;
  border: 1px solid var(--ptcs-line);
  background: var(--ptcs-warm);
  color: var(--ptcs-black);
}

.ptc-seminar-page .ptc-fb-count span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.ptc-seminar-page .ptc-fb-count strong {
  margin: 0 3px 0 0;
  color: var(--ptcs-orange);
  font-size: 28px;
  line-height: 1;
}

.ptc-seminar-page .ptc-fb-count small {
  font-size: 10px;
  font-weight: 700;
}

.ptc-fb-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ptc-fb-icon i {
  position: relative;
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
}

.ptc-fb-icon i::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ptcs-orange);
}

.ptc-fb-icon i:nth-child(1)::after,
.ptc-fb-icon i:nth-child(3)::after {
  left: 4px;
}

.ptc-fb-icon i:nth-child(2)::after {
  right: 4px;
}

.ptc-fb-btn-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.ptc-fb-btn-copy strong {
  color: #fff;
  font-size: 13px;
  letter-spacing: .02em;
}

.ptc-fb-btn-copy small {
  color: #999;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ptc-fb-arrow {
  color: var(--ptcs-orange);
  font-size: 18px !important;
  font-weight: 400;
  letter-spacing: 0 !important;
}

.ptc-seminar-page .ptc-fb-chips {
  grid-column: 1 / -1;
  justify-content: flex-start;
  margin-top: 2px;
}

.ptc-seminar-page .ptc-fb-chip {
  border-width: 1px;
  border-radius: 0;
  background: #fff;
}

.ptcs-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--ptcs-black);
}

.ptcs-results-head p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.ptcs-results-head p span {
  margin-right: 12px;
  color: var(--ptcs-orange);
  font-size: 9px;
  letter-spacing: .16em;
}

.ptcs-results-head small {
  color: #888;
  font-size: 9px;
  letter-spacing: .06em;
}

.ptc-seminar-page ul.ptc-sem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
}

.ptc-seminar-page .ptc-sem-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 0;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--ptcs-black);
  border-radius: 0;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ptc-seminar-page .ptc-sem-card:hover {
  transform: translateY(-2px);
  box-shadow: 7px 7px 0 var(--ptcs-warm);
}

.ptc-seminar-page .ptc-sem-card.is-ended {
  opacity: .58;
}

.ptc-seminar-page .ptc-sc-accent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 0 16px;
  border-right: 1px solid var(--ptcs-black);
  background: var(--ptcs-warm);
  color: var(--ptcs-black);
}

.ptc-seminar-page .ptc-sc-accent span {
  writing-mode: vertical-rl;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .2em;
}

.ptc-seminar-page .ptc-sc-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 11px;
  padding: 20px;
}

.ptc-seminar-page .ptc-sc-top {
  min-width: 0;
}

.ptc-seminar-page .ptc-sc-org {
  color: #777;
  font-size: 9px;
  letter-spacing: .06em;
}

.ptc-seminar-page .ptc-sc-badge {
  padding: 3px 8px;
  border-radius: 0;
  font-size: 8px;
}

.ptc-seminar-page a.ptc-sc-title {
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -.015em;
}

.ptc-seminar-page .ptc-sc-tag {
  padding: 3px 8px;
  border-width: 1px;
  border-radius: 0;
  font-size: 8px;
}

.ptc-seminar-page dl.ptc-sc-info {
  gap: 6px;
  margin: auto 0 0;
  padding: 12px;
  border-radius: 0;
  background: #f8f7f4;
}

.ptc-seminar-page .ptc-sc-row {
  gap: 9px;
}

.ptc-seminar-page .ptc-sc-row dt {
  flex-basis: 3.8em;
  color: #777;
  font-size: 8px;
}

.ptc-seminar-page .ptc-sc-row dd {
  min-width: 0;
  font-size: 10px;
  line-height: 1.65;
}

.ptc-seminar-page a.ptc-sc-btn {
  justify-content: space-between;
  margin: 0;
  padding: 10px 0 4px;
  border-top: 1px solid var(--ptcs-line);
  border-radius: 0;
  background: #fff;
  color: var(--ptcs-black);
  font-size: 9px;
}

.ptc-seminar-page a.ptc-sc-btn:hover,
.ptc-seminar-page a.ptc-sc-btn:focus-visible {
  background: #fff;
  color: var(--ptcs-orange);
}

.ptc-seminar-page .navigation.pagination {
  margin: 50px 0 0;
}

.ptc-seminar-page .nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ptc-seminar-page .nav-links .page-numbers {
  display: inline-grid;
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  place-items: center;
  border: 1px solid var(--ptcs-black);
  border-radius: 0;
  background: #fff;
  color: var(--ptcs-black);
  font-size: 10px;
  font-weight: 700;
}

.ptc-seminar-page .nav-links .page-numbers.current,
.ptc-seminar-page .nav-links a.page-numbers:hover {
  background: var(--ptcs-black);
  color: #fff;
}

.ptcs-empty {
  padding: 54px 30px;
  border: 1px solid var(--ptcs-line);
  text-align: center;
}

.ptcs-empty span {
  color: var(--ptcs-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ptcs-empty h3 {
  margin: 16px 0 0;
  font-size: 19px;
}

.ptcs-empty p {
  margin: 12px 0 0;
  color: #777;
  font-size: 11px;
}

.ptcs-empty a {
  display: inline-block;
  margin-top: 24px;
  border-bottom: 1px solid var(--ptcs-orange);
  font-size: 10px;
  font-weight: 800;
}

.ptcs-policy {
  padding: clamp(68px, 8vw, 96px) 0;
  background: var(--ptcs-black);
  color: #fff;
}

.ptcs-policy__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(50px, 9vw, 110px);
  align-items: end;
}

.ptcs-policy__statement {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5.7vw, 64px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.065em;
}

.ptcs-policy__grid > div > span {
  color: var(--ptcs-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ptcs-policy h2 {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.45;
}

.ptcs-policy__grid > div > p {
  margin: 18px 0 0;
  color: #bbb;
  font-size: 11px;
  line-height: 2;
}

body.ptc-seminar-view .ptc-fm-panel {
  width: min(720px, 92vw);
  max-height: 90vh;
  border: 1px solid #111;
  border-radius: 0;
  background: #fff;
  box-shadow: 12px 12px 0 rgba(240, 160, 75, .28);
}

body.ptc-seminar-view .ptc-fm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid #111;
  background: #f6eee7;
  color: #111;
  text-align: left;
}

body.ptc-seminar-view .ptc-fm-head > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

body.ptc-seminar-view .ptc-fm-head span {
  margin: 0;
  color: #f0a04b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}

body.ptc-seminar-view .ptc-fm-head strong {
  color: #111;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -.025em;
}

body.ptc-seminar-view .ptc-fm-x {
  position: static;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 0;
  transform: none;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-size: 22px;
}

body.ptc-seminar-view .ptc-fm-x:hover,
body.ptc-seminar-view .ptc-fm-x:focus-visible {
  background: #111;
  color: #fff;
}

body.ptc-seminar-view .ptc-fm-body {
  padding: 0 28px 28px;
}

body.ptc-seminar-view .ptc-fm-guide {
  margin: 0 0 22px;
  padding: 17px 0 17px 16px;
  border-bottom: 1px solid #e6e1dc;
  border-left: 3px solid #f0a04b;
  color: #666;
  font-size: 10px;
  line-height: 1.8;
}

body.ptc-seminar-view .ptc-fm-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 18px;
}

body.ptc-seminar-view .ptc-fm-row {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 0;
  border: 0;
}

body.ptc-seminar-view .ptc-fm-row.is-kw {
  grid-column: 1 / -1;
  padding: 0;
}

body.ptc-seminar-view .ptc-fm-label {
  flex: none;
  color: #111;
  font-size: 11px;
  font-weight: 800;
}

body.ptc-seminar-view .ptc-fm-label em {
  display: inline;
  margin: 0 0 0 7px;
  color: #f0a04b;
  font-size: 7px;
}

body.ptc-seminar-view .ptc-fm-sel {
  flex: none;
  width: 100%;
}

body.ptc-seminar-view .ptc-fm-sel::after {
  right: 16px;
}

body.ptc-seminar-view .ptc-fm-sel select,
body.ptc-seminar-view .ptc-fm-row.is-kw input[type="text"] {
  width: 100%;
  min-height: 48px;
  padding: 12px 40px 12px 14px;
  border: 1px solid #aaa;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 600;
}

body.ptc-seminar-view .ptc-fm-row.is-kw input[type="text"] {
  padding-right: 14px;
}

body.ptc-seminar-view .ptc-fm-sel select:focus,
body.ptc-seminar-view .ptc-fm-row.is-kw input[type="text"]:focus {
  outline: 2px solid #f0a04b;
  outline-offset: 1px;
  border-color: #111;
}

body.ptc-seminar-view .ptc-fm-foot {
  display: grid;
  grid-template-columns: auto auto minmax(220px, 1fr);
  gap: 10px;
  align-items: center;
  padding: 15px 18px;
  background: #111;
}

body.ptc-seminar-view .ptc-fm-count {
  color: #aaa;
  font-size: 8px;
  line-height: 1.4;
}

body.ptc-seminar-view .ptc-fm-count strong {
  color: #f0a04b;
  font-size: 16px;
}

body.ptc-seminar-view .ptc-fm-reset,
body.ptc-seminar-view .ptc-fm-submit {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 0;
  font-family: inherit;
  line-height: 1.4;
}

body.ptc-seminar-view .ptc-fm-reset {
  padding: 10px 15px;
  border: 1px solid #777;
  background: transparent;
  color: #fff;
  font-size: 9px;
}

body.ptc-seminar-view .ptc-fm-submit {
  gap: 18px;
  justify-content: space-between;
  padding: 11px 18px;
  background: #f0a04b;
  color: #111;
  font-size: 11px;
}

body.ptc-seminar-view .ptc-fm-submit:hover,
body.ptc-seminar-view .ptc-fm-submit:focus-visible {
  background: #fff;
  color: #111;
}

.ptc-seminar-page .ptc-fb-btn::after {
  content: none;
}

@media screen and (max-width: 900px) {
  .ptcs-filter-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ptc-seminar-page .ptc-fb-chips {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 760px) {
  .ptc-seminar-page ul.ptc-sem-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 620px) {
  .ptcs-hero {
    padding-top: 52px;
  }

  .ptcs-hero h1 {
    font-size: clamp(41px, 14vw, 59px);
  }

  .ptcs-policy__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ptcs-heading {
    grid-template-columns: auto minmax(32px, 58px) minmax(0, 1fr);
  }

  .ptcs-filter-panel {
    margin-bottom: 40px;
    padding: 22px 18px;
    box-shadow: 5px 5px 0 var(--ptcs-warm);
  }

  .ptc-seminar-page .ptc-fb {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .ptc-seminar-page .ptc-fb-count strong {
    font-size: 23px;
  }

  .ptc-seminar-page .ptc-fb-btn {
    min-height: 68px;
    padding-inline: 14px;
  }

  .ptc-fb-btn-copy strong {
    font-size: 12px;
  }

  .ptcs-results-head {
    align-items: flex-start;
  }

  .ptc-seminar-page .ptc-sem-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .ptc-seminar-page .ptc-sc-body {
    padding: 17px 15px;
  }

  .ptcs-policy__statement {
    font-size: clamp(32px, 11vw, 48px);
  }

  body.ptc-seminar-view .ptc-fm-panel {
    width: 100%;
    height: 100%;
    max-height: none;
    border: 0;
    box-shadow: none;
  }

  body.ptc-seminar-view .ptc-fm-head {
    padding: 18px 20px;
  }

  body.ptc-seminar-view .ptc-fm-head strong {
    font-size: 18px;
  }

  body.ptc-seminar-view .ptc-fm-body {
    padding: 0 18px 22px;
  }

  body.ptc-seminar-view .ptc-fm-fields {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  body.ptc-seminar-view .ptc-fm-row.is-kw {
    grid-column: 1;
  }

  body.ptc-seminar-view .ptc-fm-foot {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 12px;
  }

  body.ptc-seminar-view .ptc-fm-count {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ptc-seminar-page *,
  .ptc-seminar-page *::before,
  .ptc-seminar-page *::after {
    transition-duration: .01ms !important;
  }
}

/* === Partner and Contact pages 2026-07 === */
body.ptc-partner-view #content,
body.ptc-contact-view #content {
  margin: 0;
  padding: 0;
  background: #fff;
}

body.ptc-partner-view #content-in,
body.ptc-contact-view #content-in {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.ptc-partner-view #main,
body.ptc-contact-view #main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.ptc-partner-view #sidebar,
body.ptc-contact-view #sidebar {
  display: none;
}

.ptc-partner-page,
.ptc-contact-page {
  --ptco-black: #111;
  --ptco-orange: #f49a43;
  --ptco-warm: #f5eee8;
  --ptco-gray: #696969;
  color: var(--ptco-black);
  font-family: "Helvetica Neue", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: #fff;
}

.ptc-partner-page *,
.ptc-contact-page * {
  box-sizing: border-box;
}

.ptc-partner-page a,
.ptc-contact-page a {
  color: inherit;
  text-decoration: none;
}

.ptcb2b-shell,
.ptcco-shell {
  width: min(90%, 940px);
  margin-right: auto;
  margin-left: auto;
}

.ptcb2b-hero {
  padding: clamp(88px, 11vw, 128px) 0 clamp(76px, 10vw, 112px);
  color: #fff;
  background: var(--ptco-black);
}

.ptcb2b-hero__grid,
.ptcco-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, .65fr);
  gap: clamp(52px, 9vw, 96px);
  align-items: end;
}

.ptcb2b-eyebrow,
.ptcco-eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 30px;
  color: var(--ptco-orange);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ptcb2b-eyebrow span,
.ptcco-eyebrow span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid currentColor;
}

.ptcb2b-hero h1,
.ptcco-hero h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(60px, 9.5vw, 106px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.ptcb2b-hero h1 span:last-of-type,
.ptcco-hero h1 span:last-of-type {
  margin-left: clamp(24px, 6vw, 64px);
  color: transparent;
  -webkit-text-stroke: 1.4px currentColor;
}

.ptcb2b-hero h1 small,
.ptcco-hero h1 small {
  margin: 34px 0 0 clamp(26px, 6vw, 66px);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .12em;
  text-transform: none;
}

.ptcb2b-hero__note,
.ptcco-hero__note {
  padding-top: 22px;
  border-top: 1px solid currentColor;
}

.ptcb2b-hero__note span,
.ptcco-hero__note span {
  color: var(--ptco-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ptcb2b-hero__note p,
.ptcco-hero__note p {
  margin: 20px 0 0;
  color: #c7c7c7;
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
}

.ptcb2b-breadcrumb,
.ptcco-breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 20px 0;
  color: #999;
  font-size: 10px;
}

.ptcb2b-breadcrumb a:hover,
.ptcco-breadcrumb a:hover {
  color: var(--ptco-orange);
}

.ptcb2b-intro,
.ptcco-options {
  padding: clamp(76px, 10vw, 116px) 0;
}

.ptcb2b-intro__grid,
.ptcco-intro {
  display: grid;
  grid-template-columns: .45fr 1.05fr .7fr;
  gap: clamp(28px, 6vw, 64px);
  align-items: start;
}

.ptcb2b-intro__grid > p,
.ptcco-intro > p {
  margin: 9px 0 0;
  color: var(--ptco-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ptcb2b-intro h2,
.ptcco-intro h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(34px, 5.2vw, 52px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.055em;
}

.ptcb2b-intro__grid > div,
.ptcco-intro > div {
  padding-top: 10px;
  border-top: 1px solid var(--ptco-black);
}

.ptcb2b-intro__grid > div p,
.ptcco-intro > div p {
  margin: 0;
  color: var(--ptco-gray);
  font-size: 11px;
  line-height: 2;
}

.ptcb2b-intro__grid > div p + p {
  margin-top: 16px;
}

.ptcb2b-services {
  padding: clamp(76px, 10vw, 112px) 0;
  background: var(--ptco-warm);
}

.ptcb2b-heading {
  display: grid;
  grid-template-columns: 30px minmax(50px, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.ptcb2b-heading > span {
  font-size: 11px;
  font-weight: 800;
}

.ptcb2b-heading > i {
  height: 1px;
  background: var(--ptco-black);
}

.ptcb2b-heading p {
  margin: 0;
  color: var(--ptco-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ptcb2b-heading h2 {
  margin: 5px 0 0;
  padding: 0;
  border: 0;
  font-size: 27px;
}

.ptcb2b-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--ptco-black);
  border-left: 1px solid var(--ptco-black);
}

.ptcb2b-service-grid article {
  min-height: 270px;
  padding: clamp(28px, 4vw, 40px);
  border-right: 1px solid var(--ptco-black);
  border-bottom: 1px solid var(--ptco-black);
  background: #fff;
}

.ptcb2b-service-grid article > span {
  color: var(--ptco-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.ptcb2b-service-grid h3 {
  margin: 34px 0 0;
  padding: 0;
  border: 0;
  font-size: 25px;
  letter-spacing: -.035em;
}

.ptcb2b-service-grid p {
  margin: 16px 0 0;
  color: var(--ptco-gray);
  font-size: 11px;
  line-height: 2;
}

.ptcb2b-service-grid small {
  display: block;
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid #dedbd8;
  color: #8c8c8c;
  font-size: 8px;
  letter-spacing: .07em;
}

.ptcb2b-fit {
  padding: clamp(82px, 10vw, 116px) 0;
}

.ptcb2b-fit__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 9vw, 96px);
}

.ptcb2b-fit__grid > div > span,
.ptcb2b-policy span,
.ptcb2b-faq header > span,
.ptcb2b-contact span,
.ptcco-after > div > span {
  color: var(--ptco-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ptcb2b-fit h2 {
  margin: 18px 0 0;
  padding: 0;
  border: 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.28;
  letter-spacing: -.05em;
}

.ptcb2b-fit ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ptco-black);
  list-style: none;
}

.ptcb2b-fit li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #dedbd8;
}

.ptcb2b-fit li span {
  color: var(--ptco-orange);
  font-size: 10px;
  font-weight: 800;
}

.ptcb2b-fit li p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
}

.ptcb2b-process {
  padding: clamp(76px, 9vw, 108px) 0;
  border-top: 1px solid var(--ptco-black);
}

.ptcb2b-process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid var(--ptco-black);
  list-style: none;
}

.ptcb2b-process li {
  position: relative;
  min-height: 220px;
  padding: 25px 22px;
  border-right: 1px solid #dedbd8;
}

.ptcb2b-process li:last-child {
  border-right: 0;
}

.ptcb2b-process li > span {
  color: var(--ptco-orange);
  font-size: 12px;
  font-weight: 800;
}

.ptcb2b-process li strong {
  display: block;
  margin-top: 42px;
  font-size: 15px;
}

.ptcb2b-process li p {
  margin: 12px 0 0;
  color: var(--ptco-gray);
  font-size: 10px;
  line-height: 1.9;
}

.ptcb2b-process li:not(:last-child)::after {
  position: absolute;
  top: 28px;
  right: -8px;
  z-index: 1;
  color: var(--ptco-orange);
  font-size: 14px;
  content: "→";
}

.ptcb2b-policy {
  padding: clamp(72px, 9vw, 104px) 0;
  color: #fff;
  background: var(--ptco-black);
}

.ptcb2b-policy__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(52px, 9vw, 96px);
  align-items: end;
}

.ptcb2b-policy__grid > p {
  margin: 0;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.06em;
}

.ptcb2b-policy h2 {
  margin: 18px 0 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 23px;
  line-height: 1.5;
}

.ptcb2b-policy div p {
  margin: 17px 0 0;
  color: #bababa;
  font-size: 10px;
  line-height: 2;
}

.ptcb2b-faq {
  padding: clamp(78px, 10vw, 112px) 0;
}

.ptcb2b-faq__grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(44px, 8vw, 88px);
}

.ptcb2b-faq h2 {
  margin: 15px 0 0;
  padding: 0;
  border: 0;
  font-size: 34px;
}

.ptcb2b-faq details {
  border-top: 1px solid var(--ptco-black);
}

.ptcb2b-faq details:last-child {
  border-bottom: 1px solid var(--ptco-black);
}

.ptcb2b-faq summary {
  position: relative;
  padding: 20px 38px 20px 0;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.ptcb2b-faq summary::-webkit-details-marker {
  display: none;
}

.ptcb2b-faq summary::after {
  position: absolute;
  top: 19px;
  right: 4px;
  color: var(--ptco-orange);
  font-size: 16px;
  content: "+";
}

.ptcb2b-faq details[open] summary::after {
  content: "−";
}

.ptcb2b-faq details p {
  margin: 0;
  padding: 0 34px 20px 0;
  color: var(--ptco-gray);
  font-size: 10px;
  line-height: 2;
}

.ptcb2b-contact {
  padding: clamp(68px, 9vw, 94px) 0;
  background: var(--ptco-warm);
}

.ptcb2b-contact .ptcb2b-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 50px;
  align-items: end;
}

.ptcb2b-contact h2 {
  margin: 15px 0 0;
  padding: 0;
  border: 0;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.25;
  letter-spacing: -.05em;
}

.ptcb2b-contact p {
  margin: 17px 0 0;
  color: var(--ptco-gray);
  font-size: 11px;
}

.ptcb2b-contact .ptcb2b-shell > a {
  display: flex;
  min-height: 78px;
  padding: 0 24px;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background: var(--ptco-black);
}

.ptcb2b-contact a span {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0;
}

.ptcb2b-contact a i {
  color: var(--ptco-orange);
  font-size: 18px;
  font-style: normal;
}

/* Contact */
.ptcco-hero {
  padding: clamp(84px, 11vw, 124px) 0 clamp(72px, 9vw, 104px);
  background: var(--ptco-warm);
}

.ptcco-hero__note p {
  color: #555;
}

.ptcco-option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(50px, 7vw, 72px);
  border-top: 1px solid var(--ptco-black);
  border-left: 1px solid var(--ptco-black);
}

.ptcco-option-grid > div {
  min-height: 190px;
  padding: 24px 20px;
  border-right: 1px solid var(--ptco-black);
  border-bottom: 1px solid var(--ptco-black);
}

.ptcco-option-grid span {
  color: var(--ptco-orange);
  font-size: 10px;
  font-weight: 800;
}

.ptcco-option-grid h3 {
  margin: 30px 0 0;
  padding: 0;
  border: 0;
  font-size: 16px;
  line-height: 1.5;
}

.ptcco-option-grid p {
  margin: 12px 0 0;
  color: var(--ptco-gray);
  font-size: 10px;
  line-height: 1.8;
}

.ptcco-form-section {
  padding: clamp(78px, 10vw, 116px) 0;
  background: #fafafa;
}

.ptcco-form-grid {
  display: grid;
  grid-template-columns: 290px minmax(0, 560px);
  gap: clamp(50px, 9vw, 92px);
  justify-content: space-between;
}

.ptcco-form-grid > aside {
  align-self: start;
}

.ptcco-form-grid > aside > span {
  color: var(--ptco-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ptcco-form-grid aside h2 {
  margin: 18px 0 0;
  padding: 0;
  border: 0;
  font-size: 29px;
  line-height: 1.45;
  letter-spacing: -.04em;
}

.ptcco-form-grid aside dl {
  margin: 34px 0 0;
  border-top: 1px solid var(--ptco-black);
}

.ptcco-form-grid aside dl > div {
  padding: 17px 0;
  border-bottom: 1px solid #dedbd8;
}

.ptcco-form-grid aside dt {
  font-size: 10px;
  font-weight: 700;
}

.ptcco-form-grid aside dd {
  margin: 7px 0 0;
  color: var(--ptco-gray);
  font-size: 9px;
  line-height: 1.8;
}

.ptcco-form-content {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--ptco-black);
  background: #fff;
  box-shadow: 8px 8px 0 var(--ptco-warm);
}

.ptcco-form-content.entry-content > :first-child,
.ptcco-form-content .wpcf7-form > :first-child {
  margin-top: 0;
}

.ptcco-form-content.entry-content p,
.ptcco-form-content .wpcf7-form p {
  margin: 0 0 25px;
  font-size: 11px;
  line-height: 1.7;
}

.ptcco-form-content label {
  display: block;
  color: var(--ptco-black);
  font-weight: 700;
}

.ptcco-form-content input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.ptcco-form-content select,
.ptcco-form-content textarea {
  width: 100%;
  min-height: 50px;
  margin-top: 9px;
  padding: 12px 13px;
  border: 1px solid #aaa;
  border-radius: 0;
  color: var(--ptco-black);
  background: #fff;
  font: inherit;
  font-size: 12px;
  line-height: 1.7;
}

.ptcco-form-content textarea {
  min-height: 170px;
  resize: vertical;
}

.ptcco-form-content input:focus,
.ptcco-form-content select:focus,
.ptcco-form-content textarea:focus {
  outline: 2px solid var(--ptco-orange);
  outline-offset: 1px;
  border-color: var(--ptco-black);
}

.ptcco-form-content input[type="checkbox"],
.ptcco-form-content input[type="radio"] {
  width: 17px;
  height: 17px;
  margin-right: 7px;
  accent-color: var(--ptco-orange);
}

.ptcco-form-content .wpcf7-list-item {
  margin: 8px 18px 0 0;
}

.ptcco-form-content input[type="submit"],
.ptcco-form-content button[type="submit"],
.ptcco-form-content .button {
  display: inline-flex;
  min-width: 230px;
  min-height: 58px;
  padding: 0 22px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--ptco-black);
  border-radius: 0;
  color: #fff;
  background: var(--ptco-black);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.ptcco-form-content input[type="submit"]:hover,
.ptcco-form-content button[type="submit"]:hover,
.ptcco-form-content .button:hover {
  color: var(--ptco-black);
  background: var(--ptco-orange);
}

.ptcco-form-content .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #bb2f2f;
  font-size: 9px;
}

.ptcco-form-content .wpcf7-response-output {
  margin: 22px 0 0 !important;
  padding: 13px !important;
  border: 1px solid var(--ptco-black) !important;
  font-size: 10px;
}

.ptcco-form-content .wpcf7-spinner {
  vertical-align: middle;
}

.ptcco-form-empty {
  text-align: center;
}

.ptcco-form-empty p {
  color: var(--ptco-gray);
}

.ptcco-form-empty a {
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ptco-black);
  font-size: 11px;
  font-weight: 700;
}

.ptcco-after {
  padding: clamp(68px, 8vw, 92px) 0;
  color: #fff;
  background: var(--ptco-black);
}

.ptcco-after .ptcco-shell {
  display: grid;
  grid-template-columns: .65fr 1.1fr .85fr auto;
  gap: 28px;
  align-items: center;
}

.ptcco-after h2 {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 25px;
}

.ptcco-after p {
  margin: 0;
  color: #bababa;
  font-size: 10px;
  line-height: 1.9;
}

.ptcco-after a {
  padding-bottom: 5px;
  border-bottom: 1px solid #777;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.ptcco-after a i {
  margin-left: 14px;
  color: var(--ptco-orange);
  font-style: normal;
}

@media screen and (max-width: 850px) {
  .ptcb2b-hero__grid,
  .ptcco-hero__grid,
  .ptcb2b-intro__grid,
  .ptcco-intro,
  .ptcb2b-policy__grid {
    grid-template-columns: 1fr;
  }

  .ptcb2b-hero__note,
  .ptcco-hero__note,
  .ptcb2b-intro__grid > div,
  .ptcco-intro > div {
    max-width: 520px;
  }

  .ptcb2b-process ol,
  .ptcco-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ptcb2b-process li:nth-child(2) {
    border-right: 0;
  }

  .ptcb2b-process li:nth-child(2)::after {
    display: none;
  }

  .ptcb2b-process li:nth-child(-n + 2) {
    border-bottom: 1px solid #dedbd8;
  }

  .ptcco-form-grid {
    grid-template-columns: 1fr;
  }

  .ptcco-form-grid > aside {
    max-width: 520px;
  }

  .ptcco-after .ptcco-shell {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 640px) {
  .ptcb2b-shell,
  .ptcco-shell {
    width: calc(100% - 36px);
  }

  .ptcb2b-hero,
  .ptcco-hero {
    padding-top: 62px;
  }

  .ptcb2b-hero__grid,
  .ptcco-hero__grid {
    gap: 44px;
  }

  .ptcb2b-hero h1,
  .ptcco-hero h1 {
    font-size: clamp(52px, 18vw, 72px);
  }

  .ptcb2b-hero h1 span:last-of-type,
  .ptcco-hero h1 span:last-of-type {
    margin-left: 15px;
  }

  .ptcb2b-hero h1 small,
  .ptcco-hero h1 small {
    margin: 27px 0 0 17px;
    font-size: 11px;
  }

  .ptcb2b-intro,
  .ptcco-options {
    padding-top: 62px;
    padding-bottom: 72px;
  }

  .ptcb2b-intro__grid,
  .ptcco-intro {
    gap: 22px;
  }

  .ptcb2b-intro h2,
  .ptcco-intro h2 {
    font-size: 35px;
  }

  .ptcb2b-heading {
    grid-template-columns: 28px minmax(34px, 1fr) auto;
    gap: 10px;
  }

  .ptcb2b-service-grid,
  .ptcb2b-fit__grid,
  .ptcb2b-faq__grid,
  .ptcb2b-contact .ptcb2b-shell,
  .ptcco-option-grid,
  .ptcco-after .ptcco-shell {
    grid-template-columns: 1fr;
  }

  .ptcb2b-service-grid article {
    min-height: 0;
    padding: 28px 24px;
  }

  .ptcb2b-service-grid h3 {
    margin-top: 25px;
  }

  .ptcb2b-fit__grid,
  .ptcb2b-faq__grid {
    gap: 42px;
  }

  .ptcb2b-process ol {
    grid-template-columns: 1fr;
  }

  .ptcb2b-process li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 15px;
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid #dedbd8;
  }

  .ptcb2b-process li strong {
    margin-top: 0;
  }

  .ptcb2b-process li::after {
    display: none;
  }

  .ptcb2b-policy__grid {
    gap: 44px;
  }

  .ptcb2b-contact .ptcb2b-shell {
    gap: 32px;
  }

  .ptcb2b-contact .ptcb2b-shell > a {
    min-height: 66px;
  }

  .ptcco-option-grid > div {
    min-height: 0;
    padding: 22px;
  }

  .ptcco-option-grid h3 {
    margin-top: 20px;
  }

  .ptcco-form-content {
    padding: 26px 20px;
    box-shadow: 5px 5px 0 var(--ptco-warm);
  }

  .ptcco-form-content input[type="submit"],
  .ptcco-form-content button[type="submit"],
  .ptcco-form-content .button {
    width: 100%;
    min-width: 0;
  }

  .ptcco-after .ptcco-shell {
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ptc-partner-page *,
  .ptc-contact-page *,
  .ptc-partner-page *::before,
  .ptc-contact-page *::before,
  .ptc-partner-page *::after,
  .ptc-contact-page *::after {
    transition-duration: .01ms !important;
  }
}

/* Global mobile offset: 60px fixed header + 20px Cocoon layout compensation */
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }

  body:not(.home):not(.front-page) #content {
    padding-top: 80px !important;
  }

  body.home #content,
  body.front-page #content {
    padding-top: 0 !important;
  }

  body.home .top-hero,
  body.front-page .top-hero {
    padding-top: 80px;
  }

  body:not(.home):not(.front-page) [id] {
    scroll-margin-top: 92px;
  }
}
