@charset "UTF-8";
:root {
  --base-color: #fff;
  --font-color: #5a4637;
  --color-pink: #ef6293;
  --color-blue: #65bbe8;
  --color-green: #90c946;
  --color-orange: #f2a040;
  --color-brown: #907b66;
  --color-beige: #f5f2ed;
  --lh-14: 1.4;
  --lh-16: 1.6;
  --lh-18: 1.8;
  --font-sans: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "BIZ UDPGothic", "Meiryo", "MS PGothic", sans-serif;
  --font-serif: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E",
    "MS PMincho", "MS Mincho", serif;
}

@font-face {
  font-family: "hanazome";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/hanazomefont.woff") format("woff");
  font-display: swap;
}
/* ------------------------------------------------------------

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

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: 2;
  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;
  }
}

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

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: 7rem 2rem 12rem;
}
.page-404 .content > p {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 4.8rem;
}
.page-404 .content .c-button {
  justify-content: center;
}
.page-404 .content .c-button svg {
  scale: -1 1;
}

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

パンくずリスト

------------------------------------------------------------ */
.breadcrumb {
  padding: 0 2rem 6rem;
  font-size: 1.2rem;
}
.breadcrumb__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  padding: 0.6rem 1.4rem;
  border-radius: 2.5rem;
  transition: background 0.3s;
  position: relative;
}
@media (hover: hover) {
  .breadcrumb__item:hover .breadcrumb__link {
    color: var(--base-color);
  }
}
.breadcrumb__item:not(:last-child) {
  background: #f0eae4;
}
@media (hover: hover) {
  .breadcrumb__item:not(:last-child):hover {
    background: var(--font-color);
  }
}
.breadcrumb__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../images/icon_breadcrumb_01.svg) no-repeat center/contain;
  position: absolute;
  right: -2rem;
  top: 50%;
  translate: 0 -50%;
}
.breadcrumb__link {
  color: var(--font-color);
  transition: color 0.3s;
}

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

ボタン

------------------------------------------------------------ */
.c-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 28rem;
  min-height: 7rem;
  margin-inline: auto;
  padding: 1rem 2rem 1rem 3rem;
  background: var(--font-color);
  border-radius: 3.6rem;
  color: var(--base-color);
  font-size: 1.4rem;
  font-family: "hanazome";
  line-height: var(--lh-14);
  transition: background 0.3s;
}
@media (hover: hover) {
  .c-button:hover {
    background: var(--color-brown);
  }
  .c-button:hover span {
    background: var(--font-color);
  }
}
.c-button span {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-brown);
  border-radius: 50%;
  transition: background 0.3s;
}
.c-button span svg {
  fill: var(--base-color);
  width: 1rem;
  height: 1rem;
}

.c-textLink {
  position: relative;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-textLink:hover {
    opacity: 0.7;
  }
}
.c-textLink::after {
  content: "";
  display: inline-block;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: url(../images/icon_text_link_01.svg) no-repeat center/contain;
  translate: 0 0.3rem;
}
.c-textLink span {
  font-weight: 700;
  text-decoration: underline;
}

.mapBtn {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
  width: fit-content;
  color: var(--font-color);
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .mapBtn:hover {
    opacity: 0.8;
  }
}
.mapBtn span {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  background: var(--font-color);
  border-radius: 50%;
}
.mapBtn span svg {
  fill: var(--base-color);
  width: 0.6rem;
  height: 0.6rem;
}

.buttonWrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 7rem 2rem 12rem;
}
.buttonWrap a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 3.6rem 3rem;
  background: var(--font-color);
  border-radius: 2rem;
  color: #ffffff;
  font-size: 1.6rem;
  position: relative;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .buttonWrap a {
    gap: 1rem;
    padding: 3.6rem 7rem 3.6rem 2rem;
  }
}
.buttonWrap a::before {
  content: "";
  display: block;
  width: 10rem;
  height: 11.4rem;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .buttonWrap a::before {
    width: 7rem;
    height: 7.9rem;
  }
}
.buttonWrap a:nth-of-type(1)::before {
  background: url(../images/bg_button_wrap_01.png) no-repeat center/contain;
}
.buttonWrap a:nth-of-type(1) .buttonWrap__icon {
  background: var(--color-pink);
}
.buttonWrap a:nth-of-type(2)::before {
  background: url(../images/bg_button_wrap_02.png) no-repeat center/contain;
}
.buttonWrap a:nth-of-type(2) .buttonWrap__icon {
  background: var(--color-blue);
}
.buttonWrap a:nth-of-type(3)::before {
  background: url(../images/bg_button_wrap_03.png) no-repeat center/contain;
}
.buttonWrap a:nth-of-type(3) .buttonWrap__icon {
  background: var(--color-green);
}
@media (hover: hover) {
  .buttonWrap a:hover .buttonWrap__icon {
    background: var(--base-color);
  }
  .buttonWrap a:hover .buttonWrap__icon svg {
    fill: var(--font-color);
  }
}
.buttonWrap__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-brown);
  border-radius: 50%;
  transition: background 0.3s;
}
.buttonWrap__icon svg {
  fill: var(--base-color);
  width: 1rem;
  height: 1rem;
  transform: translate(-1, 1);
  transition: fill 0.3s;
}
.buttonWrap__text {
  font-family: "hanazome";
  line-height: var(--lh-16);
}

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

電話する、Web予約

------------------------------------------------------------ */
.c-btnUnit {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.8rem;
}
.c-btnUnit a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: calc((100% - 1rem) / 2);
  height: 10.6rem;
  padding-top: 1rem;
  background: var(--font-color);
  border-radius: 2rem;
  color: var(--base-color);
  font-size: 1.7rem;
  position: relative;
}
@media (hover: hover) {
  .c-btnUnit a:hover::before {
    border: 0.8rem solid var(--color-brown);
  }
}
.c-btnUnit a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 0 solid var(--color-brown);
  border-radius: 2rem;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: border 0.3s;
}
.c-btnUnit a::after {
  content: "";
  display: block;
  width: 4.6rem;
  height: 7rem;
  position: absolute;
  bottom: 0;
  left: 1rem;
  z-index: 2;
}
.c-btnUnit a .sub {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.4rem;
  height: 3.5rem;
  border-radius: 1.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  position: absolute;
  top: -1.8rem;
  left: 50%;
  translate: -50% 0;
  z-index: 0;
}
.c-btnUnit a .sub::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}
.c-btnUnit a .main {
  font-family: "hanazome";
}
.c-btnUnit a .icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-brown);
  border-radius: 50%;
  position: absolute;
  top: calc(50% + 0.5rem);
  right: 2rem;
  translate: 0 -50%;
}
.c-btnUnit a .icon svg {
  fill: var(--base-color);
  width: 1rem;
  height: 1rem;
}
.c-btnUnit a.tel::after {
  background: url(../images/btn_01.png) no-repeat bottom/contain;
  transform: scale(-1, 1);
}
.c-btnUnit a.tel .sub {
  background: var(--color-green);
}
.c-btnUnit a.tel .sub::after {
  background: var(--color-green);
}
.c-btnUnit a.tel .pc {
  padding-left: 3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-btnUnit a.tel .pc {
    display: none;
  }
}
.c-btnUnit a.tel .sp,
.c-btnUnit a.tel .icon {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-btnUnit a.tel .sp,
  .c-btnUnit a.tel .icon {
    display: flex;
    font-family: "hanazome";
  }
}
.c-btnUnit a.reservation::after {
  background: url(../images/btn_02.png) no-repeat bottom/contain;
}
.c-btnUnit a.reservation .sub {
  background: var(--color-orange);
}
.c-btnUnit a.reservation .sub::after {
  background: var(--color-orange);
}

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

症例紹介 画像スライダー

