@charset "UTF-8";
:root {
  --vw375: 0.2666666667vw;
  /* 100 / 375 */
  --vw768: 0.1302083333vw;
  /* 100 / 768 */
  --vw1100: 0.0909090909vw;
  /* 100 / 1100 */
  --vw1440: 0.0694444444vw;
  /* 100 / 1440 */
  --vw1600: 0.0625vw;
  /* 100 / 1600 */
}

:root {
  --navy-900: #00142d;
  --navy-800: #001e40;
  --navy-700: #102a4f;
  --gold-500: #c5a059;
  --gold-600: #a67c37;
  --forest-900: #1a3b32;
  --ink-900: #222222;
  --ink-800: #333333;
  --ink-700: #43474f;
  --ink-500: #737780;
  --white: #fff;
  --paper: #f6f5f5;
  --paper-footer: #e4e2e1;
  --line-100: #eee;
  --line-200: #ddd;
  --line-300: #ccc;
  --gold-line: rgba(197, 160, 89, .4);
  --overlay-navy: rgba(0, 20, 45, .42);
  --overlay-forest: rgba(26, 59, 50, .42);
  --font-mincho: "Shippori Mincho", "Noto Serif JP", serif;
  --font-serif: "Noto Serif JP", ui-serif, Georgia, serif;
  --font-sans: "Noto Sans JP", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-label: "Hanken Grotesk", -apple-system, "Segoe UI", Roboto, sans-serif;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-raised: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  --shadow-overlay: 0 25px 50px -12px rgba(0, 0, 0, .25);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --max: 1392px;
}

/* --------------------------------

  CSS Reset

-------------------------------- */
/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #4993CF;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

select {
  -moz-appearance: menulist-button;
  -webkit-appearance: menulist-button;
  appearance: menulist-button;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
/* 共通見出し（h2相当）*/
.common-header {
  max-width: 1100px;
  margin: 0 auto 2em;
}
@media screen and (max-width: 767.98px) {
  .common-header {
    margin: 0 auto 1.2em;
  }
}

.common-heading {
  display: block;
  line-height: 1.2;
  font-size: 3rem;
  padding-bottom: 2rem;
  color: #4993CF;
  text-align: center;
  border-bottom: 1px solid #4993CF;
}
@media screen and (max-width: 1099.98px) {
  .common-heading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .common-heading {
    font-size: 2rem;
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 479.98px) {
  .common-heading {
    font-size: 1.8rem;
  }
}

.common-subheading {
  position: relative;
  font-size: 1.7rem;
  line-height: 1.2;
  padding-left: 1.2em;
  margin-bottom: 1.2em;
}
@media screen and (min-width: 640px), print {
  .common-subheading {
    font-size: 1.8rem;
  }
}
.common-subheading::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 10px;
  height: 17px;
  background-color: #4993CF;
  transform: skewX(-30deg);
}

/* 共通見出し（h3相当）*/
/* 注釈（※）用インデント */
.note {
  margin-left: 1em;
  text-indent: -1em;
}

.common-link {
  position: relative;
  display: block;
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: 500;
  z-index: 0;
}
@media screen and (max-width: 1099.98px) {
  .common-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .common-link {
    font-size: 1.2rem;
  }
}
.common-link:hover::before {
  background: url("../img/base/icon-arrow_wht.png") no-repeat center/cover;
}
.common-link:hover::after {
  background-color: #fff;
}
.common-link:hover span {
  background-color: #4993CF;
  color: #fff;
}
.common-link span {
  display: block;
  padding: 1.5rem 4em 1.5rem 2rem;
  background-color: #fff;
  color: #4993CF;
  border: 1px solid #4993CF;
  transition-timing-function: ease;
  transition-duration: 0.5s;
  transition-property: color, background-color;
}
@media screen and (max-width: 1099.98px) {
  .common-link span {
    padding: 1.2rem 5.5rem 1.2rem 1.3rem;
  }
}
.common-link::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  right: 1.5rem;
  display: block;
  width: 42px;
  height: 7px;
  background: url("../img/base/icon-arrow_blk.png") no-repeat center/cover;
  transition-timing-function: ease;
  transition-duration: 0.5s;
  transition-property: all;
}
@media screen and (max-width: 1099.98px) {
  .common-link::before {
    width: 35px;
    height: 6px;
    top: calc(50% - 0.4rem);
  }
}
.common-link::after {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  width: 100%;
  height: 100%;
  border: 1px solid #4993CF;
  background-color: #4993CF;
  z-index: -1;
  transition-timing-function: ease;
  transition-duration: 0.5s;
  transition-property: background-color, border-color;
}

.link-button {
  position: relative;
  display: block;
  width: 230px;
  height: 55px;
  place-content: center;
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 1.1rem 4.5rem 1.1rem 2rem;
  transition: background-color 0.3s ease;
  transition-property: background-color, color;
  transition-timing-function: ease;
  transition-duration: 0.5s;
  text-align: left;
}
.link-button::before {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 31px;
  height: 6px;
  background: url("../img/base/icon-arrow_blk.png") no-repeat center/contain;
}
@media screen and (min-width: 768px), print {
  .link-button::before {
    width: 30px;
    height: 5px;
  }
}
@media screen and (min-width: 768px), print {
  .link-button {
    font-size: 1.8rem;
    padding: 1.1rem 6rem 1.1rem 2.5rem;
    width: 300px;
    height: 66px;
  }
}
.link-button:hover {
  background-color: #4993CF;
  color: #fff;
  border-color: #4993CF;
}
.link-button:hover::before {
  background: url("../img/base/icon-arrow_wht.png") no-repeat center/contain;
}

/* 共通リンクボタン（ホバー）*/
/* コンテンツ画面中央寄せ */
.inner {
  position: relative;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
.inner::after {
  content: "";
  display: table;
  clear: both;
}

/* アンカー位置調整 */
.anchor-point {
  display: block;
}
.anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -151px;
  padding-bottom: 150px;
  background: transparent;
  z-index: -100;
}
@media screen and (min-width: 1100px), print {
  .anchor-point::before {
    margin-top: -209px;
    padding-bottom: 209px;
  }
}

.global-contact {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .global-contact {
    position: absolute;
    top: 2.1rem;
    right: 5rem;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
}
.global-contact-item.tel .tel-link {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0 0 0 1.4em;
}
.global-contact-item.tel .tel-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-45%);
  width: 16px;
  height: 16px;
  background: url("../img/base/icon-tel_wht.svg") no-repeat center/contain;
}
.global-contact-item.mail a {
  display: block;
  width: 150px;
  height: 37px;
  line-height: 1.2;
  place-content: center;
  text-align: center;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #4993CF;
  transition: background-color 0.3s ease;
}
.global-contact-item.mail a span {
  position: relative;
  display: inline-block;
  padding: 0 0 0 1.6em;
}
.global-contact-item.mail a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-45%);
  width: 15px;
  height: 11px;
  background: url("../img/base/icon-mail2_wht.svg") no-repeat center/contain;
}
.global-contact-item.mail a:hover {
  background-color: #67b3f1;
}

/* テキスト改行系 */
@media screen and (max-width: 767.98px) {
  .u-br--pc {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .u-br--sp {
    display: none;
  }
}

/* ============================================================
   s.css 由来の基本・共通スタイル移行
   ============================================================ */
html {
  scroll-behavior: smooth;
}

html body {
  margin: 0;
  background: var(--white);
  color: var(--ink-700) !important;
  font-family: var(--font-sans) !important;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.55 !important;
}
html body a {
  color: inherit !important;
  text-decoration: none !important;
}
html body img {
  display: block !important;
  max-width: 100% !important;
  border-radius: 0 !important;
}
html body button,
html body input,
html body select,
html body textarea,
html body .btn,
html body .feat,
html body .svc,
html body .news-list {
  border-radius: 0 !important;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* eyebrow */
.eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--navy-800);
}

.eyebrow.gold {
  color: var(--gold-500);
}

.eyebrow.on-dark {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow.boxed {
  display: inline-block;
  padding: 6px 14px 8px;
  border: 1px solid var(--gold-line);
}

.sec-head .eyebrow,
.office .head .eyebrow,
.news-side .news-eyebrow {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.pcbr {
  display: inline;
}

.spbr {
  display: none;
}

/* section header */
.sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.sec-head .title {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 38px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: var(--navy-800);
}

.sec-head .title br.pc_br {
  display: none;
}

@media (min-width: 1101px) {
  .sec-head .title br.pc_br {
    display: block;
  }
}
.sec-head.on-dark .title {
  color: var(--white);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-serif) !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0 !important;
  transition: background var(--ease) 0.28s, color var(--ease) 0.28s;
}

.btn-sm {
  padding: 13px 22px;
  font-size: 14px;
}

.btn-md {
  padding: 20px 32px;
  font-size: 16px;
}

.btn-lg {
  padding: 23px 44px;
  font-size: 17px;
  letter-spacing: 0.16em;
}

.btn-navy {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
}

.btn-navy:hover {
  background: var(--navy-700);
}

.btn-gold {
  background: var(--gold-500);
  color: #fff !important;
  border-color: var(--gold-500);
}

.btn-gold:hover {
  background: var(--gold-600);
}

.btn-ghost {
  background: #fff;
  color: var(--navy-800);
  border-color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.86);
}

.btn img {
  width: 18px;
  height: auto;
}

.btn-sm img {
  width: 15px;
}

/* watermark */
.wm {
  position: absolute;
  font-family: var(--font-mincho);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  pointer-events: none;
}

/* arrow link */
.alink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--gold-500);
}

.alink .chev {
  font-size: 1.1em;
}

.alink-div {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.alink-div .rule {
  width: 40px;
  height: 1px;
  background: currentColor;
}

/* ---------- Lazy Load Fade-In Up ---------- */
.lazy-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.lazy-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .pcbr {
    display: none;
  }
  .spbr {
    display: inline;
  }
}
/* --------------------------------

  html, body

-------------------------------- */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 320px;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
}

html.nav-open,
html.contact-open {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}
/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media screen and (min-width: 1100px), print {
  .wrapper {
    overflow: hidden;
  }
}

@media screen and (max-width: 1099.98px) {
  .wrapper .tel-button,
  .wrapper .contact-button,
  .wrapper .pagetop {
    transition: bottom 0.3s;
  }
  .wrapper.hide .tel-button,
  .wrapper.hide .contact-button {
    bottom: -141px;
  }
  .wrapper.hide .pagetop {
    bottom: 10px;
  }
}
/* --------------------------------

  header (s.css 由来およびレスポンシブ対応)

-------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  padding: 0 20px;
  max-width: 1600px !important;
  margin: 0 auto;
  gap: 20px;
}

.sp-nav-toggle,
.sp-header-contact,
.sp-drawer,
.sp-drawer-overlay {
  display: none;
}

.logo {
  line-height: 1;
  text-align: left;
  flex-shrink: 0;
}
.logo:hover {
  color: inherit !important;
  text-decoration: none !important;
  opacity: 1 !important;
}
.logo .firm {
  display: block;
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.15em;
  color: var(--navy-800);
  text-align: center;
}
.logo .name {
  display: block;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--ink-900);
  text-align: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}

.nav-pc {
  display: flex;
  gap: 28px;
  align-items: center;
}
@media (max-width: 1500px) {
  .nav-pc {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 6px 20px;
    justify-content: center;
  }
}
.nav-pc a {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--ink-800);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.nav-pc a:first-child, .nav-pc a:hover {
  color: var(--navy-800);
}

.header-tel {
  text-align: right;
}
.header-tel .num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--navy-800);
}
.header-tel .num span {
  font-size: clamp(20px, 2vw, 32px);
}
.header-tel .hours {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-800);
  margin-top: 2px;
}

.header-contact {
  width: 220px;
  height: 65px;
  flex: 0 0 220px;
  padding: 0;
  gap: 7px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #fff !important;
}
.header-contact img {
  width: 20px;
  height: auto;
}

/* ---------- header responsive ---------- */
@media (max-width: 1100px) {
  .site-header .inner {
    height: 70px;
    padding: 0;
    gap: 0;
    max-width: none !important;
  }
  .header-right {
    display: none;
  }
  .logo {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .logo .firm {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .logo .name {
    font-size: 20px;
  }
  .sp-nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .sp-nav-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--navy-800);
    margin: 2.5px 0;
    transition: 0.3s;
  }
  .sp-nav-toggle .lbl {
    font-family: var(--font-label);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--navy-800);
    margin-top: 3px;
  }
  .sp-header-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--navy-800);
    color: #fff;
    text-decoration: none;
  }
  .sp-header-contact img {
    width: 20px;
    height: auto;
  }
  .sp-header-contact .lbl {
    font-family: var(--font-label);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-top: 5px;
    color: #fff;
  }
  .sp-drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    max-width: 260px;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(calc(-100% - 60px));
    visibility: hidden;
    transition: transform 0.3s var(--ease), visibility 0.3s var(--ease);
    display: flex;
    flex-direction: column;
  }
  .sp-drawer .sp-nav-close {
    position: absolute;
    top: 0;
    right: -60px;
    width: 60px;
    height: 70px;
    background-color: var(--navy-800);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 1001;
  }
  .sp-drawer .sp-nav-close .close-icon {
    position: relative;
    width: 16px;
    height: 16px;
    display: block;
  }
  .sp-drawer .sp-nav-close .close-icon::before, .sp-drawer .sp-nav-close .close-icon::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
    background-color: #fff;
  }
  .sp-drawer .sp-nav-close .close-icon::before {
    transform: rotate(45deg);
  }
  .sp-drawer .sp-nav-close .close-icon::after {
    transform: rotate(-45deg);
  }
  .sp-drawer .sp-nav-close .lbl {
    font-family: var(--font-label);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
  }
  .sp-drawer .drawer-nav {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex: 1;
    background-color: #fff;
  }
  .sp-drawer .drawer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line-100);
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-800);
    letter-spacing: 0.05em;
    background-color: #fff;
    text-decoration: none;
  }
  .sp-drawer .drawer-nav a .arrow {
    font-size: 18px;
    color: var(--navy-800);
    line-height: 1;
  }
  .sp-drawer .drawer-nav a:hover {
    background-color: #fcfcfc;
  }
  .sp-drawer-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }
  body.sp-nav-open {
    overflow: hidden;
  }
  body.sp-nav-open .sp-drawer {
    transform: translateX(0);
    visibility: visible;
  }
  body.sp-nav-open .sp-drawer-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}
