@charset "utf-8";

/* =================================================
  Common Utility Styles
  Tailwindを壊さない補助CSS（共通）
================================================= */

p{
  margin: 0;
  color: #374151;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
}


/* =================================================
  Header Global Nav (PC)
================================================= */
.gnav{
  align-items: center;
}

.gnav__alink,
.gnav__link{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 2px;
  color: rgb(71 85 105);
  font-weight: 700;
  transition: color .2s ease;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.gnav__alink:hover,
.gnav__link:hover{
  color: #3b82f6;
}

/* 下線アニメ */
.gnav__alink::after,
.gnav__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:#3b82f6;
  transition: width .2s ease;
}

.gnav__alink:hover::after,
.gnav__item--hasdrop:hover .gnav__link::after{
  width:100%;
}

.gnav__chev{
  font-size: 11px;
  opacity: .7;
  transform: translateY(1px);
}

/* dropdown */
.gnav__item{
  position: relative;
}

.gnav__drop{
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(15,23,42,.14);
  padding: 10px;
  z-index: 60;
}

/* ホバーの“橋”（マウス移動で閉じない対策） */
.gnav__drop::before{
  content:"";
  position:absolute;
  left:0;
  top:-10px;
  width:100%;
  height:10px;
}

.gnav__item--hasdrop:hover .gnav__drop{
  display: grid;
  gap: 6px;
}

/* drop内に乗ってても開いたまま */
.gnav__drop:hover{
  display: grid;
  gap: 6px;
}

.gnav__dropLink{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  color: rgb(51 65 85);
  transition: background .2s ease, color .2s ease;
  text-decoration: none;
}

.gnav__dropLink:hover{
  background: rgba(59,130,246,.10);
  color: #3b82f6;
}


/* =================================================
  Mobile Menu (details)
================================================= */
.mobile-nav__toplink{
  padding: 12px 0;
  border-bottom: 1px solid rgb(243 244 246);
  color: rgb(71 85 105);
  text-decoration: none;
}

.mobile-nav__toplink:hover{
  color:#3b82f6;
}

.mobile-nav__group{
  border-bottom: 1px solid rgb(243 244 246);
  padding: 6px 0;
}

.mobile-nav__summary{
  list-style: none;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgb(71 85 105);
  font-size: 0.9375rem;
}

.mobile-nav__summary::-webkit-details-marker{
  display:none;
}

.mobile-nav__children{
  display: grid;
  gap: 8px;
  padding: 6px 0 10px 12px;
  border-left: 2px solid rgba(226,232,240,.9);
}

.mobile-nav__link{
  color: rgb(71 85 105);
  text-decoration: none;
  padding: 6px 0;
  font-size: 0.875rem;
}

.mobile-nav__link:hover{
  color:#3b82f6;
}



/* =================================================
  各ページ共通
================================================= */


.topicpass {
  width: 100%;
  background: #D2E3ED;
  margin: 0;
  padding: 0;
  font-size: 15px; /* 13px相当 */
  color: #333;
}

.topicpass ol {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.topicpass li::after {
  content: ">";
  margin-left: 8px;
  color: #94a3b8;
}

.topicpass li:last-child::after {
  content: "";
}

.topicpass a {
  color: inherit;
  text-decoration: none;
}

.topicpass a:hover {
  text-decoration: underline;
}



.subtitle {
  margin: 0 0 30px 0;
  padding-bottom: 10px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--svc-ink);
  letter-spacing: -0.01em;
  border-bottom: 2px solid #e2e8f0;
}

.subtitle-short {
  max-width:860px;
  margin: 0 auto 30px;
  padding-bottom: 10px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--svc-ink);
  letter-spacing: -0.01em;
  border-bottom: 2px solid #e2e8f0;
}


.subtitle2 {
  margin: 32px 0 20px;
  padding-left: 10px;
  font-size: 20px;
  font-weight: 900;
  color: var(--svc-ink);
  border-left: 4px solid #3b82f6;
}



/* =================================================
  Footer Sitemap
================================================= */
.footer-sitemap a{
  text-decoration: none;
}

