@charset "UTF-8";
:root {
  --base-color: #fff;
  --font-color: #333;
  --primary-green: #aacd06;
  --primary-yellow: #ffca3a;
  --primary-pink: #f962b8;
  --primary-blue: #00b0de;
  --font-primary:
    "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "BIZ UDPGothic", "Meiryo", "MS PGothic", sans-serif;
  --font-secondary:
    "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho",
    "MS Mincho", serif;
  --lh-sm: 1.4;
  --lh-md: 1.6;
  --lh-lg: 1.8;
}

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

Reset

------------------------------------------------------------ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
main {
  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.2727272727vw;
  }
}

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: var(--font-primary);
}

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-lg);
  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 {
  text-align: center;
  line-height: var(--lh-md);
  font-weight: 700;
  margin-bottom: 4.8rem;
}

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

パンくずリスト

------------------------------------------------------------ */
.breadcrumb {
  color: var(--font-color);
  padding: 2rem;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-inline: 0.5rem;
  color: var(--font-color);
}
.breadcrumb__item:not(:has(a)) {
  text-decoration: underline;
}
.breadcrumb__link {
  color: var(--font-color);
  transition: color 0.3s;
}
@media (hover: hover) {
  .breadcrumb__link:hover {
    color: var(--primary-green);
  }
}

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

カレンダー

------------------------------------------------------------ */
.c-calendar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-inline: auto;
  padding: 8rem 2rem;
}
.c-calendar .heading02 {
  margin-bottom: 1rem;
}
.c-calendar__nav {
  inline-size: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-calendar__month {
  font-size: 1.8rem;
  font-weight: 700;
}
.c-calendar__arrow {
  flex: none;
  inline-size: 2.3rem;
  block-size: 2.3rem;
  display: grid;
  place-items: center;
  background: var(--primary-green);
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-calendar__arrow:hover {
    opacity: 0.7;
  }
}
.c-calendar__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.c-calendar__arrow svg {
  inline-size: 1rem;
  block-size: 1rem;
  fill: var(--base-color);
}
.c-calendar__arrow.prev svg {
  rotate: -90deg;
}
.c-calendar__arrow.next svg {
  rotate: 90deg;
}
.c-calendar__panel[hidden] {
  display: none;
}
.c-calendar__table {
  inline-size: 100%;
  table-layout: fixed;
}
.c-calendar__table th,
.c-calendar__table td {
  font-size: 1.2rem;
  font-weight: 700;
  border: 1px solid #d4d4d4;
}
.c-calendar__table th {
  block-size: 3rem;
  color: var(--font-color);
  text-align: center;
  background: #f0f0f0;
}
.c-calendar__table th.sun {
  color: #dc2435;
}
.c-calendar__table th.sat {
  color: #1a00da;
}
.c-calendar__table td {
  block-size: 4.2rem;
  vertical-align: top;
  color: var(--font-color);
  text-align: end;
  padding: 0.4rem 0.6rem;
}
.c-calendar__table td.closed {
  background: #fcdde6;
}
.c-calendar__table td.short {
  background: #cbf0fe;
}
.c-calendar__table td.pm {
  background: #feeec0;
}
.c-calendar__table td.am {
  background: #e5ddfe;
}
.c-calendar__table td.other {
  color: #ccc;
}
.c-calendar__legend {
  inline-size: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}
.c-calendar__legend li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  color: var(--font-color);
}
.c-calendar__legend li::before {
  content: "";
  inline-size: 1.5rem;
  block-size: 1.5rem;
  border: 1px solid #d4d4d4;
}
.c-calendar__legend li.closed::before {
  background: #fcdde6;
}
.c-calendar__legend li.pm::before {
  background: #feeec0;
}
.c-calendar__legend li.am::before {
  background: #e5ddfe;
}
.c-calendar__legend li.short::before {
  background: #cbf0fe;
}

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

ボタン

------------------------------------------------------------ */
.buttonWrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.c-button {
  position: relative;
  inline-size: 100%;
  min-block-size: 6rem;
  display: flex;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--font-color);
  padding: 1rem 5.2rem;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-button:hover > svg {
    translate: 0.3rem -50%;
  }
}
.c-button span {
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: var(--lh-md);
  color: var(--base-color);
  text-align: center;
}
.c-button span svg {
  inline-size: 1.8rem;
  block-size: 1.8rem;
  fill: var(--base-color);
}
.c-button > svg {
  position: absolute;
  inset: 50% 2rem auto auto;
  translate: 0 -50%;
  flex: none;
  inline-size: 1.8rem;
  block-size: 1.8rem;
  fill: var(--base-color);
  transition: translate 0.3s;
}

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

WEB予約 / TEL ボタンユニット

------------------------------------------------------------ */
.c-btnUnit {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  inline-size: 100%;
}
.c-btnUnit__reservation, .c-btnUnit__tel {
  inline-size: 100%;
  block-size: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-weight: 700;
  color: var(--base-color);
  line-height: 1;
  border-radius: 4rem;
  transition: filter 0.3s;
}
@media (hover: hover) {
  .c-btnUnit__reservation:hover, .c-btnUnit__tel:hover {
    filter: brightness(1.1);
  }
}
.c-btnUnit__reservation {
  background: var(--primary-green);
}
.c-btnUnit__tel {
  background: var(--primary-yellow);
}
.c-btnUnit__main {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.4rem;
}
.c-btnUnit__main svg {
  flex: none;
  fill: var(--base-color);
  inline-size: 2.4rem;
  block-size: 2.4rem;
}

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

症例紹介

------------------------------------------------------------ */
.c-caseBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
.c-caseBox .imageSlider {
  position: relative;
  z-index: 0;
}
.c-caseBox .imageSlider__before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
}
.c-caseBox .imageSlider__before::before {
  content: "";
  width: 4rem;
  height: 100%;
  background: url(../images/bg_slider.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: -2rem;
  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: 7.2rem;
  height: 2.8rem;
  background: var(--primary-green);
  color: var(--base-color);
  font-size: 1.5rem;
  font-weight: 700;
  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: 400/270;
}
.c-caseBox .imageSlider__after {
  position: relative;
  z-index: -1;
}
.c-caseBox .imageSlider__after::after {
  content: "治療後";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.2rem;
  height: 2.8rem;
  background: var(--primary-green);
  color: var(--base-color);
  font-size: 1.5rem;
  height: 3.2rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
}
.c-caseBox .imageSlider__after img {
  width: 100%;
  height: auto;
  aspect-ratio: 400/270;
}
.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 .imageLong {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.c-caseBox .imageLong__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-caseBox .imageLong__item img {
  inline-size: 100%;
  block-size: auto;
}
.c-caseBox .imageLong__arrow {
  inline-size: 4rem;
  block-size: 4rem;
  rotate: 180deg;
  fill: #aaaaaa;
}
.c-caseBox .imageLong__desc p {
  text-align: justify;
}
.c-caseBox details {
  width: 100%;
  background: var(--primary-green);
  border-radius: 0.5rem;
}
.c-caseBox details summary {
  position: relative;
  padding: 2rem;
  font-weight: 700;
  line-height: var(--lh-md);
  color: var(--base-color);
  text-align: center;
  cursor: pointer;
}
.c-caseBox details summary::-webkit-details-marker {
  display: none;
}
.c-caseBox details summary .ico {
  position: absolute;
  inset: 50% 2rem auto auto;
  translate: 0 -50%;
  inline-size: 1rem;
  block-size: 1rem;
}
.c-caseBox details summary .ico::before, .c-caseBox details summary .ico::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  background: var(--base-color);
  transition: rotate 0.3s;
}
.c-caseBox details summary .ico::before {
  inline-size: 1rem;
  block-size: 1px;
}
.c-caseBox details summary .ico::after {
  inline-size: 1px;
  block-size: 1rem;
}
.c-caseBox details[open] summary .ico::before {
  rotate: 45deg;
}
.c-caseBox details[open] summary .ico::after {
  rotate: 45deg;
}
.c-caseBox details .content {
  padding: 0 1rem 2rem;
}
.c-caseBox details .content__inner {
  background: var(--base-color);
  border-radius: 0.5rem;
  padding: 2rem 1rem;
}

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

Q＆A

------------------------------------------------------------ */
.c-faq {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-faq details {
  background: var(--primary-green);
  border-radius: 0.5rem;
}
.c-faq details summary .question,
.c-faq details .content .answer {
  flex: none;
  display: grid;
  place-content: center;
  inline-size: 3rem;
  block-size: 3rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-green);
  background: var(--base-color);
  border-radius: 50%;
  margin-top: 0.2rem;
}
.c-faq details summary,
.c-faq details .content__inner {
  display: flex;
  gap: 1rem;
}
.c-faq details summary {
  padding: 1.5rem 2rem;
  cursor: pointer;
}
.c-faq details summary::-webkit-details-marker {
  display: none;
}
.c-faq details summary .question {
  color: var(--primary-green);
  background: var(--base-color);
}
.c-faq details summary .txt {
  margin-block: auto;
  flex: 1;
  font-weight: 700;
  line-height: var(--lh-md);
  color: var(--base-color);
}
.c-faq details summary .ico {
  position: relative;
  flex: none;
  inline-size: 1rem;
  block-size: 1rem;
  margin-block: auto;
}
.c-faq details summary .ico::before, .c-faq details summary .ico::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  background: var(--base-color);
  transition: rotate 0.3s;
}
.c-faq details summary .ico::before {
  inline-size: 1rem;
  block-size: 1px;
}
.c-faq details summary .ico::after {
  inline-size: 1px;
  block-size: 1rem;
}
.c-faq details[open] summary .ico::before {
  rotate: 45deg;
}
.c-faq details[open] summary .ico::after {
  rotate: 45deg;
}
.c-faq details .content {
  padding: 0 1rem 2.4rem;
}
.c-faq details .content__inner {
  background: var(--base-color);
  border-radius: 0.5rem;
  padding: 2rem 2rem 2rem 1rem;
}
.c-faq details .content .answer {
  color: var(--base-color);
  background: var(--primary-yellow);
}
.c-faq details .content__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--font-color);
}
.c-faq details .content__text p {
  text-align: justify;
}

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

