@charset "UTF-8";
@font-face {
  font-family: "YuMincho";
  font-weight: normal;
  src: url("../font/A-OTF-A1MinchoStd-Bold.otf");
}
/*====================================================================
Reset
====================================================================*/
*, html, body, div, figure, section, header, footer, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  line-height: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

/*
TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  *font-size: 100%;
}

legend {
  color: #101010;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  line-height: 100%;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*-----------------------------------------------
@keyframes
------------------------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale3d(1.2, 1.2, 1.2);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes HamBtnOpenTop {
  50% {
    top: 50%;
  }
  100% {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes HamBtnOpenBottom {
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
  }
}
@keyframes HamBtnCloseTop {
  50% {
    top: 50%;
    transform: translateX(-50%);
  }
  100% {
    top: 12px;
    transform: translateX(-50%);
  }
}
@keyframes HamBtnCloseBottom {
  50% {
    bottom: 50%;
    transform: translateX(-50%);
  }
  100% {
    bottom: 12px;
    transform: translateX(-50%);
  }
}
.u-visualEditArea {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .u-visualEditArea {
    font-size: 1.3rem;
  }
}
.u-visualEditArea * + * {
  margin-top: 1.75em;
}
@media screen and (min-width: 769px) {
  .u-visualEditArea a {
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .u-visualEditArea a:hover {
    opacity: 0.6;
  }
}
.u-visualEditArea a {
  color: #0077FF;
  text-decoration: underline;
}
.u-visualEditArea h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}
.u-visualEditArea h2 {
  margin-top: 2em;
  font-size: 3rem;
  line-height: 1.6;
}
.u-visualEditArea h3 {
  color: #0077FF;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}
.u-visualEditArea h4 {
  padding-left: 25px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
}
.u-visualEditArea h4::before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #0077FF;
}
.u-visualEditArea h5, .u-visualEditArea h6 {
  font-size: 1.6rem;
  line-height: 1.6;
}
.u-visualEditArea h1 + h2,
.u-visualEditArea h2 + h3,
.u-visualEditArea h3 + h4,
.u-visualEditArea h4 + h5,
.u-visualEditArea h5 + h6 {
  margin-top: 0.5em;
}
.u-visualEditArea p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .u-visualEditArea p {
    font-size: 1.3rem;
  }
}
.u-visualEditArea strong, .u-visualEditArea strong * {
  font-weight: bold;
}
.u-visualEditArea em, .u-visualEditArea em * {
  font-style: italic;
}
.u-visualEditArea ul {
  list-style-type: disc;
}
.u-visualEditArea ol {
  list-style-type: decimal;
}
.u-visualEditArea ul, .u-visualEditArea ol {
  margin-top: 1em;
  padding-left: 1.4em;
}
.u-visualEditArea ul li, .u-visualEditArea ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}
.u-visualEditArea sup, .u-visualEditArea sub {
  font-size: 1rem;
  line-height: 1 !important;
}
.u-visualEditArea hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #fff;
}
.u-visualEditArea blockquote {
  padding: 30px;
  background: #292929;
}
.u-visualEditArea table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #292929;
}
.u-visualEditArea table thead th, .u-visualEditArea table thead td {
  font-weight: bold;
  text-align: center;
}
.u-visualEditArea table tr th, .u-visualEditArea table tr td {
  padding: 15px 20px;
  border: #666 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}
.u-visualEditArea table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}
.u-visualEditArea img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}
.u-visualEditArea img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.u-visualEditArea img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}
.u-visualEditArea .gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.u-visualEditArea .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}
.u-visualEditArea .gallery-columns-2 .gallery-item {
  width: calc((100% - 40px) / 2);
}
.u-visualEditArea .gallery-columns-3 .gallery-item {
  width: calc((100% - 80px) / 3);
}

/*====================================================================
siteHeader
header.php とセット。BEM: .header__* / .header-menu__*
Astro実装 src/assets/scss/_header.scss の移植（クラス名・仕様は変更なし）。
====================================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 78px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: #FFFFFF;
}
.header__logo {
  display: flex;
  flex-shrink: 0;
}
.header__logo-mark {
  height: 19px;
  width: auto;
}
.header__logo-mark--ink {
  fill: #231815;
}
.header__logo-mark--accent {
  fill: #B02123;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-link {
  font-weight: 600;
  font-size: clamp(12px, 0.95vw, 13.5px);
  letter-spacing: 0.02em;
  color: #231815;
  padding: 12px clamp(16px, 1.8vw, 22px);
  border-radius: 999px;
  background: rgba(35, 24, 21, 0.08);
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}
.header__nav-link:hover {
  background: #231815;
  color: #FFFFFF;
}
.header__nav-link:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}
.header__toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header__toggle {
    display: flex;
  }
}
.header__toggle:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}
.header__toggle-bar {
  width: 22px;
  height: 2px;
  background: #231815;
  transition: transform 0.25s, opacity 0.25s, background 0.25s;
}
.header--menu-open .header__toggle-bar {
  background: #F5F2EE;
}
.header--menu-open .header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header--menu-open .header__toggle-bar:nth-child(2) {
  opacity: 0;
}
.header--menu-open .header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header--transparent {
  transition: background 0.25s;
}
.header--transparent:not(.header--scrolled) {
  background: transparent;
}
.header--transparent:not(.header--scrolled) .header__logo-mark--ink,
.header--transparent:not(.header--scrolled) .header__logo-mark--accent {
  fill: #FFFFFF;
}
.header--transparent:not(.header--scrolled) .header__nav-link {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.16);
}
.header--transparent:not(.header--scrolled) .header__nav-link:hover {
  background: #FFFFFF;
  color: #231815;
}
.header--transparent:not(.header--scrolled) .header__toggle-bar {
  background: #FFFFFF;
}

.header-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: calc(78px + 24px) 20px 40px;
  background: #131110;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.header-menu--open {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 769px) {
  .header-menu {
    display: none;
  }
}
.header-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header-menu__link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #2A2724;
}
.header-menu__link:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}
.header-menu__link-no {
  font-size: 11px;
  color: #B02123;
}
.header-menu__link-label {
  font-size: 22px;
  font-weight: 700;
  color: #F5F2EE;
}

/*====================================================================
siteFooter
footer.php とセット。BEM: .footer__*
Astro実装 src/assets/scss/_footer.scss の移植（クラス名・仕様は変更なし）。
====================================================================*/
.footer {
  background: #231815;
  color: #F5F2EE;
  padding: clamp(48px, 12vw, 64px) 20px;
}
@media screen and (min-width: 769px) {
  .footer {
    padding: clamp(56px, 6vw, 72px) clamp(16px, 4vw, 48px) 32px;
  }
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2A2724;
}
@media screen and (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__logo-mark {
  height: 20px;
  width: auto;
}
.footer__logo-mark--ink {
  fill: #F5F2EE;
}
.footer__logo-mark--accent {
  fill: #F5F2EE;
}
.footer__col-label {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #A8A29B;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__link {
  font-size: 13px;
  color: #EDEAE6;
}
.footer__link:hover {
  color: #F5F2EE;
}
.footer__link:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 24px;
}
.footer__copyright {
  margin: 0;
  font-size: 12px;
  color: #77716A;
}

