@charset "UTF-8";
:root {
  --base-color: #ffffff;
  --font-color: #333333;
  --primary-red: #98394a;
  --primary-ivory: #e3d6d2;
  --primary-beige: #c8b1aa;
  --primary-pink: #b88484;
  --primary-offwhite: #fff8f5;
  --primary-gray: #757575;
  --font-primary:
    "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "BIZ UDPGothic", "Meiryo", "MS PGothic", sans-serif;
  --font-secondary:
    "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho",
    "MS Mincho", serif;
  --font-baby: "Oooh Baby", cursive;
  --lh-sm: 1.4;
  --lh-md: 1.6;
  --lh-lg: 1.8;
}

/* ------------------------------------------------------------

Reset

------------------------------------------------------------ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
main {
  box-sizing: border-box;
  vertical-align: baseline;
  /*
      font:inherit;
      font-family:inherit;
      */
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  border: 0;
  outline: 0;
  background: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  margin: 0;
  padding: 0;
}

input,
textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  display: block;
}

:root {
  --scrollbar: 17px;
}

html {
  font-size: calc((100vw - var(--scrollbar)) / 1920 * 10 / 1620 * 1440);
  /*-ブレイクポイント1920px-*/
  /*-ブレイクポイント1620px-*/
  /*-ブレイクポイント1440px-*/
  /*-ブレイクポイント1200px-*/
  /*-ブレイクポイント767px-*/
}
@media screen and (max-width: 1920px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 1620px) {
  html {
    font-size: calc((100vw - var(--scrollbar)) / 1620 * 10);
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: calc((100vw - var(--scrollbar)) / 1440 * 9);
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: calc((100vw - var(--scrollbar)) / 1440 * 9.5);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html {
    font-size: 2.4875621891vw;
  }
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary,
textarea {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

picture {
  display: block;
}

dialog {
  border: none;
  padding: 0;
}

/*a,
a:link,
a:visited,
a:hover,
a:active{
	outline:none;
	text-decoration:none;
}*/
/*a:focus-visible{outline: 2px dotted #333;}*/
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

.focus-visible {
  outline: 2px dotted var(--font-color);
}

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

caption,
th,
td {
  vertical-align: middle;
  text-align: start;
  font-weight: normal;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

input,
select {
  vertical-align: middle;
}

img {
  max-inline-size: 100%;
  block-size: auto;
  vertical-align: top;
  object-fit: cover;
}

button {
  color: var(--font-color);
  background: none;
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

a {
  color: var(--font-color);
}

/*button:focus-visible{outline: thin dotted #333;}*/
* {
  font-family: var(--font-primary);
}

html {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  color: var(--font-color);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: var(--lh-lg);
  font-feature-settings: "palt";
  background: var(--base-color);
}

.svg_symbol {
  display: none;
}

.br-pc {
  display: block;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

.c-desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-desc p {
  line-height: var(--lh-lg);
  text-align: justify;
}
.c-desc p a {
  color: var(--primary-red);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-desc p a:hover {
    text-decoration: none;
  }
}

/* ------------------------------------------------------------

Shortcodes

------------------------------------------------------------ */
.normal {
  font-weight: 400 !important;
}

.bold {
  font-weight: 700 !important;
}

.italic {
  font-style: italic !important;
}

.none {
  display: none !important;
}

.mb-none {
  margin-block-end: 0 !important;
}

sub {
  vertical-align: sub !important;
  font-size: 50%;
}

sup {
  vertical-align: super !important;
  font-size: 50%;
}

.txt-mail::after {
  content: "@";
}

.red01 {
  color: #ff0000;
}

.indent-1 {
  text-indent: -1em;
  padding-inline-start: 1em;
}

/* ------------------------------------------------------------

404ページ

------------------------------------------------------------ */
.page-404 .content {
  padding: 6.4rem 2rem;
}
.page-404 .content > p {
  font-size: 1.6rem;
  text-align: center;
  line-height: var(--lh-md);
  font-weight: 600;
  margin-block-end: 4.8rem;
}
.page-404 .content .c-button {
  margin-inline: auto;
}

/* ------------------------------------------------------------

パンくずリスト

------------------------------------------------------------ */
.breadcrumb {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: var(--lh-md);
  padding: 4rem 2rem 0;
}
.breadcrumb__item {
  display: inline;
  font-family: var(--font-secondary);
  font-weight: 400;
}
.breadcrumb__item:not(:last-child)::after {
  content: "|";
  margin-inline: 0.5rem;
}
.breadcrumb__link {
  font-family: var(--font-secondary);
  font-weight: 400;
  text-decoration: underline;
}
@media (hover: hover) {
  .breadcrumb__link:hover {
    text-decoration: none;
  }
}

/* ------------------------------------------------------------

Splide カルーセル（ページネーション・矢印のカスタム）

------------------------------------------------------------ */
.c-splide .splide__pagination {
  gap: 0.8rem;
  margin-block-start: 3.1rem;
}
.c-splide .splide__pagination__page {
  inline-size: 1.2rem;
  block-size: 0.3rem;
  display: block;
  position: relative;
  background: #b8b8b8;
  border-radius: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
@media (hover: hover) {
  .c-splide .splide__pagination__page:hover {
    background: #848484;
  }
}
.c-splide .splide__pagination__page::before {
  content: "";
  position: absolute;
  inset-block: -1rem;
  inset-inline: -0.4rem;
}
.c-splide .splide__pagination__page.is-active {
  inline-size: 3.2rem;
  background: #848484;
}
.c-splide .splide__arrow {
  inline-size: 2rem;
  block-size: 2rem;
  display: grid;
  place-content: center;
  position: absolute;
  inset-block-end: -0.6rem;
  background: none;
  cursor: pointer;
  padding: 0;
}
@media (hover: hover) {
  .c-splide .splide__arrow:hover svg {
    fill: #848484;
  }
}
.c-splide .splide__arrow::after {
  content: "";
  position: absolute;
  inset: -0.5rem;
}
.c-splide .splide__arrow svg {
  inline-size: 2rem;
  block-size: 2rem;
  fill: #c8c8c8;
  transition: fill 0.3s;
}
.c-splide .splide__arrow--prev {
  inset-inline-start: calc(50% - 8rem);
}
.c-splide .splide__arrow--prev svg {
  transform: scaleX(-1);
}
.c-splide .splide__arrow--next {
  inset-inline-end: calc(50% - 8rem);
}

/* ------------------------------------------------------------

ボタン

------------------------------------------------------------ */
.c-button {
  inline-size: min(32.2rem, 100%);
  min-block-size: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  font-size: 1.5rem;
  text-align: center;
  border: 0 solid transparent;
  border-image-source: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><path d="M12.2 0.5H47.5V35.8L35.8 47.5H0.5V12.2Z" fill="none" stroke="%238e8e8e"/></svg>');
  border-image-slice: 13;
  border-image-width: 1.3rem;
  padding: 0.8rem 4.6rem;
}
@media (hover: hover) {
  .c-button:hover svg {
    translate: 0.5rem -50%;
  }
}
.c-button svg {
  inline-size: 2.3rem;
  block-size: 2.3rem;
  position: absolute;
  inset-inline-end: 2rem;
  inset-block-start: 50%;
  fill: var(--primary-gray);
  translate: 0 -50%;
  transition: translate 0.3s;
}
.c-button.wide {
  inline-size: min(36.2rem, 100%);
  margin-inline: auto;
}
.c-button.white {
  color: var(--base-color);
  border-image-source: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><path d="M12.2 0.5H47.5V35.8L35.8 47.5H0.5V12.2Z" fill="none" stroke="%23fff"/></svg>');
}
.c-button.white svg {
  fill: var(--base-color);
}

.mapBtn {
  inline-size: fit-content;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.8rem;
}
@media (hover: hover) {
  .mapBtn:hover {
    text-decoration: underline;
  }
}
.mapBtn svg {
  inline-size: 2.2rem;
  block-size: 2.2rem;
  fill: #c5aaa1;
}

.buttonWrap {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding-inline: 2rem;
  margin-block: 6.4rem 4.8rem;
}
.buttonWrap a {
  min-block-size: 11.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 0;
  font-size: 2rem;
  line-height: var(--lh-sm);
  letter-spacing: 0.1em;
  font-family: var(--font-secondary);
  font-weight: 400;
  background: var(--primary-ivory);
  clip-path: polygon(1.8rem 0, 100% 0, 100% calc(100% - 1.8rem), calc(100% - 1.8rem) 100%, 0 100%, 0 1.8rem);
  transition: filter 0.3s;
  transform: translateZ(0);
  padding-inline: 2rem;
  overflow: hidden;
}
@media (hover: hover) {
  .buttonWrap a:hover {
    filter: brightness(1.1);
  }
}
.buttonWrap a::after {
  content: "";
  inline-size: 12.5rem;
  block-size: 100%;
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: -0.9rem;
  z-index: -1;
  background: #ddc9c3;
  -webkit-mask: url(../images/icon_mark.svg) no-repeat center/contain;
  mask: url(../images/icon_mark.svg) no-repeat center/contain;
}
.buttonWrap a.reservation {
  gap: 1.2rem;
  color: var(--base-color);
  background: #881b3a;
}
@media (hover: hover) {
  .buttonWrap a.reservation:hover {
    filter: brightness(1.2);
  }
}
.buttonWrap a.reservation::after {
  background: #9d2749;
}
.buttonWrap span {
  font-family: var(--font-secondary);
  font-weight: 400;
}
.buttonWrap__sub {
  font-size: 1.4rem;
  line-height: var(--lh-sm);
}
.buttonWrap__main {
  font-size: 2.4rem;
  line-height: 1;
}
.buttonWrap__main span {
  font-size: 2rem;
}

/* ------------------------------------------------------------

WEB予約・TEL

------------------------------------------------------------ */
.c-btnUnit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
.c-btnUnit a {
  inline-size: 32.2rem;
  block-size: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  font-family: var(--font-secondary);
  font-weight: 400;
  transition: filter 0.3s;
}
.c-btnUnit a::before, .c-btnUnit a::after {
  content: "";
  inline-size: 1.2rem;
  block-size: 1.2rem;
  position: absolute;
  background: var(--primary-offwhite);
}
.c-btnUnit a::before {
  inset-block-start: -1px;
  inset-inline-start: -1px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transform: translateZ(0);
}
.c-btnUnit a::after {
  inset-block-end: -1px;
  inset-inline-end: -1px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: translateZ(0);
}
.c-btnUnit a svg {
  inline-size: 1.8rem;
  block-size: 1.8rem;
}
.c-btnUnit a.reservation {
  color: var(--base-color);
  font-size: 1.8rem;
  background: #881b3a;
}
@media (hover: hover) {
  .c-btnUnit a.reservation:hover {
    filter: brightness(1.2);
  }
}
.c-btnUnit a.reservation svg {
  fill: #f0f0f0;
}
.c-btnUnit a.tel {
  font-size: 2rem;
  background: var(--primary-ivory);
}
@media (hover: hover) {
  .c-btnUnit a.tel:hover {
    filter: brightness(1.1);
  }
}
.c-btnUnit a.tel svg {
  fill: #c5aaa1;
}

/* ------------------------------------------------------------

症例カード（Before/After スライダー + 詳細アコーディオン）

------------------------------------------------------------ */
.c-caseBox__title {
  font-size: 1.8rem;
  text-align: center;
  margin-block-end: 2.4rem;
}
.c-caseBox__detail {
  background: var(--primary-offwhite);
  padding: 3.2rem 2rem 0.8rem;
}
.c-caseBox__detail dl {
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
  border-block-end: 1px solid #cacaca;
  padding-block-end: 2.3rem;
}
.c-caseBox__detail dl > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-caseBox__detail dl dt {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--primary-pink);
}
.c-caseBox__detail dl dt::after {
  content: "";
  flex: 1;
  border-block-start: 1px dashed var(--primary-pink);
}
.c-caseBox__detail dl dd {
  line-height: var(--lh-md);
}
.c-caseBox__more {
  inline-size: 100%;
  position: relative;
  font-size: 1.6rem;
  background: var(--primary-offwhite);
  cursor: pointer;
  transition: opacity 0.3s;
  padding-block: 1.5rem;
}
@media (hover: hover) {
  .c-caseBox__more:hover {
    opacity: 0.8;
  }
}
.c-caseBox__more::before, .c-caseBox__more::after {
  content: "";
  inline-size: 1.4rem;
  block-size: 0.1rem;
  position: absolute;
  inset-block-start: 45%;
  inset-inline-end: 2.4rem;
  background: var(--primary-gray);
}
.c-caseBox__more::after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.c-caseBox__more[aria-expanded=true] {
  padding-bottom: 3.2rem;
}
.c-caseBox__more[aria-expanded=true]::before, .c-caseBox__more[aria-expanded=true]::after {
  inset-block-start: 35%;
}
.c-caseBox__more[aria-expanded=true]::after {
  transform: rotate(0deg);
}

.imageSlider {
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-block-end: 3.2rem;
}
.imageSlider__before {
  inline-size: 50%;
  position: absolute;
  inset: 0 auto 0 0;
}
.imageSlider__before::before {
  content: "";
  inline-size: 4.5rem;
  block-size: 4.5rem;
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: 0;
  z-index: 3;
  background: url(../images/bg_slider.svg) no-repeat center/contain;
  border-radius: 50%;
  pointer-events: none;
  translate: 50% -50%;
}
.imageSlider__before::after {
  content: "";
  inline-size: 0.3rem;
  block-size: 100%;
  position: absolute;
  inset: 0 0 auto auto;
  z-index: 2;
  background: var(--base-color);
  pointer-events: none;
  translate: 50% 0;
}
.imageSlider__before img {
  inline-size: 100%;
  block-size: 100%;
  position: absolute;
  inset: 0 auto auto 0;
  object-fit: cover;
  object-position: left center;
}
.imageSlider__inner {
  overflow: hidden;
}
.imageSlider__after {
  position: relative;
  z-index: -1;
}
.imageSlider__after img {
  inline-size: 100%;
  block-size: auto;
  aspect-ratio: 362/230;
  display: block;
  object-fit: cover;
}
.imageSlider__label {
  inline-size: 8.4rem;
  block-size: 3.4rem;
  display: grid;
  place-content: center;
  position: relative;
  z-index: 1;
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2em;
  color: var(--base-color);
  background: #7d7d7d;
}
.imageSlider__label.after {
  position: absolute;
  inset: 0 0 auto auto;
  background: var(--primary-pink);
}
.imageSlider input {
  inline-size: 100%;
  block-size: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

/* ------------------------------------------------------------

よくある質問（アコーディオン）

------------------------------------------------------------ */
.c-faq {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.c-faq__item {
  background: var(--primary-offwhite);
  border-radius: 0.8rem;
  padding: 2.4rem;
}
.c-faq__question {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding-block-end: 1.6rem;
  margin-block-end: 1.6rem;
  border-bottom: 1px dashed #9c9cb1;
}
.c-faq__question::-webkit-details-marker {
  display: none;
}
.c-faq__question span {
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: var(--lh-md);
}
.c-faq__question span.c-faq__q {
  font-family: var(--font-baby);
  font-size: 2.4rem;
  margin-top: -0.5rem;
  color: var(--primary-beige);
}
.c-faq__answer {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-faq__answer p {
  line-height: var(--lh-lg);
  text-align: justify;
}
.c-faq__answer p a {
  color: var(--primary-red);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-faq__answer p a:hover {
    text-decoration: none;
  }
}
.c-faq__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.3s;
  margin: 1.8rem auto 0;
}
@media (hover: hover) {
  .c-faq__toggle:hover {
    opacity: 0.8;
  }
}
.c-faq__toggle svg {
  inline-size: 2.6rem;
  block-size: 2.6rem;
  fill: var(--primary-gray);
}
.c-faq__toggle span {
  font-family: var(--font-secondary);
  font-weight: 400;
}
.c-faq__toggle[aria-expanded=false] svg {
  transform: scaleY(-1);
}

/* ------------------------------------------------------------

流れパターン

------------------------------------------------------------ */
.c-flow {
  display: flex;
  flex-direction: column;
  gap: 9.4rem;
  padding-block-start: 2.7rem;
}
.c-flow__item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  background: var(--primary-offwhite);
  border-radius: 0.8rem;
  padding: 4.8rem 2rem;
}
.c-flow__item:not(:last-child)::after {
  content: "";
  inline-size: 8.2rem;
  block-size: 2rem;
  position: absolute;
  inset-block-end: -4.4rem;
  inset-inline-start: 50%;
  background: #e4e2e1;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  translate: -50% 0;
  transform: translateZ(0);
}
.c-flow__num {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  inset-block-start: -2.7rem;
  inset-inline-start: 50%;
  line-height: 1;
  color: var(--primary-pink);
  white-space: nowrap;
  translate: -50% 0;
}
.c-flow__num span {
  font-family: var(--font-baby);
}
.c-flow__num span:nth-of-type(1) {
  font-size: 4rem;
}
.c-flow__num span:nth-of-type(2) {
  font-size: 5.3rem;
}
.c-flow__title {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 2rem;
  line-height: var(--lh-sm);
}
.c-flow__image img {
  inline-size: 100%;
  block-size: auto;
}
.c-flow__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-flow__desc p {
  text-align: justify;
}
.c-flow__desc p a {
  color: var(--primary-red);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-flow__desc p a:hover {
    text-decoration: none;
  }
}

/* ------------------------------------------------------------

院内紹介

------------------------------------------------------------ */
.c-info {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.c-info__item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.c-info__title {
  font-family: var(--font-secondary);
  font-weight: 400;
  display: flex;
  gap: 1rem;
  font-size: 2rem;
  line-height: var(--lh-sm);
}
.c-info__title::before {
  content: "";
  inline-size: 1rem;
  block-size: 1rem;
  flex: none;
  display: block;
  border-radius: 50%;
  background: #d0abab;
  margin-block-start: 1rem;
}
.c-info__image img {
  inline-size: 100%;
  block-size: auto;
}
.c-info__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-info__desc p {
  text-align: justify;
}
.c-info__desc p a {
  color: var(--primary-red);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-info__desc p a:hover {
    text-decoration: none;
  }
}

/* ------------------------------------------------------------

リスト

------------------------------------------------------------ */
.c-listBox {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--primary-offwhite);
  border-radius: 1rem;
  padding: 1.5rem;
}
p + .c-listBox {
  margin-block-start: 1rem;
}
.c-listBox:has(+ p) {
  margin-block-end: 1rem;
}
.c-listBox li {
  display: flex;
  gap: 1rem;
}
.c-listBox li::before {
  content: "";
  inline-size: 1.2rem;
  block-size: 2px;
  display: block;
  flex: none;
  border-radius: 0.1rem;
  background: var(--primary-pink);
  margin-block-start: 1.3rem;
}
.c-listBox li a {
  color: var(--primary-red);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-listBox li a:hover {
    text-decoration: none;
  }
}

/* ------------------------------------------------------------

目次

------------------------------------------------------------ */
.c-outline {
  position: relative;
  background: var(--primary-offwhite);
  margin: 4.8rem 2rem 0;
  padding: 4rem 2.2rem 3.2rem;
}
.c-outline__en {
  position: absolute;
  inset-block-start: -2rem;
  inset-inline-start: 50%;
  font-family: var(--font-baby);
  font-size: 4rem;
  line-height: 1;
  color: var(--primary-pink);
  translate: -50% 0;
}
.c-outline ul {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.c-outline ul li a {
  display: flex;
  gap: 1rem;
  line-height: var(--lh-sm);
  letter-spacing: 0;
  text-decoration: underline;
  transition: color 0.3s;
}
@media (hover: hover) {
  .c-outline ul li a:hover {
    color: #a1a1a1;
  }
}
.c-outline ul li a::before {
  content: "";
  inline-size: 0.7rem;
  block-size: 0.7rem;
  flex: none;
  border-radius: 50%;
  background: var(--primary-beige);
  margin-block-start: 0.8rem;
}

/* ------------------------------------------------------------

ページタイトル

------------------------------------------------------------ */
.c-pageTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  position: relative;
  z-index: 0;
  text-align: center;
  color: var(--base-color);
  background: linear-gradient(var(--primary-beige), var(--primary-beige)) no-repeat top center/100% calc(100% - 3.2rem);
  padding: 5.6rem 2rem 5.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pageTitle {
    padding-block-start: 9rem;
  }
}
.c-pageTitle::after {
  content: "";
  inline-size: 100%;
  block-size: 3.2rem;
  display: block;
  background: var(--primary-beige);
  -webkit-mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  transform: scaleY(-1);
  position: absolute;
  inset-block-end: 1px;
  inset-inline-start: 0;
}
.c-pageTitle__en {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  color: #fbf4e9;
}
.c-pageTitle__ja {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 2.8rem;
  line-height: var(--lh-sm);
}

/* ------------------------------------------------------------

ピックアップ

------------------------------------------------------------ */
.c-pickup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  position: relative;
  z-index: 0;
  color: var(--base-color);
  background: linear-gradient(var(--primary-beige), var(--primary-beige)) no-repeat center/100% calc(100% - 6.4rem);
  padding: 5.6rem 2rem 6.4rem;
  margin-block-start: 6.4rem;
}
.c-pickup::before {
  content: "";
  inline-size: 100%;
  block-size: 3.2rem;
  display: block;
  background: var(--primary-beige);
  -webkit-mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  transform: scaleY(-1);
  position: absolute;
  inset-block-start: 1px;
  inset-inline-start: 0;
  transform: none;
}
.c-pickup::after {
  content: "";
  inline-size: 100%;
  block-size: 3.2rem;
  display: block;
  background: var(--primary-beige);
  -webkit-mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  transform: scaleY(-1);
  position: absolute;
  inset-block-end: 1px;
  inset-inline-start: 0;
}
.c-pickup__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
}
.c-pickup__en {
  font-family: var(--font-baby);
  font-size: 7.2rem;
  line-height: 1;
  color: #fbf4e9;
}
.c-pickup__title {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: var(--lh-sm);
  letter-spacing: 0.1em;
}
.c-pickup__image {
  padding-inline: 2rem;
}
.c-pickup__image img {
  inline-size: 100%;
  block-size: auto;
}
.c-pickup__desc {
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-pickup__desc p {
  text-align: justify;
}
.c-pickup__desc p a {
  color: var(--primary-red);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-pickup__desc p a:hover {
    text-decoration: none;
  }
}
.c-pickup.blue {
  color: var(--font-color);
  background-image: linear-gradient(#ebf2f6, #ebf2f6);
}
.c-pickup.blue::before, .c-pickup.blue::after {
  background: #ebf2f6;
}
.c-pickup.blue .c-pickup__en {
  color: #a8b8d5;
}
.c-pickup.purple {
  color: var(--font-color);
  background-image: linear-gradient(#f6f2f9, #f6f2f9);
}
.c-pickup.purple::before, .c-pickup.purple::after {
  background: #f6f2f9;
}
.c-pickup.purple .c-pickup__en {
  color: #b49bc8;
}
.c-pickup.green {
  color: var(--font-color);
  background-image: linear-gradient(#f0fae7, #f0fae7);
}
.c-pickup.green::before, .c-pickup.green::after {
  background: #f0fae7;
}
.c-pickup.green .c-pickup__en {
  color: #b5cf9d;
}

/* ------------------------------------------------------------

診療時間テーブル

------------------------------------------------------------ */
.c-schedule {
  inline-size: 100%;
}
.c-schedule__table {
  inline-size: 100%;
  text-align: center;
  margin-block-end: 1rem;
}
.c-schedule__table thead th {
  block-size: 4.2rem;
  font-size: 1.5rem;
  font-family: var(--font-secondary);
  font-weight: 400;
  letter-spacing: 0.18em;
  border-block: 1px solid #bebebe;
}
.c-schedule__table thead th.c-schedule__header {
  inline-size: 12.6rem;
  text-align: start;
  padding-inline-start: 0.8rem;
}
.c-schedule__table tbody tr:first-child td {
  padding-block: 1rem 0.5rem;
}
.c-schedule__table tbody tr:last-child td {
  border-block-end: 1px solid #bebebe;
  padding-block: 0.5rem 1rem;
}
.c-schedule__table tbody tr td {
  font-size: 1.3rem;
}
.c-schedule__table tbody tr td.c-schedule__time {
  font-size: 1.4rem;
  text-align: start;
  white-space: nowrap;
  padding-inline-start: 0.8rem;
}
.c-schedule__note {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.c-schedule__note p {
  font-size: 1.3rem;
  line-height: var(--lh-sm);
}

/* ------------------------------------------------------------

テーブル

------------------------------------------------------------ */
.c-table {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.c-table__table {
  inline-size: 100%;
}
.c-table__table th {
  font-family: var(--font-secondary);
  font-weight: 400;
  color: var(--base-color);
  background: #d0abab;
  padding: 1rem 1.5rem;
}
.c-table__table td {
  background: var(--primary-offwhite);
  padding: 1.5rem;
  border-end-start-radius: 0.5rem;
  border-end-end-radius: 0.5rem;
}
.c-table__table td p a {
  color: var(--primary-red);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-table__table td p a:hover {
    text-decoration: none;
  }
}
.c-table__wrap {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-table.multiple {
  overflow-x: auto;
}
.c-table.multiple:not(:last-child) {
  margin-block-end: 3.2rem;
}
.c-table.multiple .c-table__table {
  min-inline-size: 60rem;
  table-layout: fixed;
}
.c-table.multiple .c-table__table tr:first-child th:first-child {
  inline-size: 13.2rem;
}
.c-table.multiple .c-table__table th,
.c-table.multiple .c-table__table td {
  line-height: var(--lh-md);
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.c-table.multiple .c-table__table th {
  border: 1px solid var(--base-color);
}
.c-table.multiple .c-table__table td {
  border: 1px solid #d0abab;
  border-radius: 0;
}
.c-table.multiple .scroll-hint-icon {
  top: 14rem;
}

/* ------------------------------------------------------------

下層のパーツ

------------------------------------------------------------ */
.c-unit {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
.c-unit__item {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.c-unit__item .c-button {
  margin-inline: auto;
}
.c-unit__image img {
  inline-size: 100%;
  block-size: auto;
}
.c-unit__item:has(.h5-title) .c-unit__image {
  inline-size: min(32.4rem, 100%);
  margin-inline: auto;
}
.c-unit__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-unit__desc p {
  text-align: justify;
}
.c-unit__desc p a {
  color: var(--primary-red);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-unit__desc p a:hover {
    text-decoration: none;
  }
}
.c-unit__map iframe, .c-unit__movie iframe {
  inline-size: 100%;
  block-size: auto;
  aspect-ratio: 362/230;
}

/* ------------------------------------------------------------

見出し

------------------------------------------------------------ */
.c-heading01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.c-heading01__en {
  font-family: var(--font-baby);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--primary-beige);
}
.c-heading01__lead {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-align: center;
}
.c-heading01__ja {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 2.2rem;
  line-height: var(--lh-sm);
  letter-spacing: 0.1em;
  text-align: center;
}
.c-heading01__wrap {
  display: contents;
}
.c-heading01:has(.c-heading01__lead) {
  gap: 0;
}
.c-heading01:has(.c-heading01__lead) .c-heading01__en {
  margin-block-end: 1.6rem;
}
.c-heading01.row {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}
.c-heading01.row .c-heading01__ja {
  font-size: 1.6rem;
}
.c-heading01.white .c-heading01__en {
  color: #fbf4e9;
}
.c-heading01.white .c-heading01__ja {
  color: var(--base-color);
}

.h2-title,
.h3-title,
.h4-title,
.h5-title {
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: var(--lh-sm);
}

.h2-title {
  font-size: 2.6rem;
  color: var(--base-color);
  background: var(--primary-pink);
  padding: 1.4rem 1.6rem;
}

.h3-title {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 2.4rem;
}
.h3-title::after {
  content: "";
  inline-size: 100%;
  block-size: 0.7rem;
  display: block;
  background: url(../images/icon_h3-title.svg) no-repeat center/cover;
}

.h4-title {
  font-size: 2.2rem;
  border-inline-start: 0.3rem solid #881b3a;
  padding-inline-start: 1.6rem;
}

.h5-title {
  display: flex;
  gap: 1rem;
  font-size: 2rem;
}
.h5-title::before {
  content: "";
  inline-size: 1rem;
  block-size: 1rem;
  flex: none;
  border-radius: 50%;
  background: var(--primary-pink);
  margin-block-start: 0.8rem;
}

/* ------------------------------------------------------------

section関連の記述

------------------------------------------------------------ */
section,
.divSection {
  overflow-x: clip;
  position: relative;
  z-index: 0;
  padding: 6.4rem 2rem 0;
}
section > .h2-title,
.divSection > .h2-title {
  margin: 0 -2rem 3.2rem;
}
section > .c-pickup,
.divSection > .c-pickup {
  margin-inline: -2rem;
}
section.sectionBtm,
.divSection.sectionBtm {
  padding-block-end: 6.4rem;
}

.SVG-Sprites {
  display: flex;
  flex-wrap: wrap;
}
.SVG-Sprites svg {
  inline-size: 25%;
}

/* ------------------------------------------------------------

Header

------------------------------------------------------------ */
.spHeader {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .spHeader {
    inline-size: 100%;
    block-size: 6.4rem;
    display: flex;
    align-items: center;
    position: fixed;
    inset-block-start: 0;
    inset-inline-start: 0;
    z-index: 3;
    background: var(--base-color);
    box-shadow: 0 0.4rem 0.6rem rgba(204, 186, 180, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 0 2rem;
  }
  .spHeader a {
    inline-size: 23rem;
    display: block;
    padding-block-start: 1rem;
  }
  .spHeader a img {
    inline-size: 100%;
    block-size: auto;
  }
}
.spHeader.is-show {
  opacity: 1;
  visibility: visible;
}

/* ------------------------------------------------------------

Footer

------------------------------------------------------------ */
.footer {
  position: relative;
  padding-block-start: 3.2rem;
}
.footer::before {
  content: "";
  inline-size: 100%;
  block-size: 3.2rem;
  display: block;
  background: var(--primary-offwhite);
  -webkit-mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  transform: scaleY(-1);
  position: absolute;
  inset-block-start: 1px;
  inset-inline-start: 0;
  transform: none;
}
.footer__main {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  background: var(--primary-offwhite);
  padding: 4.8rem 2rem 9.6rem;
}
.footer__logo {
  inline-size: 31.8rem;
  display: block;
  margin: 0 auto 1rem;
}
.footer__logo img {
  inline-size: 100%;
  block-size: auto;
}
.footer__badge {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-block-end: 0.8rem;
}
.footer__badge li {
  inline-size: calc((100% - 2rem) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base-color);
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  background: #817777;
  padding: 1.5rem 1rem;
  position: relative;
}
.footer__badge li::before {
  content: "";
  position: absolute;
  inset: 0.4rem;
  border: 1px solid #bdb6b6;
}
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.footer__address p {
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: var(--lh-sm);
}
.footer .c-schedule {
  margin-block-end: 0.8rem;
}
.footer__sns {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.footer__sns a {
  inline-size: 5rem;
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .footer__sns a:hover {
    opacity: 0.8;
  }
}
.footer__sns a img {
  inline-size: 100%;
  block-size: auto;
}
.footer__map {
  margin: 0 -2rem 3.2rem;
}
.footer__map iframe {
  inline-size: 100%;
  block-size: 26.5rem;
  display: block;
  margin-block-end: 1.5rem;
}
.footer__map .mapBtn {
  margin-inline: auto;
}
.footer__payment {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  background: var(--base-color);
  border-radius: 1.6rem;
  padding: 4.6rem 2rem 4.8rem;
}
.footer__payment img {
  inline-size: 27rem;
  block-size: auto;
}
.footer__paymentTitle {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 2.8rem;
  text-align: center;
}
.footer__paymentText {
  text-align: center;
}
.footer__sub {
  color: var(--base-color);
  background: #3d1b25;
  padding: 6.1rem 2rem 3.3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__sub {
    padding-block-end: 10rem;
  }
}
.footer__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-block-end: 4rem;
}
.footer__desc p {
  line-height: var(--lh-lg);
  text-align: justify;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 0 2rem 6.3rem;
}
.footer__links a {
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .footer__links a:hover {
    opacity: 0.8;
  }
}
.footer__links a img {
  inline-size: 100%;
  block-size: auto;
}
.footer__copy {
  text-align: center;
}

/* ------------------------------------------------------------

サイドバー

------------------------------------------------------------ */
.menuButton {
  inline-size: 8rem;
  block-size: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: fixed;
  inset-block-start: 0;
  inset-inline-end: 0;
  z-index: 5;
  background: var(--base-color);
  transition: filter 0.3s;
  cursor: pointer;
}
@media (hover: hover) {
  .menuButton:hover {
    filter: brightness(1.2);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton {
    inline-size: 6.4rem;
    block-size: 6.4rem;
    background: var(--primary-offwhite);
  }
}
.menuButton .text {
  color: var(--primary-gray);
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .text {
    font-size: 1.4rem;
  }
}
.menuButton .border {
  inline-size: 5rem;
  block-size: 1px;
  background: var(--primary-gray);
  border-radius: 10rem;
  transition: transform 0.4s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .border {
    inline-size: 4.8rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton.is-active {
    background: var(--primary-offwhite);
  }
}
.menuButton.is-active .border:nth-child(1) {
  transform: translateY(0.5rem) rotate(15deg);
}
.menuButton.is-active .border:nth-child(2) {
  transform: translateY(-0.5rem) rotate(-15deg);
}

.mvFixedBtn {
  inline-size: 8rem;
  block-size: calc(100vh - 16rem);
  display: flex;
  flex-direction: column;
  position: fixed;
  inset-block-start: 8rem;
  inset-inline-end: 0;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn {
    inline-size: calc(100% - 6.4rem);
    block-size: 6.4rem;
    flex-direction: row;
    inset-block: auto 0;
    inset-inline: 0 auto;
    box-shadow: 0 0 0.5rem rgba(169, 150, 144, 0.2);
  }
}
.mvFixedBtn__btn {
  inline-size: 50%;
  block-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  writing-mode: vertical-lr;
  text-orientation: upright;
  font-feature-settings: normal;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn {
    font-size: 1.6rem;
    writing-mode: unset;
  }
}
.mvFixedBtn__btn.reservation {
  color: var(--base-color);
  background: var(--primary-red);
  transition: filter 0.3s;
}
@media (hover: hover) {
  .mvFixedBtn__btn.reservation:hover {
    filter: brightness(1.2);
  }
}
.mvFixedBtn__btn.reservation svg {
  inline-size: 1.8rem;
  block-size: 1.8rem;
  fill: #f0f0f0;
}
.mvFixedBtn__btn.tel {
  position: relative;
  z-index: 0;
  color: var(--font-color);
  background: var(--primary-ivory);
}
@media (hover: hover) {
  .mvFixedBtn__btn.tel:hover .large {
    translate: 0 0;
  }
}
.mvFixedBtn__btn.tel .small {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-secondary);
}
.mvFixedBtn__btn.tel .small svg {
  inline-size: 1.8rem;
  block-size: 1.8rem;
  fill: #c5aaa1;
}
.mvFixedBtn__btn.tel .large {
  inline-size: 26rem;
  block-size: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  z-index: 1;
  writing-mode: horizontal-tb;
  text-orientation: unset;
  background: var(--primary-ivory);
  translate: 100% 0;
  transition: translate 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.tel .large {
    display: none;
  }
}
.mvFixedBtn__btn.tel .large span {
  font-family: var(--font-secondary);
}
.mvFixedBtn__btn.tel .large span:nth-of-type(1) {
  font-size: 1.8rem;
  line-height: var(--lh-sm);
  text-align: center;
}
.mvFixedBtn__btn.tel .large span:nth-of-type(2) {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.4rem;
}
.mvFixedBtn__btn.tel .large span:nth-of-type(2) svg {
  inline-size: 2.1rem;
  block-size: 2.1rem;
  fill: #c5aaa1;
}

.pageTop {
  inline-size: 8rem;
  block-size: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  position: fixed;
  inset-block-end: 0;
  inset-inline-end: 0;
  z-index: 2;
  color: var(--primary-gray);
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  background: var(--base-color);
  cursor: pointer;
}
@media (hover: hover) {
  .pageTop:hover svg {
    translate: 0 -0.3rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pageTop {
    inline-size: 6.4rem;
    block-size: 6.4rem;
    inset-block-end: 0;
    inset-inline-end: 0;
    box-shadow: 0 0 0.5rem rgba(169, 150, 144, 0.2);
  }
}
.pageTop svg {
  inline-size: 1.8rem;
  block-size: 1.8rem;
  fill: var(--primary-gray);
  transition: translate 0.3s;
}

/* ------------------------------------------------------------

h1,pc-content

------------------------------------------------------------ */
.wrapper {
  inline-size: 100%;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wrapper {
    inline-size: unset;
  }
}

.siteTitle {
  max-inline-size: calc(100vw - 68rem);
  padding: 0 6.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: fixed;
  inset-block-start: 3.2rem;
  inset-inline-start: 0;
  z-index: 1;
  -webkit-line-clamp: 1;
  color: #adadad;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .siteTitle {
    max-inline-size: unset;
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    -webkit-line-clamp: 3;
    color: var(--primary-ivory);
    line-height: 1.2;
    padding: 1.6rem 8.7rem 0 2rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .siteTitle {
    color: #a3a3a3;
    padding-block-start: 2.3rem;
  }
}

.pc-content {
  inline-size: 100%;
  block-size: 100vh;
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  background: #f6f6f6;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content {
    block-size: unset;
    display: none;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .pc-content {
    block-size: 65rem;
    display: block;
    position: relative;
    background: var(--base-color);
  }
}
.pc-content__bg {
  inline-size: 100%;
  block-size: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.pc-content__bg img {
  inline-size: calc(100vw - 68rem);
  block-size: auto;
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  translate: 0 -50%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__bg img {
    inline-size: 100%;
    inset-block-start: 12.8rem;
    translate: none;
  }
}
.pc-content__bg::after {
  content: "";
  inline-size: 60rem;
  block-size: 100%;
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 8rem;
  background: #f8f3f1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__bg::after {
    content: none;
  }
}
.pc-content__text {
  position: absolute;
  inset-block-start: 6.2rem;
  inset-inline-start: 6.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__text {
    inset: 0;
  }
}
.pc-content__logo {
  display: flex;
  align-items: flex-end;
  gap: 3.4rem;
  padding-block-end: 3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__logo {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding-block: 8rem 0;
  }
}
.pc-content__logo a {
  inline-size: 16.5625vw;
  display: block;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__logo a {
    inline-size: 26.1rem;
  }
}
.pc-content__logo a img {
  inline-size: 100%;
  block-size: auto;
}
.pc-content__site {
  inline-size: 18.4375vw;
  block-size: auto;
  padding-block-end: 0.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__site {
    inline-size: 29.6rem;
    padding-block-end: 0;
  }
}
.pc-content__badge {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__badge {
    gap: 1rem;
    align-items: stretch;
    position: absolute;
    inset-block-end: 2.5rem;
    inset-inline: 2rem;
    z-index: 2;
  }
}
.pc-content__badge li {
  block-size: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base-color);
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  background: #817777;
  padding: 1.2rem 1.5rem;
  position: relative;
}
.pc-content__badge li::before {
  content: "";
  position: absolute;
  inset: 0.4rem;
  border: 1px solid #bdb6b6;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__badge li {
    block-size: unset;
    flex: 1;
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    padding: 0.5rem 1rem;
  }
}
.pc-content__badge li:nth-child(1) {
  font-size: 1.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__badge li:nth-child(1) {
    font-size: 1.6rem;
  }
}
.pc-content__catch {
  inline-size: 26.875vw;
  block-size: auto;
  position: absolute;
  inset-block-start: 50.4210526316%;
  inset-inline-start: 6.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__catch {
    inline-size: 32.2rem;
    inset-block-start: unset;
    inset-block-end: 12rem;
    inset-inline-start: 2rem;
  }
}
.pc-content__catch img {
  inline-size: 100%;
  block-size: auto;
}
.pc-content .mvFixedNews {
  padding: 3.2rem 4rem 3.6rem 3.2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  background: rgba(175, 164, 160, 0.8);
  backdrop-filter: blur(1.2rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content .mvFixedNews {
    display: none;
  }
}
.pc-content .mvFixedNews__title {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: none;
  color: var(--base-color);
}
.pc-content .mvFixedNews__en {
  font-family: var(--font-baby);
  font-size: 3.2rem;
  line-height: 1;
}
.pc-content .mvFixedNews__ja {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.4rem;
}
.pc-content .mvFixedNews__list {
  inline-size: 23.0729166667vw;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  border-inline-start: 1px solid var(--base-color);
  padding-inline-start: 4rem;
  color: var(--base-color);
}
.pc-content .mvFixedNews__list a {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  color: var(--base-color);
  font-size: 1.5rem;
  line-height: var(--lh-sm);
}
@media (hover: hover) {
  .pc-content .mvFixedNews__list a:hover p {
    text-decoration: underline;
  }
}
.pc-content .mvFixedNews__list a time {
  flex: none;
}
.pc-content .mvFixedNews__list a p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pc-content .mvFixedNews__noarticle {
  font-size: 1.5rem;
}
.pc-content .mvFixedNews__btn {
  inline-size: 13rem;
  block-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex: none;
  color: var(--base-color);
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.5rem;
  border: 1px solid var(--base-color);
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .pc-content .mvFixedNews__btn:hover svg {
    translate: 0.3rem 0;
  }
}
.pc-content .mvFixedNews__btn svg {
  inline-size: 2.3rem;
  block-size: 2.3rem;
  fill: var(--base-color);
  transition: translate 0.3s;
}

/* ------------------------------------------------------------

メインコンテンツ

------------------------------------------------------------ */
.allContent {
  inline-size: 40.2rem;
  position: relative;
  z-index: 0;
  background: var(--base-color);
  margin-inline: auto 17.9rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .allContent {
    display: contents;
  }
}

/* ------------------------------------------------------------

ドロワーメニュー

------------------------------------------------------------ */
.drawerMenu {
  display: flex;
  justify-content: flex-end;
  position: fixed;
  inset: 0;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu {
    overflow: clip auto;
    overscroll-behavior: contain;
  }
}
.drawerMenu.is-active {
  opacity: 1;
  visibility: visible;
}
.drawerMenu__inner {
  display: flex;
  justify-content: center;
  inline-size: 35.4166666667vw;
  block-size: 100%;
  position: relative;
  background: var(--primary-beige);
  padding: 14.4rem 5.2rem 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__inner {
    inline-size: 34.6rem;
    block-size: auto;
    align-self: flex-start;
    padding: 6.4rem 4rem;
  }
}
.drawerMenu__inner::before {
  content: "";
  display: block;
  block-size: 100%;
  aspect-ratio: 80/950;
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: calc(100% - 1px);
  z-index: -1;
  background: var(--primary-beige);
  -webkit-mask: url(../images/header_01.svg) no-repeat left/100% 100%;
  mask: url(../images/header_01.svg) no-repeat left/100% 100%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__inner::before {
    content: none;
  }
}
.drawerMenu__nav {
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__nav {
    gap: 3.2rem;
  }
}
.drawerMenu__top {
  color: var(--base-color);
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media (hover: hover) {
  .drawerMenu__top:hover {
    text-decoration: underline;
  }
}
.drawerMenu__section {
  border-block-start: 1px dashed #ebe7e6;
  padding-block-start: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__section {
    padding-block-start: 3.2rem;
  }
}
.drawerMenu__heading {
  color: var(--base-color);
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-block-end: 3.2rem;
}
.drawerMenu__wrap {
  display: flex;
  gap: 6.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__wrap {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.drawerMenu__wrap ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.drawerMenu__wrap ul a {
  display: flex;
  gap: 0.8rem;
  color: var(--base-color);
  font-weight: 500;
  line-height: 1.2;
  position: relative;
  padding-inline-start: 1.4rem;
}
@media (hover: hover) {
  .drawerMenu__wrap ul a:hover {
    text-decoration: underline;
  }
}
.drawerMenu__wrap ul a::before {
  content: "";
  inline-size: 0.6rem;
  block-size: 0.6rem;
  flex: none;
  background: #ebe7e6;
  border-radius: 50%;
  position: absolute;
  inset-block-start: 0.7rem;
  inset-inline-start: 0;
}
.drawerMenu__icon {
  inline-size: 35.46875vw;
  block-size: auto;
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  pointer-events: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__icon {
    inline-size: 43.3rem;
    inset: auto auto 0 5.4rem;
  }
}

body:has(.drawerMenu.is-active) {
  overflow: hidden;
}

/* ------------------------------------------------------------

トップページ

------------------------------------------------------------ */
.page-top::before {
  content: "";
  inline-size: 40.2rem;
  position: fixed;
  inset-block: 0;
  inset-inline-end: 17.9rem;
  z-index: -1;
  background: url(../images/bg_01.webp) no-repeat center/cover;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top::before {
    inline-size: auto;
    inset: 0;
  }
}
.page-top > section {
  padding: 0;
}
.page-top .photo {
  position: relative;
  z-index: 1;
  margin-block-end: -3.7rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .photo {
    display: none;
  }
}
.page-top .photo img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .about {
  position: relative;
  background: linear-gradient(var(--primary-offwhite), var(--primary-offwhite)) no-repeat top center/100% calc(100% - 3.2rem);
  padding: 10.9rem 2rem 9.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about {
    padding: 6rem 2rem 8.8rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about::before {
    content: "";
    inline-size: 100%;
    block-size: 3.2rem;
    display: block;
    background: var(--primary-offwhite);
    -webkit-mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
    mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
    transform: scaleY(-1);
    position: absolute;
    inset-block-start: -3.1rem;
    inset-inline-start: 0;
    transform: translateZ(0);
    z-index: -1;
  }
}
.page-top .about::after {
  content: "";
  inline-size: 100%;
  block-size: 3.2rem;
  display: block;
  background: var(--primary-offwhite);
  -webkit-mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  transform: scaleY(-1);
  position: absolute;
  inset-block-end: 2px;
  inset-inline-start: 0;
}
.page-top .about .c-heading01 {
  justify-content: flex-start;
  margin-block-end: 2.6rem;
}
.page-top .about address {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: var(--lh-sm);
  margin-block-end: 2.3rem;
}
.page-top .about .mapBtn {
  margin-block-end: 4.4rem;
}
.page-top .about .c-btnUnit {
  margin-block-end: 3.2rem;
}
.page-top .instagram {
  padding: 7.2rem 4rem;
}
.page-top .instagram .c-heading01 {
  margin-block-end: 3.2rem;
}
.page-top .instagram__embed {
  margin-block-end: 4.8rem;
}
.page-top .pickup {
  position: relative;
  z-index: 1;
  background: linear-gradient(var(--base-color), var(--base-color)) no-repeat center/100% calc(100% - 6.4rem);
  padding: 9.6rem 2rem 9.9rem;
}
.page-top .pickup::before {
  content: "";
  inline-size: 100%;
  block-size: 3.2rem;
  display: block;
  background: var(--base-color);
  -webkit-mask: url(../images/bg_wave_01.svg) no-repeat center/cover, linear-gradient(#000, #000);
  mask: url(../images/bg_wave_01.svg) no-repeat center/cover, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transform: scaleY(-1);
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
}
.page-top .pickup::after {
  content: "";
  inline-size: 100%;
  block-size: 3.2rem;
  display: block;
  background: var(--base-color);
  -webkit-mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  transform: scaleY(-1);
  position: absolute;
  inset-block-end: 1px;
  inset-inline-start: 0;
}
.page-top .pickup .c-heading01 {
  margin-block-end: 3.4rem;
}
.page-top .pickup__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.page-top .pickup__list a {
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .page-top .pickup__list a:hover {
    opacity: 0.7;
  }
}
.page-top .pickup__list img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .concept {
  position: relative;
  color: var(--base-color);
  background: linear-gradient(var(--primary-beige), var(--primary-beige)) no-repeat top center/100% calc(100% - 3.2rem);
  margin-block-start: -3.2rem;
  padding: 9.6rem 2rem;
}
.page-top .concept::after {
  content: "";
  inline-size: 100%;
  block-size: 3.2rem;
  display: block;
  background: var(--primary-beige);
  -webkit-mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  transform: scaleY(-1);
  position: absolute;
  inset-block-end: 1px;
  inset-inline-start: 0;
}
.page-top .concept .c-heading01 {
  margin-block-end: 11.8rem;
}
.page-top .concept .c-heading01__ja {
  font-size: 2.8rem;
  line-height: var(--lh-sm);
}
.page-top .concept__trouble {
  position: relative;
  margin-inline: -2rem;
}
.page-top .concept__trouble img {
  inline-size: 100%;
  block-size: auto;
  display: block;
}
.page-top .concept__bubble {
  position: absolute;
  color: var(--font-color);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: var(--lh-sm);
  letter-spacing: 0;
  text-align: center;
  background: var(--base-color);
  border-radius: 0.8rem;
  padding: 1rem;
}
.page-top .concept__bubble span {
  font-weight: 700;
}
.page-top .concept__bubble::before {
  content: "";
  inline-size: 1.7rem;
  block-size: 1.1rem;
  position: absolute;
  inset-inline-start: 50%;
  background: url(../images/icon_bubble_01.svg) no-repeat center/contain;
  translate: -50% 0;
}
.page-top .concept__bubble:nth-of-type(1) {
  inset-block-start: -8.6rem;
  inset-inline-start: 2rem;
}
.page-top .concept__bubble:nth-of-type(1)::before {
  inset-block-end: -1.9rem;
  scale: -1 1;
}
.page-top .concept__bubble:nth-of-type(2) {
  inset-block-start: -5.4rem;
  inset-inline-end: 2rem;
}
.page-top .concept__bubble:nth-of-type(2)::before {
  inset-block-end: -1.9rem;
}
.page-top .concept__bubble:nth-of-type(3) {
  inset-block-end: 11.5rem;
  inset-inline-start: 2rem;
}
.page-top .concept__bubble:nth-of-type(3)::before {
  inset-block-start: -1.9rem;
  scale: -1 -1;
}
.page-top .concept__bubble:nth-of-type(4) {
  inset-block-end: 8.3rem;
  inset-inline-end: 2rem;
}
.page-top .concept__bubble:nth-of-type(4)::before {
  inset-block-start: -1.9rem;
  scale: -1 1;
}
.page-top .concept__ribbon {
  inline-size: 13rem;
  block-size: 5.2rem;
  display: flex;
  justify-content: center;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.2;
  background: #881b3a;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateZ(0);
  padding-block-start: 0.9rem;
  margin: -3.6rem auto 4rem;
}
.page-top .concept__message {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: center;
  margin-block-end: 3.2rem;
}
.page-top .concept__message p {
  font-family: var(--font-secondary);
  font-weight: 400;
}
.page-top .concept__catch {
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.page-top .concept__catch .large {
  display: inline-block;
  position: relative;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 2.8rem;
}
.page-top .concept__catch .large::after {
  content: "";
  inline-size: 24.2rem;
  block-size: 1.5rem;
  position: absolute;
  inset-block-end: -0.3rem;
  inset-inline-start: 50%;
  background: url(../images/icon_home_01.svg) no-repeat center/contain;
  translate: -45% 0;
}
.page-top .case {
  padding: 7.2rem 2rem;
}
.page-top .case .c-heading01 {
  margin-block-end: 3.3rem;
}
.page-top .case .c-heading01__ja {
  font-size: 2.8rem;
}
.page-top .case__slider {
  margin-block-end: 4.8rem;
}
.page-top .case__empty {
  text-align: center;
}
.page-top .case .c-caseBox__title {
  margin-block-start: 3.2rem;
}
.page-top .case .c-caseBox__detail,
.page-top .case .c-caseBox__more {
  background: var(--base-color);
}
.page-top .feature {
  padding-block: 9.6rem 8rem;
}
.page-top .feature .c-heading01 {
  margin-block-end: 3.3rem;
}
.page-top .feature .c-heading01__ja {
  font-size: 2.4rem;
}
.page-top .feature .c-heading01__ja .num {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 3.6rem;
}
.page-top .feature__wrap {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
.page-top .feature__visual {
  position: relative;
  margin-block-end: 3.1rem;
}
.page-top .feature__visual img {
  inline-size: 28rem;
  block-size: auto;
  display: block;
}
.page-top .feature__badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  position: absolute;
  inset-block-start: 10.7rem;
  inset-inline-end: 0;
}
.page-top .feature__badge p {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  color: var(--base-color);
  background: var(--primary-pink);
  padding: 0.8rem 0.8rem 0.5rem 0.8rem;
}
.page-top .feature__num {
  position: absolute;
  inset-block-end: -3.1rem;
  font-family: var(--font-baby);
  font-size: 12rem;
  line-height: 1;
  letter-spacing: -0.1em;
  color: #f5e7e7;
}
.page-top .feature__item.reverse .feature__visual img {
  margin-inline-start: auto;
}
.page-top .feature__item:nth-of-type(odd) .feature__num {
  inset-inline-end: 4rem;
}
.page-top .feature__item:nth-of-type(even) .feature__num {
  inset-inline-start: 0.8rem;
}
.page-top .feature__body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-inline: 2rem;
}
.page-top .feature__body .c-button {
  margin: 1.6rem auto 0;
}
.page-top .feature__title {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 2.2rem;
  line-height: var(--lh-sm);
  letter-spacing: 0.1em;
}
.page-top .feature__equipment {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7.8rem 0.8rem;
  position: relative;
  padding-inline: 2rem;
  margin-block-end: 5.3rem;
}
.page-top .feature__equipment .feature__num {
  inset-block-end: -14rem;
  z-index: -1;
}
.page-top .feature__card {
  position: relative;
}
.page-top .feature__card img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .feature__card p {
  position: absolute;
  inset-block-end: -1.6rem;
  inset-inline-start: 50%;
  font-size: 1.6rem;
  line-height: var(--lh-sm);
  text-align: center;
  white-space: nowrap;
  color: var(--base-color);
  background: var(--primary-pink);
  translate: -50% 0;
  padding: 0.6rem 0.8rem;
}
.page-top .feature__card:nth-of-type(1) p {
  inset-block-end: -2.8rem;
}
.page-top .approach {
  position: relative;
  z-index: 1;
  background: linear-gradient(var(--base-color), var(--base-color)) no-repeat center/100% calc(100% - 6.4rem);
  padding-block: 9.6rem 8.6rem;
}
.page-top .approach::before {
  content: "";
  inline-size: 100%;
  block-size: 3.2rem;
  display: block;
  background: var(--base-color);
  -webkit-mask: url(../images/bg_wave_01.svg) no-repeat center/cover, linear-gradient(#000, #000);
  mask: url(../images/bg_wave_01.svg) no-repeat center/cover, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transform: scaleY(-1);
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
}
.page-top .approach::after {
  content: "";
  inline-size: 100%;
  block-size: 3.2rem;
  display: block;
  background: var(--base-color);
  -webkit-mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  transform: scaleY(-1);
  position: absolute;
  inset-block-end: 1px;
  inset-inline-start: 0;
}
.page-top .approach .c-heading01 {
  margin-block-end: 3.2rem;
}
.page-top .approach .c-heading01__lead {
  margin-block-end: 1rem;
}
.page-top .approach .c-heading01__ja {
  font-size: 2.4rem;
}
.page-top .approach .c-heading01__ja .num {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 3.6rem;
}
.page-top .approach__wrap {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
.page-top .approach__item {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  border-radius: 0 1.6rem 1.6rem 0;
  padding-block: 5.6rem;
}
.page-top .approach__visual {
  position: relative;
  padding-block-start: 3.6rem;
  margin-block-end: 2.4rem;
}
.page-top .approach__visual img {
  inline-size: 31.4rem;
  block-size: auto;
  display: block;
}
.page-top .approach__visual img.approach__product {
  inline-size: 21.1rem;
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 2rem;
}
.page-top .approach__visual.reverse img {
  margin-inline-start: auto;
}
.page-top .approach__en {
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 2rem;
  z-index: 1;
  font-family: var(--font-baby);
  font-size: 7.2rem;
  line-height: 1;
}
.page-top .approach__en.left {
  inset-inline-start: 2rem;
  inset-inline-end: auto;
}
.page-top .approach__body {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding-inline: 2rem;
}
.page-top .approach__body .c-button {
  margin: 1.2rem auto 0;
}
.page-top .approach__heading {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.page-top .approach__heading .approach__lead {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 2.2rem;
  line-height: var(--lh-sm);
}
.page-top .approach__heading .approach__name {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.page-top .approach__heading .approach__name span {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 400;
  margin-inline-start: 0.4rem;
}
.page-top .approach__tag {
  display: flex;
  gap: 1.5rem;
}
.page-top .approach__tag li {
  flex: 1;
  display: grid;
  place-content: center;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  color: var(--base-color);
  padding: 1rem;
}
.page-top .approach__tag.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.page-top .approach__tag.grid li {
  font-size: 1.8rem;
  padding: 1.2rem 1rem;
}
.page-top .approach__tag.grid .wide {
  grid-column: 1/-1;
}
.page-top .approach__catch > .approach__lead {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 2.2rem;
  line-height: var(--lh-sm);
  margin-block-end: 0.8rem;
}
.page-top .approach__note {
  display: flex;
  gap: 0.8rem;
}
.page-top .approach__circle {
  inline-size: 5.9rem;
  block-size: 5.9rem;
  flex-shrink: 0;
  display: grid;
  grid-auto-flow: column;
  place-content: center;
  align-items: baseline;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--base-color);
  background: #859ecc;
  border-radius: 50%;
}
.page-top .approach__circle span {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.9rem;
}
.page-top .approach__brand {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  line-height: var(--lh-sm);
}
.page-top .approach__brand span {
  font-family: var(--font-secondary);
  font-size: 2.6rem;
  font-weight: 600;
}
.page-top .approach__kana {
  font-family: var(--font-secondary);
  font-weight: 400;
  align-self: flex-end;
  font-size: 1.5rem;
  margin-block-end: 0.3rem;
}
.page-top .approach__badge {
  inline-size: 12.3rem;
  block-size: 12.3rem;
  position: absolute;
  inset-block-end: -0.8rem;
  inset-inline-end: 0;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: var(--lh-sm);
  text-align: center;
  white-space: nowrap;
  color: var(--base-color);
  background: #bfa06d;
  border-radius: 50%;
  padding-block-start: 2.3rem;
}
.page-top .approach__badge span {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.6rem;
}
.page-top .approach__badge small {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-block-start: 0.2rem;
}
.page-top .approach .whiteningItem {
  margin-inline-end: 2rem;
  background: #ebf2f6;
}
.page-top .approach .whiteningItem .approach__en {
  color: #a8b8d5;
}
.page-top .approach .whiteningItem .approach__heading,
.page-top .approach .whiteningItem .approach__catch,
.page-top .approach .whiteningItem .approach__brand {
  color: #6c8cc9;
}
.page-top .approach .whiteningItem .approach__kana {
  color: #688dd5;
}
.page-top .approach .whiteningItem .approach__tag li {
  background: #869ecc;
}
.page-top .approach .labrillerItem {
  background: #f6f2f9;
  border-radius: 1.6rem 0 0 1.6rem;
  margin-inline-start: 2rem;
}
.page-top .approach .labrillerItem .approach__en {
  color: #b49bc8;
}
.page-top .approach .labrillerItem .approach__heading {
  color: #9f83b4;
}
.page-top .approach .labrillerItem .approach__tag li {
  background: #a888bf;
}
.page-top .approach .cleaningItem {
  margin-inline-end: 2rem;
  background: #f0fae7;
}
.page-top .approach .cleaningItem .approach__en {
  color: #b5cf9d;
}
.page-top .approach .cleaningItem .approach__heading {
  color: #7bac4e;
}
.page-top .greeting {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  position: relative;
  background: linear-gradient(var(--primary-offwhite), var(--primary-offwhite)) no-repeat top center/100% calc(100% - 3.2rem);
  margin-block-start: -3.2rem;
  padding: 9.6rem 2rem 9.7rem;
}
.page-top .greeting::before {
  content: "";
  inline-size: 38.8rem;
  block-size: 35.2rem;
  position: absolute;
  inset-block-end: 9rem;
  inset-inline-end: -10.9rem;
  background: url(../images/icon_home_02.svg) no-repeat center/contain;
  pointer-events: none;
  z-index: -1;
}
.page-top .greeting::after {
  content: "";
  inline-size: 100%;
  block-size: 3.2rem;
  display: block;
  background: var(--primary-offwhite);
  -webkit-mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  mask: url(../images/bg_wave_01.svg) no-repeat center/cover;
  transform: scaleY(-1);
  position: absolute;
  inset-block-end: 1px;
  inset-inline-start: 0;
}
.page-top .greeting .c-heading01__ja {
  font-size: 2.4rem;
}
.page-top .greeting__image img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .faq {
  padding: 7.2rem 2rem;
}
.page-top .faq .c-heading01 {
  margin-block-end: 3.3rem;
}
.page-top .faq .c-heading01__ja {
  font-size: 2.8rem;
}
.page-top .faq .c-faq__item {
  background: var(--base-color);
}
.page-top .gallery {
  display: flex;
  overflow: hidden;
  margin-block-end: 7.2rem;
}
.page-top .gallery__track {
  display: flex;
  gap: 2.4rem;
  flex-shrink: 0;
  animation: galleryLoop 40s linear infinite;
  padding-inline-end: 2.4rem;
}
.page-top .gallery__track li {
  inline-size: 36.8rem;
}
.page-top .gallery__track li img {
  inline-size: 100%;
  block-size: auto;
}
@keyframes galleryLoop {
  to {
    translate: -100% 0;
  }
}

/* ------------------------------------------------------------

新着情報一覧

------------------------------------------------------------ */
.archive {
  padding: 6.4rem 2rem;
}
.archive__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.archive__links .c-button {
  inline-size: calc((100% - 1.6rem) / 2);
}
.archive__links .c-button svg {
  inset-inline-end: 1.2rem;
}
.archive__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-block-start: 8rem;
}

.articleUnit > img {
  inline-size: 100%;
  block-size: auto;
  aspect-ratio: 362/230;
}
.articleUnit .c-caseBox .imageSlider {
  margin-block-end: 0;
}
.articleUnit a {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  z-index: 0;
  color: var(--font-color);
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--primary-red);
}
@media (hover: hover) {
  .articleUnit a:hover .articleUnit__title {
    text-decoration: underline;
  }
}
.articleUnit__image img {
  inline-size: 100%;
  block-size: auto;
  aspect-ratio: 362/230;
}
.articleUnit__date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.articleUnit__date time {
  line-height: 1;
}
.articleUnit__category {
  inline-size: 8rem;
  block-size: 2.5rem;
  display: grid;
  place-content: center;
  color: var(--base-color);
  font-size: 1.3rem;
  font-weight: 500;
  background: var(--primary-pink);
}
.articleUnit__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: var(--lh-md);
  -webkit-line-clamp: 2;
}

.PageNavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.PageNavi .page-numbers {
  inline-size: 4rem;
  block-size: 4rem;
  display: grid;
  place-items: center;
  color: var(--font-color);
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .PageNavi .page-numbers:hover {
    opacity: 0.6;
  }
}
.PageNavi .page-numbers:not(.prev):not(.next):not(.current) {
  border: 1px solid var(--font-color);
}
.PageNavi .page-numbers.current {
  color: var(--base-color);
  background: var(--primary-red);
  pointer-events: none;
}

/* ------------------------------------------------------------

記事詳細

------------------------------------------------------------ */
.single {
  padding: 6.4rem 2rem;
}
.single .h2-title {
  margin-block-end: 4rem;
}
.single .h3-title {
  margin-block-end: 3.2rem;
}
.single__image:not(:last-child) {
  margin-block-end: 2rem;
}
.single__image img {
  inline-size: 100%;
  block-size: auto;
}
.single__image figcaption {
  text-align: center;
}
.single__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.single__desc:not(:last-child) {
  margin-block-end: 4rem;
}
.single__desc:has(+ .treatment) {
  margin-block-end: 8rem;
}
.single__desc p,
.single__desc li {
  overflow-wrap: anywhere;
  font-size: 1.6rem;
  /* 収まらない場合に折り返す */
  word-break: normal;
  /* 単語の分割はデフォルトに依存 */
  line-break: strict;
  /* 禁則処理を厳格に適用 */
}
.single__desc strong {
  font-weight: 900;
  font-size: 1.8rem;
}
.single__desc ol {
  margin-inline-start: 2.5rem;
}
.single__desc ol li {
  list-style-type: decimal;
}
.single__desc ul {
  margin-inline-start: 2.5rem;
}
.single__desc ul li {
  list-style-type: disc;
}
.single__desc a {
  color: var(--primary-red);
  text-decoration: underline;
}
.single__desc hr {
  inline-size: 100%;
  border-style: solid;
  border-color: var(--primary-gray);
}
.single__desc del {
  text-decoration: line-through;
}
.single__desc em {
  font-style: italic;
}
.single__desc blockquote {
  background: var(--primary-ivory);
  padding: 1rem;
}
.single__desc h2,
.single__desc h3,
.single__desc h4,
.single__desc h5,
.single__desc h6 {
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: var(--lh-sm);
}
.single__desc h2 {
  font-size: 2.6rem;
  color: var(--base-color);
  background: var(--primary-pink);
  padding: 1.4rem 1.6rem;
}
.single__desc h3 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 2.4rem;
}
.single__desc h3::after {
  content: "";
  inline-size: 100%;
  block-size: 0.7rem;
  display: block;
  background: url(../images/iconh3.svg) no-repeat center/cover;
}
.single__desc h4 {
  font-size: 2.2rem;
  border-inline-start: 0.3rem solid #881b3a;
  padding-inline-start: 1.6rem;
}
.single__desc h5 {
  display: flex;
  gap: 1rem;
  font-size: 2rem;
}
.single__desc h5::before {
  content: "";
  inline-size: 1rem;
  block-size: 1rem;
  flex: none;
  border-radius: 50%;
  background: var(--primary-pink);
  margin-block-start: 0.8rem;
}
.single__desc h6 {
  font-size: 1.8rem;
}
.single .treatment {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-block-end: 8rem;
}
.single .treatment__item > h4 {
  color: var(--base-color);
  font-size: 2rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1;
  padding: 1.2rem;
  margin-block-end: 1.6rem;
}
.single .treatment__item img {
  inline-size: 100%;
  block-size: auto;
}
.single .treatment__before {
  background: var(--primary-beige);
}
.single .treatment__after {
  background: var(--primary-pink);
}
.single .treatment svg {
  inline-size: 4.8rem;
  block-size: 4.8rem;
  fill: var(--primary-gray);
  margin-inline: auto;
}
.single .c-table {
  margin-block-end: 6rem;
}
.single .supervision,
.single .overview {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  background: var(--primary-offwhite);
  padding: 4.8rem 2rem;
}
.single .supervision__title,
.single .overview__title {
  font-size: 2rem;
  font-family: var(--font-secondary);
  font-weight: 400;
  text-align: center;
}
.single .supervision__image img,
.single .overview__image img {
  inline-size: 100%;
  block-size: auto;
}
.single .supervision:has(+ .overview) {
  margin-block-end: 4rem;
}
.single .supervision p {
  text-align: center;
}
.single .overview__info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: 1.5rem;
}
.single .overview__info a {
  text-decoration: underline;
  color: var(--font-color);
}
@media (hover: hover) {
  .single .overview__info a:hover {
    text-decoration: none;
  }
}
.single .overview__info dl dt {
  font-weight: 700;
}
.single .overview__info dl dd {
  letter-spacing: 0;
  white-space: nowrap;
}
.single .overview__info dl dd span {
  inline-size: 9.2rem;
  display: inline-block;
}

.singleNavi {
  padding: 6.4rem 2rem 2rem;
}
.singleNavi__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.singleNavi__prev, .singleNavi__archive, .singleNavi__next {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  transition: color 0.3s;
}
@media (hover: hover) {
  .singleNavi__prev:hover, .singleNavi__archive:hover, .singleNavi__next:hover {
    color: var(--primary-red);
  }
  .singleNavi__prev:hover svg, .singleNavi__archive:hover svg, .singleNavi__next:hover svg {
    fill: var(--primary-red);
  }
}
.singleNavi__prev svg, .singleNavi__archive svg, .singleNavi__next svg {
  inline-size: 1.5rem;
  block-size: 1.5rem;
  fill: var(--font-color);
  transition: fill 0.3s;
}
.singleNavi__prev svg {
  scale: -1 1;
}
/*# sourceMappingURL=style.css.map */
