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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-menu-open {
  overflow: hidden;
}
@media (max-width: 767px) {
  body {
    padding-bottom: 64px;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .wrap {
    padding: 0 20px;
  }
}
.wrap--md {
  max-width: 960px;
}
.wrap--sm {
  max-width: 760px;
}

/* ========================================
	Common Components
======================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3.2rem;
  border-radius: 100px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.button--primary {
  background: linear-gradient(90deg, #821C78, #B6498D);
  color: #fff;
  border: none;
}
.button--primary:hover {
  opacity: 0.8;
}
.button--outline {
  background: transparent;
  color: #B6498D;
  border: 1px solid #B6498D;
}
.button--outline:hover {
  background: #B6498D;
  color: #fff;
}
.button--sm {
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
}
.button--arrow {
  gap: 1rem;
}
.button--arrow::after {
  content: "→";
  font-size: 1.2em;
}
.button--gradient {
  background: linear-gradient(90deg, #821C78, #B6498D);
  color: #fff;
  border: none;
  gap: 0.8rem;
}
.button--gradient:hover {
  opacity: 0.8;
}
.button__icon {
  height: 0.7rem;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.view-more {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-weight: 700;
  font-size: 2rem;
  color: #a51e85;
  transition: opacity 0.3s ease;
}
.view-more:hover {
  opacity: 0.7;
}
.view-more__icon {
  width: 54px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .view-more__icon {
    width: 44px;
  }
}
@media (max-width: 767px) {
  .view-more {
    font-size: 1.6rem;
  }
}

.c-shine {
  position: relative;
  overflow: hidden;
}
.c-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 1;
}
.c-shine:hover::before {
  left: 125%;
}

.js-fade {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  transition: opacity 0.9s ease, filter 0.9s ease, transform 0.9s ease;
}
.js-fade.is-inview {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ----------------------------------------
	step-flow（縦ステップフロー・CSSのみ）
---------------------------------------- */
.step-flow {
  --step-marker-size: 5.6rem;
  --step-line-color: #a51e85;
  --step-gap: 2.8rem;
}
@media (max-width: 767px) {
  .step-flow {
    --step-marker-size: 4.4rem;
    --step-gap: 1.6rem;
  }
}

.step-list {
  position: relative;
  list-style: none;
  padding: 0 0 3.2rem;
  margin: 0 auto;
  max-width: 740px;
}
.step-list::before {
  content: "";
  position: absolute;
  left: calc(var(--step-marker-size) / 2);
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--step-line-color);
}
.step-list::after {
  content: "";
  position: absolute;
  left: calc(var(--step-marker-size) / 2);
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 14px solid var(--step-line-color);
}
.step-list__item + .step-list__item {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .step-list__item + .step-list__item {
    margin-top: 3.2rem;
  }
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--step-gap);
}
.step__marker {
  flex-shrink: 0;
  width: var(--step-marker-size);
  height: var(--step-marker-size);
  border-radius: 50%;
  background: #a51e85;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.step__label {
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .step__label {
    font-size: 0.9rem;
  }
}
.step__number {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .step__number {
    font-size: 1.4rem;
  }
}
.step__title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 2.8rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .step__title {
    font-size: 2.2rem;
  }
}
.step__text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #000;
}
@media (max-width: 767px) {
  .step__text {
    font-size: 1.4rem;
  }
}

/* ========================================
	Header
======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .site-header {
    display: none;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px;
  position: relative;
}
.site-header__left {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.site-header__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  gap: 8px;
  color: #000;
}
.site-header__toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-header__toggle-bars span {
  display: block;
  width: 34px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header__toggle-label {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  font-family: "Marcellus", serif;
}
.site-header__toggle:hover {
  opacity: 0.6;
}
.site-header__icons {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.site-header__icon-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d1ae8b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  transition: opacity 0.3s ease;
}
.site-header__icon-link svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.site-header__icon-link:hover {
  opacity: 0.75;
}
.site-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.15));
  transition: opacity 0.3s ease;
}
.site-header__logo:hover {
  opacity: 0.8;
}
.site-header__recruit.button {
  font-size: 1.2rem;
  padding: 0.9rem 1.6rem;
  white-space: nowrap;
  background: linear-gradient(90deg, #821C78, #B6498D);
  gap: 0.8rem;
  align-items: center;
}
.site-header__recruit-arrow {
  height: 0.7rem;
  width: auto;
  flex-shrink: 0;
}

.site-header-sp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 20px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .site-header-sp {
    display: flex;
  }
}
.site-header-sp__logo {
  width: 140px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.1));
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: linear-gradient(160deg, #fff 40%, #fbe4f4 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.site-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 3.2rem 40px 6rem;
}
@media (max-width: 767px) {
  .site-menu__inner {
    padding: 2.4rem 20px 5rem;
  }
}
.site-menu__close {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: #000;
  transition: opacity 0.3s ease;
}
.site-menu__close:hover {
  opacity: 0.6;
}
.site-menu__close-text {
  font-family: "Marcellus", serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
}
.site-menu__close-icon {
  position: relative;
  width: 22px;
  height: 22px;
}
.site-menu__close-icon span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #000;
  border-radius: 1px;
}
.site-menu__close-icon span:first-child {
  transform: translateY(-50%) rotate(45deg);
}
.site-menu__close-icon span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}
.site-menu__logo {
  width: 180px;
  margin: 2rem 0 4rem;
}
@media (max-width: 767px) {
  .site-menu__logo {
    width: 150px;
    margin: 1.6rem 0 3.2rem;
  }
}
.site-menu__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 8rem;
  width: 100%;
  max-width: 800px;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .site-menu__nav {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.site-menu__list {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .site-menu__list:last-child {
    border-top: none;
  }
}
.site-menu__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.site-menu__item > a,
.site-menu__item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.8rem 0;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: #000;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .site-menu__item > a,
  .site-menu__item > button {
    font-size: 1.6rem;
    padding: 1.6rem 0;
  }
}
.site-menu__item > a:hover,
.site-menu__item > button:hover {
  color: #B6498D;
}
.site-menu__item--split {
  display: flex;
  align-items: center;
  padding: 1.8rem 0;
  gap: 0.4rem;
}
@media (max-width: 767px) {
  .site-menu__item--split {
    padding: 1.6rem 0;
  }
}
.site-menu__item--split > a {
  display: inline;
  width: auto;
  padding: 0;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: #000;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .site-menu__item--split > a {
    font-size: 1.6rem;
  }
}
.site-menu__item--split > a:hover {
  color: #B6498D;
}
.site-menu__item--split .site-menu__sep {
  color: #666;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.site-menu__item--recruit > button {
  color: #B6498D;
  font-weight: 600;
  padding: 1.8rem 0;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .site-menu__item--recruit > button {
    padding: 1.6rem 0;
  }
}
.site-menu__item--recruit > button .site-menu__arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  line-height: 1;
}
.site-menu__item--recruit.is-open .site-menu__arrow {
  transform: rotate(180deg);
}
.site-menu__sub-list {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transition: max-height 0.35s ease;
}
.is-open > .site-menu__sub-list {
  max-height: 400px;
}
.site-menu__sub-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.2rem 0 1.2rem 1.6rem;
}
.site-menu__sub-list li a {
  display: inline;
  font-size: 1.4rem;
  color: #666;
  transition: color 0.3s ease;
}
.site-menu__sub-list li a:first-child::before {
  content: "- ";
}
.site-menu__sub-list li a:hover {
  color: #B6498D;
}
.site-menu__sns {
  display: flex;
  gap: 2rem;
  margin-top: auto;
}
.site-menu__sns-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d1ae8b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  transition: opacity 0.3s ease;
}
.site-menu__sns-link svg {
  width: 28px;
  height: 28px;
}
.site-menu__sns-link:hover {
  opacity: 0.8;
}

/* ========================================
	Footer
======================================== */
.site-footer {
  background: #fff;
  padding: 0 0 4rem;
}
@media (max-width: 767px) {
  .site-footer {
    padding: 0 0 3rem;
  }
}
.site-footer__top-border {
  max-width: 1700px;
  margin: 0 auto;
  border-top: 1px solid #000;
}
@media (max-width: 767px) {
  .site-footer__top-border {
    border-top: 0;
  }
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  padding-top: 4rem;
}
@media (min-width: 951px) {
  .site-footer__inner {
    align-items: flex-start;
    column-gap: 6rem;
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  .site-footer__inner {
    flex-direction: column;
    gap: 3.2rem;
  }
}
@media (max-width: 767px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
    padding-top: 3.2rem;
  }
}
.site-footer__head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 951px) {
  .site-footer__head {
    flex: 4;
    min-width: 0;
  }
}
@media (max-width: 767px) {
  .site-footer__head {
    align-items: center;
    text-align: center;
    width: 100%;
  }
}
.site-footer__logo {
  width: 160px;
  transition: opacity 0.3s ease;
}
.site-footer__logo:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .site-footer__logo {
    width: 130px;
  }
}
.site-footer__info {
  font-size: 1.4rem;
  line-height: 2;
  color: #000;
}
.site-footer__info p + p {
  margin-top: 0.2rem;
}
.site-footer__tel a {
  transition: color 0.3s ease;
}
.site-footer__tel a:hover {
  color: #B6498D;
}
@media (min-width: 768px) {
  .site-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2.4rem;
  }
}
@media (min-width: 951px) {
  .site-footer__nav {
    flex: 8;
    min-width: 0;
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  .site-footer__nav {
    border-top: 1px solid #ddd;
    padding-top: 3.2rem;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .site-footer__nav {
    display: none;
  }
}
.site-footer__nav-col li {
  padding-bottom: 0.7rem;
}
.site-footer__nav-col .sub-item {
  padding-bottom: 0;
}
.site-footer__nav-col a {
  display: inline;
  font-size: 1.3rem;
  color: #000;
  transition: color 0.3s ease;
}
.site-footer__nav-col a:hover {
  color: #B6498D;
}
.site-footer__nav-col .sub-item a {
  padding-left: 1.6rem;
  color: #666;
  font-size: 1.2rem;
}
.site-footer__nav-col .sub-item a::before {
  content: "- ";
}
.site-footer__nav-col .sub-item a + a {
  padding-left: 0;
}
.site-footer__nav-col .sub-item a + a::before {
  content: "";
}
.site-footer__copyright {
  flex: 0 0 100%;
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  letter-spacing: 0.05em;
}

.sp-bottom-nav {
  display: none;
}
@media (max-width: 767px) {
  .sp-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    z-index: 100;
  }
}
.sp-bottom-nav__bar {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
  background: #FAF2F4;
}
.sp-bottom-nav__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B6498D;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.sp-bottom-nav__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.sp-bottom-nav__item:hover {
  opacity: 0.7;
}
.sp-bottom-nav__item--recruit {
  flex: 0 0 auto;
  padding: 0 1.4rem;
}
.sp-bottom-nav__sep {
  width: 1px;
  height: 32px;
  flex-shrink: 0;
  align-self: center;
  background: #B6498D;
  opacity: 0.35;
}
.sp-bottom-nav__toggle {
  width: 64px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #A92480;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.sp-bottom-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
}
.sp-bottom-nav__toggle:hover {
  opacity: 0.85;
}

.pagetop {
  position: fixed;
  right: 2.4rem;
  bottom: 2.4rem;
  z-index: 50;
  width: 82px;
  height: 82px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
@media (max-width: 767px) {
  .pagetop {
    right: 1.6rem;
    bottom: calc(64px + 1.6rem);
    width: 82px;
    height: 82px;
  }
}
.pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.pagetop img {
  width: 100%;
  height: auto;
}

.section-divider-wrap {
  padding: 0 2.7%;
  box-sizing: border-box;
}

.section-divider {
  max-width: 1700px;
  margin: 0 auto;
  border-top: 1px solid #b1b1b1;
}

/* ========================================
	Page: Home
======================================== */
.hero-sidetext {
  display: none;
}
@media (min-width: 1700px) {
  .hero-sidetext {
    display: block;
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    white-space: nowrap;
    font-family: "Marcellus", serif;
    font-size: 4.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(182, 73, 141, 0.2);
    pointer-events: none;
    user-select: none;
    z-index: 5;
  }
}

body.home {
  background-color: #fff;
  background-image: url("../img/top_bg01.webp");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
}

@keyframes hero-appear {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
.hero {
  padding-top: calc(80px + 60px);
  padding-bottom: 6rem;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 1.2s ease, filter 1.2s ease;
}
.hero.is-loaded {
  opacity: 1;
  filter: blur(0);
}
@media (max-width: 767px) {
  .hero {
    padding-top: calc(60px + 32px);
    padding-bottom: 4rem;
  }
}
.hero__head {
  text-align: center;
  padding: 0 40px;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .hero__head {
    padding: 0 20px;
    margin-bottom: 2.4rem;
  }
}
.hero__catch {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: clamp(3.2rem, 4vw, 4.8rem);
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .hero__catch {
    font-size: clamp(2.2rem, 6.5vw, 3.2rem);
  }
}
.hero__media {
  position: relative;
  max-width: 1400px;
  width: 94.6%;
  margin: 0 auto;
  aspect-ratio: 1400/570;
  overflow: visible;
}
@media (max-width: 767px) {
  .hero__media {
    aspect-ratio: 700/930;
  }
}
.hero__slider {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50px 0 50px 0;
}
.hero__slider .swiper-slide {
  height: 100%;
}
.hero__slider .swiper-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__slide-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  margin: 0;
}
.hero__kirakira {
  position: absolute;
  width: 12.143%;
  height: auto;
  pointer-events: none;
  display: block;
  z-index: 1;
}
.hero__kirakira--tl {
  left: 1.286%;
  top: -28%;
}
.hero__kirakira--br {
  right: -2%;
  bottom: -20%;
}

.home-about {
  padding: 6rem 0 4rem;
}
@media (max-width: 767px) {
  .home-about {
    padding: 4rem 0 3.2rem;
  }
}
.home-about__head {
  text-align: center;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .home-about__head {
    padding: 0 20px;
  }
}
.home-about__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .home-about__title-wrap {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }
}
.home-about__en {
  font-family: "Marcellus", serif;
  font-size: 5.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #000;
  line-height: 1;
}
@media (max-width: 767px) {
  .home-about__en {
    font-size: 4rem;
  }
}
.home-about__ja {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.4rem;
  color: #666;
  letter-spacing: 0.12em;
}
@media (max-width: 767px) {
  .home-about__ja {
    font-size: 1.2rem;
  }
}
.home-about__toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1.6rem;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}
.home-about__toggle:hover {
  opacity: 0.7;
}
.home-about__toggle[aria-expanded=false] img {
  transform: rotate(180deg);
}
.home-about__toggle img {
  display: block;
  width: 34px;
  height: auto;
  transition: transform 0.4s ease;
}
.home-about__body {
  height: 0;
  overflow: hidden;
  transition: height 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-about__content {
  max-width: 894px;
  width: 94.6%;
  margin: 0 auto;
  padding-top: 5.6rem;
}
@media (max-width: 767px) {
  .home-about__content {
    padding-top: 4rem;
  }
}
.home-about__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem;
  align-items: center;
}
@media (max-width: 767px) {
  .home-about__block {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
.home-about__block + .home-about__block {
  margin-top: 6.4rem;
}
@media (max-width: 767px) {
  .home-about__block + .home-about__block {
    margin-top: 4.8rem;
  }
}
.home-about__block--reverse figure {
  order: -1;
}
@media (max-width: 767px) {
  .home-about__block--reverse figure {
    order: 0;
  }
}
.home-about__text p {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.5rem;
  line-height: 2.4;
  letter-spacing: 0.06em;
  color: #000;
}
@media (max-width: 767px) {
  .home-about__text p {
    font-size: 1.4rem;
    text-align: center;
  }
}
.home-about__image {
  overflow: hidden;
}
.home-about__image img {
  width: 100%;
  height: auto;
  display: block;
}
.home-about__catch {
  max-width: 894px;
  width: 94.6%;
  margin: 6.4rem auto 0;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: center;
  color: #000;
}
@media (max-width: 767px) {
  .home-about__catch {
    font-size: 2rem;
    margin-top: 4.8rem;
  }
}

.home-message {
  overflow-x: hidden;
  padding: 6rem 0;
  margin-top: 6.4rem;
}
@media (max-width: 767px) {
  .home-message {
    margin-top: 4.8rem;
    padding: 4rem 0;
  }
}
.home-message__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 8rem 1fr 1fr;
  gap: 0 4.8rem;
  align-items: center;
}
@media (max-width: 767px) {
  .home-message__inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 3.2rem;
  }
}
.home-message__deco {
  font-family: "Marcellus", serif;
  writing-mode: vertical-rl;
  font-size: 8rem;
  line-height: 1;
  color: #000;
  align-self: start;
  pointer-events: none;
}
@media (max-width: 767px) {
  .home-message__deco {
    writing-mode: horizontal-tb;
    font-size: 5.6rem;
    text-align: center;
    align-self: auto;
    display: block;
    letter-spacing: 0.04em;
  }
}
.home-message__label {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 25px;
  color: #666;
  letter-spacing: 0.15em;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .home-message__label {
    text-align: center;
    margin-bottom: 1.6rem;
  }
}
.home-message__title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.06em;
  color: #000;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .home-message__title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 1.6rem;
  }
}
.home-message__text {
  max-width: 300px;
  width: 100%;
  font-size: 1.4rem;
  line-height: 2;
  color: #000;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .home-message__text {
    max-width: none;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 2.4rem;
  }
}
.home-message__more {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-weight: 700;
  font-size: 2rem;
  color: #a51e85;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .home-message__more {
    font-size: 1.6rem;
    display: flex;
    width: fit-content;
    margin-left: auto;
  }
}
.home-message__more:hover {
  opacity: 0.7;
}
.home-message__more-icon {
  width: 54px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .home-message__more-icon {
    width: 44px;
  }
}
.home-message__photo {
  overflow: hidden;
}
.home-message__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.home-news {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .home-news {
    padding: 4rem 0;
  }
}
.home-news__head {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .home-news__head {
    margin-bottom: 3.2rem;
  }
}
.home-news__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .home-news__title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
  }
}
.home-news__en {
  font-family: "Marcellus", serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
}
@media (max-width: 767px) {
  .home-news__en {
    font-size: 4rem;
  }
}
.home-news__ja {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.4rem;
  color: #666;
  letter-spacing: 0.12em;
}
@media (max-width: 767px) {
  .home-news__ja {
    font-size: 1.2rem;
  }
}
.home-news__foot {
  text-align: center;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .home-news__foot {
    margin-top: 3.2rem;
  }
}