流れパターン

------------------------------------------------------------ */
.c-flow {
  display: flex;
  flex-direction: column;
  gap: 5.2rem;
}
.c-flow__item {
  position: relative;
  display: flex;
  gap: 1rem;
}
.c-flow__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3.5rem;
  translate: -50% 0;
  inline-size: 2px;
  height: 100%;
  background: var(--primary-green);
}
.c-flow__item:not(:last-child)::before {
  top: 7rem;
}
.c-flow__num {
  flex: none;
  inline-size: 7rem;
  block-size: 7rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: var(--primary-green);
  border-radius: 50%;
}
.c-flow__num::after {
  content: "";
  position: absolute;
  inset: 50% 50% auto 50%;
  translate: -50% -50%;
  inline-size: 100%;
  block-size: 1px;
  background: var(--base-color);
}
.c-flow__num p {
  font-weight: 700;
  line-height: 1;
  color: var(--base-color);
}
.c-flow__num p.step {
  font-size: 1.4rem;
}
.c-flow__num p.num {
  font-size: 2rem;
}
.c-flow__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-block: auto;
}
.c-flow__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: var(--lh-md);
}
.c-flow__image img {
  inline-size: 100%;
  block-size: auto;
}
.c-flow__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-flow__desc p {
  text-align: justify;
}

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

リスト

------------------------------------------------------------ */
.c-listBox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-listBox li {
  display: flex;
  gap: 0.8rem;
  font-weight: 700;
  color: #343434;
}
.c-listBox li::before {
  content: "";
  flex: none;
  inline-size: 0.8rem;
  block-size: 1rem;
  margin-block-start: 1rem;
  background: var(--primary-green);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.c-listBox.border {
  border: 1px solid #c7c7c7;
  padding: 3rem 2rem;
}
.c-listBox.number {
  counter-reset: list-counter;
}
.c-listBox.number li {
  font-weight: unset;
  counter-increment: list-counter;
}
.c-listBox.number li::before {
  content: counter(list-counter, decimal-leading-zero);
  inline-size: auto;
  block-size: auto;
  font-weight: 700;
  color: var(--primary-green);
  background: none;
  clip-path: none;
  margin-block-start: 0;
}

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

住所 + Google マップ + マップ関連リンク

------------------------------------------------------------ */
.c-map {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  inline-size: 100%;
}
.c-map__address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-map__address svg {
  flex: none;
  inline-size: 1.8rem;
  block-size: 1.8rem;
  fill: var(--primary-green);
}
.c-map iframe {
  inline-size: 100%;
  block-size: auto;
  aspect-ratio: 400/200;
}
.c-map__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-map__parking, .c-map__google {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--font-color);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-map__parking:hover, .c-map__google:hover {
    text-decoration: none;
  }
}
.c-map__parking svg, .c-map__google svg {
  flex: none;
  inline-size: 1.8rem;
  block-size: 1.8rem;
  fill: var(--primary-green);
}
.c-map__google svg {
  fill: var(--font-color);
}

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

newsのリスト

------------------------------------------------------------ */
.c-newsList {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-newsList__content {
  display: none;
}
.c-newsList__content.active {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.c-newsList__noarticle {
  font-weight: 700;
}
.c-newsList .item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 1rem;
  width: 100%;
  color: var(--font-color);
  position: relative;
}
@media (hover: hover) {
  .c-newsList .item:hover .item__title {
    text-decoration: underline;
  }
}
.c-newsList .item__category {
  display: grid;
  place-content: center;
  width: 7rem;
  height: 2.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--base-color);
  background: var(--font-color);
}
.c-newsList .item__category.blog {
  background: var(--primary-green);
}
.c-newsList .item__category.case {
  background: var(--primary-yellow);
}
.c-newsList .item__title {
  width: 100%;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

目次

------------------------------------------------------------ */
.c-outline {
  margin-inline: 2rem;
  border: 1px solid var(--font-color);
}
.c-outline__title {
  font-weight: 700;
  line-height: var(--lh-md);
  letter-spacing: 2rem;
  color: var(--base-color);
  text-align: center;
  background: var(--font-color);
  padding-block: 0.8rem;
}
.c-outline ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
}
.c-outline ul li a {
  display: flex;
  gap: 0.5rem;
  line-height: var(--lh-md);
  color: var(--font-color);
}
@media (hover: hover) {
  .c-outline ul li a:hover {
    text-decoration: underline;
  }
}
.c-outline ul li a svg {
  flex: none;
  inline-size: 1.5rem;
  block-size: 1.5rem;
  margin-top: 0.6rem;
  fill: var(--font-color);
}

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

ページタイトル

------------------------------------------------------------ */
.c-pageTitle {
  font-size: 3rem;
  font-weight: 700;
  line-height: var(--lh-sm);
  color: var(--base-color);
  text-align: center;
  background: var(--primary-green);
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 3rem 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pageTitle {
    padding-top: 14rem;
  }
}

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

POINT

------------------------------------------------------------ */
.c-point {
  padding-top: 2.5rem;
  margin-inline: -2rem;
}
.c-point__header {
  position: relative;
}
.c-point__icon {
  inline-size: 10rem;
  position: absolute;
  top: -2.5rem;
  left: 0;
}
.c-point__icon img {
  inline-size: 100%;
  block-size: auto;
}
.c-point__label {
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.7;
  color: var(--primary-green);
  padding-left: 12rem;
}
.c-point__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #f6fae4;
  padding: 6rem 2rem;
  border-block-start: 4px solid var(--primary-green);
}
.c-point__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: var(--lh-md);
}
.c-point__image img {
  inline-size: 100%;
  block-size: auto;
}
.c-point__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-point__desc p {
  text-align: justify;
}
.c-point__desc p a {
  color: var(--primary-green);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-point__desc p a:hover {
    text-decoration: none;
  }
}

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

診療時間

------------------------------------------------------------ */
.c-schedule {
  inline-size: 100%;
}
.c-schedule__table {
  inline-size: 100%;
  table-layout: fixed;
}
.c-schedule__table th,
.c-schedule__table td {
  padding: 1rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  border-block-end: 1px dashed #9f9f9f;
}
.c-schedule__table thead th.c-schedule__header {
  inline-size: 12rem;
  padding: 1rem;
  color: var(--primary-green);
  text-align: start;
}
.c-schedule__table tbody th.c-schedule__time {
  padding: 1rem;
  text-align: start;
  white-space: nowrap;
}
.c-schedule__table tbody td {
  color: var(--primary-green);
}
.c-schedule__note {
  margin-block-start: 1rem;
}
.c-schedule__note p {
  font-size: 1.4rem;
  font-weight: 700;
}

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

テーブル

