@charset "UTF-8";
:root {
  --base-color: #ffffff;
  --font-color: #5a5a5a;
  --color-violet: #5b4174;
  --color-light-violet: #8470b1;
  --color-pink: #e66cae;
  --color-gray: #f7f7f7;
  --lh-14: 1.4;
  --lh-16: 1.6;
  --lh-18: 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 {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  background: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  /*
      font:inherit;
      font-family:inherit;
      */
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

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-*/
  /*-ブレイクポイント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.3255813953vw;
  }
}

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 {
  padding: 0;
  border: none;
}

/*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 #333;
}

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

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

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-width: 100%;
  height: auto;
  vertical-align: top;
  object-fit: cover;
}

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

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

/*button:focus-visible{outline: thin dotted #333;}*/
* {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

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

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

main:not(.page-top) {
  background: var(--base-color);
}
main:not(.page-top) section:last-of-type {
  padding-bottom: 5rem;
}

.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;
  }
}

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

Shortcodes

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

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

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

.none {
  display: none !important;
}

.mb-none {
  margin-bottom: 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-left: 1em;
}

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

404ページ

------------------------------------------------------------ */
.page-404 .content {
  padding: 5rem 5rem 0;
}
.page-404 .content > p {
  margin-bottom: 4rem;
  text-align: center;
}
.page-404 .content .c-button svg {
  scale: -1 1;
}

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

パンくずリスト

------------------------------------------------------------ */
.breadcrumb {
  margin-bottom: 2rem;
  padding-left: 0.5rem;
  font-size: 1.2rem;
  position: relative;
  z-index: 0;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.breadcrumb__item {
  display: flex;
  color: #5a5a5a;
}
.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #9b82d3;
}
.breadcrumb__link {
  color: var(--color-light-violet);
  transition: opacity 0.3s;
}
.breadcrumb__link:hover {
  opacity: 0.7;
}

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

ボタン

------------------------------------------------------------ */
.c-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 24.6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2deec;
  margin-inline: auto;
}
@media (hover: hover) {
  .c-button:hover .c-button__icon svg {
    transform: scale(1.3);
  }
}
.c-button__text {
  display: flex;
  flex-direction: column;
}
.c-button__text span {
  color: var(--color-light-violet);
}
.c-button__text span.en {
  font-size: 1.2rem;
  font-family: "Cormorant", serif;
}
.c-button__text span.ja {
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", serif;
  line-height: var(--lh-14);
}
.c-button__icon {
  flex: none;
  display: grid;
  place-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-top: -0.5rem;
  border-radius: 50%;
  background: var(--color-gray);
}
.c-button__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--color-light-violet);
  transition: transform 0.3s;
}

.mapBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--color-violet);
}
.mapBtn svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: var(--color-violet);
}

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

WEB予約、LINEで相談

------------------------------------------------------------ */
.c-btnUnit {
  display: flex;
  gap: 0.5rem;
}
.c-btnUnit__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 7rem;
  background: var(--base-color);
  border-radius: 3.5rem;
  color: var(--base-color);
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", serif;
}
@media (hover: hover) {
  .c-btnUnit__item:hover svg,
  .c-btnUnit__item:hover img {
    transform: scale(1.1);
  }
}
.c-btnUnit__item svg,
.c-btnUnit__item img {
  width: 3rem;
  height: 3rem;
  fill: var(--base-color);
  transition: transform 0.3s;
}
.c-btnUnit__item__web {
  background: #9b82d3;
}
.c-btnUnit__item__line {
  background: var(--color-pink);
}

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

症例紹介 画像スライダー

------------------------------------------------------------ */
.c-caseBox {
  width: 100%;
}
.c-caseBox .imageSlider {
  position: relative;
  z-index: 0;
}
.c-caseBox .imageSlider__before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
}
.c-caseBox .imageSlider__before::before {
  content: "";
  width: 4.5rem;
  height: 100%;
  background: url(../images/bg_slider.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: -2.25rem;
  translate: 0 -50%;
  z-index: 3;
  pointer-events: none;
}
.c-caseBox .imageSlider__before::after {
  content: "";
  width: 0.3rem;
  height: 100%;
  background: var(--base-color);
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  z-index: 2;
  pointer-events: none;
}
.c-caseBox .imageSlider__before .inner {
  overflow: hidden;
}
.c-caseBox .imageSlider__before .inner p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 3rem;
  background: var(--base-color);
  color: var(--font-color);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.c-caseBox .imageSlider__before img {
  width: 100%;
  height: 100%;
  aspect-ratio: 390/254;
  position: absolute;
  left: 0;
  bottom: 0;
  object-fit: cover;
  object-position: left center;
}
.c-caseBox .imageSlider__after {
  position: relative;
  z-index: -1;
}
.c-caseBox .imageSlider__after::after {
  content: "治療後";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 3rem;
  background: var(--base-color);
  color: var(--font-color);
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
}
.c-caseBox .imageSlider__after img {
  width: 100%;
  height: auto;
  aspect-ratio: 390/254;
}
.c-caseBox .imageSlider input {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: col-resize;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

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

流れパターン

------------------------------------------------------------ */
.c-flow {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.c-flow__item {
  display: flex;
  gap: 2rem;
  position: relative;
}
.c-flow__item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--color-pink);
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  z-index: -1;
}
.c-flow__num {
  flex: none;
  display: grid;
  place-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--color-pink);
  color: var(--base-color);
}
.c-flow__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-flow__title {
  color: var(--color-pink);
  font-size: 1.7rem;
  font-family: "Shippori Mincho B1", serif;
  line-height: var(--lh-14);
}
.c-flow__image img {
  width: 100%;
  height: auto;
}
.c-flow__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-flow__desc p {
  text-align: justify;
}

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

リスト