/*====================================================================
hamMenu
ハンバーガーボタン／SPオーバーレイメニューのスタイルは
_modules/_siteHeader.scss（.header__toggle / .header-menu__*）に統合済み。
このファイルは import 順維持のため残置（中身なし）。
====================================================================*/
/*====================================================================
contentCenter
====================================================================*/
.contentCenter {
  width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 1180px) {
  .contentCenter {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .contentCenter {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*====================================================================
visualEditArea
====================================================================*/
.visualEditArea {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .visualEditArea {
    font-size: 1.3rem;
  }
}
.visualEditArea * + * {
  margin-top: 1.75em;
}
@media screen and (min-width: 769px) {
  .visualEditArea a {
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .visualEditArea a:hover {
    opacity: 0.6;
  }
}
.visualEditArea a {
  color: #0077FF;
  text-decoration: underline;
}
.visualEditArea h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}
.visualEditArea h2 {
  margin-top: 2em;
  font-size: 3rem;
  line-height: 1.6;
}
.visualEditArea h3 {
  color: #0077FF;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}
.visualEditArea h4 {
  padding-left: 25px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
}
.visualEditArea h4::before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #0077FF;
}
.visualEditArea h5, .visualEditArea h6 {
  font-size: 1.6rem;
  line-height: 1.6;
}
.visualEditArea h1 + h2,
.visualEditArea h2 + h3,
.visualEditArea h3 + h4,
.visualEditArea h4 + h5,
.visualEditArea h5 + h6 {
  margin-top: 0.5em;
}
.visualEditArea p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .visualEditArea p {
    font-size: 1.3rem;
  }
}
.visualEditArea strong, .visualEditArea strong * {
  font-weight: bold;
}
.visualEditArea em, .visualEditArea em * {
  font-style: italic;
}
.visualEditArea ul {
  list-style-type: disc;
}
.visualEditArea ol {
  list-style-type: decimal;
}
.visualEditArea ul, .visualEditArea ol {
  margin-top: 1em;
  padding-left: 1.4em;
}
.visualEditArea ul li, .visualEditArea ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}
.visualEditArea sup, .visualEditArea sub {
  font-size: 1rem;
  line-height: 1 !important;
}
.visualEditArea hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #fff;
}
.visualEditArea blockquote {
  padding: 30px;
  background: #292929;
}
.visualEditArea table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #292929;
}
.visualEditArea table thead th, .visualEditArea table thead td {
  font-weight: bold;
  text-align: center;
}
.visualEditArea table tr th, .visualEditArea table tr td {
  padding: 15px 20px;
  border: #666 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}
.visualEditArea table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}
.visualEditArea img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}
.visualEditArea img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.visualEditArea img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}
.visualEditArea .gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.visualEditArea .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}
.visualEditArea .gallery-columns-2 .gallery-item {
  width: calc((100% - 40px) / 2);
}
.visualEditArea .gallery-columns-3 .gallery-item {
  width: calc((100% - 80px) / 3);
}

/*====================================================================
space
====================================================================*/
.space-s,
.space-m,
.space-l {
  border: none;
}

.space-s {
  padding-top: 30px;
}

.space-m {
  padding-top: 50px;
}

.space-l {
  padding-top: 80px;
}

/*====================================================================
bnrA
====================================================================*/
@media screen and (min-width: 769px) {
  .bnrA {
    transition: all 0.6s ease-in-out 0s;
  }
}
.bnrA {
  color: #0077FF;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .bnrA {
    font-size: 1.3rem;
  }
}
.bnrA {
  padding: 10px 90px 10px 0;
  position: relative;
  font-weight: bold;
}
.bnrA::before, .bnrA::after {
  content: "";
  position: absolute;
  bottom: 0;
}
.bnrA::before {
  width: 100%;
  height: 2px;
  left: 0;
  background: #0077FF;
}
.bnrA::after {
  width: 15px;
  height: 15px;
  display: block;
  right: 0;
  border-right: 3px solid #0077FF;
  transform: translateX(-50%) skewX(60deg);
}

/*====================================================================
bnrB
====================================================================*/
.bnrB {
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 769px) {
  .bnrB::before {
    transition: all 0.6s ease-in-out 0s;
  }
}
.bnrB::before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #002BFF;
}
@media screen and (min-width: 769px) {
  .bnrB:hover::before {
    width: 100%;
  }
}
.bnrB__layer {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .bnrB__layer {
    font-size: 1.3rem;
  }
}
.bnrB__layer {
  padding: 15px 100px 15px 15px;
  display: inline-block;
  position: relative;
}
.bnrB__layer::before {
  content: "";
  width: 60px;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: #fff;
}
.bnrB__layer::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  border-right: 3px solid #fff;
  transform: translate(-50%, -100%) skewX(60deg);
}

/*====================================================================
bnrC
====================================================================*/
.bnrC {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .bnrC {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .bnrC {
    transition: all 0.6s ease-in-out 0s;
  }
}
.bnrC {
  padding: 20px 80px;
  border: 2px solid #0077FF;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .bnrC:hover {
    background: #0077FF;
  }
}

/*====================================================================
gridArea
====================================================================*/
.gridArea {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 -1% -40px;
}
.gridArea__col {
  padding: 0 1%;
  margin-bottom: 40px;
}
.gridArea__col.u-col-1 {
  align-items: stretch;
  flex-basis: 8.3333333333%;
}
.gridArea__col.u-col-2 {
  align-items: stretch;
  flex-basis: 16.6666666667%;
}
.gridArea__col.u-col-3 {
  align-items: stretch;
  flex-basis: 25%;
}
.gridArea__col.u-col-4 {
  align-items: stretch;
  flex-basis: 33.3333333333%;
}
.gridArea__col.u-col-5 {
  align-items: stretch;
  flex-basis: 41.6666666667%;
}
.gridArea__col.u-col-6 {
  align-items: stretch;
  flex-basis: 50%;
}
.gridArea__col.u-col-7 {
  align-items: stretch;
  flex-basis: 58.3333333333%;
}
.gridArea__col.u-col-8 {
  align-items: stretch;
  flex-basis: 66.6666666667%;
}
.gridArea__col.u-col-9 {
  align-items: stretch;
  flex-basis: 75%;
}
.gridArea__col.u-col-10 {
  align-items: stretch;
  flex-basis: 83.3333333333%;
}
.gridArea__col.u-col-11 {
  align-items: stretch;
  flex-basis: 91.6666666667%;
}
.gridArea__col.u-col-12 {
  align-items: stretch;
  flex-basis: 100%;
}
@media screen and (max-width: 768px) {
  .gridArea__col.u-col-sp-1 {
    align-items: stretch;
    flex-basis: 8.3333333333%;
  }
  .gridArea__col.u-col-sp-2 {
    align-items: stretch;
    flex-basis: 16.6666666667%;
  }
  .gridArea__col.u-col-sp-3 {
    align-items: stretch;
    flex-basis: 25%;
  }
  .gridArea__col.u-col-sp-4 {
    align-items: stretch;
    flex-basis: 33.3333333333%;
  }
  .gridArea__col.u-col-sp-5 {
    align-items: stretch;
    flex-basis: 41.6666666667%;
  }
  .gridArea__col.u-col-sp-6 {
    align-items: stretch;
    flex-basis: 50%;
  }
  .gridArea__col.u-col-sp-7 {
    align-items: stretch;
    flex-basis: 58.3333333333%;
  }
  .gridArea__col.u-col-sp-8 {
    align-items: stretch;
    flex-basis: 66.6666666667%;
  }
  .gridArea__col.u-col-sp-9 {
    align-items: stretch;
    flex-basis: 75%;
  }
  .gridArea__col.u-col-sp-10 {
    align-items: stretch;
    flex-basis: 83.3333333333%;
  }
  .gridArea__col.u-col-sp-11 {
    align-items: stretch;
    flex-basis: 91.6666666667%;
  }
  .gridArea__col.u-col-sp-12 {
    align-items: stretch;
    flex-basis: 100%;
  }
}
.gridArea__col img {
  width: 100%;
}