------------------------------------------------------------ */
.c-caseBox {
  width: 100%;
}
.c-caseBox .imageSlider {
  margin-bottom: 2rem;
  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: #ffffff;
  color: var(--font-color);
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.c-caseBox .imageSlider__before img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  min-width: 100%;
  aspect-ratio: 310/216;
}
.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: #ffffff;
  color: var(--font-color);
  font-size: 1.6rem;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
}
.c-caseBox .imageSlider__after img {
  width: 100%;
  height: auto;
  aspect-ratio: 310/216;
}
.c-caseBox .imageSlider input {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: col-resize;
}
.c-caseBox details[open] summary::after {
  display: none;
}
.c-caseBox details summary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  padding: 0 2rem;
  background: #0097a7;
  color: #ffffff;
  font-weight: 400;
  line-height: 2.25;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.c-caseBox details summary::-webkit-details-marker {
  display: none;
}
.c-caseBox details summary::before {
  content: "";
  width: 0.7rem;
  height: 1px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  right: 2rem;
  translate: 0 -50%;
}
.c-caseBox details summary::after {
  content: "";
  width: 1px;
  height: 0.7rem;
  background: #ffffff;
  position: absolute;
  top: 50%;
  right: 2.35rem;
  translate: 0 -50%;
}
.c-caseBox details summary span {
  width: 1.5rem;
  height: 1rem;
  fill: #ffffff;
  position: absolute;
  right: 2.2rem;
  top: 50%;
  translate: 0 -50%;
  transform: rotate(-90deg);
  transition: translate 0.3s;
}
.c-caseBox details .content {
  padding-top: 3rem;
}
.c-caseBox details .content .c-table__table td {
  background: none;
}

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

院長紹介

------------------------------------------------------------ */
.c-doctor__image {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 25rem;
  margin-inline: auto;
}
.c-doctor__image:not(:has(+ .c-doctor__inner)) {
  margin-bottom: 4rem;
}
.c-doctor__image picture {
  padding: 2rem;
  border-radius: 3rem;
  background: var(--color-beige);
}
.c-doctor__image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
.c-doctor__image figcaption p {
  text-align: center;
}
.c-doctor__image figcaption p:nth-of-type(2) {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
  font-size: 1.9rem;
}
.c-doctor__image figcaption p:nth-of-type(2) span {
  color: var(--color-green);
  font-size: 1.5rem;
}
.c-doctor__inner {
  padding: 7.4rem 4rem 7rem;
  background: var(--color-beige);
  position: relative;
}
.c-doctor__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 6.3rem;
  background: url(../images/bg_home_05.png) no-repeat bottom/contain;
  position: absolute;
  top: -5rem;
  left: 0;
}
.c-doctor__inner::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2rem;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: var(--color-beige);
  position: absolute;
  top: -1.9rem;
  left: 50%;
  translate: -50% 0;
}
.c-doctor__desc {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 5rem;
}
.c-doctor__desc h3 {
  margin-bottom: 2rem;
  font-size: 2.3rem;
  font-family: "hanazome";
  line-height: var(--lh-14);
  text-align: center;
  position: relative;
}
.c-doctor__desc h3::before {
  content: "“";
  display: block;
  color: #ccb59a;
  font-size: 4.3rem;
  position: absolute;
  top: -4rem;
  left: 50%;
  translate: -20% 0;
}
.c-doctor__desc p {
  line-height: 2.6;
  text-align: justify;
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-color: #d8d1bd;
  text-decoration-thickness: 1px;
  text-underline-offset: 1rem;
}
.c-doctor__list {
  margin-bottom: 4rem;
}
.c-doctor__list:not(:last-of-type) {
  margin-bottom: 1rem;
}
.c-doctor__list h3 {
  padding: 2rem 3rem 1rem 3rem;
  border-bottom: 2px solid var(--color-beige);
  background: #f0eae4;
  border-radius: 2rem 2rem 0 0;
  color: var(--color-green);
  font-family: "hanazome";
}
.c-doctor__list ul {
  padding: 1rem 3rem 3rem 3rem;
  background: #f0eae4;
  border-radius: 0 0 2rem 2rem;
}
.c-doctor__list ul li {
  padding-left: 1.5rem;
  position: relative;
}
.c-doctor__list ul li::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--color-green);
  position: absolute;
  top: 1rem;
  left: 0;
}

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

Q＆A

------------------------------------------------------------ */
.c-faq {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-faq__item:nth-of-type(3n + 1) .question__title {
  color: var(--color-pink);
}
.c-faq__item:nth-of-type(3n + 2) .question__title {
  color: var(--color-blue);
}
.c-faq__item:nth-of-type(3n + 3) .question__title {
  color: var(--color-green);
}
.c-faq__item .question {
  margin-bottom: 2.5rem;
  text-align: center;
}
.c-faq__item .question__title {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-family: "Darumadrop One";
}
.c-faq__item .question__text {
  font-size: 1.6rem;
  font-family: "hanazome";
}
.c-faq__item .answer.is-open .answer__text {
  opacity: 1;
}
.c-faq__item .answer.is-open .answer__button {
  border-radius: 0 0 3rem 3rem;
}
.c-faq__item .answer.is-open .answer__button span {
  transform: rotate(45deg);
}
.c-faq__item .answer__text {
  overflow: hidden;
}
.c-faq__item .answer__text > div {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2.5rem;
  background: var(--color-beige);
  border-radius: 3rem 3rem 0 0;
}
.c-faq__item .answer__text > div p {
  text-align: center;
}
.c-faq__item .answer__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f0eae4;
  border-radius: 3rem;
  cursor: pointer;
  transition: border-radius 0.3s ease;
}
.c-faq__item .answer__button span {
  width: 1.2rem;
  height: 1.2rem;
  position: relative;
  transition: transform 0.3s;
}
.c-faq__item .answer__button span::before, .c-faq__item .answer__button span::after {
  content: "";
  display: block;
  border-radius: 2rem;
  background: var(--font-color);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.c-faq__item .answer__button span::before {
  width: 1.2rem;
  height: 0.2rem;
}
.c-faq__item .answer__button span::after {
  width: 0.2rem;
  height: 1.2rem;
}
.c-faq__item .answer__button p {
  font-size: 1.3rem;
  font-weight: 700;
}

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

流れパターン

------------------------------------------------------------ */
.c-flow {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.c-flow__item {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem;
  background: var(--color-beige);
  border-radius: 3rem;
  position: relative;
}
.c-flow__item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 13rem;
  height: 4rem;
  background: url(../images/icon_flow_01.png) no-repeat center/contain;
  position: absolute;
  bottom: -4rem;
  left: 50%;
  translate: -50% 0;
}
.c-flow__item:nth-of-type(3n + 1) .c-flow__title p {
  background: var(--color-pink);
}
.c-flow__item:nth-of-type(3n + 1) .c-flow__title h3,
.c-flow__item:nth-of-type(3n + 1) .c-flow__title h4 {
  color: var(--color-pink);
}
.c-flow__item:nth-of-type(3n + 2) .c-flow__title p {
  background: var(--color-blue);
}
.c-flow__item:nth-of-type(3n + 2) .c-flow__title h3,
.c-flow__item:nth-of-type(3n + 2) .c-flow__title h4 {
  color: var(--color-blue);
}
.c-flow__item:nth-of-type(3n + 3) .c-flow__title p {
  background: var(--color-green);
}
.c-flow__item:nth-of-type(3n + 3) .c-flow__title h3,
.c-flow__item:nth-of-type(3n + 3) .c-flow__title h4 {
  color: var(--color-green);
}
.c-flow__title {
  display: flex;
  margin-bottom: -1.5rem;
  font-size: 1.6rem;
}
.c-flow__title p {
  flex: none;
  display: flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background: var(--color-pink);
  color: var(--base-color);
  font-weight: 700;
}
.c-flow__title h3,
.c-flow__title h4 {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 0.4rem 1rem;
  background: var(--base-color);
  color: var(--color-pink);
  font-weight: 700;
  line-height: var(--lh-14);
}
.c-flow__image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  border: 0.5rem solid var(--base-color);
}
.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: 1rem;
  padding-left: 1rem;
}
.c-listBox li {
  display: flex;
  gap: 0.6rem;
  font-weight: 700;
}
.c-listBox li::before {
  content: "";
  display: block;
  flex: none;
  width: 0.7rem;
  height: 1px;
  background: #c3c3c3;
  margin-top: 1.2rem;
}