------------------------------------------------------------ */
.c-listBox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.c-listBox li {
  display: flex;
  gap: 1rem;
}
.c-listBox li::before {
  flex: none;
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.8rem;
  background: linear-gradient(#c0aceb 0%, #f5a7c8 100%);
  border-radius: 50%;
}
.c-listBox.check li {
  gap: 1.2rem;
}
.c-listBox.check li::before {
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0;
  background: url(../images/icon_check_01.svg) no-repeat center/contain;
  border-radius: 0%;
}

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

newsのリスト

------------------------------------------------------------ */
.c-newsList {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.c-newsList .item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--font-color);
}
@media (hover: hover) {
  .c-newsList .item:hover .item__title {
    text-decoration: underline;
  }
}
.c-newsList .item__category {
  flex: none;
  display: grid;
  place-content: center;
  width: 8rem;
  height: 3rem;
  background: #9b82d3;
  color: var(--base-color);
}
.c-newsList .item time {
  flex: none;
  width: 8rem;
}
.c-newsList .item__title {
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.6rem;
}

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

ページタイトル

------------------------------------------------------------ */
.c-pageTitle {
  padding: 5rem 2rem 5rem 1.5rem;
  position: relative;
  z-index: 0;
}
.c-pageTitle::before {
  content: "";
  display: block;
  width: 100%;
  height: 51.6rem;
  background: url(../images/page-title_01_bg.webp) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-pageTitle__logo {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pageTitle__logo {
    display: block;
    width: 30rem;
    margin-bottom: 4rem;
  }
}
.c-pageTitle__logo img {
  width: 100%;
  height: auto;
}
.c-pageTitle__text {
  margin-bottom: 10rem;
}
.c-pageTitle__text p {
  line-height: var(--lh-14);
  text-align: right;
}
.c-pageTitle__text p:nth-of-type(1) {
  margin-bottom: 1rem;
  background: linear-gradient(to right, #d1c1f5 0%, #fdc9e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
  font-size: 8rem;
  font-family: "Cormorant", serif;
  text-transform: capitalize;
  white-space: nowrap;
}
.c-pageTitle__text p:nth-of-type(2) {
  color: var(--color-light-violet);
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", serif;
}
.c-pageTitle__image {
  width: 37rem;
  margin-inline: auto -2rem;
}
.c-pageTitle__image img {
  width: 100%;
  height: auto;
}

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

instagram、youtube

------------------------------------------------------------ */
.c-sns {
  display: flex;
  gap: 1rem;
}
.c-sns a {
  display: grid;
  place-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--base-color);
}
@media (hover: hover) {
  .c-sns a:hover img {
    transform: scale(1.2);
  }
}
.c-sns a img {
  width: 3rem;
  height: 3rem;
  transition: transform 0.3s;
}

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

テーブル

------------------------------------------------------------ */
.c-table {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.c-table__table {
  width: 100%;
}
.c-table__table tr:not(:last-of-type) td {
  margin-bottom: 3rem;
}
.c-table__table th,
.c-table__table td {
  text-align: center;
}
.c-table__table th {
  padding: 0 2rem 1rem;
  color: var(--color-light-violet);
  position: relative;
}
.c-table__table th::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #9b82d3 0%, #d86c9a 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.c-table__table td {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2rem;
  background: var(--color-gray);
}
.c-table__table.price td {
  gap: 1rem;
}
.c-table__table.price td div {
  display: flex;
  gap: 1rem;
}
.c-table__table.price td div p {
  line-height: var(--lh-14);
}
.c-table__table.price td div p:nth-of-type(1) {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 61.4285714286%;
  position: relative;
}
.c-table__table.price td div p:nth-of-type(1)::after {
  flex: none;
  content: "";
  display: block;
  width: 1.2rem;
  height: 1px;
  margin-top: 1rem;
  background: #c6c6c6;
}

.scheduleTable {
  margin-inline: -2rem;
  padding: 0 3.5rem;
  color: var(--color-violet);
  font-size: 1.4rem;
  position: relative;
}
.scheduleTable::before {
  content: "";
  display: block;
  width: 100%;
  height: 3.5rem;
  background: var(--color-gray);
  position: absolute;
  top: 0;
  left: 0;
}
.scheduleTable__table {
  width: 100%;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.scheduleTable__table thead .scheduleTable__header {
  width: 11rem;
}
.scheduleTable__table tbody tr:nth-of-type(1) {
  border-bottom: 1px solid #eaeaea;
}
.scheduleTable__table th,
.scheduleTable__table td {
  padding: 0.5rem 0;
  text-align: center;
}
.scheduleTable__table th {
  width: calc((100% - 11rem) / 7);
  white-space: nowrap;
}
.scheduleTable__table td:not(:nth-of-type(1)) {
  color: #9b82d3;
  font-size: 2rem;
}
.scheduleTable__text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.scheduleTable__text p:nth-of-type(2) span {
  display: inline-block;
  margin-right: 1.2rem;
  padding: 0 0.8rem;
  border: 1px solid #eaeaea;
  font-size: 1.3rem;
}

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

下層のパーツ

------------------------------------------------------------ */
.c-unit {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.c-unit__item {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.c-unit__item:not(:has(.h3-title)) .c-unit__image {
  margin: 0 -2rem;
}
.c-unit__item.bg {
  padding: 4rem 3rem;
  background: var(--color-gray);
}
.c-unit__item.bg .c-unit__desc {
  padding: 0;
}
.c-unit__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.c-unit__inner:not(:last-of-type) {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 3rem;
}
.c-unit__image img {
  width: 100%;
  height: auto;
}
.c-unit__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0 2rem;
}
.c-unit__desc p {
  text-align: justify;
}
.c-unit__desc a {
  color: var(--color-violet);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-unit__desc a:hover {
    text-decoration: none;
  }
}
.c-unit__map iframe, .c-unit__movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 390/254;
}

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

見出し

------------------------------------------------------------ */
.heading01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 5rem;
}
.heading01 p {
  background: linear-gradient(to right, #d1c1f5 0%, #fdc9e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5.6rem;
  font-family: "Cormorant", serif;
  line-height: var(--lh-14);
}
.heading01 h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: -0.5rem;
  color: var(--color-light-violet);
  font-family: "Shippori Mincho B1", serif;
  position: relative;
}
.heading01 h2::before, .heading01 h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background: #d1c2f2;
}

.heading02 h3 {
  color: var(--color-light-violet);
  font-size: 1.9rem;
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
}
.heading02 h3 span {
  display: inline-block;
  padding-right: 1rem;
  font-family: "Shippori Mincho B1", serif;
  position: relative;
}
.heading02 h3 span::after {
  content: "*";
  position: absolute;
  top: 0;
  right: -0.2rem;
}

