@charset "UTF-8";
:root {
  --base-color: #fff;
  --font-color: #333333;
  --color-navy: #144970;
  --color-bluegray: #436782;
  --color-gray: #707070;
  --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.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: "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: 6rem 2rem;
}
.page-404 .content > p {
  margin-bottom: 4.8rem;
  font-weight: 700;
  line-height: var(--lh-16);
  text-align: center;
}

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

パンくずリスト

------------------------------------------------------------ */
.breadcrumb {
  padding: 1rem 2rem 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .breadcrumb {
    padding-left: 3rem;
    position: relative;
    z-index: 1;
  }
}
.breadcrumb:has(+ .divSection .c-outline) {
  margin-bottom: -3rem;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.5rem;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--font-color);
}
.breadcrumb__item[aria-current=page] {
  text-decoration: underline;
}
.breadcrumb__link {
  color: var(--font-color);
  transition: color 0.3s;
}
@media (hover: hover) {
  .breadcrumb__link:hover {
    color: var(--color-navy);
  }
}

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

ボタン

------------------------------------------------------------ */
.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6rem;
  padding: 1rem 4rem;
  border: 1px solid var(--font-color);
  border-radius: 0.5rem;
  color: var(--font-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  position: relative;
}
@media (hover: hover) {
  .c-button:hover svg {
    transform: scale(1.2);
  }
}
.c-button svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: var(--font-color);
  position: absolute;
  right: 1.5rem;
  top: 50%;
  translate: 0 -50%;
  transition: transform 0.3s;
}
.c-button.white {
  gap: 1rem;
  width: 100%;
  background: var(--base-color);
  border: 1px solid #e0ddd8;
}
.c-button.white svg {
  margin-top: -0.5rem;
  position: unset;
  right: 0;
  top: 0;
  translate: 0;
}

.mapBtn {
  display: flex;
  align-items: center;
  width: fit-content;
  color: var(--font-color);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: underline;
  line-height: 1;
}
@media (hover: hover) {
  .mapBtn:hover {
    text-decoration: none;
  }
}
.mapBtn svg {
  width: 2rem;
  height: 2rem;
  fill: var(--font-color);
}

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

WEB予約、電話番号

------------------------------------------------------------ */
.c-btnUnit {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.c-btnUnit__reservation, .c-btnUnit__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 8rem;
  border-radius: 0.5rem;
  color: var(--base-color);
  font-size: 2rem;
}
@media (hover: hover) {
  .c-btnUnit__reservation:hover svg, .c-btnUnit__tel:hover svg {
    transform: scale(1.2);
  }
}
.c-btnUnit__reservation svg, .c-btnUnit__tel svg {
  width: 2.6rem;
  height: 2.6rem;
  fill: var(--base-color);
  transition: transform 0.3s;
}
.c-btnUnit__reservation span, .c-btnUnit__tel span {
  font-weight: 700;
}
.c-btnUnit__reservation {
  background: #d6b456;
}
.c-btnUnit__tel {
  background: #aea078;
}

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

見出しとol,ulリスト

------------------------------------------------------------ */
.c-box {
  border: 1px solid #144970;
  background: var(--base-color);
}
.c-box p {
  display: grid;
  place-content: center;
  height: 5rem;
  background: #144970;
  color: var(--base-color);
  font-size: 2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.2rem;
  line-height: var(--lh-14);
}
.c-box ol,
.c-box ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.4rem 1rem;
}
.c-box ol li,
.c-box ul li {
  display: flex;
  gap: 1.5rem;
  line-height: var(--lh-14);
}
.c-box ul li {
  font-size: 1.8rem;
  font-weight: 700;
}
.c-box ul li::before {
  flex: none;
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.5rem;
  border: 1px solid #707070;
  background: var(--base-color);
}
.c-box.number p {
  font-size: 2.4rem;
}
.c-box.number ol {
  counter-reset: c-boxNumber;
}
.c-box.number ol li {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
}
.c-box.number ol li::before {
  flex: none;
  content: counter(c-boxNumber);
  counter-increment: c-boxNumber;
  display: grid;
  place-content: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-top: 0.2rem;
  background: #144970;
  border-radius: 50%;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 1.8rem;
  color: var(--base-color);
}
.c-box.number ol li span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.c-box.number ol li span span {
  color: #144970;
}

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

症例紹介 画像スライダー

------------------------------------------------------------ */
.c-caseBox {
  width: 100%;
}
.c-caseBox .imageSlider {
  margin-bottom: 2rem;
  position: relative;
  z-index: 0;
}
.c-caseBox .imageSlider__before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
}
.c-caseBox .imageSlider__before::before {
  content: "";
  width: 4.6rem;
  height: 100%;
  background: url(../images/bg_slider.webp) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: -2.3rem;
  translate: 0 -50%;
  z-index: 3;
  pointer-events: none;
}
.c-caseBox .imageSlider__before::after {
  content: "";
  width: 0.1rem;
  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: 6rem;
  height: 3rem;
  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: 400/260;
}
.c-caseBox .imageSlider__after {
  position: relative;
  z-index: -1;
}
.c-caseBox .imageSlider__after::after {
  content: "治療後";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 3rem;
  background: var(--base-color);
  color: var(--font-color);
  font-size: 1.2rem;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
}
.c-caseBox .imageSlider__after img {
  width: 100%;
  height: auto;
  aspect-ratio: 400/260;
}
.c-caseBox .imageSlider input {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: col-resize;
}
.c-caseBox details[open] summary::after {
  display: none;
}
.c-caseBox details summary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  padding: 0 2rem;
  background: #717171;
  border-radius: 0.5rem;
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  position: relative;
  cursor: pointer;
}
.c-caseBox details summary::-webkit-details-marker {
  display: none;
}
.c-caseBox details summary::before {
  content: "";
  width: 1.2rem;
  height: 1px;
  background: var(--base-color);
  position: absolute;
  top: 50%;
  right: 4rem;
  translate: 0 -50%;
}
.c-caseBox details summary::after {
  content: "";
  width: 1px;
  height: 1.2rem;
  background: var(--base-color);
  position: absolute;
  top: 50%;
  right: 4.5rem;
  translate: 0 -50%;
}
.c-caseBox details .content {
  padding-top: 3rem;
}

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

Q＆A