/* --------------------------------

  上部固定ボタン（お問い合わせ）

-------------------------------- */
.contact-button {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 1100px), print {
  .contact-button {
    display: none !important;
  }
}

.contact-button-item {
  flex: 1;
  height: 100%;
}
.contact-button-item .contact-button-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border: none !important;
  border-radius: 0 !important;
  outline: none;
  padding: 0 10px;
  box-sizing: border-box;
  transition: background-color 0.2s var(--ease);
}
.contact-button-item .contact-button-link:hover {
  text-decoration: none;
}
.contact-button-item.mail {
  background-color: var(--navy-800) !important;
}
.contact-button-item.mail .contact-button-link {
  color: #fff !important;
}
.contact-button-item.mail .contact-button-link:hover {
  background-color: var(--navy-700) !important;
}
.contact-button-item.mail .icon-mail {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  flex-shrink: 0;
  fill: currentColor;
}
.contact-button-item.mail .lbl-mail {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
}
.contact-button-item.tel {
  background-color: #fff !important;
}
.contact-button-item.tel .contact-button-link {
  color: var(--ink-900) !important;
}
.contact-button-item.tel .contact-button-link:hover {
  background-color: #f7f7f7 !important;
}
.contact-button-item.tel .icon-tel {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  flex-shrink: 0;
  fill: currentColor;
}
.contact-button-item.tel .tel-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
.contact-button-item.tel .tel-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900) !important;
  line-height: 1.1;
  display: block;
}
.contact-button-item.tel .tel-text {
  font-size: 9px;
  font-weight: 500;
  color: var(--ink-500) !important;
  line-height: 1.2;
  margin-top: 1px;
  display: block;
}

/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
  position: fixed;
  top: 0;
  left: -290px;
  width: 290px;
  height: 100%;
  z-index: 1000;
  opacity: 0;
}
@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    margin: 0;
    opacity: 1;
    transition: none;
    padding: 0;
  }
}
@media screen and (max-width: 359.98px) {
  .nav {
    left: -260px;
    width: 260px;
  }
}
.nav-open .nav {
  left: 0;
  opacity: 1;
}
@media screen and (max-width: 1099.98px) {
  .nav-open .nav {
    transition-property: opacity, left;
    transition-duration: 0.3s;
  }
}
@media screen and (min-width: 1100px), print {
  .nav-open .nav {
    left: auto;
  }
}
.contact-open .nav {
  z-index: 920;
}
.nav .inner {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  z-index: 1;
}
.nav-logo {
  display: none;
}
@media screen and (max-width: 1099.98px) {
  .nav-logo {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90px;
    text-align: center;
    background-color: #fff;
  }
  .nav-logo img {
    width: 200px;
  }
}
.nav .nav-container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #Fff;
  padding-bottom: 1.5em;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 1100px), print {
  .nav .nav-container {
    max-width: none;
    margin: auto;
    background-color: transparent;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    background-color: transparent;
  }
}
/* メインナビ */
.main-nav {
  background-color: transparent;
}
@media screen and (max-width: 1099.98px) {
  .main-nav {
    opacity: 0;
    padding: 0;
    background-color: #fff;
  }
  .nav-open .main-nav {
    opacity: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav-area {
    display: flex;
    padding-right: 50px;
  }
}
.main-nav .nav-item {
  position: relative;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-item:not(:last-child) {
    margin-right: 2rem;
  }
}
@media screen and (min-width: 1440px), print {
  .main-nav .nav-item:not(:last-child) {
    margin-right: 3rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item {
    position: relative;
    border-bottom: 1px solid #eee;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-item.main-nav-active .nav-link {
    color: #4993CF;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item.main-nav-active .nav-link {
    background-color: #4993CF;
    color: #fff;
  }
  .main-nav .nav-item.main-nav-active .nav-link::after {
    border-color: #fff;
  }
}
.main-nav .nav-link {
  position: relative;
  display: block;
  line-height: 1.2;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link {
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 1.4rem;
    color: #000;
    transition-property: color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
  }
}
@media screen and (min-width: 1280px), print {
  .main-nav .nav-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: inherit;
    padding: 0 1em;
    color: #444;
    font-size: 1.4rem;
    background-color: #fff;
    height: 60px;
    transition-property: color, background-color;
  }
  .main-nav .nav-link::after {
    content: "";
    position: absolute;
    right: 1.1em;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    width: 9px;
    height: 9px;
    border-top: 1px solid #4993CF;
    border-left: 1px solid #4993CF;
    transition-property: border-color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link:hover {
    color: #fff;
    background-color: #4993CF;
  }
  .main-nav .nav-link:hover::after {
    border-color: #fff;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link:hover {
    color: #4993CF;
  }
}
.main-nav .nav-link span {
  position: relative;
  display: inline-block;
  font-weight: 500;
}
.main-nav .nav-link .br {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link .br {
    display: block;
  }
}

/* ナビゲーション開閉ボタン */
.nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 1;
  cursor: pointer;
  z-index: 910;
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .nav-button {
    display: none;
  }
}
.nav-open .nav-button {
  display: none;
}
.nav-button-icon {
  display: block;
  position: absolute;
  top: -16px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  margin: auto;
  background-color: #000;
}
.nav-button-icon::before, .nav-button-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #000;
}
.nav-button-icon::before {
  margin-top: -8px;
}
.nav-button-icon::after {
  margin-top: 8px;
}
.nav-button::after {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  line-height: 1;
  font-size: 1rem;
  color: #000;
  text-align: center;
}

/* ナビゲーション開閉ボタン */
.nav-close-button {
  display: none;
  position: absolute;
  top: 0;
  right: -60px;
  width: 60px;
  height: 60px;
  line-height: 1;
  background-color: #fff;
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 1100px), print {
  .nav-close-button {
    display: none;
  }
}
.nav-open .nav-close-button {
  display: block;
}
.nav-close-button .nav-button-icon {
  background: none;
  top: -17px;
}
.nav-close-button .nav-button-icon::before, .nav-close-button .nav-button-icon::after {
  margin-top: 0;
  background-color: #000;
}
.nav-close-button .nav-button-icon::before {
  transform: rotate(45deg);
}
.nav-close-button .nav-button-icon::after {
  transform: rotate(-45deg);
}
.nav-close-button::after {
  content: "CLOSE";
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  line-height: 1;
  font-size: 1rem;
  color: #000;
  text-align: center;
}

/* ナビゲーション背景 */
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}
.nav-screen-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: auto;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
}
.nav-open .nav-screen-overlay {
  pointer-events: auto;
  opacity: 0.4;
  cursor: pointer;
}

.nav.fixed {
  display: none !important;
}

/* --------------------------------

  main

-------------------------------- */
.main {
  display: block;
  position: relative;
  padding: 0 1em 0 1em;
  z-index: 100;
  flex: 1;
  overflow-x: hidden;
}
#top .main {
  padding: 0 1em 0 1em;
}
@media screen and (min-width: 1100px), print {
  .main {
    padding: 0 2em 0 2em;
    overflow: visible;
  }
  #top .main {
    padding: 0 2em 0 2em;
  }
}

.main > .inner {
  max-width: none;
}

/* --------------------------------

  footer

-------------------------------- */
.footer {
  background-color: #F3F5F7;
}
.footer .inner {
  max-width: none;
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .footer .inner {
    padding: 0 2em;
  }
}
.footer .pagetop {
  display: block;
  position: fixed;
  width: 50px;
  height: 50px;
  right: 10px;
  bottom: 100px;
  margin: 0;
  text-align: center;
  overflow: hidden;
  z-index: 100;
  border: 1px solid #fff;
}
@media screen and (min-width: 1100px), print {
  .footer .pagetop {
    bottom: 95px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
}
@media screen and (min-width: 1100px) {
  .footer .pagetop.fixed {
    opacity: 1;
    pointer-events: auto;
  }
}
.footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  background-color: #4993CF;
  transition: 0.2s;
}
.footer .pagetop a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #4993CF;
}
.footer .pagetop a:hover:before {
  border-color: #fff;
}
.footer .pagetop a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}
.footer .copy {
  overflow: hidden;
  background-color: #4993CF;
  padding: 1.8em 1em 7em 1em;
}
@media screen and (max-width: 767.98px) {
  .footer .copy {
    padding: 1.5em 1em 3.5em 1em;
  }
}
.footer .copy small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  font-weight: 400;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
}
.footer .copy span {
  font-weight: 400;
  margin-left: 0.3em;
}
@media screen and (max-width: 479.98px) {
  .footer .copy span {
    display: none;
  }
}

.footer-image img {
  width: 100%;
  height: auto;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
}
@media screen and (min-width: 1100px), print {
  .footer-container {
    padding: 9rem 0;
  }
}
@media screen and (max-width: 1099.98px) {
  .footer-container {
    flex-direction: column;
  }
}

.footer-main {
  margin: 0 0 4rem 0;
}
@media screen and (min-width: 1100px), print {
  .footer-main {
    margin: 0 5rem 0 0;
  }
}
@media screen and (min-width: 1280px), print {
  .footer-main {
    margin: 0 6rem 0 0;
  }
}

.footer-side {
  padding: 4rem;
  background-color: #ffffff;
}

.footer-logo {
  text-align: center;
  margin: 0 auto 3rem;
  width: 241px;
  height: 60px;
}
.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-add {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.98px) {
  .footer-info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-info dl {
  display: flex;
  align-items: center;
}
.footer-info dl dt,
.footer-info dl dd {
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: 400;
}
.footer-info dl dd {
  flex: 1;
  margin-left: 1rem;
}
.footer-info dl dt {
  display: block;
  place-content: center;
  text-align: center;
  color: #fff;
  background-color: #aaa;
  width: 84px;
  height: 30px;
  font-weight: 600;
}

.footer-contact {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  .footer-contact {
    flex-direction: column;
  }
}
.footer-contact-item {
  width: 250px;
  height: 60px;
}
@media screen and (min-width: 1280px), print {
  .footer-contact-item {
    width: 300px;
    height: 60px;
  }
}
.footer-contact-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #4993CF;
  color: #fff;
  line-height: 1.2;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  transition: background-color 0.3s ease;
}
.footer-contact-item a:hover {
  background-color: #67b3f1;
}
.footer-contact-item a span {
  position: relative;
  display: block;
  padding: 0 0 0 2.3em;
}
.footer-contact-item a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 24px;
  background: url("../img/base/icon-mail_wht.svg") no-repeat center/contain;
  z-index: 1;
}
.footer-contact-item .tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #4993CF;
  color: #fff;
  line-height: 1.2;
  font-size: 2.5rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.footer-contact-item .tel-link span {
  position: relative;
  display: block;
  padding: 0 0 0 1.5em;
}
.footer-contact-item .tel-link span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 25px;
  height: 25px;
  background: url("../img/base/icon-tel_wht.svg") no-repeat center/contain;
  z-index: 1;
}