------------------------------------------------------------ */
.c-table {
  inline-size: 100%;
}
.c-table table {
  inline-size: 100%;
}
.c-table tbody,
.c-table thead,
.c-table tfoot {
  display: contents;
}
.c-table th,
.c-table td {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-table th {
  padding: 1.5rem 1rem;
  font-weight: 700;
  color: var(--primary-green);
  background: #f6fae4;
}
.c-table td {
  padding: 2rem 1rem;
}
.c-table td a {
  color: var(--primary-green);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-table td a:hover {
    text-decoration: none;
  }
}
.c-table.price td {
  text-align: end;
}
.c-table.row {
  border-block-start: 1px solid #d6d6d6;
}
.c-table.row tr {
  display: flex;
  border-block-end: 1px solid #d6d6d6;
}
.c-table.row th {
  flex: none;
  inline-size: 13.5rem;
  justify-content: center;
}
.c-table.row td {
  flex: 1;
}

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

下層のパーツ

------------------------------------------------------------ */
.c-unit {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
.c-unit__item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.c-unit__image img {
  width: 100%;
  height: auto;
}
.c-unit__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-unit__desc p {
  text-align: justify;
}
.c-unit__desc p a {
  color: var(--primary-green);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-unit__desc p a:hover {
    text-decoration: none;
  }
}
.c-unit__desc p strong {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--primary-green);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4rem;
}
.c-unit__desc .break {
  word-break: break-all;
}
.c-unit__map iframe, .c-unit__movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 400/270;
}
.c-unit__figure img {
  width: 100%;
  height: auto;
}
.c-unit__figure figcaption {
  text-align: center;
}
.c-unit__tab {
  display: flex;
  gap: 0.8rem;
  border-block-end: 4px solid var(--primary-green);
}
.c-unit__tab button {
  flex: 1;
  block-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--font-color);
  background: #d9d9d9;
  border-radius: 0.5rem 0.5rem 0 0;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.c-unit__tab button.is-active {
  color: var(--base-color);
  background: var(--primary-green);
}
.c-unit__contents {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.c-unit__contents[hidden] {
  display: none;
}

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

見出し

------------------------------------------------------------ */
.heading01 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
.heading01__row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.heading01__en {
  font-size: 2.4rem;
}
.heading01__en::first-letter {
  color: var(--primary-green);
}
.heading01__badge {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--base-color);
  background: var(--primary-green);
  padding: 0.2rem 0.5rem;
}
.heading01__title {
  font-size: 3.4rem;
}

.heading02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
}
.heading02.row {
  align-items: baseline;
  flex-direction: row;
}
.heading02__en {
  font-size: 2.4rem;
  letter-spacing: 0;
}
.heading02__en::first-letter {
  color: var(--primary-green);
}
.heading02__title {
  font-size: 2.4rem;
}

.heading03 {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  line-height: 1.4;
}
.heading03__row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
  font-size: 2rem;
}
.heading03__en::first-letter {
  color: var(--primary-green);
}
.heading03__sub {
  font-size: 2.4rem;
}
.heading03__title {
  font-size: 3rem;
}

.h2-title,
.h3-title,
.h4-title,
.h5-title {
  font-weight: 700;
  line-height: var(--lh-sm);
  letter-spacing: 0.1rem;
}

.h2-title {
  font-size: 3rem;
  padding: 1.5rem 2rem;
  margin-inline: -2rem;
  border-top: 2px solid var(--primary-green);
  border-bottom: 2px solid var(--primary-green);
}

.h3-title {
  font-size: 2.5rem;
  border-block-end: 2px solid var(--primary-green);
  padding-block-end: 1rem;
  position: relative;
}
.h3-title::after {
  content: "";
  inline-size: 15rem;
  block-size: 2px;
  background: var(--primary-yellow);
  position: absolute;
  inset: auto auto -2px 0;
}

.h4-title {
  display: flex;
  gap: 1rem;
  font-size: 1.8rem;
}
.h4-title::before {
  content: "";
  flex: none;
  inline-size: 0.6rem;
  background: linear-gradient(to bottom, var(--primary-green) 0 66.67%, var(--primary-yellow) 66.67% 100%);
}

.h5-title {
  font-size: 1.8rem;
  color: var(--primary-green);
}

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

section関連の記述

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

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

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

SP時 header

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

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

Footer

------------------------------------------------------------ */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding: 9.2rem 2rem 0;
}
.footer__logo {
  display: block;
  inline-size: 32rem;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .footer__logo:hover {
    opacity: 0.7;
  }
}
.footer__logo img {
  inline-size: 100%;
  block-size: auto;
}
.footer__badges {
  display: flex;
  gap: 4.2rem;
  margin-bottom: 2rem;
}
.footer__badges li {
  inline-size: 10rem;
}
.footer__badges li div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  margin-bottom: 1.2rem;
  background: #e1eeaa;
  border-radius: 50%;
}
.footer__badges li div::before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  background: var(--primary-green);
  border-radius: 50%;
}
.footer__badges li div img {
  inline-size: 5rem;
  block-size: auto;
  position: relative;
  z-index: 1;
}
.footer__badges li p {
  font-weight: 700;
  text-align: center;
  line-height: var(--lh-sm);
}
.footer .c-btnUnit {
  margin-top: 2.6rem;
}
.footer__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 5.6rem 0 2.6rem;
}
.footer__desc p {
  text-align: justify;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__recruit, .footer__town {
  display: block;
  transition: filter 0.3s;
}
@media (hover: hover) {
  .footer__recruit:hover, .footer__town:hover {
    filter: brightness(1.1);
  }
}
.footer__recruit img, .footer__town img {
  inline-size: 100%;
  block-size: auto;
}
.footer__recruit {
  position: relative;
  padding-bottom: 2.5rem;
}
.footer__recruit span {
  position: absolute;
  inset-block-end: 0;
  left: 50%;
  translate: -50% 0;
  inline-size: 35rem;
  block-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--base-color);
  background: var(--primary-green);
}
.footer__recruit span svg {
  inline-size: 1.8rem;
  block-size: 1.8rem;
  fill: var(--base-color);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 2rem;
}
.footer__copy {
  inline-size: calc(100% + 4rem);
  margin-inline: -2rem;
  padding: 3rem 2rem;
  background: var(--font-color);
  font-weight: 700;
  color: var(--base-color);
  line-height: var(--lh-md);
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__copy {
    padding-bottom: 8rem;
  }
}

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

サイドバー

------------------------------------------------------------ */
.menuButton {
  inline-size: 8rem;
  block-size: calc((100vh - 14.5rem) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--font-color);
  position: fixed;
  inset: 0 0 auto auto;
  z-index: 5;
  cursor: pointer;
  transition: filter 0.4s;
}
@media (hover: hover) {
  .menuButton:hover {
    filter: brightness(1.2);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton {
    block-size: 8rem;
  }
}
.menuButton .border {
  margin-top: -12rem;
  inline-size: 2rem;
  block-size: 0.2rem;
  background: var(--base-color);
  position: absolute;
  transition: transform 0.3s, opacity 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .border {
    margin-top: -3rem;
  }
}
.menuButton .border:nth-child(1) {
  transform: translateY(-0.7rem);
}
.menuButton .border:nth-child(3) {
  transform: translateY(0.7rem);
}
.menuButton .text {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--base-color);
  text-align: center;
  letter-spacing: 0.1em;
  writing-mode: vertical-lr;
  text-orientation: upright;
  font-feature-settings: normal;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .text {
    letter-spacing: 0.05em;
    writing-mode: unset;
  }
}
.menuButton.active .border:nth-child(1) {
  transform: rotate(45deg);
}
.menuButton.active .border:nth-child(2) {
  opacity: 0;
}
.menuButton.active .border:nth-child(3) {
  transform: rotate(-45deg);
}

