@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #0e0000;
  background-color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
body.is-drawer-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

img,
iframe {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  filter: grayscale(1);
}

ul {
  list-style: none;
}

.text-center {
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.is-pc {
  display: flex;
}
@media (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none;
}
@media (max-width: 768px) {
  .is-sp {
    display: block !important;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(5px);
  z-index: 100;
  border-bottom: 1px solid rgba(14, 0, 0, 0.2);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 0 20px;
  }
}
.header__logo {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.header__logo a {
  display: block;
}
.header__nav {
  align-items: center;
  gap: 30px;
}
.header__list {
  display: flex;
  gap: 24px;
}
.header__link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #0e0000;
  transition: 0.3s;
}
.header__link:hover::after {
  width: 100%;
}
.header__link.is-active::after {
  width: 100%;
}
.header__link.is-active, .header__link:hover {
  opacity: 1;
}
.header__link-jp {
  font-size: 0.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 99;
  transform: translateY(-100%);
  transition: 0.4s;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.drawer--active {
  transform: translateY(96px);
}
.drawer__nav {
  text-align: center;
}
.drawer__list {
  margin-bottom: 40px;
}
.drawer__item {
  margin-bottom: 24px;
}
.drawer__link {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.4rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.drawer__link-jp {
  font-size: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(14, 0, 0, 0.7);
}

.footer {
  background-color: #0e0000;
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 40px;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    margin-bottom: 40px;
  }
}
.footer__info {
  letter-spacing: 0.05em;
  line-height: 1.6;
  flex-shrink: 0;
}
.footer__logo {
  font-family: "Lora", serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media (max-width: 768px) {
  .footer__logo {
    font-size: 1.5rem;
  }
}
.footer__logo:hover {
  opacity: 1;
}
.footer__address {
  margin-top: 5px;
}
.footer__sns {
  margin-top: 20px;
}
.footer__sns a {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s, transform 0.3s;
}
.footer__sns a:hover {
  color: #ffffff;
  transform: translateY(-2px);
  opacity: 1;
}
.footer__sitemap {
  display: flex;
  gap: 50px;
}
@media (max-width: 768px) {
  .footer__sitemap {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__sitemap-col ul {
  list-style: none;
}
.footer__sitemap-col ul li {
  margin-top: 10px;
}
.footer__sitemap-col ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}
.footer__sitemap-col ul a:hover {
  color: #ffffff;
  opacity: 1;
}
.footer__sitemap-heading {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 0;
}
.footer__copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  margin: 0;
}
.footer__legal {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
}
.footer__legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 640px) {
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(14, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: bottom 0.3s, opacity 0.3s, visibility 0.3s;
}
.page-top::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: translateY(2px) rotate(-45deg);
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .page-top {
    bottom: 90px;
  }
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 101;
}
.hamburger__line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #0e0000;
  transition: 0.4s;
  left: 0;
}
.hamburger__line:nth-of-type(1) {
  top: 35%;
}
.hamburger__line:nth-of-type(2) {
  bottom: 35%;
}
.hamburger--active .hamburger__line:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger--active .hamburger__line:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.btn {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 0;
  font-weight: 500;
  transition: opacity 0.3s;
  min-width: 200px;
  text-align: center;
  letter-spacing: 0.05em;
}
.btn:hover {
  opacity: 0.7;
}
.btn--primary {
  background-color: #0e0000;
  color: #ffffff;
}
.btn--white {
  background-color: #ffffff;
  color: #0e0000;
}
.btn--outline-dark {
  border: 1px solid #0e0000;
  color: #0e0000;
  background-color: transparent;
  box-shadow: none;
}
.btn i {
  margin-right: 6px;
}
.btn--outline {
  border: 1px solid #ffffff;
  color: #ffffff;
  margin-left: 16px;
}
@media (max-width: 768px) {
  .btn--outline {
    margin-left: 0;
    margin-top: 16px;
  }
}

.btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-area {
  text-align: center;
  margin-top: 30px;
}
.cta-area--center {
  display: flex;
  justify-content: center;
}

.cta-box-dark {
  background-color: #0e0000;
  color: #ffffff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}
.cta-box-dark p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.header__btn,
.drawer__btn {
  background-color: #0e0000;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 700;
  transition: opacity 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header__btn:hover,
.drawer__btn:hover {
  opacity: 0.7;
}
.header__btn .fa-line,
.drawer__btn .fa-line {
  font-size: 1.4em;
}

.drawer__btn {
  margin: 20px auto 0;
  padding: 15px 30px;
  font-size: 1.1rem;
}

.news-list {
  list-style: none;
  margin: 0 auto;
  max-width: 800px;
}
.news-list__item {
  border-bottom: 1px solid #dddddd;
}
.news-list__item:first-child {
  border-top: 1px solid #dddddd;
}
.news-list__item a {
  display: flex;
  align-items: center;
  padding: 20px 10px;
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  .news-list__item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.news-list__item a:hover {
  background-color: #f5f5f5;
  opacity: 1;
}
.news-list__date {
  font-size: 0.9rem;
  color: #666666;
  margin-right: 20px;
  min-width: 90px;
}
.news-list__category {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 4px;
  color: #ffffff;
  margin-right: 20px;
  min-width: 80px;
  text-align: center;
}
.news-list__category--info {
  background-color: #333333;
}
.news-list__category--recruit {
  background-color: #555555;
}
.news-list__category--salon {
  background-color: #777777;
}
.news-list__title {
  flex: 1;
  font-weight: 500;
}

.hero {
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero {
    height: calc(var(--vh, 1vh) * 70);
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: grayscale(1);
}
.hero__info {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding-top: 10px;
  letter-spacing: 0.1em;
}
.hero__catchcopy {
  font-family: "Shippori Mincho B1", serif;
  font-size: 3rem;
  line-height: 1.5;
  margin-bottom: 40px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero__catchcopy {
    font-size: 1.8rem;
  }
}
.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 50px;
  cursor: pointer;
}
.hero__scroll span {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.hero__scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 16px;
  height: 16px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateX(-50%) rotate(45deg);
  animation: bounce 2.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0) rotate(45deg);
  }
  40% {
    transform: translateX(-50%) translateY(-15px) rotate(45deg);
  }
  60% {
    transform: translateX(-50%) translateY(-8px) rotate(45deg);
  }
}
.section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}
.section__head {
  text-align: center;
  margin-bottom: 60px;
}
.section__en {
  display: block;
  font-family: "Lora", serif;
  font-size: 2.5rem;
  color: rgba(14, 0, 0, 0.1);
  line-height: 1;
  margin-bottom: -10px;
  font-weight: 500;
}
.section__jp {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  color: #0e0000;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section__jp {
    font-size: 1.5rem;
  }
}
.section__body {
  max-width: 600px;
  margin: 0 auto;
}
.section__body p {
  margin-bottom: 30px;
}
.section__lead {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.section--news {
  background-color: #f5f5f5;
}
.section--profile {
  background-color: #ffffff;
}
.section--company {
  background-color: #f5f5f5;
}
.section--short-padding {
  padding-bottom: 0;
}

/* JSが有効な場合のみアニメーション */
.js-enabled .section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.section--cta {
  background-color: #f5f5f5;
}

.service-section--gray {
  background-color: #f5f5f5;
}
.service-section .service-item {
  margin-bottom: 0;
}
.service-section--bg {
  position: relative;
  overflow: hidden;
}
.service-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  z-index: 0;
}
.service-section__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.88);
}
.service-section--bg > .container {
  position: relative;
  z-index: 1;
}

.service-synergy__img {
  text-align: center;
  margin-bottom: 40px;
}
.service-synergy__img img {
  max-width: 800px;
  width: 100%;
  height: auto;
  border: 1px solid #dddddd;
}

.service-item {
  margin-bottom: 80px;
}
.service-item:last-child {
  margin-bottom: 0;
}
.service-item__head {
  text-align: center;
  margin-bottom: 30px;
}
.service-item__number {
  font-family: "Shippori Mincho B1", serif;
  color: rgba(14, 0, 0, 0.5);
}
.service-item__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 8px;
}
.service-item__subtitle {
  font-size: 0.9rem;
  color: rgba(14, 0, 0, 0.6);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.service-item__body {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.service-item__desc {
  line-height: 2;
  margin-bottom: 30px;
}
.service-item__link {
  margin-top: 10px;
}

.parallax-image {
  width: 100%;
  height: 450px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(1);
}
@media (max-width: 768px) {
  .parallax-image {
    height: 250px;
    background-attachment: scroll;
  }
}

.profile-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .profile-box {
    flex-direction: column;
    gap: 30px;
  }
}
.profile-box__img {
  flex: 0 0 400px;
}
@media (max-width: 768px) {
  .profile-box__img {
    flex: auto;
    width: 100%;
    max-width: 400px;
  }
}
.profile-box__img img {
  width: 100%;
  height: auto;
}
.profile-box__txt {
  flex: 1;
}
.profile-box__role {
  font-family: "Lora", serif;
  font-size: 0.85rem;
  color: rgba(14, 0, 0, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.profile-box__name {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.8rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dddddd;
}
.profile-box__desc {
  line-height: 2;
}

.guest-card {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .guest-card {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.guest-card__text {
  flex: 1;
}
.guest-card__text h3 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .guest-card__text h3 {
    font-size: 1.4rem;
  }
}
.guest-card__text p {
  margin-bottom: 30px;
}
.guest-card__features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .guest-card__features {
    flex-direction: column;
  }
}
.guest-card__feature {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.guest-card__feature img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.guest-card__feature h4 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 16px 20px 0;
}
.guest-card__feature p {
  padding: 10px 20px 20px;
  margin-bottom: 0;
  flex-grow: 1;
  font-size: 0.9rem;
  line-height: 1.8;
}
.guest-card__img {
  flex: 1;
}
.guest-card__img img {
  border: 1px solid #dddddd;
}

.stylist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 60px;
}
@media (max-width: 768px) {
  .stylist-grid {
    grid-template-columns: 1fr;
  }
}
.stylist-grid--three {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .stylist-grid--three {
    grid-template-columns: 1fr;
  }
}

.stylist-item {
  background: #ffffff;
  padding: 40px;
  text-align: center;
  border: 1px solid #dddddd;
}
.stylist-item__icon {
  font-family: "Shippori Mincho B1", serif;
  font-size: 3rem;
  color: rgba(14, 0, 0, 0.5);
  margin-bottom: 10px;
  line-height: 1;
}
.stylist-item h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.stylist-item ul {
  text-align: left;
  display: inline-block;
}
.stylist-item ul li {
  margin-bottom: 8px;
  padding-left: 1.2em;
  position: relative;
}
.stylist-item ul li::before {
  content: "•";
  color: #0e0000;
  position: absolute;
  left: 0;
}

.access-info dl dt {
  font-family: "Shippori Mincho B1", serif;
  color: #0e0000;
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 5px;
}
.access-info dl dd {
  font-size: 1rem;
  margin-bottom: 10px;
}
.access-info__highlight {
  font-weight: bold;
  border-bottom: 2px solid #0e0000;
  display: inline-block;
}
.access-info .access-link {
  margin-top: 40px;
}
.access-info .access-link a {
  border-bottom: 1px solid #0e0000;
  padding-bottom: 4px;
}

.access-map {
  margin-top: 60px;
}
.access-map iframe {
  width: 100%;
  vertical-align: bottom;
}

.menu-list {
  max-width: 700px;
  margin: 0 auto;
}
.menu-list__item {
  border-bottom: 1px solid #dddddd;
}
.menu-list__item:first-child {
  border-top: 1px solid #dddddd;
}
.menu-list__content {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .menu-list__content {
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
  }
}
.menu-list__name {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-list__desc {
  font-size: 0.9rem;
  color: rgba(14, 0, 0, 0.6);
  line-height: 1.6;
}
.menu-list__note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(14, 0, 0, 0.5);
  margin-top: 30px;
}

.career-plan {
  max-width: 700px;
  margin: 40px auto 0;
  position: relative;
}
.career-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 1px;
  height: 100%;
  background-color: #dddddd;
}
@media (max-width: 768px) {
  .career-plan::before {
    left: 16px;
  }
}
.career-plan__step {
  position: relative;
  padding-left: 64px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .career-plan__step {
    padding-left: 48px;
    padding-bottom: 30px;
  }
}
.career-plan__step:last-child {
  padding-bottom: 0;
}
.career-plan__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #0e0000;
  color: #ffffff;
  font-family: "Lora", serif;
  font-size: 0.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  z-index: 1;
}
@media (max-width: 768px) {
  .career-plan__label {
    width: 32px;
    height: 32px;
    font-size: 0.5rem;
  }
}
.career-plan__step--goal .career-plan__label {
  background-color: #ffffff;
  color: #0e0000;
  border: 2px solid #0e0000;
}
.career-plan__step--alt .career-plan__label {
  background-color: rgba(14, 0, 0, 0.1);
  color: #0e0000;
  border: 1px solid #dddddd;
}
.career-plan__content {
  border: 1px solid #dddddd;
  padding: 24px 28px;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .career-plan__content {
    padding: 20px;
  }
}
.career-plan__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.career-plan__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(14, 0, 0, 0.7);
  margin-bottom: 14px;
}
.career-plan__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.career-plan__tags li {
  font-size: 0.75rem;
  padding: 4px 12px;
  border: 1px solid #dddddd;
  color: rgba(14, 0, 0, 0.6);
  letter-spacing: 0.03em;
}
.career-plan__closing {
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 60px;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-list__item {
  border-bottom: 1px solid #dddddd;
  padding: 24px 0;
}
.faq-list__item:first-child {
  border-top: 1px solid #dddddd;
}
.faq-list__q {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  padding-left: 1.6em;
  position: relative;
}
.faq-list__q::before {
  content: "Q.";
  position: absolute;
  left: 0;
  color: #0e0000;
  font-weight: 700;
}
.faq-list__a {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(14, 0, 0, 0.7);
  padding-left: 1.6em;
  position: relative;
}
.faq-list__a::before {
  content: "A.";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: rgba(14, 0, 0, 0.4);
}

.target-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .target-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.target-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  border: 1px solid #dddddd;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .target-list__item {
    padding: 20px 12px;
  }
}
.target-list__icon {
  font-size: 1.6rem;
  color: rgba(14, 0, 0, 0.5);
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .target-list__icon {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.target-list__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #0e0000;
}
@media (max-width: 768px) {
  .target-list__text {
    font-size: 0.8rem;
  }
}

/* =================================================
   Recruit Page
   ================================================= */
.value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .value-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.value-list__item {
  border: 1px solid #dddddd;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .value-list__item {
    padding: 0;
  }
}
.value-list__img {
  overflow: hidden;
}
.value-list__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .value-list__img img {
    height: 160px;
  }
}
.value-list__number {
  display: block;
  font-family: "Lora", serif;
  font-size: 2.5rem;
  color: rgba(14, 0, 0, 0.08);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  padding: 24px 28px 0;
}
@media (max-width: 768px) {
  .value-list__number {
    padding: 20px 20px 0;
  }
}
.value-list__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
  padding: 0 28px;
}
@media (max-width: 768px) {
  .value-list__title {
    padding: 0 20px;
  }
}
.value-list__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(14, 0, 0, 0.7);
  padding: 0 28px 28px;
}
@media (max-width: 768px) {
  .value-list__desc {
    padding: 0 20px 24px;
  }
}

