@charset "UTF-8";
:root {
  --base-color: #ffffff;
  --font-color: #333333;
  --color-green-dark: #3f7450;
  --color-green: #5f9470;
  --color-green-pale: #94b190;
  --color-beige: #a79777;
  --color-beige-dark: #7f7155;
  --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;
  }
}

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

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: 8rem 2rem;
}
.page-404 .content > p {
  margin-bottom: 4rem;
  text-align: center;
  line-height: var(--lh-16);
  font-weight: 700;
}

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

パンくずリスト

------------------------------------------------------------ */
.breadcrumb {
  position: relative;
  padding: 0 2rem;
}
.breadcrumb::before {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: var(--base-color);
  mask-image: url(../images/clip_wave_top.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  top: -6.3rem;
  left: 0;
  transform: scaleX(-1);
}
.breadcrumb__item {
  display: inline;
}
.breadcrumb__item:not(:last-child)::after {
  content: "|";
  margin-left: 0.5rem;
  color: var(--font-color);
}
.breadcrumb__link {
  color: var(--font-color);
  text-decoration: underline;
}
@media (hover: hover) {
  .breadcrumb__link:hover {
    text-decoration: none;
  }
}

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

アクセス情報カード

------------------------------------------------------------ */
.c-access {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 2rem 4.8rem;
  background: var(--base-color);
  border-radius: 2rem;
}
.c-access__logo {
  display: block;
}
.c-access__logo img {
  width: 100%;
  height: auto;
}
.c-access__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--font-color);
  font-size: 1.5rem;
}
.c-access__map:has(img) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.c-access__map img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

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

ボタン

------------------------------------------------------------ */
.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 1rem 5rem;
  background: var(--base-color);
  border: 1px solid #707070;
  border-radius: 2.8rem;
  color: var(--font-color);
  line-height: var(--lh-16);
  text-align: center;
  position: relative;
}
.c-button:has(br) {
  border-radius: 3.8rem;
}
@media (hover: hover) {
  .c-button:hover svg {
    scale: 1.3;
  }
}
.c-button svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: var(--font-color);
  position: absolute;
  right: 2rem;
  top: 50%;
  translate: 0 -50%;
  transition: scale 0.3s;
}

.mapBtn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  border-bottom: 1px solid #c8c8c8;
  color: var(--font-color);
  font-weight: 700;
  line-height: 1;
}
.mapBtn svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: #707070;
}

.buttonWrap {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 8rem 2rem 0;
}
.buttonWrap a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  min-height: 12rem;
  padding: 1.8rem 2rem;
  border-radius: 1rem;
  color: var(--base-color);
  position: relative;
}
@media (hover: hover) {
  .buttonWrap a:hover svg {
    scale: 1.2;
  }
}
.buttonWrap a span {
  line-height: var(--lh-16);
}
.buttonWrap a span.sub {
  font-size: 1.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.buttonWrap a span.main {
  font-size: 2.4rem;
  font-weight: 700;
}
.buttonWrap a svg {
  width: 3.6rem;
  height: 3.6rem;
  fill: var(--base-color);
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  transition: scale 0.3s;
}
.buttonWrap a.brown {
  background: var(--color-beige-dark);
}
.buttonWrap a.green {
  background: var(--color-green-dark);
}

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

WEB診療予約
LINEでの予約

------------------------------------------------------------ */
.c-btnUnit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
.c-btnUnit__reservation, .c-btnUnit__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 5.6rem;
  border-radius: 2.8rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (hover: hover) {
  .c-btnUnit__reservation:hover svg,
  .c-btnUnit__reservation:hover img, .c-btnUnit__line:hover svg,
  .c-btnUnit__line:hover img {
    scale: 1.2;
  }
}
.c-btnUnit__reservation svg,
.c-btnUnit__reservation img, .c-btnUnit__line svg,
.c-btnUnit__line img {
  width: 2rem;
  height: 2rem;
  fill: var(--base-color);
  transition: scale 0.3s;
}
.c-btnUnit__reservation {
  background: var(--color-beige-dark);
  color: var(--base-color);
}
.c-btnUnit__line {
  background: #6dc26a;
  color: var(--base-color);
}

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

症例紹介 画像スライダー

------------------------------------------------------------ */
.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: 3.6rem;
  height: 100%;
  background: url(../images/bg_slider_01.webp) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: -1.8rem;
  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.1rem;
  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: 6rem;
  height: 2.5rem;
  background: var(--base-color);
  color: var(--font-color);
  font-size: 1.2rem;
  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: 335/220;
}
.c-caseBox .imageSlider__after {
  position: relative;
  z-index: -1;
}
.c-caseBox .imageSlider__after img {
  width: 100%;
  height: auto;
  aspect-ratio: 335/220;
}
.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.sub .imageSlider {
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
}
.c-caseBox.sub .c-caseBox__label {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
}
.c-caseBox.sub .c-caseBox__label::before {
  content: "";
  flex: none;
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-green-pale);
  border-radius: 50%;
  margin-top: 1rem;
}
.c-caseBox.sub .c-caseBox__title {
  display: flex;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}