.news-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 767px) {
  .news-list {
    padding: 0;
  }
}
.news-list__item {
  border-top: 1px solid #ddd;
}
.news-list__item:last-child {
  border-bottom: 1px solid #ddd;
}

.news-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-areas: "thumb meta" "thumb title";
  column-gap: 2.4rem;
  row-gap: 0.6rem;
  padding: 2.4rem 0;
  color: #000;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .news-card {
    grid-template-columns: 100px 1fr;
    grid-template-areas: "thumb meta" "title title";
    column-gap: 1.6rem;
  }
}
.news-card:hover {
  opacity: 0.75;
}
.news-card__thumb {
  grid-area: thumb;
  aspect-ratio: 1;
  overflow: hidden;
}
.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card__meta {
  grid-area: meta;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  align-self: end;
  padding-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .news-card__meta {
    align-self: center;
    padding-bottom: 0;
  }
}
.news-card__date {
  font-size: 1.4rem;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .news-card__date {
    font-size: 1.2rem;
  }
}
.news-card__cat {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  border: 1px solid;
  font-size: 1.1rem;
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0;
  background: #fff;
}
.news-card__cat--event {
  border-color: #a51e85;
  color: #a51e85;
}
.news-card__cat--news {
  border-color: #365279;
  color: #365279;
}
.news-card__cat--recruit {
  border-color: #a07d00;
  color: #a07d00;
}
.news-card__title {
  grid-area: title;
  font-size: 1.5rem;
  line-height: 1.7;
  align-self: start;
  padding-top: 0.4rem;
}
@media (max-width: 767px) {
  .news-card__title {
    font-size: 1.3rem;
    padding-top: 0.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.pager {
  margin: 4rem 0;
  text-align: center;
}
.pager__list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.pager__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6rem;
  height: 3.6rem;
  padding: 0 0.8rem;
  font-size: 1.4rem;
  color: #000;
  border: 1px solid #ddd;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pager__link:hover {
  border-color: #B6498D;
  color: #B6498D;
}
.pager__link.is-current {
  background: #B6498D;
  border-color: #B6498D;
  color: #fff;
  font-weight: bold;
  pointer-events: none;
}
.pager__item.is-disabled .pager__link {
  color: #ccc;
  border-color: #e5e5e5;
  cursor: default;
  pointer-events: none;
}
.pager__item.is-disabled .pager__link:hover {
  color: #ccc;
  border-color: #e5e5e5;
}
.pager__item--dots .pager__link {
  border: none;
  min-width: auto;
  padding: 0 0.4rem;
}
.pager__item--dots .pager__link:hover {
  color: #000;
}

.home-instagram {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .home-instagram {
    padding: 4rem 0;
  }
}
.home-instagram__card-outer {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding-right: 10px;
  padding-bottom: 10px;
}
.home-instagram__card-outer::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 0;
  bottom: 0;
  border: 1px solid #000;
  border-radius: 40px 0 40px 0;
  background: #fff;
  z-index: 0;
}
.home-instagram__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4.8rem;
  padding: 3.9rem 5.6rem;
  border: 1px solid #000;
  border-radius: 40px 0 40px 0;
  background: #fff;
  z-index: 1;
}
@media (max-width: 767px) {
  .home-instagram__card {
    flex-direction: column;
    text-align: center;
    padding: 4rem 3.2rem;
    gap: 2.4rem;
  }
}
.home-instagram__name {
  font-family: "Marcellus", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .home-instagram__name {
    font-size: 4.4rem;
  }
}
.home-instagram__info {
  flex: 1;
}
.home-instagram__text {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #000;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .home-instagram__text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

.home-information {
  background-color: #EBE5CF;
  background-image: url("../img/home/information-bg.webp");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
}
.home-information__head {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16rem 40px 0;
}
@media (max-width: 767px) {
  .home-information__head {
    padding: 4rem 20px 0;
    text-align: center;
  }
}
.home-information__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 7rem;
}
@media (max-width: 767px) {
  .home-information__title-wrap {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
}
.home-information__title-en {
  font-family: "Marcellus", serif;
  font-size: 9rem;
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(90deg, #CB8A36 0%, #E3C275 50%, #D1A356 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 1300px) {
  .home-information__title-en {
    font-size: 10vw;
  }
}
@media (max-width: 767px) {
  .home-information__title-en {
    font-size: 16vw;
  }
}
.home-information__title-ja {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 25px;
  font-weight: bold;
  color: #ae834a;
  letter-spacing: 0.12em;
}
@media (max-width: 1300px) {
  .home-information__title-ja {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .home-information__title-ja {
    font-size: 1.2rem;
  }
}
.home-information__spacer {
  line-height: 0;
}

.home-brand {
  padding: 6rem 0 5rem;
}
@media (max-width: 767px) {
  .home-brand {
    padding: 3.2rem 0 4rem;
    text-align: center;
  }
}
.home-brand__head {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .home-brand__head {
    padding: 0 20px;
    margin-bottom: 2.4rem;
  }
}
.home-brand__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .home-brand__title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}
.home-brand__en {
  font-family: "Marcellus", serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
}
@media (max-width: 767px) {
  .home-brand__en {
    font-size: 4rem;
  }
}
.home-brand__ja {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.4rem;
  color: #666;
  letter-spacing: 0.12em;
}
@media (max-width: 767px) {
  .home-brand__ja {
    font-size: 1.2rem;
  }
}
.home-brand__foot {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .home-brand__foot {
    padding: 0 20px;
    margin-top: 3.2rem;
  }
}

.brand-slider {
  --swiper-navigation-color: #000;
  --swiper-navigation-size: 18px;
  overflow: hidden;
  padding: 10px 0;
}
.brand-slider .swiper {
  overflow: visible;
}
.brand-slider .swiper-slide {
  width: 320px;
}
@media (max-width: 767px) {
  .brand-slider .swiper-slide {
    width: 280px;
  }
}
.brand-slider .swiper-button-prev,
.brand-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}
.brand-slider .swiper-button-prev::after,
.brand-slider .swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .brand-slider .swiper-button-prev,
  .brand-slider .swiper-button-next {
    width: 32px;
    height: 32px;
  }
  .brand-slider .swiper-button-prev::after,
  .brand-slider .swiper-button-next::after {
    font-size: 12px;
  }
}