/*====================================================================
card
====================================================================*/
.card {
  display: block;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .card:hover [class$=__thumb] {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  .card {
    border-radius: 7px;
  }
}
@media screen and (min-width: 769px) {
  .card__thumb {
    transition: all 0.6s ease-in-out 0s;
  }
}
.card__textArea {
  width: 100%;
  padding: 10px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(16, 16, 16, 0.8);
}
@media screen and (max-width: 768px) {
  .card__textArea {
    padding: 5px 7px;
  }
}
.card__time {
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .card__time {
    font-size: 1.3rem;
  }
}
.card__postTitle {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .card__postTitle {
    font-size: 1.3rem;
  }
}
.card__postTitle {
  margin-top: 5px;
}

/*====================================================================
tabArea
====================================================================*/
.tabArea__btnList {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.tabArea__btnItem {
  flex-basis: 100%;
  margin: 0 2px;
}
.tabArea__btnItem:nth-child(1) {
  margin-left: 0;
}
.tabArea__btnItem:nth-last-child(1) {
  margin-right: 0;
}
.tabArea__btnLink {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .tabArea__btnLink {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .tabArea__btnLink {
    transition: all 0.6s ease-in-out 0s;
  }
}
.tabArea__btnLink {
  padding: 20px 15px;
  display: block;
  background: #101010;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .tabArea__btnLink:hover {
    background: #fff;
    color: #101010;
  }
}
@media screen and (max-width: 768px) {
  .tabArea__btnLink {
    padding: 5px 10px;
  }
}
.tabArea__btnLink.is-open {
  background: #666;
  cursor: default;
}
@media screen and (min-width: 769px) {
  .tabArea__btnLink.is-open:hover {
    background: #666;
    color: #fff;
  }
}
.tabArea__contentItem {
  padding: 40px 50px;
  background: #666;
  display: none;
}
@media screen and (max-width: 768px) {
  .tabArea__contentItem {
    padding: 20px 15px;
  }
}
.tabArea__contentItem.is-open {
  display: block;
}

/*====================================================================
accordionBtn
====================================================================*/
@media screen and (min-width: 769px) {
  .accordionBtn {
    transition: all 0.6s ease-in-out 0s;
  }
}
.accordionBtn {
  padding: 20px;
  border: 1px solid #fff;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .accordionBtn {
    padding: 10px 15px;
  }
}
.accordionBtn.is-open [class$=__icon]::after {
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .accordionBtn:hover {
    background: #fff;
  }
  .accordionBtn:hover [class$=__text] {
    color: #101010;
  }
  .accordionBtn:hover [class$=__icon]::before, .accordionBtn:hover [class$=__icon]::after {
    background: #101010;
  }
}
@media screen and (min-width: 769px) {
  .accordionBtn__text {
    transition: all 0.6s ease-in-out 0s;
  }
}
.accordionBtn__text {
  font-size: 1.6rem;
  text-align: center;
}
.accordionBtn__icon {
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  width: 50px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .accordionBtn__icon {
    width: 35px;
  }
}
@media screen and (min-width: 769px) {
  .accordionBtn__icon::before, .accordionBtn__icon::after {
    transition: all 0.6s ease-in-out 0s;
  }
}
.accordionBtn__icon::before, .accordionBtn__icon::after {
  content: "";
  width: 30px;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .accordionBtn__icon::before, .accordionBtn__icon::after {
    width: 15px;
  }
}
.accordionBtn__icon::before {
  transform: translate(-50%, -50%);
}
.accordionBtn__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/*====================================================================
accordionContent
====================================================================*/
.accordionContent {
  padding: 30px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: none;
}
@media screen and (max-width: 768px) {
  .accordionContent {
    padding: 20px 15px;
  }
}

/*====================================================================
modalWrap
====================================================================*/
.modalWrap {
  display: block;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .modalWrap img {
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .modalWrap:hover img {
    transform: scale(1.1);
  }
}
.modalWrap__button {
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #0077FF;
}
@media screen and (max-width: 768px) {
  .modalWrap__button {
    width: 25px;
    height: 25px;
  }
}
.modalWrap__button::before, .modalWrap__button::after {
  content: "";
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .modalWrap__button::before, .modalWrap__button::after {
    width: 15px;
    height: 1px;
  }
}
.modalWrap__button::before {
  transform: translate(-50%, -50%);
}
.modalWrap__button::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/*====================================================================
postListA
====================================================================*/
.postListA__item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .postListA__item {
    padding: 7px 0;
  }
}
.postListA__time {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .postListA__time {
    font-size: 1.3rem;
  }
}
.postListA__time {
  padding: 5px 20px 5px 0;
}
@media screen and (max-width: 768px) {
  .postListA__time {
    padding: 3px 10px 3px 0;
  }
}
.postListA__catLabel {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .postListA__catLabel {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .postListA__catLabel {
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .postListA__catLabel:hover {
    opacity: 0.6;
  }
}
.postListA__catLabel {
  min-width: 140px;
  padding: 5px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .postListA__catLabel {
    min-width: 90px;
    padding: 3px;
  }
}
.postListA__postLink {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .postListA__postLink {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .postListA__postLink {
    transition: all 0.6s ease-in-out 0s;
  }
}
.postListA__postLink {
  padding-left: 20px;
}
@media screen and (min-width: 769px) {
  .postListA__postLink:hover {
    color: #0077FF;
  }
}
@media screen and (max-width: 768px) {
  .postListA__postLink {
    padding-left: 10px;
  }
}

/*====================================================================
lowerPageFv
====================================================================*/
.lowerPageFv {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 250px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .lowerPageFv {
    height: 125px;
  }
}
.lowerPageFv::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(16, 16, 16, 0.5);
}
.lowerPageFv__pageTitle {
  position: relative;
  font-size: 4rem;
  text-align: center;
  z-index: 1;
}

/*====================================================================
COMMON LAYOUT
====================================================================*/
html {
  font-size: 62.5%;
}

body {
  background: #212121;
  font-feature-settings: "palt" 1;
}

/*-----------------------------------------------
PC/SP 出し分け
------------------------------------------------*/
.u-pcDb {
  display: block;
}

.u-pcDib {
  display: inline-block;
}

.u-pcDin {
  display: inline;
}

.u-pcDf {
  display: flex;
}

.u-pcDt {
  display: table;
}

.u-pcDtc {
  display: table-cell;
}

.u-spDb,
.u-spDib,
.u-spDin,
.u-spDf,
.u-spDt,
.u-spDtc {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-pcDb,
  .u-pcDib,
  .u-pcDin,
  .u-pcDf,
  .u-pcDt,
  .u-pcDtc {
    display: none;
  }
  .u-spDb {
    display: block;
  }
  .u-spDib {
    display: inline-block;
  }
  .u-spDin {
    display: inline;
  }
  .u-spDf {
    display: flex;
  }
  .u-spDt {
    display: table;
  }
  .u-spDtc {
    display: table-cell;
  }
}
/*-----------------------------------------------
サイトコンテンツ
------------------------------------------------*/
.siteContent {
  min-height: calc(100vh - 320px);
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .siteContent {
    min-height: calc(100vh - 50px);
    padding-top: 50px;
  }
}

/*-----------------------------------------------
WPツールバー
------------------------------------------------*/
@media screen and (max-width: 600px) {
  .is_login_user #wpadminbar {
    position: fixed;
  }
}
/*====================================================================
Freece — 全ページ共通（本文色・フォント・main枠・スクロールリビール）
====================================================================*/
body {
  background: #FFFFFF;
  color: #231815;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(30px, 4.6vw, 52px);
}

h2 {
  font-size: clamp(24px, 2.6vw, 32px);
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 16px;
  margin: 0 0 1em;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.main {
  padding-top: 78px;
}
.main--flush {
  padding-top: 0;
}

.mincho {
  font-family: "Shippori Mincho", serif;
}

.en {
  font-family: "Space Grotesk", sans-serif;
}

.mono {
  font-family: "Space Mono", monospace;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
/*====================================================================
components — 全ページ共通ブロック（ボタン/タグ）
Astro実装 src/assets/scss/_components.scss の移植（クラス名・仕様は変更なし）。
====================================================================*/
.button {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.button:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}
.button--primary {
  background: #B02123;
  color: #FFFFFF;
  border-color: #B02123;
}
.button--primary:hover {
  background: #861D21;
  border-color: #861D21;
}
.button--secondary {
  background: transparent;
  color: #231815;
  border-color: #231815;
}
.button--secondary:hover {
  background: rgba(35, 24, 21, 0.06);
}
.button--invert {
  background: #FFFFFF;
  color: #B02123;
  border-color: #FFFFFF;
}
.button--invert:hover {
  background: #231815;
  color: #FFFFFF;
  border-color: #231815;
}

.page-cta {
  padding: clamp(48px, 12vw, 64px) 20px;
  text-align: center;
  background: #B02123;
}
@media screen and (min-width: 769px) {
  .page-cta {
    padding: clamp(72px, 8vw, 100px) clamp(16px, 4vw, 48px);
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #231815;
  border: 1px solid #231815;
  border-radius: 999px;
  padding: 11px 22px;
}
.tag--solid {
  background: #B02123;
  color: #FFFFFF;
  border-color: #B02123;
}

/*====================================================================
typography — 全ページ共通の見出しパーツ。
company/services/recruit系/contact/topページで同じ役割の見出しが
ページごとに別クラス名・別数値で重複していたため共通化（WP版のみの追加、Astro側にはまだ無い）。
レイアウト都合の例外（max-width・margin・色違いなど）はページ側scssで
このクラスと組み合わせる形の薄い修飾クラスとして残す。
====================================================================*/
.section-eyebrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #B02123;
  margin: 0 0 16px;
}
@media screen and (min-width: 769px) {
  .section-eyebrow {
    font-size: 16px;
  }
}
.section-eyebrow--on-red {
  color: #F5D6D6;
}

.page-heading {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
}

.section-heading {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  margin: 0 0 20px;
}

.cta-heading {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  margin: 0 0 36px;
  color: #FFFFFF;
}

.lead {
  font-size: 15px;
  line-height: 1.9;
  color: #8A8078;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .lead {
    font-size: 18px;
  }
}
.lead--on-dark {
  color: #A8A29B;
}
.lead--on-red {
  color: #F5D6D6;
}

/*====================================================================
topPage — front-page.php とセット。
ヒーロー（.hero__*）と below-the-fold（.top__*）の2ブロック構成。
色は $c-hero-*（背景専用トークン）のみ使用。UI（ボタン等）には使わない。
====================================================================*/
.hero {
  --uix: 0px;
  --uiy: 0px;
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: #6E1229;
  color: #FFFFFF;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.hero__ui {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero__copy {
  position: absolute;
  left: clamp(16px, 4vw, 48px);
  top: 50%;
  transform: translate(var(--uix), calc(-58% + var(--uiy)));
  max-width: min(52vw, 720px);
}
@media screen and (max-width: 768px) {
  .hero__copy {
    top: auto;
    bottom: 44vh;
    transform: translate(var(--uix), var(--uiy));
    max-width: 86vw;
  }
}
.hero__heading {
  font-weight: 800;
  font-size: clamp(38px, 6.4vw, 96px);
  line-height: 1.16;
  letter-spacing: 0.02em;
  margin: 0;
  color: #FFFFFF;
  text-shadow: 0 2px 30px rgba(35, 24, 21, 0.28);
}
.hero__caption {
  position: absolute;
  left: clamp(16px, 4vw, 48px);
  bottom: clamp(96px, 13vh, 150px);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: clamp(14px, 1.35vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  transform: translate(calc(var(--uix) * 0.55), calc(var(--uiy) * 0.55));
}
@media screen and (max-width: 768px) {
  .hero__caption {
    bottom: clamp(88px, 16vh, 140px);
  }
}
.hero__fade {
  opacity: 0;
  transform: translateY(14px);
}
.hero__fade.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s ease 0.15s, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s;
}

@media (prefers-reduced-motion: reduce) {
  .hero__fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.top__section {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
}
@media screen and (min-width: 769px) {
  .top__section {
    padding: clamp(96px, 10vw, 130px) clamp(16px, 4vw, 48px);
  }
}
.top__section--dark {
  background: #131110;
  color: #F5F2EE;
  border-bottom-color: #2A2724;
}
.top__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.top__eyebrow {
  margin: 0 0 8px;
}
.top__heading {
  margin: 0;
}
.top__text-link {
  font-size: 18px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  white-space: nowrap;
}
.top__news {
  display: grid;
  grid-template-columns: minmax(100px, 200px) 1fr;
  gap: 24px 48px;
}
@media screen and (max-width: 768px) {
  .top__news {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.top__news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E4DFDA;
}
.top__news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 12px;
  margin: 0 -12px;
  border-bottom: 1px solid #E4DFDA;
  align-items: baseline;
  transition: background 0.25s;
}
.top__news-item:hover {
  background: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .top__news-item {
    grid-template-columns: 72px 1fr;
    gap: 12px;
  }
}
.top__news-date {
  font-size: 12px;
  color: #8A8078;
}
.top__news-text {
  font-size: 16px;
}
.top__news-empty {
  padding: 22px 12px;
  border-top: 1px solid #E4DFDA;
  border-bottom: 1px solid #E4DFDA;
  font-size: 16px;
  color: #8A8078;
}
.top__services-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}
.top__services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.top__service-card {
  flex: 1 1 240px;
  padding: 44px 32px;
  background: #171514;
  border: 1px solid #2A2724;
  transition: background 0.9s, transform 0.9s, box-shadow 0.9s;
}
.top__service-card:hover {
  background: #231815;
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
.top__service-card-num {
  display: block;
  font-size: 20px;
  color: #B02123;
  margin-bottom: 20px;
}
.top__service-card-bar {
  width: 34px;
  height: 3px;
  background: #B02123;
  margin-bottom: 24px;
}
.top__service-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.top__service-card-title {
  font-size: 21px;
  font-weight: 700;
  margin: 0;
  color: #F5F2EE;
}
.top__service-card-desc {
  font-size: 16px;
  line-height: 1.95;
  color: #A8A29B;
  margin: 0 0 20px;
}
.top__service-card-tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #77716A;
}
.top__service-card-link {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #B02123;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.top__service-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.top__service-icon--accent {
  stroke: #B02123;
}
.top__service-icon--ink {
  stroke: #F5F2EE;
  fill: #F5F2EE;
}
.top__works-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.top__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #E4DFDA;
}
.top__stats-item {
  flex: 1 1 140px;
  min-width: 140px;
  padding: 0 24px;
  border-right: 1px solid #E4DFDA;
}
.top__stats-item:last-child {
  border-right: none;
}
.top__stats-num {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #861D21;
}
.top__stats-label {
  display: block;
  font-size: 12.5px;
  color: #8A8078;
  margin-top: 8px;
}
.top__works-group {
  padding-top: 40px;
}
.top__works-group:first-of-type {
  padding-top: 0;
}
.top__works-group-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #A99C93;
  display: block;
  margin-bottom: 16px;
}
.top__works-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.top__works-note {
  font-size: 11px;
  color: #8A8078;
  margin: 24px 0 0;
}
.top__culture {
  position: relative;
  overflow: hidden;
}
.top__culture .top__inner {
  position: relative;
}
.top__culture-bg-number {
  position: absolute;
  right: 0;
  bottom: -6%;
  font-size: min(34vw, 420px);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #2A2724;
  letter-spacing: -0.02em;
  user-select: none;
}
.top__culture-text {
  margin: 28px 0 40px;
}
.top__recruit-list {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E4DFDA;
}
.top__recruit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 12px;
  margin: 0 -12px;
  border-bottom: 1px solid #E4DFDA;
  gap: 24px;
  flex-wrap: wrap;
  transition: background 0.25s;
}
.top__recruit-item:hover {
  background: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .top__recruit-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.top__recruit-item-main {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top__recruit-type {
  font-size: 11px;
  padding: 4px 10px;
  color: #B02123;
  border-color: #B02123;
}
.top__recruit-title {
  font-size: 19px;
  font-weight: 700;
}
.top__recruit-note {
  font-size: 12.5px;
  color: #8A8078;
}
.top__recruit-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.top__contact {
  padding: clamp(48px, 12vw, 64px) 20px;
  text-align: center;
  background: #B02123;
}
@media screen and (min-width: 769px) {
  .top__contact {
    padding: clamp(96px, 10vw, 130px) clamp(16px, 4vw, 48px);
  }
}
.top__contact-eyebrow {
  margin: 0 0 24px;
}
.top__contact-heading {
  margin: 0 0 20px;
}
.top__contact-text {
  margin: 0 0 40px;
}

/*====================================================================
company ページ固有ブロック
_inc/page/about/page__company.php とセット。
Astro実装 src/assets/scss/pages/_company.scss の移植（クラス名・仕様は変更なし）。
====================================================================*/
.company__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.company__intro {
  padding: clamp(48px, 12vw, 64px) 20px;
}
@media screen and (min-width: 769px) {
  .company__intro {
    padding: clamp(88px, 9vw, 110px) clamp(16px, 4vw, 48px) clamp(64px, 7vw, 90px);
  }
}
.company__lead {
  max-width: 600px;
}
.company__philosophy {
  padding: clamp(48px, 12vw, 64px) 20px;
}
@media screen and (min-width: 769px) {
  .company__philosophy {
    padding: clamp(80px, 9vw, 120px) clamp(16px, 4vw, 48px);
  }
}
.company__philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.company__philosophy-inner .section-eyebrow,
.company__philosophy-inner .section-heading {
  display: flex;
  justify-content: center;
}
.company__philosophy-quote {
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 2;
  font-weight: 600;
  margin: 0 0 32px;
}
.company__philosophy-text {
  max-width: 650px;
  margin: 0 auto;
}
.company__pillars {
  padding: clamp(48px, 12vw, 64px) 20px;
  background: #F4F4F3;
  border-bottom: 1px solid #E4DFDA;
}
@media screen and (min-width: 769px) {
  .company__pillars {
    padding: clamp(80px, 9vw, 120px) clamp(16px, 4vw, 48px);
  }
}
.company__pillars-grid {
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px;
  align-items: stretch;
}
.company__pillar {
  display: flex;
  flex-direction: column;
}
.company__pillar-quote {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 600;
  margin: 0 0 16px;
  min-height: 72px;
}
.company__pillar-text {
  font-size: 14px;
  line-height: 1.9;
  color: #8A8078;
  margin: 0;
}
.company__overview {
  padding: clamp(48px, 12vw, 64px) 20px;
}
@media screen and (min-width: 769px) {
  .company__overview {
    padding: clamp(72px, 8vw, 100px) clamp(16px, 4vw, 48px);
  }
}
.company__overview-inner {
  max-width: 800px;
  margin: 0 auto;
}
.company__overview-table {
  margin: 40px 0 0;
  padding-top: 32px;
}
.company__overview-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .company__overview-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.company__overview-label {
  color: #77716A;
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}
.company__overview-value {
  font-size: 16px;
  line-height: 1.85;
  border-bottom: 1px solid #E4DFDA;
  padding-bottom: 22px;
  margin: 0 0 22px;
}

/*====================================================================
services ページ固有ブロック
_inc/page/page__services.php とセット。
design-ref/Services.dc.html を照合先とし、CLAUDE.md §5・§4 の指示で以下を修正：
  - MODERN STACK タグ削除／sesIndustries復活／「規模の目安」→「期間の目安」
  - id="works" は WORKS 位置へ／暗背景アクセントは $c-brand-dark（$c-hero-*は不使用）
  - opacity多用によるコントラスト不足を実色トークン指定に変更
====================================================================*/
.services__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.services__intro {
  padding: clamp(48px, 12vw, 64px) 20px;
}
@media screen and (min-width: 769px) {
  .services__intro {
    padding: clamp(88px, 9vw, 110px) clamp(16px, 4vw, 48px) clamp(64px, 7vw, 90px);
  }
}
.services__lead {
  max-width: 600px;
}
.services__card {
  background: var(--card-bg);
  color: var(--card-fg);
  border-bottom: 1px solid var(--card-line);
  padding: clamp(48px, 12vw, 64px) 20px;
}
@media screen and (min-width: 769px) {
  .services__card {
    padding: clamp(72px, 8vw, 100px) clamp(16px, 4vw, 48px);
  }
}
.services__card--ses, .services__card--training {
  --card-bg: #FFFFFF;
  --card-fg: #231815;
  --card-muted: #8A8078;
  --card-accent: #B02123;
  --card-line: #E4DFDA;
}
.services__card--transcription {
  --card-bg: #F4F4F3;
  --card-fg: #231815;
  --card-muted: #8A8078;
  --card-accent: #B02123;
  --card-line: #E4DFDA;
}
.services__card--contract {
  --card-bg: #131110;
  --card-fg: #EDEAE6;
  --card-muted: #A8A29B;
  --card-accent: #861D21;
  --card-line: #2A2724;
}
.services__card-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (min-width: 769px) {
  .services__card-inner {
    grid-template-columns: 4fr 6fr;
    gap: 48px;
  }
}
.services__card-num {
  display: block;
  font-size: 14px;
  color: var(--card-accent);
  margin-bottom: 15px;
}
.services__card-bar {
  width: 34px;
  height: 3px;
  background: var(--card-accent);
  margin-bottom: 24px;
}
.services__card-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.services__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.services__icon--accent {
  stroke: var(--card-accent);
}
.services__icon--fg {
  stroke: currentColor;
  fill: currentColor;
}
.services__card-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}
.services__card-tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--card-muted);
}
.services__card-desc {
  font-size: 15.5px;
  line-height: 1.95;
  margin: 0 0 32px;
  color: var(--card-muted);
}
.services__points {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--card-line);
}
.services__point {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--card-line);
}
.services__point-arrow {
  font-size: 20px;
  line-height: 1.2;
  color: var(--card-accent);
}
.services__point-text {
  font-size: 15px;
  line-height: 1.8;
}
.services__sub-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--card-accent);
  margin-bottom: 8px;
}
.services__sub-label--light {
  color: #8A8078;
  letter-spacing: 0.1em;
}
.services__external-link {
  margin-top: 28px;
}
.services__ses-industries {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--card-line);
}
.services__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.services__note {
  margin: 16px 0 0;
  font-size: 11.5px;
  color: #77716A;
}
.services__detail {
  max-width: 1280px;
  margin: 72px auto 0;
}
.services__detail-block {
  margin-bottom: 64px;
}
.services__detail-heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 32px;
}
.services__build-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (min-width: 769px) {
  .services__build-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
  }
}
.services__build-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.services__build-no {
  font-size: 18px;
  color: var(--card-accent);
  padding-top: 3px;
}
.services__build-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.services__build-desc {
  font-size: 18px;
  line-height: 1.75;
  color: var(--card-muted);
  margin: 0;
}
.services__build-note {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--card-muted);
  margin: 32px 0 0;
}
.services__scale-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--card-line);
  border-top: 1px solid var(--card-line);
  border-bottom: 1px solid var(--card-line);
}
.services__scale-row {
  display: grid;
  grid-template-columns: 100px 130px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 6px;
  background: var(--card-bg);
}
@media screen and (max-width: 768px) {
  .services__scale-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 6px;
  }
}
.services__scale-size {
  font-size: 17px;
  font-weight: 700;
}
.services__scale-term {
  justify-self: start;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  background: var(--card-accent);
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.services__scale-example {
  font-size: 16px;
  line-height: 1.7;
  color: var(--card-muted);
}
.services__scale-note {
  font-size: 12px;
  color: var(--card-muted);
  margin: 16px 0 0;
}
.services__split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: #E4DFDA;
  margin-bottom: 1px;
}
.services__split-col {
  padding: 40px 32px;
  background: #FFFFFF;
  color: #231815;
}
.services__stack-group {
  margin-bottom: 28px;
}
.services__stack-group:last-child {
  margin-bottom: 0;
}
.services__stack-label {
  font-size: 12px;
  color: #B02123;
  margin: 0 0 12px;
}
.services__stack-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.services__stack-item {
  font-size: 14.5px;
  color: #231815;
}
.services__works-caption {
  font-size: 11px;
  color: #77716A;
  margin: 0 0 20px;
}
.services__case-list {
  display: flex;
  flex-direction: column;
}
.services__case-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid #E4DFDA;
}
@media screen and (max-width: 768px) {
  .services__case-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.services__case-industry {
  font-size: 11px;
  color: #B02123;
}
.services__case-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: #231815;
}
.services__flow {
  border: 1px solid #E4DFDA;
  padding: 40px 32px;
  background: #FFFFFF;
  color: #231815;
}
.services__flow-head {
  margin-bottom: 32px;
}
.services__flow-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.services__flow-title {
  margin: 0;
}
.services__flow-meta {
  font-size: 12px;
  color: #8A8078;
}
.services__flow-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .services__flow-phases {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.services__flow-phase {
  display: flex;
  flex-direction: column;
}
.services__flow-phase-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid #231815;
}
.services__flow-phase-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #B02123;
  flex-shrink: 0;
}
.services__flow-phase-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.services__flow-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services__flow-step-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #F4F4F3;
}
.services__flow-step-num {
  font-size: 11px;
  color: #B02123;
}
.services__flow-step-title {
  font-size: 15px;
  font-weight: 700;
}
.services__flow-phase-note {
  font-size: 13px;
  line-height: 1.8;
  color: #8A8078;
  margin: 20px 0 0;
}
.services__flow-note {
  font-size: 13px;
  line-height: 1.9;
  color: #8A8078;
  max-width: 760px;
  margin: 32px 0 0;
  padding-top: 20px;
  border-top: 1px solid #E4DFDA;
}
.services__mini-flow {
  max-width: 1280px;
  margin: 56px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--card-line);
}
.services__mini-flow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.services__mini-flow-step {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.services__mini-flow-num {
  font-size: 11px;
  color: var(--card-accent);
}
.services__mini-flow-label {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.services__mini-flow-line {
  width: 1px;
  height: 16px;
  background: var(--card-line);
}

/*====================================================================
recruit（採用トップ） — _inc/page/page__recruit.php とセット。
design-ref/Recruit.dc.html 準拠。STATS（未検証数値）は本人指示で非掲載。
====================================================================*/
.recruit__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.recruit__intro {
  padding: clamp(48px, 12vw, 64px) 20px;
}
@media screen and (min-width: 769px) {
  .recruit__intro {
    padding: clamp(110px, 12vw, 150px) clamp(16px, 4vw, 48px) clamp(80px, 9vw, 110px);
  }
}
.recruit__heading {
  max-width: 900px;
}
.recruit__types {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
}
@media screen and (min-width: 769px) {
  .recruit__types {
    padding: clamp(80px, 9vw, 120px) clamp(16px, 4vw, 48px);
  }
}
.recruit__types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  border: 1px solid #E4DFDA;
}
.recruit__type-card {
  padding: 44px 36px;
  border-right: 1px solid #E4DFDA;
  transition: background 0.25s;
}
.recruit__type-card:last-child {
  border-right: none;
}
.recruit__type-card:hover {
  background: #F5F2EE;
}
@media screen and (max-width: 768px) {
  .recruit__type-card {
    border-right: none;
    border-bottom: 1px solid #E4DFDA;
  }
  .recruit__type-card:last-child {
    border-bottom: none;
  }
}
.recruit__type-eyebrow {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #A99C93;
  display: block;
  margin-bottom: 18px;
}
.recruit__type-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
}
.recruit__type-desc {
  font-size: 14px;
  line-height: 1.9;
  color: #8A8078;
  margin: 0 0 28px;
}
.recruit__type-link {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  background: #231815;
  color: #FFFFFF;
  transition: background 0.25s;
}
.recruit__type-link:hover {
  background: #B02123;
}
.recruit__type-link:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}
.recruit__reasons {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
  background: #F4F4F3;
}
@media screen and (min-width: 769px) {
  .recruit__reasons {
    padding: clamp(72px, 8vw, 100px) clamp(16px, 4vw, 48px);
  }
}
.recruit__reasons-list {
  border-top: 1px solid #E4DFDA;
}
.recruit__reason {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #E4DFDA;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .recruit__reason {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
}
.recruit__reason-num {
  font-size: 32px;
  font-weight: 700;
  color: #E4DFDA;
  line-height: 1;
}
.recruit__reason-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
}
.recruit__reason-desc {
  font-size: 14px;
  line-height: 1.9;
  color: #8A8078;
  max-width: 640px;
  margin: 0;
}
.recruit__candidates {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
}
@media screen and (min-width: 769px) {
  .recruit__candidates {
    padding: clamp(80px, 9vw, 120px) clamp(16px, 4vw, 48px);
  }
}
.recruit__candidates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: #E4DFDA;
  border: 1px solid #E4DFDA;
}
.recruit__candidate {
  padding: 36px 30px;
  background: #FFFFFF;
}
.recruit__candidate-bar {
  width: 28px;
  height: 3px;
  background: #B02123;
  margin-bottom: 20px;
}
.recruit__candidate-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
}
.recruit__candidate-desc {
  font-size: 13px;
  line-height: 1.85;
  color: #8A8078;
  margin: 0;
}