.footer-lead {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 1279.98px) {
  .footer-lead {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .footer-lead {
    font-size: 1.6rem;
  }
}
.footer-lead span {
  color: #4993CF;
}

.footer-privacy {
  text-align: center;
  padding: 0 0 3rem 0;
}
@media screen and (min-width: 1100px), print {
  .footer-privacy {
    padding: 0 0 3rem 0;
  }
}
.footer-privacy a {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  padding: 0 0 0 1em;
  transition: color 0.3s ease;
}
.footer-privacy a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid #000;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.footer-privacy a:hover {
  color: #67b3f1;
}

.br_sp {
  display: block;
}

@media screen and (min-width: 760px), print {
  .br_sp {
    display: none;
  }
}
.br_pc {
  display: none;
}

@media screen and (min-width: 760px), print {
  .br_pc {
    display: block;
  }
}
/* ============================================================
   s.css 由来の .site-footer スタイル移行
   ============================================================ */
.site-footer {
  background: var(--paper-footer);
  padding-top: 300px;
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 40px 40px;
  max-width: var(--max);
  margin: 0 auto;
}

.fcol {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fcol .eyebrow {
  align-self: flex-start;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.55);
}
.fcol a,
.fcol .ln {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-700);
  line-height: 1.9;
}
.fcol a:hover {
  color: var(--gold-600);
}
.fcol .addr {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-700);
}
.fcol .ftel {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--gold-500);
  margin-top: 4px;
}

.footer-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 11px;
}
.footer-bar .inner {
  padding: 20px 40px;
  max-width: var(--max);
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .site-footer {
    padding-top: 0;
  }
  .site-footer .cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .site-footer .cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-top: 52px;
    padding-bottom: 32px;
  }
  .site-footer .cols .logo,
  .site-footer .cols .fcol:nth-child(4) {
    grid-column: span 2;
  }
  .footer-bar .inner {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .site-footer .cols,
  .footer-bar .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-footer .cols {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .site-footer .cols .logo,
  .site-footer .cols .fcol:nth-child(4) {
    grid-column: auto;
  }
  .site-footer .logo {
    align-items: center !important;
  }
  .fcol {
    align-items: center;
  }
  .fcol .eyebrow {
    align-self: center;
  }
  .footer-bar .inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.swiper-container {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  z-index: 1;
}
.swiper-img {
  display: block;
  position: relative;
}
.swiper-img::before {
  content: "";
  display: block;
  padding-top: 44%;
}
@media screen and (min-width: 1100px), print {
  .swiper-img::before {
    padding-top: 680px;
  }
}
.swiper-img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.swiper-side {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 2.5rem 2rem 3rem 2rem;
  z-index: 1;
}
@media screen and (min-width: 1100px), print {
  .swiper-side {
    padding: 0 1rem 0 12rem;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 1440px), print {
  .swiper-side {
    padding: 0 1rem 0 25rem;
  }
}
.swiper-catch {
  display: block;
  color: #000032;
}
@media screen and (max-width: 1099.98px) {
  .swiper-catch {
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .swiper-catch {
    margin-bottom: 3.3rem;
  }
}
.swiper-catch .catch1 {
  display: block;
  line-height: 1.8;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.8rem;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.25);
  font-size: min(30 * var(--vw375), 30px);
}
@media screen and (min-width: 480px), print {
  .swiper-catch .catch1 {
    font-size: min(40 * var(--vw768), 40px);
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 768px), print {
  .swiper-catch .catch1 {
    font-size: min(40 * var(--vw1100), 40px);
  }
}
.swiper-catch .catch1 span {
  display: block;
  font-size: min(20 * var(--vw375), 20px);
}
@media screen and (min-width: 480px), print {
  .swiper-catch .catch1 span {
    font-size: min(30 * var(--vw768), 30px);
  }
}
@media screen and (min-width: 768px), print {
  .swiper-catch .catch1 span {
    font-size: min(35 * var(--vw1100), 35px);
  }
}
.swiper-catch .catch2 {
  display: block;
  line-height: 1.6;
  font-weight: 500;
  font-size: min(20 * var(--vw768), 20px);
  letter-spacing: 0.05em;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.25);
}
@media screen and (min-width: 480px), print {
  .swiper-catch .catch2 {
    font-size: min(20 * var(--vw768), 20px);
  }
}
@media screen and (min-width: 768px), print {
  .swiper-catch .catch2 {
    font-size: min(20 * var(--vw1100), 20px);
  }
}

.swiper-pagination {
  position: static !important;
  transform: inherit !important;
  display: flex;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}
@media screen and (max-width: 1099.98px) {
  .swiper-pagination {
    display: none;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 0;
  opacity: 1;
  cursor: pointer;
  margin: 0 !important;
}
.swiper-pagination .swiper-pagination-bullet:not(:last-child) {
  margin: 0 7px 0 0 !important;
}
.swiper-pagination .swiper-pagination-bullet span {
  font-weight: 500;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #000032;
}

.hero-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-slider .swiper-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  transition-property: transform;
}
.hero-slider .swiper-slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
}
.hero-slider.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.hero-slider.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.page-title {
  display: block;
  width: 100%;
  z-index: 105;
  height: 250px;
  margin-top: 80px;
  background: url(../img/top/mainvisual.png) no-repeat center/cover;
}
@media screen and (max-width: 1099.98px) {
  .page-title {
    margin-top: 60px;
    padding: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .page-title {
    height: 200px;
  }
}
@media screen and (max-width: 479.98px) {
  .page-title {
    height: 180px;
  }
}
.page-title-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 1em;
  max-width: none;
  margin: 0 auto;
}
@media screen and (max-width: 1099.98px) {
  .page-title-inner {
    padding: 1em;
  }
}
.page-title-name {
  display: inline-block;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  color: #4993CF;
  font-size: 3.8rem;
  font-weight: 700;
  text-shadow: rgba(255, 255, 255, 0.4) 1px 1px 8px, rgba(255, 255, 255, 0.4) -1px 1px 8px, rgba(255, 255, 255, 0.4) 1px -1px 8px, rgba(255, 255, 255, 0.4) -1px -1px 8px;
}
@media screen and (max-width: 1099.98px) {
  .page-title-name {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767.98px) {
  .page-title-name {
    padding: 1rem 1em 1.3rem 1em;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 479.98px) {
  .page-title-name {
    font-size: 2.2rem;
  }
}
.page-title-name span {
  display: block;
  font-weight: 500;
}

/* --------------------------------

  アニメーション

-------------------------------- */
._anim-point {
  opacity: 0;
  transform: translateY(30px);
  transition-property: opacity, transform;
  transition-timing-function: ease;
  transition-duration: 0.8s;
  transition-delay: 0.5s;
}
@media screen and (min-width: 1100px), print {
  ._anim-point {
    transition-duration: 0.8s;
    transition-delay: 0.5s;
  }
}
._anim-point.active {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------

  上部固定ボタン（お問い合わせ）

-------------------------------- */
/* お問い合わせ（電話）*/
@media screen and (min-width: 1100px), print {
  .mail-button {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .mail-button {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    line-height: 1;
    cursor: pointer;
    z-index: 910;
    transition: background-color 0.3s ease;
  }
  .mail-button:hover {
    background-color: #67b3f1;
  }
  .mail-button a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: #3265A5;
    background: linear-gradient(90deg, rgb(50, 101, 165) 0%, rgb(71, 129, 199) 100%);
  }
  .mail-button a::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
    width: 20px;
    height: 15px;
    background: url("../img/base/icon-mail_wht.png") no-repeat center/cover;
  }
  .mail-button a::after {
    content: "MAIL";
    position: absolute;
    left: 0;
    bottom: 12px;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1;
  }
}

/* --------------------------------

  フォーム部品

-------------------------------- */
.contact-form table {
  width: 100%;
}
.contact-form table tr {
  display: block;
}
@media screen and (min-width: 768px), print {
  .contact-form table tr {
    display: table;
    width: 100%;
  }
}
.contact-form table tr:not(:last-child) {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px), print {
  .contact-form table tr:not(:last-child) {
    margin-bottom: 0;
  }
}
.contact-form table th {
  position: relative;
  display: block;
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px), print {
  .contact-form table th {
    display: table-cell;
    vertical-align: middle;
    width: 15em;
    margin-bottom: 0;
    padding: 0.8em 1em;
  }
}
.contact-form table th .title {
  font-family: var(--font-mincho);
  font-weight: 700;
}
.contact-form table th .require,
.contact-form table th .option {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 0.9em;
  color: #fff;
  font-weight: 600;
  font-family: var(--font-mincho);
  width: 3em;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-50%);
}
.contact-form table th .require {
  background: var(--navy-800);
}
.contact-form table th .option {
  background-color: #999;
}
.contact-form table td {
  display: block;
}
@media screen and (min-width: 768px), print {
  .contact-form table td {
    display: table-cell;
    vertical-align: middle;
    padding: 0.8em 0 0.8em 1em;
  }
}
.contact-form table td input[type=text],
.contact-form table td input[type=email],
.contact-form table td input[type=tel] {
  padding: 8px;
  border: 1px solid #999;
  border-radius: 3px;
  font-size: 1em;
}
.contact-form table td input::-moz-placeholder {
  font-size: 0.9em;
  color: #ccc;
}
.contact-form table td input::placeholder {
  font-size: 0.9em;
  color: #ccc;
}
.contact-form table td .full {
  width: 100%;
}
.contact-form table td .per60 {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .contact-form table td .per60 {
    width: 60%;
  }
}
.contact-form table td select {
  padding: 8px 4px;
  border-radius: 3px;
  border: 1px solid #999;
}
.contact-form table td textarea {
  padding: 8px 4px;
  border-radius: 3px;
  border: 1px solid #999;
}
.contact-submit {
  margin-top: 1em;
  text-align: center;
}
.contact-submit .btn {
  display: block;
  border: 1px solid #062845;
  background-color: #fff;
  color: #062845;
  text-decoration: none;
  font-weight: bold;
  padding: 20px;
  width: 150px;
  margin: 0 auto;
  cursor: pointer;
}
.contact-submit .btn:hover {
  color: #fff;
  background-color: #062845;
}

/* --------------------------------

  ローディング

-------------------------------- */
.loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.6s ease;
}
@media screen and (max-width: 1099.98px) {
  .loader {
    position: absolute;
    height: auto;
    padding-top: 50%;
  }
}
.loader.loading {
  opacity: 1;
  pointer-events: auto;
}
.loader::before {
  content: "";
  display: block;
  position: absolute;
  top: -45px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  margin: auto;
  border: 4px solid #ddd;
  border-top: 4px solid #4993CF;
  border-radius: 50%;
  z-index: 1;
  animation: spin 3s linear infinite;
}
@media screen and (max-width: 1099.98px) {
  .loader::before {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    border-top: 2px solid #4993CF;
    top: 0;
  }
}
.loader img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 140px;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* --------------------------------
  メインビジュアル
-------------------------------- */
.mainvisual {
  position: relative;
  padding: 0;
  margin: 80px 50px 25px;
}
@media screen and (max-width: 1099.98px) {
  .mainvisual {
    margin: 75px 1em 25px;
    padding: 0;
  }
}
.mainvisual .inner {
  max-width: none;
}
.mainvisual-img {
  display: block;
  position: relative;
  margin-bottom: 1em;
}
.mainvisual-img .mv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.mainvisual-img .mv-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
@media screen and (min-width: 768px), print {
  .mainvisual-img {
    width: 100%;
    margin: 0 auto 1em;
  }
}
.mainvisual-img::before {
  content: "";
  display: block;
  padding-top: 53%;
}
@media screen and (min-width: 1100px), print {
  .mainvisual-img::before {
    padding-top: 53%;
  }
}
.mainvisual-img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  font-family: "object-fit: cover;";
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  background: transparent;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 1601px) {
  .mainvisual .mainvisual-img {
    position: relative;
    aspect-ratio: 100/53;
    max-height: calc(100svh - 170px);
    overflow: visible;
  }
  .mainvisual .mainvisual-img::before {
    display: none;
  }
  .mainvisual {
    /* 青いズレ背景を影の代わりに出す */
  }
  .mainvisual .mainvisual-img::after {
    content: "";
    position: absolute;
    inset: 10px -10px -10px 10px;
    background: #4993CF;
    z-index: 0;
    pointer-events: none;
  }
  .mainvisual .mainvisual-img .mv-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .mainvisual .mainvisual-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.mainvisual .mv-nav {
  position: absolute;
  right: 0;
  bottom: auto;
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  z-index: 20;
  pointer-events: auto;
}
@media screen and (min-width: 1100px), print {
  .mainvisual .mv-nav {
    bottom: -25px;
  }
}
.mainvisual .mv-dot {
  width: 15px;
  height: 15px;
  background: #D9D9D9;
  border: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 1099.98px) {
  .mainvisual .mv-dot {
    width: 10px;
    height: 10px;
  }
}
.mainvisual .mv-dot:is(:hover, :focus) {
  background: #4993CF;
  outline: none;
  transform: scale(1.05);
}
.mainvisual .mv-dot.is-active {
  background: #4993CF;
}
.mainvisual-side {
  display: block;
  place-content: center;
  width: 100%;
  height: auto;
  z-index: 1;
  bottom: 94px;
  background: rgba(97, 171, 231, 0.94);
}
@media screen and (min-width: 1101px) {
  .mainvisual-side {
    position: absolute;
    bottom: 5em;
    left: -50px;
    z-index: 999;
    background: rgba(97, 171, 231, 0.94);
    /* Drop Shadow */
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
    width: calc(50vw + 50px);
  }
}
.mainvisual-catch {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding: 3rem;
}
@media screen and (max-width: 1100px) {
  .mainvisual-catch {
    background: transparent;
    margin: 1.5em auto;
    padding: 0;
  }
}
.mainvisual-catch .catch1 {
  display: block;
  font-weight: 600;
  font-size: clamp(24px, 7vw, 45px);
  margin-bottom: 20px;
  line-height: 130%;
  color: #fff;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1100px) {
  .mainvisual-catch .catch1 {
    text-align: center;
    margin: 0 auto 1px;
    width: 100%;
    line-height: 160%;
  }
}
.mainvisual-catch .catch2 {
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  line-height: 230%;
  color: #fff;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1100px) {
  .mainvisual-catch .catch2 {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }
}

/* ============================================================
   s.css 由来の .hero (メインビジュアル) スタイル移行
   ============================================================ */
.hero {
  --hero-photo-width: min(52.083vw, 1000px);
  position: relative;
  height: 940px;
  background: var(--white);
}
.hero .photo {
  position: absolute;
  right: 0;
  top: 30px;
  width: var(--hero-photo-width);
  height: 860px;
  z-index: 2;
}
.hero .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero .photo::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 140px;
  border-top: 1px solid var(--gold-500);
  border-left: 1px solid var(--gold-500);
  z-index: 5;
}
.hero .wm-clip {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}
.hero .wm {
  left: 10px;
  top: 96px;
  font-size: clamp(120px, 16vw, 290px);
  color: rgba(0, 30, 64, 0.07);
  z-index: 99999;
  opacity: 0;
  animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
}
.hero .copy {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - var(--hero-photo-width));
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px 0 clamp(72px, 7.8125vw, 150px);
  box-sizing: border-box;
  z-index: 3;
}
.hero .copy-inner {
  max-width: 706px;
  text-align: left;
}
.hero .eyebrow-jp {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: clamp(16px, 1.15vw, 22px);
  line-height: 1.32;
  letter-spacing: 0.12em;
  color: var(--navy-800);
  opacity: 0;
  animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1s;
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(24px, 3.333vw, 64px);
  line-height: 1.43;
  letter-spacing: 0.04em;
  color: var(--navy-800);
  margin: 32px 0 36px;
  opacity: 0;
  animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.2s;
}
.hero .lead {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1.875;
  letter-spacing: 0.02em;
  color: var(--ink-700);
  opacity: 0;
  animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.5s;
}
.hero .tri {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 0;
  height: 0;
  border-bottom: 228px solid var(--navy-800);
  border-right: 342px solid transparent;
  z-index: 1;
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-cue {
  position: absolute;
  bottom: 44px;
  left: 25%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 3;
}
.scroll-cue span {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.35em;
  color: var(--ink-500);
  text-align: center;
}
.scroll-cue .line {
  width: 1px;
  height: 80px;
  background: var(--gold-500);
  animation: scrollpulse 2.2s var(--ease) infinite;
  transform-origin: top;
}

@keyframes scrollpulse {
  0%, 100% {
    transform: scaleY(0.4);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@media (max-width: 1100px) {
  .hero {
    height: auto;
  }
  .hero .photo {
    position: relative;
    width: 100%;
    height: 400px;
    top: 0;
    overflow: hidden;
  }
  .hero .copy {
    position: relative;
    width: 100%;
    height: auto;
    padding: 48px 24px;
  }
  .hero .wm-clip,
  .hero .scroll-cue,
  .hero .tri,
  .hero .photo::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero .photo {
    height: 280px;
  }
}
/* ============================================================
   下層ページ用メインビジュアルスタイル (.hero--lower)
   ============================================================ */
.hero.hero--lower {
  height: 280px;
}
@media (max-width: 768px) {
  .hero.hero--lower {
    height: 180px;
  }
}
.hero.hero--lower .photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}
.hero.hero--lower .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero.hero--lower .photo::before {
  display: none;
}
.hero.hero--lower .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  z-index: 2;
}
.hero.hero--lower .wm-clip {
  display: none;
}
.hero.hero--lower .copy {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  z-index: 3;
}
.hero.hero--lower .copy-inner {
  max-width: 100%;
  text-align: center;
}
.hero.hero--lower .eyebrow-jp {
  font-size: clamp(12px, 1.2vw, 16px);
  margin: 0 0 10px;
}
.hero.hero--lower h1 {
  font-size: clamp(20px, 3.2vw, 36px);
  margin: 0;
  text-align: center;
  color: var(--white);
}
.hero.hero--lower h1 br.pc_br {
  display: none;
}
@media (min-width: 1101px) {
  .hero.hero--lower h1 br.pc_br {
    display: block;
  }
}
.hero.hero--lower .tri {
  display: none;
}
@media (max-width: 1100px) {
  .hero.hero--lower .photo {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
  }
  .hero.hero--lower .copy {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
  }
}

/* --------------------------------

  ぱんくず

-------------------------------- */
.pankz {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2.5em;
}
.pankz-area {
  max-width: 1100px;
  margin: 0 auto 2em;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1099.98px) {
  .pankz-area {
    margin: 0 auto 1.5em;
  }
}
.pankz-item {
  position: relative;
  list-style: none;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: #000;
}
.pankz-item:not(:last-child) {
  padding-right: 1.2em;
  margin-right: 1em;
}
.pankz-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #999;
  border-left: 2px solid #999;
}
.pankz-item._current a {
  position: relative;
  color: #4993CF;
  padding-left: 1.5em;
}
.pankz-item._current a:hover {
  text-decoration: underline;
}
.pankz-item._current a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 14px;
  background: url("../img/base/icon_home_green2.svg") no-repeat center/cover;
}