.mvFixedBtn {
  inline-size: 8rem;
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: calc((100vh - 14.5rem) / 3) 0 auto auto;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn {
    inline-size: 100%;
    flex-direction: row;
    inset: auto auto 0 0;
  }
}
.mvFixedBtn__btn {
  inline-size: 8rem;
  block-size: calc((100vh - 14.5rem) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--base-color);
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn {
    flex: 1;
    block-size: 6rem;
    flex-direction: row;
    letter-spacing: 0.05em;
  }
}
.mvFixedBtn__btn svg {
  flex: none;
  inline-size: 2.5rem;
  block-size: 2.5rem;
  fill: var(--base-color);
}
.mvFixedBtn__btn .text {
  font-size: 1.8rem;
  font-weight: 700;
  writing-mode: vertical-lr;
  text-orientation: upright;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn .text {
    writing-mode: unset;
  }
}
.mvFixedBtn__btn.reservation {
  background: var(--primary-green);
  margin-left: auto;
  transition: filter 0.3s;
}
@media (hover: hover) {
  .mvFixedBtn__btn.reservation:hover {
    filter: brightness(1.1);
  }
}
.mvFixedBtn__btn.tel {
  background: var(--primary-yellow);
  position: relative;
  z-index: 0;
}
@media (hover: hover) {
  .mvFixedBtn__btn.tel:hover .large {
    translate: 0 0;
  }
}
@media (hover: hover) {
  body:has(.drawerMenu.active) .mvFixedBtn__btn.tel:hover .large {
    translate: calc(100% + 8rem) 0;
  }
}
.mvFixedBtn__btn.tel .small {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.tel .small {
    flex-direction: row;
  }
}
.mvFixedBtn__btn.tel .large {
  inline-size: 38rem;
  block-size: calc((100vh - 14.5rem) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-yellow);
  position: absolute;
  inset: 0 100% auto auto;
  z-index: 1;
  translate: calc(100% + 8rem) 0;
  transition: translate 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.tel .large {
    display: none;
  }
}
.mvFixedBtn__btn.tel .large span {
  display: flex;
  flex-direction: column;
}
.mvFixedBtn__btn.tel .large span span {
  color: var(--base-color);
}
.mvFixedBtn__btn.tel .large span span.number {
  font-size: 3.5rem;
}
.mvFixedBtn__btn.tel .large span span.hours {
  font-size: 1.5rem;
}
.mvFixedBtn__btn.instagram {
  block-size: 8rem;
  transition: filter 0.3s;
}
@media (hover: hover) {
  .mvFixedBtn__btn.instagram:hover {
    filter: brightness(1.1);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.instagram {
    flex: none;
    inline-size: 6rem;
    block-size: 6rem;
  }
}
.mvFixedBtn__btn.instagram img {
  inline-size: 100%;
  block-size: auto;
}

.pageTop {
  inline-size: 8rem;
  block-size: 6.5rem;
  display: grid;
  place-content: center;
  background: var(--base-color);
  cursor: pointer;
  position: fixed;
  inset: auto 0 0 auto;
  z-index: 3;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pageTop {
    inline-size: 6rem;
    block-size: 6rem;
    inset-block-end: 6rem;
  }
}
@media (hover: hover) {
  .pageTop:hover svg {
    translate: 0 -0.5rem;
  }
}
.pageTop svg {
  inline-size: 1.6rem;
  block-size: 1.6rem;
  fill: var(--font-color);
  transition: translate 0.3s;
}

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

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

PCのみの記述

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

h1 {
  inline-size: 66.6666666667vw;
  padding: 2rem 5rem 0;
  font-size: 1.4rem;
  line-height: var(--lh-md);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  h1 {
    inline-size: 100%;
    padding: 8.6rem 1rem 0;
    color: var(--base-color);
    font-size: 1.2rem;
    -webkit-line-clamp: 2;
    position: absolute;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home h1 {
    padding: 1rem 8rem 0 1rem;
    color: var(--font-color);
    position: fixed;
  }
}

.pc-content {
  inline-size: 100%;
  block-size: 100vh;
  position: fixed;
  inset: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content {
    display: none;
    block-size: unset;
  }
}
.pc-content__image {
  inline-size: 100%;
  block-size: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.pc-content__image picture {
  inline-size: 100%;
  block-size: 100%;
}
.pc-content__image picture img {
  inline-size: 100%;
  block-size: 100%;
}
.pc-content__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: min(44rem, 100%);
  margin-block-start: 5.2rem;
  margin-inline-start: 5rem;
}
.pc-content__logo a {
  display: block;
  inline-size: 100%;
}
.pc-content__logo a img {
  inline-size: 100%;
  block-size: auto;
}
.pc-content__badges {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pc-content__badges li {
  position: relative;
  inline-size: 14rem;
  aspect-ratio: 1/1;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(226, 238, 170, 0.5);
  border-radius: 50%;
}
.pc-content__badges li::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  background: var(--primary-green);
  border-radius: 50%;
  z-index: 0;
}
.pc-content__badges li img {
  position: relative;
  z-index: 1;
  inline-size: 3.2rem;
  block-size: auto;
}
.pc-content__badges li p {
  position: relative;
  z-index: 1;
  font-weight: 700;
  color: var(--base-color);
  line-height: 1.2;
  text-align: center;
}
.pc-content__news {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.16);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-content__news {
    display: none;
  }
}
.pc-content__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.pc-content__heading p {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--font-color);
  position: relative;
}
.pc-content__heading p::first-letter {
  color: var(--primary-green);
}
.pc-content__heading p::after {
  content: "";
  display: block;
  inline-size: 16rem;
  block-size: 1px;
  background: var(--primary-green);
  position: absolute;
  top: 50%;
  right: -17rem;
  translate: 0 -50%;
}
.pc-content__heading a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--font-color);
}
@media (hover: hover) {
  .pc-content__heading a:hover {
    text-decoration: underline;
  }
}
.pc-content__heading a svg {
  inline-size: 1.6rem;
  block-size: 1.6rem;
  fill: var(--font-color);
}
.pc-content__catch {
  width: min(44rem, 100%);
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-inline: 2rem;
  position: absolute;
  inset: 50% 8.3333333333% auto auto;
  translate: 0 -50%;
}
.pc-content__catch .main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pc-content__catch .main p {
  width: fit-content;
  font-size: 5rem;
  font-weight: 700;
  line-height: var(--lh-md);
  color: var(--base-color);
  background: var(--primary-green);
  padding-inline: 1rem;
}
.pc-content__catch .sub {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pc-content__catch .sub p {
  width: fit-content;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--base-color);
  padding: 0.5rem 1rem;
}
.pc-content__catch .sub p span {
  color: var(--primary-green);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .pc-content {
    display: block;
    block-size: 100vh;
    inset: 0;
  }
  .home .pc-content .pc-content__inner {
    inline-size: auto;
    margin: 0;
    position: absolute;
    inset: 5.6rem auto auto 1rem;
    z-index: 1;
  }
  .home .pc-content .pc-content__logo {
    inline-size: 25.5rem;
  }
  .home .pc-content .pc-content__badges {
    gap: 2rem;
  }
  .home .pc-content .pc-content__badges li {
    inline-size: 12.7rem;
    font-size: 1.4rem;
  }
  .home .pc-content .pc-content__catch {
    gap: 2rem;
    padding-inline: 2rem;
    inset: auto auto 11.8483412322vh 0;
    translate: 0 0;
  }
  .home .pc-content .pc-content__catch .main p {
    font-size: 4rem;
  }
  .home .pc-content .pc-content__catch .sub p {
    font-size: 1.6rem;
  }
}

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

メインコンテンツ

------------------------------------------------------------ */
.allContent {
  width: 52rem;
  margin-inline: auto 6.25%;
  position: relative;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .allContent {
    display: contents;
  }
}
.allContent::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #656565;
  opacity: 0.3;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .allContent::before {
    display: none;
  }
}
.allContent__inner {
  width: 44rem;
  background: var(--base-color);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .allContent__inner {
    display: contents;
  }
}
.home .allContent {
  margin-block-start: calc(100vh + 46rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .allContent {
    display: block;
    width: 100%;
  }
}
.home .allContent::after {
  content: "";
  display: block;
  width: 100%;
  height: 46rem;
  background: linear-gradient(rgba(101, 101, 101, 0) 0%, #656565 88%, #656565 100%);
  opacity: 0.3;
  mix-blend-mode: multiply;
  position: absolute;
  top: -45.9rem;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .allContent::after {
    display: none;
  }
}
.home .allContent .allContent__inner {
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .allContent .allContent__inner {
    display: block;
    width: 100%;
  }
}
.home .allContent .allContent__inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 46rem;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, var(--base-color) 88%, var(--base-color) 100%);
  position: absolute;
  top: -45.9rem;
  left: 0;
}

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

ドロワーメニュー

