@charset "UTF-8";
.teraumi-contents {
  /* ページ専用のCSS変数（:rootに置かない） */
  --text: #1a1a1a;
  --muted: #666;
  --line: #e7e7e7;
  --bg: #ffffff;
  --alt: #f7f7f7;
  --accent: #2F376C;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  /* 角丸無し（このページ内だけ） */
  /* 画像の基本（このページ内だけ） */
  /* Layout（wrapは使わず専用に） */
  /* PC/SP switch（このページ内だけ） */
  /* =========================
    Strip
  ========================= */
  /* Buttons（このページ内だけ） */
  /* =========================
    KV
  ========================= */
  /* =========================
    Anchor Nav
  ========================= */
  /* =========================
    Sections
  ========================= */
  /* Cards */
  /* Media card */
  /* Links */
  /* =========================
    Flow
  ========================= */
  /* Note */
  /* =========================
    Contact block
  ========================= */
  /* =========================
    Prose
  ========================= */
  /* CASE images */
  /* =========================
    FAQ (scoped)
  ========================= */
  /* open state */
  /* responsive */
}
.teraumi-contents, .teraumi-contents * {
  border-radius: 0 !important;
}
.teraumi-contents img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.teraumi-contents__wrap {
  width: min(1100px, 100% - 32px);
  margin-inline: auto;
}
.teraumi-contents .pc-on {
  display: block;
}
.teraumi-contents .sp-on {
  display: none;
}
@media (max-width: 768px) {
  .teraumi-contents .pc-on {
    display: none;
  }
  .teraumi-contents .sp-on {
    display: block;
  }
}
@media (max-width: 768px) {
  .teraumi-contents {
    --anchor-offset: 120px; /* SPはナビが低い想定で調整 */
  }
}
.teraumi-contents .page-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.teraumi-contents .page-strip .strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.teraumi-contents .page-strip .strip__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.teraumi-contents .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid var(--accent);
  color: var(--text);
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.teraumi-contents .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border-color: #cfd3ea;
}
.teraumi-contents .btn--ghost {
  border-color: #d7d7d7;
}
.teraumi-contents .kv {
  padding: 18px 0 26px;
}
@media (max-width: 768px) {
  .teraumi-contents .kv {
    padding-top: 0;
  }
}
.teraumi-contents .kv__mv {
  overflow: hidden;
  box-shadow: var(--shadow);
}
.teraumi-contents .kv__lead {
  margin-top: 18px;
  padding: 18px 18px;
  text-align: center;
  line-height: 2;
}
@media (max-width: 768px) {
  .teraumi-contents .kv__lead {
    text-align: left;
    padding: 0;
  }
}
.teraumi-contents .kv__lead span {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid var(--accent);
}
.teraumi-contents .kv__lead p {
  margin-bottom: 15px;
}
.teraumi-contents .kv__service {
  font-size: 1.1em;
}
.teraumi-contents .anchor-nav {
  position: sticky;
  top: 120px;
  z-index: 10;
  margin-bottom: 30px;
  /* ===== PC（従来表示） ===== */
  /* ===== SP（アコーディオン） ===== */
}
@media (max-width: 1050px) {
  .teraumi-contents .anchor-nav {
    top: 60px;
  }
}
.teraumi-contents .anchor-nav__toggle {
  display: none;
}
.teraumi-contents .anchor-nav__panel {
  /* PCでは常時表示（JSでhidden解除） */
}
.teraumi-contents .anchor-nav__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 12px 0;
}
.teraumi-contents .anchor-nav__item {
  position: relative;
  text-decoration: none;
  padding: 10px 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  color: #ffffff;
  background: #2f376c;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.teraumi-contents .anchor-nav__item:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: #cfd3ea;
}
.teraumi-contents .anchor-nav__sub {
  display: block;
  font-size: 12px;
  line-height: 1.4;
}
.teraumi-contents .anchor-nav__title {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.teraumi-contents .anchor-nav__arrow {
  position: absolute;
  left: 0;
  bottom: -35px;
  padding: 5px;
  text-align: center;
  background: #b1b1b1;
  width: 100%;
  line-height: 1;
}
.teraumi-contents .anchor-nav__arrow img {
  fill: var(--bg);
}
@media (max-width: 1050px) {
  .teraumi-contents .anchor-nav__panel {
    display: none;
  }
  .teraumi-contents .anchor-nav.is-open .anchor-nav__panel {
    display: block;
  }
}
@media (max-width: 1050px) {
  .teraumi-contents .anchor-nav__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1050px) {
  .teraumi-contents .anchor-nav {
    background: #fff; /* トグル背景 */
    /* SPでは下の帯矢印は不要なので非表示 */
  }
  .teraumi-contents .anchor-nav__toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 12px;
    background: #2f376c;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none; /* 角丸なし */
    cursor: pointer;
  }
  .teraumi-contents .anchor-nav__toggleIcon {
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex: 0 0 auto;
  }
  .teraumi-contents .anchor-nav__toggle[aria-expanded=true] .teraumi-contents .anchor-nav__toggleIcon {
    transform: rotate(-135deg);
  }
  .teraumi-contents .anchor-nav__panel {
    background: #fff;
  }
  .teraumi-contents .anchor-nav__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .teraumi-contents .anchor-nav__item {
    background: #efefef;
    color: #2f376c;
    text-align: left;
    align-items: flex-start;
    padding: 14px 12px;
    border-top: 1px solid rgba(47, 55, 108, 0.18);
  }
  .teraumi-contents .anchor-nav__item:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(47, 55, 108, 0.18);
  }
  .teraumi-contents .anchor-nav__title {
    color: #2f376c;
    font-size: 14px;
  }
  .teraumi-contents .anchor-nav__sub {
    color: rgba(47, 55, 108, 0.8);
    font-size: 12px;
  }
  .teraumi-contents .anchor-nav__arrow {
    display: none;
  }
}
.teraumi-contents .section {
  margin-top: -160px;
  padding: 214px 0 54px;
}
@media (max-width: 768px) {
  .teraumi-contents .section {
    padding-bottom: 0;
    padding-top: 154px;
    margin-top: -100px;
  }
}
.teraumi-contents .link_about--list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .teraumi-contents .link_about--list {
    flex-direction: column;
  }
}
.teraumi-contents .link_about--list--box {
  width: 48%;
  background: #d6d9ef;
}
@media (max-width: 768px) {
  .teraumi-contents .link_about--list--box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.teraumi-contents .link_about--list--box:nth-of-type(2) {
  background: #e7d1ad;
}
.teraumi-contents .link_about--list--box .txt {
  padding: 60px 12%;
}
@media (max-width: 768px) {
  .teraumi-contents .link_about--list--box .txt {
    padding: 30px 20px;
  }
}
.teraumi-contents .link_about--list--box .txt h3 {
  margin: 30px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .teraumi-contents .link_about--list--box .txt h3 {
    margin-top: 0;
  }
}
.teraumi-contents .link_about--list--box .txt h3 span {
  display: block;
}
.teraumi-contents .link_about--list--box .txt h3 span.jp {
  font-size: clamp(24px, 1.57vw, 30px);
}
.teraumi-contents .link_about--list--box .txt p {
  margin-bottom: 20px;
}
.teraumi-contents .link_about--list--box .txt ul {
  padding: 20px 0 0 20px;
}
@media (max-width: 768px) {
  .teraumi-contents .link_about--list--box .txt ul {
    padding-top: 0;
  }
}
.teraumi-contents .link_about--list--box .txt ul li {
  line-height: 1.5;
  list-style: disc;
  margin-bottom: 5px;
}
.teraumi-contents .card {
  background: #fff;
  border: 1px solid var(--accent);
  padding: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}
.teraumi-contents .card + .card {
  margin-top: 16px;
}
.teraumi-contents article:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .teraumi-contents article:nth-of-type(even) {
    flex-direction: column;
  }
}
.teraumi-contents .media {
  display: flex;
  justify-content: space-between;
  gap: 4%;
}
@media (max-width: 768px) {
  .teraumi-contents .media {
    flex-direction: column;
  }
}
.teraumi-contents .media__img {
  width: 33.75%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .teraumi-contents .media__img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.teraumi-contents .media__body {
  width: 62%;
}
@media (max-width: 768px) {
  .teraumi-contents .media__body {
    width: 100%;
  }
}
.teraumi-contents .media__title {
  margin: 6px 0 10px;
  line-height: 1.5;
  margin-bottom: 25px;
}
.teraumi-contents .media__text {
  margin: 0;
  color: var(--text);
}
@media (max-width: 900px) {
  .teraumi-contents .media {
    grid-template-columns: 1fr;
  }
}
.teraumi-contents .kicker {
  display: inline-block;
  margin: 0 0 20px;
  color: var(--alt);
  background: var(--accent);
  padding: 10px 15px 13px;
  line-height: 1;
}
@media (max-width: 768px) {
  .teraumi-contents .kicker {
    font-size: 12px;
    padding: 10px;
  }
}
.teraumi-contents .kicker strong {
  margin-left: 6px;
}
.teraumi-contents .link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.teraumi-contents .flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 30px;
}
.teraumi-contents .flow__item {
  background: #fff;
  border: 1px solid var(--accent);
  padding: 25px;
}
.teraumi-contents .flow__title {
  margin: 0 0 8px;
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--accent);
  font-weight: 700;
}
.teraumi-contents .flow__num {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: #eef0fa;
  color: var(--accent);
  font-weight: 800;
  flex: 0 0 auto;
}
.teraumi-contents .flow__text {
  margin: 0;
  color: var(--text);
}
.teraumi-contents .note {
  margin-top: 18px;
  background: #efefef;
}
.teraumi-contents .note__body {
  display: flex;
  justify-content: space-between;
  gap: 2%;
}
@media (max-width: 768px) {
  .teraumi-contents .note__body {
    flex-direction: column-reverse;
  }
}
.teraumi-contents .note__title {
  width: 58%;
  margin: 0 0 10px;
  color: var(--accent);
}
@media (max-width: 768px) {
  .teraumi-contents .note__title {
    width: 100%;
  }
}
.teraumi-contents .note__imgs {
  width: 40%;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 768px) {
  .teraumi-contents .note__imgs {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
.teraumi-contents .contact {
  margin-top: 18px;
}
.teraumi-contents .contact__title {
  font-size: 16px;
  margin: 0 0 10px;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.teraumi-contents .contact__box {
  border: 1px solid var(--accent);
  background: #fff;
  padding: 16px;
}
.teraumi-contents .contact__tel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: var(--text);
  padding: 12px 12px;
  border: 1px solid #d8dcf0;
  background: #f6f7ff;
}
.teraumi-contents .contact__label {
  font-size: 12px;
  color: var(--muted);
}
.teraumi-contents .contact__num {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.teraumi-contents .contact__note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.teraumi-contents #link_comment .card__inner {
  display: flex;
  justify-content: space-between;
  gap: 4%;
}
@media (max-width: 768px) {
  .teraumi-contents #link_comment .card__inner {
    flex-direction: column;
  }
}
.teraumi-contents #link_comment .card__inner__img {
  width: 33.74%;
}
@media (max-width: 768px) {
  .teraumi-contents #link_comment .card__inner__img {
    width: 100%;
    margin-bottom: 15px;
  }
}
.teraumi-contents #link_comment .card__inner .prose {
  width: 62%;
}
@media (max-width: 768px) {
  .teraumi-contents #link_comment .card__inner .prose {
    width: 100%;
  }
}
.teraumi-contents .prose h3 {
  margin-bottom: 30px;
}
.teraumi-contents .prose p {
  margin: 0 0 12px;
}
.teraumi-contents .prose p:last-child {
  text-align: right;
  margin-bottom: 0;
}
.teraumi-contents .sign {
  margin-top: 14px;
  color: var(--muted);
}
.teraumi-contents .grid-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 768px) {
  .teraumi-contents .grid-imgs {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }
}
.teraumi-contents #link_case .card {
  display: flex;
  justify-content: space-between;
  gap: 4%;
}
@media (max-width: 768px) {
  .teraumi-contents #link_case .card {
    flex-direction: column;
  }
}
.teraumi-contents #link_case .card .prose {
  width: 86%;
}
@media (max-width: 768px) {
  .teraumi-contents #link_case .card .prose {
    width: 100%;
  }
}
.teraumi-contents #link_case .card .prose p:last-child {
  text-align: left;
}
.teraumi-contents #link_case .card .grid-imgs {
  display: flex;
  flex-direction: column;
  width: 42%;
  max-width: 300px;
}
@media (max-width: 768px) {
  .teraumi-contents #link_case .card .grid-imgs {
    width: 100%;
    max-width: initial;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
  .teraumi-contents #link_case .card .grid-imgs img {
    width: 100%;
    margin: 0 auto 10px;
    max-width: 288px;
    min-width: 0;
  }
}
.teraumi-contents #link_flow .note__imgs {
  width: 33.8%;
}
@media (max-width: 768px) {
  .teraumi-contents #link_flow .note__imgs {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .teraumi-contents #link_flow .note__imgs img {
    width: 100%;
    margin: 0 auto 10px;
    max-width: 288px;
    min-width: 0;
  }
}
.teraumi-contents #faq .faq {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  border-top: 1px solid #e7e7e7;
}
.teraumi-contents #faq .faq__item {
  border-bottom: 1px solid #e7e7e7;
  background: #fff;
}
.teraumi-contents #faq .faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  text-align: left;
  padding: 20px 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #1a1a1a;
}
.teraumi-contents #faq .faq__q:focus-visible {
  outline: 2px solid #2F376C;
  outline-offset: 2px;
}
.teraumi-contents #faq .faq__q-mark {
  font-weight: 700;
  color: #2F376C;
  letter-spacing: 0.04em;
}
.teraumi-contents #faq .faq__q-text {
  font-weight: 700;
  line-height: 1.6;
}
.teraumi-contents #faq .faq__icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex: 0 0 auto;
}
.teraumi-contents #faq .faq__icon::before,
.teraumi-contents #faq .faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #2F376C;
  transform: translate(-50%, -50%);
}
.teraumi-contents #faq .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.teraumi-contents #faq .faq__q[aria-expanded=true] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
.teraumi-contents #faq .faq__a {
  padding: 0 20px 20px;
}
.teraumi-contents #faq .faq__a p {
  margin: 10px 0 0;
  color: #1a1a1a;
  line-height: 1.9;
}
.teraumi-contents #faq .faq__a strong {
  color: #2F376C;
}
.teraumi-contents #faq .faq__sublist {
  margin: 10px 0 0 1.1em;
  padding: 0;
}
.teraumi-contents #faq .faq__sublist li {
  margin: 6px 0 0;
  line-height: 1.9;
}
.teraumi-contents #faq .faq__spacer {
  height: 8px;
}
@media (max-width: 768px) {
  .teraumi-contents #faq .faq__q {
    padding: 14px 10px;
    gap: 10px;
  }
}/*# sourceMappingURL=teraumi.css.map */