@keyframes brand-photo-shine {
  from {
    left: -75%;
  }
  to {
    left: 125%;
  }
}
@keyframes brand-photo-bright {
  0% {
    filter: brightness(100%);
  }
  50% {
    filter: brightness(120%);
  }
  100% {
    filter: brightness(100%);
  }
}
.brand-card {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.brand-card__photo {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.brand-card__photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 1;
}
.brand-card__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform-origin: center;
}
.brand-card__logo {
  background: #fff;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-card__logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.brand-card.is-hover-effect:hover .brand-card__photo::before {
  animation: brand-photo-shine 0.7s ease forwards;
}
.brand-card.is-hover-effect:hover .brand-card__photo-img {
  transform: scale(1.08);
  animation: brand-photo-bright 1s ease forwards;
}

.home-service {
  padding: 6rem 0 5rem;
}
@media (max-width: 767px) {
  .home-service {
    padding: 3.2rem 0 4rem;
    text-align: center;
  }
}
.home-service__head {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .home-service__head {
    padding: 0 20px;
    margin-bottom: 3.2rem;
  }
}
.home-service__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .home-service__title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}
.home-service__en {
  font-family: "Marcellus", serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
}
@media (max-width: 767px) {
  .home-service__en {
    font-size: 4rem;
  }
}
.home-service__ja {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.4rem;
  color: #666;
  letter-spacing: 0.12em;
}
@media (max-width: 767px) {
  .home-service__ja {
    font-size: 1.2rem;
  }
}
.home-service__body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .home-service__body {
    padding: 0 20px;
  }
}
.home-service__foot {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .home-service__foot {
    padding: 0 20px;
    margin-top: 3.2rem;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.6rem 4rem;
}
@media (max-width: 767px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.service-item {
  text-align: center;
}
.service-item--last {
  grid-column: 1/-1;
}
@media (min-width: 769px) {
  .service-item--last {
    max-width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .service-item {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 450px) {
  .service-item {
    max-width: none;
  }
}
.service-item__photo {
  position: relative;
  overflow: hidden;
}
.service-item__photo picture {
  display: block;
  width: 100%;
}
.service-item__photo-img {
  width: 100%;
  height: auto;
}
.service-item__body {
  margin-top: 1.6rem;
}
.service-item__title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 3.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .service-item__title {
    font-size: 2.4rem;
  }
}
.service-item__text {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #000;
}
@media (max-width: 767px) {
  .service-item__text {
    font-size: 1.4rem;
  }
}
.service-item.is-hover-effect:hover .service-item__photo-img {
  animation: brand-photo-bright 1s ease forwards;
}

.home-faq {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .home-faq {
    padding: 4rem 0;
  }
}
.home-faq__head {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .home-faq__head {
    padding: 0 20px;
    margin-bottom: 3.2rem;
    text-align: center;
  }
}
.home-faq__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .home-faq__title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}
.home-faq__en {
  font-family: "Marcellus", serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
}
@media (max-width: 767px) {
  .home-faq__en {
    font-size: 4rem;
  }
}
.home-faq__ja {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.4rem;
  color: #666;
  letter-spacing: 0.12em;
}
@media (max-width: 767px) {
  .home-faq__ja {
    font-size: 1.2rem;
  }
}
.home-faq__body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .home-faq__body {
    padding: 0 20px;
  }
}
.home-faq__foot {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .home-faq__foot {
    padding: 0 20px;
    margin-top: 3.2rem;
  }
}

.faq-list {
  list-style: none;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-item.is-open {
  border-bottom: 0;
}
.faq-item__q {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2.4rem 0;
  text-align: left;
}
@media (max-width: 767px) {
  .faq-item__q {
    gap: 1.6rem;
    padding: 2rem 0;
  }
}
.faq-item__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .faq-item__img {
    width: 72px;
    height: 72px;
  }
}
.faq-item__question {
  flex: 1;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #000;
}
@media (max-width: 767px) {
  .faq-item__question {
    font-size: 1.5rem;
  }
}
.faq-item__toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  position: relative;
  display: block;
}
.faq-item__toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 1px;
  background: #000;
}
.faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleY(1);
  width: 1px;
  height: 12px;
  background: #000;
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-item__toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-item.is-open .faq-item__a {
  max-height: 800px;
}
.faq-item__a-inner {
  background: rgba(182, 73, 141, 0.07);
  border: 1px solid rgba(182, 73, 141, 0.15);
  padding: 2.4rem 2.4rem 2.4rem calc(100px + 2.4rem);
}
@media (max-width: 767px) {
  .faq-item__a-inner {
    padding: 2rem;
  }
}
.faq-item__answer {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #000;
}
@media (max-width: 767px) {
  .faq-item__answer {
    font-size: 1.4rem;
  }
}
.faq-item__more {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
  padding: 0.7rem 2.4rem;
  background: #fff;
  border: 1px solid #B6498D;
  border-radius: 100px;
  color: #B6498D;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
}
.faq-item__more:hover {
  opacity: 0.7;
}
.faq-item__more-icon {
  width: auto;
  height: 0.7rem;
  flex-shrink: 0;
}

.home-recruit {
  background: url("../img/home/recruiit/bg.webp") center/cover no-repeat;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .home-recruit {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.home-recruit__title-area {
  text-align: center;
  margin-bottom: 5.6rem;
}
@media (max-width: 767px) {
  .home-recruit__title-area {
    margin-bottom: 0;
  }
}
.home-recruit__title-wrap {
  position: relative;
  display: inline-block;
}
.home-recruit__en {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 13.8rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}
@media (max-width: 767px) {
  .home-recruit__en {
    font-size: 25vw;
  }
}
.home-recruit__ja {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #000;
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 767px) {
  .home-recruit__ja {
    font-size: 1.6rem;
    top: 55%;
  }
}
.home-recruit__body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .home-recruit__body {
    padding: 0;
  }
}
.home-recruit__inner {
  display: flex;
  align-items: center;
  gap: 7.2rem;
}
@media (max-width: 767px) {
  .home-recruit__inner {
    flex-direction: column;
    gap: 4rem;
  }
}

.recruit-image {
  flex: 0 0 48%;
}
@media (max-width: 767px) {
  .recruit-image {
    flex: none;
    width: 100%;
  }
}
.recruit-image__inner {
  position: relative;
  overflow: hidden;
}
.recruit-image__inner.is-hover-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  z-index: 1;
  pointer-events: none;
}
.recruit-image__inner.is-hover-effect:hover::before {
  animation: brand-photo-shine 0.7s forwards;
}
.recruit-image__inner.is-hover-effect:hover .recruit-image__img {
  animation: brand-photo-bright 0.7s ease forwards;
}
.recruit-image__img {
  display: block;
  width: 100%;
  height: auto;
}

.recruit-buttons {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .recruit-buttons {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

.recruit-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.8rem;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 1.6rem;
  font-weight: bold;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .recruit-btn {
    padding: 1.8rem 2.4rem;
    font-size: 1.5rem;
  }
}
.recruit-btn:hover {
  opacity: 0.8;
}
.recruit-btn__label {
  flex: 1;
}
.recruit-btn__icon {
  flex-shrink: 0;
  width: auto;
  height: 1rem;
  margin-left: 2rem;
}
.recruit-btn--primary {
  background: linear-gradient(to right, #d6649a, #e7a478);
  color: #fff;
}
.recruit-btn--outline {
  position: relative;
  background: transparent;
  border: 1px solid #000;
  color: #000;
}
.recruit-btn--outline:hover {
  opacity: 1;
}
.recruit-btn--outline::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: top 0.3s ease, left 0.3s ease;
}
.recruit-btn--outline:hover::before {
  top: 0;
  left: 0;
}

.home-access {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .home-access {
    padding: 4rem 0;
  }
}
@media (max-width: 767px) {
  .home-access {
    padding-bottom: 0;
  }
}
.home-access__wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.home-access__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6.4rem;
}
@media (max-width: 767px) {
  .home-access__inner {
    flex-direction: column-reverse;
    gap: 3.2rem;
  }
}
.home-access__map {
  flex: 0 0 48%;
}
@media (max-width: 767px) {
  .home-access__map {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}
.home-access__map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
}
@media (max-width: 767px) {
  .home-access__map iframe {
    height: 300px;
  }
}
.home-access__content {
  flex: 1;
}
.home-access__title-wrap {
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .home-access__title-wrap {
    margin-bottom: 1.6rem;
    text-align: center;
  }
}
.home-access__en {
  font-family: "Marcellus", serif;
  font-size: 7rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
}
@media (max-width: 767px) {
  .home-access__en {
    font-size: 22vw;
    text-align: center;
  }
}
.home-access__ja {
  font-size: 1.4rem;
  color: #666;
  letter-spacing: 0.12em;
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .home-access__ja {
    text-align: center;
  }
}
.home-access__address {
  font-style: normal;
  font-size: 1.5rem;
  line-height: 2;
  color: #000;
  margin-bottom: 2.8rem;
}
@media (max-width: 767px) {
  .home-access__address {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
  }
}

.access-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.2rem 3.2rem;
  border: 1px solid #B6498D;
  border-radius: 100px;
  color: #B6498D;
  font-size: 1.5rem;
  font-weight: bold;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .access-btn {
    width: 100%;
    justify-content: space-between;
    padding: 1.4rem 2.4rem;
    font-size: 1.4rem;
    box-sizing: border-box;
  }
}
.access-btn:hover {
  opacity: 0.7;
}
.access-btn__label {
  flex: 1;
}
.access-btn__icon {
  flex-shrink: 0;
  width: auto;
  height: 0.8rem;
}

/* ========================================
	Page: Lower
======================================== */
.page-hero {
  height: 430px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 767px) {
  .page-hero {
    height: 280px;
    padding-top: 60px;
  }
}
.page-hero__title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .page-hero__title {
    font-size: 2.2rem;
  }
}
.page-hero__sub {
  font-size: 1.4rem;
  color: #666;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-hero__sub {
    font-size: 1.2rem;
  }
}