/* --------------------------------

  id01　トップページ

-------------------------------- */
/* ページ内共通 */
#top .mainvisual {
  z-index: 1;
}
#top .main {
  z-index: auto;
}

:root {
  --about-bg-width: clamp(180px, 28.3125vw, 453px);
}

@media screen and (min-width: 1601px) {
  :root {
    --about-bg-width: calc(453px + (100vw - 1600px) / 2);
  }
}
.section {
  margin-right: -1em;
  margin-left: -1em;
}
@media screen and (min-width: 1100px), print {
  .section {
    margin-right: -2em;
    margin-left: -2em;
  }
}
.section-secondary {
  padding-right: 1em;
  padding-left: 1em;
}
@media screen and (min-width: 1100px), print {
  .section-secondary {
    padding-right: 2em;
    padding-left: 2em;
  }
}
.section-secondary:not(:last-child) {
  margin-bottom: 10em;
}
@media screen and (max-width: 639.98px) {
  .section-secondary:not(:last-child) {
    margin-bottom: 3em;
  }
}
.section-secondary .inner {
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .section-secondary .inner {
    line-height: 1.8;
  }
}
.section-dummy {
  text-align: center;
}
.section-dummy:not(:last-child) {
  margin-bottom: 5em;
}
.section-dummy .inner {
  max-width: none;
  text-align: center;
}
.section-dummy_wide {
  overflow: hidden;
}
.section-dummy_wide .inner {
  margin-right: -23%;
  margin-left: -23%;
}
@media screen and (min-width: 1100px), print {
  .section-dummy_wide .inner {
    margin-right: -250px;
    margin-left: -250px;
  }
}
.section-header {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px), print {
  .section-header {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .section-header {
    margin-bottom: 4.3rem;
  }
}
.section-heading {
  display: block;
  line-height: 1.2;
  margin: 0 auto 3rem 0;
  max-width: 1100px;
}
.section-heading .en {
  display: block;
  color: var(--2, #4993CF);
  font-family: Roboto;
  font-size: 5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 50px */
  letter-spacing: 3%;
}
@media screen and (max-width: 767.98px) {
  .section-heading .en {
    font-size: 3rem;
  }
}
.section-heading .jp {
  position: relative;
  display: block;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 63px */
  letter-spacing: 0.5%;
  margin-top: 0.3em;
}
@media screen and (min-width: 360px), print {
  .section-heading .jp {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 768px), print {
  .section-heading .jp {
    font-size: 3rem;
    letter-spacing: 0.1em;
  }
}

.top-about-section {
  position: relative;
  padding: 3em 1em;
  z-index: 0;
}
@media screen and (min-width: 1100px), print {
  .top-about-section {
    padding: 7em 2em;
  }
  .top-about-section::before {
    content: "";
    position: absolute;
    top: calc(7em + 187px);
    right: 0;
    width: var(--about-bg-width);
    aspect-ratio: 453/634;
    background: #F3F5F7;
    transform: translateY(-100%);
    pointer-events: none;
    z-index: -1;
  }
}
@media screen and (min-width: 1100px), print {
  .top-about-wrap {
    display: flex;
  }
}
.top-about_main {
  flex: 1;
  margin-right: 0;
}
@media screen and (min-width: 1100px), print {
  .top-about_main {
    margin-right: 2em;
  }
}
.top-about_side {
  margin-top: 2em;
}
@media screen and (min-width: 1100px), print {
  .top-about_side {
    margin-top: 0;
  }
}
.top-about_image {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}
.top-about_image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
}
.top-about_head {
  font-size: 2.5rem;
  margin-bottom: 1em;
}
.top-about-text {
  margin-bottom: 1em;
}

.top-service-section {
  position: relative;
  padding: 10rem 1em 10rem 1em;
  background: url(../img/top/bg1.jpg) no-repeat center/cover;
}
@media screen and (min-width: 1100px), print {
  .top-service-section {
    padding: 12rem 2em 12rem 2em;
  }
}
.top-service-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px), print {
  .top-service-text {
    font-size: 1.8rem;
  }
}
.top-service-wrap {
  display: flex;
  gap: 2.5rem;
}
@media screen and (min-width: 1280px), print {
  .top-service-wrap {
    gap: 6.5rem;
    align-items: center;
  }
}
@media screen and (max-width: 1279.98px) {
  .top-service-wrap {
    flex-direction: column;
  }
}
.top-service-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -2rem -2rem 0;
}
@media screen and (min-width: 768px), print {
  .top-service-items {
    margin: 0 -4rem -3rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .top-service-items {
    justify-content: flex-start;
    margin: 0 -13px -13px 0;
  }
}
.top-service-item {
  position: relative;
  width: 100%;
  padding: 0 2rem 2rem 0;
}
@media screen and (min-width: 480px), print {
  .top-service-item {
    width: 50%;
  }
}
@media screen and (min-width: 768px), print {
  .top-service-item {
    width: 50%;
    padding: 0 4rem 3rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .top-service-item {
    width: 25%;
    padding: 0 13px 13px 0;
  }
}
.top-service-item:hover .top-service-image img {
  scale: 1.1;
}
.top-service-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.top-service-header {
  position: relative;
  display: block;
  place-content: center;
  width: 100%;
  height: 60px;
  padding: 1em;
  background-color: #ffffff;
  transition: background-color 0.3 ease;
}
.top-service-header::before {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-45%);
  width: 46px;
  height: 8px;
  background: url("../img/base/icon-arrow_blk.png") no-repeat center/contain;
}
@media screen and (min-width: 1100px), print {
  .top-service-header {
    height: 70px;
  }
}
.top-service-heading {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  transition: color 0.3 ease;
}
@media screen and (min-width: 480px), print {
  .top-service-heading {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .top-service-heading {
    font-size: 1.8rem;
  }
}
.top-service-heading span {
  position: relative;
}
.top-service-inner {
  position: relative;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
}
.top-service-image {
  position: relative;
  overflow: hidden;
}
.top-service-image::before {
  content: "";
  display: block;
  padding-top: 66%;
}
.top-service-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
  transition: scale 0.3s ease;
}

.top-news-section {
  position: relative;
  padding: 5rem 1em;
  background-color: #fff;
  border-bottom: 1px solid #AAA;
}
@media screen and (min-width: 1100px), print {
  .top-news-section {
    padding: 12rem 2em;
  }
}
.top-news-section .section-heading .jp,
.top-news-section .section-heading .en {
  text-align: left;
}
@media screen and (min-width: 768px), print {
  .top-news-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.top-news-main {
  flex: 1;
  max-width: 740px;
  margin: 1.5rem 0 0 0;
}
@media screen and (min-width: 768px), print {
  .top-news-main {
    margin: 0 0 0 3rem;
  }
}
.top-news-more {
  margin-top: 2rem;
}
@media screen and (min-width: 768px), print {
  .top-news-more {
    margin-top: 3rem;
  }
}

.top-article-section {
  position: relative;
  padding: 5rem 1em;
}
@media screen and (min-width: 1100px), print {
  .top-article-section {
    padding: 12rem 2em;
  }
}
.top-article-section .section-heading .jp,
.top-article-section .section-heading .en {
  text-align: right;
}
@media screen and (min-width: 768px), print {
  .top-article-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
}
.top-article-main {
  flex: 1;
  max-width: 740px;
  margin: 1.5rem 0 0 0;
}
@media screen and (min-width: 768px), print {
  .top-article-main {
    margin: 0 3rem 0 0;
  }
}
.top-article-more {
  margin-top: 2rem;
}
@media screen and (min-width: 768px), print {
  .top-article-more {
    margin-top: 3rem;
  }
}

.top-staff-section {
  position: relative;
  padding: 10rem 0 10rem 2rem;
  z-index: 0;
}
.top-staff-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: max(220px, 50% - 468px);
  height: clamp(330px, 31.1875vw, 450px);
  opacity: 0.25;
  background: #C9E4FF;
  pointer-events: none;
  z-index: -1;
}
@media screen and (min-width: 1100px), print {
  .top-staff-section {
    padding: 12rem 2rem;
  }
}
.top-staff-section .section-heading {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px), print {
  .top-staff-section .section-heading {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 768px), print {
  .top-staff-container {
    display: flex;
  }
}
.top-staff-main {
  margin: 3rem 0 0 0;
}
@media screen and (min-width: 768px), print {
  .top-staff-main {
    margin: 0 0 0 min(44 * var(--vw1100), 44px);
  }
}
.top-staff-img {
  text-align: center;
}
.top-staff-img img {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 768px), print {
  .top-staff-img {
    width: min(300 * var(--vw1100), 300px);
  }
}
.top-staff-more {
  margin-top: 2rem;
}
@media screen and (min-width: 768px), print {
  .top-staff-more {
    margin-top: min(30 * var(--vw1100), 30px);
  }
}
.top-staff-name {
  display: block;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 0 0 2rem 0;
  margin: 0 0 2rem 0;
  border-bottom: 1px solid #4993CF;
}
@media screen and (min-width: 768px), print {
  .top-staff-name {
    font-size: min(25 * var(--vw1100), 25px);
    padding: 0 0 min(30 * var(--vw1100), 30px) 0;
    margin: 0 0 min(30 * var(--vw1100), 30px) 0;
  }
}
.top-staff-name span {
  font-size: 1.4rem;
  margin-left: 1rem;
}
@media screen and (min-width: 768px), print {
  .top-staff-name span {
    margin-left: 2rem;
    font-size: min(18 * var(--vw1100), 18px);
  }
}
.top-staff-heading {
  display: block;
  line-height: 1.8;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px), print {
  .top-staff-heading {
    margin-bottom: min(30 * var(--vw1100), 30px);
    font-size: min(25 * var(--vw1100), 25px);
  }
}
.top-staff-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px), print {
  .top-staff-text {
    font-size: min(16 * var(--vw1100), 16px);
  }
}

.top-access-section {
  position: relative;
  padding: 5rem 1em;
  color: #fff;
  background: url(../img/top/bg2.jpg) no-repeat center/cover;
}
@media screen and (min-width: 1100px), print {
  .top-access-section {
    padding: 6rem 2em;
  }
}
.top-access-section .section-heading .en,
.top-access-section .section-heading .jp {
  color: #fff;
}
.top-access-wrap {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px), print {
  .top-access-wrap {
    display: flex;
    margin-bottom: 4rem;
  }
}
.top-access-table {
  flex: 1;
  display: block;
  margin: 0 0 2rem 0;
}
@media screen and (min-width: 1100px), print {
  .top-access-table {
    margin: 0 2em 0 0;
  }
}
.top-access-table tr:last-child th,
.top-access-table tr:last-child td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.top-access-table th,
.top-access-table td {
  display: table-cell;
  line-height: 1.4;
  font-size: 1.4rem;
  vertical-align: top;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px), print {
  .top-access-table th,
  .top-access-table td {
    font-size: 1.6rem;
    padding: 1.8rem 1rem;
  }
}
@media screen and (min-width: 1100px), print {
  .top-access-table th,
  .top-access-table td {
    padding: 2rem 1.6rem;
  }
}
.top-access-table th {
  font-weight: 700;
  width: 100px;
}
@media screen and (min-width: 768px), print {
  .top-access-table th {
    width: 130px;
  }
}
@media screen and (min-width: 1100px), print {
  .top-access-table th {
    width: 200px;
  }
}
.top-access-img {
  text-align: center;
}
.top-access-more {
  margin-top: 3rem;
}
.top-access-more .link-button {
  margin: 0 auto;
}

/* ============================================================
   s.css 由来の TOPページ固有セクションスタイル移行
   ============================================================ */
/* ---------- NEWS ---------- */
.news {
  background: var(--paper);
}
.news .grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 56px;
  align-items: center;
  padding: 72px 0;
}