.oneday {
  max-width: 600px;
  margin: 0 auto;
}
.oneday__item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
@media (max-width: 768px) {
  .oneday__item {
    gap: 16px;
    padding-bottom: 24px;
  }
}
.oneday__item:last-child {
  padding-bottom: 0;
}
.oneday__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 39px;
  width: 1px;
  height: calc(100% - 32px);
  background-color: #dddddd;
}
@media (max-width: 768px) {
  .oneday__item:not(:last-child)::after {
    left: 31px;
  }
}
.oneday__time {
  flex-shrink: 0;
  width: 80px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0e0000;
  color: #ffffff;
  font-family: "Lora", serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .oneday__time {
    width: 64px;
    font-size: 0.8rem;
  }
}
.oneday__body {
  flex: 1;
  padding-top: 4px;
}
.oneday__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.oneday__desc {
  font-size: 0.85rem;
  color: rgba(14, 0, 0, 0.6);
  line-height: 1.6;
}

.data-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 50px;
}
@media (max-width: 768px) {
  .data-stats {
    gap: 12px;
  }
}
.data-stats__item {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid #dddddd;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .data-stats__item {
    padding: 20px 10px;
  }
}
.data-stats__label {
  font-size: 0.8rem;
  color: rgba(14, 0, 0, 0.5);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.data-stats__value {
  font-family: "Lora", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: #0e0000;
}
@media (max-width: 768px) {
  .data-stats__value {
    font-size: 1.6rem;
  }
}
.data-stats__unit {
  font-size: 0.75rem;
  font-weight: 400;
  margin-left: 2px;
}

.data-benefits {
  max-width: 700px;
  margin: 0 auto;
}
.data-benefits__heading {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dddddd;
}
.data-benefits__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  list-style: none;
}
@media (max-width: 768px) {
  .data-benefits__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.data-benefits__list li {
  font-size: 0.9rem;
  padding-left: 1.6em;
  position: relative;
  line-height: 1.6;
}
.data-benefits__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: rgba(14, 0, 0, 0.35);
  font-size: 0.85rem;
}

.voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .voice-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.voice-list__item {
  border: 1px solid #dddddd;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.voice-list__img {
  overflow: hidden;
}
.voice-list__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.voice-list__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  padding: 3px 10px;
  border: 1px solid #dddddd;
  color: rgba(14, 0, 0, 0.5);
  margin: 24px 24px 16px;
  letter-spacing: 0.03em;
}
.voice-list__quote {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(14, 0, 0, 0.7);
  margin-bottom: 20px;
  padding: 0 24px;
  flex-grow: 1;
}
.voice-list__name {
  font-size: 0.8rem;
  color: rgba(14, 0, 0, 0.45);
  border-top: 1px solid #dddddd;
  padding: 14px 24px 24px;
  margin: 0 24px;
}

.store-info {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.store-info__photo {
  margin-bottom: 30px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.store-info__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #dddddd;
}
.store-info__name {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.store-info__sub {
  font-size: 0.85rem;
  color: rgba(14, 0, 0, 0.5);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.store-info__address {
  font-size: 0.9rem;
  color: rgba(14, 0, 0, 0.6);
  margin-bottom: 30px;
}
.store-info__links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .store-info__links {
    flex-direction: column;
    gap: 12px;
  }
}
.store-info__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid #0e0000;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: background-color 0.3s, color 0.3s;
}
.store-info__link i {
  font-size: 1.2rem;
}
.store-info__link:hover {
  background-color: #0e0000;
  color: #ffffff;
  opacity: 1;
}

/* =================================================
   Section Links (3-column full-width)
   ================================================= */
.section-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
@media (max-width: 768px) {
  .section-links {
    grid-template-columns: 1fr;
  }
}
.section-links__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}
.section-links__item:hover {
  opacity: 1;
}
.section-links__item:hover .section-links__bg {
  transform: scale(1.05);
}
.section-links__item:hover .section-links__arrow {
  transform: translateX(6px);
}
@media (max-width: 768px) {
  .section-links__item {
    min-height: 280px;
  }
}
.section-links__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  transition: transform 0.6s ease;
  z-index: 0;
}
.section-links__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 0, 0, 0.55);
}
.section-links__content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}
.section-links__en {
  display: block;
  font-family: "Lora", serif;
  font-size: 2rem;
  font-weight: 500;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: -4px;
}
.section-links__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section-links__desc {
  font-size: 0.85rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 20px;
}
.section-links__arrow {
  display: inline-block;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* =================================================
   Food Page (service-food)
   ================================================= */
.food-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .food-menu {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.food-menu__item {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.food-menu__img {
  overflow: hidden;
}
.food-menu__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
@media (max-width: 768px) {
  .food-menu__img img {
    height: 180px;
  }
}
.food-menu__item:hover .food-menu__img img {
  transform: scale(1.05);
}
.food-menu__body {
  padding: 20px;
  flex-grow: 1;
}
.food-menu__name {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.food-menu__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(14, 0, 0, 0.7);
}

.food-gallery__lead {
  text-align: center;
  margin-bottom: 40px;
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(14, 0, 0, 0.7);
}

.food-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .food-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.food-gallery__item {
  overflow: hidden;
}
.food-gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
@media (max-width: 768px) {
  .food-gallery__item img {
    height: 160px;
  }
}
.food-gallery__item:hover img {
  transform: scale(1.05);
}
.food-gallery__caption {
  margin-top: 8px;
  font-size: 0.8rem;
  color: rgba(14, 0, 0, 0.5);
  text-align: center;
  letter-spacing: 0.03em;
}

.food-supervision {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}
.food-supervision__card {
  display: flex;
  gap: 24px;
  padding: 40px;
  background-color: #f5f5f5;
  border: 1px solid #dddddd;
}
@media (max-width: 768px) {
  .food-supervision__card {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
}
.food-supervision__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0e0000;
  color: #ffffff;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .food-supervision__icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}
.food-supervision__content {
  flex: 1;
}
.food-supervision__name {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.food-supervision__comment {
  font-size: 0.9rem;
  line-height: 2;
  color: rgba(14, 0, 0, 0.7);
}

/* =================================================
   Synergy Page (service-synergy)
   ================================================= */
.synergy-diagram {
  max-width: 700px;
  margin: 0 auto;
}
.synergy-diagram__row {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .synergy-diagram__row {
    flex-direction: column;
    gap: 12px;
  }
}
.synergy-diagram__card {
  flex: 1;
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #dddddd;
  background-color: #ffffff;
}
.synergy-diagram__card h4 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.synergy-diagram__card p {
  font-size: 0.8rem;
  color: rgba(14, 0, 0, 0.6);
  line-height: 1.6;
}
.synergy-diagram__icon {
  font-size: 1.8rem;
  color: rgba(14, 0, 0, 0.4);
  margin-bottom: 12px;
}
.synergy-diagram__connector {
  flex-shrink: 0;
  color: rgba(14, 0, 0, 0.2);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .synergy-diagram__connector {
    transform: rotate(90deg);
  }
}
.synergy-diagram__vertical {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 0;
}
@media (max-width: 768px) {
  .synergy-diagram__vertical {
    flex-direction: column;
    padding: 8px 0;
  }
}
.synergy-diagram__vline {
  color: rgba(14, 0, 0, 0.2);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .synergy-diagram__vline {
    display: none;
  }
}
.synergy-diagram__center-label {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.85rem;
  color: rgba(14, 0, 0, 0.4);
  letter-spacing: 0.1em;
}

.synergy-details {
  max-width: 800px;
  margin: 0 auto;
}
.synergy-details__item {
  border-bottom: 1px solid #dddddd;
  padding: 40px 0;
}
.synergy-details__item:first-child {
  border-top: 1px solid #dddddd;
}
.synergy-details__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.synergy-details__number {
  font-family: "Lora", serif;
  font-size: 1.8rem;
  color: rgba(14, 0, 0, 0.15);
  font-weight: 700;
  line-height: 1;
}
.synergy-details__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.2rem;
  font-weight: 500;
}
.synergy-details__tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  border: 1px solid #dddddd;
  color: rgba(14, 0, 0, 0.6);
  letter-spacing: 0.03em;
}
.synergy-details__body p {
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(14, 0, 0, 0.7);
}

.synergy-links {
  max-width: 700px;
  margin: 0 auto;
}
.synergy-links__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid #dddddd;
  transition: background-color 0.3s;
}
.synergy-links__item:first-child {
  border-top: 1px solid #dddddd;
}
.synergy-links__item:hover {
  background-color: #f5f5f5;
  opacity: 1;
}
@media (max-width: 768px) {
  .synergy-links__item {
    padding: 20px 16px;
    gap: 16px;
  }
}
.synergy-links__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0e0000;
  color: #ffffff;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .synergy-links__icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
.synergy-links__body {
  flex: 1;
}
.synergy-links__body h4 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.synergy-links__body p {
  font-size: 0.85rem;
  color: rgba(14, 0, 0, 0.6);
}
.synergy-links__arrow {
  flex-shrink: 0;
  color: rgba(14, 0, 0, 0.3);
  transition: transform 0.3s;
}
.synergy-links__item:hover .synergy-links__arrow {
  transform: translateX(4px);
}

/* =================================================
   Subpage Hero
   ================================================= */
.sub-hero {
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  position: relative;
  filter: grayscale(1);
}
.sub-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 0, 0, 0.4);
}
.sub-hero__content {
  position: relative;
  z-index: 1;
}
.sub-hero__title {
  font-family: "Lora", serif;
  font-size: 2.5rem;
  font-weight: 500;
}
.sub-hero__subtitle {
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .sub-hero {
    height: 250px;
  }
  .sub-hero__title {
    font-size: 2rem;
  }
}

/* =================================================
   Breadcrumb
   ================================================= */
.breadcrumb {
  background-color: #fafafa;
  padding: 15px 0;
  font-size: 0.8rem;
  color: #666666;
}
.breadcrumb a {
  color: #0e0000;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  margin: 0 8px;
}

/* =================================================
   Policy Page
   ================================================= */
.policy-container {
  max-width: 800px;
}
.policy-container__lead {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dddddd;
}
.policy-container__article {
  margin-bottom: 0;
  padding: 30px 0;
  border-bottom: 1px solid #dddddd;
}
.policy-container__article:last-of-type {
  border-bottom: none;
}
.policy-container__article p {
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 2;
  color: rgba(14, 0, 0, 0.7);
}
.policy-container__article p:last-child {
  margin-bottom: 0;
}
.policy-container__article ol {
  padding-left: 2em;
  margin-top: 8px;
}
.policy-container__article ol li {
  font-size: 0.9rem;
  line-height: 2;
  color: rgba(14, 0, 0, 0.7);
  margin-bottom: 4px;
  padding-left: 4px;
}
.policy-container__heading {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: #0e0000;
}
.policy-container__date {
  text-align: right;
  font-size: 0.85rem;
  color: rgba(14, 0, 0, 0.45);
  margin-top: 40px;
  letter-spacing: 0.03em;
}
.policy-container .company-info {
  margin-top: 20px;
}

/* =================================================
   Contact Form
   ================================================= */
.form-container {
  max-width: 700px;
}

.text-small {
  font-size: 0.85rem;
  color: #666666;
}

.contact-form {
  margin-top: 40px;
}

.form-group {
  margin-bottom: 30px;
}
.form-group--center {
  text-align: center;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.form-required {
  background-color: #0e0000;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}
.form-control:focus {
  outline: none;
  border-color: #0e0000;
  box-shadow: 0 0 5px rgba(14, 0, 0, 0.5);
}

.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(14, 0, 0, 0.4);
  border-bottom: 2px solid rgba(14, 0, 0, 0.4);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.form-select-wrap select.form-control {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
  color: #0e0000;
}
.form-select-wrap select.form-control:invalid {
  color: rgba(14, 0, 0, 0.4);
}

.form-privacy-check {
  display: inline-flex;
  align-items: center;
}
.form-privacy-check input[type=checkbox] {
  margin-right: 10px;
  width: 16px;
  height: 16px;
}
.form-privacy-check a {
  text-decoration: underline;
}

/* =================================================
   Article (News Single)
   ================================================= */
.article-container {
  max-width: 800px;
}

.article-header {
  text-align: center;
  margin-bottom: 40px;
}

.article-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.article-body {
  line-height: 2;
}
.article-body h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 4px solid #0e0000;
  padding-left: 15px;
}

/* =================================================
   Company Page
   ================================================= */
.company-info {
  max-width: 700px;
  margin: 0 auto;
}
.company-info dl {
  display: flex;
  flex-direction: column;
}
.company-info__row {
  display: flex;
  border-bottom: 1px solid #dddddd;
  padding: 20px 0;
}
.company-info__row:first-child {
  border-top: 1px solid #dddddd;
}
@media (max-width: 768px) {
  .company-info__row {
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
  }
}
.company-info dt {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.95rem;
  font-weight: 500;
  min-width: 140px;
  flex-shrink: 0;
  color: #0e0000;
}
.company-info dd {
  font-size: 0.95rem;
  color: rgba(14, 0, 0, 0.7);
  line-height: 1.8;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 2px;
  height: calc(100% - 20px);
  background-color: #dddddd;
}
.timeline__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}
.timeline__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -35px;
  width: 12px;
  height: 12px;
  background-color: #0e0000;
  border-radius: 50%;
}
.timeline__year {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 30px;
  min-width: 60px;
}
.timeline__content {
  padding-top: 4px;
}

.article-footer {
  margin-top: 60px;
  text-align: center;
}

/* =================================================
   Pagination
   ================================================= */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}