/* ------ 店舗情報セクション ------ */
.shopinfo {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .shopinfo {
    padding: 4rem 0;
  }
}
@media (max-width: 767px) {
  .shopinfo {
    padding-top: 0;
  }
}
.shopinfo__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .shopinfo__wrap {
    padding: 0 20px;
  }
}
.shopinfo__inner {
  display: flex;
  align-items: stretch;
  gap: 5.6rem;
}
@media (max-width: 767px) {
  .shopinfo__inner {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.shopinfo__left {
  flex: 0 0 44%;
}
@media (max-width: 767px) {
  .shopinfo__left {
    flex: none;
    width: 100%;
  }
}
.shopinfo__right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .shopinfo__right {
    order: -1;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
}
.shopinfo__logo {
  margin-bottom: 2.4rem;
}
.shopinfo__logo img {
  width: auto;
  max-width: 220px;
}
.shopinfo__banner {
  display: block;
}

.shop-photo {
  background-size: cover;
  background-position: center;
}
.shop-photo--gaikan {
  flex: 730 0 0;
  background-image: url("../img/information/gaikan.webp");
}
@media (max-width: 767px) {
  .shop-photo--gaikan {
    flex: none;
    height: 240px;
  }
}
.shop-photo--shop {
  flex: 370 0 0;
  background-image: url("../img/information/shop.webp");
}
@media (max-width: 767px) {
  .shop-photo--shop {
    display: none;
  }
}

.shop-photo-spacer {
  flex: 54 0 0;
}
@media (max-width: 767px) {
  .shop-photo-spacer {
    display: none;
  }
}

.shop-infobox {
  background: #f7f3e8;
  padding: 0.8rem 2.6rem;
  margin-bottom: 2.4rem;
}
.shop-infobox__item + .shop-infobox__item {
  margin-top: 25px;
}
.shop-infobox__label {
  font-size: 1.6rem;
  font-weight: bold;
  color: #B6498D;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 0.6rem;
}
.shop-infobox__value {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #000;
  padding-left: 0;
  margin-left: 0;
}

.shop-telbox {
  margin-bottom: 2.4rem;
}
.shop-telbox__link {
  display: block;
}
.shop-telbox__img {
  width: 100%;
  height: auto;
}

.shop-founder {
  margin-bottom: 2.4rem;
  text-align: center;
}
.shop-founder__label {
  font-size: 2.2rem;
  color: #666;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1.2rem;
}
.shop-founder__name {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 2rem;
}
.shop-founder__history {
  list-style: none;
  margin-bottom: 2rem;
}
.shop-founder__history li {
  font-size: 1.6rem;
  padding: 0.7rem 1.6rem;
  color: #000;
}
.shop-founder__history li:nth-child(even) {
  background: #f0f0f0;
}
.shop-founder__text {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 3.1rem;
  color: #000;
}
@media (max-width: 486px) {
  .shop-founder__text {
    font-size: 4.4vw;
  }
}
.shop-founder__accent {
  color: #B6498D;
}

/* ------ アクセスセクション ------ */
#message,
#company-info,
#floor-guide,
#floor-salon,
#taitoku-card,
#cosme-delivery {
  scroll-margin-top: 80px;
}
@media (max-width: 767px) {
  #message,
  #company-info,
  #floor-guide,
  #floor-salon,
  #taitoku-card,
  #cosme-delivery {
    scroll-margin-top: 60px;
  }
}

#access {
  scroll-margin-top: 80px;
}
@media (max-width: 767px) {
  #access {
    scroll-margin-top: 60px;
  }
}

#public,
#car {
  scroll-margin-top: calc(80px + 2rem);
}
@media (max-width: 767px) {
  #public,
  #car {
    scroll-margin-top: calc(60px + 2rem);
  }
}

.info-access__head {
  text-align: center;
  padding: 6rem 0 4rem;
}
.info-access__title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 4rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .info-access__title {
    font-size: 3rem;
  }
}
.info-access__sub {
  font-size: 1.4rem;
  color: #666;
  letter-spacing: 0.08em;
}
.info-access__map {
  max-width: 1700px;
  margin: 0 auto;
}
.info-access__map iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}
@media (max-width: 767px) {
  .info-access__map iframe {
    height: 280px;
  }
}
.info-access__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .info-access__body {
    padding: 4rem 20px;
  }
}
.info-access__cols {
  display: flex;
  gap: 6.4rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .info-access__cols {
    flex-direction: column;
    gap: 4rem;
  }
}

.access-section-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #B6498D;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #B6498D;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .access-section-title {
    font-size: 1.6rem;
  }
}

.access-public {
  flex: 1;
}

.access-transport + .access-transport {
  margin-top: 2.4rem;
}
.access-transport__heading {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}
.access-transport__text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #000;
}

.access-car {
  flex: 1;
}
.access-car__distance {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 1.6rem;
}
.access-car__box {
  background: #f0f0f0;
  padding: 2rem 2.4rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 2.4rem;
}
.access-car__accent {
  color: #B6498D;
}
.access-car__map img {
  width: 100%;
  height: auto;
}

/* ------ 会社概要セクション ------ */
.company-info {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .company-info {
    padding: 4rem 0;
  }
}
.company-info__wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .company-info__wrap {
    padding: 0 20px;
  }
}
.company-info__head {
  text-align: center;
  margin-bottom: 4.8rem;
}
.company-info__title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 4rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .company-info__title {
    font-size: 3rem;
  }
}
.company-info__sub {
  font-size: 1.4rem;
  color: #666;
  letter-spacing: 0.08em;
}
.company-info__buttons {
  display: flex;
  gap: 2rem;
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .company-info__buttons {
    flex-direction: column;
    gap: 1.6rem;
  }
}

.company-table-wrap {
  max-width: 650px;
  margin: 0 auto;
}

.company-table {
  width: 100%;
}
.company-table__row {
  display: flex;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.company-table__row:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .company-table__row {
    flex-direction: column;
    padding: 1.6rem 0;
  }
}
.company-table__label {
  flex: 0 0 130px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #B6498D;
  padding-top: 0.1rem;
}
@media (max-width: 767px) {
  .company-table__label {
    flex: none;
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }
}
.company-table__value {
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #000;
  margin: 0;
}

.company-banner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.4rem;
  background: linear-gradient(to right, #7f1a77, #b44a8a);
  text-decoration: none;
}
@media (max-width: 767px) {
  .company-banner {
    padding: 1.8rem 2rem;
  }
}
.company-banner__texts {
  flex: 1;
}
.company-banner__main {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .company-banner__main {
    font-size: 1.6rem;
  }
}
.company-banner__sub {
  display: block;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
}
.company-banner__arrow {
  flex-shrink: 0;
  width: 32px;
  height: auto;
  margin-left: 1.6rem;
}
@media (max-width: 767px) {
  .company-banner__arrow {
    width: 26px;
  }
}

/* ------ 代表メッセージセクション ------ */
.company-message {
  background-color: #fff;
  background-image: url("../img/company/message-bg-pc.webp");
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 8rem 0 14rem;
}
@media (max-width: 767px) {
  .company-message {
    background-image: url("../img/company/message-bg-sp.webp");
    padding: 6rem 0 10rem;
  }
}
.company-message__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .company-message__wrap {
    padding: 0 20px;
  }
}
.company-message__inner {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .company-message__inner {
    flex-direction: column;
    align-items: center;
    gap: 3.2rem;
  }
}
.company-message__text {
  flex: 0 0 50%;
}
@media (max-width: 767px) {
  .company-message__text {
    order: 2;
    width: 100%;
    flex: none;
  }
}
.company-message__heading {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 3rem;
  font-weight: bold;
  color: #B6498D;
  line-height: 1.6;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .company-message__heading {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 2.4rem;
  }
}
.company-message__body p {
  font-size: 1.5rem;
  line-height: 2.2;
  color: #000;
}
.company-message__person {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 6rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .company-message__person {
    order: 1;
    width: 100%;
    flex: none;
    padding-left: 0;
  }
}
.company-message__photo {
  margin-bottom: 2rem;
}
.company-message__photo img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .company-message__photo img {
    margin: 0 auto;
  }
}
.company-message__profile {
  text-align: center;
}
.company-message__profile p {
  font-size: 1.4rem;
  color: #000;
  line-height: 2;
}
.company-message__name {
  font-size: 1.6rem;
}

/* ------ 沿革（History）セクション ------ */
.company-history {
  padding: 8rem 0;
  background-image: url("../img/company/history-bg-pc.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media (max-width: 767px) {
  .company-history {
    background-image: url("../img/company/history-bg-sp.webp");
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: top;
  }
}
.company-history__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .company-history__wrap {
    padding: 0 20px;
  }
}
.company-history__heading {
  margin-bottom: 6rem;
  text-align: center;
}
.company-history__heading img {
  display: block;
  max-width: 754px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .company-history__heading {
    margin-bottom: 4rem;
  }
}

.history-timeline {
  position: relative;
}
.history-timeline::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  bottom: 0;
  width: 1px;
  background: #a51e85;
  left: calc(230px + 40px / 2);
}
@media (max-width: 767px) {
  .history-timeline::before {
    top: 0.5rem;
    left: calc(28px / 2);
  }
}

.history-item {
  display: grid;
  grid-template-columns: 230px 40px 1fr;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .history-item {
    grid-template-columns: 28px 1fr;
    grid-template-areas: "marker year" "marker content";
    column-gap: 1.6rem;
    row-gap: 1.2rem;
    margin-bottom: 4rem;
  }
}
.history-item__year {
  text-align: left;
}
@media (max-width: 767px) {
  .history-item__year {
    grid-area: year;
  }
}
.history-item__year-num {
  font-family: "Marcellus", serif;
  font-size: 4.5rem;
  font-weight: bold;
  color: #a51e85;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .history-item__year-num {
    font-size: 2.6rem;
  }
}
.history-item__year-sub {
  font-size: 1.6rem;
  color: #a51e85;
  line-height: 1.7;
}
.history-item__marker {
  display: flex;
  justify-content: center;
  padding-top: 0.7rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .history-item__marker {
    grid-area: marker;
    align-items: flex-start;
    padding-top: 0.5rem;
  }
}
.history-item__marker::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #a51e85;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.history-item__content {
  padding-left: 2.4rem;
  padding-bottom: 5rem;
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .history-item__content {
    grid-area: content;
    flex-direction: column;
    padding-left: 0;
    padding-bottom: 3rem;
    gap: 1.6rem;
  }
}
.history-item__text {
  flex: 1;
}
.history-item__title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #a51e85;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .history-item__title {
    font-size: 2rem;
  }
}
.history-item__desc {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #000;
}
.history-item__photo {
  flex-shrink: 0;
  width: 220px;
}
@media (max-width: 767px) {
  .history-item__photo {
    width: 100%;
  }
}

.num-zero {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
}

.history-item--multi .history-item__content {
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 767px) {
  .history-item--multi .history-item__content {
    gap: 2.4rem;
  }
}