/*====================================================================
recruit-employee（正社員採用） — _inc/page/recruit/page__employee.php とセット。
design-ref/Recruit-Proper.dc.html 準拠。給与レンジ・社員の声は本人指示で非掲載。
====================================================================*/
.recruit-employee__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.recruit-employee__section-lead {
  font-size: 14px;
  line-height: 1.9;
  color: #8A8078;
  margin: 0 0 40px;
}
.recruit-employee__intro {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
}
@media screen and (min-width: 769px) {
  .recruit-employee__intro {
    padding: clamp(110px, 12vw, 150px) clamp(16px, 4vw, 48px) clamp(72px, 8vw, 100px);
  }
}
.recruit-employee__back {
  display: inline-block;
  font-size: 12px;
  color: #77716A;
  margin-bottom: 24px;
}
.recruit-employee__back:hover {
  color: #B02123;
}
.recruit-employee__heading {
  max-width: 820px;
}
.recruit-employee__positions {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
  background: #F4F4F3;
}
@media screen and (min-width: 769px) {
  .recruit-employee__positions {
    padding: clamp(72px, 8vw, 100px) clamp(16px, 4vw, 48px);
  }
}
.recruit-employee__position-group {
  padding: 28px 0;
  border-top: 1px solid #E4DFDA;
}
.recruit-employee__position-group-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.recruit-employee__position-num {
  font-size: 11px;
  color: #B02123;
}
.recruit-employee__position-category {
  font-size: 17px;
  font-weight: 700;
}
.recruit-employee__position-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  padding: 8px 0;
  border-top: 1px solid #E4DFDA;
}
@media screen and (max-width: 768px) {
  .recruit-employee__position-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.recruit-employee__position-name {
  font-size: 14.5px;
  font-weight: 700;
}
.recruit-employee__position-tech {
  font-size: 12.5px;
  color: #8A8078;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .recruit-employee__position-tech {
    text-align: left;
  }
}
.recruit-employee__position-note {
  background: #FFFFFF;
  padding: 28px 30px;
  margin-top: 36px;
}
.recruit-employee__position-note-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
}
.recruit-employee__position-note-text {
  font-size: 13px;
  line-height: 1.9;
  color: #8A8078;
  margin: 0;
}
.recruit-employee__conditions {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
}
@media screen and (min-width: 769px) {
  .recruit-employee__conditions {
    padding: clamp(72px, 8vw, 100px) clamp(16px, 4vw, 48px);
  }
}
.recruit-employee__conditions-table {
  max-width: 900px;
  border-top: 1px solid #E4DFDA;
  padding-top: 28px;
  margin: 0;
}
.recruit-employee__conditions-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .recruit-employee__conditions-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.recruit-employee__conditions-label {
  font-size: 11.5px;
  color: #77716A;
  padding-top: 2px;
  margin: 0;
}
.recruit-employee__conditions-value {
  line-height: 1.85;
  border-bottom: 1px solid #E4DFDA;
  padding-bottom: 20px;
  margin: 0 0 20px;
}
.recruit-employee__benefits {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
  background: #F4F4F3;
}
@media screen and (min-width: 769px) {
  .recruit-employee__benefits {
    padding: clamp(80px, 9vw, 120px) clamp(16px, 4vw, 48px);
  }
}
.recruit-employee__benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #E4DFDA;
  border: 1px solid #E4DFDA;
}
@media screen and (max-width: 768px) {
  .recruit-employee__benefits-grid {
    grid-template-columns: 1fr;
  }
}
.recruit-employee__benefit {
  padding: 28px 26px;
  background: #FFFFFF;
}
.recruit-employee__benefit-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 10px;
}
.recruit-employee__benefit-desc {
  font-size: 13px;
  line-height: 1.8;
  color: #8A8078;
  margin: 0;
}
.recruit-employee__flow {
  padding: clamp(48px, 12vw, 64px) 20px;
}
@media screen and (min-width: 769px) {
  .recruit-employee__flow {
    padding: clamp(80px, 9vw, 120px) clamp(16px, 4vw, 48px);
  }
}
.recruit-employee__flow-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}
.recruit-employee__flow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .recruit-employee__flow-step {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
}
.recruit-employee__flow-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #B02123;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .recruit-employee__flow-num {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}
.recruit-employee__flow-step-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #A99C93;
  margin-bottom: 8px;
}
.recruit-employee__flow-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}
.recruit-employee__flow-desc {
  font-size: 14px;
  line-height: 1.9;
  color: #8A8078;
  max-width: 640px;
  margin: 0;
}