.pagination__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #dddddd;
  background: #ffffff;
  font-family: "Lora", serif;
  font-size: 0.95rem;
  color: #0e0000;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.pagination__btn:hover {
  background-color: #0e0000;
  color: #ffffff;
}
.pagination__btn.is-active {
  background-color: #0e0000;
  color: #ffffff;
  pointer-events: none;
}
.pagination__btn.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ============================
   Contact Channels (Public版追加)
   ============================ */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.contact-channels__item {
  padding: 40px 28px;
  background: #f8f6f3;
  border: 1px solid #e8e3dc;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-channels__icon {
  font-size: 32px;
  color: #0e0000;
  margin-bottom: 16px;
}
.contact-channels__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 18px;
  margin-bottom: 16px;
  color: #0e0000;
  letter-spacing: 0.04em;
}
.contact-channels__desc {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
  flex-grow: 1;
}
.contact-channels__item .btn {
  margin-top: auto;
}

/* ============================
   Salon No.0 専用ロゴ画像表示
   ============================ */
.header__logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__logo a img {
  display: block;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: opacity 0.25s ease;
}
.header__logo a:hover img {
  opacity: 0.75;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer__logo img {
  display: block;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: opacity 0.25s ease;
}
.footer__logo:hover img {
  opacity: 0.75;
}

/* ロゴ画像時のテキストはアクセシビリティ目的でscreen reader専用 */
.header__logo a span,
.footer__logo span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================
   ユルムブランドロゴ表示
   ============================ */
.service-item__brand-logo {
  margin-top: 16px;
  text-align: center;
}
.service-item__brand-logo img {
  display: inline-block;
  width: auto;
  max-width: 220px;
  height: auto;
}
.service-item__brand-logo span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.store-info__logo {
  margin: 16px auto 12px;
  text-align: center;
}
.store-info__logo img {
  display: inline-block;
  width: auto;
  max-width: 240px;
  height: auto;
}

.footer__sitemap-item--logo {
  margin-bottom: 12px;
}
.footer__sitemap-item--logo a {
  display: inline-block;
  padding: 4px 0;
  transition: opacity 0.25s ease;
}
.footer__sitemap-item--logo a:hover {
  opacity: 0.75;
}
.footer__sitemap-item--logo img {
  display: block;
  width: auto;
  max-width: 160px;
  height: auto;
}
.footer__sitemap-item--logo span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================
   事業特長シンプルリスト（B案）
   ============================ */
.feature-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.feature-points li {
  padding: 36px 28px 32px;
  background: #ffffff;
  border: 1px solid #e8e3dc;
  text-align: center;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-points__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f3ede4;
  color: var(--color-accent-deep, #a87553);
  font-size: 1.4rem;
  margin: 0 auto 20px;
}
.feature-points li h4 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: #0e0000;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}
.feature-points li p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: #444;
}

/* 店舗誘導の注記 */
.store-info__note {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
}

/* ============================================
   ✨ Design Polish — Salon No.0 Refinement v1
   ============================================ */

:root {
  --color-ink: #1a0d0d;
  --color-ink-soft: #3d2c2c;
  --color-ink-muted: #8a7c75;
  --color-bg: #ffffff;
  --color-bg-soft: #faf7f2;
  --color-bg-warm: #f3ece1;
  --color-line: #e8ddcb;
  --color-line-soft: #f0e8da;
  --color-accent: #a0826a;
  --color-accent-deep: #8a6a52;
  --shadow-card: 0 1px 2px rgba(26, 13, 13, 0.03), 0 8px 24px rgba(26, 13, 13, 0.06);
  --shadow-hover: 0 4px 8px rgba(26, 13, 13, 0.04), 0 16px 40px rgba(26, 13, 13, 0.09);
  --transition-base: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  color: var(--color-ink);
  background-color: var(--color-bg);
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ------- Section base spacing & rhythm ------- */
.section {
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(64px, 8vw, 112px);
}
.section--short-padding {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(20px, 3vw, 40px);
}
.section--company {
  background-color: var(--color-bg-soft);
}
.section + .section {
  position: relative;
}

/* ------- Heading polish ------- */
.section__head {
  text-align: center;
  margin-bottom: 56px;
}
.section__en {
  display: inline-block;
  font-family: "Lora", serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}
.section__en::before,
.section__en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.5;
}
.section__en::before { right: calc(100% + 16px); }
.section__en::after  { left:  calc(100% + 16px); }
.section__jp {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-ink);
  line-height: 1.5;
}
.section__lead {
  margin-top: 24px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--color-ink-soft);
  line-height: 1.9;
}
.section__body p {
  line-height: 2.1;
  color: var(--color-ink-soft);
  letter-spacing: 0.04em;
}

/* ------- Hero polish ------- */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 13, 13, 0.35) 0%, rgba(26, 13, 13, 0.55) 100%);
}
.hero__catchcopy {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero__info {
  margin-top: 28px;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  line-height: 1.9;
  opacity: 0.92;
}
.hero__scroll {
  letter-spacing: 0.32em;
  font-size: 0.7rem;
}

/* ------- Sub-hero polish ------- */
.sub-hero {
  height: clamp(280px, 36vw, 400px);
  filter: grayscale(0.4) brightness(0.95);
}
.sub-hero::before {
  background: linear-gradient(135deg, rgba(26, 13, 13, 0.55) 0%, rgba(26, 13, 13, 0.35) 100%);
}
.sub-hero__title {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.14em;
}
.sub-hero__subtitle {
  margin-top: 12px;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  opacity: 0.92;
}

/* ------- Breadcrumb polish ------- */
.breadcrumb {
  padding: 20px 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-line-soft);
}
.breadcrumb a {
  color: var(--color-ink-soft);
  transition: opacity var(--transition-base);
}
.breadcrumb a:hover { opacity: 0.6; }

/* ------- Header polish ------- */
.header {
  background-color: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-line-soft);
}
.header__link {
  font-family: "Lora", serif;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--color-ink);
  transition: opacity var(--transition-base);
}
.header__link-jp {
  color: var(--color-ink-muted);
  margin-top: 4px;
}
.header__link::after {
  background: var(--color-accent);
  height: 1px;
  transition: width var(--transition-base);
}

/* ------- Button polish ------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: "Lora", serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--color-ink);
  background-color: transparent;
  color: var(--color-ink);
  cursor: pointer;
  transition: all var(--transition-base);
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover {
  color: #ffffff;
}
.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn--outline-dark {
  border-color: var(--color-ink);
  color: var(--color-ink);
}
.btn--primary {
  background: var(--color-ink);
  color: #ffffff;
}
.btn--primary::before { background: var(--color-accent-deep); }
.btn--white {
  border-color: #ffffff;
  color: #ffffff;
}
.btn--white::before { background: #ffffff; }
.btn--white:hover { color: var(--color-ink); }

/* ------- Service item polish ------- */
.service-section--bg {
  border-top: 1px solid var(--color-line-soft);
  border-bottom: 1px solid var(--color-line-soft);
}
.service-section__bg::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 100%);
}
.service-item__number {
  font-family: "Lora", serif;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  color: var(--color-accent);
  text-transform: uppercase;
}
.service-item__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-top: 12px;
}
.service-item__brand-logo img {
  max-width: 240px;
  filter: opacity(0.9);
}
.service-item__desc {
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--color-ink-soft);
}
.service-item__link {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ------- Feature points (B案) refined ------- */
.feature-points {
  gap: 24px;
  margin-top: 48px;
  max-width: 1080px;
}
.feature-points li {
  padding: 40px 32px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
}
.feature-points li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.feature-points li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
}
.feature-points li h4 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 18px;
  padding-left: 0;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--color-ink);
}
.feature-points li h4::before {
  display: none;
}
.feature-points li p {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--color-ink-soft);
  letter-spacing: 0.04em;
}

/* ------- Section links polish ------- */
.section-links {
  border-top: 1px solid var(--color-line-soft);
}
.section-links__item {
  position: relative;
  overflow: hidden;
}
.section-links__bg {
  filter: grayscale(0.5) brightness(0.85);
  transition: transform 0.8s ease;
}
.section-links__item:hover .section-links__bg {
  transform: scale(1.06);
}
.section-links__content {
  background: linear-gradient(180deg, rgba(26, 13, 13, 0.35) 0%, rgba(26, 13, 13, 0.7) 100%);
}
.section-links__en {
  font-family: "Lora", serif;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  opacity: 0.85;
}
.section-links__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.section-links__desc {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
  opacity: 0.85;
}
.section-links__arrow {
  margin-top: 16px;
  transition: transform var(--transition-base);
}
.section-links__item:hover .section-links__arrow {
  transform: translateX(6px);
}

/* ------- Store info polish ------- */
.store-info {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  padding: 48px 32px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}
.store-info__photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 28px;
  filter: grayscale(0.3);
}
.store-info__name {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 8px;
}
.store-info__sub {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.store-info__address {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--color-ink-soft);
}
.store-info__note {
  color: var(--color-ink-muted);
  font-size: 0.82rem;
  line-height: 1.9;
  border-top: 1px solid var(--color-line-soft);
  padding-top: 24px;
  margin-top: 32px;
}
.store-info__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.store-info__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--color-line);
  font-family: "Lora", serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--color-ink);
  transition: all var(--transition-base);
}
.store-info__link i {
  font-size: 1rem;
  color: var(--color-accent);
  transition: color var(--transition-base);
}
.store-info__link:hover {
  background: var(--color-ink);
  color: #ffffff;
  border-color: var(--color-ink);
}
.store-info__link:hover i {
  color: #ffffff;
}

/* ------- Contact channels polish ------- */
.contact-channels {
  margin-top: 56px;
  gap: 24px;
}
.contact-channels__item {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
  padding: 48px 32px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.contact-channels__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.contact-channels__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--color-bg-warm);
  color: var(--color-accent-deep);
  font-size: 1.4rem;
}
.contact-channels__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.contact-channels__desc {
  font-size: 0.85rem;
  line-height: 1.95;
  color: var(--color-ink-soft);
  margin-bottom: 24px;
}

/* ------- Profile box polish ------- */
.profile-box__img img {
  width: 100%;
  height: auto;
  filter: grayscale(0.3);
}
.profile-box__role {
  font-family: "Lora", serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.profile-box__name {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-line);
}
.profile-box__desc {
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--color-ink-soft);
  font-size: 0.94rem;
}

/* ------- Guest card features (Concept page) polish ------- */
.guest-card__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.guest-card__feature {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  padding: 0 0 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.guest-card__feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.guest-card__feature img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(0.4);
  margin-bottom: 24px;
}
.guest-card__feature h4 {
  font-family: "Lora", serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 12px;
  padding: 0 24px;
}
.guest-card__feature p {
  padding: 0 24px;
  font-size: 0.85rem;
  line-height: 1.95;
  color: var(--color-ink-soft);
}

/* ------- Company info polish ------- */
.company-info {
  max-width: 720px;
  margin: 0 auto;
}
.company-info__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-line);
  align-items: start;
}
.company-info__row:first-child { border-top: 1px solid var(--color-line); }
.company-info__row dt {
  font-family: "Lora", serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
}
.company-info__row dd {
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--color-ink-soft);
}
.company-info__row dd a {
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 1px;
  transition: opacity var(--transition-base);
}
.company-info__row dd a:hover { opacity: 0.65; }
@media (max-width: 640px) {
  .company-info__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ------- Access map polish ------- */
.access-map {
  max-width: 960px;
  margin: 56px auto 0;
  padding: 0 32px;
}
.access-map iframe {
  filter: grayscale(0.4);
  border-radius: 2px;
  box-shadow: var(--shadow-card);
}

/* ------- Footer polish ------- */
.footer {
  background-color: #0a0606;
  color: rgba(255, 255, 255, 0.85);
  padding-top: clamp(60px, 8vw, 96px);
  padding-bottom: 32px;
}
.footer__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 48px;
}
.footer__address {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}
.footer__sns {
  margin-top: 24px;
}
.footer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  transition: all var(--transition-base);
}
.footer__sns a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.footer__sitemap-heading {
  font-family: "Lora", serif;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__sitemap-col ul li {
  margin-bottom: 12px;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.footer__sitemap-col ul li a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-base);
}
.footer__sitemap-col ul li a:hover {
  color: #ffffff;
}
.footer__copy {
  margin-top: 32px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ------- Page top button polish ------- */
.page-top {
  width: 48px;
  height: 48px;
  background: var(--color-ink);
  border-radius: 50%;
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  z-index: 50;
  transition: all var(--transition-base);
  opacity: 0;
  pointer-events: none;
}
.page-top.is-show {
  opacity: 1;
  pointer-events: auto;
}
.page-top:hover {
  background: var(--color-accent-deep);
  transform: translateY(-2px);
}
.page-top::before {
  content: "↑";
  font-size: 1rem;
}

/* ------- Policy container polish ------- */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}
.policy-container__lead {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--color-ink-soft);
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--color-line);
}
.policy-container__heading {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--color-ink);
}
.policy-container__article p,
.policy-container__article li {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--color-ink-soft);
}
.policy-container__date {
  margin-top: 56px;
  text-align: right;
  font-size: 0.82rem;
  color: var(--color-ink-muted);
  letter-spacing: 0.1em;
}

/* ------- CTA box dark polish (sharesalon) ------- */
.cta-box-dark {
  background: var(--color-ink);
  color: #ffffff;
  padding: 56px 40px;
  text-align: center;
  border-radius: 2px;
  max-width: 820px;
  margin: 0 auto;
}
.cta-box-dark p {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.cta-box-dark strong {
  display: block;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 16px;
}

/* ------- Smooth scroll behavior ------- */
html { scroll-behavior: smooth; }

/* ------- Focus visible accessibility ------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

/* ============================================
   📐 Typography Jump-Rate Up — Bold Hierarchy
   ============================================ */

/* ---- Hero（最大のジャンプ：大胆に） ---- */
.hero__catchcopy {
  font-size: clamp(2.4rem, 6.4vw, 5rem);
  letter-spacing: 0.18em;
  line-height: 1.8;
  font-weight: 400;
}
.hero__info {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  margin-top: 40px;
}
.hero__scroll {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
}

/* ---- Sub-hero ---- */
.sub-hero {
  height: clamp(320px, 42vw, 480px);
}
.sub-hero__title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  letter-spacing: 0.16em;
  line-height: 1.2;
}
.sub-hero__subtitle {
  margin-top: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
}

/* ---- Section heading（ジャンプ率の主役） ---- */
.section__head {
  margin-bottom: 72px;
}
.section__en {
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  margin-bottom: 20px;
}
.section__en::before,
.section__en::after {
  width: 32px;
}
.section__en::before { right: calc(100% + 20px); }
.section__en::after  { left:  calc(100% + 20px); }
.section__jp {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: 0.1em;
  line-height: 1.45;
  font-weight: 500;
}
.section__lead {
  margin-top: 32px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 2;
}
.section__body {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.section__body p {
  font-size: 0.95rem;
  line-height: 2.2;
}

/* ---- Service item（事業紹介の見出しを大きく） ---- */
.service-item {
  margin-bottom: 120px;
}
.service-item__number {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
}
.service-item__title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: 0.14em;
  margin-top: 16px;
  line-height: 1.4;
}
.service-item__subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  margin-top: 12px;
}
.service-item__desc {
  font-size: 0.96rem;
  line-height: 2.2;
}