.c-listNumber {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1rem;
  counter-reset: number 0;
}
.c-listNumber li {
  display: flex;
  gap: 0.6rem;
  font-weight: 700;
  counter-increment: number 1;
}
.c-listNumber li::before {
  flex: none;
  content: counter(number);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  color: var(--base-color);
  letter-spacing: 0;
}
.c-listNumber li:nth-child(-n+9)::before {
  content: "0" counter(number);
}
.c-listNumber li:nth-of-type(3n + 1)::before {
  background: var(--color-pink);
}
.c-listNumber li:nth-of-type(3n + 2)::before {
  background: var(--color-blue);
}
.c-listNumber li:nth-of-type(3n + 3)::before {
  background: var(--color-green);
}

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

TOP,footerの地図部分

------------------------------------------------------------ */
.c-map address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.c-map address svg {
  width: 1.1rem;
  height: 1.8rem;
  fill: var(--color-pink);
}
.c-map__inner {
  background: #f0eae4;
  border-radius: 3rem;
  padding: 0.8rem;
  margin-bottom: 0.5rem;
}
.c-map__inner iframe {
  width: 100%;
  aspect-ratio: 375/220;
  aspect-ratio: 2/1;
  border-radius: 3rem;
}
.c-map .mapBtn {
  margin-inline: auto 0;
}

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

newsのリスト

------------------------------------------------------------ */
.c-newsList {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-newsList__noarticle {
  font-weight: 700;
}
.c-newsList .item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--font-color);
  position: relative;
  transition: opacity 0.3s;
}
.c-newsList .item:not(:last-of-type) {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e8e8;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-newsList .item:not(:last-of-type) {
    gap: 0.5rem;
    padding-bottom: 1rem;
  }
}
@media (hover: hover) {
  .c-newsList .item:hover {
    opacity: 0.8;
  }
}
.c-newsList .item__unit {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.c-newsList .item__category {
  min-width: 6rem;
  padding: 0.4rem 1rem;
  background: var(--color-blue);
  border-radius: 1.2rem;
  color: var(--base-color);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: var(--lh-14);
  text-align: center;
}
.c-newsList .item time {
  color: #919191;
  font-size: 1.2rem;
}
.c-newsList .item__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.c-newsList .item__title p {
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-newsList .item__title span {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  background: var(--font-color);
  border-radius: 50%;
}
.c-newsList .item__title span svg {
  width: 0.6rem;
  height: 0.6rem;
  fill: var(--base-color);
}

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

目次

------------------------------------------------------------ */
.c-outline {
  padding: 0 2rem 10rem;
}
.c-outline h2 {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  color: #c4b19e;
  font-size: 2.5rem;
  font-family: "Darumadrop One";
}
.c-outline h2::before, .c-outline h2::after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 0.2rem;
  border-bottom: 0.2rem dashed #c4b19e;
}
.c-outline ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.c-outline ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 1rem 6rem;
  background: #f0eae4;
  border-radius: 2.5rem;
  color: var(--font-color);
  text-align: center;
  position: relative;
  transition: background 0.3s;
}
@media (hover: hover) {
  .c-outline ul li a:hover {
    background: var(--base-color);
  }
}
.c-outline ul li a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  background: var(--font-color);
  border-radius: 50%;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  translate: 0 -50%;
}
.c-outline ul li a span svg {
  fill: var(--base-color);
  width: 0.6rem;
  height: 0.6rem;
  transform: rotate(90deg);
}

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

ページタイトル

------------------------------------------------------------ */
.c-pageTitle {
  padding: 6.8rem 2rem 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pageTitle {
    padding: 10rem 2rem 2.4rem;
  }
}
.c-pageTitle__ja {
  width: fit-content;
  margin-inline: auto;
  padding: 1rem 2.5rem;
  background: var(--font-color);
  border-radius: 3.4rem;
  color: var(--base-color);
  font-size: 1.6rem;
  font-family: "hanazome";
  position: relative;
}
.c-pageTitle__ja::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: var(--font-color);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -1rem;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}
.c-pageTitle__en {
  width: 100%;
}
.c-pageTitle__en img {
  width: 100%;
  height: auto;
}

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

募集要項

------------------------------------------------------------ */
.c-requirement__button {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4rem;
}
.c-requirement__button .c-button {
  width: 100%;
  min-height: 5rem;
  padding: 0.5rem 1.5rem 0.5rem 2rem;
}
.c-requirement__button .c-button span svg {
  transform: rotate(90deg);
}
.c-requirement__button .c-button.active {
  background: var(--color-brown);
}
.c-requirement__button .c-button.active span {
  background: var(--font-color);
}
.c-requirement__item {
  display: none;
}
.c-requirement__item.active {
  display: block;
}
.c-requirement__item .h3-title {
  margin-bottom: 2rem;
}

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

splide

------------------------------------------------------------ */
.c-splide {
  margin-inline: -4rem;
  overflow: visible;
  position: relative;
}
.c-splide .splide__slide {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 32rem;
  height: 23rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-splide .splide__slide {
    width: 28rem;
  }
}
.c-splide .splide__slide img {
  display: block;
  width: 70%;
  height: auto;
  margin-inline: auto;
  border: 5px solid #f7f7f8;
  border-radius: 2.5rem;
  transition: width 0.3s;
}
.c-splide .splide__slide.is-active img {
  width: 100%;
}
.c-splide .splide__slide.is-next img {
  margin-inline: 1.5rem auto;
}
.c-splide .splide__slide.is-prev img {
  margin-inline: auto 1.5rem;
}
.c-splide .splide__track {
  margin-bottom: 1.8rem;
}
.c-splide .splide__unit {
  width: 22rem;
  padding: 1.5rem 0 2rem;
  margin-inline: auto;
  background: #f7f7f7;
  border-radius: 2rem;
  position: relative;
}
.c-splide .splide__pagination {
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.c-splide .splide__pagination__page {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #e2e2e2;
}
.c-splide .splide__pagination__page.is-active {
  background: var(--color-pink);
}
.c-splide .splide__arrows {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 1.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -60%;
}
.c-splide .splide__arrow {
  font-size: 3.8rem;
  font-family: "Darumadrop One";
  transition: filter 0.3s;
  cursor: pointer;
}
@media (hover: hover) {
  .c-splide .splide__arrow:hover {
    filter: brightness(1.2);
  }
}
.c-splide .splide__arrow--prev {
  color: var(--color-blue);
}
.c-splide .splide__arrow--next {
  color: var(--color-green);
}

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

テーブル

------------------------------------------------------------ */
.c-table {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.c-table__table {
  width: 100%;
  margin: -0.2rem 0;
  padding: 2rem;
  border-collapse: separate;
  border-spacing: 0 0.2rem;
  background: var(--color-beige);
  border-radius: 3rem;
}
.c-table__table th {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.8rem;
}
.c-table__table th p {
  width: fit-content;
  margin-inline: auto;
  padding: 0.4rem 2rem;
  border-radius: 10.4rem;
  color: var(--base-color);
  font-size: 1.2rem;
}
.c-table__table td {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 1.5rem;
  text-align: center;
}
.c-table__table:nth-of-type(3n + 1) th p {
  background: var(--color-pink);
}
.c-table__table:nth-of-type(3n + 2) th p {
  background: var(--color-blue);
}
.c-table__table:nth-of-type(3n + 3) th p {
  background: var(--color-green);
}

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

小児歯科専門
土曜診療
駐車スペースあり

------------------------------------------------------------ */
.c-tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.c-tags ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.c-tags ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 3rem) / 2);
  height: 4.6rem;
  padding-left: 1rem;
  border-radius: 2.3rem;
  position: relative;
}
.c-tags ul li svg {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 1.3rem;
  translate: 0 -50%;
}
.c-tags ul li span {
  color: var(--base-color);
  font-family: "hanazome";
}
.c-tags ul li.pink {
  background: var(--color-pink);
}
.c-tags ul li.pink svg {
  fill: var(--color-pink);
}
.c-tags ul li.green {
  background: var(--color-green);
}
.c-tags ul li.green svg {
  fill: var(--color-green);
}
.c-tags ul li.blue {
  padding-left: 3rem;
  background: var(--color-blue);
}
.c-tags ul li.blue svg {
  fill: var(--color-blue);
}

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