.history-item--80th .history-item__marker::before {
  border-color: #a77e20;
}
.history-item--80th .history-item__year-num,
.history-item--80th .history-item__year-sub {
  width: fit-content;
  background: linear-gradient(to right, #a77e20 0%, #d3b76e 50%, #a77e20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.history-item--80th .history-item__title {
  width: fit-content;
  background: linear-gradient(to right, #a77e20 0%, #d3b76e 50%, #a77e20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-style: italic;
  line-height: 1.2;
}
.history-item--80th .yr-kj {
  font-size: 4rem;
}
@media (max-width: 767px) {
  .history-item--80th .yr-kj {
    font-size: 2.8rem;
  }
}
.history-item--80th .yr-num {
  font-size: 6rem;
}
@media (max-width: 767px) {
  .history-item--80th .yr-num {
    font-size: 4.4rem;
  }
}
.history-item--80th .history-item__photo {
  width: 380px;
}
@media (max-width: 767px) {
  .history-item--80th .history-item__photo {
    width: 100%;
  }
}

.history-item__set {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 767px) {
  .history-item__set {
    flex-direction: column;
    gap: 1.6rem;
  }
}

.history-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #999;
}

.history-box {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 5rem;
  border: 1px solid #a51e85;
  border-radius: 6px;
  background: #fff;
  padding: 2.4rem 3rem;
}
@media (max-width: 767px) {
  .history-box {
    padding: 2rem;
    margin-bottom: 4rem;
  }
}
.history-box__title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .history-box__title {
    font-size: 2rem;
  }
}
.history-box__inner {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .history-box__inner {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.history-box__text {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #000;
}
.history-box__photo {
  flex-shrink: 0;
  width: 200px;
}
@media (max-width: 767px) {
  .history-box__photo {
    width: 100%;
  }
}

.history-thanks {
  margin-top: 5rem;
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .history-thanks {
    flex-direction: column;
  }
}
.history-thanks__image {
  flex: 0 1 300px;
  min-width: 0;
}
.history-thanks__image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .history-thanks__image {
    flex: none;
    width: 100%;
  }
  .history-thanks__image img {
    width: 72%;
    margin: 0 auto;
  }
}
.history-thanks__body {
  flex: 1;
  padding: 0 4.8rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .history-thanks__body {
    padding: 2.4rem 2rem;
  }
}
.history-thanks__title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #a51e85;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .history-thanks__title {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}
.history-thanks__text {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #000;
  margin-top: 0;
}

/* ========================================
	Page: Lower > Brand List（floor）
======================================== */
.floor-brand {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .floor-brand {
    padding: 4rem 0;
  }
}
.floor-brand {
  background: #f2f2f2;
}
.floor-brand .wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.floor-brand .brand-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .floor-brand .brand-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
.floor-brand .brand-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.floor-brand .brand-card {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 240/180;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-sizing: border-box;
  box-shadow: none;
}
.floor-brand .brand-card__image {
  width: 88%;
  height: 88%;
  object-fit: contain;
  object-position: center;
}

/* ========================================
	Page: Lower > Floor Guide（floor）
======================================== */
.floor-guide {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .floor-guide {
    padding: 4rem 0;
  }
}
.floor-guide .wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.floor-guide__head {
  text-align: center;
}
.floor-guide__title {
  margin-top: 6rem;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-weight: bold;
  font-size: 4.8rem;
  color: #000;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.floor-guide__sub {
  margin-top: 1.2rem;
  font-family: "Marcellus", serif;
  font-size: 1.6rem;
  color: #888;
  letter-spacing: 0.1em;
}
.floor-guide__text {
  margin-top: 3.5rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
  color: #000;
}
.floor-guide__band {
  margin-top: 4rem;
  padding: 1rem 2rem;
  background: #4e4e4e;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}
.floor-guide__map {
  margin: 3rem auto 0;
  max-width: 660px;
}
.floor-guide__map img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .floor-guide__title {
    font-size: 2.8rem;
  }
  .floor-guide__sub {
    font-size: 1.4rem;
  }
  .floor-guide__band {
    padding: 0.8rem 1.5rem;
    font-size: 1.8rem;
  }
  .floor-guide__map {
    max-width: 100%;
  }
}

/* ========================================
	Page: Lower > Brand Tel Card（floor）
======================================== */
.floor-brand-tel {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .floor-brand-tel {
    padding: 4rem 0;
  }
}
.floor-brand-tel {
  background: #f2f2f2;
}
.floor-brand-tel .wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.brand-tel-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .brand-tel-list {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}

.brand-tel-card {
  display: flex;
  background: #fff;
  overflow: hidden;
}

.brand-tel-card__info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

.brand-tel-card__logo {
  display: block;
  width: 100%;
  max-width: 16rem;
  height: auto;
  margin: 0 auto;
}

.brand-tel-card__tel {
  margin-top: 0;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #000;
}
.brand-tel-card__tel a {
  color: inherit;
  text-decoration: none;
}

.brand-tel-card__photo {
  width: 50%;
  aspect-ratio: 320/250;
}
.brand-tel-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .brand-tel-card {
    max-width: 485px;
    margin: 0 auto;
  }
  .brand-tel-card__info {
    padding: 1.5rem 1rem;
  }
  .brand-tel-card__logo {
    max-width: none;
  }
  .brand-tel-card__tel {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  .brand-tel-card__photo {
    max-width: 485px;
    margin: 0 auto;
  }
}
/* ========================================
	Page: Lower > Members Salon（floor）
======================================== */
.floor-salon {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .floor-salon {
    padding: 4rem 0;
  }
}
.floor-salon .wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.floor-salon__head {
  text-align: center;
  margin-bottom: 5rem;
}
.floor-salon__title {
  margin-top: 8rem;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-weight: bold;
  font-size: 4.4rem;
  color: #000;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.floor-salon__sub {
  margin-top: 1.2rem;
  font-family: "Marcellus", serif;
  font-size: 1.6rem;
  color: #888;
  letter-spacing: 0.1em;
}
.floor-salon__main {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
.floor-salon__photo {
  flex: 0 0 48%;
}
.floor-salon__photo img {
  display: block;
  width: 100%;
  height: auto;
}
.floor-salon__body {
  flex: 1;
  min-width: 0;
}
.floor-salon__kazari {
  display: block;
  max-width: 18rem;
  height: auto;
  margin: 0 auto 2rem;
}
.floor-salon__kazari--flip {
  transform: rotate(180deg);
  margin-top: 2rem;
  margin-bottom: 0;
}
.floor-salon__lead {
  font-size: 1.8rem;
  font-weight: bold;
  color: #a51e85;
  margin-bottom: 1.6rem;
}
.floor-salon__text {
  font-size: 1.6rem;
  line-height: 2;
  color: #000;
}
.floor-salon__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}
.floor-salon__gallery img {
  display: block;
  width: 100%;
  max-width: 346px;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .floor-salon__head {
    text-align: center;
    margin-bottom: 3rem;
  }
  .floor-salon__title {
    font-size: 2.8rem;
    margin-top: 8rem;
  }
  .floor-salon__sub {
    font-size: 1.4rem;
  }
  .floor-salon__main {
    flex-direction: column;
    gap: 2rem;
  }
  .floor-salon__photo {
    flex: none;
    width: 100%;
  }
  .floor-salon__kazari {
    max-width: 14rem;
  }
  .floor-salon__gallery {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
}

/* ========================================
	Page: Lower > Synactif（floor）
======================================== */
.floor-synactif {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .floor-synactif {
    padding: 4rem 0;
  }
}
.floor-synactif {
  background-image: url("../img/floor/synactif-bg.webp");
  background-size: cover;
  background-position: center;
}
.floor-synactif .wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.floor-synactif__inner {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
.floor-synactif__symbol {
  flex: 0 0 270px;
}
.floor-synactif__symbol img {
  display: block;
  width: 100%;
  height: auto;
}
.floor-synactif__body {
  flex: 1;
  min-width: 0;
}
.floor-synactif__title {
  font-size: 2rem;
  font-weight: bold;
  color: #a51e85;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.floor-synactif__lead {
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 3rem;
}
.floor-synactif__box {
  background: #fff;
  padding: 2.4rem 3rem;
}
.floor-synactif__course + .floor-synactif__course {
  border-top: 1px solid #ddd;
  margin-top: 2.4rem;
  padding-top: 2.4rem;
}
.floor-synactif__course-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.floor-synactif__course-desc {
  font-size: 1.4rem;
  color: #000;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.floor-synactif__course-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #a51e85;
}
.floor-synactif__note {
  font-size: 1.3rem;
  color: #000;
  margin-top: 1.6rem;
}
.floor-synactif__tel {
  margin-top: 2.4rem;
  text-align: center;
}
.floor-synactif__tel a {
  display: inline-block;
  max-width: 400px;
  width: 100%;
}
.floor-synactif__tel img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .floor-synactif__inner {
    flex-direction: column;
    gap: 2.4rem;
  }
  .floor-synactif__symbol {
    flex: none;
    width: 55%;
    max-width: 240px;
    margin: 0 auto;
  }
  .floor-synactif__box {
    padding: 2rem 1.6rem;
  }
  .floor-synactif__tel a {
    max-width: none;
  }
}

/* ========================================
	Page: Lower > News Archive
======================================== */
.news-archive {
  padding: 5rem 0 8rem;
}
@media (max-width: 767px) {
  .news-archive {
    padding: 3rem 0 5rem;
  }
}
.news-archive__empty {
  text-align: center;
  padding: 5rem 0;
  font-size: 1.6rem;
  color: #666;
}

.news-filter {
  margin: 0 auto 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .news-filter {
    border: 1px solid #B6498D;
    border-radius: 4px;
    padding: 1.6rem;
    margin-bottom: 2.4rem;
  }
}
.news-filter__sp-label {
  display: none;
  font-size: 1.4rem;
  font-weight: bold;
  color: #B6498D;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .news-filter__sp-label {
    display: block;
  }
}
.news-filter__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .news-filter__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
}
.news-filter__sep {
  color: #666;
  font-size: 1.4rem;
  line-height: 1;
  user-select: none;
  padding: 0 0.4rem;
}
@media (max-width: 767px) {
  .news-filter__sep {
    display: none;
  }
}
.news-filter__link {
  display: inline-block;
  padding: 0.7rem 2.4rem;
  font-size: 1.4rem;
  color: #000;
  border-radius: 2px;
  transition: color 0.2s;
}
.news-filter__link:hover {
  color: #B6498D;
}
@media (max-width: 767px) {
  .news-filter__link {
    display: block;
    text-align: center;
    padding: 0.7rem 1rem;
    border: 1px solid #B6498D;
    border-radius: 100px;
    font-size: 1.3rem;
    color: #B6498D;
  }
}
.news-filter__item.is-current .news-filter__link {
  background: #B6498D;
  color: #fff;
  border-radius: 4px;
}
.news-filter__item.is-current .news-filter__link:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .news-filter__item.is-current .news-filter__link {
    border-radius: 100px;
  }
}

.news-past-posts {
  margin-top: 5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.news-past-posts__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #B6498D;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #B6498D;
  margin-bottom: 0.8rem;
}
.news-past-posts__year-block {
  border-bottom: 1px solid #ddd;
}
.news-past-posts__year-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0.8rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: 0.8rem;
}
.news-past-posts__year-btn:hover {
  color: #B6498D;
}
.news-past-posts__icon {
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}
.news-past-posts__icon::before, .news-past-posts__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}
.news-past-posts__icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: opacity 0.25s;
}
.news-past-posts__year-btn.is-open .news-past-posts__icon::after {
  opacity: 0;
}
.news-past-posts__months {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.news-past-posts__months.is-open {
  max-height: 400px;
}
.news-past-posts__month-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.4rem;
  padding: 1rem 0.8rem 1.4rem;
}
@media (max-width: 767px) {
  .news-past-posts__month-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news-past-posts__month-link {
  display: block;
  text-align: center;
  padding: 0.6rem 0.4rem;
  font-size: 1.3rem;
  color: #000;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.news-past-posts__month-link:hover {
  background: #F2EBDD;
  color: #B6498D;
}
.news-past-posts__month-link.is-current {
  background: #B6498D;
  color: #fff;
}

/* ========================================
	Page: Lower > News Single
======================================== */
.news-single {
  padding: 5rem 0 8rem;
}
@media (max-width: 767px) {
  .news-single {
    padding: 3rem 0 5rem;
  }
}
.news-single__article {
  max-width: 900px;
  margin: 0 auto;
}
.news-single__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
.news-single__date {
  font-size: 1.4rem;
  color: #666;
  white-space: nowrap;
}
.news-single__title {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .news-single__title {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}
.news-single__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .news-single__divider {
    margin-bottom: 2.4rem;
  }
}
.news-single__body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.9;
}
.news-single__body h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 3.2rem 0 1.6rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #B6498D;
}
@media (max-width: 767px) {
  .news-single__body h2 {
    font-size: 1.8rem;
  }
}
.news-single__body h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 2.4rem 0 1.2rem;
}
@media (max-width: 767px) {
  .news-single__body h3 {
    font-size: 1.6rem;
  }
}
.news-single__body p {
  margin-bottom: 1.6rem;
}
.news-single__body ul,
.news-single__body ol {
  margin: 0 0 1.6rem 2em;
}
.news-single__body ul li + li,
.news-single__body ol li + li {
  margin-top: 0.4rem;
}
.news-single__body a {
  color: #B6498D;
  text-decoration: underline;
}
.news-single__body blockquote {
  margin: 2rem 0;
  padding: 1.2rem 2rem;
  border-left: 4px solid #B6498D;
  background: #F2EBDD;
  font-style: italic;
}
.news-single__body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
}
.news-single__body figure {
  margin: 2rem 0;
}
.news-single__body figure img {
  margin: 0 auto;
}
.news-single__body figure figcaption {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-top: 0.8rem;
}
.news-single__body .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.news-single__body .alignleft {
  float: left;
  margin: 0 2rem 1.6rem 0;
}
.news-single__body .alignright {
  float: right;
  margin: 0 0 1.6rem 2rem;
}
.news-single__body .wp-block-image {
  margin: 2rem 0;
}
.news-single__body .wp-block-image img {
  margin: 0;
}
.news-single__body::after {
  content: "";
  display: table;
  clear: both;
}
.news-single__back {
  text-align: center;
  margin: 4.8rem 0 9rem;
}
@media (max-width: 767px) {
  .news-single__back {
    margin: 3.2rem 0 9rem;
  }
}
.news-single__back-link {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 2rem;
  font-weight: bold;
  color: #a51e85;
  transition: opacity 0.2s;
}
.news-single__back-link:hover {
  opacity: 0.75;
}
.news-single__back-arrow {
  width: 54px;
  height: auto;
}