------------------------------------------------------------ */
.c-faq {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.c-faq details {
  padding: 1.5rem;
  background: #717171;
  border-radius: 0.5rem;
  color: var(--base-color);
  position: relative;
}
.c-faq details .label {
  flex: none;
  display: grid;
  place-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--base-color);
  border-radius: 50%;
  color: #717171;
  font-weight: 700;
}
.c-faq details summary {
  display: flex;
  gap: 1rem;
  padding-right: 4rem;
  position: relative;
  cursor: pointer;
}
.c-faq details summary::-webkit-details-marker {
  display: none;
}
.c-faq details summary .txt {
  margin-block: auto;
}
.c-faq details summary .ico {
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  translate: 0 -50%;
}
.c-faq details summary .ico::before, .c-faq details summary .ico::after {
  content: "";
  background-color: var(--base-color);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.c-faq details summary .ico::before {
  width: 1.2rem;
  height: 0.1rem;
}
.c-faq details summary .ico::after {
  width: 0.1rem;
  height: 1.2rem;
}
.c-faq details[open] summary .ico::after {
  opacity: 0;
  rotate: 90deg;
}
.c-faq details[open] summary .ico::before {
  rotate: 180deg;
}
.c-faq details .content__inner {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
}

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

流れパターン

------------------------------------------------------------ */
.c-flow {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.c-flow__item {
  display: flex;
  gap: 2rem;
  position: relative;
}
.c-flow__item::after {
  content: "";
  display: block;
  width: 2px;
  height: calc(100% - 5rem);
  background: var(--color-navy);
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  z-index: -1;
}
.c-flow__num {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--color-navy);
}
.c-flow__num p {
  color: var(--color-navy);
  text-align: center;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: 1;
}
.c-flow__num p:nth-of-type(1) {
  font-size: 1rem;
}
.c-flow__num p:nth-of-type(2) {
  font-size: 2rem;
}
.c-flow__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-flow__text h3,
.c-flow__text h4 {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 1.8rem;
}
.c-flow__image img {
  width: 100%;
  height: auto;
}

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

リスト

------------------------------------------------------------ */
.c-listBox {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-listBox li {
  display: flex;
  gap: 1rem;
  font-weight: 700;
}
.c-listBox li::before {
  flex: none;
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-bluegray);
  border-radius: 50%;
  margin-top: 1rem;
}
.c-listBox.border {
  padding: 2.5rem;
  background: var(--base-color);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.15);
}
.c-listBox.gray {
  padding: 2.5rem;
  background: #f3f3f3;
}
.c-listBox.check li::before {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.6rem;
  border: 1px solid #707070;
  border-radius: 0;
  background: var(--base-color);
}

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

newsのリスト

------------------------------------------------------------ */
.c-newsList {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.c-newsList .item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  width: fit-content;
  color: var(--base-color);
  position: relative;
}
@media (hover: hover) {
  .c-newsList .item:hover .item__title {
    text-decoration: none;
  }
}
.c-newsList .item__category {
  display: grid;
  place-content: center;
  width: 6rem;
  height: 2.5rem;
  background: var(--base-color);
  color: var(--font-color);
  font-size: 1.2rem;
  font-weight: 700;
}
.c-newsList .item time {
  font-size: 1.4rem;
  font-weight: 700;
}
.c-newsList .item__title {
  width: 100%;
  text-decoration: underline;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

目次

------------------------------------------------------------ */
.c-outline {
  border: 1px solid #c7c7c7;
}
.c-outline hgroup {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  background: #505050;
}
.c-outline hgroup h2,
.c-outline hgroup p {
  color: var(--base-color);
  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: 1rem;
  padding: 2rem;
}
.c-outline ul li a {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-gray);
  color: var(--font-color);
  font-weight: 700;
  transition: color 0.3s;
}
@media (hover: hover) {
  .c-outline ul li a:hover {
    color: var(--color-navy);
  }
}
.c-outline ul li a svg {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.8rem;
  fill: var(--font-color);
}

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

ページタイトル

------------------------------------------------------------ */
.c-pageTitle {
  padding: 5.5rem 2rem 3rem;
  background: var(--color-navy);
  position: relative;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pageTitle {
    padding: 16rem 2rem 3rem 3rem;
  }
}
.c-pageTitle p {
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.6rem;
  line-height: var(--lh-16);
}

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

駐車場についてはこちら

------------------------------------------------------------ */
.c-parking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  width: 100%;
  padding: 1.5rem 0;
  border: 1px solid var(--color-bluegray);
  border-radius: 0.5rem;
}
@media (hover: hover) {
  .c-parking:hover svg {
    transform: scale(1.4);
  }
}
.c-parking__icon {
  flex: none;
  width: 4rem;
  position: relative;
}
.c-parking__icon::before {
  content: "";
  display: block;
  width: 1px;
  height: 4rem;
  background: var(--color-gray);
  position: absolute;
  top: 0;
  right: -2rem;
}
.c-parking__icon img {
  width: 100%;
  height: auto;
}
.c-parking__text p {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
}
.c-parking__text p:nth-of-type(2) {
  font-size: 2rem;
}
.c-parking__arrow {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--font-color);
  transition: transform 0.3s;
}

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

ポイント

------------------------------------------------------------ */
.c-point {
  margin: 0 -2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-point {
    margin: 0 -1.5rem;
  }
}
.c-point__label {
  padding: 0.5rem;
  background: var(--color-navy);
  color: var(--base-color);
  font-size: 2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
}
.c-point__inner {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 2rem 2rem 4rem;
  border: 1px solid #e0ddd8;
  background: var(--base-color);
}
.c-point__image img {
  width: 100%;
  height: auto;
}

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

テーブル

------------------------------------------------------------ */
.c-table__table {
  width: 100%;
  border-collapse: collapse;
}
.c-table__table th,
.c-table__table td {
  padding: 1rem 2rem;
}
.c-table__table th {
  background: #f5f5f5;
  border-top: 1px solid var(--color-navy);
  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;
  padding-bottom: 2.4rem;
}
.c-table__table td p a {
  color: var(--color-navy);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-table__table td p a:hover {
    text-decoration: none;
  }
}
.c-table__table.price td {
  text-align: right;
}
.c-table__table.row tr {
  border-top: 1px solid var(--color-navy);
  border-bottom: 1px solid var(--color-navy);
}
.c-table__table.row th,
.c-table__table.row td {
  padding: 1rem;
}
.c-table__table.row th {
  width: 13.5rem;
  border-top: none;
}

.scheduleTable {
  width: 100%;
  font-size: 1.4rem;
}
.scheduleTable__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  text-align: center;
}
.scheduleTable__table tr {
  border-bottom: 1px solid #9c9a9a;
}
.scheduleTable__table tr:nth-of-type(1) th {
  padding: 0 0 0.8rem;
}
.scheduleTable__table th,
.scheduleTable__table td {
  padding: 0.8rem 0;
  text-align: center;
}
.scheduleTable__table th:not(:last-of-type),
.scheduleTable__table td:not(:last-of-type) {
  border-right: 1px dashed #9f9f9f;
}
.scheduleTable__table th {
  white-space: nowrap;
}
.scheduleTable__table th.scheduleTable__header {
  width: 11rem;
  text-align: left;
  font-weight: 700;
}
.scheduleTable__table td.scheduleTable__time {
  text-align: left;
  font-weight: 700;
}
.scheduleTable__text {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}

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

県庁通り駅徒歩4分
保険診療対応
駐車場あり

------------------------------------------------------------ */
.c-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.c-tag::before, .c-tag::after {
  content: "";
  display: block;
  width: 1px;
  height: 5rem;
  background: var(--color-gray);
}
.c-tag::before {
  order: 2;
}
.c-tag::after {
  order: 4;
}
.c-tag li {
  font-weight: 700;
  line-height: var(--lh-14);
  text-align: center;
}
.c-tag li:nth-of-type(1) {
  order: 1;
}
.c-tag li:nth-of-type(2) {
  order: 3;
}
.c-tag li:nth-of-type(3) {
  order: 5;
}
.c-tag li span {
  color: var(--color-bluegray);
}

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

下層のパーツ