.c-caseBox.sub .c-caseBox__title p {
  display: grid;
  place-content: center;
  width: 50%;
  height: 3.2rem;
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 1.4rem;
}
.c-caseBox.sub .c-caseBox__title p:nth-of-type(1) {
  background: #93a799;
}
.c-caseBox.sub .c-caseBox__title p:nth-of-type(2) {
  background: var(--color-green);
}
.c-caseBox.top .imageSlider {
  border-radius: 1rem;
  overflow: hidden;
}
.c-caseBox.top .imageSlider__before::before {
  width: 6rem;
  right: -3rem;
}
.c-caseBox.top .imageSlider__before .inner p, .c-caseBox.top .imageSlider__after::after {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 3.6rem;
  background: var(--color-green);
  color: var(--base-color);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.c-caseBox.top .imageSlider__before .inner p {
  border-radius: 0 0 1rem 0;
  position: relative;
  z-index: 1;
}
.c-caseBox.top .imageSlider__after::after {
  content: "治療後";
  border-radius: 0 0 0 1rem;
  position: absolute;
  top: 0;
  right: 0;
}
.c-caseBox.top .c-caseBox__label {
  width: 100%;
  margin-bottom: 3rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--lh-16);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-caseBox.top .c-accordion {
  width: calc(100% + 4rem);
  margin-inline: -2rem;
  border: none;
  background: #a1b49e;
}
.c-caseBox.top .c-accordion__btn {
  color: var(--base-color);
}
.c-caseBox.top .c-accordion__btn span::before,
.c-caseBox.top .c-accordion__btn span::after {
  background: var(--base-color);
}
.c-caseBox.top .c-accordion__row dd {
  color: var(--base-color);
}

.c-accordion {
  width: 100%;
  padding: 1.2rem 0;
  border: 1px solid #707070;
  border-radius: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-accordion.is-open {
    border-radius: 2rem;
  }
}
.c-accordion.is-open .c-accordion__content {
  display: block;
}
.c-accordion.is-open .c-accordion__btn {
  padding-bottom: 1rem;
}
.c-accordion.is-open .c-accordion__btn span::after {
  display: none;
}
.c-accordion__content {
  display: none;
  padding: 2rem 1.5rem;
}
.c-accordion__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #c8c8c8;
}
.c-accordion__row:nth-of-type(1) {
  padding-top: 0;
}
.c-accordion__row dt {
  width: fit-content;
  padding: 0 2rem;
  border-radius: 0.5rem;
  background: #eef5ed;
  text-align: center;
}
.c-accordion__btn {
  text-align: center;
  position: relative;
  cursor: pointer;
}
.c-accordion__btn span {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  top: 0.8rem;
  right: 4rem;
}
.c-accordion__btn span::before, .c-accordion__btn span::after {
  content: "";
  display: block;
  background: var(--font-color);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.c-accordion__btn span::before {
  width: 1.6rem;
  height: 1px;
}
.c-accordion__btn span::after {
  width: 1px;
  height: 1.6rem;
}

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

Yes/No チャート

------------------------------------------------------------ */
.c-chart button {
  font-size: 1.6rem;
  cursor: pointer;
}
.c-chart__content {
  padding: 4rem 2rem;
  border: 1px solid var(--color-green-dark);
  border-radius: 0.5rem;
}
.c-chart__question {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.c-chart__questionText {
  font-size: 2rem;
  font-weight: 700;
  line-height: var(--lh-16);
  color: var(--color-green-dark);
}
.c-chart__questionText .chart_content_2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.c-chart__questionText .chart_content_2 img {
  width: 100%;
  height: auto;
}
.c-chart__questionText .chart_content_2 p {
  color: var(--font-color);
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
.c-chart__choices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-chart__choicesBtn {
  display: block;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: #e5efe3;
  border-radius: 0.5rem;
  transition: all 0.3s;
}
@media (hover: hover) {
  .c-chart__choicesBtn:hover {
    background: var(--color-green-dark);
    color: #fff;
  }
}
.c-chart__resultLabel {
  width: fit-content;
  margin: 0 auto 4rem;
  padding: 0.5rem 1rem;
  background: #e5efe3;
  border-radius: 0.5rem;
  color: var(--color-green-dark);
  font-size: 2.4rem;
  font-weight: 700;
}
.c-chart__resultContent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-chart__resultContent h4,
.c-chart__resultContent h5 {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
}
.c-chart__resultContent h4 {
  padding-left: 1rem;
  border-left: 2px solid var(--color-beige);
  font-size: 2.2rem;
}
.c-chart__resultContent h5 {
  display: flex;
  gap: 1rem;
  font-size: 2rem;
}
.c-chart__resultContent h5::before {
  content: "";
  flex: none;
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-green-pale);
  border-radius: 50%;
  margin-top: 1.2rem;
}
.c-chart__nav {
  margin-top: 2rem;
}
.c-chart__back, .c-chart__restartBtn {
  display: block;
  margin: 2rem auto 0;
  padding: 1rem 2rem;
  border: 1px solid var(--color-beige);
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
}
@media (hover: hover) {
  .c-chart__back:hover, .c-chart__restartBtn:hover {
    border-color: var(--color-green-dark);
  }
}

.c-chartTable {
  margin-bottom: 4rem;
}
.c-chartTable__note {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.c-chartTable__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.c-chartTable__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.c-chartTable__table th,
.c-chartTable__table td {
  padding: 1rem 0.8rem;
  border: 1px solid #ddd;
  text-align: center;
  line-height: var(--lh-16);
}
.c-chartTable__table th {
  width: 10rem;
  background: var(--color-green-dark);
  color: #fff;
  font-weight: 700;
}
.c-chartTable__table td {
  width: 16rem;
  background: #fff;
}
.c-chartTable__table td img {
  width: 100%;
  height: auto;
}
.c-chartTable__table td a {
  color: var(--color-green-dark);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-chartTable__table td a:hover {
    text-decoration: none;
  }
}
.c-chartTable__table tr:first-child td {
  background: #e5efe3;
  font-weight: 700;
}

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

流れパターン

------------------------------------------------------------ */
.c-flow {
  display: flex;
  flex-direction: column;
  gap: 11rem;
  padding-top: 2rem;
}
.c-flow__item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 6rem 2rem 4rem;
  border-radius: 2rem;
  background: #fbf7ef;
  position: relative;
}
.c-flow__item:not(:last-child)::after {
  content: "";
  width: 6rem;
  height: 2rem;
  background: #c7d5c5;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -5rem;
  left: 50%;
  translate: -50% 0;
}
.c-flow__num {
  padding: 1rem;
  background: var(--base-color);
  position: absolute;
  top: -2rem;
  left: 50%;
  translate: -50% 0;
}
.c-flow__title 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);
}
.c-flow__image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
.c-flow .c-listBox {
  background: var(--base-color);
}

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

リスト

------------------------------------------------------------ */
.c-listBox {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 3rem 2rem;
  border-radius: 1rem;
  background: #fbf7ef;
}
.c-listBox li {
  display: flex;
  gap: 1rem;
}
.c-listBox li::before {
  content: "";
  display: block;
  flex: none;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-beige);
  border-radius: 50%;
  margin-top: 1rem;
}

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

newsのリスト

------------------------------------------------------------ */
.c-newsList {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.c-newsList__noarticle {
  font-weight: 700;
}
.c-newsList .item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: fit-content;
  color: var(--font-color);
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-newsList .item {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.c-newsList .item__category {
  flex: none;
  display: grid;
  place-content: center;
  width: 12rem;
  height: 3rem;
  border: 1px solid var(--color-green);
  border-radius: 2.5rem;
  color: var(--color-green);
  font-size: 1.3rem;
}
.c-newsList .item time {
  flex: none;
  width: 10rem;
}
.c-newsList .item__title {
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

目次

------------------------------------------------------------ */
.c-outline {
  padding: 4.2rem 2rem 0;
}
.c-outline__inner {
  padding: 4rem 2rem;
  border-radius: 1rem;
  background: #fbf7ef;
}
.c-outline__title {
  margin-bottom: 2rem;
}
.c-outline__title img {
  width: 13.3rem;
  height: auto;
  margin-bottom: 2rem;
}
.c-outline__title h2 {
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.c-outline ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.c-outline ul li a {
  display: flex;
  gap: 1rem;
  color: var(--font-color);
  line-height: var(--lh-16);
  text-decoration-line: underline;
  transition: color 0.3s;
}
@media (hover: hover) {
  .c-outline ul li a:hover {
    color: #a1a1a1;
  }
}
.c-outline ul li a::before {
  flex: none;
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.8rem;
  background: #c5b596;
  border-radius: 50%;
}

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

ページタイトル

------------------------------------------------------------ */
.c-pageTitle {
  padding: 8rem 2rem 11rem;
  background: #e5efe3;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pageTitle {
    padding: 14rem 2rem 9.6rem;
  }
}
.c-pageTitle::before {
  content: "";
  display: block;
  width: 36.2rem;
  aspect-ratio: 362/244;
  background: url(../images/bg_shadow_01.webp) no-repeat center/contain;
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: 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-14);
  letter-spacing: 0.1em;
  text-align: center;
}

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

ピックアップ

------------------------------------------------------------ */
.c-pickup {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem 2rem 4rem;
  margin: 6.4rem -2rem;
  background: var(--color-beige);
  position: relative;
  position: relative;
}
.c-pickup::before {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: var(--color-beige);
  mask-image: url(../images/clip_wave_top.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  top: -6.3rem;
  left: 0;
}
.c-pickup::after {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: var(--color-beige);
  mask-image: url(../images/clip_wave_bottom.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  bottom: -6.3rem;
  left: 0;
  transform: scaleX(-1);
}
.c-pickup__inner {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 5.2rem 2rem 4.4rem;
  background: var(--base-color);
  border-radius: 1rem;
  position: relative;
}
.c-pickup__inner::after {
  content: "";
  display: block;
  width: 28rem;
  aspect-ratio: 362/244;
  background: url(../images/bg_shadow_01.webp) no-repeat center/contain;
  opacity: 0.15;
  scale: -1 -1;
  position: absolute;
  bottom: 0;
  right: 0;
}
.c-pickup__label {
  width: 24rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: -2.5rem;
  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);
}
.c-pickup__image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}

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

診療時間について

------------------------------------------------------------ */
.c-schedule {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.c-schedule__heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
}
.c-schedule__heading::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: var(--color-beige);
  border-radius: 50%;
}
.c-schedule__note {
  width: fit-content;
  color: var(--color-beige);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
.c-schedule__text p {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: var(--lh-16);
}
.c-schedule__text a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--font-color);
  font-size: 1.4rem;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  text-decoration-color: #c7d5c5;
  position: relative;
}
@media (hover: hover) {
  .c-schedule__text a:hover {
    text-decoration: none;
  }
}
.c-schedule__text a::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 1rem;
  background: #c7d5c5;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.scheduleTable {
  margin-inline: -0.8rem;
}
.scheduleTable__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.8rem;
  table-layout: fixed;
}
.scheduleTable__table th,
.scheduleTable__table td {
  height: 3rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.scheduleTable__day {
  width: 7rem;
  background: var(--color-beige);
  color: var(--base-color);
}
.scheduleTable__header {
  border: 1px solid var(--color-green);
  color: var(--color-green);
  font-size: 1.6rem;
}
.scheduleTable__time {
  background: var(--base-color);
  color: var(--font-color);
}

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

テーブル

------------------------------------------------------------ */
.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-dark);
  border-radius: 1rem 1rem 0 0;
  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: #fbf7ef;
  border-radius: 0 0 1rem 1rem;
}
.c-table__table td p a {
  color: var(--color-green-dark);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-table__table td p a:hover {
    text-decoration: none;
  }
}

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