.h2-title,
.h3-title,
.h4-title,
.h5-title {
  line-height: var(--lh-16);
  text-align: center;
}

.h2-title {
  padding: 0 1.5rem;
  margin-bottom: 2.5rem;
}
.h2-title span {
  display: inline;
  padding: 0.5rem 1rem;
  background: #fdf8fb;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--color-pink);
  font-size: 2rem;
  font-family: "Shippori Mincho B1", serif;
  line-height: 2.4;
}
.h2-title.violet span {
  background: #faf8fd;
  color: var(--color-violet);
}

.h3-title {
  padding-bottom: 2rem;
  border-bottom: 1px solid #eaeaea;
  color: var(--color-light-violet);
  font-size: 1.9rem;
  font-family: "Shippori Mincho B1", serif;
}

.h4-title {
  font-size: 1.8rem;
}

.h5-title {
  font-size: 1.6rem;
}

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

section関連の記述

------------------------------------------------------------ */
section,
.divSection {
  padding: 5rem 2rem 0;
  overflow-x: clip;
  position: relative;
  z-index: 0;
}

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

.c-lead {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0 3.5rem 1rem;
}
.c-lead p {
  text-align: justify;
}

.c-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

Header

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

Footer

------------------------------------------------------------ */
.footer {
  padding-top: 9rem;
}
.footer__top {
  padding: 0 2rem;
}
.footer__bottom {
  padding: 0 2rem 4rem;
  background: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__bottom {
    padding-bottom: 15rem;
  }
}
.footer__logo {
  display: block;
  width: 19.2rem;
  margin: 0 auto 5rem;
}
.footer__logo img {
  width: 100%;
  height: auto;
}
.footer__tags {
  display: flex;
  margin-bottom: 2.5rem;
}
.footer__tags div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  width: 33.3333333333%;
  position: relative;
}
.footer__tags div:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #d1a9bc;
  position: absolute;
  top: 0;
  right: 0;
}
.footer__tags div img {
  width: 3.6rem;
  height: 3.6rem;
}
.footer__tags div p {
  color: var(--color-violet);
  font-family: "Shippori Mincho B1", serif;
  line-height: var(--lh-14);
  text-align: center;
  pointer-events: none;
}
.footer .c-btnUnit {
  margin-bottom: 5rem;
}
.footer__foot {
  width: fit-content;
  padding: 1rem 2.5rem;
  margin: 0 auto 1.5rem;
  background: #cbb387;
  border-radius: 2.6rem;
  color: var(--base-color);
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", serif;
}
.footer address {
  margin-bottom: 4rem;
  color: var(--color-violet);
  font-size: 1.4rem;
  text-align: center;
}
.footer__map {
  padding-bottom: 1.5rem;
  margin: 0 -2rem 3rem;
  border-bottom: 1px solid #eaeaea;
}
.footer__map iframe {
  width: 100%;
  margin-bottom: 1rem;
  aspect-ratio: 430/356;
}
.footer .scheduleTable {
  margin-bottom: 4rem;
}
.footer__desc {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
  padding: 3.5rem;
  background: var(--color-gray);
  border-radius: 3rem;
}
.footer__desc p {
  color: var(--color-violet);
  text-align: justify;
}
.footer__links {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem;
  margin-bottom: 4rem;
}
.footer__links a {
  width: 100%;
}
.footer__links a img {
  width: 100%;
  height: auto;
}
.footer__links a:nth-of-type(4) {
  width: 22rem;
}
.footer__copy {
  color: var(--color-violet);
  font-size: 1.3rem;
  line-height: var(--lh-14);
  text-align: center;
}

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

サイドバー

------------------------------------------------------------ */
.menuButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.4270833333%;
  aspect-ratio: 1/1;
  background: linear-gradient(#9b82d3 0%, #d86c9a 100%);
  border-radius: 50%;
  opacity: 1;
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 5;
  transition: background 0.3s filter 0.3s;
  cursor: pointer;
}
@media (hover: hover) {
  .menuButton:hover {
    filter: brightness(1.2);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton {
    width: 6.5rem;
    top: 1rem;
    right: 1rem;
  }
}
.menuButton .border {
  width: 3rem;
  height: 1px;
  background: var(--base-color);
  transition: transform 0.4s, opacity 0.4s;
  position: absolute;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .border {
    width: 2rem;
  }
}
.menuButton .border:nth-child(1) {
  transform: translateY(-0.5rem);
}
.menuButton .border:nth-child(3) {
  transform: translateY(0.5rem);
}
.menuButton.active {
  background: linear-gradient(#2e2e2e 0%, #505050 100%);
}
.menuButton.active .border:nth-child(1) {
  transform: rotate(45deg);
}
.menuButton.active .border:nth-child(2) {
  opacity: 0;
}
.menuButton.active .border:nth-child(3) {
  transform: rotate(-45deg);
}

.menuLink {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuLink {
    display: block;
    width: 100%;
    padding: 0 2rem;
    position: fixed;
    bottom: 2rem;
    left: 0;
    z-index: 2;
  }
}
.menuLink .c-btnUnit {
  gap: 1rem;
}
.menuLink .c-btnUnit a {
  box-shadow: 0 0 0.7rem rgba(63, 62, 126, 0.2);
}

.pageTop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 15rem;
  height: 6rem;
  background: var(--base-color);
  border-radius: 3rem;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.05);
  color: var(--color-light-violet);
  font-size: 1.6rem;
  cursor: pointer;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 3;
}
@media (hover: hover) {
  .pageTop:hover svg {
    transform: scale(1.4);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pageTop {
    display: none;
  }
}
.pageTop svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: var(--color-light-violet);
  transition: transform 0.3s;
}