.news-list {
  background: #fff;
  padding: 8px 40px;
  box-shadow: var(--shadow-card);
}

.news-item {
  display: flex;
  align-items: baseline;
  gap: 36px;
  padding: 22px 4px;
  position: relative;
  border-bottom: none;
  transition: color 0.25s var(--ease);
}
.news-item::after {
  content: "";
  position: absolute;
  left: -40px;
  right: -40px;
  bottom: 0;
  height: 1px;
  background: #F2F3F5;
}
.news-item:last-child::after {
  display: none;
}
.news-item:hover {
  color: var(--gold-600);
}
.news-item time {
  flex: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--ink-500);
}
.news-item .txt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
}
.news-side .jp {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: var(--navy-800);
}
.news-side .news-eyebrow {
  color: var(--gold-500);
}

.news-more {
  position: relative;
  display: block;
  width: 156px;
  height: 100px;
  margin-top: 28px;
  text-decoration: none;
}
.news-more .circle {
  position: absolute;
  left: 16px;
  top: 0;
  width: 100px;
  height: 100px;
  border: 1px solid var(--line-300);
  border-radius: 50%;
  transition: border-color 0.25s var(--ease);
}
.news-more:hover .circle {
  border-color: var(--gold-500);
}
.news-more .label {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-500);
  white-space: nowrap;
}
.news-more .rule {
  position: absolute;
  left: 108px;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--line-300);
}

/* ---------- SERVICE ---------- */
.service {
  background: #fff;
}
.service .wrap {
  padding: 96px 0;
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 56px 0 24px;
}

.feat {
  position: relative;
  height: 372px;
  overflow: hidden;
  box-shadow: var(--shadow-raised);
  display: block;
}
.feat .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out);
}
.feat:hover .bg {
  transform: scale(1.05);
}
.feat .wash {
  position: absolute;
  inset: 0;
}
.feat .inner {
  position: relative;
  height: 100%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  color: #fff;
}
.feat .num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}
.feat h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.feat p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 4px 0 20px;
  max-width: 460px;
}

.svc-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.svc {
  background: var(--paper);
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: opacity 0.25s var(--ease);
}
.svc:hover {
  opacity: 0.7;
}
.svc .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.svc .num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--navy-800);
}
.svc .lbl {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 30, 64, 0.4);
  margin-top: 2px;
}
.svc .ico {
  width: 26px;
  height: 24px;
  flex: none;
  -o-object-fit: contain;
     object-fit: contain;
}
.svc h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  color: var(--navy-800);
  margin: 28px 0 16px;
}
.svc p {
  font-size: 14px;
  line-height: 1.625;
  flex: 1;
}
.svc .foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

/* ---------- KNOWLEDGE ---------- */
.knowledge {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
}
.knowledge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 870px;
  background: url(../img/knowledge-bg.png) center top/cover no-repeat;
  pointer-events: none;
}
.knowledge .wrap {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 89px 0;
}
.knowledge .sec-head {
  gap: 8px;
  pointer-events: none;
}
.knowledge .sec-head .title {
  font-size: 32px;
  line-height: 1.4;
}

.tabs,
.knowledge__tabs {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  width: 400px;
  max-width: calc(100% - 40px);
  height: 65px;
  overflow-x: auto;
  background: #fff;
  box-shadow: none;
  margin: 34px auto 0;
}

.tab,
.knowledge__tab {
  width: 200px;
  height: 65px;
  flex: none;
  border: none;
  border-right: 1px solid var(--line-100);
  background: #fff;
  color: var(--navy-800);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center !important;
  padding: 0 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.tab:last-child,
.knowledge__tab:last-child {
  border-right: none;
}
.tab.active,
.knowledge__tab.active {
  background: var(--navy-800);
  color: #fff;
}

.kpanel,
.kpanel-wp {
  width: 1250px;
  max-width: calc(100% - 80px);
  background: #fff;
  border-top: 5px solid var(--navy-800);
  padding: 46px 45px 18px 28px;
  margin: 0 auto;
}

.kentry {
  max-width: 1160px;
  margin: 0 auto 20px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line-200);
}
.kentry .h {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.kentry .dot {
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  flex: none;
}
.kentry h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1.5;
  color: var(--navy-800);
}
.kentry p {
  font-size: 14px;
  line-height: 1.9;
}

.kpanel .kentry:last-child,
.kpanel-wp .kentry:last-child {
  border-bottom: none;
}

.kpanel .kentry.no-posts,
.kpanel-wp .kentry.no-posts {
  border-bottom: none;
}
.kpanel .kentry.no-posts .h,
.kpanel-wp .kentry.no-posts .h {
  margin-bottom: 0;
}

/* ---------- LAWYER ---------- */
.lawyer {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.lawyer .wm {
  left: 16px;
  top: 54px;
  font-size: clamp(110px, 15vw, 220px);
  color: rgba(0, 30, 64, 0.06);
}
.lawyer .wrap {
  position: relative;
  padding: 160px 40px 120px;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 32px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.lawyer .col {
  max-width: 660px;
}
.lawyer h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.5;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.lawyer .ko {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.lawyer .h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.6;
  color: var(--navy-800);
  margin: 32px 0 24px;
}
.lawyer p {
  font-size: 15px;
  line-height: 1.95;
  max-width: 660px;
  margin-bottom: 32px;
}
.lawyer .tri {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 0;
  height: 0;
  border-bottom: 228px solid var(--navy-800);
  border-right: 342px solid transparent;
  z-index: 1;
}

.lawyer-photo {
  position: relative;
  height: 650px;
  background: url(../img/lawyer-desk.jpg) center/cover no-repeat;
}
.lawyer-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.lawyer-photo::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  width: 120px;
  height: 120px;
  border-top: 1px solid var(--gold-500);
  border-left: 1px solid var(--gold-500);
}
.lawyer-photo::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 238px;
  height: 153px;
  background: var(--navy-800);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.cred {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cred .badge {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--gold-500);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.cred .t {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* ---------- OFFICE ---------- */
.office {
  background: url(../img/office__bg.png);
  background-size: cover;
  font-family: var(--font-mincho);
  padding-bottom: 50px;
}
.office .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 96px 0;
}
.office .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.office .head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.office .head .jp {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 38px);
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: var(--navy-800);
}

.info {
  margin: 0;
}

.info-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line-200);
}
.info-row:first-child {
  border-top: 1px solid var(--line-200);
}
.info-row dt {
  flex: none;
  width: 120px;
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--navy-800);
}
.info-row dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

/* ---------- CONTACT ---------- */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
  margin: 0 50px 30px 50px;
  border-radius: 20px !important;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: -300px;
}
.contact .wm {
  top: 0px;
  font-size: clamp(120px, 17vw, 160px);
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: 20px;
  font-weight: 400;
}
.contact .wrap {
  max-width: var(--max);
}
.contact .grid {
  position: relative;
  display: grid;
  grid-template-columns: 5.5fr 4.5fr;
  align-items: center;
  padding: 200px 0 80px 0;
}
.contact h2 {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 44px;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 36px;
}
.contact h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: var(--gold-500);
  margin-top: 32px;
}
.contact .lead {
  font-size: 14px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 520px;
}
.contact .btn-ghost {
  background: #fff;
  color: var(--navy-800);
  border-color: #fff;
}
.contact .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.86);
}