------------------------------------------------------------ */
.drawerMenu {
  inline-size: calc(100% - 8rem);
  block-size: 100vh;
  display: flex;
  flex-direction: row-reverse;
  backdrop-filter: blur(1.3rem);
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu {
    inline-size: 100%;
    block-size: 100dvh;
    backdrop-filter: none;
  }
}
.drawerMenu.active {
  opacity: 1;
  visibility: visible;
}
.drawerMenu__inner {
  inline-size: 62rem;
  min-block-size: 100%;
  block-size: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.8rem;
  padding: 6rem;
  background: #f6fae4;
  overflow-y: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__inner {
    inline-size: 100%;
    block-size: 100%;
    align-items: unset;
    gap: 2rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 2rem 1rem 8rem;
  }
}
.drawerMenu__logo {
  inline-size: 25.7rem;
}
.drawerMenu__logo img {
  inline-size: 100%;
  block-size: auto;
}
.drawerMenu__nav {
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.drawerMenu__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.drawerMenu__heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block-end: 0.2rem;
  font-weight: 700;
  border-block-end: 1px solid var(--primary-green);
}
.drawerMenu__heading::before {
  content: "";
  flex: none;
  inline-size: 0.9rem;
  block-size: 0.9rem;
  background: var(--primary-green);
  border-radius: 50%;
}
.drawerMenu__list {
  display: flex;
  gap: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list {
    gap: 0;
  }
}
.drawerMenu__list ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.drawerMenu__list ul li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--font-color);
  transition: color 0.3s;
}
@media (hover: hover) {
  .drawerMenu__list ul li a:hover {
    color: var(--primary-green);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list ul li a {
    gap: 0.8rem;
    font-size: 1.4rem;
    white-space: nowrap;
  }
}
.drawerMenu__list ul li a svg {
  flex: none;
  inline-size: 1rem;
  block-size: 1rem;
  fill: var(--font-color);
}
.drawerMenu__bg {
  flex: 1;
  cursor: pointer;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__bg {
    display: none;
  }
}

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

Intersection Observer アニメーション

------------------------------------------------------------ */
[data-animate] {
  transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
  will-change: opacity, transform;
}
[data-animate].is-animated {
  will-change: auto;
}

[data-animate=fade-down] {
  opacity: 0;
  transform: translateY(-3rem);
}
[data-animate=fade-down].is-animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate=fade-up] {
  opacity: 0;
  transform: translateY(3rem);
}
[data-animate=fade-up].is-animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate=fade-left] {
  opacity: 0;
  transform: translateX(3rem);
}
[data-animate=fade-left].is-animated {
  opacity: 1;
  transform: translateX(0);
}

[data-animate=fade-right] {
  opacity: 0;
  transform: translateX(-3rem);
}
[data-animate=fade-right].is-animated {
  opacity: 1;
  transform: translateX(0);
}

[data-animate=fade] {
  opacity: 0;
}
[data-animate=fade].is-animated {
  opacity: 1;
}

[data-animate=zoom-out] {
  opacity: 0;
  transform: scale(1.1);
}
[data-animate=zoom-out].is-animated {
  opacity: 1;
  transform: scale(1);
}

[data-animate=ticket-slide-zoom] {
  opacity: 0;
  transform: translateY(-3rem) scale(1.1);
}
[data-animate=ticket-slide-zoom].is-animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-animate-delay="200"] {
  transition-delay: 0.5s;
}

[data-animate-delay="400"] {
  transition-delay: 0.7s;
}

[data-animate-delay="600"] {
  transition-delay: 0.9s;
}

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

トップページ