下層のパーツ

------------------------------------------------------------ */
.c-unit {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.c-unit__item {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.c-unit__item:has(.h2-title) .c-unit__image {
  margin-inline: -2rem;
}
.c-unit__item:has(.h2-title) .c-unit__desc {
  padding: 0 2rem;
}
.c-unit__item:has(.h3-title) .c-unit__image img {
  border-radius: 1.5rem;
}
.c-unit__item:has(.h3-title) .c-unit__desc {
  padding: 0 2rem;
}
.c-unit__item:has(.h4-title) {
  padding: 3rem;
  background: var(--color-beige);
  border-radius: 3rem;
}
.c-unit__item:has(.h4-title) .c-unit__image img {
  border-radius: 2rem;
  border: 0.5rem solid var(--base-color);
}
.c-unit__item:has(.h4-title) .h4-title {
  margin-bottom: -1.5rem;
}
.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__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 390/260;
}
.c-unit__movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 390/260;
}

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

見出し

------------------------------------------------------------ */
.heading01 {
  padding-bottom: 4rem;
  position: relative;
}
.heading01 picture img {
  width: 100%;
  height: auto;
}
.heading01 h2 {
  padding: 1rem 2.5rem;
  background: #fcf7f5;
  border-radius: 3.4rem;
  color: var(--color-pink);
  font-size: 1.6rem;
  font-family: "hanazome";
  position: absolute;
  bottom: 0;
  right: 0;
}
.heading01 h2::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1.6rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #fcf7f5;
  position: absolute;
  bottom: -0.8rem;
  right: 4rem;
  z-index: -1;
}
.heading01.white h2 {
  background: var(--base-color);
}
.heading01.white h2::after {
  background: var(--base-color);
}

.heading02 {
  position: relative;
}
.heading02 p {
  width: 100%;
  color: var(--base-color);
  font-family: "hanazome";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  text-align: center;
}
.heading02 picture {
  width: 29.7rem;
  margin-inline: auto;
}
.heading02 picture img {
  width: 100%;
  height: auto;
}

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

.h2-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding: 0 2rem;
  color: var(--color-blue);
}
.h2-title h2 {
  width: 100%;
  padding-bottom: 1.4rem;
  border-bottom: 2px dashed #d8d1bd;
  font-size: 2.3rem;
  font-family: "hanazome";
  text-align: center;
}
.h2-title p {
  padding: 0.5rem 1.5rem;
  border-radius: 1.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  background: #f5fafc;
}

.h3-title {
  padding: 1.4rem 2rem;
  background: var(--color-green);
  border-radius: 2.8rem;
  color: var(--base-color);
  font-size: 1.7rem;
  font-family: "hanazome";
  text-align: center;
  position: relative;
}
.h3-title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4.5rem;
  background: url(../images/icon_h3title_01.png) no-repeat center/contain;
  position: absolute;
  top: -2rem;
  right: 0;
}

.h4-title {
  width: fit-content;
  padding: 0.4rem 0.5rem;
  background: var(--base-color);
  color: var(--color-pink);
  font-size: 1.6rem;
  font-weight: 700;
}

.h5-title {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.6rem;
}
.h5-title::before {
  content: "";
  flex: none;
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--font-color);
  margin-top: 1.2rem;
}

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

診療時間

------------------------------------------------------------ */
.scheduleTable {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #818181;
  font-size: 1.2rem;
}
.scheduleTable__week {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.scheduleTable__week p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 0.9rem;
  background: #f0eae4;
}
.scheduleTable__day {
  display: flex;
  gap: 0.5rem;
  background: var(--base-color);
  border-radius: 0.9rem;
}
.scheduleTable__day p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
}
.scheduleTable__day p:nth-of-type(1) {
  flex: 1;
  justify-content: unset;
  padding-left: 1.7rem;
  letter-spacing: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .scheduleTable__day p:nth-of-type(1) {
    padding-left: 0.8rem;
    white-space: nowrap;
  }
}
.scheduleTable__day p img {
  width: 1.4rem;
  height: auto;
}
.scheduleTable__text {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.4rem;
}
.scheduleTable__text img {
  width: 1.4rem;
  height: auto;
}

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

section関連の記述

------------------------------------------------------------ */
section,
.divSection {
  padding: 7rem 2rem 0;
  overflow-x: clip;
  position: relative;
  z-index: 0;
}
section.sectionBtm,
.divSection.sectionBtm {
  padding-bottom: 12rem;
}
.page-top section,
.page-top .divSection {
  padding: 0;
}

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

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

spHeader