/*====================================================================
recruit-freelance（フリーランス） — _inc/page/recruit/page__free-lance.php とセット。
design-ref/Recruit-Freelance.dc.html 準拠。
案件例（単価レンジ）・稼働エリア実績は本人指示で非掲載。
====================================================================*/
.recruit-freelance__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.recruit-freelance__section-lead {
  font-size: 14px;
  line-height: 1.9;
  color: #8A8078;
  max-width: 640px;
  margin: 0 0 48px;
}
.recruit-freelance__intro {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
}
@media screen and (min-width: 769px) {
  .recruit-freelance__intro {
    padding: clamp(110px, 12vw, 150px) clamp(16px, 4vw, 48px) clamp(72px, 8vw, 100px);
  }
}
.recruit-freelance__back {
  display: inline-block;
  font-size: 12px;
  color: #77716A;
  margin-bottom: 24px;
}
.recruit-freelance__back:hover {
  color: #B02123;
}
.recruit-freelance__heading {
  max-width: 820px;
}
.recruit-freelance__lead {
  max-width: 560px;
}
.recruit-freelance__merits {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
  background: #F4F4F3;
}
@media screen and (min-width: 769px) {
  .recruit-freelance__merits {
    padding: clamp(80px, 9vw, 120px) clamp(16px, 4vw, 48px);
  }
}
.recruit-freelance__merits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;
}
@media screen and (min-width: 769px) {
  .recruit-freelance__merits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 36px;
  }
}
.recruit-freelance__merit {
  border-top: 1px solid #E4DFDA;
  padding-top: 20px;
}
.recruit-freelance__merit-num {
  display: block;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  color: #A99C93;
  margin-bottom: 18px;
}
.recruit-freelance__merit-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.45;
}
.recruit-freelance__merit-desc {
  font-size: 13px;
  line-height: 1.85;
  color: #8A8078;
  margin: 0;
}
.recruit-freelance__terms {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
}
@media screen and (min-width: 769px) {
  .recruit-freelance__terms {
    padding: clamp(72px, 8vw, 100px) clamp(16px, 4vw, 48px);
  }
}
.recruit-freelance__terms-list {
  border-top: 1px solid #231815;
}
.recruit-freelance__term {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid #E4DFDA;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .recruit-freelance__term {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.recruit-freelance__term-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}
.recruit-freelance__term-desc {
  font-size: 13.5px;
  line-height: 1.9;
  color: #8A8078;
  margin: 0;
}
.recruit-freelance__positions {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
  background: #F4F4F3;
}
@media screen and (min-width: 769px) {
  .recruit-freelance__positions {
    padding: clamp(72px, 8vw, 100px) clamp(16px, 4vw, 48px);
  }
}
.recruit-freelance__position-group {
  padding: 26px 0;
  border-top: 1px solid #E4DFDA;
}
.recruit-freelance__position-group-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.recruit-freelance__position-num {
  font-size: 11px;
  color: #B02123;
}
.recruit-freelance__position-category {
  font-size: 17px;
  font-weight: 700;
}
.recruit-freelance__position-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 46px;
  padding: 8px 0;
  border-top: 1px solid #E4DFDA;
  transition: background 0.25s;
}
.recruit-freelance__position-row:hover {
  background: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .recruit-freelance__position-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.recruit-freelance__position-name {
  font-size: 14.5px;
}
.recruit-freelance__position-tech {
  font-size: 12.5px;
  color: #8A8078;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .recruit-freelance__position-tech {
    text-align: left;
  }
}
.recruit-freelance__languages {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #E4DFDA;
}
.recruit-freelance__languages-label {
  font-size: 11.5px;
  color: #77716A;
  margin: 0 0 16px;
}
.recruit-freelance__languages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.recruit-freelance__cases {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
}
@media screen and (min-width: 769px) {
  .recruit-freelance__cases {
    padding: clamp(80px, 9vw, 120px) clamp(16px, 4vw, 48px);
  }
}
.recruit-freelance__cases-carousel {
  position: relative;
}
.recruit-freelance__cases-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -20px;
  padding: 4px 20px 4px;
}
.recruit-freelance__cases-track::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 769px) {
  .recruit-freelance__cases-track {
    margin: 0;
    padding: 4px 0;
  }
}
.recruit-freelance__case-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  padding: 28px 24px;
  background: #FFFFFF;
  border: 1px solid #E4DFDA;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .recruit-freelance__case-card {
    flex: 0 0 300px;
    padding: 36px 32px;
  }
}
.recruit-freelance__case-tag {
  align-self: flex-start;
  font-size: 11px;
  color: #B02123;
  border: 1px solid rgba(176, 33, 35, 0.33);
  border-radius: 2px;
  padding: 4px 10px;
}
.recruit-freelance__case-title {
  font-size: 16px;
  font-weight: 700;
  margin: 18px 0 10px;
}
@media screen and (min-width: 769px) {
  .recruit-freelance__case-title {
    font-size: 18px;
  }
}
.recruit-freelance__case-desc {
  font-size: 13px;
  line-height: 1.85;
  color: #8A8078;
  margin: 0 0 18px;
}
.recruit-freelance__case-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #E4DFDA;
  padding-top: 16px;
}
.recruit-freelance__case-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.recruit-freelance__case-meta-label {
  font-size: 11px;
  color: #8A8078;
  flex-shrink: 0;
}
.recruit-freelance__case-meta-value {
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}
.recruit-freelance__case-meta-value--stack {
  font-size: 12px;
  font-weight: 500;
  color: #8A8078;
}
.recruit-freelance__cases-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
@media screen and (min-width: 769px) {
  .recruit-freelance__cases-nav {
    margin-top: 32px;
  }
}
.recruit-freelance__cases-dots {
  display: flex;
  gap: 10px;
}
.recruit-freelance__cases-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: #A99C93;
  transition: background 0.25s;
}
.recruit-freelance__cases-dot.is-active {
  background: #B02123;
}
.recruit-freelance__cases-dot:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}
.recruit-freelance__cases-arrows {
  display: flex;
  gap: 12px;
}
.recruit-freelance__cases-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid #A99C93;
  background: #FFFFFF;
  cursor: pointer;
  font-size: 16px;
  color: #231815;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, color 0.25s;
}
.recruit-freelance__cases-arrow:hover {
  border-color: #B02123;
  color: #B02123;
}
.recruit-freelance__cases-arrow:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}
.recruit-freelance__flow {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
  background: #F4F4F3;
}
@media screen and (min-width: 769px) {
  .recruit-freelance__flow {
    padding: clamp(80px, 9vw, 120px) clamp(16px, 4vw, 48px);
  }
}
.recruit-freelance__flow-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}
.recruit-freelance__flow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .recruit-freelance__flow-step {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
}
.recruit-freelance__flow-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #B02123;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .recruit-freelance__flow-num {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}
.recruit-freelance__flow-step-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #A99C93;
  margin-bottom: 8px;
}
.recruit-freelance__flow-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}
.recruit-freelance__flow-desc {
  font-size: 14px;
  line-height: 1.9;
  color: #8A8078;
  max-width: 640px;
  margin: 0;
}
.recruit-freelance__faq {
  padding: clamp(48px, 12vw, 64px) 20px;
}
@media screen and (min-width: 769px) {
  .recruit-freelance__faq {
    padding: clamp(80px, 9vw, 120px) clamp(16px, 4vw, 48px);
  }
}
.recruit-freelance__faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.recruit-freelance__faq-list {
  border-top: 1px solid #E4DFDA;
}
.recruit-freelance__faq-item {
  border-bottom: 1px solid #E4DFDA;
}
.recruit-freelance__faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #231815;
}
.recruit-freelance__faq-q:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}
.recruit-freelance__faq-q-text {
  font-size: 15px;
  font-weight: 700;
}
.recruit-freelance__faq-icon {
  font-size: 16px;
  color: #B02123;
  flex-shrink: 0;
}
.recruit-freelance__faq-a {
  padding: 0 0 24px;
}
.recruit-freelance__faq-a-text {
  font-size: 14px;
  line-height: 1.9;
  color: #8A8078;
  margin: 0 0 16px;
}
.recruit-freelance__faq-link {
  display: inline-block;
  font-size: 13px;
  color: #B02123;
}
.recruit-freelance__faq-link:hover {
  text-decoration: underline;
}