------------------------------------------------------------ */
.page-top > section {
  padding: 0;
}
.page-top .green {
  color: var(--primary-green);
}
.page-top .pink {
  color: var(--primary-pink);
}
.page-top .blue {
  color: var(--primary-blue);
}
.page-top .c-desc {
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.page-top .c-desc p {
  line-height: 1.8;
  letter-spacing: 0.08rem;
  text-align: justify;
}
.page-top .c-desc p a {
  color: var(--primary-green);
  text-decoration: underline;
}
@media (hover: hover) {
  .page-top .c-desc p a:hover {
    text-decoration: none;
  }
}
.page-top .c-desc p strong {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--primary-green);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4rem;
}
.page-top .about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  padding: 4rem 2rem 10rem;
}
.page-top .about__logo {
  display: block;
  inline-size: 32rem;
}
.page-top .about__logo img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .about__badges {
  display: flex;
  gap: 4rem;
}
.page-top .about__badges li {
  inline-size: 10rem;
}
.page-top .about__badges li div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  margin-block-end: 1rem;
  background: #e1eeaa;
  border-radius: 50%;
}
.page-top .about__badges li div::before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  background: var(--primary-green);
  border-radius: 50%;
}
.page-top .about__badges li div img {
  inline-size: 5rem;
  block-size: auto;
  position: relative;
  z-index: 1;
}
.page-top .about__badges li p {
  font-weight: 700;
  text-align: center;
  line-height: var(--lh-sm);
}
.page-top .about .c-button {
  margin-block-start: -2rem;
}
.page-top .concept__hero img {
  inline-size: 100%;
  block-size: auto;
  border-radius: 2rem;
}
.page-top .concept__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.6rem;
  padding: 8.6rem 2rem 10rem;
}
.page-top .concept__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  line-height: 1.4;
}
.page-top .concept__en {
  font-size: 2.4rem;
  font-weight: 700;
}
.page-top .concept__en::first-letter {
  color: var(--primary-green);
}
.page-top .concept__lead {
  inline-size: fit-content;
  padding: 0.8rem 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--base-color);
  background: var(--primary-green);
}
.page-top .concept__catch {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.page-top .concept__title {
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  color: var(--primary-green);
  margin-block-start: 0.6rem;
}
.page-top .concept__title::before {
  content: "";
  position: absolute;
  inset: -1rem auto auto 1.6rem;
  inline-size: 9.2rem;
  block-size: 1rem;
  background: radial-gradient(circle at 0.5rem 50%, var(--primary-green) 0.5rem, transparent 0.5rem) 0 0/4.1rem 100% repeat-x;
}
.page-top .concept__visual img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .movie .heading02 {
  padding-inline: 2rem;
  margin-block-end: 1.5rem;
  position: relative;
  z-index: 1;
}
.page-top .movie .heading02__title {
  font-size: 3rem;
}
.page-top .movie__player {
  position: relative;
  z-index: 0;
}
.page-top .movie__player::before {
  content: "";
  inline-size: 40rem;
  aspect-ratio: 1;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  z-index: -1;
  background: #f4f9e0;
  border-radius: 50%;
}
.page-top .movie__player iframe {
  display: block;
  inline-size: 100%;
  aspect-ratio: 16/9;
}
.page-top .movie__player .ytFacade {
  inline-size: 100%;
  aspect-ratio: 16/9;
  display: block;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.page-top .movie__player .ytFacade__thumb {
  inline-size: 100%;
  block-size: 100%;
  display: block;
  object-fit: cover;
}
.page-top .movie__player .ytFacade__play {
  inline-size: 6.8rem;
  block-size: 4.8rem;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  background: #f00;
  border-radius: 1.2rem;
  transition: opacity 0.3s;
}
.page-top .movie__player .ytFacade__play::before {
  content: "";
  inline-size: 0;
  block-size: 0;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -40% -50%;
  border-block: 1rem solid transparent;
  border-inline-start: 1.7rem solid #fff;
}
@media (hover: hover) {
  .page-top .movie__player .ytFacade:hover .ytFacade__play {
    opacity: 0.85;
  }
}
.page-top .features {
  padding: 18rem 0 0;
}
.page-top .features__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block-end: 7.2rem;
  line-height: 1.4;
  font-weight: 700;
}
.page-top .features__en {
  font-size: 2.4rem;
  margin-block-end: 2rem;
}
.page-top .features__en::first-letter {
  color: var(--primary-green);
}
.page-top .features__lead {
  font-size: 2.4rem;
}
.page-top .features__main {
  font-size: 3.4rem;
}
.page-top .features__main .green {
  font-size: 4.4rem;
}
.page-top .features__list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.page-top .features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
.page-top .features__item:nth-child(even) {
  background: #f2f8d9;
  border-radius: 2rem;
  padding-block: 7rem 5.2rem;
}
.page-top .features__item:nth-child(even) .features__image::before {
  inset-inline: auto 0;
}
.page-top .features__item:nth-child(even) .features__image img {
  margin: 2rem 2rem 0 0;
}
.page-top .features__image {
  inline-size: 100%;
  position: relative;
  z-index: 0;
}
.page-top .features__image::before {
  content: "";
  inline-size: 4rem;
  block-size: 4rem;
  position: absolute;
  inset: 0 auto auto 0;
  z-index: -1;
  background: var(--primary-green);
}
.page-top .features__image img {
  display: block;
  inline-size: calc(100% - 2rem);
  block-size: auto;
  margin: 2rem 0 0 2rem;
}
.page-top .features__body {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-inline: 2rem;
}
.page-top .busy {
  background: #f2f8d9;
}
.page-top .busy__hero {
  margin: 0 2rem 2rem 0;
  position: relative;
}
.page-top .busy__hero img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .busy__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  writing-mode: vertical-rl;
  position: absolute;
  inset: 0 0 auto auto;
}
.page-top .busy__lead span {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--base-color);
  background: var(--primary-green);
  padding: 1rem 0.8rem;
  font-feature-settings: normal;
}
.page-top .busy__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding-inline: 2rem;
}
.page-top .focus {
  padding: 6rem 2rem 15rem;
  background: #f2f8d9;
}
.page-top .focus__inner {
  padding: 0 2rem 5.2rem;
  background: var(--base-color);
}
.page-top .focus__hero {
  inline-size: calc(100% + 4rem);
  margin-inline: -2rem;
}
.page-top .focus__hero img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .focus__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-block-start: -2rem;
  margin-block-end: 4.4rem;
  line-height: 1.4;
  font-weight: 700;
}
.page-top .focus__catch {
  inline-size: 36rem;
  padding: 0.8rem 0;
  font-size: 1.8rem;
  color: var(--base-color);
  background: var(--primary-green);
  text-align: center;
}
.page-top .focus__sub {
  font-size: 2.4rem;
}
.page-top .focus__title {
  font-size: 3rem;
}
.page-top .focus__cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-block-end: 2rem;
}
.page-top .focus__card {
  position: relative;
}
.page-top .focus__card img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .focus__card figcaption {
  inline-size: 32.2rem;
  padding: 0.5rem 0;
  position: absolute;
  inset: auto auto 2rem 50%;
  translate: -50% 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--font-color);
  text-align: center;
  background: hsla(0, 0%, 100%, 0.85);
}
.page-top .focus__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-top .focus__text .c-desc {
  margin-block-end: 2rem;
}
.page-top .kids {
  padding-block-end: 8rem;
  position: relative;
}
.page-top .kids::before {
  content: "";
  display: block;
  inline-size: 100%;
  block-size: 1rem;
  background: #f2f8d9;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-top .kids__hero img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .kids__ask {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.8rem;
  padding: 0 2rem 5.6rem;
  margin-block-start: -10rem;
}
.page-top .kids__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
}
.page-top .kids__en {
  font-size: 2.4rem;
  margin-block-end: 1rem;
}
.page-top .kids__en::first-letter {
  color: var(--primary-pink);
}
.page-top .kids__sub {
  font-size: 2.4rem;
}
.page-top .kids__title {
  font-size: 3.4rem;
}
.page-top .kids__list {
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.page-top .kids__list li {
  position: relative;
  padding-inline-start: 2.2rem;
  padding-block-end: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: var(--lh-sm);
  border-block-end: 1px solid #ccc;
}
.page-top .kids__list li::before {
  content: "";
  inline-size: 1.2rem;
  block-size: 1.2rem;
  position: absolute;
  inset: 1rem auto auto 0;
  background: var(--base-color);
  border: 1px solid #707070;
}
.page-top .kids__stat {
  position: relative;
}
.page-top .kids__stat img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .kids__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  position: absolute;
  inset: 12rem auto auto 2rem;
}
.page-top .kids__lead > span {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: var(--lh-sm);
  color: var(--base-color);
  background: var(--primary-pink);
  padding: 0 0.5rem;
}
.page-top .kids__lead > span.sm {
  font-size: 2.4rem;
}
.page-top .kids__lead > span .kids__mark {
  font-size: 2.4rem;
  vertical-align: super;
}
.page-top .kids__result {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-inline: 2rem;
  margin-block-start: -8rem;
  position: relative;
  z-index: 1;
}
.page-top .kids__figure img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .kids__note {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
.page-top .kids__callout {
  position: relative;
  border: 1px solid var(--primary-pink);
  padding: 1.5rem 2rem;
}
.page-top .kids__callout::before, .page-top .kids__callout::after {
  content: "";
  inline-size: 1.5rem;
  block-size: 1.5rem;
  position: absolute;
  background: var(--primary-pink);
}
.page-top .kids__callout::before {
  inset: 0 auto auto 0;
}
.page-top .kids__callout::after {
  inset: auto 0 0 auto;
}
.page-top .kids__callout p {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.page-top .prevent {
  padding-block-end: 10rem;
}
.page-top .prevent__intro {
  padding-inline: 2rem;
  margin-block-end: 5.6rem;
}
.page-top .prevent__photo {
  inline-size: calc(100% + 4rem);
  margin: 0 -2rem 5.6rem;
}
.page-top .prevent__photo img {
  inline-size: 100%;
  block-size: auto;
  border-radius: 2rem;
}
.page-top .prevent__lead {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.page-top .prevent__hygienist {
  padding: 0.5rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  border: 1px solid var(--primary-green);
  text-align: center;
}
.page-top .prevent__items {
  padding-inline: 2rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
.page-top .prevent__item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-top .prevent__item .c-button {
  margin-block-start: 2rem;
}
.page-top .prevent__visual {
  margin-block-end: -2rem;
  text-align: end;
  position: relative;
}
.page-top .prevent__visual img {
  inline-size: 27rem;
  block-size: auto;
}
.page-top .prevent__point {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  position: absolute;
  inset: 3.5rem auto auto 0;
}
.page-top .prevent__point span {
  color: var(--base-color);
  font-weight: 700;
  line-height: 1.6;
  background: var(--primary-green);
  padding-inline: 1rem;
}
.page-top .prevent__point span:nth-of-type(1) {
  font-size: 2.4rem;
}
.page-top .prevent__point span:nth-of-type(2) {
  font-size: 3.4rem;
}
.page-top .prevent__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.4;
  font-weight: 700;
}
.page-top .prevent__head.reverse .prevent__title {
  align-self: flex-end;
}
.page-top .prevent__title {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-block-end: 1rem;
}
.page-top .prevent__en {
  font-size: 2rem;
}
.page-top .prevent__en::first-letter {
  color: var(--primary-green);
}
.page-top .prevent__num {
  font-size: 2.4rem;
}
.page-top .prevent__sub {
  font-size: 2.4rem;
}
.page-top .prevent__main {
  font-size: 3rem;
}
.page-top .prevent__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  inline-size: 100%;
  border: 1px dashed var(--primary-green);
  padding: 1rem 2rem;
}
.page-top .prevent__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
.page-top .prevent__list li::before {
  content: "";
  flex: none;
  inline-size: 1.2rem;
  block-size: 1.2rem;
  background: var(--base-color);
  border: 1px solid #707070;
}
.page-top .prevent__circles {
  margin-block-end: -4rem;
}
.page-top .prevent__circles img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .prevent__tags {
  display: flex;
  gap: 2rem;
}
.page-top .prevent__tags span {
  flex: 1;
  padding: 0.5rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  border: 1px solid var(--primary-green);
}
.page-top .ortho__hero img {
  inline-size: 100%;
  block-size: auto;
  border-radius: 2rem;
}
.page-top .ortho__inner {
  padding: 5.2rem 2rem 10rem;
}
.page-top .ortho__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.6rem;
  margin-block-end: 4.2rem;
}
.page-top .ortho .heading01__en::first-letter {
  color: #06a4cd;
}
.page-top .ortho .heading01__badge {
  background: var(--primary-blue);
}
.page-top .ortho__cards {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.page-top .ortho__card {
  block-size: 22rem;
  display: block;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
@media (hover: hover) {
  .page-top .ortho__card:hover .ortho__bar svg {
    translate: 0.3rem 0;
  }
}
.page-top .ortho__card img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}
.page-top .ortho__card:nth-child(1) .ortho__bar {
  background: #41d0f5;
}
.page-top .ortho__card:nth-child(2) .ortho__bar {
  background: var(--primary-blue);
}
.page-top .ortho__card:nth-child(3) .ortho__bar {
  background: #00d4cc;
}
.page-top .ortho__catch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  position: absolute;
  inset: 6.4rem auto auto 2rem;
}
.page-top .ortho__catch span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--font-color);
  background: var(--base-color);
  padding: 0 0.5rem;
}
.page-top .ortho__bar {
  inline-size: 100%;
  block-size: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  inset: auto auto 0 0;
  padding: 0 2rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--base-color);
}
.page-top .ortho__bar svg {
  flex: none;
  inline-size: 1.5rem;
  block-size: 1.5rem;
  fill: var(--base-color);
  transition: translate 0.3s;
}
.page-top .endo__hero {
  margin-block-end: 4.8rem;
}
.page-top .endo__hero img {
  inline-size: 100%;
  block-size: auto;
  border-radius: 2rem;
}
.page-top .endo__intro {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  padding-inline: 2rem;
}
.page-top .endo__ask {
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3rem;
  font-weight: 700;
}
.page-top .endo__ask img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .endo__list {
  inline-size: 100%;
  padding-block-end: 3.6rem;
}
.page-top .endo__list li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: var(--lh-sm);
  border-block-end: 1px solid #ccc;
}
.page-top .endo__list li::before {
  content: "";
  inline-size: 1.2rem;
  block-size: 1.2rem;
  position: absolute;
  inset: 1.8rem auto auto 0;
  border: 1px solid #707070;
}
.page-top .endo__conclusion {
  inline-size: 100%;
  min-block-size: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--base-color);
  text-align: center;
  background: var(--primary-green);
  position: relative;
  z-index: 1;
}
.page-top .endo__inner {
  display: flex;
  flex-direction: column;
  gap: 4.6rem;
  margin-block-start: -7rem;
  padding: 12rem 2rem 10rem;
  background: #f6fae4;
  position: relative;
}
.page-top .endo__inner::before {
  content: "";
  display: block;
  inline-size: calc(100% + 4rem);
  aspect-ratio: 440/120;
  background: url(../images/home_38.webp) no-repeat center/cover;
  position: absolute;
  inset-block-start: -2.4rem;
  inset-inline-start: 50%;
  translate: -50% 0;
}
.page-top .endo__feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
}
.page-top .endo__feature figure {
  position: relative;
}
.page-top .endo__feature figure:has(figcaption) {
  padding-block-end: 2.5rem;
}
.page-top .endo__feature figure img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .endo__feature figure figcaption {
  inline-size: 36rem;
  padding: 0.5rem 0;
  position: absolute;
  inset: auto auto 0 50%;
  translate: -50% 0;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: var(--base-color);
  background: var(--font-color);
}
.page-top .endo__featureHead {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  font-weight: 700;
}
.page-top .endo__featureSub {
  font-size: 2.4rem;
}
.page-top .endo__featureTitle {
  font-size: 3rem;
}
.page-top .endo__slider .splide__slide {
  padding: 0.5rem;
}
.page-top .endo__slider .splide__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-block-start: 1.5rem;
}
.page-top .endo__slider .splide__arrow {
  inline-size: 1.5rem;
  block-size: 1.5rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .page-top .endo__slider .splide__arrow:hover {
    opacity: 0.6;
  }
}
.page-top .endo__slider .splide__arrow:disabled {
  opacity: 0.5;
  cursor: default;
}
.page-top .endo__slider .splide__arrow svg {
  inline-size: 1.5rem;
  block-size: 1.5rem;
  fill: var(--font-color);
}
.page-top .endo__slider .splide__arrow--prev svg {
  rotate: 180deg;
}
.page-top .endo__slider .splide__pagination {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page-top .endo__slider .splide__pagination button {
  inline-size: 1.5rem;
  block-size: 1.5rem;
  border: 1px solid var(--font-color);
  border-radius: 50%;
  transition: background 0.3s, border-color 0.3s;
}
.page-top .endo__slider .splide__pagination button.is-active {
  background: var(--primary-green);
  border-color: var(--primary-green);
}
.page-top .endo__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  background: var(--base-color);
  border-radius: 0.3rem;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.16));
  padding: 2rem 2rem 1.5rem;
}
.page-top .endo__card img {
  inline-size: 100%;
  block-size: auto;
  border-radius: 0.5rem;
}
.page-top .endo__card figcaption {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.page-top .treatment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding-block-end: 10rem;
}
.page-top .treatment__hero {
  margin-block-end: 1.6rem;
}
.page-top .treatment__hero img {
  inline-size: 100%;
  block-size: auto;
  border-radius: 2rem;
}
.page-top .treatment__intro {
  padding-inline: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.page-top .treatment .heading01__badge {
  background: var(--primary-blue);
}
.page-top .treatment .heading01__en::first-letter {
  color: var(--primary-blue);
}
.page-top .treatment__feature {
  padding: 0.5rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--base-color);
  border: 1px solid var(--primary-blue);
  text-align: center;
}
.page-top .treatment__about {
  padding: 5.2rem 2rem;
  background: url(../images/home_33.webp) no-repeat center/cover;
  color: var(--base-color);
}
.page-top .treatment__aboutHead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-block-end: 3.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.page-top .treatment__aboutBadge {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 1.8rem;
  background: var(--primary-blue);
}
.page-top .treatment__aboutTitle {
  font-size: 3rem;
}
.page-top .treatment__aboutBody {
  position: relative;
  margin-block-end: 2rem;
}
.page-top .treatment__circle {
  inline-size: 22.6rem;
  margin: 0 0 0 auto;
}
.page-top .treatment__circle img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .treatment__points {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  position: absolute;
  inset: 50% auto auto 0;
  translate: 0 -50%;
  z-index: 1;
}
.page-top .treatment__points li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  font-weight: 700;
  color: var(--font-color);
  background: var(--base-color);
}
.page-top .treatment__menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-inline: 2rem;
  inline-size: 100%;
}
.page-top .treatment__card {
  display: block;
  inline-size: 100%;
  block-size: 12rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}
