@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: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  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(80px);
}
.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);
}
.drawer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.drawer__sns {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.drawer__sns a {
  font-size: 1.6rem;
  color: #666666;
  transition: color 0.3s, transform 0.3s;
}
.drawer__sns a:hover {
  color: #0e0000;
  transform: translateY(-2px);
  opacity: 1;
}

.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__brand {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  letter-spacing: 0.08em;
}
.footer__address {
  margin-top: 5px;
}
.footer__hours {
  margin-top: 4px;
  font-size: 0.8rem;
}
.footer__sns {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}
.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__line {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.footer__line-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s, background-color 0.3s;
}
.footer__line-btn .fa-line {
  font-size: 1.2em;
}
.footer__line-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
  opacity: 1;
}
.footer__line-btn--sub {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.15);
}
.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__copy {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.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: 0 auto;
  padding: 15px 30px;
  font-size: 1.1rem;
  width: 80%;
  max-width: 280px;
  justify-content: center;
}
.drawer__btn--outline {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.drawer__btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.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__presenter {
  font-family: "Lora", serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  opacity: 0.7;
  margin-bottom: 16px;
}
.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__open {
  font-family: "Lora", serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-top: 24px;
  opacity: 0.8;
}
.hero__open-date {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-right: 4px;
}
.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;
}

/* =================================================
   Message Cards (front-page)
   ================================================= */
.message-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 40px auto 0;
}
@media (max-width: 768px) {
  .message-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.message-cards__item {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid #dddddd;
  background-color: #ffffff;
}
.message-cards__icon {
  font-size: 1.8rem;
  color: rgba(14, 0, 0, 0.35);
  margin-bottom: 20px;
}
.message-cards__title {
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: rgba(14, 0, 0, 0.7);
}
.message-cards__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(14, 0, 0, 0.6);
}

/* =================================================
   Synergy Mini Diagram (front-page)
   ================================================= */
.synergy-mini {
  max-width: 560px;
  margin: 0 auto 40px;
}
.synergy-mini__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .synergy-mini__row {
    gap: 10px;
  }
}
.synergy-mini__card {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 24px 16px;
  border: 1px solid #dddddd;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .synergy-mini__card {
    padding: 16px 10px;
  }
}
.synergy-mini__card i {
  display: block;
  font-size: 1.4rem;
  color: rgba(14, 0, 0, 0.4);
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .synergy-mini__card i {
    font-size: 1.2rem;
  }
}
.synergy-mini__card span {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.85rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .synergy-mini__card span {
    font-size: 0.75rem;
  }
}
.synergy-mini__connector {
  flex-shrink: 0;
  color: rgba(14, 0, 0, 0.2);
  font-size: 1rem;
}
@media (max-width: 768px) {
  .synergy-mini__connector {
    font-size: 0.8rem;
  }
}
.synergy-mini__vertical {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  max-width: 440px;
  margin: 0 auto;
}
.synergy-mini__vertical i {
  color: rgba(14, 0, 0, 0.2);
  font-size: 1rem;
}
.synergy-mini__vertical span {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.8rem;
  color: rgba(14, 0, 0, 0.35);
  letter-spacing: 0.1em;
}

/* =================================================
   CTA Dual (front-page)
   ================================================= */
.cta-dual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cta-dual {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.cta-dual__item {
  text-align: center;
  padding: 50px 30px;
  border: 1px solid #dddddd;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .cta-dual__item {
    padding: 40px 24px;
  }
}
.cta-dual__icon {
  font-size: 1.6rem;
  color: rgba(14, 0, 0, 0.3);
  margin-bottom: 20px;
}
.cta-dual__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.cta-dual__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(14, 0, 0, 0.6);
  margin-bottom: 24px;
}

.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;
}
.profile-box__sns {
  margin-top: 20px;
}
.profile-box__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  padding: 10px 20px;
  border: 1px solid #dddddd;
  transition: background-color 0.3s, color 0.3s;
  letter-spacing: 0.03em;
}
.profile-box__link i {
  font-size: 1.2rem;
}
.profile-box__link:hover {
  background-color: #0e0000;
  color: #ffffff;
  opacity: 1;
}

.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;
  -o-object-fit: cover;
     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__price {
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.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;
  -o-object-fit: cover;
     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;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     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%;
  -o-object-fit: cover;
     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: 8px;
}
.store-info__access, .store-info__hours, .store-info__facility {
  font-size: 0.85rem;
  color: rgba(14, 0, 0, 0.5);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.store-info__access:last-of-type, .store-info__hours:last-of-type, .store-info__facility:last-of-type {
  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;
  -o-object-fit: cover;
     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;
  -o-object-fit: cover;
     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 {
  -webkit-appearance: none;
     -moz-appearance: none;
          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;
}/*# sourceMappingURL=style.css.map */