/* ---- Service item brand-logo: 縦中央スペースで存在感 ---- */
.service-item__brand-logo {
  margin-top: 20px;
  margin-bottom: 8px;
}
.service-item__brand-logo img {
  max-width: 280px;
}

/* ---- Feature points（カード見出しを大きく） ---- */
.feature-points {
  margin-top: 64px;
  gap: 28px;
}
.feature-points li {
  padding: 48px 36px;
}
.feature-points li h4 {
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 12px;
  margin-bottom: 22px;
}
.feature-points li p {
  font-size: 0.88rem;
  line-height: 2.05;
}

/* ---- Profile box（名前を大胆に） ---- */
.profile-box {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .profile-box {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 540px;
  }
}
.profile-box__role {
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  margin-bottom: 16px;
}
.profile-box__name {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  letter-spacing: 0.16em;
  font-weight: 500;
  margin-bottom: 36px;
  padding-bottom: 28px;
}
.profile-box__desc {
  font-size: 0.94rem;
  line-height: 2.15;
}

/* ---- Store info（店舗名を大きく） ---- */
.store-info__name {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: 0.12em;
  margin-top: 8px;
  margin-bottom: 12px;
}
.store-info__sub {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  margin-bottom: 16px;
}
.store-info__address {
  font-size: 0.88rem;
  line-height: 2;
}
.store-info__note {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 2;
}
.store-info__logo img {
  max-width: 280px;
}

/* ---- Contact channels（タイトルにメリハリ） ---- */
.contact-channels {
  margin-top: 64px;
}
.contact-channels__item {
  padding: 56px 32px;
}
.contact-channels__icon {
  width: 64px;
  height: 64px;
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.contact-channels__title {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 18px;
}
.contact-channels__desc {
  font-size: 0.85rem;
  line-height: 2.05;
}

/* ---- Company info（dtを大胆な英字、ddは整然と） ---- */
.company-info {
  max-width: 800px;
}
.company-info__row {
  grid-template-columns: 200px 1fr;
  padding: 32px 0;
  gap: 40px;
}
.company-info__row dt {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
}
.company-info__row dd {
  font-size: 0.96rem;
  line-height: 2;
}

/* ---- Section links（リンクカードの見出し大胆に） ---- */
.section-links__en {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  margin-bottom: 12px;
  display: block;
}
.section-links__title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  line-height: 1.5;
}
.section-links__desc {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  line-height: 1.9;
}

/* ---- CTA box（強調メッセージ大きく） ---- */
.cta-box-dark {
  padding: 72px 48px;
}
.cta-box-dark p {
  font-size: 0.96rem;
  line-height: 2.1;
  margin-bottom: 36px;
}
.cta-box-dark strong {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: 0.12em;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ---- Privacy policy headings ---- */
.policy-container__lead {
  font-size: 0.92rem;
  line-height: 2.05;
}
.policy-container__heading {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

/* ---- Footer（見出しを小さく・タイトでメリハリ） ---- */
.footer__sitemap-heading {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  margin-bottom: 24px;
}
.footer__sitemap-col ul li {
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.footer__address {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.footer__copy {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  margin-top: 40px;
}

/* ---- Header nav（ジャンプ率小・洗練） ---- */
.header__link {
  font-size: 0.82rem;
  letter-spacing: 0.24em;
}
.header__link-jp {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  padding: 24px 0;
}

/* ---- Guest card features ---- */
.guest-card__feature h4 {
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.guest-card__feature p {
  font-size: 0.85rem;
  line-height: 2.05;
}

/* ============================================
   🅰️ Section Heading — English as Bold Display
   英字を大胆なあしらい、日本語を小さなラベルに
   ============================================ */

.section__head {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

/* ---- 英字: あしらいとして大胆に ---- */
.section__en {
  display: block;
  font-family: "Lora", serif;
  font-size: clamp(3rem, 7.5vw, 6.4rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-ink);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
  text-indent: 0;
}
.section__en::before,
.section__en::after {
  display: none;
}

/* ---- 日本語: 小さなラベルとして ---- */
.section__jp {
  display: inline-block;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: var(--color-ink-muted);
  line-height: 1.6;
  position: relative;
  padding: 0 18px;
}
.section__jp::before,
.section__jp::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--color-ink-muted);
  opacity: 0.4;
}
.section__jp::before { right: 100%; }
.section__jp::after  { left:  100%; }

/* ---- リードテキスト調整（主題の英字の下に来るため） ---- */
.section__lead {
  margin-top: 36px;
  font-size: 1rem;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.06em;
  color: var(--color-ink-soft);
  line-height: 2;
}

/* ---- SP調整（英字が長い場合） ---- */
@media (max-width: 640px) {
  .section__en {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
    letter-spacing: 0.04em;
  }
  .section__jp {
    font-size: 0.78rem;
    letter-spacing: 0.28em;
  }
  .section__head {
    margin-bottom: 56px;
  }
}

/* ---- Sub-hero でも同じ思想を適用（英字を主役にしてもよいが、ここはあえて現状維持） ---- */

/* ============================================
   ✍️ Section English — Cursive Display
   英字セクションタイトルを筆記体に
   ============================================ */

.section__en {
  font-family: "Great Vibes", "Lora", cursive;
  font-size: clamp(3.6rem, 9.5vw, 8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: none;
  margin-bottom: 6px;
  color: var(--color-ink);
}
.section__en::before,
.section__en::after {
  display: none;
}

/* 日本語ラベルとの余白調整（筆記体ベースライン下に余裕） */
.section__head {
  margin-bottom: 80px;
}

/* SP 調整：筆記体は読みづらいので最小サイズ確保 */
@media (max-width: 640px) {
  .section__en {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }
}

/* ============================================
   ✍️ Stalemate — Cursive Display for Section En
   ============================================ */
.section__en {
  font-family: "Stalemate", "Great Vibes", cursive;
  font-weight: 400;
  /* Stalemateは横長で繊細な筆記体。サイズはやや控えめに、字間はそのまま */
  font-size: clamp(3.2rem, 8.5vw, 7rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: none;
}
@media (max-width: 640px) {
  .section__en {
    font-size: clamp(2.6rem, 11vw, 4.2rem);
  }
}

/* ============================================
   🎨 Color Refinement v2 — Warm Minimal Palette
   ロゴとの統合感ある赤茶ゴールド × ベージュニュートラル
   ============================================ */

:root {
  /* インク色階層（4階調） */
  --color-ink: #1f1410;            /* 主要：温度感のある墨黒 */
  --color-ink-soft: #443330;       /* 副次：本文 */
  --color-ink-muted: #8d7a72;      /* 控えめ：キャプション */
  --color-ink-faint: #b8a89e;      /* 微妙：罫線・補助 */

  /* 背景色階層（4階調） */
  --color-bg: #fefcf9;             /* 純白に温度感 */
  --color-bg-soft: #faf6ee;        /* ウォームオフホワイト */
  --color-bg-warm: #f2ead9;        /* ベージュトーン */
  --color-bg-deep: #1a0f0c;        /* フッター漆黒 */

  /* 罫線（2階調） */
  --color-line: #e0d3bf;
  --color-line-soft: #ede4d3;

  /* アクセント：ユルムロゴ統合（赤茶ゴールド系） */
  --color-accent: #a87553;         /* テラコッタゴールド：主アクセント */
  --color-accent-deep: #8a5d40;    /* 深みのある赤茶 */
  --color-accent-soft: #d4b89e;    /* 薄いベージュゴールド */

  /* 補助アクセント */
  --color-sage: #8b8a6f;           /* ダスティセージ：自然のニュアンス */

  /* 影 */
  --shadow-card: 0 1px 2px rgba(31, 20, 16, 0.04), 0 8px 28px rgba(31, 20, 16, 0.06);
  --shadow-hover: 0 4px 10px rgba(31, 20, 16, 0.06), 0 18px 48px rgba(31, 20, 16, 0.1);
  --shadow-soft: 0 2px 12px rgba(31, 20, 16, 0.04);

  --transition-base: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- body 基底 ---- */
body {
  color: var(--color-ink-soft);
  background-color: var(--color-bg);
}

/* ---- セクション背景色の戦略 ---- */
.section--company {
  background-color: var(--color-bg-soft);
}
.section-bg-warm {
  background-color: var(--color-bg-warm);
}

/* ---- セクション見出し再着色 ---- */
.section__en {
  color: var(--color-ink);
}
.section__jp {
  color: var(--color-ink-muted);
}
.section__jp::before,
.section__jp::after {
  background: var(--color-ink-faint);
  opacity: 0.6;
}
.section__lead {
  color: var(--color-ink-soft);
}

/* ---- Service item 配色 ---- */
.service-item__number {
  color: var(--color-accent);
}
.service-item__title {
  color: var(--color-ink);
}
.service-item__subtitle {
  color: var(--color-accent);
}
.service-item__desc {
  color: var(--color-ink-soft);
}

/* ---- Service section背景オーバーレイをウォームに ---- */
.service-section__bg::after {
  background: linear-gradient(180deg, rgba(254, 252, 249, 0.92) 0%, rgba(250, 246, 238, 0.94) 100%);
}

/* ---- Hero グラデーション温かく ---- */
.hero__bg::after {
  background: linear-gradient(180deg, rgba(31, 20, 16, 0.38) 0%, rgba(31, 20, 16, 0.62) 100%);
}

/* ---- Sub-hero グラデーション ---- */
.sub-hero::before {
  background: linear-gradient(135deg, rgba(31, 20, 16, 0.6) 0%, rgba(138, 93, 64, 0.38) 100%);
}
.sub-hero {
  filter: grayscale(0.35) brightness(0.95);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-line-soft);
  color: var(--color-ink-muted);
}
.breadcrumb a {
  color: var(--color-ink-soft);
}
.breadcrumb a:hover {
  color: var(--color-accent);
  opacity: 1;
}

/* ---- Header ---- */
.header {
  background-color: rgba(254, 252, 249, 0.94);
  border-bottom: 1px solid var(--color-line-soft);
}
.header__link {
  color: var(--color-ink);
}
.header__link-jp {
  color: var(--color-ink-muted);
}
.header__link::after {
  background: var(--color-accent);
}
.header__link.is-active,
.header__link:hover {
  color: var(--color-accent-deep);
}

/* ---- Button ---- */
.btn {
  color: var(--color-ink);
  border-color: var(--color-ink);
}
.btn::before {
  background: var(--color-ink);
}
.btn--outline-dark {
  border-color: var(--color-ink);
  color: var(--color-ink);
}
.btn--outline-dark::before {
  background: var(--color-accent-deep);
}
.btn--outline-dark:hover {
  color: #ffffff;
}
.btn--primary {
  background: var(--color-accent-deep);
  border-color: var(--color-accent-deep);
  color: #ffffff;
}
.btn--primary::before {
  background: var(--color-ink);
}

/* ---- Feature points カード ---- */
.feature-points li {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}
.feature-points li::before {
  background: var(--color-accent);
}
.feature-points li h4 {
  color: var(--color-ink);
}
.feature-points li p {
  color: var(--color-ink-soft);
}
.feature-points li:hover {
  border-color: var(--color-accent-soft);
}

/* ---- Section links（事業導線カード） ---- */
.section-links__content {
  background: linear-gradient(180deg, rgba(31, 20, 16, 0.32) 0%, rgba(31, 20, 16, 0.78) 100%);
}
.section-links__en {
  color: var(--color-accent-soft);
}

/* ---- Store info ---- */
.store-info {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
}
.store-info__name {
  color: var(--color-ink);
}
.store-info__sub {
  color: var(--color-accent);
}
.store-info__address {
  color: var(--color-ink-soft);
}
.store-info__note {
  color: var(--color-ink-muted);
  border-top-color: var(--color-line-soft);
}
.store-info__link {
  border-color: var(--color-line);
  color: var(--color-ink);
  background: var(--color-bg);
}
.store-info__link i {
  color: var(--color-accent);
}
.store-info__link:hover {
  background: var(--color-accent-deep);
  border-color: var(--color-accent-deep);
  color: #ffffff;
}
.store-info__link:hover i {
  color: var(--color-accent-soft);
}

/* ---- Contact channels ---- */
.contact-channels__item {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}
.contact-channels__icon {
  background: var(--color-bg-warm);
  color: var(--color-accent-deep);
}
.contact-channels__title {
  color: var(--color-ink);
}
.contact-channels__desc {
  color: var(--color-ink-soft);
}
.contact-channels__item:hover {
  border-color: var(--color-accent-soft);
}

/* ---- Profile box ---- */
.profile-box__role {
  color: var(--color-accent);
}
.profile-box__name {
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-accent-soft);
}
.profile-box__desc {
  color: var(--color-ink-soft);
}

/* ---- Guest card features ---- */
.guest-card__feature {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}
.guest-card__feature h4 {
  color: var(--color-accent);
}
.guest-card__feature p {
  color: var(--color-ink-soft);
}

/* ---- Company info ---- */
.company-info__row {
  border-bottom: 1px solid var(--color-line);
}
.company-info__row:first-child {
  border-top: 1px solid var(--color-line);
}
.company-info__row dt {
  color: var(--color-accent);
}
.company-info__row dd {
  color: var(--color-ink-soft);
}
.company-info__row dd a {
  color: var(--color-ink);
  border-bottom-color: var(--color-accent);
}
.company-info__row dd a:hover {
  color: var(--color-accent-deep);
  opacity: 1;
}

/* ---- Access map ---- */
.access-map iframe {
  filter: grayscale(0.45) sepia(0.06);
  box-shadow: var(--shadow-soft);
}

/* ---- Footer 深いノワール ---- */
.footer {
  background-color: var(--color-bg-deep);
  color: rgba(254, 252, 249, 0.78);
}
.footer__top {
  border-bottom-color: rgba(212, 184, 158, 0.12);
}
.footer__address {
  color: rgba(254, 252, 249, 0.6);
}
.footer__sns a {
  border-color: rgba(212, 184, 158, 0.25);
  color: rgba(254, 252, 249, 0.82);
}
.footer__sns a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-soft);
  background: rgba(168, 117, 83, 0.12);
}
.footer__sitemap-heading {
  color: var(--color-accent-soft);
}
.footer__sitemap-col ul li a {
  color: rgba(254, 252, 249, 0.72);
}
.footer__sitemap-col ul li a:hover {
  color: var(--color-accent-soft);
}
.footer__logo {
  color: var(--color-bg);
}
.footer__copy {
  color: rgba(254, 252, 249, 0.32);
}

/* ---- Page top ---- */
.page-top {
  background: var(--color-accent-deep);
}
.page-top:hover {
  background: var(--color-ink);
}

/* ---- Policy ---- */
.policy-container__heading {
  color: var(--color-ink);
}
.policy-container__lead,
.policy-container__article p,
.policy-container__article li {
  color: var(--color-ink-soft);
}
.policy-container__lead {
  border-bottom: 1px solid var(--color-line);
}
.policy-container__date {
  color: var(--color-ink-muted);
}

/* ---- CTA box ---- */
.cta-box-dark {
  background: var(--color-ink);
  color: var(--color-bg);
}
.cta-box-dark strong {
  color: var(--color-accent-soft);
}

/* ---- selection ---- */
::selection {
  background: var(--color-accent-soft);
  color: var(--color-ink);
}

/* ---- focus visible ---- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

/* ---- ロゴホバー（ヘッダー・フッター・ユルム被リンク） ---- */
.header__logo a:hover img,
.footer__logo:hover img,
.footer__sitemap-item--logo a:hover {
  opacity: 0.78;
}

/* ---- Section divider（セクション間の装飾線） ---- */
.section + .section-links {
  border-top: 1px solid var(--color-line-soft);
}

/* ---- Drawer 背景・コンテンツ調整 ---- */
.drawer {
  background-color: var(--color-bg-soft);
  border-bottom-color: var(--color-line-soft);
}
.drawer__link {
  color: var(--color-ink);
}
.drawer__link-jp {
  color: var(--color-ink-muted);
}

/* ============================================
   🎬 Hero Split — 2カラム + ブラースライダー
   ============================================ */

.hero.hero--split {
  height: clamp(560px, 92vh, 880px);
  position: relative;
  background: var(--color-bg);
}

.hero--split .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  height: 100%;
  position: relative;
  z-index: 1;
}

/* -- 左カラム：キャッチコピー -- */
.hero--split .hero__content {
  background: var(--color-bg);
  display: flex;
  align-items: center;
  padding: clamp(40px, 5vw, 96px) clamp(32px, 5vw, 88px);
  color: var(--color-ink);
  position: relative;
  z-index: 2;
}
.hero--split .hero__copy {
  max-width: 520px;
  width: 100%;
}
.hero__eyebrow {
  display: block;
  font-family: "Lora", serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 36px;
  padding-left: 40px;
  position: relative;
}
.hero__eyebrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--color-accent);
}
.hero--split .hero__catchcopy {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.85;
  color: var(--color-ink);
  text-shadow: none;
  margin-bottom: 40px;
}
.hero--split .hero__info {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  line-height: 2.1;
  color: var(--color-ink-soft);
  margin-bottom: 48px;
  margin-top: 0;
}
.hero--split .hero__cta {
  display: flex;
  gap: 16px;
}