.page-top .treatment__card:nth-child(1) {
  background: var(--primary-blue);
}
.page-top .treatment__card:nth-child(1) .treatment__cardBody span:nth-of-type(1) {
  color: var(--primary-blue);
}
.page-top .treatment__card:nth-child(2) {
  background: #00d4cc;
}
.page-top .treatment__card:nth-child(2) .treatment__cardBody span:nth-of-type(1) {
  color: #00d4cc;
}
@media (hover: hover) {
  .page-top .treatment__card:hover svg {
    translate: 0.3rem 0;
  }
}
.page-top .treatment__card svg {
  flex: none;
  inline-size: 1.5rem;
  block-size: 1.5rem;
  fill: var(--base-color);
  transition: translate 0.3s;
}
.page-top .treatment__cardImg {
  inline-size: 15rem;
}
.page-top .treatment__cardImg img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .treatment__cardInside {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
.page-top .treatment__cardBody {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-top .treatment__cardBody span:nth-of-type(1) {
  padding-inline: 0.5rem;
  font-size: 1.4rem;
  background: var(--base-color);
}
.page-top .treatment__cardBody span:nth-of-type(2) {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--base-color);
}
.page-top .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  padding: 10rem 2rem;
  background: #f6fae4;
}
.page-top .menu .heading02__title {
  font-size: 3.4rem;
}
.page-top .menu__subTitle {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.page-top .menu__wrap {
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
.page-top .menu__list {
  inline-size: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.page-top .menu__card {
  inline-size: 100%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: relative;
  background: var(--base-color);
  border: 1px solid var(--primary-green);
  border-radius: 0.5rem;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
}
@media (hover: hover) {
  .page-top .menu__card:hover::after {
    scale: 1.2;
  }
}
.page-top .menu__card::after {
  content: "";
  inline-size: 1.5rem;
  block-size: 1.5rem;
  position: absolute;
  inset: auto 1rem 1rem auto;
  background: var(--primary-green);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: scale 0.3s;
}
.page-top .menu__card img {
  inline-size: 6rem;
  block-size: 6rem;
}
.page-top .menu__name {
  font-weight: 700;
}
.page-top .menu__name.long {
  font-size: 1.6rem;
  letter-spacing: 0;
}
.page-top .doctor {
  padding-block-end: 10rem;
}
.page-top .doctor__hero {
  position: relative;
}
.page-top .doctor__hero img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .doctor__badges {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 2rem;
  writing-mode: vertical-rl;
  position: absolute;
  inset: 4rem auto auto 50%;
  translate: -50% 0;
}
.page-top .doctor__badges span {
  padding: 0.5rem 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--base-color);
  background: var(--primary-green);
}
.page-top .doctor__body {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-inline: 2rem;
  margin-block-start: -3.2rem;
}
.page-top .doctor__head {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  font-weight: 700;
}
.page-top .doctor__en {
  font-size: 2rem;
  margin-block-end: 2rem;
}
.page-top .doctor__en::first-letter {
  color: var(--primary-green);
}
.page-top .doctor__lead {
  font-size: 2.4rem;
}
.page-top .doctor__title {
  font-size: 3rem;
}
.page-top .doctor .c-button {
  margin-block-start: 2rem;
}
.page-top .note {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-inline: auto;
  padding: 5.6rem 2rem;
  background: #f0f0f0;
  border-radius: 2rem;
}
.page-top .note__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-block-end: 2rem;
}
.page-top .note__card {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2rem;
  background: var(--base-color);
  border: 1px solid #707070;
  border-radius: 1rem;
}
.page-top .note__thumb {
  inline-size: 100%;
  aspect-ratio: 1.91/1;
  background: #b5b5b5;
  border-radius: 0.5rem;
  overflow: hidden;
}
.page-top .note__thumb img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}
.page-top .note__cardTitle {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--lh-md);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-top .note__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page-top .note__avatar {
  flex: none;
  inline-size: 6rem;
  block-size: 6rem;
  background: #d3d3d3;
  border-radius: 50%;
  overflow: hidden;
}
.page-top .note__avatar img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}
.page-top .note__metaText {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-weight: 700;
  line-height: 1.4;
}
.page-top .note__metaText p {
  font-size: 1.4rem;
}
.page-top .note__metaText time {
  font-size: 1.3rem;
}
.page-top .note__excerpt {
  font-size: 1.3rem;
  line-height: var(--lh-md);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-top .note__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-top .note__logo {
  inline-size: 8rem;
}
.page-top .note__logo img {
  inline-size: 100%;
  block-size: auto;
}
.page-top .note__btn {
  inline-size: 20rem;
  block-size: 5rem;
  display: grid;
  place-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--base-color);
  background: #1a1a1a;
  border-radius: 1rem;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .page-top .note__btn:hover {
    opacity: 0.8;
  }
}
.page-top .newsTop {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 5.6rem 2rem 5rem;
  background: url(../images/home_37.webp) no-repeat top center/cover;
}
.page-top .newsTop .heading02 {
  color: var(--base-color);
}
.page-top .newsTop .heading02__en::first-letter {
  color: var(--font-color);
}
.page-top .newsTop__tab {
  display: flex;
  align-items: flex-end;
  gap: 0.1rem;
}
.page-top .newsTop__tab button {
  flex: 1;
  block-size: 6rem;
  display: grid;
  place-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--base-color);
  background: var(--font-color);
  border-radius: 0.5rem 0.5rem 0 0;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
}
.page-top .newsTop__tab button.active {
  color: var(--font-color);
  background: var(--base-color);
}
.page-top .newsTop .c-newsList {
  padding: 3.2rem 2rem;
  background: var(--base-color);
}
.page-top .newsTop .c-newsList .item {
  gap: 0.8rem 1rem;
  padding-block-end: 1.5rem;
  border-block-end: 1px solid #d7d7d7;
}
@media (hover: hover) {
  .page-top .newsTop .c-newsList .item:hover .item__title {
    text-decoration: none;
  }
}
.page-top .newsTop .c-newsList .item__title {
  line-clamp: 2;
  -webkit-line-clamp: 2;
  text-decoration: underline;
}

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