------------------------------------------------------------ */
.spHeader {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .spHeader {
    display: flex;
    align-items: center;
    width: calc(100% - 2rem);
    height: 7rem;
    height: 6.4rem;
    padding: 0 2.8rem;
    background: var(--base-color);
    border-radius: 3.5rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
    position: fixed;
    top: 6rem;
    left: 1rem;
    z-index: 4;
    transition: all 0.3s ease;
  }
  .spHeader:has(+ .menuButton.active) {
    border-radius: 3.5rem 3.5rem 0 0;
  }
  .spHeader a {
    display: block;
    width: 22rem;
  }
  .spHeader a img {
    width: 100%;
    height: auto;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .spHeader.is-scroll {
    top: 1rem;
  }
}

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

footer

------------------------------------------------------------ */
.footer {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 14rem 2rem 11rem;
  background: var(--color-beige);
  position: relative;
}
.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 5.7rem;
  background: url(../images/bg_footer_01.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
.footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 17rem;
  background: url(../images/bg_footer_02.png) no-repeat bottom/cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer__image picture:nth-of-type(1) {
  width: 14.8rem;
  position: absolute;
  top: -5.3rem;
  left: 50%;
  translate: -50% 0;
}
.footer__image picture:nth-of-type(2) {
  width: 100%;
  position: absolute;
  top: 1rem;
  left: 0;
}
.footer__image picture img {
  width: 100%;
  height: auto;
}
.footer__logo {
  display: block;
  width: 26rem;
  margin-inline: auto;
}
.footer__logo img {
  width: 100%;
  height: auto;
}
.footer__textBox {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 2rem;
}
.footer__textBox p {
  font-size: 1.3rem;
  text-align: justify;
}
.footer__links {
  margin-bottom: 5.5rem;
}
.footer__links a {
  display: block;
  width: 24rem;
  margin-inline: auto;
  transition: filter 0.3s;
}
@media (hover: hover) {
  .footer__links a:hover {
    filter: brightness(1.2);
  }
}
.footer__links a img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.footer__copy {
  font-size: 1.2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

サイドバー

------------------------------------------------------------ */
.menuButton {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  width: 8.7rem;
  height: 25.5319148936vh;
  background: var(--font-color);
  border-radius: 2rem 0 0 2rem;
  color: var(--base-color);
  position: fixed;
  top: 2.5rem;
  right: 0;
  z-index: 5;
  cursor: pointer;
  transition: all 0.3s;
}
@media (hover: hover) {
  .menuButton:hover {
    background: var(--color-brown);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton {
    gap: 0.2rem;
    width: 6.4rem;
    height: 4.4rem;
    border-radius: 2.2rem;
    top: 7rem;
    right: 2.3rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton.is-scroll {
    top: 2rem;
  }
}
.menuButton .border {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .border {
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--base-color);
    transition: transform 0.3s;
  }
}
.menuButton .arrow {
  margin-top: -2rem;
  font-size: 6rem;
  font-family: "Darumadrop One";
  line-height: 1;
  transition: transform 0.5s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .arrow {
    display: none;
  }
}
.menuButton .text {
  width: 1.1rem;
}
.menuButton .text img {
  width: 100%;
  height: auto;
}
.menuButton .text img.close {
  display: none;
}
.menuButton .text img.open {
  display: block;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .text {
    display: none;
  }
}
.menuButton.active {
  background: var(--base-color);
  color: var(--font-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton.active {
    background: var(--font-color);
    color: var(--base-color);
  }
}
.menuButton.active .border:nth-child(1) {
  transform: rotate(20deg) translateY(0.2rem);
}
.menuButton.active .border:nth-child(2) {
  transform: rotate(-20deg) translateY(-0.2rem);
}
.menuButton.active .arrow {
  transform: rotate(180deg) translateY(-30%);
}
.menuButton.active .text img.close {
  display: block;
}
.menuButton.active .text img.open {
  display: none;
}

.mvFixedBtn {
  height: 52.1276595745%;
  position: fixed;
  top: 29.2553191489vh;
  right: 0;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn {
    display: flex;
    justify-content: center;
    width: calc(100% - 2rem);
    height: 6rem;
    inset: auto 1rem 0 1rem;
    z-index: 5;
  }
}
.mvFixedBtn__btn {
  display: block;
  height: calc((100% - 1rem) / 2);
  color: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn {
    width: calc((100% - 1rem) / 2);
    height: 100%;
  }
}
.mvFixedBtn__btn .inner {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 8.7rem;
  height: 100%;
  background: var(--font-color);
  padding: 3rem 0 0 1rem;
  border-radius: 2rem 0 0 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-height: 700px) {
  .mvFixedBtn__btn .inner {
    padding-top: 12.5%;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn .inner {
    justify-content: unset;
    align-items: center;
    width: 100%;
    padding: 1rem 0 0 8rem;
    border-radius: 2rem 2rem 0 0;
  }
}
.mvFixedBtn__btn .inner::before {
  content: "";
  display: block;
  width: 1rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn .inner::before {
    width: 100%;
    height: 1rem;
  }
}
.mvFixedBtn__btn .inner::after {
  content: "";
  display: block;
  width: 4.6rem;
  height: 7rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -40% 0;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn .inner::after {
    width: 3.7rem;
    height: 5.6rem;
    bottom: -0.8rem;
    left: 2.4rem;
    translate: unset;
  }
}
.mvFixedBtn__btn .inner img {
  width: 2.2rem;
  height: 10.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn .inner img {
    display: none;
  }
}
.mvFixedBtn__btn .inner .text {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn .inner .text {
    display: inline;
    font-size: 1.6rem;
    font-family: "hanazome";
  }
}
.mvFixedBtn__btn.tel {
  margin-bottom: 1rem;
  position: relative;
  z-index: 0;
}
@media (hover: hover) {
  .mvFixedBtn__btn.tel:hover .large {
    translate: 0 0;
  }
}
.mvFixedBtn__btn.tel .inner::before {
  background: var(--color-green);
}
.mvFixedBtn__btn.tel .inner::after {
  background: url(../images/btn_01.png) no-repeat bottom/contain;
}
.mvFixedBtn__btn.tel .large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 32rem;
  height: 100%;
  background: var(--font-color);
  border-radius: 2rem 0 0 2rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  translate: 100% 0;
  transition: translate 0.3s;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.tel .large {
    display: none;
  }
}
.mvFixedBtn__btn.tel .large::before {
  content: "";
  display: block;
  width: 1rem;
  height: 100%;
  background: var(--color-green);
  position: absolute;
  top: 0;
  left: 0;
}
.mvFixedBtn__btn.tel .large span {
  font-family: "hanazome";
  writing-mode: horizontal-tb;
}
.mvFixedBtn__btn.tel .large span:nth-of-type(1) {
  font-size: 1.8rem;
}
.mvFixedBtn__btn.tel .large span:nth-of-type(2) {
  font-size: 3rem;
}
.mvFixedBtn__btn.reservation {
  margin-left: auto;
}
@media (hover: hover) {
  .mvFixedBtn__btn.reservation:hover .inner::before {
    width: 100%;
  }
}
.mvFixedBtn__btn.reservation .inner::before {
  background: var(--color-orange);
  transition: width 0.3s;
}
.mvFixedBtn__btn.reservation .inner::after {
  background: url(../images/btn_02.png) no-repeat bottom/contain;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.reservation .inner::after {
    width: 3.5rem;
    height: 5.3rem;
  }
}
.mvFixedBtn__btn.reservation .inner span {
  z-index: 1;
}

.pageTop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  background: var(--color-brown);
  border-radius: 2rem 0 0 0;
  cursor: pointer;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pageTop {
    width: 6.2rem;
    border-radius: 2rem 0 0 2rem;
    height: 6.8rem;
    z-index: 5;
  }
}
.pageTop span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #5a4637;
}
.pageTop span svg {
  fill: var(--base-color);
  width: 1rem;
  height: 1rem;
  transform: rotate(-90deg);
}

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

pc-content

------------------------------------------------------------ */
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wrapper {
    display: flex;
    flex-direction: column;
  }
}

.pc-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  background: #f0eae4;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content {
    height: unset;
    padding-top: 1rem;
    background: none;
    position: unset;
  }
  .home .pc-content {
    flex-direction: column;
    padding: 0 0 2rem;
    background: #f0eae4;
  }
  .home .pc-content__left {
    flex-direction: column;
    gap: 1rem;
  }
  .home .pc-content .pc-content__title {
    position: absolute;
    top: 1rem;
    left: 0;
  }
  .home .pc-content .pc-content__title h1 {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
  }
  .home .pc-content__image {
    display: block;
    width: 100%;
  }
  .home .pc-content__image img {
    border-radius: 0;
  }
  .home .pc-content__lead {
    bottom: 10rem;
    left: 0;
  }
  .home .pc-content__lead p {
    padding: 0.8rem 2rem;
    border-radius: 0 3rem 3rem 0;
    font-size: 2.2rem;
  }
  .home .pc-content__lead p span {
    font-size: 2.7rem;
  }
  .home .pc-content__right {
    display: contents;
  }
  .home .pc-content__inner {
    display: contents;
  }
  .home .pc-content .mvFixedNews {
    width: calc(100% - 4rem);
    margin: -5rem auto 0;
    padding: 2rem 2.5rem;
    position: relative;
    z-index: 1;
  }
  .home .pc-content .mvFixedNews__title {
    margin-bottom: 1.5rem;
  }
  .home .pc-content__slide {
    display: flex;
  }
}
.pc-content::before {
  content: "";
  display: block;
  width: 100%;
  height: 33.4042553191vh;
  background: url(../images/bg_mv_01.png) no-repeat center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content::before {
    display: none;
  }
}
.pc-content__left, .pc-content__right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 43rem) / 2);
  padding-top: 6.3829787234vh;
}
.pc-content__left {
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__left {
    justify-content: unset;
    width: 100%;
    padding: 0;
  }
}
.pc-content__title {
  position: absolute;
  top: 3rem;
  left: 4rem;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__title {
    width: 100%;
    padding: 0 2rem;
    position: unset;
  }
}
.pc-content__title h1 {
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
  line-height: var(--lh-14);
}
.pc-content__title a {
  display: block;
  width: 40.3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__title a {
    display: none;
  }
}
.pc-content__title a img {
  width: 100%;
  height: auto;
}
.pc-content__image {
  width: 73.7550471063%;
  margin-inline: auto;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__image {
    display: none;
  }
}
.pc-content__image img {
  width: 100%;
  height: auto;
  border-radius: 3rem;
}
.pc-content__lead {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: absolute;
  bottom: 7rem;
  left: -3rem;
}
.pc-content__lead p {
  width: fit-content;
  padding: 1.6rem 3rem;
  background: var(--base-color);
  border-radius: 3.8rem;
  font-size: 2.9rem;
  font-family: "hanazome";
  line-height: var(--lh-14);
}
.pc-content__lead p span {
  color: #82c8dd;
  font-size: 3.5rem;
  font-family: "hanazome";
  line-height: var(--lh-14);
}
.pc-content__right {
  padding-right: 8.7rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__right {
    display: none;
  }
}
.pc-content__inner {
  width: 72.7272727273%;
}
.pc-content__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.5rem 0;
  margin-bottom: 3.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__list {
    display: none;
  }
}
.pc-content__list picture {
  width: calc((100% - 2.5rem) / 2);
}
.pc-content__list picture img {
  width: 100%;
  height: auto;
  border-radius: 3rem;
}
.pc-content .mvFixedNews {
  padding: 2rem 4rem 4rem;
  background: var(--base-color);
  border-radius: 3rem;
}
.pc-content .mvFixedNews__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.pc-content .mvFixedNews__title h2 {
  letter-spacing: -0.1em;
  line-height: var(--lh-14);
}
.pc-content .mvFixedNews__title h2 span {
  font-size: 3.5rem;
  font-family: "Darumadrop One";
}
.pc-content .mvFixedNews__title h2 span:nth-of-type(1), .pc-content .mvFixedNews__title h2 span:nth-of-type(4) {
  color: var(--color-pink);
}
.pc-content .mvFixedNews__title h2 span:nth-of-type(2) {
  color: var(--color-blue);
}
.pc-content .mvFixedNews__title h2 span:nth-of-type(3) {
  color: var(--color-green);
}
.pc-content .mvFixedNews__title a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 3.5rem;
  background: var(--color-pink);
  border-radius: 1.8rem;
  color: var(--base-color);
  font-size: 1.2rem;
  transition: background 0.3s;
}
@media (hover: hover) {
  .pc-content .mvFixedNews__title a:hover {
    background: var(--font-color);
  }
}
.pc-content__slide {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__slide {
    width: 100%;
    margin-top: 2rem;
    overflow: hidden;
  }
}
.pc-content__slide picture {
  width: 74rem;
  flex: none;
  animation: pcContentSlide 12s linear infinite;
}
.pc-content__slide picture img {
  width: 100%;
  height: auto;
}
@keyframes pcContentSlide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

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