.news-recent {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #a51e85;
  border-radius: 6px;
  padding: 3.2rem;
}
@media (max-width: 767px) {
  .news-recent {
    padding: 2rem 1.6rem;
  }
}
.news-recent__title {
  position: absolute;
  top: -40px;
  left: 30px;
  width: 174px;
  height: 50px;
  margin-bottom: 0;
}
.news-recent__title img {
  width: 100%;
  height: auto;
}
.news-recent__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
}
@media (max-width: 767px) {
  .news-recent__list {
    grid-template-columns: 1fr;
  }
}
.news-recent__item {
  border-top: 1px solid #ddd;
}
.news-recent__item:nth-child(1), .news-recent__item:nth-child(2) {
  border-top: none;
}
@media (max-width: 767px) {
  .news-recent__item:nth-child(2) {
    border-top: 1px solid #ddd;
  }
}

/* ========================================
	Page: Lower > FAQ
======================================== */
.faq-page {
  padding: 6rem 0 8rem;
}
@media (max-width: 767px) {
  .faq-page {
    padding: 4rem 0 6rem;
  }
}
.faq-page .faq-item__q-letter,
.faq-page .faq-item__a-letter {
  font-family: "Marcellus", serif;
  font-size: 3.5rem;
  color: #000;
  flex-shrink: 0;
  line-height: 1;
  width: 5rem;
}
@media (max-width: 767px) {
  .faq-page .faq-item__q-letter,
  .faq-page .faq-item__a-letter {
    font-size: 2.8rem;
    width: 4rem;
  }
}
.faq-page .faq-item__a-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 2.4rem;
}
@media (max-width: 767px) {
  .faq-page .faq-item__a-inner {
    gap: 1.2rem;
    padding: 1.6rem;
  }
}
.faq-page .faq-item__a-body {
  flex: 1;
}

.faq-category + .faq-category {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .faq-category + .faq-category {
    margin-top: 4rem;
  }
}
.faq-category__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #a51e85;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .faq-category__title {
    font-size: 2rem;
  }
}

/* ========================================
	Page: Lower > Service
======================================== */
.service-main {
  background-color: #fff;
  background-image: url("../img/service/service-bg.webp");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}
.service-main__visual {
  padding-top: 110px;
}
@media (max-width: 767px) {
  .service-main__visual {
    padding-top: 0;
  }
}
.service-main__image-inner {
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 10/4;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .service-main__image-inner {
    max-width: 100%;
    aspect-ratio: unset;
    overflow: visible;
  }
}
.service-main__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
@media (max-width: 767px) {
  .service-main__image-img {
    height: auto;
    object-fit: unset;
    object-position: unset;
  }
}
.service-main__catch {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-weight: bold;
  color: #a51e85;
  line-height: 1.2;
}
.service-main__catch span {
  display: block;
  width: fit-content;
  background: #fff;
  font-size: 3.2rem;
  padding: 0.6rem 2rem;
}
.service-main__catch span + span {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .service-main__catch {
    bottom: -2.4rem;
    left: 20px;
  }
  .service-main__catch span {
    font-size: 2rem;
    padding: 0.5rem 1.6rem;
  }
}
.service-main__text {
  text-align: center;
  padding: 5rem 40px 6rem;
}
@media (max-width: 767px) {
  .service-main__text {
    padding: 6rem 20px 4rem;
  }
}
.service-main__desc {
  font-size: 1.6rem;
  line-height: 2.2;
  color: #000;
}
@media (max-width: 767px) {
  .service-main__desc {
    font-size: 1.4rem;
    text-align: center;
  }
}

/* ----------------------------------------
	Service List
---------------------------------------- */
.service-list {
  padding: 0 0 8rem;
}
@media (max-width: 767px) {
  .service-list {
    padding: 0 0 6rem;
  }
}
.service-list__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem 5rem;
}
@media (max-width: 767px) {
  .service-list__grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

.service-item__image {
  width: 100%;
  max-width: 350px;
  margin: 0 auto 2rem;
}
.service-item__image img {
  width: 100%;
  height: auto;
}
.service-item__body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.service-item__title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #000;
}
.service-item__desc {
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
  color: #000;
}
.service-item__desc-accent {
  color: #a51e85;
  font-weight: bold;
}
.service-item__checks {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  background: #fbf7ec;
  border-radius: 999px;
  padding: 1.6rem 2.8rem;
  text-align: left;
  font-weight: bold;
}
.service-item__checks li {
  font-size: 1.4rem;
  color: #a51e85;
  line-height: 1.8;
}
.service-item__checks li + li {
  margin-top: 0.6rem;
}
.service-item__checks .checks-xl {
  font-size: 2.5rem;
  font-style: normal;
}
.service-item__checks .checks-lg {
  font-size: 2rem;
  font-style: normal;
}
.service-item--card-only {
  display: flex;
  align-items: center;
}
.service-item--card-only img {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 auto;
}
.service-item__link-wrap {
  text-align: center;
}
.service-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #a51e85;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.service-item__link-icon {
  width: 44px;
  height: auto;
  display: block;
}
.service-item__link:hover {
  opacity: 0.7;
}