/* -- 右カラム：スライダー -- */
.hero__slider {
  position: relative;
  overflow: hidden;
  background: var(--color-ink);
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(24px) brightness(0.85) grayscale(0.15);
  transform: scale(1.08);
  transition:
    opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1),
    filter 1.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.hero__slide.is-active {
  opacity: 1;
  filter: blur(0) brightness(0.92) grayscale(0.05);
  transform: scale(1);
  z-index: 2;
}
.hero__slide.is-leaving {
  filter: blur(28px) brightness(0.75);
  opacity: 0;
  z-index: 1;
}
.hero__slide.is-entering {
  z-index: 3;
}
/* 上にウォームグラデで奥行きと品 */
.hero__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 20, 16, 0.18) 0%, rgba(168, 117, 83, 0.08) 60%, rgba(31, 20, 16, 0.28) 100%);
  pointer-events: none;
  z-index: 4;
}

/* -- スライダー: インジケータ（ドット） -- */
.hero__slider-controls {
  position: absolute;
  bottom: clamp(24px, 4vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 5;
}
.hero__slider-dot {
  width: 36px;
  height: 2px;
  border: 0;
  padding: 0;
  background: rgba(254, 252, 249, 0.4);
  cursor: pointer;
  position: relative;
  transition: background 0.32s ease;
}
.hero__slider-dot::before {
  content: "";
  position: absolute;
  inset: -10px -4px;
}
.hero__slider-dot:hover {
  background: rgba(254, 252, 249, 0.7);
}
.hero__slider-dot.is-active {
  background: var(--color-accent-soft);
  width: 56px;
}

/* -- 装飾：左カラム上の薄いラインアクセント -- */
.hero--split .hero__content::before {
  content: "";
  position: absolute;
  top: clamp(40px, 6vw, 80px);
  left: clamp(32px, 5vw, 88px);
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.6;
}
.hero--split .hero__content::after {
  content: "";
  position: absolute;
  bottom: clamp(40px, 6vw, 80px);
  right: clamp(32px, 5vw, 88px);
  width: 1px;
  height: 60px;
  background: var(--color-accent);
  opacity: 0.4;
}

/* -- Scroll down ボタンを下中央に再配置 -- */
.hero--split .hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-ink-muted);
  font-family: "Lora", serif;
  font-size: 0.64rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  z-index: 10;
}
.hero--split .hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  background: var(--color-ink-muted);
  margin: 12px auto 0;
  animation: heroScrollLine 2s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes heroScrollLine {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* -- レスポンシブ：タブレット以下は縦並びに -- */
@media (max-width: 900px) {
  .hero.hero--split {
    height: auto;
    min-height: 100vh;
  }
  .hero--split .hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .hero--split .hero__content {
    padding: clamp(56px, 10vw, 80px) clamp(28px, 6vw, 56px);
    order: 2;
  }
  .hero__slider {
    order: 1;
    min-height: 360px;
    height: 50vh;
    max-height: 480px;
  }
  .hero--split .hero__content::before,
  .hero--split .hero__content::after {
    display: none;
  }
}

/* -- SP -- */
@media (max-width: 540px) {
  .hero__eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.32em;
    padding-left: 32px;
  }
  .hero__eyebrow::before {
    width: 22px;
  }
  .hero--split .hero__catchcopy {
    line-height: 1.95;
    letter-spacing: 0.1em;
  }
  .hero--split .hero__info {
    font-size: 0.86rem;
    line-height: 2;
  }
  .hero__slider-dot {
    width: 28px;
  }
  .hero__slider-dot.is-active {
    width: 44px;
  }
}

/* -- アクセシビリティ：動きを抑える -- */
@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: opacity 0.4s linear;
    transform: none;
    filter: none;
  }
  .hero__slide.is-active {
    filter: brightness(0.92) grayscale(0.05);
    transform: none;
  }
  .hero__slide.is-leaving {
    filter: none;
  }
  .hero--split .hero__scroll::after {
    animation: none;
  }
}

/* ============================================
   📦 Service Split — 2カラム + 3事業スタック
   ============================================ */

.service-split-section {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

/* -- 左：リードテキスト -- */
.service-split__lead {
  position: sticky;
  top: 120px;
}
.service-split__lead .section__en {
  display: block;
  margin-bottom: 16px;
  text-align: left;
}
.service-split__lead .section__en::before,
.service-split__lead .section__en::after {
  display: none;
}
.service-split__lead .section__jp {
  display: block;
  text-align: left;
  margin-bottom: 36px;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  letter-spacing: 0.32em;
  color: var(--color-ink-muted);
  padding: 0;
}
.service-split__lead .section__jp::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--color-ink-faint);
  vertical-align: middle;
  margin-right: 16px;
}
.service-split__lead .section__jp::after {
  display: none;
}
.service-split__copy {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.95;
  color: var(--color-ink);
  margin-bottom: 36px;
}
.service-split__desc {
  font-size: 0.92rem;
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: var(--color-ink-soft);
}

/* -- 右：3事業スタック -- */
.service-split__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-stack-item {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
}
.service-stack-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-accent-soft);
}
.service-stack-item__visual {
  background-size: cover;
  background-position: center;
  filter: grayscale(0.35) brightness(0.92);
  transition: filter 0.5s ease, transform 0.5s ease;
  min-height: 220px;
}
.service-stack-item:hover .service-stack-item__visual {
  filter: grayscale(0.1) brightness(0.98);
  transform: scale(1.04);
}
.service-stack-item__body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.service-stack-item__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}
.service-stack-item__number {
  font-family: "Lora", serif;
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  color: var(--color-accent);
  font-weight: 500;
}
.service-stack-item__category {
  font-family: "Lora", serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  position: relative;
  padding-left: 18px;
}
.service-stack-item__category::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--color-ink-faint);
}
.service-stack-item__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-ink);
  margin: 0;
  line-height: 1.5;
}
.service-stack-item__brand {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  margin: 0;
}
.service-stack-item__desc {
  font-size: 0.86rem;
  line-height: 1.95;
  color: var(--color-ink-soft);
  margin: 8px 0 12px;
}
.service-stack-item__arrow {
  font-family: "Lora", serif;
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-top: auto;
  transition: transform 0.4s ease;
  display: inline-block;
}
.service-stack-item:hover .service-stack-item__arrow {
  transform: translateX(8px);
}

/* -- レスポンシブ -- */
@media (max-width: 960px) {
  .service-split {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .service-split__lead {
    position: static;
  }
}
@media (max-width: 640px) {
  .service-stack-item {
    grid-template-columns: 1fr;
  }
  .service-stack-item__visual {
    min-height: 200px;
  }
  .service-stack-item__body {
    padding: 28px 24px;
  }
}


/* ============================================
   📰 News Section — WP投稿前提（暫定ダミー）
   ============================================ */

.news-section {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.news-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.news-split__head {
  position: sticky;
  top: 120px;
}
.news-split__head .section__en {
  display: block;
  margin-bottom: 16px;
  text-align: left;
}
.news-split__head .section__en::before,
.news-split__head .section__en::after {
  display: none;
}
.news-split__head .section__jp {
  display: block;
  text-align: left;
  margin-bottom: 32px;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  letter-spacing: 0.32em;
  color: var(--color-ink-muted);
  padding: 0;
}
.news-split__head .section__jp::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--color-ink-faint);
  vertical-align: middle;
  margin-right: 16px;
}
.news-split__head .section__jp::after {
  display: none;
}
.news-split__copy {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.95;
  color: var(--color-ink);
}

.news-split__list {
  display: flex;
  flex-direction: column;
}

.news-card {
  border-top: 1px solid var(--color-line);
  position: relative;
  transition: background-color 0.32s ease;
}
.news-card:last-child {
  border-bottom: 1px solid var(--color-line);
}
.news-card__link {
  display: block;
  padding: 32px 8px;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: padding 0.32s ease;
}
.news-card__link::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  font-family: "Lora", serif;
  font-size: 1.1rem;
  color: var(--color-accent);
  transition: transform 0.32s ease, color 0.32s ease;
}
.news-card:hover {
  background-color: var(--color-bg-warm);
}
.news-card:hover .news-card__link {
  padding-left: 24px;
  padding-right: 32px;
}
.news-card:hover .news-card__link::after {
  transform: translateY(-50%) translateX(6px);
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.news-card__date {
  font-family: "Lora", serif;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  color: var(--color-ink-muted);
}
.news-card__category {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  padding: 4px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
}
.news-card__category--info {
  color: var(--color-accent-deep);
}
.news-card__category--event {
  color: var(--color-sage);
}
.news-card__category--salon {
  color: var(--color-accent);
}
.news-card__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--color-ink);
  margin: 0 0 12px;
  padding-right: 24px;
}
.news-card__excerpt {
  font-size: 0.86rem;
  line-height: 1.95;
  color: var(--color-ink-soft);
  margin: 0;
  padding-right: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 960px) {
  .news-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .news-split__head {
    position: static;
  }
}
@media (max-width: 640px) {
  .news-card__link {
    padding: 24px 32px 24px 8px;
  }
  .news-card__meta {
    flex-wrap: wrap;
    gap: 12px;
  }
  .news-card__excerpt {
    display: none;
  }
}

/* ============================================
   📄 Single Article — WP single.php 相当
   ============================================ */

.page-single main {
  padding-top: 96px; /* fixed headerのオフセット */
}

.single-article {
  background: var(--color-bg);
}

/* -- Article Header -- */
.single-article__header {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 32px) clamp(40px, 6vw, 64px);
  text-align: center;
}
.single-article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.single-article__date {
  font-family: "Lora", serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: var(--color-ink-muted);
}
.single-article__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.7;
  color: var(--color-ink);
  margin: 0 0 32px;
}
.single-article__lead {
  font-size: 0.96rem;
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: var(--color-ink-soft);
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
  padding: 28px 0 0;
  border-top: 1px solid var(--color-line);
}

/* -- Eyecatch -- */
.single-article__eyecatch {
  max-width: 1080px;
  margin: 0 auto clamp(56px, 7vw, 80px);
  padding: 0 clamp(24px, 5vw, 32px);
}
.single-article__eyecatch img {
  display: block;
  width: 100%;
  height: clamp(280px, 50vw, 540px);
  object-fit: cover;
  filter: grayscale(0.2);
}

/* -- Article Body -- */
.single-article__body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 32px);
}

/* -- entry-content（WPの本文相当）のタイポグラフィ -- */
.entry-content {
  font-size: 1rem;
  line-height: 2.15;
  letter-spacing: 0.04em;
  color: var(--color-ink-soft);
}
.entry-content > * + * {
  margin-top: 1.8em;
}
.entry-content > h2 + *,
.entry-content > h3 + * {
  margin-top: 1em;
}
.entry-content p {
  margin: 0;
}
.entry-content h2 {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: var(--color-ink);
  margin: 3em 0 1em;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--color-line);
  position: relative;
}
.entry-content h2::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 56px;
  height: 1px;
  background: var(--color-accent);
}
.entry-content h3 {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--color-ink);
  margin: 2.4em 0 0.6em;
  padding-left: 18px;
  position: relative;
}
.entry-content h3::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--color-accent);
}
.entry-content ul,
.entry-content ol {
  padding-left: 1.5em;
  margin: 0;
}
.entry-content ul li,
.entry-content ol li {
  margin-bottom: 0.8em;
  line-height: 2;
}
.entry-content ul li::marker {
  color: var(--color-accent);
}
.entry-content strong {
  color: var(--color-ink);
  font-weight: 500;
}
.entry-content a {
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 1px;
  transition: opacity var(--transition-base);
}
.entry-content a:hover {
  opacity: 0.65;
}
.entry-content blockquote {
  background: var(--color-bg-soft);
  border-left: 3px solid var(--color-accent);
  margin: 2.4em 0;
  padding: 32px 36px;
  position: relative;
}
.entry-content blockquote::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: "Lora", serif;
  font-size: 4rem;
  color: var(--color-accent-soft);
  line-height: 1;
}
.entry-content blockquote p {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.05rem;
  font-style: normal;
  line-height: 2;
  color: var(--color-ink);
  letter-spacing: 0.06em;
}
.entry-content blockquote p + p {
  margin-top: 1em;
}
.entry-content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 2.4em 0;
}
.entry-content figure {
  margin: 2.4em 0;
}
.entry-content figcaption {
  font-size: 0.82rem;
  color: var(--color-ink-muted);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.06em;
}