.glass {
  padding: 48px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), var(--shadow-overlay);
}
.glass a {
  color: #fff;
}
.glass .rule-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 15px 0 24px;
  margin-bottom: 28px;
}
.glass .online {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #fff !important;
}
.glass .num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: 8px;
}
.glass .hours {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* ---------- RESPONSIVE MEDIA QUERIES FOR SECTIONS ---------- */
@media (max-width: 1472px) {
  .service .wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1100px) {
  .feat-row {
    grid-template-columns: 1fr 1fr;
  }
  .svc-row {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .news .grid,
  .office .grid,
  .contact .grid,
  .lawyer .wrap {
    grid-template-columns: 1fr;
  }
  .tabs,
  .knowledge__tabs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
  }
  .tab,
  .knowledge__tab {
    flex: 1 1 33%;
    border-bottom: 1px solid var(--line-100);
  }
  .knowledge__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-wrap: nowrap;
    width: 400px;
    max-width: calc(100% - 40px);
    overflow-x: hidden;
    gap: 0;
  }
  .knowledge__tab {
    width: auto;
    flex: none;
  }
  .knowledge {
    background: var(--navy-800);
  }
  .knowledge::before {
    display: none;
  }
  .knowledge .sec-head {
    opacity: 1;
  }
  .knowledge .tab,
  .knowledge .knowledge__tab {
    border-bottom: none;
  }
  .lawyer .wrap {
    gap: 32px;
    padding: 80px 24px;
  }
  .lawyer-photo {
    height: 450px;
    order: -1;
  }
  .news .grid {
    gap: 32px;
  }
  .news-side {
    order: -1;
    align-items: flex-start;
    text-align: left;
  }
  .news-list {
    order: 0;
  }
  .office .photo {
    height: 280px;
    overflow: hidden;
  }
  .contact {
    margin: 20px 24px;
  }
  .contact .grid {
    padding: 80px 24px 40px 24px;
    gap: 40px;
  }
  .contact h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .feat-row,
  .svc-row {
    grid-template-columns: 1fr;
  }
  .lawyer .wm {
    top: 18px;
    left: 4px;
    font-size: clamp(82px, 26vw, 124px);
    color: rgba(0, 30, 64, 0.12);
  }
  .lawyer-photo {
    height: auto;
    max-width: 80%;
    margin: 0 auto;
  }
  .lawyer-photo img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .lawyer-photo::after {
    right: -10px;
    bottom: -10px;
    width: 118px;
    height: 76px;
  }
  .tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    gap: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .knowledge__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 40px);
    max-width: 400px;
    overflow-x: hidden;
    gap: 0;
  }
  .tabs::-webkit-scrollbar,
  .knowledge__tabs::-webkit-scrollbar {
    display: none;
  }
  .tab {
    flex: 0 0 auto;
    width: auto;
    padding: 0 20px;
    border-bottom: none;
  }
  .knowledge__tab {
    flex: none;
    width: auto;
    min-width: 0;
    padding: 0 10px;
    border-bottom: none;
  }
  .news-side {
    order: -1;
  }
  .news-list {
    order: 0;
    padding: 8px 16px;
  }
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .news-item::after {
    left: -16px;
    right: -16px;
  }
  .news-item .txt {
    white-space: normal;
  }
  .news-item time {
    margin-bottom: 4px;
  }
  .contact {
    margin: 24px 16px 10px;
  }
  .contact .wm {
    top: 18px;
    font-size: clamp(76px, 24vw, 112px);
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .contact .grid {
    padding: 92px 16px 40px;
  }
  .contact h2 {
    font-size: 20px;
  }
  .contact .btn-ghost {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
  }
  .contact .btn-gold {
    padding: 14px 20px;
    font-size: 13px;
    letter-spacing: 0.06em;
  }
  .glass {
    padding: 24px;
  }
  .glass .online {
    font-size: 14px;
  }
  .glass .num {
    font-size: 24px;
    margin-top: 6px;
  }
  .glass .hours {
    font-size: 11px;
    margin-top: 6px;
  }
  .glass .rule-box {
    padding: 16px 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .wrap,
  .lawyer .wrap,
  .service .wrap,
  .knowledge .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .feat {
    height: 300px;
  }
  .glass {
    padding: 28px;
  }
  .kpanel,
  .kpanel-wp {
    max-width: 100%;
    padding: 28px 20px;
  }
  .kentry {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
/* TOP: 取扱業務以降のフェード調整 */
.service ._anim-point,
.knowledge ._anim-point,
.lawyer ._anim-point,
.office ._anim-point {
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.service .feat-row._anim-point,
.knowledge .knowledge__tabs._anim-point,
.lawyer .lawyer-photo._anim-point,
.office .head._anim-point {
  transition-delay: 0.18s;
}

.service .svc-row._anim-point,
.knowledge .tab-menu-content._anim-point,
.office .info._anim-point {
  transition-delay: 0.32s;
}

@media screen and (max-width: 1099.98px) {
  .hero:not(.hero--lower) .hero-slider .hero-slider__img--slide1 {
    -o-object-position: center top;
       object-position: center top;
  }
}
/* --------------------------------

  idxx　お知らせ

-------------------------------- */
.news-section .news-date {
  width: 100%;
  margin-bottom: 1rem;
}
.news-detail-section .news-date {
  width: 100%;
  text-align: right;
  margin-bottom: 1.5em;
  color: #707070;
}
@media screen and (max-width: 767.98px) {
  .news-detail-section .news-date {
    margin-bottom: 1em;
  }
}
.news-topics {
  position: relative;
  display: flex;
  padding: 2.5rem 0;
  margin-left: 0;
  border-bottom: 1px solid #DDD;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .news-topics {
    flex-direction: column;
    padding: 1.8rem 0;
  }
}
.news-link {
  color: #000;
  line-height: 1.35;
  font-size: 1.6rem;
  font-weight: 400;
  font-feature-settings: "palt";
  transition: color 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .news-link {
    font-size: 1.4rem;
  }
}
.news-link:hover {
  text-decoration: underline;
  color: #67b3f1;
}
.news-date {
  display: block;
  font-size: 1.6rem;
  line-height: 1.35;
  font-feature-settings: "palt";
  width: 5.5em;
  color: #000;
  margin-right: 2.5rem;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .news-date {
    font-size: 1.4rem;
    margin-right: 0;
    margin-bottom: 0.6em;
  }
}
.news-title {
  display: block;
  flex: 1;
  min-width: 0;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #000;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .news-title {
    font-size: 1.4rem;
  }
}
.news-body {
  word-break: break-all;
  word-wrap: break-word;
  text-align: left;
}
.news-text {
  word-break: break-all;
  word-wrap: break-word;
}
.news-text p,
.news-text div {
  word-break: break-all;
  word-wrap: break-word;
}
.news-more a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.news-back {
  text-align: center;
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid #4993CF;
}
@media screen and (max-width: 767.98px) {
  .news-back {
    margin-top: 2em;
  }
}
/* pagination */
.pagination {
  margin: 0;
  margin-top: 2em;
  text-align: center;
  overflow: hidden;
}

.pagination h2.screen-reader-text {
  display: none;
}

.pagination a,
.pagination span {
  display: inline-block;
  vertical-align: middle;
  margin: 0.2rem;
  padding: 0.5rem 1.1rem;
  color: #fff;
  font-size: 0.9em;
  text-align: center;
  border-radius: 0.35rem;
  background-color: #aaa;
}

@media print, screen and (min-width: 768px) {
  .pagination a,
  .pagination span {
    padding: 0.35em 0.75em;
    font-size: 1em;
  }
}
.pagination a:hover,
.pagination span.current {
  background-color: #4993CF;
}

.pagination a:hover {
  text-decoration: none;
}

/* --------------------------------

  idxx　下層

-------------------------------- */
.secondary-section {
  padding: 2.5em 1em 2.5em 1em;
}
@media screen and (min-width: 1100px), print {
  .secondary-section {
    padding: 5em 2em 5em 2em;
  }
}
.secondary-section p {
  line-height: 1.8;
}
.secondary-section .category-text p + p {
  margin-top: 1.8em;
}

.section-header .sec-head .title {
  font-size: clamp(24px, 3.45vw, 38px);
}

/* 投稿ページ */
.detail-text {
  line-height: 1.8;
  margin-bottom: 3em;
}
.detail-text h3 {
  position: relative;
  color: #062845;
  font-size: 1.1em;
  text-align: left;
  line-height: 1.4;
  padding: 0.3em 0 0.7em 17px;
  margin: 3.5em 0 1.5em;
  font-weight: 700;
  border-left: 5px solid var(--navy-800);
  border-bottom: 1px solid #ddd;
  font-family: var(--font-mincho);
}
@media screen and (min-width: 768px), print {
  .detail-text h3 {
    font-size: 1.3em;
  }
}
.detail-text h3 span {
  font-weight: 700 !important;
}
.detail-text h4 {
  position: relative;
  color: #062845;
  font-size: 1.1em;
  font-family: var(--font-mincho);
  font-weight: 700;
  padding: 0 0 0.3em 1.5em;
  margin: 3.5em 0 1.5em;
  border-bottom: 1px solid var(--navy-800);
}
.detail-text h4:before {
  position: absolute;
  display: block;
  content: "";
  top: 40%;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #c9a458;
  transform: translateY(-40%);
}
.detail-text h4 span {
  font-weight: 700 !important;
}
.detail-text a {
  color: #4993CF;
}
.detail-text blockquote {
  padding: 1.5em;
  border-radius: 0.5em;
  border: 2px solid #ccc;
  background-color: #f7f7f7;
  text-align: center;
}
.detail-text blockquote p,
.detail-text blockquote strong,
.detail-text blockquote em {
  font-style: italic;
  font-weight: 700;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #444;
}
.detail-text blockquote p {
  margin-bottom: 1em;
}
.detail-text blockquote p:last-child {
  font-style: normal;
  margin-bottom: 0;
}
.detail-text ul li,
.detail-text ol li {
  margin-left: 1.5rem;
}
.detail-text ul {
  list-style: disc;
}
.detail-text ol {
  list-style: decimal;
}
.detail-text table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.detail-text table th,
.detail-text table td {
  padding: 0.5em 1em;
  border: 1px solid #ddd;
}
.detail-text table th {
  text-align: center;
  background-color: #f7f7f7;
}
.detail-text .post-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin: 0 -1.5em -1.5em 0;
  list-style: none;
}
.detail-text .post-list li {
  width: 100%;
  padding: 0 1.5em 1.5em 0;
  margin-left: 0;
}
@media screen and (min-width: 768px), print {
  .detail-text .post-list li {
    width: 50%;
  }
}
.detail-text .post-list li:before {
  display: none;
}
.detail-text .post-list li a {
  display: inline-block;
  font-weight: bold;
  color: #555;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}
.detail-text .post-list li p {
  font-size: 0.9em;
}
.detail-text .post-list mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
.detail-paging-subsection:first-child {
  overflow: hidden;
  margin-bottom: 1.5em;
}
.detail-paging-subsection a {
  font-weight: bold;
  text-decoration: underline;
}
.detail-paging-subsection .prev {
  float: left;
}
.detail-paging-subsection .next {
  float: right;
}
.detail-paging-subsection .back {
  text-align: center;
}

/* ページネーション */
.pagination {
  padding-top: 2em;
  text-align: center;
  overflow: hidden;
}
.pagination a,
.pagination span {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 4px;
  padding: 0.6em 1.2em;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  background-color: #ccc;
}
.pagination a:hover,
.pagination span.current {
  background-color: #4993CF;
  color: #fff;
}
.pagination a:hover {
  text-decoration: none;
}

/* 離婚・男女問題ページ */
.rikon-page {
  background: #fff;
  color: #0b2c4b;
}

.rikon-inner {
  width: min(1260px, 100% - 48px);
  margin: 0 auto;
}

.rikon-hero {
  position: relative;
  height: clamp(520px, 47.62vw, 800px);
  min-height: 520px;
  overflow: hidden;
  background: #0a2946;
  color: #fff;
}

.rikon-hero__image {
  position: absolute;
  inset: 0;
}

.rikon-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.rikon-hero__body {
  position: relative;
  z-index: 2;
  width: min(1260px, 100% - 48px);
  margin: 0 auto;
  padding-top: clamp(120px, 10.7vw, 178px);
  padding-left: 18px;
}

.rikon-hero__lead {
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 1.65vw, 2.8rem);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-bottom: 0.7em;
}

.rikon-hero__title {
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 4.45vw, 7.4rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: 0.12em;
  margin-bottom: 0.62em;
}

.rikon-hero__text {
  max-width: 720px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 1.35vw, 2.3rem);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.rikon-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 42px;
}

.rikon-hero__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 46px;
  background: #062845;
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 23, 45, 0.26);
  transition: background 0.25s ease, transform 0.25s ease;
}