電話

------------------------------------------------------------ */
.c-tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--base-color);
}
.c-tel a svg {
  width: 2.7rem;
  height: 2.7rem;
  fill: var(--color-green-dark);
}
.c-tel a img {
  width: 24.4rem;
  height: auto;
}
.c-tel p {
  font-size: 1.4rem;
}

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

下層のパーツ

------------------------------------------------------------ */
.c-unit {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.c-unit__item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.c-unit__image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
.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-green-dark);
  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;
}
.c-unit.info h3 {
  display: flex;
  gap: 1rem;
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
}
.c-unit.info h3::before {
  content: "";
  flex: none;
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-green-pale);
  border-radius: 50%;
  margin-top: 1rem;
}

.c-desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-desc p {
  text-align: justify;
}
.c-desc p a {
  color: var(--color-green-dark);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-desc p a:hover {
    text-decoration: none;
  }
}

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

見出し

------------------------------------------------------------ */
.heading01 {
  display: flex;
  margin-inline: -1rem;
  position: relative;
}
.heading01__en {
  width: 7rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: -3rem;
  right: 0;
}
.heading01__en img {
  width: 100%;
  height: auto;
}
.heading01__title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  letter-spacing: 0.1em;
}
.heading01__title > span {
  width: fit-content;
  padding: 0.5rem 1rem;
  background: var(--base-color);
  border-radius: 0.5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 3.2rem;
  line-height: var(--lh-14);
}
.heading01__title > span span {
  color: var(--color-green);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}

.heading02 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.heading02__en {
  height: 1.8rem;
}
.heading02__en img {
  width: auto;
  height: 100%;
}
.heading02__main {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.heading02__main span {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--base-color);
  border-radius: 0.5rem;
  color: var(--color-green);
  font-size: 2.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
}
.heading02__sub {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.4rem;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
}
.heading02.center {
  align-items: center;
}
.heading02.center .heading02__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  line-height: var(--lh-16);
  text-align: center;
}

.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 {
  margin-inline: -3rem;
  padding: 1.5rem 3rem;
  background: #eef5ed;
  font-size: 2.6rem;
  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: 0.5rem;
  background: url(../images/icon_h3title.svg) no-repeat center/contain;
}

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

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

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

section関連の記述

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

.divSection {
  padding: 4.2rem 2rem 0;
}

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

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

Header

------------------------------------------------------------ */
.spHeader {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .spHeader {
    display: flex;
    align-items: center;
    width: 100%;
    height: 5.6rem;
    padding: 0 2rem;
    background: var(--base-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
  }
  .spHeader a {
    display: block;
    width: 25.9rem;
  }
  .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 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 4rem 2rem 4.6rem;
  margin-top: 12rem;
  background: #817660;
  color: var(--base-color);
}
.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: #817660;
  mask-image: url(../images/clip_wave_top.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  top: -6.3rem;
  left: 0;
  transform: scaleX(-1);
}
.home .footer {
  margin-top: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer {
    padding-bottom: 10.2rem;
  }
}
.footer .c-schedule__heading::before {
  background: #e8e1d4;
}
.footer .c-schedule__note {
  color: var(--base-color);
}
.footer .c-schedule__text a {
  color: var(--base-color);
  text-decoration-color: var(--base-color);
}
.footer .c-schedule__text a::after {
  background: #d6d1c5;
}
.footer .c-schedule .scheduleTable__header {
  border: 1px solid #e8e1d4;
  color: #e8e1d4;
}
.footer .c-tel a svg {
  fill: var(--base-color);
}
.footer .c-btnUnit__reservation {
  background: var(--base-color);
  color: var(--color-beige-dark);
}
.footer .c-btnUnit__reservation svg {
  fill: var(--color-beige-dark);
}
.footer .c-desc {
  margin-top: 2.4rem;
}
.footer__links {
  padding: 0 2rem;
}
.footer__links a {
  display: block;
}
.footer__links a img {
  width: 100%;
  height: auto;
}
.footer__copy {
  line-height: var(--lh-16);
  text-align: center;
}

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

サイドバー

------------------------------------------------------------ */
.menuButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  background: var(--color-green-pale);
  border-radius: 1rem 0 0 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  opacity: 1;
  cursor: pointer;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 0 0 0 0.5rem;
  }
}
.menuButton .border {
  position: absolute;
  width: 4rem;
  height: 0.1rem;
  margin-top: -2rem;
  background: var(--base-color);
  transition: transform 0.4s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .border {
    width: 3rem;
    margin-top: -1rem;
  }
}
.menuButton .border:nth-child(1) {
  transform: translateY(-0.6rem);
}
.menuButton .text {
  width: 5.4rem;
  margin-top: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .text {
    width: 4.2rem;
  }
}
.menuButton .text img {
  width: 100%;
  height: auto;
}
.menuButton .text img.menu {
  display: block;
}
.menuButton .text img.close {
  display: none;
}
.menuButton.active {
  background: var(--color-green-dark);
}
.menuButton.active .border:nth-child(1) {
  transform: rotate(25deg);
}
.menuButton.active .border:nth-child(2) {
  transform: rotate(-25deg);
}
.menuButton.active .text img.menu {
  display: none;
}
.menuButton.active .text img.close {
  display: block;
}

