@charset "UTF-8";
/** pxからvwへ変換関数 **/
.header {
  background-color: #605447;
}

.mv {
  max-width: 1280px;
  height: 330px;
  margin: 0 auto;
  position: relative;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #90775E;
}
.mv h1 {
  margin-top: 6rem;
  text-align: center;
}
.mv p {
  text-align: center;
}

/* ------------------------------
  Breadcrumb
------------------------------ */
.breadcrumb {
  font-size: 14px;
  line-height: 1.6;
  position: absolute;
  top: 105px;
  left: 0;
  padding: 0 2rem;
}

.breadcrumb__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  color: #666;
}

.breadcrumb__item a {
  color: #af6494;
  text-decoration: underline;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  display: inline-block;
  margin: 0 10px;
  color: #999;
}

.breadcrumb__link {
  color: inherit;
  text-decoration: none;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

.breadcrumb__item[aria-current=page] {
  color: #111;
}

.treatments__card {
  display: flex;
  background-color: #fff;
}

.treatments__grid {
  justify-content: space-between;
}

.treatments__thumb {
  flex: 0 0 150px; /* 左の画像幅 */
  position: relative;
  overflow: hidden;
  background: #eee;
}

.treatments__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.treatments__body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 44px 0 22px; /* 右側に矢印分の余白 */
  position: relative;
}

.treatments__title {
  font-size: 16px;
  letter-spacing: 0.04em;
}

/* 右矢印 */
.treatments__body::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #999;
  border-right: 1.5px solid #999;
  transform: rotate(45deg);
  position: absolute;
  right: 18px;
  top: 50%;
  translate: 0 -50%;
}

/* グレー枠 */
.treatments__card--ghost {
  background: #fff;
}

.treatments__thumb--ghost {
  background: #5b5b5b; /* 添付のグレー */
}

.ticket {
  color: #fff;
  background-color: #AF6494;
}
.ticket h2 {
  color: #fff;
  text-align: center;
}
.ticket .flex {
  align-items: center;
  padding: 2rem;
  border: 4px double #fff;
}
.ticket .img {
  width: 35%;
}
.ticket .img img {
  width: 80%;
  display: block;
  margin: 0 auto;
}
.ticket .text {
  width: 65%;
}
.ticket .text p {
  margin-bottom: 1.5rem;
}
.ticket .text a {
  background-color: #fff;
  padding: 1rem;
  display: block;
  width: 250px;
  border-radius: 10px;
}
.ticket .more-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #343434; /* 色は調整 */
  border-right: 1.5px solid #343434;
  transform: translateY(-50%) rotate(45deg);
}

.section h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
.section .title-h2 {
  display: flex;
  align-items: center;
  gap: 15px;
}
.section .title-h2 h2 {
  margin-bottom: 0;
}
.section .title-h2 span {
  font-size: 12px;
}

.arrow-before {
  position: relative;
}
.arrow-before:before {
  content: "▶︎";
  font-size: 1.4rem;
  margin-right: 1rem;
}

.priceTableWrap {
  margin-top: 4rem;
}
.priceTableWrap h3 {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}
.priceTableWrap h3:before {
  content: "■";
  color: #AF6494;
  font-size: 12px;
  margin-right: 5px;
}

.priceTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  color: #333;
}

.priceTable th,
.priceTable td {
  padding: 14px 14px;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
  background-color: #fff;
  vertical-align: middle;
}

.priceTable tr > *:first-child {
  border-left: 1px solid #eee;
}

.priceTable thead th {
  background: #d6d6d6;
  font-weight: 600;
  text-align: center;
  padding: 10px 12px;
  border-top: 1px solid #eee;
}

.priceTable__blank {
  width: 140px;
}

.priceTable__time {
  width: 90px;
}

.priceTable__fee {
  width: 210px;
}

.priceTable__category {
  text-align: center;
  font-weight: 600;
  background: #fff;
}

.priceTable__timeCell {
  text-align: center;
  white-space: nowrap;
}

.priceTable__feeCell {
  text-align: center;
  white-space: nowrap;
}

.linkCards {
  padding: 18px 0 80px;
}

.linkCards__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* card */
.linkCard {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e7e1d8;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.linkCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  border-color: #d9d0c4;
}

/* thumb */
.linkCard__thumb {
  aspect-ratio: 16/9; /* 画像の高さを揃える */
  background: #eee;
  overflow: hidden;
}