記事一覧

------------------------------------------------------------ */
.archive {
  padding: 4rem 2rem 8rem;
}
.archive__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.archive__links .c-button {
  width: calc((100% - 1.6rem) / 2);
}
.archive__links .c-button svg {
  right: 1.2rem;
}
.page-tag .archive__links {
  gap: 1rem;
}
.page-tag .archive__links .c-button {
  width: 100%;
}
.archive__inner {
  padding-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.articleUnit img {
  width: 100%;
  height: auto;
  aspect-ratio: 400/270;
}
.articleUnit a {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  color: var(--font-color);
  padding: 2.4rem 0;
  position: relative;
  z-index: 0;
  border-block-end: 1px solid #d7d7d7;
}
@media (hover: hover) {
  .articleUnit a:hover .articleUnit__title {
    text-decoration: none;
  }
}
.articleUnit__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 400/270;
}
.articleUnit__date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.articleUnit__date time {
  line-height: 1;
}
.articleUnit__category {
  display: grid;
  place-content: center;
  width: 7rem;
  height: 2.4rem;
  background: var(--font-color);
  color: var(--base-color);
  font-size: 1.2rem;
  font-weight: 700;
}
.articleUnit__category.blog {
  background: var(--primary-green);
}
.articleUnit__category.case {
  background: var(--primary-yellow);
}
.articleUnit__title {
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: underline;
}

.PageNavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.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.6;
  }
}
.PageNavi .page-numbers:not(.prev):not(.next):not(.current):not(.dots) {
  border: 1px solid #d7d7d7;
}
.PageNavi .page-numbers.current {
  background: var(--primary-green);
  pointer-events: none;
}

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

記事詳細

------------------------------------------------------------ */
.single {
  padding: 4rem 2rem 0;
}
.single .h2-title {
  margin-bottom: 4rem;
}
.single .h3-title {
  margin-bottom: 3.2rem;
}
.single__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.single__desc:not(:last-child) {
  margin-bottom: 8rem;
}
.single__desc p,
.single__desc li {
  font-size: 1.6rem;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
.single__desc strong {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--primary-green);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4rem;
}
.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(--primary-green);
  text-decoration: underline;
}
@media (hover: hover) {
  .single__desc a:hover {
    text-decoration: none;
  }
}
.single__desc hr {
  width: 100%;
  border-style: solid;
  border-color: #eeeeee;
}
.single__desc del {
  text-decoration: line-through;
}
.single__desc em {
  font-style: italic;
}
.single__desc blockquote {
  padding: 1rem;
  background: #eef5ed;
}
.single__desc h2,
.single__desc h3,
.single__desc h4,
.single__desc h5 {
  font-weight: 700;
  line-height: var(--lh-sm);
  letter-spacing: 0.1rem;
}
.single__desc h2 {
  font-size: 3rem;
  padding: 1.5rem 2rem;
  margin-inline: -2rem;
  border-top: 2px solid var(--primary-green);
  border-bottom: 2px solid var(--primary-green);
}
.single__desc h3 {
  font-size: 2.5rem;
  border-block-end: 2px solid var(--primary-green);
  padding-block-end: 1rem;
  position: relative;
}
.single__desc h3::after {
  content: "";
  inline-size: 15rem;
  block-size: 2px;
  background: var(--primary-yellow);
  position: absolute;
  inset: auto auto -2px 0;
}
.single__desc h4 {
  display: flex;
  gap: 1rem;
  font-size: 1.8rem;
}
.single__desc h4::before {
  content: "";
  flex: none;
  inline-size: 0.6rem;
  background: linear-gradient(to bottom, var(--primary-green) 0 66.67%, var(--primary-yellow) 66.67% 100%);
}
.single__desc h5 {
  font-size: 1.8rem;
  color: var(--primary-green);
}
.single .c-caseBox {
  margin-bottom: 4rem;
}
.single .c-table {
  margin-bottom: 6rem;
}
.single .supervision {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4.8rem 2rem;
  background: #f2f8d9;
  border-radius: 2rem;
  text-align: center;
  line-height: 1.6;
}
.single .supervision__title {
  font-size: 2rem;
  font-weight: 700;
}
.single .supervision figure {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.single .supervision figure img {
  width: 100%;
  height: auto;
}
.single .supervision address a {
  text-decoration: underline;
}
@media (hover: hover) {
  .single .supervision address a:hover {
    text-decoration: none;
  }
}

.singleNavi {
  padding: 4rem 2rem;
}

.singleTags {
  margin-block-start: 4rem;
}
.singleTags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.singleTags__list li a {
  display: block;
  padding: 0.3rem 1rem;
  border: 1px solid #d6d6d6;
  border-radius: 2rem;
  color: var(--font-color);
  font-size: 1.5rem;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.singleTags__list li a:hover {
  background-color: var(--primary-green);
  color: var(--base-color);
  border-color: var(--primary-green);
}

.sidePosts {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-block-start: 4rem;
}
.sidePosts__heading {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  color: var(--font-color);
  font-weight: 700;
  padding-block-end: 0.5rem;
  border-block-end: 2px solid var(--primary-green);
  margin-bottom: 2.4rem;
}
.sidePosts__heading span {
  color: var(--primary-green);
  font-size: 1.4rem;
}
.sidePosts__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sidePosts__list > li {
  padding-block-end: 0.5rem;
  border-block-end: 1px solid #d6d6d6;
}
.sidePosts__list > li a {
  display: block;
  color: var(--font-color);
  transition: color 0.3s;
}
.sidePosts__list > li a:hover {
  color: var(--primary-green);
}
.sidePosts__list summary {
  cursor: pointer;
  color: var(--font-color);
  transition: color 0.3s;
  position: relative;
}
.sidePosts__list summary::-webkit-details-marker {
  display: none;
}
.sidePosts__list summary::before, .sidePosts__list summary::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: 0.5rem;
  translate: 50% -50%;
  background: var(--font-color);
  transition: rotate 0.3s;
}
.sidePosts__list summary::before {
  inline-size: 1rem;
  block-size: 1px;
}
.sidePosts__list summary::after {
  inline-size: 1px;
  block-size: 1rem;
}
.sidePosts__list summary:hover {
  color: var(--primary-green);
}
.sidePosts__list details[open] summary::before, .sidePosts__list details[open] summary::after {
  rotate: 45deg;
}
.sidePosts__list details ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0 1rem 2rem;
  background: #f2f8d9;
  margin-block: 1rem;
}
.sidePosts__list details ul a {
  font-size: 1.5rem;
  transition: color 0.3s;
}
.sidePosts__list details ul a:hover {
  color: var(--primary-green);
}

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

インビザラインページ

------------------------------------------------------------ */
.page-invisalign {
  --primary-green: var(--primary-blue);
}
.page-invisalign .h3-title::after {
  background: var(--primary-pink);
}
.page-invisalign .c-table th {
  background: #e4f3fa;
}
/*# sourceMappingURL=style.css.map */