/*====================================================================
contact ページ固有ブロック — _inc/page/page__contact.php とセット。
design-ref/Contact.dc.html 準拠。タブ／label-for／focus-visible／
プライバシー同意チェックはCLAUDE.mdのa11y・法令修正方針に基づき実装。
====================================================================*/
.contact__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.contact__intro {
  padding: clamp(48px, 12vw, 64px) 20px;
}
@media screen and (min-width: 769px) {
  .contact__intro {
    padding: clamp(88px, 9vw, 110px) clamp(16px, 4vw, 48px) clamp(64px, 7vw, 90px);
  }
}
.contact__lead {
  max-width: 600px;
}
.contact__form-section {
  padding: clamp(48px, 12vw, 64px) 20px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .contact__form-section {
    padding: clamp(72px, 8vw, 100px) clamp(16px, 4vw, 48px);
  }
}
.contact__form-wrap {
  width: 100%;
  max-width: 560px;
}
.contact__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 1px solid #E4DFDA;
}
.contact__tab {
  flex: 1;
  padding: 16px 8px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #77716A;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-bottom: -1px;
  transition: color 0.25s, border-color 0.25s;
}
.contact__tab[aria-selected=true] {
  color: #B02123;
  border-bottom-color: #B02123;
}
.contact__tab:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}
.contact__form-desc {
  font-size: 13.5px;
  line-height: 1.8;
  color: #8A8078;
  margin: 0 0 32px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact__field {
  display: flex;
  flex-direction: column;
}
.contact__label {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #77716A;
  margin-bottom: 10px;
}
.contact__input, .contact__textarea, .contact__select {
  width: 100%;
  margin: 10px 0;
  padding: 10px 5px 10px;
  border: none;
  border-bottom: 1px solid #231815;
  font-size: 16px;
  font-family: inherit;
  background: transparent;
  color: #231815;
  outline: none;
  transition: border-color 0.25s;
}
.contact__input::placeholder, .contact__textarea::placeholder, .contact__select::placeholder {
  color: #A99C93;
}
.contact__input:focus-visible, .contact__textarea:focus-visible, .contact__select:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}
.contact__textarea {
  resize: vertical;
}
.contact__select-wrap {
  position: relative;
}
.contact__select {
  padding-right: 28px;
  appearance: none;
  cursor: pointer;
}
.contact__select:invalid {
  color: #A99C93;
}
.contact__select-arrow {
  position: absolute;
  right: 2px;
  top: 2px;
  font-size: 11px;
  color: #231815;
  pointer-events: none;
}
.contact__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact__checkbox {
  appearance: auto;
  border: revert;
  background: revert;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #B02123;
}
.contact__checkbox:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}
.contact__consent-label {
  font-size: 13px;
  line-height: 1.7;
  color: #8A8078;
}
.contact__consent-cf7,
.contact .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact__consent-cf7 label,
.contact .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.contact__consent-cf7 input[type=checkbox],
.contact .wpcf7-acceptance input[type=checkbox] {
  appearance: auto;
  border: revert;
  background: revert;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #B02123;
}
.contact__consent-cf7 input[type=checkbox]:focus-visible,
.contact .wpcf7-acceptance input[type=checkbox]:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}
.contact__consent-cf7 .wpcf7-list-item-label,
.contact .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 13px;
  line-height: 1.7;
  color: #8A8078;
}
.contact__consent-link {
  color: #231815;
  text-decoration: underline;
}
.contact__consent-link:hover {
  color: #B02123;
}
.contact__submit {
  margin-top: 8px;
  padding: 17px;
  background: #231815;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14.5px;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
}
.contact__submit:hover {
  background: #B02123;
}
.contact__submit:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}