/* ----------------------------------------
	Cosme Delivery
---------------------------------------- */
.cosme-delivery {
  background-color: #faf4f9;
  padding: 6rem 0 8rem;
}
@media (max-width: 767px) {
  .cosme-delivery {
    padding: 4rem 0 6rem;
  }
}
.cosme-delivery__head {
  text-align: center;
  margin-bottom: 4rem;
}
.cosme-delivery__title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-size: 3.6rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .cosme-delivery__title {
    font-size: 2.8rem;
  }
}
.cosme-delivery__sub {
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  color: #666;
  letter-spacing: 0.1em;
}
.cosme-delivery__visual {
  margin-bottom: 4rem;
}
.cosme-delivery__visual-img {
  height: auto;
}
.cosme-delivery__visual-img--pc {
  display: block;
  width: 100%;
  max-width: 955px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cosme-delivery__visual-img--pc {
    display: none;
  }
}
.cosme-delivery__visual-img--sp {
  display: none;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cosme-delivery__visual-img--sp {
    display: block;
  }
}
.cosme-delivery__desc {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.2;
  color: #000;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .cosme-delivery__desc {
    font-size: 1.4rem;
  }
}
.cosme-delivery__info {
  display: grid;
  grid-template-columns: 430fr 570fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .cosme-delivery__info {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
.cosme-delivery__tel {
  display: block;
}
.cosme-delivery__tel img {
  width: 100%;
  height: auto;
  max-width: 350px;
}
@media (max-width: 767px) {
  .cosme-delivery__tel img {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .cosme-delivery__tel {
    margin-bottom: 30px;
  }
}
.cosme-delivery__ryokin {
  width: 100%;
  height: auto;
  max-width: 500px;
}
@media (max-width: 767px) {
  .cosme-delivery__ryokin {
    max-width: 350px;
    margin: 0 auto;
  }
}
.cosme-delivery__ryokin--pc {
  display: block;
}
@media (max-width: 767px) {
  .cosme-delivery__ryokin--pc {
    display: none;
  }
}
.cosme-delivery__ryokin--sp {
  display: none;
}
@media (max-width: 767px) {
  .cosme-delivery__ryokin--sp {
    display: block;
  }
}

/* ----------------------------------------
	Service Closing
---------------------------------------- */
.service-closing {
  background-color: #fff;
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .service-closing {
    padding: 4rem 0;
  }
}
.service-closing__text {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.2;
  color: #000;
}
@media (max-width: 767px) {
  .service-closing__text {
    font-size: 1.4rem;
  }
}

/* ========================================
	Recruit
======================================== */
body.page-recruit {
  background-image: url("../img/recruit/recruit-bg-pc.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  body.page-recruit {
    background-image: url("../img/recruit/recruit-bg-sp.webp");
  }
}

.page-hero--recruit {
  height: auto;
  flex-direction: column;
  background-image: url("../img/recruit/recruit-hero-bg.webp");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
}
.page-hero--recruit .page-hero__body {
  padding: 3rem 0 2.8rem;
}
@media (max-width: 767px) {
  .page-hero--recruit .page-hero__body {
    padding: 2rem 0 2rem;
  }
}

.recruit-hero__visual {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 4rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .recruit-hero__visual {
    padding: 0 20px 3rem;
  }
}
.recruit-hero__media {
  position: relative;
}
.recruit-hero__img-wrap {
  position: relative;
  overflow: hidden;
}
.recruit-hero__img-wrap.is-hover-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  z-index: 1;
  pointer-events: none;
}
.recruit-hero__img-wrap.is-hover-effect:hover::before {
  animation: brand-photo-shine 0.7s forwards;
}
.recruit-hero__img-wrap.is-hover-effect:hover .recruit-hero__img {
  animation: brand-photo-bright 0.7s ease forwards;
}
.recruit-hero__img {
  display: block;
  width: 100%;
  height: auto;
}
.recruit-hero__mind {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 4%;
  height: auto;
  pointer-events: none;
}
@media (max-width: 767px) {
  .recruit-hero__mind {
    width: 11%;
    right: -10px;
    top: -10px;
  }
}
.recruit-hero__kirakira {
  position: absolute;
  width: 12%;
  height: auto;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 767px) {
  .recruit-hero__kirakira {
    width: 24%;
  }
}
.recruit-hero__kirakira--tl {
  left: 1.3%;
  top: -7%;
}
.recruit-hero__kirakira--br {
  right: -5.7%;
  bottom: 5%;
}

/* ----------------------------------------
	Recruit: 共通セクション（Works / Support 等）
---------------------------------------- */
.recruit-section {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .recruit-section {
    padding: 4rem 0;
    overflow: hidden;
  }
}
.recruit-section__inner {
  display: grid;
  grid-template-columns: 1fr 48%;
  grid-template-rows: auto 1fr;
  grid-template-areas: "head  image" "text  image";
  column-gap: 5.6rem;
  align-items: start;
}
@media (max-width: 767px) {
  .recruit-section__inner {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }
}
.recruit-section--reverse .recruit-section__inner {
  grid-template-areas: "image head" "image text";
  grid-template-columns: 48% 1fr;
}
.recruit-section__head {
  grid-area: head;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .recruit-section__head {
    order: 1;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin: 0 auto;
  }
}
.recruit-section__en {
  font-family: "Marcellus", serif;
  font-size: 10rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .recruit-section__en {
    font-size: 7rem;
    margin-bottom: 1.5rem;
  }
}
.recruit-section__ja {
  font-size: 1.6rem;
  color: #000;
}
@media (max-width: 767px) {
  .recruit-section__ja {
    font-size: 1.4rem;
  }
}
.recruit-section__text {
  grid-area: text;
}
@media (max-width: 767px) {
  .recruit-section__text {
    order: 3;
  }
}
.recruit-section__catch {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.6;
  color: #000;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .recruit-section__catch {
    font-size: 2rem;
    text-align: center;
  }
}
.recruit-section__desc {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #000;
  margin-bottom: 2.4rem;
}
.recruit-section__desc p + p {
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .recruit-section__desc {
    font-size: 1.5rem;
  }
}
.recruit-section__link {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #a51e85;
  text-decoration: none;
}
@media (max-width: 767px) {
  .recruit-section__link {
    display: flex;
    justify-content: flex-end;
  }
}
.recruit-section__link-icon {
  width: 48px;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .recruit-section__link-icon {
    width: 44px;
  }
}
.recruit-section__image {
  grid-area: image;
  width: 100%;
}
@media (max-width: 767px) {
  .recruit-section__image {
    order: 2;
    width: calc(100% + 20px * 2);
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
    align-self: stretch;
  }
}
.recruit-section__img {
  display: block;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .recruit-section__img {
    aspect-ratio: 1/1;
    border-radius: 0;
  }
}

/* ----------------------------------------
	Recruit: Message セクション固有
---------------------------------------- */
.recruit-section--message .recruit-section__inner {
  grid-template-columns: max-content 1fr 36%;
  grid-template-rows: auto;
  grid-template-areas: "head text image";
  align-items: start;
}
.recruit-section--message .recruit-section__head {
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  align-self: stretch;
}
@media (max-width: 767px) {
  .recruit-section--message .recruit-section__head {
    flex-direction: column;
    align-items: center;
  }
}
.recruit-section--message .recruit-section__en {
  writing-mode: vertical-lr;
  font-size: 12rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .recruit-section--message .recruit-section__en {
    writing-mode: horizontal-tb;
    font-size: 7rem;
  }
}
.recruit-section--message .recruit-section__head .recruit-section__ja {
  display: none;
}
@media (max-width: 767px) {
  .recruit-section--message .recruit-section__head .recruit-section__ja {
    display: block;
    font-size: 1.4rem;
  }
}
.recruit-section--message .recruit-section__img {
  border-radius: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

.recruit-message__name {
  text-align: right;
  font-size: 1.6rem;
  margin-top: 2.4rem;
  color: #000;
}

.recruit-message__subtitle {
  display: block;
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .recruit-message__subtitle {
    display: none;
  }
}

/* ----------------------------------------
	Recruit Interview（先輩の声セクション）
---------------------------------------- */
.recruit-interview {
  background-color: transparent;
  background-image: url("../img/recruit/interview-bg-pc.webp");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 14rem 0 6rem;
}
@media (max-width: 767px) {
  .recruit-interview {
    background-image: url("../img/recruit/interview-bg-sp.webp");
    padding: 8rem 0 4rem;
  }
}
.recruit-interview__head {
  text-align: center;
  margin-bottom: 5.6rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .recruit-interview__head {
    margin-bottom: 4rem;
  }
}
.recruit-interview__title-wrap {
  position: relative;
  display: inline-block;
}
.recruit-interview__en {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 14rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: #d4a0b8;
}
@media (max-width: 767px) {
  .recruit-interview__en {
    font-size: 20vw;
  }
}
.recruit-interview__ja {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #000;
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 767px) {
  .recruit-interview__ja {
    font-size: 1.6rem;
  }
}
.recruit-interview__foot {
  text-align: right;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .recruit-interview__foot {
    margin-top: 3.2rem;
  }
}
.recruit-interview__link {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #a51e85;
  text-decoration: none;
}
.recruit-interview__link-icon {
  width: 48px;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .recruit-interview__link-icon {
    width: 44px;
  }
}

.interview-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .interview-list {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }
}

.interview-card__top {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.interview-card__img {
  display: block;
  flex: 1;
  min-width: 0;
  width: 100%;
  height: auto;
}
.interview-card__num {
  flex-shrink: 0;
  writing-mode: vertical-rl;
  font-family: "Marcellus", serif;
  font-size: 1.2rem;
  color: #d4a0b8;
  padding: 0 0.6rem;
  white-space: nowrap;
  align-self: center;
}
.interview-card__catch {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  color: #000;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .interview-card__catch {
    font-size: 1.8rem;
  }
}
.interview-card__name {
  font-size: 1.6rem;
  color: #000;
  margin-bottom: 0.2rem;
}
.interview-card__info {
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 1.6rem;
}
.interview-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.interview-card__tag {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #a85ab2, #e68c79);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.4;
}

/* ----------------------------------------
	ideal-main（求める人材 メインビジュアル）
---------------------------------------- */
.ideal-main__sp-visual {
  display: none;
}
@media (max-width: 767px) {
  .ideal-main__sp-visual {
    display: block;
  }
}
.ideal-main__bg {
  background: #fff url("../img/recruit/ideal-candidate/ideal-bg-pc.webp") top center/100% auto no-repeat;
}
@media (max-width: 767px) {
  .ideal-main__bg {
    background-image: url("../img/recruit/ideal-candidate/ideal-bg-sp.webp");
  }
}
.ideal-main__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 40px 0;
}
@media (max-width: 767px) {
  .ideal-main__inner {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .ideal-main__pc-img {
    display: none;
  }
}

/* ----------------------------------------
	ideal-content（求める人材 コンテンツブロック）
---------------------------------------- */
.ideal-content {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .ideal-content {
    padding: 4rem 0;
  }
}
.ideal-content__block {
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 5.6rem;
  align-items: center;
}
.ideal-content__block + .ideal-content__block {
  margin-top: 5.6rem;
}
@media (max-width: 767px) {
  .ideal-content__block + .ideal-content__block {
    margin-top: 4rem;
  }
}
.ideal-content__block--reverse {
  grid-template-columns: 42% 1fr;
}
@media (max-width: 767px) {
  .ideal-content__block {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }
}
@media (max-width: 767px) {
  .ideal-content__block--reverse .ideal-content__text {
    order: -1;
  }
}
.ideal-content__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.7;
  color: #000;
}
@media (max-width: 767px) {
  .ideal-content__title {
    font-size: 2.4rem;
    text-align: center;
  }
}
.ideal-content__desc {
  font-size: 1.5rem;
  line-height: 2;
  color: #000;
}

/* ----------------------------------------
	ideal-cards（求める人材 スキルカード）
---------------------------------------- */
.ideal-cards {
  padding: 6rem 0;
  background: #fff;
}
@media (max-width: 767px) {
  .ideal-cards {
    padding: 4rem 0;
  }
}
.ideal-cards__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
  max-width: 746px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .ideal-cards__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.ideal-cards__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fdf9ee;
  padding: 3.2rem 2.4rem;
}
@media (max-width: 767px) {
  .ideal-cards__item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "image name" "text  text";
    column-gap: 1.6rem;
    row-gap: 1.2rem;
    align-items: center;
    text-align: left;
    padding: 2rem;
  }
}
.ideal-cards__item:nth-child(1) .ideal-cards__image {
  width: 123px;
}
.ideal-cards__item:nth-child(2) .ideal-cards__image {
  width: 97px;
}
.ideal-cards__item:nth-child(3) .ideal-cards__image {
  width: 95px;
}
.ideal-cards__item:nth-child(4) .ideal-cards__image {
  width: 140px;
}
@media (max-width: 767px) {
  .ideal-cards__item:nth-child(1) .ideal-cards__image {
    width: 76px;
  }
  .ideal-cards__item:nth-child(2) .ideal-cards__image {
    width: 60px;
  }
  .ideal-cards__item:nth-child(3) .ideal-cards__image {
    width: 54px;
  }
  .ideal-cards__item:nth-child(4) .ideal-cards__image {
    width: 76px;
  }
}
.ideal-cards__image {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .ideal-cards__image {
    grid-area: image;
    margin-bottom: 0;
  }
}
.ideal-cards__name {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .ideal-cards__name {
    grid-area: name;
    font-size: 1.8rem;
    margin-bottom: 0;
    align-self: center;
  }
}
.ideal-cards__text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #000;
  text-align: left;
}
@media (max-width: 767px) {
  .ideal-cards__text {
    grid-area: text;
  }
}
.ideal-cards__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .ideal-cards__btns {
    margin-top: 3.2rem;
    width: 100%;
  }
}

/* ----------------------------------------
	req-flow（選考フロー）
---------------------------------------- */
.req-flow {
  --req-badge-size: 5.6rem;
  padding: 6rem 0;
  background: #fff;
}
@media (max-width: 767px) {
  .req-flow {
    padding: 4rem 0;
  }
}
.req-flow__head {
  text-align: center;
  margin-bottom: 5.6rem;
}
@media (max-width: 767px) {
  .req-flow__head {
    margin-bottom: 4rem;
  }
}
.req-flow__title {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .req-flow__title {
    font-size: 2.4rem;
  }
}
.req-flow__en {
  font-size: 1.5rem;
  color: #a51e85;
}
.req-flow__steps {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.req-flow__steps::before {
  content: "";
  position: absolute;
  top: calc(var(--req-badge-size) / 2);
  transform: translateY(-50%);
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #a51e85;
}
.req-flow__steps::after {
  content: "";
  position: absolute;
  top: calc(var(--req-badge-size) / 2);
  transform: translateY(-50%);
  right: calc(12.5% - 10px);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #a51e85;
}
@media (max-width: 767px) {
  .req-flow__steps {
    display: flex;
    flex-direction: column;
    padding-bottom: 2.4rem;
  }
  .req-flow__steps::before {
    top: calc(var(--req-badge-size) / 2);
    left: calc(var(--req-badge-size) / 2);
    transform: translateX(-50%);
    right: auto;
    width: 2px;
    height: calc(100% - var(--req-badge-size) / 2);
  }
  .req-flow__steps::after {
    top: auto;
    right: auto;
    transform: translateX(-50%);
    bottom: 0;
    left: calc(var(--req-badge-size) / 2);
    border-top: 10px solid #a51e85;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: none;
  }
}
.req-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 767px) {
  .req-flow__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
    padding-bottom: 3.2rem;
  }
  .req-flow__step:last-child {
    padding-bottom: 0;
  }
}
.req-flow__badge {
  width: var(--req-badge-size);
  height: var(--req-badge-size);
  border-radius: 50%;
  border: 2px solid #a51e85;
  background: #fff;
  color: #a51e85;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  gap: 0.1rem;
  line-height: 1;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .req-flow__badge {
    margin-bottom: 0;
  }
}
.req-flow__badge--final {
  background: #a51e85;
  color: #fff;
}
.req-flow__label {
  font-size: 1rem;
}
.req-flow__number {
  font-size: 1.6rem;
  font-weight: bold;
}
.req-flow__step--final .req-flow__label {
  font-size: 1.3rem;
  font-weight: bold;
}
.req-flow__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #000;
}
.req-flow__step--final .req-flow__text {
  color: #a51e85;
  font-weight: bold;
}

/* ----------------------------------------
	req-requirements（募集要項）
---------------------------------------- */
.req-requirements {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .req-requirements {
    padding: 4rem 0;
  }
}
.req-requirements__head {
  text-align: center;
  margin-bottom: 3.2rem;
}
.req-requirements__title {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .req-requirements__title {
    font-size: 2.4rem;
  }
}
.req-requirements__en {
  font-size: 1.5rem;
  color: #000;
}
.req-requirements__coming {
  text-align: center;
  font-size: 1.6rem;
  color: #666;
}

/* ----------------------------------------
	req-faq（採用FAQセクション見出し）
---------------------------------------- */
.req-faq-head {
  text-align: center;
  margin-bottom: 5.6rem;
}
@media (max-width: 767px) {
  .req-faq-head {
    margin-bottom: 4rem;
  }
}
.req-faq-head__title {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .req-faq-head__title {
    font-size: 2.4rem;
  }
}
.req-faq-head__en {
  font-size: 1.5rem;
  font-style: italic;
  color: #a51e85;
}

