@charset "UTF-8";
:root {
  --base-color: #ffffff;
  --font-color: #333333;
  --color-brown: #402d00;
  --color-beige: #978c74;
  --color-orange01: #f09871;
  --color-orange02: #fbddd0;
  --color-orange03: #fff6ef;
  --color-gray: #f8f8f8;
  --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-*/
  /*-ブレイクポイント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.6666666667vw;
  }
}

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: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Meiryo", "MS PGothic", 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.6rem;
  letter-spacing: 0.05em;
  line-height: var(--lh-18);
  font-feature-settings: "palt";
}

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

.subPage {
  margin-top: 4.4rem;
  background: var(--base-color);
  position: relative;
}
.subPage::before {
  content: "";
  display: block;
  width: 100%;
  height: 4.4rem;
  background: url(../images/bg_breadcrumb_01.webp) no-repeat center/cover;
  position: absolute;
  top: -4.4rem;
  left: 0;
}

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

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: 6.4rem 2rem;
}
.page-404 .content > p {
  margin-bottom: 4.8rem;
  text-align: center;
}

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

パンくずリスト

------------------------------------------------------------ */
.breadcrumb {
  padding: 2.4rem 2rem 0;
}
.breadcrumb:has(+ .c-outline) {
  padding-bottom: 4.5rem;
}
.breadcrumb__item {
  display: inline;
  line-height: var(--lh-14);
}
.breadcrumb__item:not(:last-child)::after {
  content: "|";
  margin-inline: 0.5rem;
  color: var(--font-color);
}
.breadcrumb__link {
  color: var(--font-color);
  transition: opacity 0.3s;
}
.breadcrumb__link:hover {
  opacity: 0.7;
}

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

ボタン

------------------------------------------------------------ */
.wrapButton {
  padding: 0.1rem 0;
}

.c-button {
  display: grid;
  place-content: center;
  min-height: 5.6rem;
  padding: 1rem 4.8rem;
  border: 1px solid var(--color-beige);
  border-radius: 2.8rem;
  color: var(--font-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  text-align: center;
  position: relative;
}
@media (hover: hover) {
  .c-button:hover svg {
    translate: 0.5rem -50%;
  }
}
.c-button svg {
  width: 2rem;
  height: 2rem;
  fill: var(--color-beige);
  position: absolute;
  top: 50%;
  right: 2.4rem;
  translate: 0 -50%;
  transition: translate 0.3s;
}

.mapBtn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  color: var(--font-color);
  line-height: 1;
  letter-spacing: 0;
}
.mapBtn svg {
  width: 2rem;
  height: 2rem;
  fill: #919191;
}

.buttonWrap {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 6.4rem 2rem;
}
.buttonWrap a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  min-height: 12rem;
  padding: 2rem 2rem;
  border-radius: 1rem;
  color: var(--base-color);
  line-height: var(--lh-16);
  position: relative;
  transition: filter 0.3s;
}
@media (hover: hover) {
  .buttonWrap a:hover {
    filter: brightness(1.2);
  }
}
.buttonWrap a::before {
  content: "";
  display: block;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border-radius: 0.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.buttonWrap a:nth-of-type(1) {
  background: url(../images/bg_button_01.webp) no-repeat center/cover;
}
.buttonWrap a:nth-of-type(1)::before {
  border: 1px solid #d8c5b7;
}
.buttonWrap a:nth-of-type(2) {
  background: url(../images/bg_button_02.webp) no-repeat center/cover;
}
.buttonWrap a:nth-of-type(2)::before {
  border: 1px solid var(--color-beige);
}
.buttonWrap a:nth-of-type(3) {
  background: url(../images/bg_button_03.webp) no-repeat center/cover;
}
.buttonWrap a:nth-of-type(3)::before {
  border: 1px solid var(--color-beige);
}
.buttonWrap__sub {
  font-size: 1.4rem;
}
.buttonWrap__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.buttonWrap__main span {
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.buttonWrap__main svg {
  flex: none;
  width: 2.4rem;
  height: 2.4rem;
  fill: var(--base-color);
}

.page-surgery .c-instagram {
  padding: 6.4rem 2rem 0;
  margin-bottom: -3.2rem;
}
.c-instagram a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  min-height: 12rem;
  padding: 2rem 2rem;
  background: linear-gradient(45deg, #fcd005 0%, #e95529 41.92%, #5f1985 88.68%, #191d85 100%);
  border-radius: 1rem;
  color: var(--base-color);
  line-height: var(--lh-16);
  transition: filter 0.3s;
}
@media (hover: hover) {
  .c-instagram a:hover {
    filter: brightness(1.2);
  }
}
.c-instagram a img {
  flex: none;
  width: 3.2rem;
  height: 3.2rem;
}
.c-instagram a span {
  display: flex;
  flex-direction: column;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.c-instagram a span span:nth-of-type(2) {
  font-size: 2.4rem;
}
.c-instagram a svg {
  flex: none;
  width: 2.4rem;
  height: 2.4rem;
  fill: var(--base-color);
}

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

フリーダイヤル、WEB診療予約

------------------------------------------------------------ */
.c-btnUnit {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-btnUnit__tel, .c-btnUnit__reservation, .c-btnUnit__clinic, .c-btnUnit__cosme {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-btnUnit__tel:hover, .c-btnUnit__reservation:hover, .c-btnUnit__clinic:hover, .c-btnUnit__cosme:hover {
    opacity: 0.7;
  }
}
.c-btnUnit__reservation, .c-btnUnit__clinic, .c-btnUnit__cosme {
  height: 5.6rem;
  border-radius: 3.5rem;
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.c-btnUnit__tel {
  gap: 1rem;
  white-space: nowrap;
}
.c-btnUnit__tel .text {
  padding: 0.5rem 0;
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
  color: #919191;
  font-size: 1.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
}
.c-btnUnit__tel .num {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.c-btnUnit__tel .num span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.c-btnUnit__tel .num span:nth-of-type(1) {
  font-size: 1.8rem;
}
.c-btnUnit__tel .num span:nth-of-type(2) {
  font-size: 2.8rem;
}
.c-btnUnit__reservation {
  background: #c5b389;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.c-btnUnit__clinic, .c-btnUnit__cosme {
  flex-direction: column;
  line-height: var(--lh-14);
}
.c-btnUnit__clinic span, .c-btnUnit__cosme span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.c-btnUnit__clinic span:nth-of-type(1), .c-btnUnit__cosme span:nth-of-type(1) {
  font-size: 1.5rem;
}
.c-btnUnit__clinic span:nth-of-type(2), .c-btnUnit__cosme span:nth-of-type(2) {
  font-size: 1.8rem;
}
.c-btnUnit__clinic {
  background: var(--color-orange01);
}
.c-btnUnit__cosme {
  background: #aa806d;
}

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

院長紹介

------------------------------------------------------------ */
.c-doctor {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.c-doctor__image img {
  width: 100%;
  height: auto;
}
.c-doctor__name {
  text-align: center;
}
.c-doctor__name img {
  width: 17.6rem;
  height: auto;
}
.c-doctor__name p {
  color: var(--color-brown);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-12);
}
.c-doctor__name p:nth-of-type(1) {
  margin-bottom: 0.5rem;
}
.c-doctor__name p:nth-of-type(2) {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
}
.c-doctor__career > p, .c-doctor__list > p {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-orange01);
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  position: relative;
}
.c-doctor__career > p::after, .c-doctor__list > p::after {
  flex: 1;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-orange02);
}
.c-doctor__career ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-doctor__career ul li {
  display: flex;
  gap: 1.5rem;
}
.c-doctor__career ul li p:nth-of-type(1) {
  flex: none;
}
.c-doctor__list .c-listBox {
  padding: 0;
  background: none;
}
.c-doctor__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-doctor__desc p {
  text-align: justify;
}

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

住所・アクセス

------------------------------------------------------------ */
.c-access__item {
  display: flex;
  align-items: center;
}
.c-access__item:nth-of-type(1) {
  border-bottom: 1px solid #ebe3d5;
}
.c-access__item:nth-of-type(1) .c-access__text {
  padding: 0 2rem 1.5rem;
  position: relative;
}
.c-access__item:nth-of-type(1) .c-access__text::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: var(--color-orange03);
  position: absolute;
  bottom: -0.5rem;
  left: -0.5rem;
  pointer-events: none;
}
.c-access__item > p {
  width: 8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.c-access__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.5rem 2rem;
  border-left: 1px solid #ebe3d5;
}
.c-access__text address,
.c-access__text p {
  letter-spacing: 0;
  font-size: 1.5rem;
  white-space: nowrap;
}

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

Q＆A

------------------------------------------------------------ */
.c-faq {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.c-faq details {
  background: var(--color-gray);
  text-align: justify;
  position: relative;
}
.c-faq details summary {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 4.6rem 1.5rem 1.5rem;
  border-top: 2px solid var(--color-beige);
  text-align: justify;
  position: relative;
  cursor: pointer;
}
.c-faq details summary::-webkit-details-marker {
  display: none;
}
.c-faq details summary .question {
  flex: none;
  display: inline-block;
  margin-top: -0.3rem;
  color: var(--font-color);
  font-size: 2rem;
  line-height: 2;
}
.c-faq details summary .txt {
  margin-block: auto;
  color: var(--font-color);
  text-align: justify;
}
.c-faq details summary .ico {
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  translate: 0 -50%;
}
.c-faq details summary .ico::before, .c-faq details summary .ico::after {
  content: "";
  background-color: var(--color-beige);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.c-faq details summary .ico::before {
  width: 1.6rem;
  height: 0.2rem;
}
.c-faq details summary .ico::after {
  width: 0.2rem;
  height: 1.6rem;
}
.c-faq details[open] summary .ico::after {
  opacity: 0;
  rotate: 90deg;
}
.c-faq details[open] summary .ico::before {
  rotate: 180deg;
}
.c-faq details .content__inner {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
}
.c-faq details .content__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-faq details .content .answer {
  flex: none;
  display: inline-block;
  margin-top: -0.3rem;
  font-size: 2rem;
}
.c-faq details .content p {
  text-align: justify;
}

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

流れパターン

------------------------------------------------------------ */
.c-flow {
  display: flex;
  flex-direction: column;
  gap: 11.4rem;
  padding-top: 3rem;
}
.c-flow__item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 4rem 2rem 4.4rem;
  background: var(--color-gray);
  position: relative;
}
.c-flow__item:not(:last-child)::after {
  content: "";
  background: var(--color-orange02);
  width: 6rem;
  height: 2rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -5rem;
  left: 50%;
  translate: -50% 0;
}
.c-flow__num {
  width: 13.9rem;
  position: absolute;
  top: -5rem;
  left: 50%;
  translate: -50% 0;
}
.c-flow__num img {
  width: 100%;
  height: auto;
}
.c-flow__image img {
  width: 100%;
  height: auto;
}
.c-flow__title {
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
}
.c-flow__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-flow__desc p {
  text-align: justify;
}

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

院内紹介

------------------------------------------------------------ */
.c-info {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.c-info__item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.c-info__title {
  padding-left: 1rem;
  border-left: 2px solid var(--color-beige);
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
}
.c-info__image img {
  width: 100%;
  height: auto;
}
.c-info__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-info__desc p {
  text-align: justify;
}

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

リスト

------------------------------------------------------------ */
.c-listBox {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 3.2rem 2rem;
  background: var(--color-gray);
}
.c-listBox li {
  display: flex;
  gap: 1rem;
}
.c-listBox li::before {
  flex: none;
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 1rem;
  background: var(--color-beige);
  transform: rotate(45deg);
}

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

newsのリスト

------------------------------------------------------------ */
.c-newsList {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-newsList .item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  color: var(--font-color);
}
@media (hover: hover) {
  .c-newsList .item:hover .item__title {
    color: #978c74;
  }
}
.c-newsList .item__category {
  display: grid;
  place-content: center;
  width: 10rem;
  height: 3rem;
  border: 1px solid #978c74;
  border-radius: 1.5rem;
  color: #978c74;
}
.c-newsList .item time {
  width: 8rem;
}
.c-newsList .item__title {
  width: 100%;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

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

目次

------------------------------------------------------------ */
.c-outline {
  margin-inline: 2rem;
  padding: 1.5rem 2rem 4.5rem;
  background: var(--color-gray);
}
.c-outline__title {
  margin-bottom: 2.4rem;
  text-align: center;
}
.c-outline__title img {
  width: 15.1rem;
  height: auto;
}
.c-outline__title h2 {
  margin-top: -4rem;
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.c-outline__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.c-outline__list li a {
  display: flex;
  gap: 1rem;
  color: var(--font-color);
  line-height: var(--lh-16);
  text-decoration: underline;
  transition: color 0.3s;
  position: relative;
}
@media (hover: hover) {
  .c-outline__list li a:hover {
    color: #a4a4a4;
  }
}
.c-outline__list li a::before {
  flex: none;
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 1rem;
  background: var(--color-beige);
  transform: rotate(45deg);
}

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

ページタイトル

------------------------------------------------------------ */
.c-pageTitle {
  padding: 7.8rem 2rem 6.8rem;
  margin-bottom: -3rem;
  background: rgba(255, 255, 255, 0.3);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pageTitle {
    padding: 3.2rem 2rem;
    margin-bottom: 0;
    background: none;
  }
}
.c-pageTitle p {
  font-size: 2.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  text-align: center;
}

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

ピックアップ

------------------------------------------------------------ */
.c-pickup {
  padding: 14rem 2rem 11.6rem;
  margin-inline: -2rem;
  background: url(../images/bg_pickup_01.webp) no-repeat center/cover;
  position: relative;
}
.c-pickup::before, .c-pickup::after {
  content: "";
  display: block;
  width: 100%;
  height: 4.4rem;
  background: url(../images/bg_pickup_02.webp) no-repeat center/cover;
  position: absolute;
  left: 0;
}
.c-pickup::before {
  top: 0;
}
.c-pickup::after {
  bottom: 0;
  transform: rotate(180deg);
}
.c-pickup__inner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 5rem 2rem 6rem;
  background: var(--base-color);
  border-radius: 1rem;
}
.c-pickup__label {
  width: 19rem;
  margin-inline: auto;
  position: absolute;
  top: 8rem;
  left: 50%;
  translate: -50% 0;
}
.c-pickup__label img {
  width: 100%;
  height: auto;
}
.c-pickup__title {
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  text-align: center;
}
.c-pickup__image img {
  width: 100%;
  height: auto;
}
.c-pickup__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-pickup__desc p {
  text-align: justify;
}

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

テーブル

------------------------------------------------------------ */
.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 {
  padding: 1.5rem 2rem;
}
.c-table__table th {
  background: var(--color-beige);
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.c-table__table td {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-gray);
}
.c-table__table td p a {
  color: var(--color-brown);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-table__table td p a:hover {
    text-decoration: none;
  }
}

.scheduleTable__table {
  width: 100%;
  margin-bottom: 1rem;
  text-align: center;
}
.scheduleTable__table thead tr {
  border-bottom: 1px solid #9b9b9b;
}
.scheduleTable__table thead tr th {
  padding: 0 0 1.2rem;
}
.scheduleTable__table th,
.scheduleTable__table td {
  padding: 1rem 0;
  text-align: center;
}
.scheduleTable__table th {
  width: calc((100% - 10rem) / 7);
  white-space: nowrap;
}
.scheduleTable__table th.scheduleTable__header {
  width: 10rem !important;
  border-right: 1px solid #9b9b9b;
  text-align: left !important;
}
.scheduleTable__table td {
  font-size: 1.4rem;
}
.scheduleTable__table td.scheduleTable__time {
  border-right: 1px solid #ab9f9b;
  text-align: left !important;
  font-size: 1.3rem;
}

.careerTable__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  position: relative;
}
.careerTable__title::after {
  flex: 1;
  content: "";
  display: block;
  background: #404040;
  width: 100%;
  height: 1px;
}
.careerTable__table {
  width: 100%;
  border-collapse: collapse;
}
.careerTable__table tbody {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.careerTable__table td {
  font-size: 1.5rem;
  line-height: 1.6;
}
.careerTable__table td:first-child {
  width: 9.6rem;
  padding-right: 3rem;
  white-space: nowrap;
}
.careerTable__table td:first-child span:nth-of-type(1) {
  display: inline-block;
  position: relative;
}
.careerTable__table td:first-child span:nth-of-type(1)::after {
  content: "～";
  color: var(--font-color);
  position: absolute;
}
.careerTable__table td:first-child span:nth-of-type(2) {
  display: block;
  text-align: right;
}

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

下層のパーツ

------------------------------------------------------------ */
.c-unit {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.c-unit__item {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.c-unit__image img {
  width: 100%;
  height: 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(--color-brown);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-unit__desc p a:hover {
    text-decoration: none;
  }
}
.c-unit__map iframe, .c-unit__movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/220;
}

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

見出し

------------------------------------------------------------ */
.heading01 {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.heading01 img {
  width: 20rem;
  height: auto;
}
.heading01 h2,
.heading01 p {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 2.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
}
.heading01 h2 span,
.heading01 p span {
  font-size: 1.6rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  white-space: nowrap;
}

.heading02 {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.heading02 img {
  width: 10rem;
  height: auto;
  margin-bottom: -1.5rem;
  opacity: 0.4;
  position: relative;
  z-index: -1;
}
.heading02 h3 {
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
}
.heading02 h3 span {
  color: var(--color-orange01);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}

.h2-title,
.h3-title,
.h4-title,
.h5-title {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
}

.h2-title {
  padding: 4.4rem 0;
  margin-inline: -2rem;
  position: relative;
}
.h2-title::before, .h2-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 4.4rem;
  background: url(../images/bg_h2-title_01.webp) no-repeat center/cover;
  position: absolute;
  left: 0;
}
.h2-title::before {
  top: 0.1rem;
}
.h2-title::after {
  bottom: 0.1rem;
  transform: rotate(180deg);
}
.h2-title span {
  display: block;
  width: 100%;
  padding: 0 3rem;
  background: var(--color-orange03);
  color: var(--color-orange01);
  font-size: 2.6rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  text-align: center;
}

.h3-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 2.4rem;
}
.h3-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.9rem;
  background: url(../images/bg_h3-title_01.webp) no-repeat center/contain;
}

.h4-title {
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-beige);
  font-size: 2.2rem;
}

.h5-title {
  display: flex;
  gap: 0.8rem;
  font-size: 2rem;
}
.h5-title::before {
  flex: none;
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 1.2rem;
  background: var(--color-orange01);
  transform: rotate(45deg);
}

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

section関連の記述

------------------------------------------------------------ */
section,
.divSection {
  padding: 6.4rem 2rem 0;
  overflow-x: clip;
  position: relative;
  z-index: 0;
}
section > .h2-title,
.divSection > .h2-title {
  margin-bottom: 2.4rem;
}
section.sectionBtm,
.divSection.sectionBtm {
  padding-bottom: 6.4rem;
}

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

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

SP時 header

------------------------------------------------------------ */
.spHeader {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .spHeader {
    display: flex;
    align-items: center;
    width: 100%;
    height: 6rem;
    padding: 0 2rem;
    background: var(--base-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
  }
  .spHeader a {
    display: block;
    width: 24.5rem;
  }
  .spHeader a img {
    width: 100%;
    height: auto;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .spHeader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
.spHeader.is-show {
  opacity: 1;
  visibility: visible;
}

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

Footer

------------------------------------------------------------ */
.footer {
  padding-top: 4.4rem;
  background: var(--base-color);
  position: relative;
}
.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 4.4rem;
  background: url(../images/bg_wave_01.webp) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer {
    padding-bottom: 5.6rem;
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
  padding: 3rem 2rem 4.2rem;
  background: var(--color-orange03);
}
.footer__logo {
  display: block;
  width: 100%;
}
.footer__logo img {
  width: 100%;
  height: auto;
}
.footer__map iframe {
  width: 100%;
  aspect-ratio: 335/200;
  margin-bottom: 1.6rem;
}
.footer__map .mapBtn {
  margin-inline: auto;
}
.footer__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__desc p {
  font-size: 1.5rem;
  text-align: justify;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.footer__links a {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5.6rem;
  border-radius: 2.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .footer__links a:hover {
    opacity: 0.7;
  }
}
.footer__links a span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.footer__links a svg {
  width: 1.2rem;
  height: 1.2rem;
}
.footer__links a:nth-of-type(1), .footer__links a:nth-of-type(2) {
  background: var(--base-color);
}
.footer__links a:nth-of-type(1) span, .footer__links a:nth-of-type(2) span {
  font-size: 2rem;
}
.footer__links a:nth-of-type(1) svg, .footer__links a:nth-of-type(2) svg {
  fill: var(--color-beige);
}
.footer__links a:nth-of-type(3) {
  background: #f3985f;
}
.footer__links a:nth-of-type(3) span {
  color: var(--base-color);
  font-size: 1.8rem;
}
.footer__links a:nth-of-type(3) svg {
  fill: var(--base-color);
}
.footer__copy {
  padding: 2.4rem 2rem;
  background: #79685a;
  color: var(--base-color);
  font-size: 1.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  text-align: center;
}

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

サイドバー

------------------------------------------------------------ */
.menuButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9rem;
  height: 9rem;
  background: var(--base-color);
  border-radius: 50%;
  position: fixed;
  top: 4rem;
  right: 4rem;
  z-index: 5;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s;
}
@media (hover: hover) {
  .menuButton:hover {
    background: var(--color-brown);
  }
  .menuButton:hover .text {
    color: var(--base-color);
  }
  .menuButton:hover .border {
    background: var(--base-color);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton {
    width: 6rem;
    height: 6rem;
    top: 0;
    right: 1rem;
  }
}
.menuButton .text {
  margin-top: 2.2rem;
  color: var(--color-brown);
  font-size: 1.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  transition: color 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .text {
    margin-top: 1.5rem;
    font-size: 1.2rem;
  }
}
.menuButton .border {
  position: absolute;
  width: 4rem;
  height: 0.1rem;
  margin-top: -2rem;
  background: var(--color-brown);
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .border {
    width: 3.5rem;
    margin-top: -1.5rem;
  }
}
.menuButton .border:nth-child(1) {
  transform: translateY(-0.6rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton.active {
    background: var(--color-brown);
    top: 1rem;
  }
  .menuButton.active .text {
    color: var(--base-color);
  }
  .menuButton.active .border {
    background: var(--base-color);
  }
}
.menuButton.active .border:nth-child(1) {
  transform: rotate(20deg);
}
.menuButton.active .border:nth-child(2) {
  transform: rotate(-20deg);
}

@media screen and (orientation: portrait) and (max-width: 767px) {
  body.home .spHeader:not(.is-show) + .menuButton {
    background: var(--color-brown);
    top: 1rem;
  }
  body.home .spHeader:not(.is-show) + .menuButton .text {
    color: var(--base-color);
  }
  body.home .spHeader:not(.is-show) + .menuButton .border {
    background: var(--base-color);
  }
}

.mvFixedBtn {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.6rem;
  position: fixed;
  top: 14.6rem;
  right: 4rem;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn {
    flex-direction: row;
    gap: 0;
    width: calc(100% - 5.6rem);
    height: 5.6rem;
    inset: auto auto 0 0;
  }
}
.mvFixedBtn__btn {
  display: grid;
  place-content: center;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  transition: background 0.3s, color 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn {
    height: 100%;
    width: 50%;
    border-radius: 0;
  }
}
.mvFixedBtn__btn.tel {
  background: var(--color-orange01);
  position: relative;
  z-index: 0;
}
@media (hover: hover) {
  .mvFixedBtn__btn.tel:hover .large {
    opacity: 1;
    visibility: visible;
  }
}
.mvFixedBtn__btn.tel .small {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.mvFixedBtn__btn.tel .large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41rem;
  height: 100%;
  padding: 0 2rem;
  background: var(--color-orange01);
  border-radius: 4.5rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.tel .large {
    display: none;
  }
}
.mvFixedBtn__btn.tel .large__inner {
  display: flex;
  align-items: flex-end;
}
.mvFixedBtn__btn.tel .large__tel {
  font-size: 2.2rem;
  line-height: 1.2;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.mvFixedBtn__btn.tel .large__num {
  font-size: 3.5rem;
  line-height: 1;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.mvFixedBtn__btn.reservation {
  background: #c5b389;
  margin-left: auto;
  transition: filter 0.3s;
}
@media (hover: hover) {
  .mvFixedBtn__btn.reservation:hover {
    filter: brightness(1.2);
  }
}
.mvFixedBtn__btn.instagram {
  width: 5rem;
  height: 5rem;
  background: none;
  transition: filter 0.3s;
}
@media (hover: hover) {
  .mvFixedBtn__btn.instagram:hover {
    filter: brightness(1.2);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.instagram {
    display: none;
  }
}
.mvFixedBtn__btn.instagram img {
  width: 100%;
  height: auto;
}

.pageTop {
  display: grid;
  place-content: center;
  width: 9rem;
  height: 9rem;
  background: #bcbcbc;
  border-radius: 50%;
  color: var(--base-color);
  font-size: 1.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  cursor: pointer;
  transition: transform 0.3s;
  position: fixed;
  bottom: 2.4rem;
  right: 4rem;
  z-index: 3;
  transition: filter 0.3s;
}
@media (hover: hover) {
  .pageTop:hover {
    filter: brightness(1.1);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pageTop {
    width: 5.6rem;
    height: 5.6rem;
    background: var(--base-color);
    border-radius: 0;
    color: var(--color-brown);
    bottom: 0;
    right: 0;
  }
}

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

pc-content

------------------------------------------------------------ */
.pc-content {
  width: 100%;
  height: 100vh;
  padding: 1.8rem 4.1666666667%;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content {
    height: unset;
    padding: 7rem 2rem 0;
    position: unset;
  }
}
.pc-content h1 {
  width: 58.8541666667%;
  margin-bottom: 1.8rem;
  font-size: 1.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content h1 {
    width: 100%;
    margin-bottom: 0;
    -webkit-line-clamp: 2;
  }
}
.pc-content__logo {
  display: block;
  width: 56rem;
  margin-bottom: 1.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__logo {
    display: none;
  }
}
.pc-content__logo img {
  width: 100%;
  height: auto;
}
.pc-content__tag {
  display: flex;
  gap: 1.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__tag {
    display: none;
  }
}
.pc-content__tag p {
  background: var(--base-color);
  border: 1px solid #bc9862;
  padding: 1rem;
  width: 26rem;
  color: #bc9862;
  font-size: 1.5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  text-align: center;
}
.pc-content__tag p:nth-of-type(1) {
  width: 31rem;
}
.pc-content__lead {
  width: 41.0416666667vw;
  mix-blend-mode: overlay;
  position: absolute;
  bottom: 0rem;
  left: 10rem;
}
.pc-content__lead img {
  width: 100%;
  height: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__lead {
    display: none;
  }
}
.pc-content__left, .pc-content__right {
  height: 100vh;
  position: absolute;
  top: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__left, .pc-content__right {
    display: none;
  }
}
.pc-content__left img, .pc-content__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pc-content__left {
  width: 63.3333333333%;
  left: 0;
  z-index: -2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__left {
    width: 100%;
  }
}
.pc-content__left picture {
  width: 100%;
  height: 100%;
}
.pc-content__left picture img {
  object-position: center;
}
.pc-content__right {
  width: 42.4479166667%;
  right: 0;
  z-index: -1;
}
.pc-content__right img {
  object-position: left;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .pc-content {
    height: 45rem;
    padding: 1rem 2rem 0;
    position: relative;
  }
  .home .pc-content h1 {
    margin-bottom: 1.8rem;
    padding-right: 6rem;
  }
  .home .pc-content__logo {
    display: block;
    width: 100%;
  }
  .home .pc-content__lead {
    display: block;
    width: 34rem;
    bottom: -2rem;
    left: 2rem;
  }
  .home .pc-content__left {
    display: block;
    height: unset;
  }
}

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

メインコンテンツ

------------------------------------------------------------ */
.allContent {
  width: 37.5rem;
  margin-inline: auto 10.5729166667%;
  position: relative;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .allContent {
    display: contents;
  }
  .allContent::before {
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    background: url(../images/bg_all-content_01.webp) no-repeat center/cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -3;
  }
}

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

ドロワーメニュー

------------------------------------------------------------ */
.drawerMenu {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.5rem);
  position: fixed;
  inset: 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: unset;
  }
}
.drawerMenu.active {
  opacity: 1;
  visibility: visible;
}
.drawerMenu__nav {
  display: flex;
  flex-direction: column;
  gap: 6.8rem;
  padding: 10rem 10.2604166667vw 10rem 12.6041666667vw;
  width: 71.0416666667vw;
  background: url(../images/bg_header_01.webp) no-repeat left center/cover;
  min-height: 100%;
  height: fit-content;
}
@media screen and (max-height: 700px) and (orientation: landscape) {
  .drawerMenu__nav {
    padding: 6rem 10.2604166667vw 6rem 12.6041666667vw;
    gap: 4rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__nav {
    gap: 3.5rem;
    width: 100%;
    padding: 7.2rem 2rem;
    background: var(--color-orange03);
  }
}
.drawerMenu__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.drawerMenu__list > a,
.drawerMenu__list > p {
  display: inline-block;
  color: var(--color-orange01);
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
}
.drawerMenu__list > a {
  transition: color 0.3s;
}
@media (hover: hover) {
  .drawerMenu__list > a:hover {
    color: var(--color-brown);
  }
}
.drawerMenu__list.clinic .drawerMenu__inner {
  display: flex;
  gap: 5.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list.clinic .drawerMenu__inner {
    flex-direction: column;
    gap: 1rem;
  }
}
.drawerMenu__list.clinic .drawerMenu__inner ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.drawerMenu__list.clinic .drawerMenu__inner ul li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--font-color);
  line-height: var(--lh-14);
  transition: color 0.3s;
}
@media (hover: hover) {
  .drawerMenu__list.clinic .drawerMenu__inner ul li a:hover {
    color: var(--color-orange01);
  }
}
.drawerMenu__list.clinic .drawerMenu__inner ul li a::before {
  flex: none;
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-beige);
  transform: rotate(45deg);
}
.drawerMenu__list.treatment .drawerMenu__inner {
  display: flex;
  gap: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list.treatment .drawerMenu__inner {
    flex-wrap: wrap;
    gap: 1rem 0.8rem;
  }
}
.drawerMenu__list.treatment .drawerMenu__inner ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: calc((100% - 2rem) / 3);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list.treatment .drawerMenu__inner ul {
    display: contents;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list.treatment .drawerMenu__inner ul li {
    width: calc((100% - 0.8rem) / 2);
  }
}
.drawerMenu__list.treatment .drawerMenu__inner ul li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0.5rem 1rem;
  background: var(--base-color);
  border: 1px solid #e9c0a0;
  border-radius: 1rem;
  color: var(--font-color);
  transition: color 0.3s;
}
@media (hover: hover) {
  .drawerMenu__list.treatment .drawerMenu__inner ul li a:hover {
    color: var(--color-orange01);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list.treatment .drawerMenu__inner ul li a {
    gap: 0.5rem;
  }
}
.drawerMenu__list.treatment .drawerMenu__inner ul li a img {
  width: 5rem;
  height: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list.treatment .drawerMenu__inner ul li a img {
    width: 4rem;
  }
}
.drawerMenu__list.treatment .drawerMenu__inner ul li a span {
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  white-space: nowrap;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list.treatment .drawerMenu__inner ul li a span {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .drawerMenu__list.treatment .drawerMenu__inner ul li a span .small {
    font-size: 1.2rem;
  }
}
.drawerMenu__list.treatment .drawerMenu__inner ul li a span.break br {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list.treatment .drawerMenu__inner ul li a span.break br {
    display: block;
  }
}
.drawerMenu__lead {
  width: 35.1041666667%;
  position: absolute;
  top: 4rem;
  right: 7rem;
  pointer-events: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__lead {
    width: 35.2rem;
    margin: -4rem 0 -4rem -1rem;
    position: unset;
    inset: 0;
  }
}
.drawerMenu__bg {
  flex: 1;
  cursor: pointer;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__bg {
    display: none;
  }
}

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

モーダル

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

アニメーション

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

トップページ

------------------------------------------------------------ */
.page-top > section {
  padding: 0;
}
.page-top .about {
  background: var(--base-color);
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about {
    padding: 4rem 0 4.6rem;
    position: relative;
  }
  .page-top .about::before {
    content: "";
    display: block;
    width: 100%;
    height: 4.6rem;
    background: var(--color-orange03);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.page-top .about__top {
  margin-bottom: 5.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__top {
    display: none;
  }
}
.page-top .about__top img {
  height: auto;
}
.page-top .about__top img:nth-of-type(1) {
  width: 32.5rem;
}
.page-top .about__top img:nth-of-type(2) {
  width: 14.4rem;
  margin: -3.6rem 0 0 20.8rem;
}
.page-top .about__title {
  margin: 0 0 6.6rem 3.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__title {
    margin: 0 2.4rem 4rem;
  }
}
.page-top .about__title img {
  width: 24.5rem;
  height: auto;
  margin-bottom: 4.2rem;
}
.page-top .about__title span {
  display: block;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
}
.page-top .about__tag {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__tag {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 0 2rem;
    margin-bottom: 5.6rem;
  }
}
.page-top .about__tag p {
  background: var(--base-color);
  border: 1px solid #bc9862;
  padding: 1rem;
  color: #bc9862;
  font-size: 1.5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__bottom {
    position: relative;
    z-index: 1;
  }
}
.page-top .about__bottom img {
  height: auto;
}
.page-top .about__bottom img:nth-of-type(1) {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__bottom img:nth-of-type(1) {
    display: block;
    width: 30.9rem;
  }
}
.page-top .about__bottom img:nth-of-type(2) {
  width: 13rem;
  margin-left: 2.6rem;
  margin-bottom: -3.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__bottom img:nth-of-type(2) {
    margin: 0;
    position: absolute;
    bottom: -4.6rem;
    right: 2rem;
    z-index: 2;
  }
}
.page-top .pickup {
  padding: 4.4rem 0;
  background: var(--base-color);
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .pickup {
    padding-top: 0;
  }
}
.page-top .pickup::before, .page-top .pickup::after {
  content: "";
  display: block;
  width: 100%;
  height: 4.4rem;
  background: url(../images/bg_wave_01.webp) no-repeat center/cover;
  position: absolute;
  left: 0;
  z-index: -1;
}
.page-top .pickup::before {
  top: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .pickup::before {
    display: none;
  }
}
.page-top .pickup::after {
  bottom: 0.1rem;
  transform: rotate(180deg);
}
.page-top .pickup__inner {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
  padding: 5rem 2rem 2rem;
  background: var(--color-orange03);
}
.page-top .pickup__inner .c-button {
  background: var(--base-color);
  border: none;
}
.page-top .banners {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 3.4rem 2rem 6.4rem;
  background: var(--base-color);
}
.page-top .banners__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 20rem;
  padding: 2.4rem;
  color: var(--font-color);
  line-height: var(--lh-14);
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .page-top .banners__card:hover {
    opacity: 0.7;
  }
}
.page-top .banners__card span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .banners__card:nth-of-type(1) {
  background: url(../images/bg_home_01.webp) no-repeat center/contain;
}
.page-top .banners__card:nth-of-type(1) .banners__name {
  color: #2c89ac;
}
.page-top .banners__card:nth-of-type(2) {
  background: url(../images/bg_home_02.webp) no-repeat center/contain;
}
.page-top .banners__card:nth-of-type(2) .banners__name {
  color: #d17a2f;
}
.page-top .banners__card:nth-of-type(3) {
  background: url(../images/bg_home_03.webp) no-repeat center/contain;
}
.page-top .banners__card:nth-of-type(3) .banners__name {
  color: #d86c97;
}
.page-top .banners__card:nth-of-type(4) {
  background: url(../images/bg_home_04.webp) no-repeat center/contain;
}
.page-top .banners__card:nth-of-type(4) .banners__name {
  color: #ab6d9f;
}
.page-top .banners__card:nth-of-type(4) .banners__name span {
  font-size: 2rem;
}
.page-top .banners__label {
  width: 27.5rem;
  padding: 0.5rem 0;
  background: var(--base-color);
  border-radius: 1.7rem;
  font-size: 1.8rem;
  text-align: center;
}
.page-top .banners__name {
  font-size: 4rem;
  letter-spacing: 0.1em;
}
.page-top .banners__price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
.page-top .banners__price .num {
  font-size: 4rem;
}
.page-top .banners__price .unit {
  font-size: 2rem;
}
.page-top .clinic {
  padding-top: 4.4rem;
  background: var(--base-color);
  position: relative;
}
.page-top .clinic::before {
  content: "";
  display: block;
  width: 100%;
  height: 4.4rem;
  background: url(../images/bg_wave_01.webp) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
.page-top .clinic__inner {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
  padding: 2rem 2rem 6rem;
  background: var(--color-orange03);
}
.page-top .news {
  padding: 0 1rem 7.2rem;
  background: var(--color-orange03);
}
.page-top .news__inner {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
  background: var(--base-color);
  border-radius: 1rem;
  padding: 3rem 2rem 4.8rem;
}
.page-top .first__top {
  padding-bottom: 4rem;
  margin-bottom: 2.4rem;
  background: #ffefe2;
  position: relative;
}
.page-top .first__top::after {
  content: "";
  display: block;
  width: 100%;
  height: 2.4rem;
  background: url(../images/bg_wave_02.webp) no-repeat center/cover;
  position: absolute;
  bottom: -2.3rem;
  left: 0;
}
.page-top .first__top .heading01 {
  margin-bottom: 4.2rem;
}
.page-top .first__image {
  margin-bottom: 3.8rem;
}
.page-top .first__image img {
  width: 100%;
  height: auto;
}
.page-top .first__worries {
  padding: 0 1rem;
  text-align: center;
}
.page-top .first__worries img {
  width: 23.8rem;
  height: auto;
}
.page-top .first__worries ul {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.page-top .first__worries ul li {
  width: 31.5rem;
  padding: 1rem 0;
  background: #e9c0a0;
  border-radius: 2.7rem;
  color: var(--base-color);
  font-weight: 700;
  position: relative;
}
.page-top .first__worries ul li::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background: url(../images/bg_home_05.webp) no-repeat center/contain;
  position: absolute;
  bottom: -1rem;
}
.page-top .first__worries ul li:nth-of-type(odd)::after {
  left: 4rem;
}
.page-top .first__worries ul li:nth-of-type(even) {
  margin-inline: auto 0;
}
.page-top .first__worries ul li:nth-of-type(even)::after {
  right: 4rem;
  transform: scale(-1, 1);
}
.page-top .first__title {
  margin-top: -2.4rem;
  padding: 5rem 0 3.5rem;
  background: #fff5ec;
  position: relative;
  z-index: -1;
}
.page-top .first__title h3 {
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
}
.page-top .first__title h3 span {
  color: var(--color-orange01);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .first__bottom {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  margin-top: -2rem;
  padding: 6.4rem 2rem 10rem;
  background: #e8b994;
  color: var(--base-color);
  position: relative;
}
.page-top .first__bottom::before {
  content: "";
  display: block;
  width: 100%;
  height: 2.4rem;
  background: url(../images/bg_wave_03.webp) no-repeat center/cover;
  position: absolute;
  top: -0.1rem;
  left: 0;
  z-index: 1;
}
.page-top .first__support img {
  width: 100%;
  height: auto;
}
.page-top .first__lead {
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
}
.page-top .first__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.page-top .first__desc p {
  text-align: justify;
}
.page-top .try {
  padding: 4.4rem 0;
  background: linear-gradient(to bottom, #e8b994 0%, #e8b994 50%, var(--base-color) 50%, var(--base-color) 100%);
  position: relative;
  z-index: 1;
}
.page-top .try__inner {
  padding: 0 2rem 3rem;
  background: var(--color-orange03);
  position: relative;
}
.page-top .try__inner::before, .page-top .try__inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 4.4rem;
  background: url(../images/bg_wave_04.webp) no-repeat center/cover;
  position: absolute;
  left: 0;
}
.page-top .try__inner::before {
  top: -4.4rem;
}
.page-top .try__inner::after {
  transform: rotate(180deg);
  bottom: -4.3rem;
}
.page-top .try__lead {
  width: 34.5rem;
  margin: 0 auto -5rem;
}
.page-top .try__lead img {
  width: 100%;
  height: auto;
}
.page-top .try__inside {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 4.8rem;
  padding: 5rem 2rem;
  background: var(--base-color);
  border-radius: 1rem;
}
.page-top .try__title {
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  text-align: center;
}
.page-top .try__image img {
  width: 100%;
  height: auto;
}
.page-top .try__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.page-top .try__desc p {
  text-align: justify;
}
.page-top .try__desc p span {
  color: var(--color-orange01);
  font-weight: 700;
  text-decoration: underline dotted var(--color-orange01) 2px;
  text-underline-offset: 0.5rem;
}
.page-top .try .c-button {
  background: var(--base-color);
}
.page-top .skin {
  padding-bottom: 4.4rem;
  position: relative;
  z-index: 1;
}
.page-top .skin::after {
  content: "";
  display: block;
  width: 100%;
  height: 4.4rem;
  background: url(../images/bg_wave_05.webp) no-repeat center/cover;
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  z-index: -1;
  transform: scale(-1, -1);
}
.page-top .skin__inner {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
  padding: 5rem 2rem 3rem;
  background: var(--base-color);
}
.page-top .skin__image img {
  width: 100%;
  height: auto;
}
.page-top .skin__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.page-top .skin__desc p {
  text-align: justify;
}
.page-top .skin__banner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 2rem 0;
  background: url(../images/bg_home_06.webp) no-repeat center/cover;
  border-radius: 2rem;
  box-shadow: 0 0 1.4rem rgba(0, 0, 0, 0.2);
}
.page-top .skin__banner p {
  width: 100%;
  text-align: center;
}
.page-top .skin__banner p:nth-of-type(1) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d5ad35;
  font-weight: 700;
  position: relative;
}
.page-top .skin__banner p:nth-of-type(1)::before, .page-top .skin__banner p:nth-of-type(1)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #d5ad35;
}
.page-top .skin__banner p:nth-of-type(1) span {
  flex: none;
  font-size: 1.4rem;
}
.page-top .skin__banner p:nth-of-type(1) span span {
  font-size: 1.6rem;
}
.page-top .skin__banner p:nth-of-type(2) {
  font-size: 2rem;
  font-weight: 700;
}
.page-top .skin__banner p:nth-of-type(2) span {
  color: #d5ad35;
  position: relative;
}
.page-top .skin__banner p:nth-of-type(2) span::before {
  content: "・・";
  display: block;
  font-size: 2rem;
  letter-spacing: 0.5em;
  position: absolute;
  top: -2.5rem;
  left: 50%;
  translate: -40% 0;
}
.page-top .skin__banner p:nth-of-type(3) {
  font-size: 1.4rem;
}
.page-top .skin__banner p img {
  width: 23.5rem;
  height: auto;
}
.page-top .menu {
  padding: 7.4rem 2rem;
  background: rgba(255, 255, 255, 0.3);
  margin: -2rem 0;
}
.page-top .menu .heading01 {
  margin-bottom: 4.2rem;
}
.page-top .menu p,
.page-top .menu span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .menu__inner {
  background: #fff1e6;
  border-radius: 1rem;
  overflow: hidden;
}
.page-top .menu__title {
  padding: 1.5rem 0;
  background: var(--base-color);
  font-size: 1.8rem;
  text-align: center;
}
.page-top .menu__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem 1rem 4.8rem;
}
.page-top .menu details[open] summary::after {
  display: none;
}
.page-top .menu summary {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--base-color);
  position: relative;
  cursor: pointer;
}
.page-top .menu summary::-webkit-details-marker {
  display: none;
}
.page-top .menu summary::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  background: var(--color-orange01);
  position: absolute;
  top: 50%;
  right: 2rem;
  translate: 0 -50%;
}
.page-top .menu summary::after {
  content: "";
  width: 2px;
  height: 1.4rem;
  background: var(--color-orange01);
  position: absolute;
  top: 50%;
  right: 2.55rem;
  translate: 0 -50%;
}
.page-top .menu summary img {
  flex: none;
  width: 4rem;
  height: auto;
}
.page-top .menu summary span {
  flex: 1;
  font-size: 1.8rem;
  text-align: center;
}
.page-top .menu .content {
  overflow: hidden;
}
.page-top .menu .content__inner {
  display: flex;
  flex-direction: column;
  margin-top: 8.4rem;
  padding: 3rem 1rem;
  background: var(--base-color);
  border-radius: 1rem;
  position: relative;
}
.page-top .menu .content__icon {
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: var(--base-color);
  text-align: center;
  position: absolute;
  top: -5rem;
  left: 50%;
  translate: -50% 0;
}
.page-top .menu .content__icon img {
  width: 5rem;
  height: auto;
  margin-top: 4rem;
}
.page-top .menu .content__sub {
  padding: 2.4rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-top .menu .content__inside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-top .menu .content__inside li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  background: var(--base-color);
  border: 1px solid #e9c0a0;
  border-radius: 1rem;
  transition: background 0.3s;
}
@media (hover: hover) {
  .page-top .menu .content__inside li a:hover {
    background: #fff1e6;
  }
}
.page-top .menu .content__inside li a img {
  flex: none;
  width: 5rem;
  height: auto;
}
.page-top .menu .content__inside li a span {
  font-size: 1.8rem;
  line-height: var(--lh-14);
}
.page-top .counseling {
  padding: 4.4rem 0;
  position: relative;
  z-index: 1;
}
.page-top .counseling::before, .page-top .counseling::after {
  content: "";
  display: block;
  width: 100%;
  height: 4.4rem;
  background: url(../images/bg_wave_05.webp) no-repeat center/cover;
  position: absolute;
  left: 0;
}
.page-top .counseling::before {
  top: 0.1rem;
}
.page-top .counseling::after {
  bottom: 0.1rem;
  transform: scale(-1, -1);
}
.page-top .counseling__inner {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
  padding: 2rem;
  background: var(--base-color);
}
.page-top .counseling__image img {
  width: 100%;
  height: auto;
}
.page-top .counseling__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.page-top .counseling__desc p {
  text-align: justify;
}
.page-top .counseling__contact {
  padding: 2rem 2rem 4.8rem;
  background: #fff7f1;
  border-radius: 1rem;
  position: relative;
}
.page-top .counseling__contact::before {
  content: "";
  display: block;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border: 1px solid #e9c0a0;
  border-radius: 0.8rem;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.page-top .counseling__contact .heading01 {
  margin-bottom: 2.4rem;
}
.page-top .counseling__contact .heading01 h2 {
  font-size: 2.2rem;
}
.page-top .counseling__contact .c-btnUnit__tel {
  flex-direction: column;
  gap: 0;
}
.page-top .counseling__contact .c-btnUnit__tel .text {
  padding: 0.2rem 0;
}
.page-top .feature {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
  background: rgba(255, 255, 255, 0.3);
  margin: -2rem 0;
  padding: 7.4rem 2rem 8.4rem;
}
.page-top .feature__lead {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
}
.page-top .feature__lead .heading01 h2 {
  display: block;
}
.page-top .feature__lead .heading01 h2 span {
  color: var(--color-orange01);
  font-size: 3.8rem;
}
.page-top .feature__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.page-top .feature__desc p {
  text-align: justify;
}
.page-top .feature__image img {
  width: 100%;
  height: auto;
}
.page-top .feature__item {
  padding: 5rem 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(1px);
  background: rgba(255, 255, 255, 0.5);
}
.page-top .feature__inside {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 5.6rem;
}
.page-top .feature__list {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.page-top .feature__list h4 {
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
  letter-spacing: 0.1em;
}
.page-top .feature__list ul {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
}
.page-top .feature__list ul li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-top .feature__list ul li img {
  width: 100%;
  height: auto;
}
.page-top .feature__list ul li p {
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
}
.page-top .feature__list .c-button {
  padding: 1rem 4.8rem 1rem 2.8rem;
}
.page-top .beauty {
  display: grid;
  place-content: center;
  height: 36.4rem;
  background: url(../images/bg_home_07.webp) no-repeat center/cover;
  position: relative;
}
.page-top .beauty p {
  color: var(--base-color);
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.page-top .beauty img {
  width: 26.2rem;
  height: auto;
  position: absolute;
  top: 19.5rem;
  right: 1rem;
}
.page-top .links {
  padding: 8.4rem 2rem 5rem;
  margin-top: -2rem;
  background: var(--base-color);
}
.page-top .links__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-top .links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10rem;
  padding: 0 1.5rem;
  border: 1px solid var(--color-beige);
  border-radius: 1rem;
}
@media (hover: hover) {
  .page-top .links a:hover svg {
    translate: 0.5rem 0;
  }
}
.page-top .links a span {
  font-size: 2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
}
.page-top .links a span span {
  display: block;
  font-size: 1.4rem;
}
.page-top .links a svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: var(--color-beige);
  transition: translate 0.3s;
}

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

記事一覧

------------------------------------------------------------ */
.archive {
  padding: 6.4rem 2rem;
}
.archive__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.archive__inner {
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.articleUnit a {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  color: var(--font-color);
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #978c74;
}
@media (hover: hover) {
  .articleUnit a:hover .articleUnit__title {
    color: #978c74;
  }
}
.articleUnit a img {
  width: 100%;
  height: auto;
  aspect-ratio: 375/220;
}
.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: 10rem;
  height: 3rem;
  border: 1px solid #978c74;
  border-radius: 1.5rem;
  color: #978c74;
}
.articleUnit__title {
  line-height: var(--lh-16);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.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: color 0.3s;
}
@media (hover: hover) {
  .PageNavi .page-numbers:hover {
    color: #978c74;
  }
}
.PageNavi .page-numbers:not(.prev):not(.next):not(.current) {
  display: none;
}
.PageNavi .page-numbers.current {
  background-color: #978c74;
  color: var(--base-color);
  pointer-events: none;
}

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

記事詳細

------------------------------------------------------------ */
.single {
  padding: 6.4rem 2rem;
}
.single .h2-title {
  margin-bottom: 4rem;
}
.single .h3-title {
  margin-bottom: 3.2rem;
}
.single__image:not(:last-child) {
  margin-bottom: 2rem;
}
.single__image img {
  width: 100%;
  height: auto;
}
.single__image figcaption {
  text-align: center;
}
.single__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.single__desc:not(:last-child) {
  margin-bottom: 4rem;
}
.single__desc p,
.single__desc li {
  font-size: 1.6rem;
  line-height: 1.8;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
.single__desc strong {
  font-weight: 900;
  font-size: 1.8rem;
}
.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-brown);
  text-decoration: underline;
}
@media (hover: hover) {
  .single__desc a:hover {
    text-decoration: none;
  }
}
.single__desc hr {
  width: 100%;
  border-style: solid;
  border-color: #eeeeee;
}
.single__desc del {
  text-decoration: line-through;
}
.single__desc em {
  font-style: italic;
}
.single__desc blockquote {
  padding-left: 1rem;
  border-left: 2px solid var(--color-beige);
  font-style: italic;
}
.single__desc h2,
.single__desc h3,
.single__desc h4,
.single__desc h5,
.single__desc h6 {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
}
.single__desc h2 {
  padding: 1rem 2rem;
  background: var(--color-orange03);
  border-radius: 2rem;
  color: var(--color-orange01);
  font-size: 2.6rem;
  text-align: center;
}
.single__desc h3 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 2.4rem;
}
.single__desc h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.9rem;
  background: url(../images/bg_h3-title_01.webp) no-repeat center/contain;
}
.single__desc h4 {
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-beige);
  font-size: 2.2rem;
}
.single__desc h5 {
  display: flex;
  gap: 0.8rem;
  font-size: 2rem;
}
.single__desc h5::before {
  flex: none;
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 1.2rem;
  background: var(--color-orange01);
  transform: rotate(45deg);
}
.single__desc h6 {
  font-size: 1.8rem;
}
.single .treatment {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 8rem;
}
.single .treatment__item > h4 {
  padding: 1.2rem;
  margin-bottom: 1.6rem;
  font-size: 2rem;
  line-height: 1;
}
.single .treatment__item img {
  width: 100%;
  height: auto;
}
.single .treatment__before, .single .treatment__after {
  background: var(--base-color);
  border: 1px solid #bc9862;
  padding: 1rem;
  color: #bc9862;
  font-size: 1.5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  text-align: center;
}
.single .treatment svg {
  width: 4.8rem;
  height: 4.8rem;
  margin-inline: auto;
  fill: #bc9862;
}
.single .c-table {
  margin-bottom: 6rem;
}
.single .supervision,
.single .overview {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 4.8rem 2rem;
  background: var(--color-orange03);
}
.single .supervision__title,
.single .overview__title {
  font-size: 2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  text-align: center;
}
.single .supervision .c-button,
.single .overview .c-button {
  background: var(--base-color);
}
.single .supervision:has(+ .overview) {
  margin-bottom: 4rem;
}
.single .supervision figure img {
  width: 100%;
  height: auto;
}
.single .supervision figure figcaption {
  margin-top: 1rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  text-align: center;
}
.single .overview__logo img {
  width: 100%;
  height: auto;
}
.single .overview__image img {
  width: 100%;
  height: auto;
}
.single .overview dl {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.single .overview dl > div dt {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.single .overview dl > div dd {
  font-size: 1.5rem;
}
.single .overview dl > div dd a {
  display: inline-block;
  text-decoration: underline;
  color: var(--font-color);
}
@media (hover: hover) {
  .single .overview dl > div dd a:hover {
    text-decoration: none;
  }
}
.single .overview dl > div dd p:has(span) {
  display: flex;
  gap: 0.8rem;
}
.single .overview dl > div dd p:has(span) span {
  flex: none;
  width: 8rem;
}

.singleNavi {
  padding: 4rem 2rem 0;
}
.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: var(--font-color);
  transition: color 0.3s;
}
@media (hover: hover) {
  .singleNavi__prev:hover, .singleNavi__archive:hover, .singleNavi__next:hover {
    color: #bc9862;
  }
  .singleNavi__prev:hover svg, .singleNavi__archive:hover svg, .singleNavi__next:hover svg {
    fill: #bc9862;
  }
}
.singleNavi__prev svg, .singleNavi__archive svg, .singleNavi__next svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--font-color);
  transition: fill 0.3s;
}
.singleNavi__prev svg {
  transform: scale(-1, 1);
}
/*# sourceMappingURL=style.css.map */