.mvFixedBtn {
  display: grid;
  grid-template-rows: 25fr 25fr 18fr 18fr;
  height: calc(100% - 8rem);
  position: fixed;
  top: 8rem;
  right: 0;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn {
    width: 100%;
    grid-template-rows: 1fr;
    grid-template-columns: 132fr 132fr 56fr 56fr;
    height: 5.6rem;
    border-radius: 1rem 1rem 0 0;
    inset: auto auto 0 0;
    overflow: hidden;
  }
}
.mvFixedBtn__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 8rem;
  color: var(--base-color);
  font-size: 1.8rem;
  font-weight: 700;
  writing-mode: vertical-lr;
  text-orientation: upright;
  white-space: nowrap;
}
@media (hover: hover) {
  .mvFixedBtn__btn:hover > svg,
  .mvFixedBtn__btn:hover > img {
    scale: 1.2;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn {
    flex-direction: column;
    gap: 0;
    width: unset;
    height: 100%;
    font-size: 1.4rem;
    writing-mode: unset;
  }
}
.mvFixedBtn__btn > svg,
.mvFixedBtn__btn > img {
  width: 2.4rem;
  height: 2.4rem;
  fill: var(--base-color);
  transition: scale 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn > svg,
  .mvFixedBtn__btn > img {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.mvFixedBtn__btn.reservation {
  margin-left: auto;
  background: var(--color-beige-dark);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.reservation {
    margin-left: 0;
  }
}
.mvFixedBtn__btn.line {
  background: #6dc26a;
}
.mvFixedBtn__btn.tel {
  background: var(--color-green-dark);
  position: relative;
  z-index: 0;
}
@media (hover: hover) {
  .mvFixedBtn__btn.tel:hover .large {
    translate: 0 0;
  }
}
.mvFixedBtn__btn.tel .small {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.tel .small {
    flex-direction: column;
    gap: 0;
  }
}
.mvFixedBtn__btn.tel .small svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.tel .small svg {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.mvFixedBtn__btn.tel .large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 37rem;
  height: 100%;
  padding: 0 2rem;
  background: var(--color-green-dark);
  translate: 100% 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: translate 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.tel .large {
    display: none;
  }
}
.mvFixedBtn__btn.tel .large span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mvFixedBtn__btn.tel .large span:nth-of-type(1) svg {
  width: 3rem;
  height: 3rem;
  fill: var(--base-color);
}
.mvFixedBtn__btn.tel .large span:nth-of-type(1) img {
  width: 26.5rem;
  height: auto;
}
.mvFixedBtn__btn.tel .large span:nth-of-type(2) {
  font-size: 1.4rem;
  line-height: var(--lh-14);
  text-align: center;
  writing-mode: horizontal-tb;
}
.mvFixedBtn__btn.calendar {
  background: #f3f8f2;
  color: var(--font-color);
}
.mvFixedBtn__btn.calendar svg {
  fill: var(--font-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.calendar {
    gap: 0.5rem;
  }
  .mvFixedBtn__btn.calendar span {
    font-size: 1rem;
  }
  .mvFixedBtn__btn.calendar span span {
    display: none;
  }
}

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

PCのみの記述

------------------------------------------------------------ */
.pc-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54.5rem;
  width: 100%;
  height: 100vh;
  background: url(../images/bg_pc-content_01.webp) no-repeat center/cover;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content {
    display: contents;
  }
}
.pc-content__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5.8rem 3.6458333333vw 0 4.1666666667vw;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__left {
    display: contents;
  }
}
.pc-content h1 {
  width: 100%;
  padding: 0 3.6458333333vw 0 4.1666666667vw;
  font-size: 1.4rem;
  line-height: var(--lh-14);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: absolute;
  top: 3rem;
  left: 0;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content h1 {
    padding: 0 2rem;
    -webkit-line-clamp: 2;
    top: 8rem;
    z-index: 2;
  }
  .home .pc-content h1 {
    padding: 0 6.6rem 0 2rem;
    top: 1rem;
  }
}
.pc-content__header {
  display: flex;
  align-items: center;
  gap: 3.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__header {
    display: none;
  }
}
.pc-content__logo {
  width: 26.1458333333vw;
}
.pc-content__logo a {
  display: block;
}
.pc-content__logo a img {
  width: 100%;
  height: auto;
}
.pc-content__tag {
  display: flex;
  gap: 2rem;
}
.pc-content__tag li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: var(--base-color);
  border: 1px solid var(--color-green);
  border-radius: 0.5rem;
  color: var(--color-green);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 0.9375vw;
  white-space: nowrap;
}
.pc-content__mv {
  display: flex;
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__mv {
    display: none;
  }
}
.pc-content__main {
  width: 64.9795918367%;
}
.pc-content__main img {
  width: 100%;
  height: auto;
  border-radius: 2rem 2rem 2rem 8rem;
}
.pc-content__sub {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 31.7551020408%;
}
.pc-content__sub img {
  width: 100%;
  height: auto;
}
.pc-content__sub img:nth-of-type(1) {
  border-radius: 8rem 2rem 2rem 2rem;
}
.pc-content__sub img:nth-of-type(2) {
  border-radius: 2rem 2rem 8rem 2rem;
}
.pc-content__news {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  width: 45.3125vw;
  margin-left: -4.1666666667vw;
  padding: 3.2rem 4rem;
  background: var(--color-beige);
  border-radius: 0 3rem 0 0;
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__news {
    display: none;
  }
}
.pc-content__title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pc-content__title img {
  width: 4.8rem;
  height: auto;
}
.pc-content__title p {
  color: var(--base-color);
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.pc-content .c-newsList {
  flex: 1;
}
.pc-content .c-newsList .item {
  color: var(--base-color);
}
@media (hover: hover) {
  .pc-content .c-newsList .item:hover .item__title {
    text-decoration: underline;
  }
}
.pc-content .c-newsList .item__category {
  border: 1px solid var(--base-color);
  color: var(--base-color);
}
.pc-content .c-button {
  flex: none;
  padding: 1rem 6rem 1rem 2rem;
  background: none;
  border: 1px solid var(--base-color);
  color: var(--base-color);
}
.pc-content .c-button svg {
  fill: var(--base-color);
}
.pc-content__right {
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__right {
    display: contents;
  }
}
.pc-content__right .pageTop {
  width: 4.5rem;
  position: fixed;
  bottom: 3.2rem;
  right: 5.2083333333vw;
  z-index: 3;
  cursor: pointer;
  transition: translate 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__right .pageTop {
    width: 3rem;
    bottom: 7rem;
    right: 1rem;
  }
}
@media (hover: hover) {
  .pc-content__right .pageTop:hover {
    translate: 0 -2rem;
  }
}
.pc-content__right .pageTop img {
  width: 100%;
  height: auto;
}
.pc-content__right .js-pageTop {
  opacity: 1;
  visibility: visible;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__right .js-pageTop {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
.pc-content__slide {
  display: flex;
  position: relative;
  overflow: hidden;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  bottom: 11.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__slide {
    display: none;
  }
}
.pc-content__slide div {
  flex: none;
  width: 230rem;
  height: 100%;
  animation: textSlide 30s linear infinite;
}
.pc-content__slide div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

メインコンテンツ

------------------------------------------------------------ */
.allContent {
  width: 37.5rem;
  background: var(--base-color);
  margin: 8.2rem 8.8541666667% 0 auto;
  border-radius: 2rem;
  box-shadow: 0 0 4rem rgba(0, 0, 0, 0.16);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .allContent {
    display: contents;
  }
}

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

ドロワーメニュー

------------------------------------------------------------ */
.drawerMenu {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(1rem);
  position: fixed;
  inset: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu {
    height: 100%;
    padding: 3rem 2rem 8rem;
    background: var(--color-green-pale);
  }
  .drawerMenu::before {
    content: "";
    display: block;
    width: 100%;
    height: 25.3rem;
    background: url(../images/bg_header_02.webp) no-repeat center/cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.drawerMenu.active {
  opacity: 1;
  visibility: visible;
}
.drawerMenu__inner {
  height: 67.5rem;
  padding-top: 10rem;
  background: url(../images/bg_header_01.webp) no-repeat top center/cover;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__inner {
    display: contents;
  }
}
.drawerMenu__unit {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
  width: 59.7395833333vw;
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__unit {
    width: 100%;
  }
}
.drawerMenu__title {
  width: 18.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__title {
    width: 11rem;
    margin-inline: auto;
  }
}
.drawerMenu__title img {
  width: 100%;
  height: auto;
}
.drawerMenu__nav {
  display: flex;
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__nav {
    flex-direction: column;
    gap: 4rem;
  }
}
.drawerMenu__list > a,
.drawerMenu__list > p {
  color: var(--base-color);
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list > a,
  .drawerMenu__list > p {
    font-size: 1.6rem;
  }
}
.drawerMenu__list > a {
  transition: color 0.3s;
}
@media (hover: hover) {
  .drawerMenu__list > a:hover {
    color: var(--color-green-dark);
  }
}
.drawerMenu__list > p {
  margin-bottom: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list > p {
    margin-bottom: 1rem;
  }
}
.drawerMenu__list > div {
  display: flex;
  gap: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list > div {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.drawerMenu__list ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.drawerMenu__list ul li a {
  display: flex;
  gap: 1rem;
  color: var(--base-color);
  font-size: 1.6rem;
  line-height: var(--lh-16);
  transition: color 0.3s;
}
@media (hover: hover) {
  .drawerMenu__list ul li a:hover {
    color: var(--color-green-dark);
  }
}
.drawerMenu__list ul li a::before {
  flex: none;
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.8rem;
  background: #e1ebe0;
  border-radius: 50%;
}
.drawerMenu__bg {
  flex: 1;
  cursor: pointer;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__bg {
    display: none;
  }
}

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

LINE予約モーダル

------------------------------------------------------------ */
.lineModal {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  position: fixed;
  z-index: 10;
  inset: 0;
}
.lineModal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lineModal__overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
}
.lineModal__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(50rem, 90%);
  padding: 4rem;
  border-top: 4rem solid #23abf9;
  background: #fff;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .lineModal__box {
    padding: 2rem;
  }
}
.lineModal__close {
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: -4rem;
  right: 0;
  z-index: 1;
  cursor: pointer;
}
.lineModal__close span {
  width: 3rem;
  height: 0.2rem;
  background: var(--base-color);
  position: absolute;
  right: 1rem;
}
.lineModal__close span:nth-child(1) {
  transform: rotate(45deg);
}
.lineModal__close span:nth-child(2) {
  transform: rotate(-45deg);
}
.lineModal__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: center;
}
.lineModal__text p {
  line-height: var(--lh-16);
}
.lineModal__text p span {
  color: #f00;
}
.lineModal__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lineModal__step > p {
  width: fit-content;
  padding: 0 1.5rem;
  background: #25a9d6;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.lineModal__code {
  position: relative;
}
.lineModal__code > p {
  font-size: 1.8rem;
}
.lineModal__code button {
  width: 8rem;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: -10rem;
  cursor: pointer;
}
.lineModal__code button img {
  width: 100%;
  height: auto;
}
.lineModal__code .copyAlert {
  width: 14rem;
  padding: 1rem;
  background: #ee878e;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: var(--lh-16);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: -4.5rem;
  left: 50%;
  translate: -50% 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.lineModal__code .copyAlert.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .lineModal__note {
    display: none;
  }
}
.lineModal__note img {
  width: 15rem;
  height: auto;
}
.lineModal__note p {
  line-height: var(--lh-14);
}
.lineModal__note p:nth-of-type(2) {
  margin-top: 0.5rem;
  color: #707070;
  font-size: 1.4rem;
}
.lineModal__move a {
  display: block;
  transition: scale 0.3s;
}
@media (hover: hover) {
  .lineModal__move a:hover {
    scale: 1.05;
  }
}
.lineModal__move a img {
  width: 20rem;
  height: auto;
}
.lineModal__move p {
  margin: 0.5rem 0 0;
}

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

アニメーション

------------------------------------------------------------ */
@keyframes textSlide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
/* ------------------------------------------------------------

トップページ

------------------------------------------------------------ */
.page-top > section {
  padding: 0;
}
.page-top .c-button {
  background: none;
}
.page-top .lead {
  padding-bottom: 12rem;
  background: url(../images/bg_home_01.webp) no-repeat center/cover;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .lead {
    padding-top: 5.6rem;
  }
}
.page-top .lead__logo {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .lead__logo {
    display: block;
    width: 33.5rem;
    margin: 0 auto 2rem;
  }
  .page-top .lead__logo img {
    width: 100%;
    height: auto;
  }
}
.page-top .lead__inner {
  position: relative;
  margin-bottom: 4rem;
}
.page-top .lead__image {
  width: 31.7rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .lead__image {
    width: 33.5rem;
  }
}
.page-top .lead__image img {
  width: 100%;
  height: auto;
  border-radius: 0 0 13rem 0;
}
.page-top .lead h2 {
  width: 19.2rem;
  position: absolute;
  bottom: -1.5rem;
  right: 2rem;
}
.page-top .lead__text {
  padding-left: 2rem;
  color: var(--color-green);
  letter-spacing: 0.15em;
}
.page-top .lead__text span {
  font-weight: 700;
}
.page-top .lead__slide {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .lead__slide {
    display: flex;
    position: relative;
    overflow: hidden;
    mix-blend-mode: multiply;
    position: absolute;
    bottom: 7rem;
    left: 0;
  }
}
.page-top .lead__slide div {
  flex: none;
  width: 148rem;
  height: 100%;
  animation: textSlide 30s linear infinite;
}
.page-top .lead__slide div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-top .about {
  position: relative;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background: #eef5ed;
  padding: 0 2rem;
  z-index: 1;
}
.page-top .about::before {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: #eef5ed;
  mask-image: url(../images/clip_wave_top.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  top: -6.3rem;
  left: 0;
  transform: scaleX(-1);
}
.page-top .about::after {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: #eef5ed;
  mask-image: url(../images/clip_wave_bottom.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  bottom: -6.3rem;
  left: 0;
}
.page-top .about__scroll {
  display: flex;
  gap: 1rem;
  position: absolute;
  top: -20rem;
  right: 4rem;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__scroll {
    display: none;
  }
}
.page-top .about__scroll img {
  width: 1.2rem;
  height: 4.2rem;
  margin-top: 2.4rem;
}
.page-top .about__scroll span {
  width: 1px;
  height: 16.8rem;
  background: #aaaaaa;
  position: relative;
}
.page-top .about__scroll span::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: #aaaaaa;
  position: absolute;
  top: 0;
  left: -0.2rem;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% {
    top: 0;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 0.3rem);
    opacity: 0;
  }
}
.page-top .concept {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  background: #e5efe3;
  padding: 13rem 2rem;
}
.page-top .concept__image {
  width: 100%;
  margin-top: -7.2rem;
}
.page-top .concept__image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
.page-top .concept__catch {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.4rem;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
}
.page-top .concept__catch span {
  color: var(--color-green);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  position: relative;
}
.page-top .concept__catch span::before {
  content: "・・・・";
  display: block;
  color: var(--color-green);
  font-size: 2.4rem;
  letter-spacing: 0.6em;
  line-height: 1;
  position: absolute;
  top: -2rem;
  left: 0.5rem;
  pointer-events: none;
}
.page-top .dentition {
  z-index: 2;
}
.page-top .dentition .chart {
  position: relative;
  position: relative;
  background: #8a7b5e;
  padding: 3rem 2rem 6.5rem;
  color: var(--base-color);
  z-index: 1;
}
.page-top .dentition .chart::before {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: #8a7b5e;
  mask-image: url(../images/clip_wave_top.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  top: -6.3rem;
  left: 0;
  transform: scaleX(-1);
}
.page-top .dentition .chart::after {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: #8a7b5e;
  mask-image: url(../images/clip_wave_bottom.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  bottom: -6.3rem;
  left: 0;
}
.page-top .dentition .chart__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  margin-bottom: 1.5rem;
}
.page-top .dentition .chart__heading h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.page-top .dentition .chart__heading h2 span {
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
}
.page-top .dentition .chart__heading h2 span:nth-of-type(1) {
  display: flex;
  align-items: center;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
}
.page-top .dentition .chart__heading h2 span:nth-of-type(1) span {
  position: relative;
}
.page-top .dentition .chart__heading h2 span:nth-of-type(1) span::before {
  content: "・・";
  display: block;
  color: var(--base-color);
  font-size: 2.4rem;
  letter-spacing: 0.6em;
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: 0.5rem;
  pointer-events: none;
}
.page-top .dentition .chart__heading h2 span:nth-of-type(2) {
  width: fit-content;
  padding: 0 0.5rem;
  background: var(--color-beige);
  border-radius: 0.5rem;
  font-size: 4rem;
  line-height: var(--lh-14);
}
.page-top .dentition .chart__en {
  height: 1.8rem;
}
.page-top .dentition .chart__en img {
  width: auto;
  height: 100%;
}
.page-top .dentition .chart__note {
  width: fit-content;
  padding: 1rem 1.5rem;
  margin: 0 auto 6rem;
  border: 1px dotted #d4cdbf;
  border-radius: 0.5rem;
}
.page-top .dentition .chart__note p {
  line-height: var(--lh-16);
  text-align: center;
}
.page-top .dentition .chart__note p span {
  font-weight: 700;
}
.page-top .dentition .chart__list li {
  width: 18rem;
}
.page-top .dentition .chart__list li:not(:first-of-type) {
  margin-top: -4rem;
}
.page-top .dentition .chart__list li:nth-of-type(even) {
  margin-inline: auto 0;
}
.page-top .dentition .chart__list li:has(> img) {
  position: relative;
}
.page-top .dentition .chart__list li:has(> img) > img {
  width: 9.5rem;
  height: auto;
  position: absolute;
  top: -8rem;
  left: 50%;
  translate: -50% 0;
}
.page-top .dentition .chart__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--color-green);
  border-radius: 50%;
  color: var(--base-color);
  position: relative;
  z-index: 1;
}
@media (hover: hover) {
  .page-top .dentition .chart__item:hover::after {
    scale: 1.3;
  }
}
.page-top .dentition .chart__item::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 1rem;
  background: var(--base-color);
  clip-path: polygon(100% 1%, 0 0, 50% 100%);
  transition: scale 0.3s;
}
.page-top .dentition .chart__item span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  text-align: center;
}
.page-top .dentition .chart__item img {
  width: 12rem;
  height: auto;
}
.page-top .dentition .support {
  position: relative;
  background: #a19884;
  padding: 13rem 2rem 4rem;
  color: var(--base-color);
}
.page-top .dentition .support::after {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: #a19884;
  mask-image: url(../images/clip_wave_bottom.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  bottom: -6.3rem;
  left: 0;
}
.page-top .dentition .support__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 7.6rem;
  font-size: 2.2rem;
  text-align: center;
}
.page-top .dentition .support__text p {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
}
.page-top .dentition .support__text p span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  border-bottom: 0.5rem solid var(--color-green);
}
.page-top .dentition .support__bubble p {
  display: flex;
  justify-content: center;
  width: 22.5rem;
  height: 5.2rem;
  padding-top: 0.6rem;
  font-size: 1.5rem;
  position: relative;
}
.page-top .dentition .support__bubble p::before {
  content: "";
  display: block;
  width: 22.5rem;
  height: 5.2rem;
  background: url(../images/icon_bubble_01.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
.page-top .dentition .support__bubble p:nth-of-type(2) {
  margin-inline: auto 0;
}
.page-top .dentition .support__bubble p:nth-of-type(2)::before {
  scale: -1 1;
}
.page-top .dentition .support .contact {
  position: relative;
}
.page-top .dentition .support .contact__en {
  width: 21.7rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: -2rem;
  left: 50%;
  translate: -50% 0;
}
.page-top .dentition .support .contact__en img {
  width: 100%;
  height: auto;
}
.page-top .dentition .support .contact__title {
  height: 8rem;
  padding-top: 4rem;
  background: var(--color-green-pale);
  border-radius: 2rem 2rem 0 0;
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
}
.page-top .dentition .support .contact__inner {
  padding: 3.2rem 2rem;
  background: var(--base-color);
  border-radius: 0 0 2rem 2rem;
}
.page-top .orthodontic {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  padding-top: 1rem;
  background: #e5efe3;
  z-index: 1;
}
.page-top .orthodontic::after {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: #e5efe3;
  mask-image: url(../images/clip_wave_bottom.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  bottom: -6.3rem;
  left: 0;
}
.page-top .orthodontic__lead img {
  width: 100%;
  height: auto;
}
.page-top .orthodontic__slide {
  display: flex;
  mix-blend-mode: multiply;
  opacity: 0.6;
  position: absolute;
  top: 30rem;
  left: 0;
  overflow: hidden;
}
.page-top .orthodontic__slide div {
  flex: none;
  width: 130rem;
  height: 6rem;
  animation: textSlide 20s linear infinite;
}
.page-top .orthodontic__slide div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-top .orthodontic__text {
  padding: 10.4rem 2rem 0;
  margin-bottom: 2rem;
  position: relative;
}
.page-top .orthodontic__text .heading02__main span {
  margin-left: 0.5rem;
}
.page-top .orthodontic__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 13rem;
  aspect-ratio: 1/1;
  background: var(--color-green);
  border-radius: 50%;
  position: absolute;
  top: -1rem;
  right: 1rem;
}
.page-top .orthodontic__badge::before {
  content: "";
  display: block;
  width: 14rem;
  aspect-ratio: 1/1;
  border: 2px dotted var(--color-green);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
}
.page-top .orthodontic__badge p {
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  text-align: center;
}
.page-top .orthodontic__badge p:nth-of-type(1) {
  position: relative;
}
.page-top .orthodontic__badge p:nth-of-type(1)::before {
  content: "・・・・";
  display: block;
  color: var(--base-color);
  font-size: 1.6rem;
  letter-spacing: 0.5em;
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: 0.5rem;
  pointer-events: none;
}
.page-top .orthodontic__item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5.6rem 2rem;
  background: var(--base-color);
}
.page-top .orthodontic__item h3 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: var(--lh-16);
}
.page-top .orthodontic__item h3 span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
}
.page-top .orthodontic__item h3 span:nth-of-type(2) {
  font-size: 2.4rem;
}
.page-top .orthodontic__item h3 span:nth-of-type(2) .accent {
  color: var(--color-beige);
  font-size: 3rem;
  position: relative;
}
.page-top .orthodontic__item h3 span:nth-of-type(2) .accent::before {
  content: "・・・";
  display: block;
  font-size: 3rem;
  letter-spacing: 0.6em;
  line-height: 1;
  position: absolute;
  top: -2rem;
  left: 0.8rem;
  pointer-events: none;
}
.page-top .orthodontic__item .c-button {
  justify-content: unset;
  margin-top: 1rem;
  padding: 1rem 3rem;
}
.page-top .orthodontic__item.child {
  margin-right: 2rem;
  border-radius: 0 4rem 4rem 0;
}
.page-top .orthodontic__item.child .orthodontic__image {
  margin-left: -2rem;
}
.page-top .orthodontic__item.child .orthodontic__image img {
  border-radius: 0 2rem 2rem 0;
}
.page-top .orthodontic__item.adult {
  margin-left: 2rem;
  border-radius: 4rem 0 0 4rem;
}
.page-top .orthodontic__item.adult h3 span:nth-of-type(2) .accent::before {
  content: "・・";
}
.page-top .orthodontic__item.adult .orthodontic__image {
  margin-right: -2rem;
}
.page-top .orthodontic__item.adult .orthodontic__image img {
  border-radius: 2rem 0 0 2rem;
}
.page-top .orthodontic__image {
  width: calc(100% + 2rem);
}
.page-top .orthodontic__image img {
  width: 100%;
  height: auto;
}
.page-top .orthodontic__menu {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 4.8rem 2rem;
  background: var(--base-color);
  border-radius: 0 4rem 4rem 0;
}
.page-top .orthodontic .banner {
  display: flex;
  align-items: center;
  height: 17rem;
  border-radius: 1rem;
  padding: 0 2rem;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media (hover: hover) {
  .page-top .orthodontic .banner:hover svg {
    scale: 1.2;
  }
}
.page-top .orthodontic .banner img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-top .orthodontic .banner__sub {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: var(--base-color);
  padding: 0.3rem 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.page-top .orthodontic .banner__sub span {
  color: var(--color-beige);
}
.page-top .orthodontic .banner__main {
  display: block;
  margin-top: 0.5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 3rem;
  line-height: var(--lh-14);
  letter-spacing: 0.15em;
}
.page-top .orthodontic .banner svg {
  width: 4.2rem;
  height: 4.2rem;
  position: absolute;
  right: 1.6rem;
  bottom: 0.5rem;
  transition: scale 0.3s;
}
.page-top .orthodontic .banner.green .banner__main {
  color: var(--color-green);
}
.page-top .orthodontic .banner.green svg {
  fill: var(--color-green);
}
.page-top .orthodontic .banner.blue .banner__main {
  color: #50a6cc;
}
.page-top .orthodontic .banner.blue svg {
  fill: #50a6cc;
}
.page-top .orthodontic .banner.orange .banner__main {
  color: #df9526;
}
.page-top .orthodontic .banner.orange .banner__main span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .orthodontic .banner.orange .banner__main span:nth-of-type(1) {
  font-size: 3rem;
}
.page-top .orthodontic .banner.orange .banner__main span:nth-of-type(2) {
  font-size: 2rem;
}
.page-top .orthodontic .banner.orange svg {
  fill: #df9526;
}
.page-top .case {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
  background: #eef5ed;
  padding: 6.4rem 0 13rem;
}
.page-top .case__badge {
  width: 15.7rem;
  height: 15rem;
  padding-top: 3rem;
  background: #8a7b5e;
  color: var(--base-color);
  text-align: center;
  clip-path: polygon(100% 0, 100% 100%, 50% 80%, 0 100%, 0% 0%);
  position: absolute;
  top: 5.2rem;
  right: 2rem;
  z-index: 1;
}
.page-top .case__badge p {
  font-size: 1.9rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
  line-height: var(--lh-14);
}
.page-top .case__badge p:nth-of-type(2) {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
.page-top .case__badge p:nth-of-type(2) span {
  font-size: 2.9rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .case .heading02 {
  margin-top: 6.4rem;
  padding: 0 2rem;
}
.page-top .case .splide__arrows {
  width: calc(100% - 1rem);
  position: absolute;
  top: 7.4rem;
  left: 50%;
  translate: -50% 0;
  z-index: 3;
}
.page-top .case .splide__arrow {
  width: 3rem;
  height: 6rem;
  background: #8a7b5e;
  opacity: 0.8;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  cursor: pointer;
  pointer-events: auto;
  position: absolute;
}
.page-top .case .splide__arrow--prev {
  left: 0;
}
.page-top .case .splide__arrow--next {
  right: 0;
  scale: -1 1;
}
.page-top .case .splide__slide .c-caseBox__label,
.page-top .case .splide__slide .c-accordion {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.page-top .case .splide__slide.is-active .c-caseBox__label, .page-top .case .splide__slide.is-active .c-accordion {
  opacity: 1;
  visibility: visible;
}
.page-top .case__link {
  display: flex;
  gap: 2.4rem;
  flex-direction: column;
  padding: 0 2rem;
}
.page-top .case__instagram p {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
}
.page-top .case__instagram p::before {
  content: "＼ ";
}
.page-top .case__instagram p::after {
  content: " ／";
}
.page-top .menu {
  position: relative;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  padding: 4rem 2rem;
  background: #e5efe3;
  z-index: 2;
}
.page-top .menu::before {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: #e5efe3;
  mask-image: url(../images/clip_wave_top.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  top: -6.3rem;
  left: 0;
  transform: scaleX(-1);
}
.page-top .menu::after {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: #e5efe3;
  mask-image: url(../images/clip_wave_bottom.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  bottom: -6.3rem;
  left: 0;
}
.page-top .menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-top .menu__list li {
  width: calc((100% - 1rem) / 2);
}
.page-top .menu__list li a {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 1.2rem;
  border-radius: 1rem;
  color: var(--base-color);
  position: relative;
}
@media (hover: hover) {
  .page-top .menu__list li a:hover::after {
    scale: 1.3;
  }
}
.page-top .menu__list li a::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: #c5b79a;
  border-radius: 50%;
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  transition: scale 0.3s;
}
.page-top .menu__list li a span {
  display: block;
  line-height: var(--lh-14);
}
.page-top .menu__list li a span:nth-of-type(1) {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.page-top .menu__list li a span:nth-of-type(2) {
  font-size: 1.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .menu__list li a img {
  width: 9rem;
  height: auto;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
.page-top .menu__list li a.beige {
  background: var(--color-beige);
}
.page-top .menu__list li a.brown {
  background: #8f8165;
}
.page-top .preventive {
  position: relative;
  background: #e8e1d4;
  padding: 13rem 2rem 0;
  z-index: 1;
}
.page-top .preventive::after {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: #e8e1d4;
  mask-image: url(../images/clip_wave_bottom.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  bottom: -6.3rem;
  left: 0;
}
.page-top .preventive__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 9.2rem;
}
.page-top .preventive__inner .heading02__main span {
  margin-right: 0.5rem;
}
.page-top .preventive__image {
  width: 100%;
}
.page-top .preventive__image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
.page-top .preventive .whitening {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 6.8rem 2rem 5.6rem;
  background: var(--base-color);
  border-radius: 2rem;
  position: relative;
}
.page-top .preventive .whitening__en {
  width: 28.2rem;
  position: absolute;
  top: -2rem;
  left: 50%;
  translate: -50% 0;
}
.page-top .preventive .whitening__en img {
  width: 100%;
  height: auto;
}
.page-top .preventive .whitening__heading {
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.page-top .preventive .whitening__heading span {
  font-size: 2.6rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .preventive .whitening__image {
  width: 100%;
}
.page-top .preventive .whitening__image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.page-top .preventive .whitening .c-button {
  padding: 1rem 2rem;
}
.page-top .doctor {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 12rem 2rem 16rem;
  background: #e6ece4;
  position: relative;
}
.page-top .doctor::before {
  content: "";
  display: block;
  width: 21.4rem;
  height: calc(100% - 4.2rem);
  border-radius: 0 0 4rem 0;
  background: #eef5ed;
  position: absolute;
  top: -6rem;
  left: 0;
  z-index: -1;
}
.page-top .doctor .heading01__en {
  top: 2rem;
}
.page-top .doctor__image {
  margin-top: -7rem;
}
.page-top .doctor__image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
.page-top .doctor__catch {
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
}
.page-top .doctor__catch span {
  color: var(--color-green);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  position: relative;
}
.page-top .doctor__catch span:before {
  content: "・・・・・";
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.6em;
  line-height: 1;
  position: absolute;
  top: -2rem;
  left: 0.5rem;
  pointer-events: none;
}
.page-top .doctor__name p {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
}
.page-top .doctor__name p:nth-of-type(1) {
  font-size: 1.8rem;
}
.page-top .doctor__name p:nth-of-type(2) {
  font-size: 3rem;
}
.page-top .doctor__name p:nth-of-type(2) span {
  display: inline-block;
  margin-right: 1rem;
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .doctor__career li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page-top .doctor__career li::before {
  flex: none;
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-beige);
  border-radius: 50%;
}
.page-top .doctor .thoughts {
  display: block;
  height: 16rem;
  padding: 3rem 1.5rem 0;
  margin-bottom: 2rem;
  border-radius: 1rem;
  color: var(--base-color);
  overflow: hidden;
  position: relative;
}
@media (hover: hover) {
  .page-top .doctor .thoughts:hover svg {
    scale: 1.1;
  }
}
.page-top .doctor .thoughts__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-top .doctor .thoughts__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-top .doctor .thoughts__en {
  display: block;
  width: 16.3rem;
  margin-bottom: 1rem;
}
.page-top .doctor .thoughts__en img {
  width: 100%;
  height: auto;
}
.page-top .doctor .thoughts__lead {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 1.8rem;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
}
.page-top .doctor .thoughts__lead span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.5rem;
}
.page-top .doctor .thoughts svg {
  width: 4.2rem;
  height: 4.2rem;
  fill: #c7d5c5;
  position: absolute;
  right: 1.6rem;
  bottom: 0.5rem;
  transition: scale 0.3s;
}
.page-top .features {
  position: relative;
  position: relative;
  z-index: 1;
}
.page-top .features::before {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: #ebebeb;
  mask-image: url(../images/clip_wave_top.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  top: -6.3rem;
  left: 0;
  transform: scaleX(-1);
}
.page-top .features::after {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: #ebebeb;
  mask-image: url(../images/clip_wave_bottom.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  bottom: -6.3rem;
  left: 0;
}
.page-top .features__inner {
  padding: 1rem 2rem;
  position: relative;
}
.page-top .features__inner::before, .page-top .features__inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 70rem;
  background: url(../images/bg_home_02.webp) no-repeat center/cover;
  position: absolute;
  z-index: -1;
}
.page-top .features__inner::before {
  top: 0;
  left: 0;
}
.page-top .features__inner::after {
  bottom: 0;
  right: 0;
  rotate: 180deg;
}
.page-top .features .heading02 {
  margin-bottom: 3.2rem;
  gap: 1rem;
}
.page-top .features .heading02__sub span {
  color: var(--color-green);
  font-size: 4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .features__list {
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
}
.page-top .features__item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.page-top .features__item.reverse .features__image {
  margin-inline: auto 0;
}
.page-top .features__item.reverse .features__num {
  right: auto;
  left: -2rem;
}
.page-top .features__visual {
  position: relative;
}
.page-top .features__image {
  width: 22rem;
}
.page-top .features__image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.page-top .features__num {
  width: 19rem;
  mix-blend-mode: multiply;
  position: absolute;
  bottom: 0;
  right: -2rem;
}
.page-top .features__num img {
  width: 100%;
  height: auto;
}
.page-top .features 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);
}
.page-top .news {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 12rem 2rem;
  background: #e5efe3;
}
.page-top .news__tab {
  display: flex;
  gap: 0.5rem;
}
.page-top .news__tab button {
  display: grid;
  place-content: center;
  width: calc((100% - 1.5rem) / 4);
  height: 3rem;
  border: 1px solid var(--color-green);
  border-radius: 2.5rem;
  color: var(--color-green);
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
}
@media (hover: hover) {
  .page-top .news__tab button:hover {
    background: var(--color-green);
    color: var(--base-color);
  }
}
.page-top .news__tab button.active {
  background: var(--color-green);
  color: var(--base-color);
}
.page-top .news__unit {
  display: none;
}
.page-top .news__unit.active {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.page-top .news__item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dotted var(--color-green);
  color: var(--font-color);
  transition: color 0.3s;
}
@media (hover: hover) {
  .page-top .news__item:hover {
    color: var(--color-brown);
  }
}
.page-top .news__category {
  display: grid;
  place-content: center;
  width: 12rem;
  height: 3rem;
  border: 1px solid var(--color-green);
  border-radius: 2.5rem;
  font-size: 1.3rem;
  color: var(--color-green);
}
.page-top .news__title {
  width: 100%;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-top .calendar {
  position: relative;
  background: #eef5ed;
  padding: 0 2rem 10rem;
}
.page-top .calendar::before {
  content: "";
  display: block;
  width: 100%;
  height: 6.4rem;
  background: #eef5ed;
  mask-image: url(../images/clip_wave_top.svg);
  mask-size: 101% 101%;
  mask-repeat: no-repeat;
  position: absolute;
  top: -6.3rem;
  left: 0;
  transform: scaleX(-1);
}
.page-top .calendar .heading02 {
  margin-bottom: 3.2rem;
}
.page-top .calendar__inner iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/300;
}

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

記事一覧

------------------------------------------------------------ */
.archive {
  padding: 8rem 2rem;
}
.archive__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.archive__select {
  width: 100%;
  font-size: 1.6rem;
  padding: 1rem;
  border: 1px solid var(--font-color);
  color: var(--font-color);
  appearance: none;
  background: url(../images/icon_arrow_02.svg) no-repeat 95%/2rem;
}
.archive__inner {
  padding-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.articleUnit img {
  width: 100%;
  height: auto;
  aspect-ratio: 335/220;
  border-radius: 1rem;
}
.articleUnit .c-caseBox .imageSlider {
  margin-bottom: 0;
}
.articleUnit a {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  color: var(--font-color);
  padding: 2.4rem 0;
  border-bottom: 1px dotted var(--color-green);
  position: relative;
  z-index: 0;
}
@media (hover: hover) {
  .articleUnit a:hover .articleUnit__title {
    text-decoration: underline;
  }
}
.articleUnit__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 335/220;
  border-radius: 1rem;
}
.articleUnit__date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.articleUnit__category {
  display: grid;
  place-content: center;
  width: 12rem;
  height: 3rem;
  border: 1px solid var(--color-green);
  border-radius: 2.5rem;
  font-size: 1.3rem;
  color: var(--color-green);
}
.articleUnit__title {
  line-height: var(--lh-16);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.PageNavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.PageNavi .page-numbers {
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  color: var(--font-color);
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .PageNavi .page-numbers:hover {
    opacity: 0.7;
  }
}
.PageNavi .page-numbers:not(.prev):not(.next):not(.current):not(.dots) {
  border: 1px solid var(--color-green-dark);
}
.PageNavi .page-numbers.current {
  background: var(--color-green-dark);
  pointer-events: none;
  color: var(--base-color);
}

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

記事詳細

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

.singleNavi {
  padding: 8rem 2rem 0;
}
.singleNavi__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.singleNavi__prev, .singleNavi__archive, .singleNavi__next {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--font-color);
  transition: opacity 0.3s, translate 0.3s;
}
.singleNavi__prev svg, .singleNavi__archive svg, .singleNavi__next svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--font-color);
}
.singleNavi__archive {
  margin-inline: 2rem;
}
@media (hover: hover) {
  .singleNavi__archive:hover {
    opacity: 0.8;
  }
}
@media (hover: hover) {
  .singleNavi__prev:hover {
    translate: -0.3rem;
  }
}
.singleNavi__prev svg {
  scale: -1 1;
}
@media (hover: hover) {
  .singleNavi__next:hover {
    translate: 0.3rem;
  }
}

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

vietnamese
ベトナム語ページ用スタイル

------------------------------------------------------------ */
.pc-content:has(~ .allContent .page-vietnamese) h1 {
  font-family: "Arial", "Noto Sans", "Yu Gothic", YuGothic, sans-serif;
}

.page-vietnamese * {
  font-family: "Arial", "Noto Sans", "Yu Gothic", YuGothic, sans-serif;
}
.page-vietnamese .c-pageTitle p,
.page-vietnamese .h2-title,
.page-vietnamese .h3-title,
.page-vietnamese .h4-title,
.page-vietnamese .h5-title,
.page-vietnamese .c-outline__title h2,
.page-vietnamese .c-table th {
  font-family: "Georgia", "Times New Roman", "Noto Serif", "Yu Mincho", YuMincho, serif;
}
/*# sourceMappingURL=style.css.map */