.js-pageTop {
  opacity: 1;
  visibility: visible;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .js-pageTop {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
}

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

pc-content

------------------------------------------------------------ */
.pc-content {
  display: grid;
  grid-template-columns: 55.2083333333% 43rem auto;
  width: 100%;
  height: 100vh;
  background: url(../images/mv_bg_01.webp) no-repeat center/cover;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content {
    display: contents;
    height: unset;
  }
}
.pc-content h1 {
  width: 55.2083333333%;
  padding: 0 6rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--color-violet);
  font-size: 1.4rem;
  line-height: var(--lh-14);
  position: absolute;
  top: 5rem;
  left: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content h1 {
    width: 100%;
    padding: 0 9rem 0 1.5rem;
    -webkit-line-clamp: 2;
    font-size: 1rem;
    color: #626262;
    top: 1rem;
    z-index: 4;
  }
}
.pc-content__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 9rem 6rem;
}
@media screen and (max-height: 700px) and (orientation: landscape) {
  .pc-content__left {
    padding: 9rem 6rem 6rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__left {
    display: none;
  }
}
.pc-content__logo {
  display: block;
  width: 50%;
  margin-bottom: 2rem;
}
.pc-content__logo img {
  width: 100%;
  height: auto;
}
.pc-content__sns {
  display: flex;
  gap: 1rem;
}
.pc-content__sns a {
  display: grid;
  place-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--base-color);
}
@media (hover: hover) {
  .pc-content__sns a:hover img {
    transform: scale(1.2);
  }
}
.pc-content__sns a img {
  width: 3rem;
  width: 3rem;
  transition: transform 0.3s;
}
.pc-content__image {
  width: 75%;
  margin-inline: auto;
}
.pc-content__image img {
  width: 100%;
  height: auto;
}
.pc-content__news {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.pc-content__news .title {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: var(--color-violet);
}
.pc-content__news .title p {
  font-size: 2.5rem;
  font-family: "Shippori Mincho B1", serif;
}
.pc-content__news .title a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--color-violet);
  position: relative;
}
@media (hover: hover) {
  .pc-content__news .title a:hover span:nth-of-type(2) svg {
    transform: scale(1.3);
  }
}
.pc-content__news .title a::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--color-violet);
}
.pc-content__news .title a span:nth-of-type(1) {
  font-family: "Cormorant", serif;
  font-size: 1.6rem;
}
.pc-content__news .title a span:nth-of-type(2) {
  display: grid;
  place-content: center;
  width: 3.2rem;
  height: 3.2rem;
  background: var(--base-color);
  border-radius: 50%;
}
.pc-content__news .title a span:nth-of-type(2) svg {
  margin-top: -0.5rem;
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--color-violet);
  transition: transform 0.3s;
}
.pc-content__news .c-newsList .item {
  color: var(--color-violet);
}
.pc-content__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-height: 700px) and (orientation: landscape) {
  .pc-content__right {
    align-items: unset;
    padding: 6rem 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__right {
    display: none;
  }
}
.pc-content__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
}
@media screen and (max-height: 700px) and (orientation: landscape) {
  .pc-content__inner {
    gap: 3rem;
  }
}
.pc-content__tags {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6rem;
  width: 20rem;
}
@media screen and (max-height: 700px) and (orientation: landscape) {
  .pc-content__tags {
    gap: 3rem;
  }
}
.pc-content__tags div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  position: relative;
}
@media screen and (max-height: 700px) and (orientation: landscape) {
  .pc-content__tags div {
    gap: 1rem;
  }
}
.pc-content__tags div:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #dcccd4;
  position: absolute;
  bottom: -3rem;
  left: 0;
}
@media screen and (max-height: 700px) and (orientation: landscape) {
  .pc-content__tags div:not(:last-of-type)::after {
    bottom: -1.5rem;
  }
}
.pc-content__tags div img {
  width: 6rem;
  height: 6rem;
}
.pc-content__tags div p {
  color: var(--color-violet);
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", serif;
  white-space: nowrap;
}
.pc-content .c-btnUnit {
  flex-direction: column;
  width: 23rem;
}

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

メインコンテンツ

------------------------------------------------------------ */
.allContent {
  width: 43rem;
  background: var(--base-color);
  margin-inline: 55.2083333333% auto;
  position: relative;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .allContent {
    display: contents;
  }
}
.allContent__bg {
  width: 43rem;
  height: 100vh;
  margin-inline: 55.2083333333% auto;
  background-image: url("../images/home_bg_03.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .allContent__bg {
    width: 100%;
    margin: 0;
  }
}

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

ドロワーメニュー