.rikon-hero__links a:hover {
  background: #c8a35d;
  transform: translateY(-2px);
}

.rikon-intro {
  position: relative;
  overflow: hidden;
  padding: 112px 0 116px;
  background: #fff url(../img/rikon-bg1.jpg) center bottom/cover no-repeat;
  text-align: center;
}

.rikon-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.86);
}

.rikon-intro .rikon-inner {
  position: relative;
  z-index: 1;
}

.rikon-section-head {
  position: relative;
  text-align: center;
  margin-bottom: 44px;
}

.rikon-section-head h2 {
  position: relative;
  z-index: 1;
  color: #062845;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 3.2vw, 5.2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.rikon-section-head span {
  display: block;
  color: #c8a35d;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
  margin-top: 10px;
}

.rikon-section-head__bg {
  position: absolute;
  left: 50%;
  top: -76px;
  transform: translateX(-50%);
  color: rgba(6, 40, 69, 0.045) !important;
  font-size: clamp(7.2rem, 11vw, 15rem) !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  margin: 0 !important;
  white-space: nowrap;
  pointer-events: none;
}

.rikon-section-head--dark h2 {
  color: #fff;
  font-size: clamp(2.8rem, 2.5vw, 4rem);
}

.rikon-section-head--dark span {
  color: #fff;
  opacity: 0.95;
}

.rikon-section-head--dark p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.5rem;
  line-height: 1.8;
  margin-top: 28px;
}

.rikon-intro__text {
  color: #4f5963;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 2.08;
  letter-spacing: 0.04em;
}

.rikon-intro__text p + p {
  margin-top: 22px;
}

.rikon-support-box {
  max-width: 1360px;
  margin: 70px auto 0;
  padding: 42px 64px 48px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e1e6eb;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(5, 34, 58, 0.08);
  text-align: left;
}

.rikon-support-box h3 {
  color: #062845;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 34px;
}

.rikon-support-box h3::before,
.rikon-support-box h3::after {
  color: #062845;
  font-weight: 400;
}

.rikon-support-box h3::before {
  content: "[ ";
}

.rikon-support-box h3::after {
  content: " ]";
}

.rikon-support-box ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 52px;
}

.rikon-support-box li {
  position: relative;
  color: #2e3d4c;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding: 0 0 18px 30px;
  border-bottom: 1px solid #d8dde2;
}

.rikon-support-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c8a35d;
}

.rikon-support-box li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: calc(0.45em + 4px);
  width: 5px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.rikon-case-section {
  padding: 94px 0 106px;
  background: #062845;
}

.rikon-case-list {
  display: grid;
  gap: 50px;
  max-width: 1360px;
  margin: 62px auto 0;
}

.rikon-case-card {
  background: #fff;
  box-shadow: 0 18px 35px rgba(0, 15, 31, 0.16);
}

.rikon-case-card a {
  display: block;
  padding: 32px 32px 36px;
  color: inherit;
  text-decoration: none;
}

.rikon-case-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 38px;
  padding: 0 22px;
  background: #c8a35d;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.rikon-case-card h3 {
  color: #173a5f;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.8vw, 2.8rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}

.rikon-case-card__row {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 44px;
  align-items: start;
}

.rikon-case-card__thumb {
  aspect-ratio: 430/255;
  overflow: hidden;
  background: #f3f3f3;
}

.rikon-case-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}

.rikon-case-card__excerpt {
  color: #5e6670;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
}

.rikon-case-card__result {
  margin-top: 26px;
  padding: 22px 28px;
  background: #f4f4f4;
}

.rikon-case-card__result p {
  color: #3c4550;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 4px;
}

.rikon-case-card__result strong {
  color: #062845;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.9vw, 2.8rem);
  font-weight: 600;
  line-height: 1.45;
}

.rikon-case-card:hover img {
  transform: scale(1.04);
}

.rikon-button-wrap {
  text-align: center;
  margin-top: 62px;
}

.rikon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  height: 66px;
  padding: 0 34px;
  background: #fff;
  border: 1px solid #fff;
  color: #062845;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}

.rikon-button::after {
  content: "›";
  margin-left: 18px;
  font-size: 2.1rem;
  color: currentColor;
}

.rikon-button--light {
  border-color: #062845;
}

.single-case .detail-paging-subsection .back .rikon-button {
  width: min(100%, 340px);
  min-width: 0;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  margin: 0 auto;
}

.rikon-case-card__noimage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  background: #e9f0f6;
  color: #1f2f43;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

.rikon-case-card__noimage-firm {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 1.05vw, 1.8rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.16em;
}

.rikon-case-card__noimage-name {
  display: block;
  font-size: clamp(2.4rem, 1.9vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.12em;
}

.rikon-knowledge {
  padding: 112px 0 106px;
  background: #fff;
}

.rikon-knowledge .rikon-section-head h2 {
  font-size: clamp(2.8rem, 2.55vw, 4rem);
}

.rikon-knowledge-list {
  display: grid;
  grid-template-columns: 1.18fr 0.88fr;
  gap: 32px;
  max-width: 1360px;
  margin: 62px auto 0;
}

.rikon-knowledge-list .rikon-knowledge-card:first-child {
  grid-row: span 2;
  min-height: 500px;
}

.rikon-knowledge-card {
  background: #F6F5F5;
  min-height: 230px;
}

.rikon-knowledge-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 46px 54px 42px;
  color: inherit;
  text-decoration: none;
}

.rikon-knowledge-card time {
  color: #173a5f;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 26px;
}

.rikon-knowledge-card h3 {
  color: #173a5f;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 1.4vw, 2rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.rikon-knowledge-card p {
  color: #5f646b;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
}

.rikon-knowledge-list .rikon-knowledge-card:not(:first-child) p {
  display: none;
}

.rikon-knowledge-card span {
  align-self: flex-end;
  color: #c8a35d;
  font-family: var(--font-sans) !important;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: auto;
}

.rikon-empty {
  color: inherit;
  text-align: center;
}

.case-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
}

.case-archive-card {
  background: #e4e4e4;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-archive-card a {
  display: block;
  height: 100%;
  padding: 30px;
  color: inherit;
  text-decoration: none;
}

.case-archive-card__thumb {
  aspect-ratio: 326/210;
  overflow: hidden;
  background: #fff;
  margin-bottom: 24px;
}

.case-archive-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}

.case-archive-card h2 {
  color: #42484d;
  font-size: clamp(1.9rem, 1.95vw, 2.5rem);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 44px;
}

.case-archive-card p {
  color: #46505a;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.65;
}

.case-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(13, 41, 69, 0.16);
}

.case-archive-card:hover img {
  transform: scale(1.04);
}

@media screen and (max-width: 1100px) {
  .rikon-case-card__row {
    grid-template-columns: 360px 1fr;
    gap: 30px;
  }
  .rikon-support-box {
    padding-right: 48px;
    padding-left: 48px;
  }
}
@media screen and (max-width: 900px) {
  .rikon-hero {
    min-height: 520px;
  }
  .rikon-hero__body {
    padding-top: 112px;
    padding-left: 0;
  }
  .rikon-case-card__row,
  .rikon-knowledge-list,
  .case-archive-grid {
    grid-template-columns: 1fr;
  }
  .rikon-knowledge-list .rikon-knowledge-card:first-child {
    grid-row: auto;
    min-height: 230px;
  }
}
@media screen and (max-width: 640px) {
  .rikon-inner,
  .rikon-hero__body {
    width: calc(100% - 32px);
  }
  .rikon-hero {
    height: auto;
    min-height: 520px;
  }
  .rikon-hero__image img {
    -o-object-position: 58% center;
       object-position: 58% center;
  }
  .rikon-hero__body {
    padding-top: 118px;
    padding-bottom: 54px;
  }
  .rikon-hero__links {
    gap: 10px;
  }
  .rikon-hero__links a {
    width: calc(50% - 5px);
    height: 42px;
    font-size: 1.35rem;
  }
  .rikon-intro,
  .rikon-case-section,
  .rikon-knowledge {
    padding: 66px 0;
  }
  .rikon-section-head {
    margin-bottom: 30px;
  }
  .rikon-intro__text {
    text-align: left;
    font-size: 1.45rem;
  }
  .rikon-intro__text br {
    display: none;
  }
  .rikon-support-box {
    margin-top: 42px;
    padding: 28px 22px 30px;
  }
  .rikon-support-box ul {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .rikon-case-list,
  .rikon-knowledge-list {
    margin-top: 40px;
  }
  .rikon-case-card a,
  .case-archive-card a,
  .rikon-knowledge-card a {
    padding: 24px;
  }
  .rikon-case-card__row {
    gap: 22px;
  }
  .rikon-button {
    width: min(100%, 320px);
    min-width: 0;
    padding: 0 22px;
  }
}
/* 離婚ページ: 既存下層ヒーロー差し替え */
.hero.hero--lower.hero--rikon {
  height: clamp(520px, 47.62vw, 800px);
  min-height: 520px;
}

.hero.hero--lower.hero--rikon .photo img {
  -o-object-position: center center;
     object-position: center center;
}

.hero.hero--lower.hero--rikon .photo::after {
  display: none;
}

.hero.hero--lower.hero--rikon .copy {
  position: absolute;
  inset: 0;
  display: block;
  background: transparent;
}

.hero.hero--lower.hero--rikon .copy-inner {
  width: min(1260px, 100% - 48px);
  max-width: none;
  height: 100%;
  margin: 0 auto;
  padding-top: clamp(120px, 10.7vw, 178px);
  padding-left: 18px;
  text-align: left;
}

.hero.hero--lower.hero--rikon .rikon-hero__lead {
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 1.65vw, 2.8rem);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.11em;
  margin: 0 0 0.7em;
  text-align: left;
}

.hero.hero--lower.hero--rikon .rikon-hero__title {
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 4.45vw, 7.4rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: 0.12em;
  margin: 0 0 0.62em;
  text-align: left;
}

.hero.hero--lower.hero--rikon .rikon-hero__text {
  max-width: 720px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 1.35vw, 2.3rem);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
  text-align: left;
}

.hero.hero--lower.hero--rikon .rikon-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 42px;
}

.hero.hero--lower.hero--rikon .rikon-hero__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 46px;
  background: #062845;
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 23, 45, 0.26);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero.hero--lower.hero--rikon .rikon-hero__links a:hover {
  background: #c8a35d;
  transform: translateY(-2px);
}

.rikon-intro,
.rikon-case-section,
.rikon-knowledge {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 900px) {
  .hero.hero--lower.hero--rikon .copy-inner {
    padding-top: 112px;
    padding-left: 0;
  }
}
@media screen and (max-width: 640px) {
  .hero.hero--lower.hero--rikon {
    height: auto;
    min-height: 520px;
  }
  .hero.hero--lower.hero--rikon .photo img {
    -o-object-position: 58% center;
       object-position: 58% center;
  }
  .hero.hero--lower.hero--rikon .copy-inner {
    width: calc(100% - 32px);
    padding-top: 118px;
    padding-bottom: 54px;
  }
  .hero.hero--lower.hero--rikon .rikon-hero__links {
    gap: 10px;
  }
  .hero.hero--lower.hero--rikon .rikon-hero__links a {
    width: calc(50% - 5px);
    height: 42px;
    font-size: 1.35rem;
  }
}
/* 離婚ページ: ヒーロー下相談内容はボタン化しない */
.hero.hero--lower.hero--rikon .rikon-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
}

.hero.hero--lower.hero--rikon .rikon-hero__links span {
  display: inline-block;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.hero.hero--lower.hero--rikon .rikon-hero__links span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  margin-bottom: 2px;
  background: #c8a35d;
  border-radius: 50%;
}

.rikon-intro {
  background-image: url(../img/rikon-bg1.jpg);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 640px) {
  .hero.hero--lower.hero--rikon .rikon-hero__links {
    gap: 10px 18px;
  }
  .hero.hero--lower.hero--rikon .rikon-hero__links span {
    font-size: 1.35rem;
  }
}
/* 離婚ページ: ヒーロー下相談内容はspanのまま四角ラベル表示 */
.hero.hero--lower.hero--rikon .rikon-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 42px;
}

.hero.hero--lower.hero--rikon .rikon-hero__links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 46px;
  background: #062845;
  color: #fff;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-shadow: none;
}

.hero.hero--lower.hero--rikon .rikon-hero__links span::before {
  content: none;
}