------------------------------------------------------------ */
.c-unit {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.c-unit__item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-unit__image img {
  width: 100%;
  height: auto;
}
.c-unit__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-unit__desc p {
  text-align: justify;
}
.c-unit__desc p a {
  color: var(--color-bluegray);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-unit__desc p a:hover {
    text-decoration: none;
  }
}
.c-unit__desc p mark {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--color-bluegray);
  text-decoration-thickness: 0.2rem;
  text-underline-offset: 0.4rem;
}
.c-unit__map iframe, .c-unit__movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 400/250;
}
.c-unit__name p {
  line-height: var(--lh-16);
}
.c-unit__name p.clinic {
  font-size: 2rem;
}
.c-unit__name p.name {
  font-size: 2.5rem;
}
.c-unit__case {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.c-unit__case details[open] summary::after {
  display: none;
}
.c-unit__case details summary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  padding: 0 2rem;
  background: #717171;
  border-radius: 0.5rem;
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  position: relative;
  cursor: pointer;
}
.c-unit__case details summary::-webkit-details-marker {
  display: none;
}
.c-unit__case details summary::before {
  content: "";
  width: 1.2rem;
  height: 1px;
  background: var(--base-color);
  position: absolute;
  top: 50%;
  right: 4rem;
  translate: 0 -50%;
}
.c-unit__case details summary::after {
  content: "";
  width: 1px;
  height: 1.2rem;
  background: var(--base-color);
  position: absolute;
  top: 50%;
  right: 4.5rem;
  translate: 0 -50%;
}
.c-unit__case details .content {
  padding-top: 3rem;
}
.c-unit__inside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-unit__inside:nth-of-type(1) {
  position: relative;
}
.c-unit__inside:nth-of-type(1)::after {
  content: "";
  display: block;
  width: 4.3rem;
  height: 2rem;
  background: url(../images/icon_arrow_02.svg) no-repeat center/contain;
  position: absolute;
  bottom: -5rem;
  left: 50%;
  translate: -50% 0;
}
.c-unit__inside .h4-title {
  color: var(--font-color);
  font-size: 1.6rem;
  padding-bottom: 0;
}

.c-desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-desc p {
  text-align: justify;
}

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

見出し