/* -- Share Buttons -- */
.single-article__share {
  margin-top: clamp(56px, 8vw, 88px);
  padding-top: 40px;
  border-top: 1px solid var(--color-line);
  text-align: center;
}
.single-article__share-label {
  font-family: "Lora", serif;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--color-ink-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.share-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.share-buttons a,
.share-buttons button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  color: var(--color-ink);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-base);
}
.share-buttons a:hover,
.share-buttons button:hover {
  background: var(--color-ink);
  color: var(--color-accent-soft);
  border-color: var(--color-ink);
  transform: translateY(-2px);
}

/* -- Prev / Next Navigation -- */
.single-article__nav {
  max-width: 1080px;
  margin: clamp(64px, 9vw, 96px) auto 0;
  padding: clamp(40px, 5vw, 56px) clamp(24px, 5vw, 32px);
  border-top: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.single-article__nav-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition-base);
}
.single-article__nav-item--prev {
  text-align: left;
}
.single-article__nav-item--next {
  text-align: right;
}
.single-article__nav-item--prev:hover {
  transform: translateX(-4px);
}
.single-article__nav-item--next:hover {
  transform: translateX(4px);
}
.single-article__nav-label {
  font-family: "Lora", serif;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--color-accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.single-article__nav-item--next .single-article__nav-label {
  justify-content: flex-end;
}
.single-article__nav-label span {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--color-ink-muted);
  text-transform: none;
}
.single-article__nav-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--color-ink);
}

/* 中央：戻るボタン（ドット4個でグリッドアイコン） */
.single-article__nav-back {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 4px;
  width: 48px;
  height: 48px;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  align-items: center;
  justify-items: center;
  padding: 14px;
  transition: all var(--transition-base);
}
.single-article__nav-back span {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-ink);
  border-radius: 50%;
  transition: background var(--transition-base);
}
.single-article__nav-back:hover {
  background: var(--color-ink);
  border-color: var(--color-ink);
  transform: scale(1.05);
}
.single-article__nav-back:hover span {
  background: var(--color-accent-soft);
}

@media (max-width: 640px) {
  .single-article__nav {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 32px;
  }
  .single-article__nav-item--next {
    text-align: left;
  }
  .single-article__nav-item--next .single-article__nav-label {
    justify-content: flex-start;
  }
  .single-article__nav-back {
    justify-self: center;
  }
}

/* ============================================
   📰 Related News（記事下） 3カードグリッド
   ============================================ */
.related-news__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.related-news-card {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.related-news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-accent-soft);
}
.related-news-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.related-news-card__visual {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.related-news-card:hover .related-news-card__visual {
  filter: grayscale(0.1);
  transform: scale(1.05);
}
.related-news-card__body {
  padding: 24px 24px 28px;
}
.related-news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.related-news-card__meta time {
  font-family: "Lora", serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--color-ink-muted);
}
.related-news-card__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.75;
  color: var(--color-ink);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA 一覧へ戻る */
.single-article__cta {
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
  text-align: center;
}

/* ============================================
   🎨 Refinement v3 — Global Polish & Consistency
   全体の整合性・呼吸・細部の仕上げを総合再調整
   ============================================ */

:root {
  /* スペーシングスケール（呼吸の統一） */
  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs: 12px;
  --space-sm: 20px;
  --space-md: 32px;
  --space-lg: 48px;
  --space-xl: 72px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* 角丸スケール（極小・洗練） */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-pill: 999px;

  /* インタラクション */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* コンテナ幅 */
  --container-narrow: 720px;
  --container-base: 1080px;
  --container-wide: 1280px;
}

/* ---- Container 統一 ---- */
.container {
  max-width: var(--container-base);
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 40px);
  padding-right: clamp(20px, 5vw, 40px);
}

/* ---- Body global polish ---- */
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-ink-soft);
  background-color: var(--color-bg);
  letter-spacing: 0.03em;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

/* ---- Selection ---- */
::selection {
  background: var(--color-accent-soft);
  color: var(--color-ink);
}

/* ============================================
   🅰️ Typography Refined — リズム再調整
   ============================================ */

/* セクション見出し: 英筆記体大胆 × 和文ラベル */
.section__head {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section__en {
  font-family: "Stalemate", cursive;
  font-size: clamp(3rem, 8vw, 6.4rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--color-ink);
  font-weight: 400;
}

.section__jp {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  font-weight: 500;
  color: var(--color-ink-muted);
  padding: 0 24px;
  line-height: 1.6;
  position: relative;
  display: inline-block;
}
.section__jp::before,
.section__jp::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--color-ink-faint);
  opacity: 0.5;
}
.section__jp::before { right: 100%; }
.section__jp::after  { left:  100%; }

.section__lead {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--color-ink-soft);
  margin-top: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section__body p {
  font-size: 0.92rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: var(--color-ink-soft);
}

/* ============================================
   🎬 Hero — 仕上げ
   ============================================ */

.hero.hero--split {
  height: clamp(580px, 92vh, 860px);
}

.hero__eyebrow {
  font-family: "Lora", serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 40px;
  padding-left: 44px;
}
.hero__eyebrow::before {
  width: 32px;
  background: var(--color-accent);
}

.hero--split .hero__catchcopy {
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  letter-spacing: 0.16em;
  line-height: 2;
  font-weight: 400;
  color: var(--color-ink);
  text-shadow: none;
  margin-bottom: 36px;
}

.hero--split .hero__info {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  line-height: 2.2;
  color: var(--color-ink-soft);
  margin: 0;
}

.hero__slide {
  filter: blur(28px) brightness(0.82) grayscale(0.18);
  transform: scale(1.1);
}
.hero__slide.is-active {
  filter: blur(0) brightness(0.94) grayscale(0.08);
  transform: scale(1);
}
.hero__slider::after {
  background: linear-gradient(135deg, rgba(31, 20, 16, 0.22) 0%, rgba(168, 117, 83, 0.06) 55%, rgba(31, 20, 16, 0.32) 100%);
}

.hero__slider-dot {
  background: rgba(254, 252, 249, 0.32);
}
.hero__slider-dot:hover {
  background: rgba(254, 252, 249, 0.65);
}
.hero__slider-dot.is-active {
  background: var(--color-accent-soft);
  width: 64px;
}

/* ============================================
   📦 Service Split — 仕上げ
   ============================================ */

.service-split-section {
  padding-top: clamp(96px, 11vw, 140px);
  padding-bottom: clamp(96px, 11vw, 140px);
}

.service-split__lead .section__en {
  text-align: left;
  margin-left: 0;
  display: block;
}
.service-split__lead .section__jp {
  text-align: left;
  display: inline-block;
  padding: 0 0 0 36px;
}
.service-split__lead .section__jp::before {
  left: 0;
  right: auto;
  width: 24px;
}
.service-split__lead .section__jp::after {
  display: none;
}

.service-split__copy {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  letter-spacing: 0.1em;
  line-height: 2.1;
  font-weight: 400;
  color: var(--color-ink);
  margin-top: 36px;
  margin-bottom: 32px;
}

.service-split__desc {
  font-size: 0.9rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: var(--color-ink-soft);
}

.service-stack-item {
  border: 1px solid var(--color-line-soft);
  background: var(--color-bg);
  border-radius: var(--radius-sm);
}
.service-stack-item__visual {
  filter: grayscale(0.3) brightness(0.93);
}
.service-stack-item__title {
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  letter-spacing: 0.12em;
  line-height: 1.6;
}
.service-stack-item__brand {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  margin-top: -2px;
}
.service-stack-item__desc {
  font-size: 0.84rem;
  line-height: 1.95;
  margin: 12px 0;
}

/* ============================================
   📰 News — 仕上げ
   ============================================ */

.news-section {
  padding-top: clamp(96px, 11vw, 140px);
  padding-bottom: clamp(96px, 11vw, 140px);
}

.news-split__head .section__en {
  text-align: left;
  display: block;
}
.news-split__head .section__jp {
  text-align: left;
  display: inline-block;
  padding: 0 0 0 36px;
}
.news-split__head .section__jp::before {
  left: 0;
  right: auto;
  width: 24px;
}
.news-split__head .section__jp::after {
  display: none;
}

.news-split__copy {
  margin-top: 32px;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  letter-spacing: 0.1em;
  line-height: 2.1;
}

.news-card {
  border-top-color: var(--color-line-soft);
}
.news-card:last-child {
  border-bottom-color: var(--color-line-soft);
}
.news-card__date {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
}
.news-card__category {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  padding: 5px 14px;
  font-weight: 500;
}
.news-card__title {
  font-size: clamp(0.96rem, 1.3vw, 1.1rem);
  letter-spacing: 0.06em;
}
.news-card__excerpt {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--color-ink-muted);
}

/* ============================================
   🃏 Card Components 統一
   ============================================ */

.feature-points li,
.contact-channels__item,
.guest-card__feature,
.service-stack-item,
.related-news-card,
.store-info,
.cta-box-dark {
  border-radius: var(--radius-sm);
}

.feature-points li {
  padding: 44px 32px;
  border: 1px solid var(--color-line-soft);
}
.feature-points li h4 {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin: 8px 0 18px;
  line-height: 1.65;
}
.feature-points li p {
  font-size: 0.86rem;
  line-height: 2;
}

.contact-channels__item {
  padding: 48px 32px 40px;
  border: 1px solid var(--color-line-soft);
}
.contact-channels__icon {
  width: 60px;
  height: 60px;
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.contact-channels__title {
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.contact-channels__desc {
  font-size: 0.84rem;
  line-height: 2;
  margin-bottom: 28px;
}

/* ============================================
   🔘 Button — 統一
   ============================================ */

.btn {
  padding: 16px 36px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base);
}
.btn::before {
  transition: transform var(--transition-base);
}

/* ============================================
   👤 Profile Box — 仕上げ
   ============================================ */

.profile-box__role {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  margin-bottom: 14px;
}
.profile-box__name {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: 0.18em;
  margin-bottom: 32px;
  padding-bottom: 24px;
}
.profile-box__desc {
  font-size: 0.92rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

/* ============================================
   🏪 Store info — 仕上げ
   ============================================ */

.store-info {
  padding: 48px 36px 40px;
  border: 1px solid var(--color-line-soft);
}
.store-info__logo {
  margin-bottom: 20px;
}
.store-info__name {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: 0.14em;
}
.store-info__sub {
  font-size: 0.68rem;
  letter-spacing: 0.36em;
}
.store-info__address {
  font-size: 0.85rem;
  line-height: 2;
  margin-top: 6px;
}
.store-info__note {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  line-height: 2;
  padding-top: 24px;
  margin-top: 28px;
}
.store-info__link {
  padding: 14px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-family: "Lora", serif;
}

/* ============================================
   📋 Company info — 仕上げ
   ============================================ */

.company-info__row {
  grid-template-columns: 180px 1fr;
  padding: 28px 0;
  gap: 40px;
}
.company-info__row dt {
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  font-weight: 500;
  padding-top: 4px;
}
.company-info__row dd {
  font-size: 0.92rem;
  line-height: 2;
}

/* ============================================
   🧭 Header — 仕上げ
   ============================================ */

.header {
  height: 88px;
}
.drawer--active {
  transform: translateY(88px);
}
.header__inner {
  padding: 0 clamp(24px, 4vw, 48px);
}
.header__link {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
}
.header__link-jp {
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  margin-top: 4px;
}
.header__list {
  gap: 32px;
}

/* ============================================
   👣 Footer — 仕上げ
   ============================================ */

.footer {
  padding-top: clamp(72px, 9vw, 104px);
  padding-bottom: 32px;
}
.footer__top {
  padding-bottom: 56px;
}
.footer__address {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 2;
  margin-top: 8px;
}
.footer__sns a {
  width: 38px;
  height: 38px;
  font-size: 0.92rem;
}
.footer__sitemap {
  gap: clamp(32px, 5vw, 80px);
}
.footer__sitemap-heading {
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  margin-bottom: 24px;
}
.footer__sitemap-col ul li {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  line-height: 1.7;
}
.footer__copy {
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  margin-top: 40px;
}

/* ============================================
   🧪 Sub-hero — 仕上げ
   ============================================ */

.sub-hero {
  height: clamp(280px, 38vw, 420px);
  filter: grayscale(0.32) brightness(0.93);
}
.sub-hero::before {
  background: linear-gradient(135deg, rgba(31, 20, 16, 0.58) 0%, rgba(168, 117, 83, 0.32) 100%);
}
.sub-hero__title {
  font-family: "Stalemate", cursive;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 0;
  line-height: 1.1;
  font-weight: 400;
}
.sub-hero__subtitle {
  margin-top: 14px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  font-weight: 500;
}

/* ============================================
   📂 Breadcrumb — 仕上げ
   ============================================ */

.breadcrumb {
  padding: 18px 0;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

/* ============================================
   🌐 Section base — section margin整理
   ============================================ */

.section {
  padding-top: clamp(80px, 10vw, 128px);
  padding-bottom: clamp(80px, 10vw, 128px);
}
.section--short-padding {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

/* ============================================
   📄 Single Article — 仕上げ
   ============================================ */

.single-article__header {
  padding-top: clamp(64px, 9vw, 104px);
  padding-bottom: clamp(40px, 6vw, 64px);
}
.single-article__date {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
}
.single-article__title {
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  letter-spacing: 0.14em;
  line-height: 1.85;
  margin-bottom: 36px;
}
.single-article__lead {
  font-size: 0.94rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  padding-top: 32px;
}

.entry-content {
  font-size: 0.96rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
.entry-content h2 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  letter-spacing: 0.1em;
  margin: 3.2em 0 1.2em;
  padding-bottom: 22px;
}
.entry-content h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  letter-spacing: 0.08em;
  margin: 2.6em 0 0.8em;
}
.entry-content blockquote {
  padding: 36px 40px;
  margin: 2.6em 0;
}
.entry-content blockquote p {
  font-size: 1rem;
  line-height: 2.05;
}

.single-article__nav-label {
  font-size: 0.72rem;
  letter-spacing: 0.36em;
}
.single-article__nav-title {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.related-news-card__title {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

/* ============================================
   ⚙️ Misc — 細部の整理
   ============================================ */

/* Section + Section 間にうっすら罫線を入れたいケースは個別に */
.section--company + .section,
.section + .section--company {
  border-top: 1px solid var(--color-line-soft);
}

/* リンクのデフォルト */
a {
  color: inherit;
  text-decoration: none;
}

/* h1-h6 デフォルトリセット */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

/* スクロールバー（任意・上品に） */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-soft);
}
::-webkit-scrollbar-thumb {
  background: var(--color-line);
  border: 2px solid var(--color-bg-soft);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-ink-faint);
}

/* 全要素のフォーカスリングを上品に */
*:focus {
  outline: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 1px solid var(--color-accent);
  outline-offset: 3px;
}

/* セクション英字（service-split/news-split内）の位置調整 */
.service-split__lead .section__en,
.news-split__head .section__en {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  margin-bottom: 4px;
}

/* SP 調整 */
@media (max-width: 640px) {
  .section__en {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }
  .section__jp {
    font-size: 0.72rem;
    letter-spacing: 0.32em;
  }
  .sub-hero__title {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }
  .hero__eyebrow {
    letter-spacing: 0.28em;
    margin-bottom: 28px;
    padding-left: 36px;
  }
  .hero--split .hero__catchcopy {
    line-height: 2.1;
    letter-spacing: 0.1em;
  }
}


/* ============================================
   🅰️ Section Head — 全ページ統一（左寄せ・片側装飾線）
   トップservice/newsのスタイルを全セクション標準化
   ============================================ */

.section__head {
  text-align: left;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section__en {
  display: block;
  font-family: "Stalemate", cursive;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  color: var(--color-ink);
  margin-bottom: 8px;
  text-transform: none;
}
/* 装飾線は完全に削除（左寄せ） */
.section__en::before,
.section__en::after {
  display: none;
}

.section__jp {
  display: inline-block;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: var(--color-ink-muted);
  line-height: 1.6;
  position: relative;
  padding: 0 0 0 36px;
}
/* 左側のみに装飾線 */
.section__jp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--color-ink-faint);
  opacity: 0.6;
}
.section__jp::after {
  display: none;
}

/* リードテキストも左寄せに */
.section__lead {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 640px;
  margin-top: 28px;
}

/* section__body の中央寄せをデフォルトで解除 */
.section__body {
  max-width: 760px;
  margin: 0 auto;
}
.section__body.text-center {
  text-align: center;
}

/* Concept / Profile / Overview などのテキスト中央寄せが必要なケースは保持 */
.section__body.text-center p {
  text-align: center;
}

/* ============================================
   📐 Section レイアウト調整（左寄せ統一に伴う調整）
   ============================================ */

/* company.html の Concept セクション（私たちの想い） */
#concept .section__body {
  max-width: 800px;
}