メインコンテンツ

------------------------------------------------------------ */
.allContent {
  width: 43rem;
  margin: 5rem auto 0;
  background: var(--color-beige);
  border-radius: 4rem 4rem 0 0;
  box-shadow: 0 0 3rem rgba(132, 86, 58, 0.16);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .allContent {
    display: contents;
  }
}
.home .allContent {
  background: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .allContent {
    display: block;
    width: 100%;
    margin: 0;
  }
}
.allContent__inner {
  margin-top: 4rem;
  background: var(--base-color);
  position: relative;
}
.allContent__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 8rem;
  background: url(../images/bg_sub_01.png) no-repeat bottom/contain;
  position: absolute;
  top: -8rem;
}

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

ドロワーメニュー

------------------------------------------------------------ */
.drawerMenu {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: 3;
  transition: all 0.4s ease;
  translate: 100% 0;
  visibility: hidden;
  opacity: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu {
    justify-content: center;
    height: unset;
    padding: 11rem 0 7.3rem;
    translate: 0 -100%;
  }
}
.drawerMenu.active {
  translate: 0 0;
  visibility: visible;
  opacity: 1;
}
.drawerMenu.active .drawerMenu__bg {
  opacity: 1;
  visibility: visible;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu.is-scroll {
    padding: 7.3rem 0;
  }
}
.drawerMenu__inner {
  display: flex;
  align-items: center;
  width: 52rem;
  height: 100%;
  padding: 0 7rem;
  background: var(--font-color);
  color: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__inner {
    display: block;
    width: calc(100% - 2rem);
    height: unset;
    padding: 3rem 3rem 6rem 3rem;
    border-radius: 0 0 3.8rem 3.8rem;
    overflow-y: scroll;
    scrollbar-width: none;
  }
}
.drawerMenu__inner nav {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 26rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__inner nav {
    width: 100%;
  }
}
.drawerMenu__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.drawerMenu__list p {
  font-size: 1.7rem;
  font-family: "hanazome";
}
.drawerMenu__list ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.drawerMenu__list .c-button {
  background: #6b594b;
  min-height: 4.5rem;
  padding: 1rem 1.5rem 1rem 2.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
}
@media (hover: hover) {
  .drawerMenu__list .c-button:hover {
    background: var(--color-brown);
  }
}
.drawerMenu__list .c-button span {
  width: 2rem;
  height: 2rem;
}
.drawerMenu__list .c-button span svg {
  fill: var(--base-color);
  width: 0.8rem;
  height: 0.8rem;
}
.drawerMenu__bg {
  flex: 1;
  cursor: pointer;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__bg {
    background: #a3a19e;
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
}

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

トップページ

------------------------------------------------------------ */
.page-top .about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 6rem;
  position: relative;
}
.page-top .about__logo {
  display: block;
  width: 28rem;
  margin-inline: auto;
}
.page-top .about__logo img {
  width: 100%;
  height: auto;
}
.page-top .about__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 10rem;
  padding: 1.8rem 2rem 9rem;
  background: var(--color-beige);
  position: relative;
}
.page-top .about__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 10rem;
  background: url(../images/bg_home_01.png) no-repeat bottom/cover;
  position: absolute;
  top: -9.9rem;
  left: 0;
}
.page-top .about__calender {
  border-radius: 1rem;
  border: 1rem solid #f0eae4;
}
.page-top .about__calender iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 390/500;
}
.page-top .instagram {
  padding: 0 5rem 3rem;
}
.page-top .instagram__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  width: 12.3rem;
  height: 12.3rem;
  margin-top: -5.4rem;
  margin: -5.4rem auto 0;
  background: var(--base-color);
  border-radius: 50%;
}
.page-top .instagram__title picture {
  width: 4.3rem;
}
.page-top .instagram__title picture img {
  width: 100%;
  height: auto;
}
.page-top .instagram__title h2 {
  font-size: 1.12rem;
  font-family: "hanazome";
}
.page-top .features {
  margin-top: 11.6rem;
  padding: 3rem 2rem 5rem;
  background: var(--color-beige);
  position: relative;
}
.page-top .features::before {
  content: "";
  display: block;
  width: 100%;
  height: 11.6rem;
  background: url(../images/bg_home_02.png) no-repeat bottom/cover;
  position: absolute;
  top: -11.6rem;
  left: 0;
}
.page-top .features .heading01 {
  margin-bottom: 3rem;
}
.page-top .features .heading01 picture {
  width: 30rem;
}
.page-top .features__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0 2rem;
  margin-bottom: 5rem;
}
.page-top .features__desc p {
  text-align: justify;
}
.page-top .features__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 5rem;
}
.page-top .features__item {
  padding-bottom: 2rem;
  margin-inline: -2rem 0;
  position: relative;
}
.page-top .features__item picture {
  width: 35rem;
}
.page-top .features__item picture img {
  width: 100%;
  height: auto;
}
.page-top .features__item .speech {
  width: fit-content;
  padding: 1.5rem 2.5rem;
  background: var(--color-pink);
  border-radius: 3.4rem;
  color: var(--base-color);
  font-family: "hanazome";
  line-height: var(--lh-14);
  text-align: end;
  position: absolute;
  top: 3rem;
  right: 0;
}
.page-top .features__item .speech::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1.6rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: var(--color-pink);
  transform: rotate(30deg);
  position: absolute;
  bottom: -1rem;
  left: 2rem;
}
.page-top .features__item .unit {
  position: absolute;
  bottom: 0;
  right: 0;
}
.page-top .features__item .unit p {
  color: var(--color-pink);
}
.page-top .features__item .unit__num {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
}
.page-top .features__item .unit__num span {
  font-family: "Darumadrop One";
  line-height: var(--lh-16);
  letter-spacing: 0;
}
.page-top .features__item .unit__num span:nth-of-type(1) {
  font-size: 5.5rem;
}
.page-top .features__item .unit__num span:nth-of-type(2) {
  font-size: 6rem;
}
.page-top .features__item .unit__text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}
.page-top .features__item .unit__text span {
  display: inline-block;
  width: fit-content;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed #d8d1bd;
  font-size: 2rem;
  font-family: "hanazome";
  line-height: var(--lh-14);
}
.page-top .features__item.blue .speech {
  background: var(--color-blue);
}
.page-top .features__item.blue .speech::after {
  background: var(--color-blue);
}
.page-top .features__item.blue .unit p {
  color: var(--color-blue);
}
.page-top .features__item.green .speech {
  background: var(--color-green);
}
.page-top .features__item.green .speech::after {
  background: var(--color-green);
}
.page-top .features__item.green .unit p {
  color: var(--color-green);
}
.page-top .features__item.orange .speech {
  background: var(--color-orange);
}
.page-top .features__item.orange .speech::after {
  background: var(--color-orange);
}
.page-top .features__item.orange .unit p {
  color: var(--color-orange);
}
.page-top .features__item:nth-of-type(even) {
  margin-inline: 0 -2rem;
}
.page-top .features__item:nth-of-type(even) picture {
  margin-inline: auto 0;
}
.page-top .features__item:nth-of-type(even) .speech {
  text-align: start;
  right: unset;
  left: 0;
}
.page-top .features__item:nth-of-type(even) .speech::after {
  transform: rotate(-30deg);
  left: unset;
  right: 2rem;
}
.page-top .features__item:nth-of-type(even) .unit {
  right: unset;
  left: 0;
}
.page-top .features__item:nth-of-type(even) .unit__num {
  justify-content: flex-start;
}
.page-top .features__item:nth-of-type(even) .unit__text {
  align-items: flex-start;
}
.page-top .concept {
  padding: 16rem 4rem 28rem;
  background: #83cce6;
  color: var(--base-color);
  position: relative;
}
.page-top .concept::before {
  content: "";
  display: block;
  width: 100%;
  height: 5.7rem;
  background: url(../images/bg_home_03.png) no-repeat top/cover;
  position: absolute;
  top: -0.1rem;
  left: 0;
}
.page-top .concept::after {
  content: "";
  display: block;
  width: 100%;
  height: 21.5rem;
  background: url(../images/bg_home_04.jpg) no-repeat bottom/cover;
  position: absolute;
  bottom: -0.1rem;
  left: 0;
}
.page-top .concept__image {
  width: 10.2rem;
  margin: 0 auto 2rem;
}
.page-top .concept__image img {
  width: 100%;
  height: auto;
}
.page-top .concept__desc {
  margin-bottom: 4rem;
}
.page-top .concept__desc h3 {
  margin-bottom: 3rem;
  font-size: 2.1rem;
  font-family: "hanazome";
  line-height: var(--lh-16);
  text-align: center;
}
.page-top .doctor {
  padding: 0;
}
.page-top .doctor__title {
  color: var(--color-green);
  font-size: 4rem;
  font-family: "Darumadrop One";
  text-align: center;
}
.page-top .doctor .c-doctor__image {
  margin-bottom: 5rem;
}
.page-top .first__lead {
  width: 100%;
  height: 25.7rem;
  overflow: hidden;
  position: relative;
  z-index: -1;
}
.page-top .first__lead picture {
  width: 100%;
  height: 100%;
}
.page-top .first__lead picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-top .first__text {
  padding: 0 2rem 24rem;
  position: relative;
}
.page-top .first__text::before {
  content: "";
  display: block;
  width: 100%;
  height: 5.7rem;
  background: url(../images/bg_home_06.png) no-repeat bottom/cover;
  position: absolute;
  top: -5.6rem;
  left: 0;
}
.page-top .first__text .heading01 {
  margin-bottom: 3rem;
}
.page-top .first__text .heading01 picture {
  width: 21rem;
}
.page-top .first__desc {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 0 2rem;
}
.page-top .first__desc p {
  text-align: justify;
}
.page-top .first__inner {
  padding: 16rem 2rem 5rem;
  margin-bottom: 10rem;
  background: #b1d97c;
  position: relative;
}
.page-top .first__inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 11.6rem;
  background: url(../images/bg_home_07.png) no-repeat top/cover;
  position: absolute;
  bottom: -10rem;
  left: 0;
}
.page-top .first__image {
  width: 100%;
  text-align: end;
  position: absolute;
  top: -15rem;
  right: 0;
}
.page-top .first__image img {
  width: 37rem;
  height: auto;
  border-radius: 3rem 0 0 3rem;
}
.page-top .first__image::before {
  content: "";
  display: block;
  width: 11.9rem;
  height: 11.6rem;
  background: url(../images/icon_home_01.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
.page-top .first__list h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  height: 5rem;
  margin: 0 auto 2.5rem;
  background: var(--color-green);
  border-radius: 2.5rem;
  color: var(--base-color);
  font-size: 1.9rem;
  font-family: "hanazome";
}
.page-top .first__list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3.4rem;
}
.page-top .first__list ul li {
  width: calc((100% - 2rem) / 2);
}
.page-top .first__list ul li img {
  width: 100%;
  height: auto;
}
.page-top .health {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0 2rem 10rem;
}
.page-top .health .heading01 picture {
  width: 24.6rem;
  margin-inline: auto 0;
}
.page-top .health .heading01 h2 {
  right: unset;
  left: 0;
}
.page-top .health__desc {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.page-top .health__desc.space {
  padding: 0 2rem;
}
.page-top .health__desc p {
  text-align: justify;
}
.page-top .health__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
  padding: 0 3rem 4.2rem;
  background: var(--color-beige);
  border-radius: 3rem;
}
.page-top .health__item.blue .health__image h3 span:nth-of-type(1) {
  background: var(--color-blue);
}
.page-top .health__item.blue .health__image h3 span:nth-of-type(2) {
  color: var(--color-blue);
}
.page-top .health__item.pink .health__image picture {
  margin-right: 0;
  margin-left: -5rem;
}
.page-top .health__item.pink .health__image h3 {
  align-items: end;
  left: unset;
  right: 0;
}
.page-top .health__item.pink .health__image h3 span:nth-of-type(1) {
  background: var(--color-pink);
}
.page-top .health__item.pink .health__image h3 span:nth-of-type(2) {
  color: var(--color-pink);
}
.page-top .health__item.green .health__image h3 span:nth-of-type(1) {
  background: var(--color-green);
}
.page-top .health__item.green .health__image h3 span:nth-of-type(2) {
  color: var(--color-green);
}
.page-top .health__image {
  position: relative;
}
.page-top .health__image picture {
  margin-top: -3rem;
  margin-right: -5rem;
}
.page-top .health__image picture img {
  width: 100%;
  height: auto;
}
.page-top .health__image h3 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.page-top .health__image h3 span {
  display: block;
  width: fit-content;
  padding: 0 0.6rem;
  font-family: "hanazome";
}
.page-top .health__image h3 span:nth-of-type(1) {
  color: var(--base-color);
  font-size: 1.7rem;
}
.page-top .health__image h3 span:nth-of-type(2) {
  background: var(--base-color);
  font-size: 2.5rem;
}
.page-top .health__symptoms p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-family: "hanazome";
}
.page-top .health__symptoms p::before, .page-top .health__symptoms p::after {
  content: "";
  width: 2px;
  height: 2rem;
  background: var(--font-color);
  transform: rotate(-30deg);
}
.page-top .health__symptoms p::after {
  transform: rotate(30deg);
}
.page-top .health__symptoms picture {
  width: 28rem;
}
.page-top .health__symptoms picture img {
  width: 100%;
  height: auto;
}
.page-top .health__improvement {
  margin-top: 2rem;
  position: relative;
}
.page-top .health__improvement::before {
  content: "";
  display: block;
  width: 18.6rem;
  height: 2.2rem;
  background: url(../images/bg_home_08.png) no-repeat center/contain;
  position: absolute;
  top: -0.5rem;
  left: 50%;
  translate: -50% 0;
}
.page-top .health__improvement img {
  width: 100%;
  height: auto;
  border-radius: 2.5rem 2.5rem 0 0;
}
.page-top .health__improvement > div {
  padding: 4rem 3rem 3rem;
  background: var(--base-color);
  border-radius: 0 0 2.5rem 2.5rem;
}
.page-top .health__improvement > div h4 {
  margin-bottom: 1.6rem;
  color: var(--color-pink);
  font-size: 1.7rem;
  font-family: "hanazome";
  text-align: center;
}
.page-top .recruit {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 5rem;
  padding: 0 4rem 9rem;
  background: #ff95b1;
  color: var(--base-color);
}
.page-top .recruit__image {
  margin: -8rem -4rem 0;
}
.page-top .recruit__image img {
  width: 100%;
  height: auto;
}
.page-top .recruit__lead {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  font-size: 2rem;
  font-family: "hanazome";
  line-height: var(--lh-14);
}
.page-top .recruit__lead::before, .page-top .recruit__lead::after {
  content: "";
  width: 1px;
  height: 5rem;
  background: var(--base-color);
  transform: rotate(-30deg);
}
.page-top .recruit__lead::after {
  transform: rotate(30deg);
}
.page-top .clinic {
  position: relative;
}
.page-top .clinic::before {
  content: "";
  display: block;
  width: 12.1rem;
  height: 9.1rem;
  background: url(../images/icon_home_02.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
.page-top .clinic__image {
  height: 46rem;
  overflow: hidden;
  position: relative;
  z-index: -1;
}
.page-top .clinic__image picture {
  width: 100%;
  height: 100%;
}
.page-top .clinic__image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-top .clinic .heading02 {
  position: absolute;
  top: 9rem;
  left: 50%;
  translate: -50% 0;
}
.page-top .clinic .heading02 p {
  position: unset;
  translate: unset;
}
.page-top .clinic .heading02 picture {
  width: 22.2rem;
}
.page-top .clinic__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 2rem 4rem 10rem;
  position: relative;
}
.page-top .clinic__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 21.9rem;
  background: url(../images/bg_home_09.png) no-repeat bottom/cover;
  position: absolute;
  top: -22rem;
  left: 0;
}
.page-top .clinic__inner::after {
  content: "";
  display: block;
  width: 12.1rem;
  height: 9.1rem;
  background: url(../images/icon_home_02.png) no-repeat center/contain;
  transform: scale(-1, 1);
  position: absolute;
  top: -3rem;
  right: -1rem;
}
.page-top .clinic__lead {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}
.page-top .clinic__lead picture {
  width: 25.4rem;
}
.page-top .clinic__lead picture img {
  width: 100%;
  height: auto;
}
.page-top .clinic__lead h3 {
  color: var(--color-pink);
  font-size: 2rem;
  font-family: "hanazome";
  line-height: var(--lh-14);
  text-align: center;
}

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