------------------------------------------------------------ */
.heading01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  line-height: 1;
}
.heading01 p {
  color: var(--color-bluegray);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.heading01 h2,
.heading01 h3 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.heading01 h2 span,
.heading01 h3 span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
}
.heading01 h2 span.small,
.heading01 h3 span.small {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.heading01 h2 span.main,
.heading01 h3 span.main {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
.heading01.white p,
.heading01.white h2,
.heading01.white h3 {
  color: var(--base-color);
}
.heading01.left {
  align-items: flex-start;
}
.heading01.left h2,
.heading01.left h3 {
  align-items: flex-start;
  text-align: left;
}

.heading02 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.heading02 span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  letter-spacing: 0.1em;
}
.heading02 span.small {
  font-size: 2rem;
  color: var(--color-bluegray);
}
.heading02 span.main {
  font-size: 2.4rem;
}

.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 {
  font-size: 2.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, var(--color-navy) 33.33%, #bbb 33.33%) 1;
}

.h3-title {
  font-size: 2rem;
  padding-left: 1.4rem;
  border-left: 0.4rem solid;
  border-image: linear-gradient(to bottom, var(--color-navy) 50%, #aea078 50%) 1;
}

.h4-title {
  padding-bottom: 1rem;
  border-bottom: 1px solid #243d47;
  color: #243d47;
  font-size: 1.8rem;
}

.h5-title {
  color: var(--color-navy);
}

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

section関連の記述

------------------------------------------------------------ */
section,
.divSection {
  padding: 6rem 2rem 0;
  overflow-x: clip;
  position: relative;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  section,
  .divSection {
    padding: 6rem 3rem 0;
  }
}
section > .h2-title,
.divSection > .h2-title {
  margin-bottom: 2.4rem;
}
section.sectionBtm,
.divSection.sectionBtm {
  padding-bottom: 6.4rem;
}

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

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

SP時 header

------------------------------------------------------------ */
.spHeader {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .spHeader {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 2.5rem 2rem 1.5rem 3rem;
    background: var(--base-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    transition: padding 0.3s;
  }
  body:not(.home) .spHeader {
    padding: 6.5rem 2rem 1.5rem 3rem;
  }
  body:not(.home).is-scroll .spHeader {
    padding: 2.5rem 2rem 1.5rem 3rem;
  }
  .spHeader a {
    display: block;
    width: 25.6rem;
  }
  .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__inner {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 10rem 2rem 6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__inner {
    padding: 10rem 3rem 6rem;
  }
}
.footer__logo {
  width: 100%;
  padding: 0 2rem;
}
.footer__logo img {
  width: 100%;
  height: auto;
}
.footer .c-tag {
  padding: 0 2rem;
}
.footer__map {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__map address {
  font-size: 1.8rem;
  line-height: var(--lh-14);
  text-align: center;
}
.footer__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 400/250;
}
.footer__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .c-desc {
  margin-top: 4rem;
}
.footer__links {
  display: flex;
  justify-content: center;
}
.footer__links a {
  display: block;
  width: 29.3rem;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .footer__links a:hover {
    transform: scale(1.05);
  }
}
.footer__links a img {
  width: 100%;
  height: auto;
}
.footer__copy {
  padding: 2rem 2rem 10rem;
  background: var(--font-color);
}
.footer__copy p {
  color: var(--base-color);
  font-size: 1.4rem;
  line-height: var(--lh-16);
  text-align: center;
}

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

サイドバー

------------------------------------------------------------ */
.menuButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 7rem;
  background: var(--color-navy);
  border-radius: 50%;
  opacity: 1;
  position: fixed;
  top: 6rem;
  right: 6rem;
  z-index: 5;
  cursor: pointer;
  transition: filter 0.3s, top 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton {
    width: 6rem;
    height: 6rem;
    top: 2rem;
    right: 2rem;
  }
}
@media (hover: hover) {
  .menuButton:hover {
    filter: brightness(1.5);
  }
}
.menuButton .border {
  width: 3rem;
  height: 0.1rem;
  background: var(--base-color);
  position: absolute;
  transition: transform 0.4s, opacity 0.4s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .border {
    width: 2.3rem;
  }
}
.menuButton .border:nth-child(1) {
  transform: translateY(-0.8rem);
}
.menuButton .border:nth-child(3) {
  transform: translateY(0.8rem);
}
.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 {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  translate: -50% 0;
  z-index: 3;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn {
    width: 100%;
  }
}
.mvFixedBtn .c-btnUnit {
  flex-direction: unset;
  width: 44rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn .c-btnUnit {
    width: 100%;
    padding: 0 1rem;
  }
}
.mvFixedBtn .c-btnUnit__reservation, .mvFixedBtn .c-btnUnit__tel {
  width: calc((100% - 2rem) / 2);
  height: 5rem;
  border-radius: 3rem;
  font-size: 1.6rem;
}

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

PC時の表示

------------------------------------------------------------ */
.wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wrapper {
    width: unset;
    height: unset;
  }
}
.wrapper::before {
  content: "";
  display: block;
  width: 33.3333333333%;
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  position: fixed;
  bottom: 0;
  right: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wrapper::before {
    display: none;
  }
}

h1 {
  width: 33.3333333333%;
  padding: 0 5rem;
  color: var(--base-color);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: var(--lh-14);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: fixed;
  top: 5rem;
  left: 0;
  z-index: 3;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  h1 {
    width: 100%;
    padding: 0 10rem 0 3rem;
    color: var(--font-color);
    position: absolute;
    top: 2rem;
  }
}

.pc-border {
  width: 100%;
  height: 100vh;
  border: 2.5rem solid var(--color-bluegray);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-border {
    border: 1.5rem solid var(--color-bluegray);
  }
}

.pc-corner {
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.pc-corner picture {
  position: absolute;
}
.pc-corner picture img {
  width: 8rem;
  height: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-corner picture img {
    width: 4rem;
    height: 4rem;
  }
}
.pc-corner picture:nth-of-type(1) {
  top: -1px;
  left: -1px;
}
.pc-corner picture:nth-of-type(2) {
  top: -1px;
  right: -1px;
}
.pc-corner picture:nth-of-type(2) img {
  transform: scale(-1, 1);
}
.pc-corner picture:nth-of-type(3) {
  bottom: -1px;
  left: -1px;
}
.pc-corner picture:nth-of-type(3) img {
  transform: scale(1, -1);
}
.pc-corner picture:nth-of-type(4) {
  bottom: -1px;
  right: -1px;
}
.pc-corner picture:nth-of-type(4) img {
  transform: scale(-1, -1);
}

.pc-image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-image {
    display: none;
  }
}
.pc-image .pcImageSlider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.pc-image .pcImageSlider__slide {
  height: 100%;
  width: 120%;
  position: absolute;
}
.pc-image .pcImageSlider__image {
  width: 100%;
  height: 100%;
}
.pc-image .pcImageSlider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pc-image .pcImageSlider__slide:nth-child(1) {
  animation: slideMaskPc 30s ease infinite;
  z-index: 6;
}
.pc-image .pcImageSlider__slide:nth-child(1) .pcImageSlider__image {
  animation: slideMove 30s linear infinite;
}
.pc-image .pcImageSlider__slide:nth-child(1) img {
  animation: slideFade 30s ease infinite;
}
.pc-image .pcImageSlider__slide:nth-child(2) {
  animation: slideMaskPc 30s 5s ease infinite;
  z-index: 5;
}
.pc-image .pcImageSlider__slide:nth-child(2) .pcImageSlider__image {
  animation: slideMove 30s 5s linear infinite;
}
.pc-image .pcImageSlider__slide:nth-child(2) img {
  animation: slideFade 30s 5s ease infinite;
}
.pc-image .pcImageSlider__slide:nth-child(3) {
  animation: slideMaskPc 30s 10s ease infinite;
  z-index: 4;
}
.pc-image .pcImageSlider__slide:nth-child(3) .pcImageSlider__image {
  animation: slideMove 30s 10s linear infinite;
}
.pc-image .pcImageSlider__slide:nth-child(3) img {
  animation: slideFade 30s 10s ease infinite;
}
.pc-image .pcImageSlider__slide:nth-child(4) {
  animation: slideMaskPc 30s 15s ease infinite;
  z-index: 3;
}
.pc-image .pcImageSlider__slide:nth-child(4) .pcImageSlider__image {
  animation: slideMove 30s 15s linear infinite;
}
.pc-image .pcImageSlider__slide:nth-child(4) img {
  animation: slideFade 30s 15s ease infinite;
}
.pc-image .pcImageSlider__slide:nth-child(5) {
  animation: slideMaskPc 30s 20s ease infinite;
  z-index: 2;
}
.pc-image .pcImageSlider__slide:nth-child(5) .pcImageSlider__image {
  animation: slideMove 30s 20s linear infinite;
}
.pc-image .pcImageSlider__slide:nth-child(5) img {
  animation: slideFade 30s 20s ease infinite;
}
.pc-image .pcImageSlider__slide:nth-child(6) {
  animation: slideMaskPc 30s 25s ease infinite;
  z-index: 1;
}
.pc-image .pcImageSlider__slide:nth-child(6) .pcImageSlider__image {
  animation: slideMove 30s 25s linear infinite;
}
.pc-image .pcImageSlider__slide:nth-child(6) img {
  animation: slideFade 30s 25s ease infinite;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(1) {
  animation-delay: 0.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(1) img {
  animation-delay: 0.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(2) {
  animation-delay: 5.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(2) .pcImageSlider__image {
  animation-delay: 5.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(2) img {
  animation-delay: 5.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(3) {
  animation-delay: 10.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(3) .pcImageSlider__image {
  animation-delay: 10.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(3) img {
  animation-delay: 10.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(4) {
  animation-delay: 15.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(4) .pcImageSlider__image {
  animation-delay: 15.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(4) img {
  animation-delay: 15.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(5) {
  animation-delay: 20.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(5) .pcImageSlider__image {
  animation-delay: 20.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(5) img {
  animation-delay: 20.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(6) {
  animation-delay: 25.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(6) .pcImageSlider__image {
  animation-delay: 25.15s;
}
.pc-image .pcImageSlider:nth-child(2) .pcImageSlider__slide:nth-child(6) img {
  animation-delay: 25.15s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(1) {
  animation-delay: 0.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(1) img {
  animation-delay: 0.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(2) {
  animation-delay: 5.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(2) .pcImageSlider__image {
  animation-delay: 5.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(2) img {
  animation-delay: 5.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(3) {
  animation-delay: 10.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(3) .pcImageSlider__image {
  animation-delay: 10.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(3) img {
  animation-delay: 10.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(4) {
  animation-delay: 15.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(4) .pcImageSlider__image {
  animation-delay: 15.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(4) img {
  animation-delay: 15.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(5) {
  animation-delay: 20.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(5) .pcImageSlider__image {
  animation-delay: 20.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(5) img {
  animation-delay: 20.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(6) {
  animation-delay: 25.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(6) .pcImageSlider__image {
  animation-delay: 25.3s;
}
.pc-image .pcImageSlider:nth-child(3) .pcImageSlider__slide:nth-child(6) img {
  animation-delay: 25.3s;
}

.pc-info {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.3333333333%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc-info {
    display: none;
  }
}
.pc-info__unit {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
  width: 20.8333333333vw;
}
.pc-info__logo a {
  display: block;
  width: 27.8rem;
}
.pc-info__logo a img {
  width: 100%;
  height: auto;
}
.pc-info .c-tag {
  width: 33.7rem;
  margin-bottom: 2rem;
}
.pc-info .c-tag::before, .pc-info .c-tag::after {
  background: var(--base-color);
}
.pc-info .c-tag li {
  color: var(--base-color);
}
.pc-info .c-tag li span {
  color: var(--base-color);
}
.pc-info .mvNews {
  width: 100%;
}
.pc-info .mvNews__unit {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.pc-info .mvNews__unit p {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--base-color);
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.pc-info .mvNews__unit p::before {
  content: "";
  display: block;
  width: 0.2rem;
  height: 2.2rem;
  background: var(--base-color);
}
.pc-info .mvNews__unit a {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--base-color);
  color: var(--base-color);
  font-size: 1.5rem;
}
@media (hover: hover) {
  .pc-info .mvNews__unit a:hover svg {
    transform: scale(1.2);
  }
}
.pc-info .mvNews__unit a svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--base-color);
  transition: transform 0.3s;
}

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

メインコンテンツ

------------------------------------------------------------ */
.allContent {
  width: 33.3333333333%;
  margin-inline: auto;
  position: relative;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .allContent {
    display: contents;
  }
}
.allContent::before, .allContent::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .allContent::before, .allContent::after {
    display: none;
  }
}
.allContent::before {
  height: 71.1111111111vh;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  top: 28.8888888889vh;
}
.allContent::after {
  height: calc(100% - 100vh);
  background: rgba(0, 0, 0, 0.8) 100%;
  top: 100vh;
}
.allContent__inner {
  width: 44rem;
  margin-inline: auto;
  background: var(--base-color);
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .allContent__inner {
    display: contents;
  }
}
.allContent__inner::before, .allContent__inner::after {
  content: "";
  display: block;
  width: 52rem;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .allContent__inner::before, .allContent__inner::after {
    display: none;
  }
}
.allContent__inner::before {
  height: 74.4444444444vh;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.07) 23.43%, rgba(255, 255, 255, 0.7) 100%);
  top: 0;
}
.allContent__inner::after {
  height: calc(100% - 74.4444444444vh);
  background: rgba(255, 255, 255, 0.7);
  top: 74.4444444444vh;
}

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

ドロワーメニュー

------------------------------------------------------------ */
.drawerMenu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 33.3333333333%;
  height: 100vh;
  background: rgba(20, 73, 112, 0.5);
  backdrop-filter: blur(2rem);
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  transition: all 0.4s ease;
}
.drawerMenu.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu {
    width: 100%;
    height: 100%;
    padding: 8rem 3rem;
    background: #2e5a7a;
    backdrop-filter: blur(0);
  }
}
.drawerMenu__nav {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 20.8333333333vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__nav {
    width: 100%;
  }
}
.drawerMenu__itme p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.drawerMenu__itme p::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 1.5rem;
  background: var(--base-color);
}
.drawerMenu__itme ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.drawerMenu__itme ul li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--base-color);
}
@media (hover: hover) {
  .drawerMenu__itme ul li a:hover {
    text-decoration: underline;
  }
}
.drawerMenu__itme ul li a::before {
  flex: none;
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: url("../images/icon_arrow_01.svg") no-repeat center/contain;
}

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

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

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

スライダーアニメーション（PC・SP共通）

------------------------------------------------------------ */
@keyframes slideMaskPc {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  }
  17% {
    z-index: 7;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  }
  24% {
    z-index: 7;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  32% {
    z-index: 0;
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}
@keyframes slideMaskSp {
  0% {
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  }
  17% {
    z-index: 7;
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  }
  24% {
    z-index: 7;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  32% {
    z-index: 0;
  }
  100% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
}
@keyframes slideMove {
  0% {
    transform: translateX(0%);
  }
  24% {
    transform: translateX(-15%);
  }
  79% {
    transform: translateX(-15%);
  }
  80% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slideFade {
  0% {
    opacity: 1;
  }
  18% {
    opacity: 1;
  }
  24% {
    opacity: 0;
  }
  79% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/* ------------------------------------------------------------

トップページ

------------------------------------------------------------ */
.page-top section {
  padding: 0;
}
.page-top .mv {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv {
    justify-content: unset;
    gap: 2.8rem;
    height: unset;
    padding: 8rem 0;
  }
  .page-top .mv::after {
    content: "";
    display: block;
    width: 100%;
    background: url(../images/bg_home_04.webp) no-repeat center/contain;
    aspect-ratio: 440/500;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}
.page-top .mv__logo img, .page-top .mv__year img, .page-top .mv__catch img {
  width: 100%;
  height: auto;
}
.page-top .mv__logo {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv__logo {
    display: block;
    width: 13.9rem;
  }
}
.page-top .mv__year {
  width: 11.6rem;
}
.page-top .mv__catch {
  width: 31.4rem;
}
.page-top .sp-image {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .sp-image {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    width: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
}
.page-top .sp-image .spMVSlider {
  width: 100%;
  height: 30rem;
  position: relative;
  overflow: hidden;
}
.page-top .sp-image .spMVSlider__slide {
  height: 100%;
  width: 120%;
  position: absolute;
}
.page-top .sp-image .spMVSlider__image {
  width: 100%;
  height: 100%;
}
.page-top .sp-image .spMVSlider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-top .sp-image .spMVSlider__slide:nth-child(1) {
  animation: slideMaskSp 30s ease infinite;
  z-index: 6;
}
.page-top .sp-image .spMVSlider__slide:nth-child(1) .spMVSlider__image {
  animation: slideMove 30s linear infinite;
}
.page-top .sp-image .spMVSlider__slide:nth-child(1) img {
  animation: slideFade 30s ease infinite;
}
.page-top .sp-image .spMVSlider__slide:nth-child(2) {
  animation: slideMaskSp 30s 5s ease infinite;
  z-index: 5;
}
.page-top .sp-image .spMVSlider__slide:nth-child(2) .spMVSlider__image {
  animation: slideMove 30s 5s linear infinite;
}
.page-top .sp-image .spMVSlider__slide:nth-child(2) img {
  animation: slideFade 30s 5s ease infinite;
}
.page-top .sp-image .spMVSlider__slide:nth-child(3) {
  animation: slideMaskSp 30s 10s ease infinite;
  z-index: 4;
}
.page-top .sp-image .spMVSlider__slide:nth-child(3) .spMVSlider__image {
  animation: slideMove 30s 10s linear infinite;
}
.page-top .sp-image .spMVSlider__slide:nth-child(3) img {
  animation: slideFade 30s 10s ease infinite;
}
.page-top .sp-image .spMVSlider__slide:nth-child(4) {
  animation: slideMaskSp 30s 15s ease infinite;
  z-index: 3;
}
.page-top .sp-image .spMVSlider__slide:nth-child(4) .spMVSlider__image {
  animation: slideMove 30s 15s linear infinite;
}
.page-top .sp-image .spMVSlider__slide:nth-child(4) img {
  animation: slideFade 30s 15s ease infinite;
}
.page-top .sp-image .spMVSlider__slide:nth-child(5) {
  animation: slideMaskSp 30s 20s ease infinite;
  z-index: 2;
}
.page-top .sp-image .spMVSlider__slide:nth-child(5) .spMVSlider__image {
  animation: slideMove 30s 20s linear infinite;
}
.page-top .sp-image .spMVSlider__slide:nth-child(5) img {
  animation: slideFade 30s 20s ease infinite;
}
.page-top .sp-image .spMVSlider__slide:nth-child(6) {
  animation: slideMaskSp 30s 25s ease infinite;
  z-index: 1;
}
.page-top .sp-image .spMVSlider__slide:nth-child(6) .spMVSlider__image {
  animation: slideMove 30s 25s linear infinite;
}
.page-top .sp-image .spMVSlider__slide:nth-child(6) img {
  animation: slideFade 30s 25s ease infinite;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(1) {
  animation-delay: 0.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(1) img {
  animation-delay: 0.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(2) {
  animation-delay: 5.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(2) .spMVSlider__image {
  animation-delay: 5.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(2) img {
  animation-delay: 5.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(3) {
  animation-delay: 10.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(3) .spMVSlider__image {
  animation-delay: 10.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(3) img {
  animation-delay: 10.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(4) {
  animation-delay: 15.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(4) .spMVSlider__image {
  animation-delay: 15.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(4) img {
  animation-delay: 15.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(5) {
  animation-delay: 20.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(5) .spMVSlider__image {
  animation-delay: 20.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(5) img {
  animation-delay: 20.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(6) {
  animation-delay: 25.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(6) .spMVSlider__image {
  animation-delay: 25.15s;
}
.page-top .sp-image .spMVSlider:nth-child(2) .spMVSlider__slide:nth-child(6) img {
  animation-delay: 25.15s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(1) {
  animation-delay: 0.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(1) img {
  animation-delay: 0.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(2) {
  animation-delay: 5.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(2) .spMVSlider__image {
  animation-delay: 5.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(2) img {
  animation-delay: 5.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(3) {
  animation-delay: 10.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(3) .spMVSlider__image {
  animation-delay: 10.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(3) img {
  animation-delay: 10.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(4) {
  animation-delay: 15.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(4) .spMVSlider__image {
  animation-delay: 15.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(4) img {
  animation-delay: 15.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(5) {
  animation-delay: 20.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(5) .spMVSlider__image {
  animation-delay: 20.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(5) img {
  animation-delay: 20.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(6) {
  animation-delay: 25.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(6) .spMVSlider__image {
  animation-delay: 25.3s;
}
.page-top .sp-image .spMVSlider:nth-child(3) .spMVSlider__slide:nth-child(6) img {
  animation-delay: 25.3s;
}
.page-top .bgWrapConcept {
  background: url(../images/bg_home_01.webp) no-repeat center/cover;
}
.page-top .bgWrapProject {
  background: url(../images/bg_home_03.webp) no-repeat center/cover;
}
.page-top .renovation {
  margin: 6rem 0 7.2rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .renovation {
    margin-top: 11rem;
  }
}
.page-top .renovation::before {
  content: "";
  width: 100%;
  height: 40.2rem;
  background: #144970;
  position: absolute;
  top: 14rem;
  left: 0;
}
.page-top .renovation__upper, .page-top .renovation__text, .page-top .renovation__lower {
  position: relative;
  z-index: 1;
}
.page-top .renovation__upper img, .page-top .renovation__text img, .page-top .renovation__lower img {
  width: 100%;
  height: auto;
}
.page-top .renovation__upper, .page-top .renovation__lower {
  width: 38rem;
}
.page-top .renovation__upper {
  margin-left: 2rem;
}
.page-top .renovation__text {
  width: 33.5rem;
  margin-inline: auto 0;
}
.page-top .renovation__lower {
  margin-inline: auto 0;
}
.page-top .about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  padding: 0 3rem;
  margin-bottom: 10rem;
}
.page-top .about__logo {
  display: block;
  padding: 0 1rem;
}
.page-top .about__logo img {
  width: 100%;
  height: auto;
}
.page-top .about .c-tag {
  padding: 0 1rem;
}
.page-top .about__info {
  text-align: center;
}
.page-top .about__info p {
  font-size: 1.8rem;
  line-height: var(--lh-16);
}
.page-top .about__info .mapBtn {
  margin: 1rem auto 0;
}
.page-top .about .c-btnUnit {
  width: 100%;
}
.page-top .renewal {
  position: relative;
  padding: 0 3rem;
  margin-bottom: 13.2rem;
  position: relative;
}
.page-top .renewal__upper {
  width: 44rem;
  margin-left: -3rem;
}
.page-top .renewal__upper img {
  width: 100%;
  height: auto;
}
.page-top .renewal__head {
  margin: -15rem 0 3.6rem;
  position: relative;
  z-index: 1;
}
.page-top .renewal__head p {
  width: fit-content;
  padding: 0.5rem;
  margin-bottom: 2rem;
  background: #144970;
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.4rem;
  line-height: 1;
}
.page-top .renewal__head p span {
  font-size: 3rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .renewal__head img {
  width: 26.3rem;
  height: auto;
}
.page-top .renewal__catch {
  writing-mode: vertical-rl;
  font-feature-settings: normal;
  position: absolute;
  top: 28rem;
  right: 3rem;
}
.page-top .renewal__catch span {
  display: inline-block;
  color: #436782;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.4rem;
  line-height: var(--lh-14);
  letter-spacing: 0.5rem;
}
.page-top .renewal__catch span:nth-of-type(2) {
  margin-top: 3.2rem;
}
.page-top .renewal__catch span:nth-of-type(3) {
  margin-top: 6.4rem;
}
.page-top .renewal__lower {
  width: 26rem;
  margin-bottom: 4rem;
}
.page-top .renewal__lower img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.page-top .concept__image img {
  width: 100%;
  height: auto;
}
.page-top .concept__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.2rem;
  padding: 5rem 3rem 10rem;
}
.page-top .concept__catch {
  display: flex;
  flex-direction: row-reverse;
}
.page-top .concept__catch span {
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  font-feature-settings: normal;
}
.page-top .concept__catch span.accent {
  height: fit-content;
  margin: 0 1rem;
  padding: 3rem 0;
  background: #436782;
  color: var(--base-color);
  position: relative;
}
.page-top .concept__catch span.accent::before {
  content: "“";
  display: block;
  writing-mode: horizontal-tb;
  position: absolute;
  top: 0;
  left: 0.8rem;
}
.page-top .concept__catch span.accent::after {
  content: "”";
  display: block;
  writing-mode: horizontal-tb;
  position: absolute;
  bottom: -1rem;
  right: 0.3rem;
}
.page-top .concept__slide {
  display: flex;
  position: relative;
  overflow: hidden;
}
.page-top .concept__slide::before {
  content: "";
  display: block;
  width: 100%;
  height: 22rem;
  background: #436782;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
}
.page-top .concept__slide div {
  flex: none;
  width: 88rem;
  height: 100%;
  animation: conceptSlide 30s linear infinite;
}
.page-top .concept__slide div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes conceptSlide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.page-top .history {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  padding: 8rem 3rem 10rem;
}
.page-top .history__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  position: relative;
}
.page-top .history__item {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
.page-top .history__item.reverse {
  flex-direction: row-reverse;
}
.page-top .history__image {
  flex: none;
  width: 22rem;
}
.page-top .history__image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.page-top .history__text {
  display: flex;
  flex-direction: row-reverse;
}
.page-top .history__text p {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.15em;
  line-height: var(--lh-14);
  writing-mode: vertical-rl;
  font-feature-settings: normal;
}
.page-top .history__text p:first-child {
  font-size: 1.9rem;
}
.page-top .history__text p:last-child {
  font-size: 3rem;
}
.page-top .history__text p:last-child span {
  color: var(--color-bluegray);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .history__cross {
  width: 6.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.page-top .history__cross img {
  width: 100%;
  height: auto;
}
.page-top .opinion {
  padding: 10rem 3rem;
  background: linear-gradient(#436782 0%, #144970 100%);
  position: relative;
}
.page-top .opinion::before {
  content: "";
  width: 100%;
  height: 40rem;
  background: url(../images/bg_home_02.webp) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.page-top .opinion__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  margin-bottom: 8rem;
  color: var(--base-color);
}
.page-top .opinion__unit {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page-top .opinion__unit h2 {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.4rem;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  font-feature-settings: normal;
}
.page-top .opinion__image {
  flex: none;
  width: 33rem;
}
.page-top .opinion__image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.page-top .opinion__contact {
  margin: 0 -3rem 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #80a5c1;
}
.page-top .opinion__contact p {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-bottom: 3rem;
  color: var(--base-color);
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
  position: relative;
}
.page-top .opinion__contact p::before, .page-top .opinion__contact p::after {
  flex: 1;
  content: "";
  display: block;
  height: 1px;
  background: #80a5c1;
}
.page-top .opinion__contact .c-btnUnit {
  margin: 0 3rem;
}
.page-top .opinion__case {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 5.2rem 1rem;
  background: var(--base-color);
}
.page-top .opinion__case .c-caseBox {
  margin-bottom: 2rem;
}
.page-top .opinion__case .c-caseBox .imageSlider__before .inner p,
.page-top .opinion__case .c-caseBox .imageSlider__after::after {
  display: none;
}
.page-top .opinion__case .c-caseBox .imageSlider__before img,
.page-top .opinion__case .c-caseBox .imageSlider__after img {
  aspect-ratio: 360/220;
}
.page-top .menu__image img {
  width: 100%;
  height: auto;
}
.page-top .menu__inner {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 5.2rem 3rem 10rem;
}
.page-top .menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.page-top .menu__list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: calc((100% - 2rem) / 2);
  padding: 1rem 2rem;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  color: var(--base-color);
  position: relative;
}
@media (hover: hover) {
  .page-top .menu__list a:hover svg {
    transform: scale(1.3);
  }
}
.page-top .menu__list a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-top .menu__list a span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  text-align: center;
}
.page-top .menu__list a span.sub {
  font-size: 2rem;
}
.page-top .menu__list a span.main {
  position: relative;
}
.page-top .menu__list a span.main::before {
  content: "";
  display: block;
  width: 12rem;
  height: 1px;
  margin-bottom: 1.5rem;
  background: var(--base-color);
}
.page-top .menu__list a svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--base-color);
  transition: transform 0.3s;
}
.page-top .project__image img {
  width: 100%;
  height: auto;
}
.page-top .project__inner {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 0 3rem 10rem;
}
.page-top .endodontics {
  padding: 0 3rem 10rem;
}
.page-top .endodontics__image {
  margin-inline: -1rem;
}
.page-top .endodontics__image img {
  width: 100%;
  height: auto;
}
.page-top .endodontics__inner {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  margin-top: -4rem;
}
.page-top .endodontics__inner .heading01 h3 span.main {
  letter-spacing: 0.05em;
}
.page-top .implant {
  position: relative;
}
.page-top .implant::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 13rem);
  background: #436782;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.page-top .implant__upper {
  padding: 0 3rem 5rem;
  color: var(--base-color);
  position: relative;
  z-index: 1;
}
.page-top .implant__upper .heading01 {
  margin: -4rem 0 2rem;
}
.page-top .implant__image {
  margin-inline: -1rem;
}
.page-top .implant__image img {
  width: 100%;
  height: auto;
}
.page-top .implant__middle {
  padding: 5rem 0 5rem 3rem;
  background: #144970;
  color: var(--base-color);
}
.page-top .implant__middle h4 {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 2rem;
}
.page-top .implant__middle h4 span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
}
.page-top .implant__middle h4 span:first-child {
  font-size: 2rem;
}
.page-top .implant__middle h4 span:last-child {
  font-size: 2.4rem;
}
.page-top .implant__slider .splide__arrows {
  display: flex;
  gap: 2rem;
  position: absolute;
  top: -5rem;
  right: 4rem;
}
.page-top .implant__slider .splide__arrow {
  display: grid;
  place-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--base-color);
  border-radius: 50%;
  cursor: pointer;
}
.page-top .implant__slider .splide__arrow svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--base-color);
}
.page-top .implant__slider .splide__arrow--prev svg {
  transform: scale(-1, 1);
}
.page-top .implant__slider .splide__arrow:disabled {
  opacity: 0.3;
}
.page-top .implant__slider .splide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem;
  background: var(--base-color);
  border-radius: 0.3rem;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.16);
}
.page-top .implant__slider .splide__slide img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.page-top .implant__slider .splide__slide p {
  color: var(--font-color);
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  text-align: center;
}
.page-top .implant__lower {
  padding: 4rem 3rem 5rem;
}
.page-top .implant__lower .c-box {
  margin-bottom: 4rem;
}
.page-top .preventive {
  padding: 10rem 3rem 2rem;
}
.page-top .preventive__image {
  margin-inline: -1rem;
}
.page-top .preventive__image img {
  width: 100%;
  height: auto;
}
.page-top .preventive__inner {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  margin: -4rem 0 8rem;
}
.page-top .preventive__banner {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 1rem;
  height: 22rem;
  padding-bottom: 2rem;
  border: 0.5rem solid #144970;
  border-radius: 0.5rem;
  transition: opacity 0.3s;
  position: relative;
}
@media (hover: hover) {
  .page-top .preventive__banner:hover {
    opacity: 0.8;
  }
}
.page-top .preventive__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-top .preventive__banner span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
}
.page-top .preventive__banner span.en {
  padding-left: 1rem;
  color: var(--color-bluegray);
}
.page-top .preventive__banner span.small {
  padding-left: 1rem;
}
.page-top .preventive__banner span.main {
  width: fit-content;
  padding: 0.5rem 2rem;
  background: #144970;
  font-size: 2.4rem;
  color: var(--base-color);
}
.page-top .features {
  padding: 5rem 0 10rem;
}
.page-top .features__lead {
  margin-bottom: 10rem;
  position: relative;
}
.page-top .features__lead img {
  width: 100%;
  height: auto;
}
.page-top .features__head {
  padding: 2rem 3rem 0;
  background: var(--base-color);
  position: absolute;
  bottom: -5rem;
  left: 0;
  z-index: 1;
}
.page-top .features__head .heading01 {
  align-items: center;
}
.page-top .features__head .heading01 h2 {
  align-items: flex-start;
  gap: 0;
  writing-mode: vertical-rl;
  font-feature-settings: normal;
}
.page-top .features__head .heading01 h2 span.main,
.page-top .features__head .heading01 h2 span.small {
  letter-spacing: 0.15em;
}
.page-top .features__list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding: 0 2rem;
}
.page-top .features__item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-top .features__item .c-desc {
  margin-bottom: 1rem;
}
.page-top .features__image {
  position: relative;
}
.page-top .features__image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.page-top .features__num {
  display: grid;
  place-content: center;
  width: 8.4rem;
  height: 8.4rem;
  background: url(../images/icon_home_02.webp) no-repeat center/contain;
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 4rem;
  position: absolute;
  bottom: -3rem;
  right: 1rem;
}
.page-top .greeting__image img {
  width: 100%;
  height: auto;
}
.page-top .greeting__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7.2rem;
  padding: 4rem 3rem 10rem;
}
.page-top .greeting__inner .c-button {
  margin-top: -3rem;
}
.page-top .greeting__text .heading01 {
  margin-bottom: -3rem;
}
.page-top .greeting__item {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.page-top .greeting__unit {
  display: flex;
  gap: 3.2rem;
  margin-inline: -1rem;
}
.page-top .greeting__unit img {
  flex: none;
  width: 29rem;
  height: auto;
}
.page-top .greeting__name {
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
}
.page-top .greeting__name p {
  font-size: 2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  font-feature-settings: normal;
}
.page-top .greeting__name p:nth-of-type(2) span {
  display: inline-block;
  margin-top: 1rem;
  font-size: 2.5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .greeting__list {
  width: 100%;
}
.page-top .greeting__list p {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
}
.page-top .greeting__list p::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 2.5rem;
  background: #144970;
}
.page-top .greeting__list ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-top .greeting__list ul li {
  display: flex;
  gap: 1rem;
  font-weight: 700;
  line-height: var(--lh-16);
}
.page-top .greeting__list ul li::before {
  flex: none;
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.8rem;
  background: #333333;
  border-radius: 50%;
}
.page-top .news {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 10rem 3rem;
  background: #144970;
}
.page-top .news .heading01 p:nth-of-type(2) {
  margin-top: 0.5rem;
  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 .news .c-newsList {
  gap: 2rem;
}
.page-top .news .c-newsList .item {
  width: 100%;
  padding-bottom: 2rem;
  border-bottom: 1px dotted #d7d7d7;
}
.page-top .news .c-newsList .item__category {
  width: 10rem;
  height: 3rem;
  font-size: 1.4rem;
  font-weight: 500;
}
.page-top .news .c-newsList .item time {
  font-size: 1.6rem;
}
.page-top .news .c-newsList .item__title {
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

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

記事一覧

------------------------------------------------------------ */
.archive {
  padding: 6rem 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .archive {
    padding: 6rem 3rem;
  }
}
.archive__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.archive__links .c-button {
  width: calc((100% - 2rem) / 2);
}
.archive__links .c-button svg {
  right: 1.2rem;
}
.archive__inner {
  padding-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.articleUnit img {
  width: 100%;
  height: auto;
  aspect-ratio: 400/260;
}
.articleUnit a {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  color: var(--font-color);
  padding: 2.4rem 0;
  position: relative;
  z-index: 0;
}
.articleUnit a::before, .articleUnit a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.articleUnit a::before {
  background: var(--base-color);
}
.articleUnit a::after {
  background: var(--color-navy);
  transform: scale(0.2, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .articleUnit a:hover::after {
    transform: scale(1, 1);
  }
}
.articleUnit__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 400/260;
}
.articleUnit__date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.articleUnit__date time {
  line-height: 1;
}
.articleUnit__category {
  display: grid;
  place-content: center;
  width: 8rem;
  height: 3rem;
  background: var(--color-navy);
  color: var(--base-color);
  font-size: 1.4rem;
  font-weight: 700;
}
.articleUnit__title {
  font-weight: 700;
  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;
  gap: 0.8rem;
}
.PageNavi .page-numbers {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  color: var(--font-color);
  font-weight: 700;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .PageNavi .page-numbers:hover {
    opacity: 0.6;
  }
}
.PageNavi .page-numbers:not(.prev):not(.next):not(.current) {
  display: none;
}
.PageNavi .page-numbers.current {
  color: var(--base-color);
  background: var(--color-navy);
  pointer-events: none;
}

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

記事詳細

------------------------------------------------------------ */
.single {
  padding: 6rem 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single {
    padding: 6rem 3rem;
  }
}
.single .h2-title {
  margin-bottom: 4rem;
}
.single .h3-title {
  margin-bottom: 3.2rem;
}
.single__image:not(:last-child) {
  margin-bottom: 2rem;
}
.single__image img {
  width: 100%;
  height: auto;
}
.single__image figcaption {
  text-align: center;
}
.single__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.single__desc:not(:last-child) {
  margin-bottom: 4rem;
}
.single__desc p,
.single__desc li {
  font-size: 1.6rem;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
.single__desc strong {
  font-weight: 900;
  font-size: 1.8rem;
}
.single__desc ol {
  margin-left: 2.5rem;
}
.single__desc ol li {
  list-style-type: decimal;
}
.single__desc ul {
  margin-left: 2.5rem;
}
.single__desc ul li {
  list-style-type: disc;
}
.single__desc a {
  color: var(--color-navy);
  text-decoration: underline;
}
.single__desc hr {
  width: 100%;
  border-style: solid;
  border-color: var(--color-gray);
}
.single__desc del {
  text-decoration: line-through;
}
.single__desc em {
  font-style: italic;
}
.single__desc blockquote {
  padding: 1rem;
  background: var(--color-gray);
  color: var(--base-color);
}
.single__desc h2,
.single__desc h3,
.single__desc h4,
.single__desc h5,
.single__desc h6 {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
}
.single__desc h2 {
  font-size: 2.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, var(--color-navy) 33.33%, #bbb 33.33%) 1;
}
.single__desc h3 {
  font-size: 2rem;
  padding-left: 1.4rem;
  border-left: 0.4rem solid;
  border-image: linear-gradient(to bottom, var(--color-navy) 50%, #aea078 50%) 1;
}
.single__desc h4 {
  padding-bottom: 1rem;
  border-bottom: 1px solid #243d47;
  color: #243d47;
  font-size: 1.8rem;
}
.single__desc h5 {
  color: var(--color-navy);
}
.single .treatment {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 8rem;
}
.single .treatment__item > h4 {
  padding: 1.2rem;
  margin-bottom: 1.6rem;
  font-size: 2rem;
  line-height: 1;
}
.single .treatment__item img {
  width: 100%;
  height: auto;
}
.single .treatment__before, .single .treatment__after {
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.single .treatment__before {
  background: var(--color-gray);
}
.single .treatment__after {
  background: var(--color-navy);
}
.single .treatment svg {
  width: 4.8rem;
  height: 4.8rem;
  margin-inline: auto;
  fill: var(--color-navy);
}
.single .c-table {
  margin-bottom: 6rem;
}
.single .supervision,
.single .overview {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 4rem 2rem;
  background: #f5f5f5;
}
.single .supervision__title,
.single .overview__title {
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  text-align: center;
}
.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__logo {
  width: 20rem;
  margin-inline: auto;
}
.single .overview__logo img {
  width: 100%;
  height: auto;
}
.single .overview dl {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.single .overview dl > div {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.single .overview dl > div dt {
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.single .overview dl > div dd a {
  display: inline-block;
  text-decoration: underline;
  color: var(--font-color);
}
@media (hover: hover) {
  .single .overview dl > div dd a:hover {
    text-decoration: none;
  }
}
.single .overview dl > div dd p:has(span) {
  display: flex;
  gap: 0.8rem;
}
.single .overview dl > div dd p:has(span) span {
  flex: none;
  width: 8rem;
}

.singleNavi {
  padding: 6rem 2rem 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .singleNavi {
    padding: 6rem 3rem 2rem;
  }
}
.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);
  font-weight: 700;
  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;
  }
}
/*# sourceMappingURL=style.css.map */