/* company.html の Profile / Overview 系も左寄せ起点に */
#profile .section__head,
#overview .section__head,
#concept .section__head {
  text-align: left;
}

/* contact.html の Contact セクション */
#contact .section__head {
  text-align: left;
}

/* service ページの Concept/Features/Store も同様 */
.section > .container > .section__head {
  text-align: left;
}

/* policy-container の lead は中央化しない */
.policy-container__lead {
  text-align: left;
}


/* ============================================
   🅰️ Sub-hero Title — 他セクション見出しと書体・サイズ統一
   sub-hero の Company/Contact/Privacy Policy を section__en と揃える
   ============================================ */

.sub-hero {
  height: clamp(240px, 32vw, 360px);
  filter: grayscale(0.32) brightness(0.92);
  display: flex;
  align-items: center;
  text-align: left;
}

.sub-hero::before {
  background: linear-gradient(135deg, rgba(31, 20, 16, 0.62) 0%, rgba(168, 117, 83, 0.34) 100%);
}

.sub-hero__content {
  max-width: var(--container-base);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  width: 100%;
  text-align: left;
}

.sub-hero__title {
  font-family: "Stalemate", cursive;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: none;
}

.sub-hero__subtitle {
  display: inline-block;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  position: relative;
  padding: 0 0 0 36px;
  margin-top: 0;
}
.sub-hero__subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
  .sub-hero {
    height: clamp(200px, 40vw, 280px);
  }
  .sub-hero__title {
    font-size: clamp(2.2rem, 9vw, 3.6rem);
  }
  .sub-hero__subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.32em;
  }
}


/* ============================================
   🅰️ Section Links — Profile/Company/Contact 統一
   英字主役（Stalemate）× 和文ラベル（Shippori＋装飾線）
   ============================================ */

.section-links__en {
  display: block;
  font-family: "Stalemate", cursive;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 12px;
  opacity: 1;
  text-transform: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.section-links__title {
  display: inline-block;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  padding: 0 0 0 34px;
}
.section-links__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.section-links__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}

.section-links__arrow {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  transition: transform var(--transition-base), color var(--transition-base);
}

.section-links__content {
  background: linear-gradient(180deg, rgba(31, 20, 16, 0.28) 0%, rgba(31, 20, 16, 0.75) 100%);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 44px);
}

.section-links__item:hover .section-links__arrow {
  transform: translateX(6px);
  color: var(--color-accent-soft);
}

@media (max-width: 640px) {
  .section-links__en {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
  .section-links__title {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    padding-left: 28px;
  }
  .section-links__title::before {
    width: 16px;
  }
}


/* ============================================
   📰 News List — 1カラム スタックレイアウト
   ============================================ */

.news-list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.news-list .news-card {
  border-top: 1px solid var(--color-line-soft);
  position: relative;
  transition: background-color var(--transition-base);
}
.news-list .news-card:last-child {
  border-bottom: 1px solid var(--color-line-soft);
}

.news-list .news-card__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(24px, 3vw, 36px) clamp(12px, 2vw, 24px);
  color: inherit;
  text-decoration: none;
  transition: padding var(--transition-base);
}

.news-list .news-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  min-width: 110px;
}
.news-list .news-card__date {
  font-family: "Lora", serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--color-ink-muted);
}
.news-list .news-card__category {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  padding: 4px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
}

.news-list .news-card__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--color-ink);
  margin: 0 0 6px;
  padding-right: 0;
}
.news-list .news-card__excerpt {
  font-size: 0.84rem;
  line-height: 1.95;
  color: var(--color-ink-muted);
  margin: 0;
  padding-right: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list .news-card__link::after {
  content: "→";
  position: static;
  transform: none;
  font-family: "Lora", serif;
  font-size: 1.1rem;
  color: var(--color-accent);
  transition: transform var(--transition-base), color var(--transition-base);
  justify-self: end;
}
.news-list .news-card:hover {
  background-color: var(--color-bg);
}
.news-list .news-card:hover .news-card__link {
  padding-left: clamp(20px, 3vw, 36px);
  padding-right: clamp(20px, 3vw, 36px);
}
.news-list .news-card:hover .news-card__link::after {
  transform: translateX(6px);
}
.news-list .news-card:hover .news-card__title {
  color: var(--color-accent-deep);
}

@media (max-width: 720px) {
  .news-list .news-card__link {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .news-list .news-card__meta {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    min-width: 0;
  }
  .news-list .news-card__excerpt {
    display: none;
  }
  .news-list .news-card__link::after {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .news-list .news-card:hover .news-card__link::after {
    transform: translateY(-50%) translateX(6px);
  }
}


/* ============================================
   🏠 Top Page Refinement — レイアウト磨き上げ
   ============================================ */

/* ============================================
   🎬 Hero — 左カラムの呼吸を最適化
   ============================================ */

.hero.hero--split {
  height: clamp(620px, 92vh, 880px);
  min-height: 560px;
}

.hero--split .hero__content {
  padding: clamp(64px, 7vw, 120px) clamp(32px, 6vw, 96px);
}

.hero--split .hero__copy {
  max-width: 540px;
}

.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  margin-bottom: clamp(32px, 4vw, 56px);
  padding-left: 50px;
}
.hero__eyebrow::before {
  width: 36px;
}

.hero--split .hero__catchcopy {
  font-size: clamp(1.75rem, 3.4vw, 2.8rem);
  line-height: 2.1;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.hero--split .hero__info {
  font-size: 0.86rem;
  line-height: 2.3;
  letter-spacing: 0.08em;
  padding-left: 50px;
  position: relative;
}
.hero--split .hero__info::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--color-ink-faint);
}

/* 左カラムの装飾線を控えめに */
.hero--split .hero__content::before {
  top: clamp(48px, 6vw, 72px);
  left: clamp(32px, 6vw, 96px);
  width: 40px;
  background: var(--color-accent);
  opacity: 0.5;
}
.hero--split .hero__content::after {
  bottom: clamp(48px, 6vw, 72px);
  right: clamp(32px, 6vw, 96px);
  width: 1px;
  height: 40px;
  background: var(--color-accent);
  opacity: 0.4;
}

/* Scroll Down 位置調整 */
.hero--split .hero__scroll {
  bottom: 28px;
  font-size: 0.6rem;
  letter-spacing: 0.42em;
}

/* ============================================
   🎯 セクション間セパレータ — 視覚的リズム強化
   ============================================ */

/* Service セクション上部に短い水平装飾線 */
.service-split-section {
  position: relative;
}
.service-split-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: var(--color-accent);
  opacity: 0.4;
}

/* News セクション上部に短い装飾線（section--company の場合） */
.news-section {
  position: relative;
}
.news-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: var(--color-accent);
  opacity: 0.4;
}

/* ============================================
   📦 Service Split — 細部調整
   ============================================ */

.service-split {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: start;
}

.service-split__lead {
  top: 128px;
}

.service-split__lead .section__en {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  margin-bottom: 6px;
}

.service-split__copy {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  letter-spacing: 0.12em;
  line-height: 2.1;
  font-weight: 400;
  color: var(--color-ink);
  margin-top: 40px;
  margin-bottom: 36px;
}

.service-split__desc {
  font-size: 0.88rem;
  line-height: 2.3;
  letter-spacing: 0.06em;
}

.service-split__items {
  gap: 24px;
}

/* スタックカードの内部バランス */
.service-stack-item {
  grid-template-columns: minmax(200px, 38%) 1fr;
  min-height: 220px;
}

.service-stack-item__visual {
  min-height: 100%;
}

.service-stack-item__body {
  padding: 32px clamp(28px, 3vw, 40px);
  gap: 10px;
}

.service-stack-item__meta {
  gap: 14px;
  margin-bottom: 6px;
}

.service-stack-item__number {
  font-size: 0.85rem;
  letter-spacing: 0.36em;
}

.service-stack-item__category {
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  padding-left: 16px;
}
.service-stack-item__category::before {
  width: 10px;
}

.service-stack-item__title {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.service-stack-item__brand {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  margin-top: 2px;
}

.service-stack-item__desc {
  font-size: 0.84rem;
  line-height: 2;
  color: var(--color-ink-soft);
  margin: 10px 0 4px;
}

.service-stack-item__arrow {
  margin-top: auto;
  font-size: 1.2rem;
  color: var(--color-accent);
}

/* ============================================
   📰 News List — 仕上げ
   ============================================ */

.news-section .section__head {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.news-section .section__lead {
  margin-top: 24px;
  max-width: 720px;
}

.news-list {
  max-width: 960px;
  margin: clamp(40px, 5vw, 56px) auto 0;
}

.news-list .news-card__link {
  padding: clamp(28px, 3.4vw, 40px) clamp(16px, 2vw, 28px);
}

.news-list .news-card__meta {
  min-width: 130px;
  gap: 12px;
}

/* ============================================
   🃏 Section Links — レイアウト改善
   ============================================ */

.section-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-line-soft);
}

.section-links__item {
  position: relative;
  height: clamp(360px, 32vw, 480px);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
}

.section-links__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.45) brightness(0.85);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
  z-index: 0;
}
.section-links__item:hover .section-links__bg {
  transform: scale(1.08);
  filter: grayscale(0.2) brightness(0.95);
}

.section-links__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 44px);
  background: linear-gradient(180deg, rgba(31, 20, 16, 0) 0%, rgba(31, 20, 16, 0.4) 40%, rgba(31, 20, 16, 0.82) 100%);
  color: #ffffff;
}

.section-links__en {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.section-links__title {
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.section-links__desc {
  font-size: 0.78rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 6px;
  margin-bottom: 24px;
}

.section-links__arrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  font-family: "Lora", serif;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}
.section-links__arrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-accent-soft);
  transition: width var(--transition-base);
}
.section-links__item:hover .section-links__arrow {
  color: var(--color-accent-soft);
}
.section-links__item:hover .section-links__arrow::after {
  width: 40px;
}

@media (max-width: 900px) {
  .section-links {
    grid-template-columns: 1fr;
  }
  .section-links__item {
    height: clamp(280px, 50vw, 400px);
  }
}

/* ============================================
   🌫 セクション背景リズム — 連続感の調整
   ============================================ */

/* Hero白系 → Service白系 → News オフ白 → Section Links カラー → Footer 漆黒 */
.service-split-section {
  background: var(--color-bg);
}

.news-section {
  background: var(--color-bg-soft);
}

/* news-section と service-split-section の境目を装飾線で */
.service-split-section + .news-section {
  border-top: none;
}

/* News と Section Links の境目を強調 */
.news-section + .section-links {
  margin-top: 0;
}

/* ============================================
   🎈 Hero スライダー — 切り替え感調整
   ============================================ */

.hero__slider {
  background: var(--color-ink);
}

.hero__slide {
  background-color: var(--color-bg);
}

.hero__slider::after {
  background: linear-gradient(135deg, rgba(31, 20, 16, 0.16) 0%, rgba(168, 117, 83, 0.05) 60%, rgba(31, 20, 16, 0.28) 100%);
}

/* スライダーコントロール位置・サイズ */
.hero__slider-controls {
  bottom: clamp(28px, 4vw, 48px);
  gap: 16px;
}
.hero__slider-dot {
  width: 32px;
  height: 2px;
}
.hero__slider-dot.is-active {
  width: 56px;
  background: var(--color-accent-soft);
}

/* ============================================
   📱 SP 全体調整
   ============================================ */