------------------------------------------------------------ */
.drawerMenu {
  display: grid;
  grid-template-columns: calc(55.2083333333% + 43rem) auto;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.5rem);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  opacity: 0;
  transition: all 0.4s ease;
  visibility: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu {
    display: block;
    height: 100%;
    background: #f0edec;
    backdrop-filter: none;
  }
}
.drawerMenu.active {
  opacity: 1;
  visibility: visible;
}
.drawerMenu__bg {
  cursor: pointer;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__bg {
    display: none;
  }
}
.drawerMenu__nav {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #f0edec;
  padding: 12rem 4rem 6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__nav {
    align-items: unset;
    flex-direction: column;
    background: none;
    padding: 5rem 4rem;
  }
}
.drawerMenu__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 32rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list {
    max-width: unset;
    margin-bottom: 3rem;
  }
}
.drawerMenu__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #d6d6d6;
  color: var(--color-light-violet);
  font-size: 1.6rem;
  line-height: var(--lh-14);
  font-family: "Shippori Mincho B1", serif;
}
@media (hover: hover) {
  .drawerMenu__list li a:hover span svg {
    transform: scale(1.3);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list li a {
    font-size: 1.4rem;
  }
}
.drawerMenu__list li a span {
  flex: none;
  display: grid;
  place-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list li a span {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.drawerMenu__list li a span svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--color-light-violet);
  transition: transform 0.3s;
}
.drawerMenu__logo {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__logo {
    display: block;
    margin: 0 0 5rem -2.5rem;
    width: 30rem;
  }
}
.drawerMenu__logo img {
  width: 100%;
  height: auto;
}
.drawerMenu .c-sns {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu .c-sns {
    justify-content: center;
    display: flex;
    margin-bottom: 3rem;
  }
}
.drawerMenu .c-sns a {
  width: 5rem;
  height: 5rem;
}
.drawerMenu .c-sns a img {
  width: 2.4rem;
  height: 2.4rem;
}
.drawerMenu .c-btnUnit {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu .c-btnUnit {
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
  }
}
.drawerMenu .c-btnUnit__item {
  font-size: 1.4rem;
}
.drawerMenu .c-btnUnit__item svg,
.drawerMenu .c-btnUnit__item img {
  width: 2.4rem;
  height: 2.4rem;
}

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

モーダル

------------------------------------------------------------ */
.js-modal {
  opacity: 0;
  translate: 0 3rem;
}
.js-modal::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.js-modal[open] {
  display: block;
  animation: slideUp 0.3s ease-out forwards;
}
.js-modal[open]::backdrop {
  opacity: 1;
}
.js-modal.closing {
  animation: slideDown 0.2s ease-in forwards;
}
.js-modal.closing::backdrop {
  opacity: 0;
}

@keyframes slideUp {
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes slideDown {
  from {
    opacity: 1;
    translate: 0 0;
  }
  to {
    opacity: 0;
    translate: 0 3rem;
  }
}
/* ------------------------------------------------------------

アニメーション

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

トップページ

------------------------------------------------------------ */
.page-top section {
  padding: 0;
}
.page-top .mv {
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv::before {
    content: "";
    display: block;
    width: 43rem;
    height: 7.5rem;
    background: url(../images/home_bg_01.webp) no-repeat center/cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.page-top .mv__logo {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv__logo {
    display: block;
    width: 13rem;
    position: absolute;
    top: 5.5rem;
    left: 2rem;
  }
  .page-top .mv__logo img {
    width: 100%;
    height: auto;
  }
}
.page-top .mv__image {
  padding-left: 5rem;
  margin-bottom: 12rem;
}
.page-top .mv__image img {
  width: 100%;
  height: auto;
}
.page-top .mv__lead {
  color: var(--base-color);
  font-size: 2.7rem;
  font-family: "Shippori Mincho B1", serif;
  text-align: right;
  position: absolute;
  top: 44rem;
  right: 2rem;
}
.page-top .mv__title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  position: absolute;
  top: 55rem;
  left: 0;
}
.page-top .mv__title > span {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  padding: 0 2.5rem;
  border: 1px solid var(--base-color);
  box-shadow: 0.8rem 0.8rem 0.5rem rgba(63, 62, 126, 0.05);
  backdrop-filter: blur(2rem);
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--color-light-violet);
  font-size: 3.7rem;
  font-family: "Shippori Mincho B1", serif;
  line-height: var(--lh-16);
}
.page-top .mv__title > span:nth-of-type(1) {
  border-radius: 0 1.5rem 1.5rem 0;
}
.page-top .mv__title > span:nth-of-type(2) {
  margin-inline: auto 0;
  border-radius: 1.5rem 0 0 1.5rem;
}
.page-top .mv__title > span span {
  font-size: 1.4rem;
  font-family: "Cormorant", serif;
}
.page-top .mv__tags {
  display: flex;
  padding: 0 2rem;
  margin-bottom: 2rem;
}
.page-top .mv__tags div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  width: 33.3333333333%;
  position: relative;
}
.page-top .mv__tags div:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #d1a9bc;
  position: absolute;
  top: 0;
  right: 0;
}
.page-top .mv__tags div img {
  width: 3.6rem;
  height: 3.6rem;
}
.page-top .mv__tags div p {
  color: var(--color-violet);
  font-family: "Shippori Mincho B1", serif;
  line-height: var(--lh-14);
  text-align: center;
}
.page-top .mv .c-btnUnit {
  padding: 0 2rem 2rem;
}
.page-top .mv .c-btnUnit__item {
  box-shadow: 0 0 0.7rem rgba(63, 62, 126, 0.2);
}
.page-top .about__top {
  padding: 4rem 2rem 0;
}
.page-top .about__bottom {
  padding: 0 2rem 4rem;
  background: var(--base-color);
}
.page-top .about__logo {
  display: block;
  width: 19.2rem;
  margin: 0 auto 4rem;
}
.page-top .about__logo img {
  width: 100%;
  height: auto;
}
.page-top .about__foot {
  width: fit-content;
  padding: 1rem 2.5rem;
  margin: 0 auto 1.5rem;
  background: #cbb387;
  border-radius: 2.6rem;
  color: var(--base-color);
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", serif;
}
.page-top .about address {
  margin-bottom: 4rem;
  color: var(--color-violet);
  font-size: 1.4rem;
  text-align: center;
}
.page-top .about__map {
  padding-bottom: 1.5rem;
  margin: 0 -2rem 3rem;
  border-bottom: 1px solid #eaeaea;
}
.page-top .about__map iframe {
  width: 100%;
  margin-bottom: 1rem;
  aspect-ratio: 430/356;
}
.page-top .open {
  padding: 8rem 2rem 5rem;
  background: url(../images/home_bg_02.webp) no-repeat center/cover;
  position: relative;
}
.page-top .open::before {
  content: "";
  display: block;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: 1px solid #efc476;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.page-top .open__title {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 4rem;
}
.page-top .open__title span:nth-of-type(1) {
  width: fit-content;
  padding: 0 1rem;
  background: var(--base-color);
  color: var(--color-light-violet);
  font-size: 1.5rem;
  font-family: "Shippori Mincho B1", serif;
  position: relative;
}
.page-top .open__title span:nth-of-type(1)::before, .page-top .open__title span:nth-of-type(1)::after {
  content: "";
  display: block;
  width: 1rem;
  height: 100%;
  background: var(--base-color);
  position: absolute;
  top: 0;
}
.page-top .open__title span:nth-of-type(1)::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 50% 50%);
  left: -1rem;
}
.page-top .open__title span:nth-of-type(1)::after {
  clip-path: polygon(100% 0, 50% 50%, 100% 100%, 0 100%, 0 0);
  right: -1rem;
}
.page-top .open__title span:nth-of-type(2) {
  margin-bottom: 3rem;
  color: var(--base-color);
  font-size: 4.5rem;
  font-family: "Cormorant", serif;
  line-height: var(--lh-16);
}
.page-top .open__title span:nth-of-type(3) {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--base-color);
  font-size: 1.8rem;
  font-family: "Shippori Mincho B1", serif;
  position: relative;
}
.page-top .open__title span:nth-of-type(3)::before, .page-top .open__title span:nth-of-type(3)::after {
  content: "";
  display: block;
  width: 6rem;
  height: 1px;
  background: var(--base-color);
}
.page-top .open__unit {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.page-top .open__item a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 2rem 1.5rem;
  border: 0.5rem solid #d0a3cd;
  border-radius: 1.5rem;
  background: var(--base-color);
  position: relative;
}
@media (hover: hover) {
  .page-top .open__item a:hover .icon svg {
    transform: scale(1.3);
  }
}
.page-top .open__item a .limited {
  display: grid;
  place-content: center;
  width: 9rem;
  height: 9rem;
  background: #cbb387;
  border-radius: 50%;
  color: var(--base-color);
  line-height: var(--lh-14);
  text-align: center;
  position: absolute;
  top: -4rem;
  left: -1rem;
}
.page-top .open__item a .lead {
  width: 15rem;
  margin-bottom: 1rem;
  background: var(--color-gray);
  color: var(--color-light-violet);
  font-size: 1.5rem;
  text-align: center;
  position: relative;
}
.page-top .open__item a .lead::before, .page-top .open__item a .lead::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-light-violet);
  position: absolute;
  left: 0;
}
.page-top .open__item a .lead::before {
  top: -0.5rem;
}
.page-top .open__item a .lead::after {
  bottom: -0.5rem;
}
.page-top .open__item a .title {
  color: var(--color-light-violet);
  font-size: 1.5rem;
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
}
.page-top .open__item a .price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.page-top .open__item a .price span:nth-of-type(1) {
  margin-right: 0.5rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid #cccccc;
  font-size: 1.1rem;
}
.page-top .open__item a .price span:nth-of-type(2) {
  font-size: 1.3rem;
  font-family: "Shippori Mincho B1", serif;
}
.page-top .open__item a .price span:nth-of-type(3) {
  color: var(--color-light-violet);
  font-size: 2rem;
  font-family: "Shippori Mincho B1", serif;
}
.page-top .open__item a .price svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--color-light-violet);
  transform: rotate(90deg);
}
.page-top .open__item a .icon {
  display: grid;
  place-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--color-gray);
  position: absolute;
  top: 1.5rem;
  right: 3.5rem;
}
.page-top .open__item a .icon svg {
  margin-top: -0.5rem;
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--color-violet);
  transition: transform 0.3s;
}
.page-top .open__note {
  margin-top: 0.5rem;
  color: var(--base-color);
  font-size: 1.1rem;
  text-align: center;
}
.page-top .concept {
  color: var(--color-light-violet);
  position: relative;
  z-index: 1;
}
.page-top .concept__lead img {
  width: 100%;
  height: auto;
}
.page-top .concept__title {
  margin: 4rem 0;
  position: relative;
}
.page-top .concept__title p {
  margin-bottom: 4rem;
  background: linear-gradient(to right, #d1c1f5 0%, #fdc9e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.7;
  font-size: 8rem;
  font-family: "Cormorant", serif;
  line-height: var(--lh-14);
}
.page-top .concept__title h2:nth-of-type(1) {
  display: flex;
  gap: 1rem;
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", serif;
  text-align: right;
  line-height: var(--lh-14);
  position: absolute;
  top: 8rem;
  right: 2rem;
}
.page-top .concept__title h2:nth-of-type(1)::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  margin-top: 1rem;
  background: #d1c2f2;
}
.page-top .concept__title h2:nth-of-type(2) {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
}
.page-top .concept__title h2:nth-of-type(2) span {
  padding: 0.5rem 1rem;
  background: var(--base-color);
  box-shadow: 0.3rem 0.3rem 0.6rem rgba(63, 62, 126, 0.1);
  font-size: 2.3rem;
  font-family: "Shippori Mincho B1", serif;
}
.page-top .concept__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0 4rem 4.5rem;
}
.page-top .concept__desc p {
  text-align: justify;
}
.page-top .concept .c-button {
  margin-bottom: 6.4rem;
}
.page-top .concept__image {
  margin-bottom: -13rem;
}
.page-top .concept__image img {
  width: 100%;
  height: auto;
}
.page-top .whitening,
.page-top .botulinum {
  padding-bottom: 8rem;
  background: #f6f6f6;
}
.page-top .whitening__image,
.page-top .botulinum__image {
  position: relative;
}
.page-top .whitening__image img,
.page-top .botulinum__image img {
  width: 100%;
  height: auto;
}
.page-top .whitening__image p,
.page-top .botulinum__image p {
  display: grid;
  place-content: center;
  width: 11rem;
  height: 11rem;
  background: #cbb387;
  border-radius: 50%;
  color: var(--base-color);
  line-height: var(--lh-14);
  text-align: center;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}