/* grid */
.footer-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}


.font-eng{
  color: #aaa !important;
}



@media (min-width: 768px){
  .footer-grid{
    grid-template-columns: repeat(6, auto);
    gap: 22px 80px;
    align-items: start;
    justify-content: center;
  }
  .footer-h{
    font-size: 0.85em;
  }
}


/* columns */
.footer-col{
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 14px;
  padding: 14px 14px 12px;
}

@media (min-width: 768px){
  .footer-col{
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
  }
  /* 企業情報：1列目1行目 */
  .footer-col:nth-child(1){ grid-column: 1; grid-row: 1; }
  /* コンテンツ：2列目1行目 */
  .footer-col:nth-child(2){ grid-column: 2; grid-row: 1; }
  /* 映像翻訳（言語別）：3列目1行目 */
  .footer-col:nth-child(3){ grid-column: 3; grid-row: 1; }
  /* 映像翻訳（その他）：3列目2行目 */
  .footer-col:nth-child(4){ grid-column: 3; grid-row: 2; }
  /* 番組通訳：4列目1行目 */
  .footer-col:nth-child(5){ grid-column: 4; grid-row: 1; }
  /* 海外リサーチ：5列目1行目 */
  .footer-col:nth-child(6){ grid-column: 5; grid-row: 1; }
  /* 番組別サービス：6列目1行目 */
  .footer-col:nth-child(7){ grid-column: 6; grid-row: 1; }
}

/* summary/head */
.footer-h{
  font-weight: 900;
  color: rgb(226 232 240);
  letter-spacing: .04em;
  margin-bottom: 10px;
  cursor: pointer;
  list-style: none;
}

.footer-h::-webkit-details-marker{
  display:none;
}

.footer-hlink{
  color: rgb(226 232 240);
  font-weight: 900;
}

.footer-hlink:hover{
  color: #fff;
}

/* list */
.footer-list{
  display: grid;
  gap: 8px;
}

.footer-list li{
  position: relative;
  padding-left: 1em; /* 横線分の余白 */
}

.footer-list li::before{
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: rgb(148 163 184);
  font-weight: 700;
}

.footer-list a{
  font-size: 0.74375rem; /* 0.875rem × 85% */
  line-height: 1.6;
  color: rgb(203 213 225);
  transition: color .2s ease;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-list a:hover{
  color:#fff;
}

.footer-privacy-link{ margin-top: 40px; }

/* bottom */
.footer-bottom{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(148,163,184,.18);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  color: rgb(148 163 184);
}

.footer-legal{
  color: rgb(203 213 225);
  font-size: 0.875rem; /* 14px相当 */
}

.footer-legal:hover{
  color:#fff;
}

.footer-sep{
  opacity: .5;
}


/* =================================================
  Utilities (共通)
================================================= */

  .hero-title{
    white-space: nowrap; /* PCでは1行固定 */
  }

/* テキストの影（視認性向上） */
.text-shadow{
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.text-shadow-sm{
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* モニターのような発光表現（タイムコード等） */
.text-glow{
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(59, 130, 246, 0.5);
}


/* =================================================
  Contact block (PC only)
================================================= */
@media (min-width: 768px){
	
  .hero-title{
    white-space: normal;
  }	
  
  .hero-bg{
    background-attachment: scroll;
  }
	
  .contact-phone{
    white-space: nowrap;
    flex-shrink: 0;
  }

  .contact-mail{
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 220px;
    justify-content: center;
  }
}

/* =================================================
  Back to Top
================================================= */
.back-to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  border: 1px solid rgba(148,163,184,.35);
  background: rgba(255,255,255,.92);
  color: rgb(15 23 42);
  box-shadow: 0 14px 30px rgba(15,23,42,.18);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease;
  z-index: 80;
}

.back-to-top.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover{
  background: #fff;
}



/* =========================
   SP
========================= */
@media (max-width: 767px) {

p{
  margin: 0;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.subtitle {
  margin: 0 0 1.25rem;
  padding-bottom: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--svc-ink);
  letter-spacing: -0.01em;
}

.subtitle-short {
  margin: 0 0 1.25rem;
  padding-bottom: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--svc-ink);
  letter-spacing: -0.01em;
}

.subtitle2 {
  font-size: 1rem;
  font-weight: 700;
}

.subtitle2 {
  margin: 0 0 0.625rem;
  padding-left: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--svc-ink);
  border-left: 3px solid #3b82f6;
}

/* --- Contact block SP --- */
#contact {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

#contact h2 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

#contact > div > p {
  font-size: 0.875rem;
  margin-bottom: 2rem;
  color: #cbd5e1;
}