/* 追加: CF7同意チェックボックスの表示補正
   ページ側に .contact ラッパーが無いため、bodyクラスを使ってCF7標準クラスにも適用する。 */
.is_page__contact .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.is_page__contact .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.is_page__contact .wpcf7-acceptance input[type=checkbox] {
  appearance: auto;
  border: revert;
  background: revert;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #B02123;
}
.is_page__contact .wpcf7-acceptance input[type=checkbox]:focus-visible {
  outline: 2px solid #B02123;
  outline-offset: 2px;
}
.is_page__contact .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 13px;
  line-height: 1.7;
  color: #8A8078;
}

/*====================================================================
privacy（プライバシーポリシー） — _inc/page/page__privacy.php とセット。
条文形式の長文ページ。他ページ同様、共通クラス（page-heading/lead/section-eyebrow）
と自ページBEMブロックの組み合わせで実装。
====================================================================*/
.privacy__inner {
  max-width: 800px;
  margin: 0 auto;
}
.privacy__intro {
  padding: clamp(48px, 12vw, 64px) 20px;
  border-bottom: 1px solid #E4DFDA;
}
@media screen and (min-width: 769px) {
  .privacy__intro {
    padding: clamp(110px, 12vw, 150px) clamp(16px, 4vw, 48px) clamp(64px, 7vw, 90px);
  }
}
.privacy__lead {
  max-width: 640px;
}
.privacy__body {
  padding: clamp(48px, 12vw, 64px) 20px;
}
@media screen and (min-width: 769px) {
  .privacy__body {
    padding: clamp(72px, 8vw, 100px) clamp(16px, 4vw, 48px);
  }
}
.privacy__article {
  padding: 32px 0;
  border-top: 1px solid #E4DFDA;
}
.privacy__article:last-of-type {
  border-bottom: 1px solid #E4DFDA;
}
.privacy__article-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 16px;
}
.privacy__article-text {
  font-size: 14.5px;
  line-height: 1.95;
  color: #8A8078;
  margin: 0;
}

/*# sourceMappingURL=style.css.map */