.page-top .whitening__inner,
.page-top .botulinum__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin: -6rem 2rem 5rem;
  padding: 6rem 1.5rem;
  background: var(--base-color);
  border-radius: 5rem;
  position: relative;
}
.page-top .whitening__bg,
.page-top .botulinum__bg {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
  padding: 0 1.5rem 4rem;
  background: var(--color-gray);
  position: relative;
}
.page-top .whitening__bg .whitening__gradation,
.page-top .botulinum__bg .whitening__gradation {
  margin-bottom: -3rem;
  transform: translateY(-3rem);
}
.page-top .whitening__gradation,
.page-top .botulinum__gradation {
  width: 32rem;
  margin-inline: auto;
  padding-bottom: 1rem;
  position: relative;
  z-index: 0;
}
.page-top .whitening__gradation::before,
.page-top .botulinum__gradation::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 2.2rem;
  background: linear-gradient(to bottom, #9b82d3 0%, #d86c9a 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}
.page-top .whitening__gradation p,
.page-top .botulinum__gradation p {
  width: 100%;
  padding: 2rem 0;
  background: linear-gradient(to right, #9b82d3 0%, #d86c9a 100%);
  border-radius: 3.2rem;
  color: var(--base-color);
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
}
.page-top .whitening__lead,
.page-top .botulinum__lead {
  color: var(--color-light-violet);
  font-size: 1.8rem;
  font-family: "Shippori Mincho B1", serif;
  line-height: var(--lh-16);
  text-align: center;
}
.page-top .whitening__list,
.page-top .botulinum__list {
  display: flex;
  justify-content: space-between;
}
.page-top .whitening__list li,
.page-top .botulinum__list li {
  display: grid;
  place-content: center;
  width: calc((100% - 0.6rem) / 3);
  background: var(--base-color);
  aspect-ratio: 1/1;
  color: var(--color-light-violet);
  line-height: var(--lh-14);
  text-align: center;
}
.page-top .whitening__desc,
.page-top .botulinum__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0 1.5rem;
}
.page-top .whitening__desc p,
.page-top .botulinum__desc p {
  text-align: justify;
}
.page-top .whitening .c-listBox,
.page-top .botulinum .c-listBox {
  width: 32rem;
  margin: -3rem auto 0;
}
.page-top .whitening .c-button,
.page-top .botulinum .c-button {
  width: 29.6rem;
}
.page-top .whitening .c-button__icon,
.page-top .botulinum .c-button__icon {
  background: var(--base-color);
}
.page-top .whitening {
  padding-top: 25rem;
}
.page-top .instagram {
  padding: 6rem 3.5rem 8rem;
  background: linear-gradient(#9b82d3 0%, #d86c9a 100%);
  position: relative;
}
.page-top .instagram::before, .page-top .instagram::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(#cbb387 0%, #d6ba86 32.02%, #ffe1a8 53.2%, #dfc085 74.88%, #cbb387 100%);
  position: absolute;
  left: 0;
  pointer-events: none;
}
.page-top .instagram::before {
  top: 1.5rem;
}
.page-top .instagram::after {
  bottom: 1.5rem;
}
.page-top .instagram .heading01 p {
  background: linear-gradient(to right, #c0aceb 0%, #f5a7c8 100%);
  -webkit-background-clip: text;
}
.page-top .instagram .heading01 h2 {
  color: var(--base-color);
}
.page-top .instagram__inner {
  margin-bottom: 4rem;
}
.page-top .instagram__lead {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  color: var(--base-color);
  font-size: 1.8rem;
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
  position: relative;
}
.page-top .instagram__lead::before, .page-top .instagram__lead::after {
  content: "";
  display: block;
  width: 1px;
  height: 4rem;
  background: var(--base-color);
}
.page-top .instagram__lead::before {
  transform: rotate(-20deg);
}
.page-top .instagram__lead::after {
  transform: rotate(20deg);
}
.page-top .instagram .c-button__text span {
  color: var(--base-color);
}
.page-top .instagram .c-button__icon {
  background: #dfaac5;
}
.page-top .instagram .c-button__icon svg {
  fill: var(--base-color);
}
.page-top .features {
  padding: 8rem 2rem;
}
.page-top .features__title {
  margin-bottom: 6rem;
  color: var(--color-light-violet);
  font-size: 1.9rem;
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
}
.page-top .features__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.page-top .features__item {
  background: var(--base-color);
  border-radius: 5rem;
  overflow: hidden;
}
.page-top .features__image {
  margin-bottom: 4rem;
}
.page-top .features__image img {
  width: 100%;
  height: auto;
}
.page-top .features .heading02 {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.page-top .features .heading02 p {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-light-violet);
  font-family: "Shippori Mincho B1", serif;
  position: relative;
}
.page-top .features .heading02 p::before, .page-top .features .heading02 p::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background: #eaeaea;
}
.page-top .features__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  padding: 0 4rem 5rem;
}
.page-top .features__desc p {
  text-align: justify;
}
.page-top .features__desc p.note {
  font-size: 1.2rem;
  text-align: center;
}
.page-top .features__desc:has(+ .c-button) {
  border-bottom: 1px solid #eaeaea;
}
.page-top .features .c-button {
  padding-bottom: 3rem;
  border-bottom: none;
}
.page-top .features .c-button__text {
  flex: 1;
  align-items: center;
}
.page-top .features .c-button__icon {
  background: none;
}
.page-top .greeting {
  background: var(--base-color);
}
.page-top .greeting__image img {
  width: 100%;
  height: auto;
}
.page-top .greeting__inner {
  padding: 6rem 3.5rem;
}
.page-top .greeting__title {
  margin-bottom: 3rem;
  color: var(--color-light-violet);
  font-size: 1.9rem;
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
}
.page-top .greeting__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 5rem;
}
.page-top .greeting__desc p {
  text-align: justify;
}
.page-top .greeting__unit {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}
.page-top .greeting__left {
  flex: none;
  width: 16.5rem;
}
.page-top .greeting__left img {
  width: 100%;
  height: auto;
}
.page-top .greeting__right p:nth-of-type(1) {
  margin-bottom: 2rem;
  color: #9b82d3;
  font-size: 1.7rem;
  font-family: "Cormorant", serif;
  line-height: var(--lh-14);
}
.page-top .greeting__right p:nth-of-type(2) {
  width: fit-content;
  padding: 0 0.5rem;
  border: 1px solid #eaeaea;
  color: var(--color-violet);
  font-family: "Shippori Mincho B1", serif;
}
.page-top .greeting__right p:nth-of-type(3) {
  color: var(--color-violet);
  font-size: 2rem;
  font-family: "Shippori Mincho B1", serif;
}
.page-top .greeting__career {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin: 0 -3.5rem 4rem;
  padding: 4rem 4rem 4rem 5rem;
  background: var(--color-gray);
}
.page-top .greeting__career p {
  flex: none;
  color: var(--color-violet);
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", serif;
}
.page-top .news {
  padding: 0 2rem 6rem;
  background: var(--base-color);
}
.page-top .news__inner {
  margin-bottom: 5rem;
  padding: 4rem 3rem 6rem;
  background: var(--color-gray);
  border-radius: 4rem;
}
.page-top .news__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 5rem;
}
.page-top .news__title p:nth-of-type(1) {
  background: linear-gradient(to right, #d1c1f5 0%, #fdc9e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5.6rem;
  font-family: "Cormorant", serif;
  line-height: var(--lh-14);
}
.page-top .news__title p:nth-of-type(2) {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: -0.5rem;
  color: var(--color-light-violet);
  font-family: "Shippori Mincho B1", serif;
  position: relative;
}
.page-top .news__title p:nth-of-type(2)::before, .page-top .news__title p:nth-of-type(2)::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background: #d1c2f2;
}
.page-top .news .c-newsList {
  gap: 2.5rem;
}
.page-top .news .c-newsList .item {
  flex-wrap: wrap;
  gap: 1rem;
}
.page-top .news .c-newsList .item:not(:last-of-type) {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eaeaea;
}
.page-top .news .c-newsList .item__category {
  background: var(--base-color);
  color: var(--font-color);
  font-size: 1.3rem;
}
.page-top .news .c-newsList .item__title {
  width: 100%;
  font-size: 1.5rem;
}

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