#contact .rounded-2xl {
  padding: 1.5rem 1rem;
}

.contact-phone {
  font-size: 2rem;
  white-space: nowrap;
}

.contact-mail {
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}

.gnav__chev {
  font-size: 0.6875rem; /* 11px相当 */
}

.topicpass {
  font-size: 0.8125rem; /* 13px相当 */
}

.topicpass ol {
  max-width: 75rem;
  padding: 0.75rem 1.5rem;
  gap: 0.5rem;
}

.topicpass li::after {
  margin-left: 0.5rem;
}

.footer-h {
  margin-bottom: 0.625rem;
}

.footer-privacy-link {
  margin-top: 2.5rem;
}

.footer-bottom {
  margin-top: 1.375rem;
  padding-top: 1rem;
  gap: 0.625rem;
}

.contact-mail {
  min-width: 13.75rem;
}

.back-to-top {
  right: 1.125rem;
  bottom: 1.125rem;
  width: 3.25rem;
  height: 3.25rem;
}

#staffvoice .sv__more {
  margin-top: 2.5rem;
}

#staffvoice .sv__btn {
  padding: 0.75rem 2rem;
}


.font-eng{
  font-size: 0.6875rem;
  color: #aaa !important;
}


}


/* =========================
  STAFF VOICE（最終確定版）
  - Tailwind不使用
  - 他CSSに絶対に負けない
========================= */

#staffvoice.sv{
  padding: 96px 0;
  background: #fff;
}

#staffvoice .sv__container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

#staffvoice .sv__head{
  text-align: center;
  margin-bottom: 48px;
}

#staffvoice .sv__label{
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ideaBlue);
}

#staffvoice .sv__title{
  margin-top: 8px;
  font-size: 32px;
  font-weight: 900;
  color: var(--ideaNavy);
}

#staffvoice .sv__line{
  width: 64px;
  height: 4px;
  background: var(--ideaBlue);
  margin: 24px auto 0;
}

/* 一覧 */
#staffvoice .sv__list{
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* カード */
#staffvoice .sv__card{
  display: block;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s ease;
}

#staffvoice .sv__card:hover{
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

#staffvoice .sv__cardInner{
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

#staffvoice .sv__img{
  width: 160px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

#staffvoice .sv__cardTitle{
  font-size: 16px;
  font-weight: 700;
  color: var(--ideaNavy);
}

#staffvoice .sv__desc{
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.75;
  color: #475569;
}

/* もっと見る */
#staffvoice .sv__more{
  margin-top: 40px;
  text-align: center;
}

#staffvoice .sv__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--ideaRed) !important;
  background-color: var(--ideaRed) !important;
  color: #fff !important;

  font-weight: 700;
  padding: 12px 32px;
  border-radius: 6px;
  text-decoration: none;
  border: none;

  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

#staffvoice .sv__btn:hover{
  background: #c53030 !important;
  background-color: #c53030 !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  transform: translateY(-1px);
}

/* SP */
@media (max-width: 768px){
  #staffvoice .sv__list{
    grid-template-columns: 1fr;
  }
  #staffvoice .sv__cardInner{
    flex-direction: column;
  }
  #staffvoice .sv__img{
    width: 60%;
	margin: 0 auto 0.625rem;
	display:block;
  }
}

#staffvoice .sv__btn{
  background-color: #e03b3b !important;
  color: #ffffff !important;
  border: none !important;
}

#staffvoice .sv__btn:hover{
  background-color: #c53030 !important;
}



html, body{
  overflow-x: hidden;
}