@media (max-width: 900px) {
  .hero.hero--split {
    height: auto;
    min-height: 100vh;
  }
  .hero--split .hero__inner {
    grid-template-rows: minmax(280px, 50vh) 1fr;
  }
  .hero--split .hero__content {
    padding: clamp(48px, 8vw, 72px) clamp(28px, 5vw, 48px) clamp(64px, 8vw, 80px);
  }
  .service-split-section::before,
  .news-section::before {
    height: 40px;
  }
}

@media (max-width: 640px) {
  .hero__eyebrow {
    padding-left: 36px;
    margin-bottom: 24px;
  }
  .hero__eyebrow::before {
    width: 22px;
  }
  .hero--split .hero__info {
    padding-left: 0;
  }
  .hero--split .hero__info::before {
    display: none;
  }
  .service-stack-item {
    grid-template-columns: 1fr;
  }
  .service-stack-item__visual {
    min-height: 180px;
  }
}


/* ============================================
   📰 News Card — 縦スタックレイアウト
   日付＋カテゴリ → タイトル → 抜粋 を縦に積む
   ============================================ */

.news-list .news-card__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(28px, 3.4vw, 40px) clamp(48px, 5vw, 64px) clamp(28px, 3.4vw, 40px) clamp(8px, 2vw, 24px);
  position: relative;
  text-align: left;
}

/* メタは横並び（日付＋カテゴリ） */
.news-list .news-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  min-width: 0;
  margin-bottom: 4px;
}

/* タイトル */
.news-list .news-card__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.75;
  color: var(--color-ink);
  margin: 0;
  padding: 0;
}

/* 抜粋 */
.news-list .news-card__excerpt {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--color-ink-muted);
  margin: 0;
  padding: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 760px;
}

/* 矢印：右側に縦中央で絶対配置 */
.news-list .news-card__link::after {
  content: "→";
  position: absolute;
  right: clamp(12px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  font-family: "Lora", serif;
  font-size: 1.2rem;
  color: var(--color-accent);
  transition: transform var(--transition-base), color var(--transition-base);
  justify-self: auto;
}

/* hover調整 */
.news-list .news-card:hover .news-card__link {
  padding-left: clamp(20px, 3vw, 36px);
}
.news-list .news-card:hover .news-card__link::after {
  transform: translateY(-50%) translateX(8px);
  color: var(--color-accent-deep);
}

/* SP */
@media (max-width: 640px) {
  .news-list .news-card__link {
    padding: 24px 44px 24px 12px;
    gap: 12px;
  }
  .news-list .news-card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
  }
}


/* ============================================
   📇 Contact Channels — 2×2 固定レイアウト
   ============================================ */

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 880px;
  margin: clamp(40px, 5vw, 56px) auto 0;
}

.contact-channels__item {
  padding: clamp(40px, 4vw, 56px) clamp(28px, 3vw, 40px);
}

@media (max-width: 640px) {
  .contact-channels {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   📇 Contact Channels — 3カラム（3事業の問い合わせ）
   ============================================ */

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 1080px;
  margin: clamp(40px, 5vw, 56px) auto 0;
}

.contact-channels__item {
  padding: clamp(40px, 4vw, 56px) clamp(24px, 3vw, 36px);
}

@media (max-width: 900px) {
  .contact-channels {
    grid-template-columns: 1fr;
    max-width: 540px;
  }
}

/* ============================================
   📝 Contact Form — 埋め込みフォーム
   ============================================ */

.contact-form-section {
  padding-top: clamp(80px, 10vw, 128px);
  padding-bottom: clamp(80px, 10vw, 128px);
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
}
.contact-form__row--split > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: var(--color-ink);
  font-weight: 500;
}

.contact-form__required,
.contact-form__optional {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.contact-form__required {
  background: var(--color-accent-deep);
  color: #ffffff;
}
.contact-form__optional {
  background: transparent;
  border: 1px solid var(--color-line);
  color: var(--color-ink-muted);
}

.contact-form__input,
.contact-form__textarea,
.contact-form__select {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  color: var(--color-ink);
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  line-height: 1.6;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(168, 117, 83, 0.12);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 200px;
}

.contact-form__select-wrap {
  position: relative;
}
.contact-form__select-wrap::after {
  content: "▾";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-ink-muted);
  pointer-events: none;
  font-size: 0.9rem;
}
.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: none;
  padding-right: 48px;
  cursor: pointer;
}

/* プライバシーポリシー同意 */
.contact-form__privacy {
  display: flex;
  justify-content: center;
  padding: clamp(20px, 2.5vw, 28px) 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  margin: 16px 0 0;
}
.contact-form__check {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--color-ink-soft);
}
.contact-form__check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.contact-form__check-mark {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-ink-muted);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  position: relative;
  transition: all var(--transition-base);
  flex-shrink: 0;
}
.contact-form__check-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.contact-form__check input:checked + .contact-form__check-mark {
  background: var(--color-accent-deep);
  border-color: var(--color-accent-deep);
}
.contact-form__check input:checked + .contact-form__check-mark::after {
  opacity: 1;
}
.contact-form__check-text a {
  color: var(--color-accent-deep);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 1px;
  transition: opacity var(--transition-base);
}
.contact-form__check-text a:hover {
  opacity: 0.65;
}
.contact-form__check input:focus-visible + .contact-form__check-mark {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* 送信ボタン */
.contact-form__submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.contact-form__submit-btn {
  min-width: 260px;
  padding: 18px 48px;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
}
.contact-form__submit-btn i {
  margin-right: 8px;
}
.contact-form__note {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--color-ink-muted);
  line-height: 1.8;
}
.contact-form__note strong {
  color: var(--color-accent-deep);
  font-weight: 500;
}

/* SP */
@media (max-width: 640px) {
  .contact-form__row--split {
    grid-template-columns: 1fr;
  }
  .contact-form__submit-btn {
    min-width: 0;
    width: 100%;
  }
}


/* ============================================
   🔘 Button — hover時のテキスト視認性修正
   isolation + z-index で前面に確実に出す
   ============================================ */

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: "Lora", serif;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  font-weight: 500;
  border: 1px solid var(--color-ink);
  background-color: transparent;
  color: var(--color-ink);
  cursor: pointer;
  overflow: hidden;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition-base), border-color var(--transition-base);
}

/* ::before（hover時のスライド背景）を最下層に */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
  z-index: -1;
}

/* 直接の子要素（i, span等）も前面に明示 */
.btn > * {
  position: relative;
  z-index: 1;
}

/* hover */
.btn:hover {
  color: #ffffff;
  border-color: var(--color-ink);
}
.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* バリエーション ─ outline-dark */
.btn--outline-dark {
  border-color: var(--color-ink);
  color: var(--color-ink);
}
.btn--outline-dark::before {
  background: var(--color-accent-deep);
}
.btn--outline-dark:hover {
  color: #ffffff;
  border-color: var(--color-accent-deep);
}

/* バリエーション ─ primary（最初から塗りつぶし） */
.btn--primary {
  background: var(--color-accent-deep);
  border-color: var(--color-accent-deep);
  color: #ffffff;
}
.btn--primary::before {
  background: var(--color-ink);
}
.btn--primary:hover {
  color: #ffffff;
  border-color: var(--color-ink);
}

/* バリエーション ─ white（ダーク背景上） */
.btn--white {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}
.btn--white::before {
  background: #ffffff;
}
.btn--white:hover {
  color: var(--color-ink);
  border-color: #ffffff;
}

/* アイコンの色は親colorを継承 */
.btn i {
  color: currentColor;
}


/* service-* の Store セクション access-map をstore-infoカード幅に揃える */
#store .access-map {
  max-width: 960px;
  margin: clamp(40px, 5vw, 56px) auto 0;
  padding: 0;
}
#store .access-map iframe {
  display: block;
  width: 100%;
  filter: grayscale(0.45) sepia(0.06);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-sm);
}

/* ============================================
   🗺 Google Maps — サイズ・比率最適化
   ============================================ */

/* company.html + service-* 全体共通 */
.access-map {
  max-width: 960px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  padding: 0 clamp(16px, 3vw, 32px);
  width: 100%;
  box-sizing: border-box;
}

.access-map iframe {
  display: block;
  width: 100%;
  height: clamp(380px, 52vh, 560px);
  filter: grayscale(0.4) sepia(0.04) contrast(0.96);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-sm);
  border: 0;
  transition: filter var(--transition-base);
}

/* hover時：少しトーン戻して目立たせる */
.access-map iframe:hover {
  filter: grayscale(0.15) sepia(0.02) contrast(1);
}

/* SP: 縦に圧縮 */
@media (max-width: 768px) {
  .access-map iframe {
    height: clamp(320px, 56vw, 460px);
  }
}
@media (max-width: 480px) {
  .access-map iframe {
    height: clamp(280px, 62vw, 380px);
  }
}

/* service-* の Store セクション内マップ（既存スタイルとの整合） */
#store .access-map {
  max-width: 960px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  padding: 0 clamp(16px, 3vw, 32px);
}
#store .access-map iframe {
  height: clamp(380px, 52vh, 560px);
}
@media (max-width: 768px) {
  #store .access-map iframe {
    height: clamp(320px, 56vw, 460px);
  }
}


/* ============================================
   ✨ Feature Points Icon — 3事業の特長アイコン
   ============================================ */

.feature-points__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--color-bg-warm);
  color: var(--color-accent-deep);
  font-size: 1.4rem;
  position: relative;
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

/* hover時にアクセントカラー反転 */
.feature-points li:hover .feature-points__icon {
  background: var(--color-accent-deep);
  color: var(--color-bg-warm);
  transform: scale(1.05);
}

/* アイコンの上に「番号」感を出す装飾線 */
.feature-points li {
  position: relative;
}
.feature-points li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
  opacity: 0.8;
}

@media (max-width: 640px) {
  .feature-points__icon {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}


/* ============================================
   🎨 Concept Split — 2カラム（コピー左 / 画像右）
   ============================================ */

.concept-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.concept-split__body {
  display: flex;
  flex-direction: column;
}

.concept-split__body .section__head {
  margin-bottom: 36px;
}

.concept-split__copy {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.1;
  color: var(--color-ink);
  margin: 0 0 28px;
}

.concept-split__desc {
  font-size: 0.92rem;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: var(--color-ink-soft);
  margin: 0;
}

.concept-split__visual {
  position: relative;
}

.concept-split__visual img {
  display: block;
  width: 100%;
  height: clamp(360px, 48vw, 540px);
  object-fit: cover;
  filter: grayscale(0.25) sepia(0.04);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  transition: filter var(--transition-base);
}

.concept-split__visual img:hover {
  filter: grayscale(0.1) sepia(0.02);
}

/* 画像の上に控えめな装飾線（左上に） */
.concept-split__visual::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 64px;
  height: 64px;
  border-top: 1px solid var(--color-accent);
  border-left: 1px solid var(--color-accent);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
/* 画像の右下にも */
.concept-split__visual::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 64px;
  height: 64px;
  border-bottom: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/* レスポンシブ：900px以下で縦並び */
@media (max-width: 900px) {
  .concept-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .concept-split__visual img {
    height: clamp(280px, 50vw, 400px);
  }
  .concept-split__visual::before,
  .concept-split__visual::after {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 640px) {
  .concept-split__copy {
    line-height: 2;
    letter-spacing: 0.08em;
  }
  .concept-split__visual img {
    height: clamp(240px, 56vw, 340px);
  }
}

/* =================================================
   News Archive (news.html 専用)
   ================================================= */
.section--news-archive {
  padding-top: 80px;
  padding-bottom: 100px;
}

.news-filter {
  margin-top: 32px;
  margin-bottom: 48px;
}
.news-filter__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-filter__item {
  margin: 0;
}
.news-filter__link {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #dddddd;
  background: #ffffff;
  font-family: "Lora", serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: #0e0000;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.news-filter__link:hover {
  background-color: #2a2522;
  border-color: #2a2522;
  color: #ffffff;
}
.news-filter__link.is-active {
  background-color: #0e0000;
  border-color: #0e0000;
  color: #ffffff;
  pointer-events: none;
}

.news-list--archive {
  margin-top: 16px;
}

.news-card__category--recruit {
  background-color: #e8e3dc;
  color: #5a5045;
}

@media screen and (max-width: 767px) {
  .news-filter__list {
    gap: 6px;
  }
  .news-filter__link {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
}


/* =================================================
   WordPress paginate_links 互換（.page-numbers）
   ================================================= */
.pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #dddddd;
  background: #ffffff;
  font-family: "Lora", serif;
  font-size: 0.95rem;
  color: #0e0000;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.pagination .page-numbers:hover {
  background-color: #0e0000;
  color: #ffffff;
}
.pagination .page-numbers.current {
  background-color: #0e0000;
  color: #ffffff;
  pointer-events: none;
}
.pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  pointer-events: none;
}

/* ============================================
   Contact Form 7 互換性調整
   wpautopは functions.php で無効化済み。
   CF7 form 自体に .contact-form クラスが付かないため、
   .wpcf7-form 側に同等の Flex layout を再適用する。
   ============================================ */

/* CF7 form 全体を Flex 化（旧 .contact-form のレイアウトを継承） */
.contact-form-section .wpcf7 form.wpcf7-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
}

/* hidden-fields-container は flex layout から除外 */
.contact-form-section .wpcf7-form > .hidden-fields-container {
  display: none;
}

/* CF7挿入ラッパーをブロック化（input幅100%適用のため） */
.contact-form-section .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* input/textarea/select の幅確実化 */
.contact-form-section .wpcf7-form-control.contact-form__input,
.contact-form-section .wpcf7-form-control.contact-form__textarea,
.contact-form-section .wpcf7-form-control.contact-form__select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* リストアイテム余白除去 */
.contact-form-section .wpcf7-list-item {
  margin: 0;
}

/* バリデーションエラー */
.contact-form-section .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 0.78rem;
  color: #d23939;
}

/* 送信結果メッセージ */
.contact-form-section .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
}

/* プライバシーポリシー同意（CF7 acceptance フィールド対応）
   全幅ラッパーをこの行だけ inline-block に戻し、テキストと並べる */
.contact-form-section .contact-form__privacy {
  align-items: center;
  gap: 12px;
}
.contact-form-section .contact-form__privacy .wpcf7-form-control-wrap {
  display: inline-block;
  width: auto;
  flex: 0 0 auto;
}
.contact-form-section .contact-form__privacy .wpcf7-list-item {
  display: inline-flex;
  margin: 0;
}
.contact-form-section .contact-form__privacy .wpcf7-list-item label {
  display: inline-flex;
  margin: 0;
}
.contact-form-section .contact-form__privacy input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--color-accent-deep);
}
.contact-form-section .contact-form__privacy .contact-form__check-text {
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--color-ink-soft);
  flex: 0 1 auto;
}