/* ----------------------------------------
	req-message（メッセージ画像）
---------------------------------------- */
.req-message {
  text-align: center;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .req-message {
    padding: 0 20px;
  }
}
.req-message__img {
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .req-message__img {
    max-width: 350px;
  }
}

/* ----------------------------------------
	req-tel（お問い合わせ情報）
---------------------------------------- */
.req-tel {
  padding: 4rem 0;
  max-width: 402px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .req-tel {
    padding: 3.2rem 0;
  }
}
/* ----------------------------------------
	Recruit Mission（ミッションセクション）
---------------------------------------- */
.recruit-mission {
  padding: 6rem 0 5rem;
}
@media (max-width: 767px) {
  .recruit-mission {
    padding: 4rem 0 3.6rem;
  }
}
.recruit-mission__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.recruit-mission__title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
  font-weight: bold;
  font-style: italic;
  font-size: clamp(3rem, 4.2vw, 5rem);
  line-height: 1.5;
  color: #000;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .recruit-mission__title {
    font-size: clamp(1.8rem, 5.5vw, 3rem);
    margin-bottom: 2.4rem;
  }
}
.recruit-mission__message {
  font-size: clamp(1.7rem, 1.7vw, 2rem);
  line-height: 2;
  color: #000;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .recruit-mission__message {
    font-size: clamp(1.4rem, 3.5vw, 1.7rem);
    margin-bottom: 2.4rem;
  }
}
.recruit-mission__bold {
  font-size: clamp(2.3rem, 2.5vw, 3rem);
  font-weight: bold;
  line-height: 1.8;
  color: #000;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .recruit-mission__bold {
    font-size: clamp(1.8rem, 4.5vw, 2.3rem);
    margin-bottom: 2.4rem;
  }
}
.recruit-mission__link {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #a51e85;
  text-decoration: none;
}
.recruit-mission__link-icon {
  width: 48px;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .recruit-mission__link-icon {
    width: 44px;
  }
}

/* ========================================
	Page: Works / Support
======================================== */
/* ----------------------------------------
	Works ページ共通
---------------------------------------- */
body.page-works #main,
body.page-requirements #main,
body.page-ideal-candidate #main {
  background-color: #fff;
}

/* ----------------------------------------
	works-staff（販売スタッフセクション）
---------------------------------------- */
.works-staff {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .works-staff {
    padding: 4rem 0;
  }
}
.works-staff__inner {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 5.6rem;
  align-items: center;
}
@media (max-width: 767px) {
  .works-staff__inner {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }
}
.works-staff__img {
  display: block;
  width: 100%;
  height: auto;
}
.works-staff__title {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .works-staff__title {
    font-size: 2.6rem;
    text-align: center;
  }
}
.works-staff__en {
  font-size: 1.5rem;
  color: #a51e85;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .works-staff__en {
    margin-bottom: 1.6rem;
    text-align: center;
  }
}
.works-staff__desc {
  font-size: 1.7rem;
  line-height: 1.9;
  color: #000;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .works-staff__desc {
    font-size: 1.5rem;
  }
}
.works-staff__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}
.works-staff__tag {
  display: inline-block;
  padding: 0.5rem 1.6rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #a85ab2, #e68c79);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
}
.works-staff__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #a51e85;
  text-decoration: none;
}
.works-staff__link-icon {
  width: 48px;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .works-staff__link-icon {
    width: 44px;
  }
}

/* ----------------------------------------
	works-office（事務スタッフセクション）
---------------------------------------- */
.works-office {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .works-office {
    padding: 4rem 0;
  }
}
.works-office__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "head ." "desc tags";
  column-gap: 5.6rem;
  row-gap: 2rem;
}
@media (max-width: 767px) {
  .works-office__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
.works-office__head {
  grid-area: head;
}
.works-office__title {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .works-office__title {
    font-size: 2.6rem;
    text-align: center;
  }
}
.works-office__en {
  font-size: 1.5rem;
  color: #a51e85;
}
@media (max-width: 767px) {
  .works-office__en {
    text-align: center;
  }
}
.works-office__desc {
  grid-area: desc;
  font-size: 1.7rem;
  line-height: 1.9;
  color: #000;
}
@media (max-width: 767px) {
  .works-office__desc {
    font-size: 1.5rem;
  }
}
.works-office__tags {
  grid-area: tags;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
.works-office__tag {
  display: inline-block;
  padding: 0.5rem 1.6rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #a85ab2, #e68c79);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
}

/* ----------------------------------------
	works-training（研修・教育制度セクション）
---------------------------------------- */
.works-training {
  background-image: url("../img/floor/synactif-bg.webp");
  background-size: cover;
  background-position: center center;
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .works-training {
    padding: 4rem 0;
  }
}
.works-training__head {
  text-align: center;
  margin-bottom: 5.6rem;
}
@media (max-width: 767px) {
  .works-training__head {
    margin-bottom: 4rem;
  }
}
.works-training__title {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .works-training__title {
    font-size: 2.4rem;
  }
}
.works-training__en {
  font-size: 1.5rem;
  font-style: italic;
  color: #a51e85;
}
@media (max-width: 767px) {
  .works-training__en {
    font-size: 1.4rem;
  }
}

/* ----------------------------------------
	works-monthly（Monthly Training ボックス）
---------------------------------------- */
.works-monthly {
  max-width: 1000px;
  margin: 4rem auto 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .works-monthly {
    padding: 3rem 2rem;
  }
}
.works-monthly__head {
  margin-bottom: 2.4rem;
}
.works-monthly__title-wrap {
  position: relative;
  display: inline-block;
}
.works-monthly__en {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 5.5rem;
  font-weight: 400;
  line-height: 1;
  color: #d4a0b8;
}
@media (max-width: 767px) {
  .works-monthly__en {
    font-size: 4.5rem;
  }
}
.works-monthly__ja {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  color: #000;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .works-monthly__ja {
    font-size: 1.7rem;
  }
}
.works-monthly__lead {
  font-size: 2.5rem;
  font-weight: bold;
  color: #a51e85;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.works-monthly__text {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #000;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

/* ----------------------------------------
	works-benefits（福利厚生セクション）
---------------------------------------- */
.works-benefits {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .works-benefits {
    padding: 4rem 0;
  }
}
.works-benefits__head {
  text-align: center;
  margin-bottom: 5.6rem;
}
@media (max-width: 767px) {
  .works-benefits__head {
    margin-bottom: 4rem;
  }
}
.works-benefits__title {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .works-benefits__title {
    font-size: 2.4rem;
  }
}
.works-benefits__en {
  font-size: 1.5rem;
  font-style: italic;
  color: #a51e85;
}
@media (max-width: 767px) {
  .works-benefits__en {
    font-size: 1.4rem;
  }
}
.works-benefits__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
  justify-items: center;
}
@media (max-width: 767px) {
  .works-benefits__list {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: stretch;
  }
}
.works-benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fdf9ee;
  max-width: 350px;
  width: 100%;
  padding: 3.2rem 2.4rem;
}
@media (max-width: 767px) {
  .works-benefits__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-areas: "image name" "text  text";
    column-gap: 1.6rem;
    row-gap: 1.2rem;
    align-items: center;
    text-align: left;
    max-width: 100%;
    padding: 2rem;
  }
}
.works-benefits__image {
  max-width: 140px;
  width: 100%;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .works-benefits__image {
    grid-area: image;
    width: 80px;
    margin-bottom: 0;
  }
}
.works-benefits__name {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .works-benefits__name {
    grid-area: name;
    font-size: 1.8rem;
    margin-bottom: 0;
    align-self: center;
  }
}
.works-benefits__text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #000;
  text-align: left;
}
@media (max-width: 767px) {
  .works-benefits__text {
    grid-area: text;
  }
}

/* ----------------------------------------
	works-timeline（1日の流れセクション）
---------------------------------------- */
.works-timeline {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .works-timeline {
    padding: 4rem 0;
  }
}
.works-timeline__inner {
  max-width: 593px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .works-timeline__inner {
    max-width: 350px;
  }
}
.works-timeline__img {
  display: block;
  width: 100%;
  height: auto;
}
.works-timeline__foot {
  text-align: center;
  margin-top: 3.2rem;
}
@media (max-width: 767px) {
  .works-timeline__foot {
    margin-top: 2.4rem;
  }
}
.works-timeline__link {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #a51e85;
  text-decoration: none;
}
.works-timeline__link-icon {
  width: 48px;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .works-timeline__link-icon {
    width: 44px;
  }
}

/* ========================================
	Page: Interview
======================================== */
/* ----------------------------------------
	interview-bg（背景ラッパー）
---------------------------------------- */
.interview-bg {
  background: #fff url("../img/recruit/interview/interview-bg.webp") top center/100% auto no-repeat;
}
@media (max-width: 767px) {
  .interview-bg {
    background-size: 300% auto;
  }
}

/* ----------------------------------------
	interview-visual（メインビジュアル）
---------------------------------------- */
.interview-visual {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 40px 0;
}
@media (max-width: 767px) {
  .interview-visual {
    padding: 4rem 0 0;
  }
}

/* ----------------------------------------
	interview-intro（イントロテキスト）
---------------------------------------- */
.interview-intro {
  padding: 4rem 0 6rem;
  text-align: center;
}
@media (max-width: 767px) {
  .interview-intro {
    padding: 3.2rem 0 4rem;
  }
}
.interview-intro__text {
  font-size: 1.5rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .interview-intro__text {
    font-size: 1.4rem;
  }
}

/* ----------------------------------------
	interview-articles（記事一覧ラッパー）
---------------------------------------- */
.interview-articles {
  padding: 0 0 8rem;
}
@media (max-width: 767px) {
  .interview-articles {
    padding: 0 0 6rem;
  }
}

/* ----------------------------------------
	interview-article（個別記事）
---------------------------------------- */
.interview-article {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 40px;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 5.6rem;
  align-items: start;
}
.interview-article--reverse {
  grid-template-columns: 1fr 42%;
}
.interview-article--reverse .interview-article__side {
  order: 2;
}
.interview-article--reverse .interview-article__qa {
  order: 1;
}
.interview-article__side {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.interview-article__num {
  font-family: "Marcellus", serif;
  font-size: 5.2rem;
  font-weight: bold;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #000;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.interview-article__num-zero {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
}
.interview-article__media {
  flex: 1;
  min-width: 0;
}
.interview-article__profile {
  padding: 1.6rem 0 0;
}
.interview-article__name {
  font-size: 1.6rem;
  color: #000;
  margin-bottom: 0.2rem;
}
.interview-article__since {
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 1.6rem;
}
.interview-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.interview-article__tag {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #a85ab2, #e68c79);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .interview-article {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
    padding: 4rem 20px;
  }
  .interview-article--reverse .interview-article__side {
    order: 0;
  }
  .interview-article--reverse .interview-article__qa {
    order: 0;
  }
  .interview-article__side {
    flex-direction: column;
  }
  .interview-article__num {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 14vw;
  }
}

/* ----------------------------------------
	interview-qa（Q&A）
---------------------------------------- */
.interview-qa__item + .interview-qa__item {
  margin-top: 3.2rem;
}
.interview-qa__head {
  position: relative;
  text-align: center;
  padding: 2.4rem 0;
  margin-bottom: 2rem;
}
.interview-qa__num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Marcellus", serif;
  font-size: 7rem;
  color: #fcced3;
  line-height: 1;
  white-space: nowrap;
  z-index: 0;
}
.interview-qa__title {
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .interview-qa__title {
    font-size: 1.6rem;
  }
}
.interview-qa__body {
  font-size: 1.5rem;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .interview-qa__body {
    font-size: 1.4rem;
  }
}

/* ========================================
	Utilities / State / Exception
======================================== */
.br-sp {
  display: none;
}
@media (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

@media (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

.u-font-serif {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", serif;
}

.u-font-en {
  font-family: "Marcellus", serif;
}

.u-font-en-kaisei {
  font-family: "Kaisei Opti", serif;
}