記事一覧

------------------------------------------------------------ */
.archive {
  padding-bottom: 12rem;
}
.archive__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.archive__links .c-button {
  width: calc((100% - 1.6rem) / 2);
  min-height: 6rem;
  font-size: 1.6rem;
}
.archive__inner {
  padding-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.articleUnit img {
  width: 100%;
  height: auto;
  aspect-ratio: 345/222;
}
.articleUnit .c-caseBox .imageSlider {
  margin-bottom: 0;
}
.articleUnit a {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2.4rem 0;
  border-bottom: 2px solid #e8e8e8;
  color: var(--font-color);
  transition: opacity 0.3s;
  position: relative;
  z-index: 0;
}
@media (hover: hover) {
  .articleUnit a:hover {
    opacity: 0.8;
  }
}
.articleUnit__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 320/210;
}
.articleUnit__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 1.6rem;
  line-height: var(--lh-16);
}
.articleUnit__title span {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  background: var(--font-color);
  border-radius: 50%;
}
.articleUnit__title span svg {
  width: 0.6rem;
  height: 0.6rem;
  fill: var(--base-color);
}
.articleUnit__unit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.articleUnit__unit time {
  color: #919191;
}
.articleUnit__category {
  min-width: 6rem;
  padding: 0.4rem 1rem;
  background: var(--color-blue);
  border-radius: 1.2rem;
  color: var(--base-color);
  font-weight: 700;
  line-height: var(--lh-14);
  text-align: center;
}

.PageNavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.PageNavi .page-numbers {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  color: currentColor;
  transition: opacity 0.3s;
}
@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-beige);
  pointer-events: none;
}

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

記事詳細

------------------------------------------------------------ */
.single {
  padding-bottom: 12rem;
}
.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__desc {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.single__desc:not(:last-child) {
  margin-bottom: 4rem;
}
.single__desc:has(+ .treatment) {
  margin-bottom: 8rem;
}
.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-blue);
  text-decoration: underline;
}
.single__desc hr {
  width: 100%;
  border-style: solid;
  border-color: #e8e8e8;
}
.single__desc del {
  text-decoration: line-through;
}
.single__desc em {
  font-style: italic;
}
.single__desc blockquote {
  padding-left: 1rem;
  border-left: 2px solid #e8e8e8;
}
.single__desc h3 {
  padding: 1.4rem 2rem;
  background: var(--color-green);
  border-radius: 2.8rem;
  color: var(--base-color);
  font-size: 1.7rem;
  font-family: "hanazome";
  line-height: var(--lh-16);
  text-align: center;
  position: relative;
}
.single__desc h3::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4.5rem;
  background: url(../images/icon_h3title_01.png) no-repeat center/contain;
  position: absolute;
  top: -2rem;
  right: 0;
}
.single__desc h4 {
  width: fit-content;
  padding: 0.4rem 0.5rem;
  background: var(--base-color);
  color: var(--color-pink);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--lh-16);
}
.single__desc h5 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.6rem;
  line-height: var(--lh-16);
}
.single__desc h5::before {
  content: "";
  flex: none;
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--font-color);
  margin-top: 1.2rem;
}
.single__desc h6 {
  font-weight: 700;
  line-height: var(--lh-16);
}
.single .treatment {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 8rem;
  padding: 2rem;
  background: var(--color-beige);
  border-radius: 3rem;
}
.single .treatment__item > h4 {
  width: fit-content;
  padding: 0.4rem 0.5rem;
  margin-bottom: 1rem;
  background: var(--base-color);
  color: var(--color-pink);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--lh-16);
}
.single .treatment__item img {
  width: 100%;
  height: auto;
}
.single .treatment svg {
  width: 4.8rem;
  height: 4.8rem;
  margin-inline: auto;
  fill: var(--font-color);
}
.single .c-table {
  margin-bottom: 6rem;
}
.single .supervision {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 4rem 2rem;
  border-radius: 3rem;
  background: var(--color-beige);
  text-align: center;
}
.single .supervision h3 {
  font-size: 2rem;
  font-weight: 700;
}
.single .supervision__image img {
  width: 100%;
  height: auto;
  border-radius: 3rem;
  border: 5px solid var(--base-color);
}
.single .supervision__clinic {
  font-size: 1.8rem;
}
.single .supervision__tel a {
  text-decoration: underline;
}
@media (hover: hover) {
  .single .supervision__tel a:hover {
    text-decoration: none;
  }
}

.singleNavi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 8rem;
}
.singleNavi__prev, .singleNavi__back, .singleNavi__next {
  justify-content: center;
  min-height: 6rem;
  font-size: 1.6rem;
}
.singleNavi__prev span svg {
  transform: scale(-1, 1);
}
/*# sourceMappingURL=style.css.map */