.linkCard__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* トリミングして揃える */
  display: block;
}

/* body */
.linkCard__body {
  position: relative;
  padding: 14px 42px 14px 14px;
}

.linkCard__en {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #8e8578;
  margin: 0 0 6px;
}

.linkCard__jp {
  margin: 0;
}

.linkCard__arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #b8b0a3;
  line-height: 1;
}

.aboutIntro {
  background: #fbfaf6;
  padding: 48px 0 64px;
}

/* ===== 上段 ===== */
.aboutIntro__top {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

.aboutIntro__image img {
  width: 100%;
  display: block;
}

.aboutIntro__title {
  font-size: 24px;
  line-height: 1.8;
  margin: 0 0 16px;
  letter-spacing: 0.05em;
}

.aboutIntro__lead {
  margin: 0 0 16px;
}

.aboutIntro__desc {
  max-width: 800px;
  margin: 0 auto 5rem;
  line-height: 2;
}

/* ===== 下段共通 ===== */
.aboutIntro__row {
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: center;
  margin-bottom: 40px;
  background-color: #fff;
}

.aboutIntro__row:last-child {
  margin-bottom: 0;
}

.aboutIntro__rowImage img {
  width: 100%;
  display: block;
}

/* テキストボックス */
.aboutIntro__box {
  background: #fff;
  padding: 22px 26px;
}

.aboutIntro__boxTitle {
  margin: 0 0 10px;
  border-left: 4px solid #AF6494;
  padding: 0.5rem 1rem;
}

.aboutIntro__boxText {
  margin: 0;
}

.aboutIntro__boxText + .aboutIntro__boxText {
  margin-top: 10px;
}

.aboutIntro__boxText.is-note {
  border-bottom: 1px solid #ddd;
  /* margin-top: 20px; */
  padding-bottom: 10px;
  padding-top: 20px;
  display: inline-block;
}
.aboutIntro__boxText.is-note:after {
  content: "▶︎";
  margin-right: 10px;
  font-size: 10px;
}

.about-worries {
  background: #fbf8f2;
  padding: 54px 0 70px;
}
.about-worries .worries__inner {
  width: min(550px, 92%);
  margin: 0 auto;
  text-align: center;
}
.about-worries .worries__title {
  font-size: 2rem;
  margin: 0 0 18px;
}
.about-worries .worries__list {
  list-style: none;
  margin: 0 auto 26px;
  padding: 0;
  text-align: left;
}
.about-worries .worries__list li {
  position: relative;
  padding-left: 20px;
  margin: 10px 0;
  font-size: 14px;
  line-height: 2;
}
.about-worries .worries__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #8b5a7b;
  position: absolute;
  left: 0;
  top: 0.85em;
  transform: translateY(-50%);
}
.about-worries .worries__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 280px;
  padding: 14px 22px;
  background: #8b5a7b;
  border: 1px solid #8b5a7b;
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.about-worries .worries__btn:hover {
  color: #8b5a7b;
  background: transparent;
}
.about-worries .worries__btn:hover .worries__btnArrow {
  border-top: 1px solid #8b5a7b;
  border-right: 1px solid #8b5a7b;
}
.about-worries .worries__btnArrow {
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
}

.worries02 .worries__list .worry-card__body h3 {
  font-size: 1.8rem;
}

.flowStep__card {
  background-color: #fff;
  padding: 3rem 4rem;
  border-radius: 10px;
  position: relative;
  align-items: center;
}

.flowStep__step {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  color: #90775E;
  font-size: 3rem;
}

.flowStep__title {
  border-left: 3px solid #af6494;
  padding: 0.7rem 1.2rem;
  margin-bottom: 1.5rem;
}

.flowStep__body {
  width: 70%;
  padding-left: 4rem;
}

.flowStep__media {
  width: 30%;
}
.flowStep__media img {
  border-radius: 50%;
}

.flowStep__next {
  display: flex;
  justify-content: center;
  padding: 5rem 0;
}

.flowStep__text {
  margin-bottom: 2rem;
}

ul.flowStep__text {
  list-style-type: disc;
  padding-left: 2.2rem;
}