記事一覧

------------------------------------------------------------ */
.archive {
  padding: 5rem 2rem;
}
.archive__inner {
  padding-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.articleUnit img {
  width: 100%;
  height: auto;
  aspect-ratio: 390/254;
}
.articleUnit a {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  color: var(--font-color);
  padding: 2.4rem 0;
  position: relative;
  z-index: 0;
}
.articleUnit a::before, .articleUnit a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.articleUnit a::before {
  background: var(--base-color);
}
.articleUnit a::after {
  background: var(--color-light-violet);
  transform: scale(0.2, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .articleUnit a:hover::after {
    transform: scale(1, 1);
  }
}
.articleUnit__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 390/254;
}
.articleUnit__date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.articleUnit__date time {
  line-height: 1;
}
.articleUnit__category {
  display: grid;
  place-content: center;
  width: 8rem;
  height: 2.5rem;
  background: var(--color-light-violet);
  color: #ffffff;
  font-size: 1.3rem;
}
.articleUnit__title {
  font-size: 1.6rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.PageNavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.PageNavi .page-numbers {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  color: var(--font-color);
  transition: opacity 0.3s;
  font-size: 1.6rem;
  line-height: 1;
}
@media (hover: hover) {
  .PageNavi .page-numbers:hover {
    opacity: 0.6;
  }
}
.PageNavi .page-numbers:not(.prev):not(.next):not(.current) {
  display: none;
}
.PageNavi .page-numbers.current {
  background-color: var(--color-light-violet);
  color: var(--base-color);
  pointer-events: none;
}

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

記事詳細

------------------------------------------------------------ */
.single {
  padding: 5rem 2rem 0;
}
.single h3 {
  margin-bottom: 2rem;
}
.single__image:not(:last-child) {
  margin-bottom: 2rem;
}
.single__image img {
  width: 100%;
  height: auto;
}
.single__image figcaption {
  margin-top: 1rem;
  color: var(--color-light-violet);
  text-align: center;
}
.single__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.single__desc:not(:last-child) {
  margin-bottom: 4rem;
}
.single__desc:has(+ .treatment) {
  margin-bottom: 8rem;
}
.single__desc p,
.single__desc li {
  font-size: 1.4rem;
  line-height: 1.8;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
.single__desc strong {
  font-size: 1.6rem;
  font-weight: 900;
}
.single__desc ol {
  margin-left: 2.5rem;
}
.single__desc ol li {
  list-style-type: decimal;
}
.single__desc ul {
  margin-left: 2.5rem;
}
.single__desc ul li {
  list-style-type: disc;
}
.single__desc a {
  color: var(--color-light-violet);
  text-decoration: underline;
}
.single__desc hr {
  width: 100%;
  border-style: solid;
  border-color: var(--color-gray);
}
.single__desc del {
  text-decoration: line-through;
}
.single__desc em {
  font-style: italic;
}
.single__desc blockquote {
  padding: 1rem;
  border-left: 2px solid var(--font-color);
  background: var(--color-gray);
}
.single__desc h2,
.single__desc h3,
.single__desc h4,
.single__desc h5 {
  line-height: var(--lh-16);
  text-align: center;
}
.single__desc h2 {
  padding: 0.5rem 1.5rem;
  margin-bottom: 2.5rem;
  background: #fdf8fb;
  color: var(--color-pink);
  font-size: 2rem;
  font-family: "Shippori Mincho B1", serif;
}
.single__desc h3 {
  padding-bottom: 2rem;
  border-bottom: 1px solid #eaeaea;
  color: var(--color-light-violet);
  font-size: 1.9rem;
  font-family: "Shippori Mincho B1", serif;
}
.single__desc h4 {
  font-size: 1.8rem;
}
.single__desc h5,
.single__desc h6 {
  font-size: 1.6rem;
}
.single .treatment {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 8rem;
}
.single .treatment__item > h4 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  line-height: var(--lh-16);
  color: var(--font-color);
  text-align: center;
}
.single .treatment__item img {
  width: 100%;
  height: auto;
}
.single .treatment svg {
  width: 4rem;
  height: 4rem;
  margin-inline: auto;
  fill: var(--color-light-violet);
}
.single .c-table {
  margin-bottom: 6rem;
}
.single .supervision,
.single .overview {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 2rem;
  background: var(--color-gray);
}
.single .supervision__title,
.single .overview__title {
  color: var(--color-light-violet);
  font-size: 1.8rem;
  text-align: center;
}
.single .supervision {
  margin-bottom: 4rem;
}
.single .supervision figure img {
  width: 100%;
  height: auto;
}
.single .supervision figure figcaption {
  margin-top: 2rem;
  font-size: 1.6rem;
  text-align: center;
}
.single .overview__logo {
  width: 16rem;
  margin-inline: auto;
}
.single .overview__logo img {
  width: 100%;
  height: auto;
}
.single .overview dl {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.single .overview dl dt {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 0.8rem;
}
.single .overview dl dd p:has(span) {
  display: flex;
  gap: 0.8rem;
}
.single .overview dl dd p:has(span) span {
  flex: none;
  width: 8rem;
}

.singleNavi {
  padding: 5rem 2rem 0;
}
.singleNavi__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
.singleNavi__prev, .singleNavi__archive, .singleNavi__next {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  font-size: 1.6rem;
  transition: color 0.3s;
}
.singleNavi__prev svg, .singleNavi__archive svg, .singleNavi__next svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--font-color);
}
@media (hover: hover) {
  .singleNavi__prev:hover, .singleNavi__archive:hover, .singleNavi__next:hover {
    color: var(--color-light-violet);
  }
}
.singleNavi__prev svg {
  scale: -1 1;
}
/*# sourceMappingURL=style.css.map */