/* 離婚・刑事ページ: メインビジュアルキャッチ影 */
@media screen and (max-width: 1100px) {
  .hero.hero--lower.hero--rikon .rikon-hero__lead {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  }
  .hero.hero--lower.hero--rikon .rikon-hero__title {
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
  }
  .hero.hero--lower.hero--rikon .rikon-hero__text {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  }
}
@media screen and (max-width: 640px) {
  .hero.hero--lower.hero--rikon .rikon-hero__links {
    gap: 10px;
  }
  .hero.hero--lower.hero--rikon .rikon-hero__links span {
    width: calc(50% - 5px);
    height: 42px;
    font-size: 1.35rem;
  }
}
/* 離婚ページ: 明朝はしっぽり明朝に統一 */
.hero.hero--lower.hero--rikon .copy,
.hero.hero--lower.hero--rikon .copy *,
.rikon-intro,
.rikon-intro *,
.rikon-case-section,
.rikon-case-section *,
.rikon-knowledge,
.rikon-knowledge * {
  font-family: "Shippori Mincho", serif !important;
}

/* 離婚ページ: 導入背景画像を見せる */
.rikon-intro::before {
  display: none;
}

/* 離婚ページ: 指定フォントサイズ調整 */
.hero.hero--lower.hero--rikon .rikon-hero__title {
  font-size: clamp(4rem, 3.81vw, 6.4rem);
  font-family: "Shippori Mincho", serif !important;
}

.hero.hero--lower.hero--rikon .rikon-hero__text {
  font-size: clamp(1.8rem, 1.43vw, 2.4rem);
  font-family: "Shippori Mincho", serif !important;
}

.hero.hero--lower.hero--rikon .rikon-hero__lead,
.hero.hero--lower.hero--rikon .rikon-hero__links span {
  font-family: "Shippori Mincho", serif !important;
}

.rikon-intro .rikon-section-head__title {
  font-size: clamp(3.4rem, 3.21vw, 5.4rem);
  font-family: "Shippori Mincho", serif !important;
}

.rikon-intro__text {
  font-family: var(--font-sans) !important;
  font-size: 1.8rem;
}

.rikon-intro__text * {
  font-family: var(--font-sans) !important;
}

.rikon-support-box h3 {
  font-size: 2.4rem;
  font-family: "Shippori Mincho", serif !important;
}

.rikon-support-box li {
  font-size: 1.8rem;
}

.rikon-support-box li::before {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

/* 離婚ページ: 見出しと本文ウェイト調整 */
.rikon-intro__text,
.rikon-intro__text p {
  font-weight: 400;
}

.rikon-case-section .rikon-section-head h2,
.rikon-knowledge .rikon-section-head h2 {
  font-size: clamp(2.4rem, 1.9vw, 3.2rem);
}

.rikon-case-section .rikon-section-head span,
.rikon-knowledge .rikon-section-head span {
  font-size: 1.5rem;
}

.rikon-case-section .rikon-section-head p,
.rikon-knowledge .rikon-section-head p {
  font-family: var(--font-sans) !important;
  font-size: 1.6rem;
  font-weight: 400;
}

/* 離婚ページ: ヒーローコピー位置調整 */
@media screen and (min-width: 1025px) {
  .hero.hero--lower.hero--rikon .copy-inner {
    width: min(1500px, 100% - 48px);
  }
}
/* 離婚ページ: ヒーロー本文幅調整 */
.hero.hero--lower.hero--rikon .rikon-hero__text {
  max-width: 900px;
}

/* 離婚ページ: ヒーロー縮小時の視認性調整 */
@media screen and (max-width: 900px) {
  .hero.hero--lower.hero--rikon {
    min-height: 650px;
    height: auto;
    background: #062845;
  }
  .hero.hero--lower.hero--rikon .photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 32, 58, 0.88) 0%, rgba(0, 32, 58, 0.74) 56%, rgba(0, 32, 58, 0.42) 100%);
  }
  .hero.hero--lower.hero--rikon .photo img {
    -o-object-position: 64% center;
       object-position: 64% center;
  }
  .hero.hero--lower.hero--rikon .copy-inner {
    width: calc(100% - 56px);
    padding-top: 96px;
    padding-left: 0;
    padding-bottom: 70px;
  }
  .hero.hero--lower.hero--rikon .rikon-hero__lead {
    font-size: clamp(1.6rem, 3.2vw, 2rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
  }
  .hero.hero--lower.hero--rikon .rikon-hero__title {
    font-size: clamp(3.6rem, 7.6vw, 5.4rem);
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.68);
  }
  .hero.hero--lower.hero--rikon .rikon-hero__text {
    max-width: 100%;
    font-size: clamp(1.7rem, 3.1vw, 2.1rem);
    line-height: 1.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
  }
  .hero.hero--lower.hero--rikon .rikon-hero__links {
    gap: 10px;
    margin-top: 34px;
  }
  .hero.hero--lower.hero--rikon .rikon-hero__links span {
    width: calc(50% - 5px);
    max-width: 210px;
    height: 44px;
  }
}
@media screen and (max-width: 640px) {
  .hero.hero--lower.hero--rikon {
    min-height: 620px;
  }
  .hero.hero--lower.hero--rikon .copy-inner {
    width: calc(100% - 32px);
    padding-top: 86px;
    padding-bottom: 60px;
  }
  .hero.hero--lower.hero--rikon .rikon-hero__links span {
    max-width: none;
  }
}
/* 離婚ページ: コンテンツ単位フェード調整 */
.rikon-intro ._anim-point,
.rikon-case-section ._anim-point,
.rikon-knowledge ._anim-point {
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.rikon-intro__text._anim-point,
.rikon-case-list._anim-point,
.rikon-knowledge-list._anim-point {
  transition-delay: 0.18s;
}

.rikon-support-box._anim-point,
.rikon-button-wrap._anim-point {
  transition-delay: 0.32s;
}

@keyframes rikonContentFade {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 離婚ページ: ヒーロー内コンテンツ単位フェード */
.hero.hero--lower.hero--rikon .rikon-hero__fade,
.hero.hero--lower.hero--rikon .rikon-hero__links span {
  opacity: 0;
  transform: translateY(34px);
  animation: none !important;
  transition-property: opacity, transform;
  transition-duration: 1.1s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.hero.hero--lower.hero--rikon.rikon-hero-is-visible .rikon-hero__fade,
.hero.hero--lower.hero--rikon.rikon-hero-is-visible .rikon-hero__links span {
  opacity: 1;
  transform: translateY(0);
}

.hero.hero--lower.hero--rikon .rikon-hero__fade--lead {
  transition-delay: 0.05s;
}

.hero.hero--lower.hero--rikon .rikon-hero__fade--title {
  transition-delay: 0.28s;
}

.hero.hero--lower.hero--rikon .rikon-hero__fade--text {
  transition-delay: 0.52s;
}

.hero.hero--lower.hero--rikon .rikon-hero__links span:nth-child(1) {
  transition-delay: 0.78s;
}

.hero.hero--lower.hero--rikon .rikon-hero__links span:nth-child(2) {
  transition-delay: 0.9s;
}

.hero.hero--lower.hero--rikon .rikon-hero__links span:nth-child(3) {
  transition-delay: 1.02s;
}

.hero.hero--lower.hero--rikon .rikon-hero__links span:nth-child(4) {
  transition-delay: 1.14s;
}

/* 離婚ページ: 解決事例カードの表示情報 */
.rikon-case-card__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.rikon-case-card__result {
  margin-top: 24px;
  padding: 24px 32px;
  background: #f4f4f4;
}

/* 解決事例一覧: スコープ付きカード調整 */
.post-type-archive-case .case-archive-section {
  padding: 92px 0 118px;
  background: #fff;
}

.post-type-archive-case .case-archive-section .inner {
  max-width: 1320px;
}

.post-type-archive-case .case-archive-grid {
  gap: 38px;
}

.post-type-archive-case .case-archive-card {
  position: relative;
  background: #fff;
  border: 1px solid #e6e0d4;
  border-top: 3px solid #062845;
  border-radius: 0;
  box-shadow: 0 14px 28px rgba(6, 40, 69, 0.07);
}

.post-type-archive-case .case-archive-card a {
  padding: 28px 28px 34px;
}

.post-type-archive-case .case-archive-card__thumb {
  aspect-ratio: 342/216;
  background: #f5f5f5;
  margin-bottom: 24px;
}

.post-type-archive-case .case-archive-card__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 126px;
  min-height: 32px;
  padding: 6px 16px;
  background: #c9a458;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.post-type-archive-case .case-archive-card h2 {
  color: #062845;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 1.45vw, 2.4rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.post-type-archive-case .case-archive-card__body > p:not(.case-archive-card__cat) {
  color: #505a63;
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.post-type-archive-case .case-archive-card:hover {
  transform: translateY(-5px);
  border-color: #d9c492;
  box-shadow: 0 22px 38px rgba(6, 40, 69, 0.12);
}

@media screen and (max-width: 900px) {
  .post-type-archive-case .case-archive-section {
    padding: 70px 0 88px;
  }
  .post-type-archive-case .case-archive-grid {
    gap: 30px;
  }
}
@media screen and (max-width: 640px) {
  .post-type-archive-case .case-archive-card a {
    padding: 22px 22px 28px;
  }
  .post-type-archive-case .case-archive-card__thumb {
    margin-bottom: 22px;
  }
  .post-type-archive-case .case-archive-card__cat {
    min-height: 30px;
    margin-bottom: 16px;
  }
  .post-type-archive-case .case-archive-card h2 {
    font-size: 2.2rem;
    margin-bottom: 22px;
  }
  .post-type-archive-case .case-archive-card__body > p:not(.case-archive-card__cat) {
    font-size: 1.5rem;
  }
}
.case-archive-switch {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 42px auto 48px;
}

.case-archive-switch__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 0 34px;
  border: 1px solid #062845;
  background: #fff;
  color: #062845;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.case-archive-switch__button:hover,
.case-archive-switch__button.is-current {
  background: #062845;
  border-color: #062845;
  color: #fff !important;
  text-decoration: none;
}

@media screen and (max-width: 767.98px) {
  .case-archive-switch {
    gap: 12px;
    margin: 32px auto 36px;
  }
  .case-archive-switch__button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 420px) {
  .case-archive-switch {
    flex-direction: column;
  }
}
.post-type-archive-case .section-header .sec-head .en {
  font-family: var(--font-serif);
  font-weight: 700;
}

.news-archive-section .news-archive-list {
  margin-top: 0;
}

@media screen and (max-width: 640px) {
  .news-archive-section .news-archive-list {
    padding: 8px 16px;
  }
  .news-archive-section .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .news-archive-section .news-item .txt {
    white-space: normal;
  }
  .news-archive-section .news-item time {
    margin-bottom: 4px;
  }
}
.price-page .inner {
  max-width: 980px;
}
.price-page__lead {
  margin: 0 0 4.8rem;
  padding: 2.4rem 3rem;
  background: #f6f5f5;
  border-left: 4px solid #c9a458;
}
.price-page__lead p {
  margin: 0;
  color: #062845;
  font-size: 1.6rem;
  line-height: 1.9;
}

.price-list {
  display: grid;
  gap: 8.4rem;
}

.price-block h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0 0 2.8rem;
  color: #062845;
  font-family: var(--font-mincho);
  font-size: clamp(1.9rem, 1.75vw, 2.6rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
}
.price-block h3::before {
  content: "";
  position: static;
  flex: 0 0 auto;
  width: 3.8rem;
  height: 2px;
  background: #c9a458;
  transform: none;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #d9d9d9;
  color: #062845;
  font-size: 1.6rem;
  line-height: 1.75;
}
.price-table tr {
  border-bottom: 1px solid #d9d9d9;
}
.price-table th,
.price-table td {
  padding: 2.4rem 2.2rem;
  vertical-align: top;
}
.price-table th {
  width: 22rem;
  color: #062845;
  font-weight: 500;
  font-family: var(--font-gothic);
  text-align: left;
  white-space: nowrap;
}
.price-table td {
  position: relative;
}
.price-table td::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2.8rem;
  width: 1px;
  height: 2.2rem;
  background: #ececec;
}
.price-table ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.price-table li {
  position: relative;
  padding-left: 1.2em;
}
.price-table li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: #062845;
  font-size: 0.72em;
  line-height: 2.35;
}
.price-table__note {
  margin: 0.4rem 0 0;
}

@media screen and (max-width: 767.98px) {
  .price-page__lead {
    margin-bottom: 3.6rem;
    padding: 2rem;
  }
  .price-page__lead p {
    font-size: 1.5rem;
  }
  .price-list {
    gap: 6.4rem;
  }
  .price-table {
    font-size: 1.5rem;
  }
  .price-table th,
  .price-table td {
    display: block;
    width: 100%;
    padding: 1.6rem 0;
  }
  .price-table th {
    padding-bottom: 0.4rem;
  }
  .price-table td {
    padding-top: 0.4rem;
  }
  .price-table td::before {
    display: none;
  }
}/*# sourceMappingURL=styles.css.map */