.faq-container {
  width: 80%;
  margin: 0 auto;
}
.faq-container dt {
  color: #fff;
  background-color: #605447;
  padding: 12px 30px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.faq-container dt:hover {
  background-color: #90775e;
}
.faq-container dt::before {
  content: "Q: ";
}
.faq-container dt::after {
  content: "＋";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  transition: transform 0.3s;
}
.faq-container .question.appear dt::after {
  content: "―";
}
.faq-container dd::before {
  content: "A: ";
}
.faq-container dd {
  padding: 12px 30px;
  margin: 0;
  display: none;
  background-color: #fff;
}
.faq-container .question.appear dd {
  display: block;
  animation: 0.3s fadeIn;
}
.faq-container .question {
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.faq-container a {
  color: #b24d3e;
  text-decoration: underline;
}

.giftTicket__hero p {
  font-size: 14px;
  margin-top: 10px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.staffDetail {
  background: #f7f3ee;
  padding: 60px 0;
}

.staffDetail__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 54px;
  align-items: start;
  margin-bottom: 10rem;
}

/* left */
.staffDetail__photo {
  margin: 0 0 18px;
  width: 100%;
  overflow: hidden;
  background: #ddd;
}

.staffDetail__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.staffDetail__meta {
  margin: 0 0 14px;
  font-size: 12px;
  color: #333;
}

.staffDetail__metaRow {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
}

.staffDetail__meta dt {
  color: #777;
}

.staffDetail__meta dd {
  margin: 0;
}

.staffDetail__ig {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.staffDetail__igIcon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #111; /* アイコンの黒四角イメージ */
  flex: 0 0 auto;
}

.staffDetail__igArrow {
  margin-left: auto;
  opacity: 0.7;
}

.staffDetail__note {
  margin: 0;
  font-size: 11px;
  line-height: 1.9;
  color: #666;
}

/* right header */
.staffDetail__header {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-bottom: 26px;
}

.staffDetail__vTitle {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.06em;
}

.staffDetail__vSmall {
  margin: 0 0 10px;
  font-size: 12px;
  color: #5f5f5f;
}

.staffDetail__vName {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  color: #333;
}

.staffDetail__roman {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0;
  font-size: 12px;
  color: #6f6f6f;
}

.staffDetail__lead {
  color: #4f4f4f;
  margin: 0 0 28px;
}

.staffDetail__lead p {
  margin: 0;
}

.staffDetail__section {
  margin-top: 26px;
}

.staffDetail__h3 {
  margin: 0 0 10px;
  color: #333;
}

.staffDetail__text {
  color: #4f4f4f;
}

.staffDetail__text p {
  margin: 0;
}

.white-contents .container {
  background-color: #fff;
  border-radius: 10px;
  padding: 3rem;
}
.white-contents .container .flex {
  align-items: center;
}
.white-contents .container .map {
  width: 50%;
}
.white-contents .container .map iframe {
  width: 100%;
}
.white-contents .container .text {
  width: 50%;
  padding-left: 3rem;
}
.white-contents .container .text dl {
  font-size: 18px;
  margin-bottom: 25px;
}
.white-contents .container .text dl dt {
  margin-bottom: 10px;
}
.white-contents .container .text dl dt::before {
  content: "■";
  color: #AF6494;
}
.white-contents .container .red-color {
  color: #D4574F;
  margin-bottom: 2rem;
}

.routeFlow__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.routeFlow__item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.routeFlow__card {
  margin: 0;
  width: 100%;
}

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

.routeFlow__cap {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #3b3b3b;
}

.routeFlow__arrow {
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
  color: #6b6b6b;
  transform: translateY(-6px);
}

.white-contents .text.w100 {
  width: 100%;
}
.white-contents .text.w50 {
  width: 48%;
}
.white-contents .text.w50 p {
  font-size: 12px;
  margin-top: 10px;
}
.white-contents .flex-start {
  align-items: flex-start !important;
}

.contactBox {
  padding: 28px 0;
  background: transparent;
}

.contactForm {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e8e2dc;
  padding: 34px 50px;
}

.contactForm__lead {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin: 0 0 30px;
}

.contactForm__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
}

.contactForm__label {
  font-size: 16px;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contactForm__req {
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 999px;
  background: #b56b60; /* 必須バッジ色（お好みで） */
  color: #fff;
}

.contactForm__input,
.contactForm__textarea {
  width: 100%;
  border: 0;
  background: #efefef;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}

.contactForm__textarea {
  resize: vertical;
  min-height: 140px;
}

.contactForm__input:focus,
.contactForm__textarea:focus {
  box-shadow: 0 0 0 2px rgba(181, 107, 96, 0.25);
}

.contactForm__agree {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 14px;
  font-size: 14px;
  color: #333;
}

.contactForm__actions {
  display: flex;
  justify-content: center;
}

.contactForm__submit {
  min-width: 200px;
  padding: 10px 24px;
  border: 0;
  background: #8d5d86;
  color: #fff;
  font-size: 18px;
  margin-top: 35px;
  cursor: pointer;
  border-radius: 4px;
}

.contactForm__submit:hover {
  filter: brightness(0.95);
}

.reserve-box .flex {
  justify-content: space-between;
}
.reserve-box .text {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
.reserve-box .line {
  width: 58%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
}
.reserve-box .line h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 3rem;
}
.reserve-box .line h3 img {
  width: 35px;
}
.reserve-box .line .footer__reserveBtn {
  display: flex;
  color: #fff;
  background-color: #5AC363;
  margin: 3rem auto 0;
}
.reserve-box .phone {
  width: 40%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
}
.reserve-box .phone h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 3rem;
}
.reserve-box .phone h3 img {
  width: 25px;
}
.reserve-box .phone .footer__reserveBtn {
  display: flex;
  color: #fff;
  background-color: #D4574F;
  margin: 3rem auto 0;
}
.reserve-box .tel {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 3rem;
  line-height: 1;
}
.reserve-box .tel span {
  margin-right: 5px;
}
.reserve-box .tel a {
  font-size: 2.6rem;
  color: #D4574F;
}

.reserve-form h3 {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4rem;
}

/* SP */
@media (max-width: 750px) {
  .contactForm {
    padding: 22px 18px;
  }
  .contactForm__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .contactForm__label {
    justify-content: flex-start;
  }
}
@media (max-width: 980px) {
  .staffDetail__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .staffDetail__main {
    padding-right: 0;
  }
  /* SPは縦書きを通常表示に寄せる（崩れ防止） */
  .staffDetail__vTitle,
  .staffDetail__roman {
    position: static;
    writing-mode: horizontal-tb;
  }
  .staffDetail__header {
    min-height: auto;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .staffDetail__vTitle {
    display: block;
  }
  .staffDetail__vSmall {
    font-size: 12px;
  }
  .staffDetail__vName {
    font-size: 22px;
    letter-spacing: 0.08em;
  }
  .staffDetail__roman {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}
@media screen and (max-width: 750px) {
  .mv {
    padding: 0 2rem;
  }
  .breadcrumb {
    padding: 0 2rem;
    top: 85px;
  }
  .ticket .flex .img {
    width: 100%;
  }
  .ticket .flex .text {
    width: 100%;
  }
  .ticket .text a {
    width: 90%;
    margin: 3rem auto 0;
  }
  .section h2 {
    font-size: 5.8666666667vw;
  }
  .treatments__title {
    font-size: 4vw;
  }
  .treatments__body {
    padding: 0 22px;
  }
  .treatments__item {
    margin-bottom: 2rem;
  }
  .section .title-h2 {
    flex-direction: column;
    gap: 5px;
  }
  .priceTable-content {
    overflow-x: scroll;
  }
  .priceTable-content .priceTable {
    width: 600px;
  }
  .linkCards__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .aboutIntro {
    padding: 32px 2rem 48px;
  }
  .aboutIntro__top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .aboutIntro__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .aboutIntro__box {
    padding: 18px;
  }
  .aboutIntro__title {
    font-size: 18px;
  }
  .flowStep__body {
    width: 100%;
    padding-left: 0;
  }
  .flowStep__card {
    padding: 5rem 2rem 3rem;
  }
  .flowStep__media {
    width: 80%;
    margin: 2rem auto 0;
  }
  .flowStep__title {
    font-size: 5.0666666667vw;
  }
  .flowStep__step {
    font-size: 6.6666666667vw;
  }
  .faq-container {
    width: 100%;
  }
  .white-contents .container .map,
  .white-contents .container .text {
    width: 100%;
    padding-left: 0;
  }
  .white-contents .container .text {
    margin-top: 3rem;
  }
  .routeFlow__list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .routeFlow__item {
    flex-direction: column;
  }
  .routeFlow__arrow {
    transform: translateY(-6px) rotate(90deg);
  }
  .reserve-box .line {
    width: 100%;
    margin-bottom: 40px;
  }
  .reserve-box .phone {
    width: 100%;
  }
  .contactBox {
    padding: 35px 2rem;
  }
}
@media screen and (max-width: 540px) {
  .mv h1 {
    font-size: 6.6666666667vw;
  }
  .linkCards__inner {
    grid-template-columns: 1fr;
  }
  .linkCard__body {
    padding-right: 38px;
  }
  .linkCards {
    padding: 18px 2rem 80px;
  }
  .aboutIntro__boxTitle {
    font-size: 4.8vw;
  }
}
.newsArchive {
  background: #fbf7f2; /* 添付の薄いベージュ */
  padding: 50px 0 80px;
}

.newsArchive__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 55px;
  align-items: start;
}

/* sidebar */
.newsArchive__side {
  background: #fff;
  padding: 26px 22px;
  border-radius: 8px;
}

.sideBox + .sideBox {
  margin-top: 28px;
}

.sideBox__title {
  font-size: 16px;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e1d8;
}

.sideBox__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sideBox__list li + li {
  border-top: 1px solid #efe8df;
}

.sideBox__list a {
  display: block;
  padding: 11px 0;
  color: #2f2f2f;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
}

.sideBox__list a:hover {
  opacity: 0.75;
}

/* main list */
.news__main {
  display: grid;
  gap: 38px;
}

/* card */
.newsCard {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 26px;
  align-items: start;
  color: inherit;
  text-decoration: none;
}

.newsCard:hover {
  opacity: 0.9;
}

.newsCard__thumb {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
}

.newsCard__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.newsCard__date {
  font-size: 12px;
  color: #6b6b6b;
}

.newsCard__tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #fff;
  background: #b25b4f; /* えんじ系タグ */
  border-radius: 2px;
}

.newsCard__title {
  margin: 0 0 8px;
  font-size: 18px;
}

.newsCard__excerpt {
  margin: 0;
  font-size: 14px;
  color: #5a5a5a;
  /* だらっと長くなるのを防ぐ（必要なら） */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mv-problem-single {
  border-bottom: 0;
  height: 130px;
}

.news-detail {
  background-color: #fff;
  padding: 3rem;
  border-radius: 8px;
}
.news-detail h1 {
  font-size: 26px;
}

/* 本文の見出し */
.news-detail .content h2,
.news-detail .content h3,
.news-detail .content h4 {
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #2b2b2b;
  margin: 32px 0 12px;
}

.news-detail .content h2 {
  font-size: 22px;
  color: #fff;
  background-color: #b07aa1;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.news-detail .content h3 {
  font-size: 20px;
  padding-left: 12px;
  border-left: 4px solid #b07aa1;
}

.news-detail .content h4 {
  font-size: 18px;
  padding-left: 12px;
  border-left: 4px solid #b07aa1;
}

/* 段落 */
.news-detail .content p {
  margin: 0 0 18px;
}

/* リスト */
.news-detail .content ul,
.news-detail .content ol {
  margin: 0 0 22px;
  padding-left: 1.2em;
}

.news-detail .content ul li,
.news-detail .content ol li {
  margin: 8px 0;
}

.news-detail .content ul {
  list-style: disc;
}

.news-detail .content ol {
  list-style: decimal;
}

/* 画像 */
.news-detail .content figure {
  margin: 35px 0;
}

.news-detail .content figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ちょい足し：リンク */
.news-detail .content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-detail .content a:hover {
  opacity: 0.8;
}

/* responsive */
@media (max-width: 900px) {
  .newsArchive {
    padding: 50px 2rem 80px;
  }
  .newsArchive__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .newsArchive__side {
    order: 2;
  }
  .newsCard {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .newsCard__thumb {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 750px) {
  .news-detail {
    padding: 2rem;
  }
  .news-detail h1 {
    font-size: 22px;
  }
  .news-detail .content h2 {
    font-size: 20px;
  }
  .news-detail .content h3 {
    font-size: 18px;
  }
  .news-detail .content h4 {
    font-size: 16px;
  }
}
.presentCampaign {
  padding: 32px 0;
}

.presentCampaign__inner {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* 上部：紫の帯 */
.presentCampaign__head {
  background: #9a5a7f; /* 近似の紫 */
  color: #fff;
  text-align: center;
  padding: 24px 28px 22px;
}

.presentCampaign__eyebrow {
  font-family: "Bona Nova", "Sawarabi Mincho", serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}

.presentCampaign__title {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}

.presentCampaign__lead {
  margin: 0 0 10px;
}

.presentCampaign__note {
  font-size: 11px;
  line-height: 1.8;
  margin: 0;
  opacity: 0.9;
}

/* 下部：白背景の条件群 */
.presentCampaign__body {
  padding: 18px 24px 20px;
}

.presentCampaign__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 26px;
  align-items: start;
}

.presentCampaign__h3 {
  font-size: 1.8rem;
  margin: 0 0 10px;
  color: #3b3b3b;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.presentCampaign__h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #9a5a7f; /* 紫の小アイコン */
  display: inline-block;
}

.presentCampaign__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.presentCampaign__list li {
  font-size: 1.4rem;
  color: #3b3b3b;
  padding-left: 14px;
  position: relative;
  margin: 6px 0;
}

.presentCampaign__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9a5a7f;
  position: absolute;
  left: 0;
  top: 0.6em;
}

/* 下部の注意書き */
.presentCampaign__foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.presentCampaign__small {
  font-size: 11px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

@media (max-width: 750px) {
  .presentCampaign__inner {
    margin: 0 16px;
  }
  .presentCampaign__cols {
    grid-template-columns: 1fr;
  }
  .presentCampaign__head {
    padding: 22px 18px 20px;
  }
}
.recruitReq {
  padding: 56px 0 40px;
}

.recruitReq__title {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.08em;
  margin: 0 0 22px;
}

.recruitReq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.recruitReq__card {
  background: #fff;
  border-radius: 2px;
  padding: 26px 26px 22px;
  min-height: 520px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) inset;
}

.recruitReq__photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 14px;
  border-radius: 999px;
  overflow: hidden;
  background: #ddd;
}

.recruitReq__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.recruitReq__role {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin: 0 0 18px;
  color: #333;
}

.recruitReq__card--left {
  display: grid;
  align-content: start;
  justify-items: center;
}

.recruitReq__plus,
.recruitReq__end {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* 開閉パネル（閉じた状態） */
.recruitReq__body {
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
}

/* + / — の見た目例（必要なければ消してOK） */
.recruitReq__plus {
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.recruitReq__end {
  margin-top: 16px;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

/* right details */
.recruitReq__body {
  margin-top: 10px;
}

.recruitReq__dl {
  margin: 0;
}

.recruitReq__row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  padding: 14px 0;
}

.recruitReq__row + .recruitReq__row {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.recruitReq__row dt {
  font-size: 14px;
  color: #333;
  letter-spacing: 0.06em;
}

.recruitReq__row dd {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.recruitReq__row dd p {
  margin: 0 0 6px;
}

.recruitReq__row dd p:last-child {
  margin-bottom: 0;
}

.recruitReq__note {
  color: #666;
}

.recruitReq__end {
  text-align: center;
  margin-top: 16px;
  color: #777;
  letter-spacing: 0.2em;
}

/* footer note */
.recruitReq__footerNote {
  text-align: center;
  font-size: 12px;
  line-height: 2;
  color: #333;
  margin: 18px 0 0;
}

@media (max-width: 750px) {
  .recruitReq__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .recruitReq__card {
    min-height: auto;
  }
  .recruitReq {
    padding: 56px 2rem 40px;
  }
  .recruitReq__row {
    grid-template-columns: 1fr;
  }
}
.privacy {
  padding: 44px 0 70px;
  background: #faf7f0; /* 薄いベージュ */
}

.privacy__box {
  background: #fff;
  border-radius: 2px;
  padding: 28px 34px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06) inset;
}

.privacy__intro {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 2;
  color: #333;
}

.privacy__section {
  padding: 16px 0;
}

.privacy__section + .privacy__section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.privacy__h2 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #333;
}

.privacy__section p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 2;
  color: #333;
}

.privacy__list {
  margin: 0;
  padding-left: 1.2em;
}

.privacy__list li {
  font-size: 14px;
  line-height: 2;
  color: #333;
}

.privacy__dl {
  margin: 10px 0 0;
}

.privacy__dlRow {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 10px 0;
}

.privacy__dlRow + .privacy__dlRow {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.privacy__dl dt {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #333;
}

.privacy__dl dd {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.privacy__dl a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 750px) {
  .privacy {
    padding: 34px 0 56px;
  }
  .privacy__box {
    padding: 20px 18px;
  }
  .privacy__dlRow {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}/*# sourceMappingURL=common.css.map */


.giftTicket{
  padding: 40px 0 70px;
  background: #faf7f0;
}

.giftTicket__intro{
  text-align: center;
  color: #3b3b3b;
  margin: 0 0 18px;
}

.giftTicket__box{
  background: #fff;
  padding: 26px 30px 34px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06) inset;
}

.giftTicket__hero{
  margin: 0 0 26px;
}
.giftTicket__hero img{
  width: 100%;
  height: auto;
  display: block;
}

/* セクション見出し（左に紫バー） */
.giftTicket__section{
  padding: 18px 0 0;
}
.giftTicket__section + .giftTicket__section{
  margin-top: 18px;
}

.giftTicket__heading{
  margin: 0 0 14px;
  font-size: 20px;
  letter-spacing: .06em;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}
.giftTicket__heading::before{
  content: "";
  width: 4px;
  height: 18px;
  background: #8d5d86; /* 紫 */
  display: inline-block;
}
.giftTicket__small{
  font-size: 11px;
  font-weight: 400;
  color: #666;
  margin-left: 8px;
}

/* 購入方法 */
.giftTicket__steps{
  display: grid;
  gap: 16px;
}

.giftTicket__step{
  padding-left: 14px;
}

.giftTicket__h3{
  margin: 0 0 6px;
  letter-spacing: .06em;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.giftTicket__h3::before{
  content: "";
  width: 10px;
  height: 10px;
  background: #8d5d86;
  border-radius: 2px;
  display: inline-block;
}

.giftTicket__text{
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #333;
}

.giftTicket__warn{
  color: #c03a3a;
  font-weight: 600;
}

.giftTicket__lineBtn{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 4px;
  background: #39b54a; /* LINEっぽい緑 */
  color: #fff;
  text-decoration: none;
  line-height: 1;
}
.giftTicket__lineBtn:hover{ opacity: .9; }

.giftTicket__lineIcon{
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255,255,255,.25);
  display: inline-block;
}

.giftTicket__foot{
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 2;
  color: #333;
}

/* 料金表 */
.giftTicket__prices{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}

.giftTicket__priceTitle{
  margin: 0 0 10px;
  letter-spacing: .06em;
  color: #333;
}

.giftTicket__table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.giftTicket__table th,
.giftTicket__table td{
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.08);
}
.giftTicket__table thead th{
  background: #f3f1ee;
  font-weight: 700;
  color: #333;
}
.giftTicket__table td:first-child,
.giftTicket__table th:first-child{
  width: 40%;
}
.giftTicket__table td:last-child{
  text-align: right;
  white-space: nowrap;
}

.giftTicket__subWarn{
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.8;
  color: #333;
}

.giftTicket__step .flex {
  margin-top: 40px
}

/* SP */
@media (max-width: 750px){
  .giftTicket{
    padding: 34px 2rem 56px;
  }
  .giftTicket__box{
    padding: 20px 18px 26px;
  }
  .giftTicket__prices{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== お灸（moxa） ===== */
.moxa{
  display: grid;
  gap: 34px;
  margin-top: 14px;
}

/* 各ブロック */
.moxaItem{
  padding-top: 6px;
}

.moxaItem__title{
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: .06em;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.moxaItem__title::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #8d5d86; /* 紫 */
  display: inline-block;
}

/* 画像左・文章右 */
.moxaItem__grid{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

.moxaItem__img{
  margin: 0;
}
.moxaItem__img img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* テキスト */
.moxaItem__text{
  font-size: 14px;
  line-height: 2;
  color: #333;
}
.moxaItem__text p{
  margin: 0 0 10px;
}
.moxaItem__text p:last-child{
  margin-bottom: 0;
}

/* 箇条書き（紫ドット＋小見出し） */
.moxaItem__bullets{
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.moxaItem__bullets li{
  position: relative;
  padding-left: 16px;
}

.moxaItem__bullets li::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8d5d86;
  position: absolute;
  left: 0;
  top: .9em;
}

.moxaItem__bulletTitle{
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

/* SP */
@media (max-width: 750px){
  .moxa{
    gap: 26px;
  }

  .moxaItem__grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .moxaItem__img{
    max-width: 360px;
  }
}

.aromaList{
  padding: 40px 0 60px;
  background: #fff;
}

.aromaList__grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 86px;     /* 画像のカラム間隔っぽく */
  row-gap: 26px;        /* 行間 */
  list-style: disc;
}

.aromaList__item{
  position: relative;
  font-size: 16px;
  letter-spacing: .06em;
  color: #333;
  line-height: 1.4;
}

/* 右側の「斜めライン（＿／）」を擬似要素で作る */
/*.aromaList__item::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 96px; 
  height: 14px;
  border-bottom: 1px solid rgba(0,0,0,.55);
  transform: translateY(-20%) skewX(-32deg);
  transform-origin: right center;
  opacity: .85;
}*/

/* 文字が長い時に綺麗に */
.aromaList__text{
  display: inline-block;
  max-width: 100%;
}

.link-btn {
  margin-top: 2rem;
}

.link-btn a {
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid #707070;
}

.link-btn a:after {
  content: "▶";
  font-size: 10px;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .aromaList__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 44px;
  }
}

@media (max-width: 750px){
  .aromaList__grid{
    grid-template-columns: 1fr;
    row-gap: 18px;
  }
  .aromaList__item{
    padding-right: 90px;
  }
  .aromaList__item::after{
    width: 78px;
  }
}

.promoBanner{
  background:#a15a78;          /* 背景の紫 */
  padding:22px 18px;
  margin-bottom: 6rem
}

.promoBanner__inner{
  display:flex;
  gap:22px;
  align-items:stretch;
}

/* 左の画像カード */
.promoBanner__media{
  flex:0 0 360px; 
  background:#fff;
  padding:10px;
  border-radius:2px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.promoBanner__media img{
  width:100%;
}

/* 右のテキスト */
.promoBanner__content{
  flex:1;
  color:#fff;
  padding:6px 6px 6px 0;
}

.promoBanner__kicker{
  margin:0 0 10px;
  font-size:12px;
  opacity:.95;
}

.promoBanner__title{
  color: #fff;
  margin:0 0 12px;
  font-size:20px;
  font-weight:700;
  line-height:1.4;
}

.promoBanner__lead{
  margin:0 0 14px;
  font-size:13px;
  line-height:1.8;
}

.promoBanner__body{
  font-size:13px;
  line-height:1.8;
  margin:0 0 14px;
  border: 1px solid #fff;
  padding: 2rem;
}

.promoBanner__label{
  margin:0 0 6px;
  font-weight:700;
}

.promoBanner__note{
  margin:0;
  font-size:13px;
  line-height:1.8;
  opacity:.98;
}

.qa {
  padding: 0;
}

.worry-card__media img {
  height: 200px;
  object-fit: cover;
}

.staff-qa {
  margin: 0;
  padding: 0;
}

.staff-qa__item {
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  padding: 16px 0;
}

.staff-qa__q,
.staff-qa__a {
  margin: 0;
  display: flex;
  gap: 12px;
  line-height: 1.7;
}

.staff-qa__q {
  font-weight: 700;
}

.staff-qa__a {
  margin-top: 10px;
  color: rgba(0, 0, 0, .78);
}

.staff-qa__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .72);
}

.staff-qa__icon--a {
  background: rgba(0, 0, 0, .12);
}

.main-qa .qa {
  padding: 6rem 0;
}

/* スマホ調整 */
@media (max-width: 767px) {
  .staff-qa__item {
    padding: 14px 0;
  }

  .staff-qa__q,
  .staff-qa__a {
    gap: 10px;
  }

  .staff-qa__icon {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 767px){
  .promoBanner__inner{
    flex-direction:column;
    gap:14px;
  }
  .promoBanner__media{
    flex:auto;
  }
  .promoBanner__title{
    font-size:18px;
  }
  .information,
  .qa
   {
    margin-top: 6rem;
  }
}

/* 404 message */
.error-text{
  margin: 16px 0 24px;
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}

/* links list */
.error-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

/* each link card */
.error-links li{
  margin: 0;
}

.error-links a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  color: #111;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

/* arrow */
.error-links a::after{
  content: "→";
  font-size: 14px;
  opacity: .7;
}

/* hover/focus */
.error-links a:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  border-color: #d1d5db;
}

.error-links a:focus-visible{
  outline: 3px solid rgba(59,130,246,.35);
  outline-offset: 3px;
}

/* responsive */
@media (max-width: 480px){
  .error-text{
  font-size: 15px;
  }
  .error-links a{
  padding: 12px 14px;
  border-radius: 10px;
  }
}
@media (max-width: 767px){
  .error-links{
  grid-template-columns: 1fr;
  }
}