@charset "UTF-8";
:root {
  --base-color: #fff;
  --font-color: #333;
  --color-brown: #4d351b;
  --color-brown02: #a98c4a;
  --color-yellow: #8f7632;
  --color-yellow02: #fcf5e3;
  --color-orange: #ff9900;
  --color-pink: #fedde8;
  --bg-color: #333;
  --lh-14: 1.4;
  --lh-16: 1.6;
  --lh-18: 1.8;
  --sans: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Meiryo", "MS PGothic", sans-serif;
  --serif: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}

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

Reset

------------------------------------------------------------ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
main {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  background: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  /*
      font:inherit;
      font-family:inherit;
      */
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

input,
textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  display: block;
}

:root {
  --scrollbar: 17px;
}

html {
  font-size: calc((100vw - var(--scrollbar)) / 1920 * 10 / 1620 * 1440);
  /*-ブレイクポイント1920px-*/
  /*-ブレイクポイント1620px-*/
  /*-ブレイクポイント1440px-*/
  /*-ブレイクポイント1200px-*/
  /*-ブレイクポイント767px-*/
}
@media screen and (max-width: 1920px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 1620px) {
  html {
    font-size: calc((100vw - var(--scrollbar)) / 1620 * 10);
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: calc((100vw - var(--scrollbar)) / 1440 * 9);
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: calc((100vw - var(--scrollbar)) / 1440 * 9.5);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary,
textarea {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

picture {
  display: block;
}

dialog {
  padding: 0;
  border: none;
}

/*a,
a:link,
a:visited,
a:hover,
a:active{
	outline:none;
	text-decoration:none;
}*/
/*a:focus-visible{outline: 2px dotted #333;}*/
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

.focus-visible {
  outline: 2px dotted #333;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
select {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  object-fit: cover;
}

button {
  color: var(--font-color);
  background: none;
  appearance: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

a {
  color: var(--font-color);
}

/*button:focus-visible{outline: thin dotted #333;}*/
* {
  font-family: var(--sans);
}

html {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-padding-top: 200px !important;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html {
    scroll-padding-top: 80px !important;
  }
}

body {
  background: var(--base-color);
  color: var(--font-color);
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-feature-settings: "palt";
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}

.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 6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-404 .content {
    padding: 8rem 2rem;
  }
}
.page-404 .content > p {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 4.8rem;
}
@media (hover: hover) {
  .page-404 .content .c-button:hover svg {
    translate: -0.3rem -50%;
  }
}
.page-404 .content .c-button svg {
  width: 1.8rem;
  height: 1.4rem;
  right: auto;
  left: 3rem;
  scale: -1 1;
}

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

パンくずリスト

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

ボタン

------------------------------------------------------------ */
.telBtn {
  color: var(--font-color);
  font-family: var(--serif);
}
.telBtn .small {
  font-size: 1.8rem;
  font-weight: 300;
  margin-inline: 0 1rem;
  font-family: inherit;
}
.telBtn .large {
  font-size: 3rem;
  font-weight: 300;
  font-family: inherit;
}
.telBtn.white {
  color: var(--base-color);
}

.contactBtn {
  font-size: 1.8rem;
  font-weight: 400;
  background: var(--color-brown);
  color: var(--base-color);
  font-family: var(--serif);
  padding: 1.35rem 0 1.05rem 0;
  min-width: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .contactBtn {
    min-width: 22rem;
  }
}
.contactBtn svg {
  width: 2.3rem;
  height: 0.85rem;
}

.mapBtn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.mapBtn svg {
  width: 1.1rem;
  height: 1.8rem;
  fill: var(--bg-color);
}
.mapBtn span {
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: underline;
}

.btn01 {
  display: inline-block;
  padding: 0 4rem 0.6rem 0;
  border-bottom: 1px solid var(--font-color);
  position: relative;
  z-index: 0;
}
.btn01::before {
  content: "";
  width: 0.1rem;
  height: 2rem;
  background: var(--font-color);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  rotate: -45deg;
  transform-origin: bottom left;
}
.btn01.white {
  color: var(--base-color);
  border-color: var(--base-color);
}
.btn01.white::before {
  background: var(--base-color);
}

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

流れパターン

------------------------------------------------------------ */
.c-flow .h3-title {
  margin-bottom: 3.2rem;
}
.c-flow__content {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}
.c-flow__content .unit {
  position: relative;
  z-index: 0;
}
.c-flow__content .unit:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: -7rem;
  left: 50%;
  translate: -50% 0;
  width: 4.3rem;
  height: 3rem;
  background: url(../images/icon_flow.jpg) no-repeat center/cover;
}
.c-flow__content .unit__title {
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
  color: var(--color-brown);
  border-bottom: 1px solid var(--color-brown02);
  display: flex;
  align-items: center;
}
.c-flow__content .unit__title .en {
  background: #fdbf00;
  color: var(--base-color);
  padding: 0.6rem 0.8rem 0.4rem;
  font-weight: 700;
  font-family: var(--serif);
  position: relative;
  z-index: 0;
}
.c-flow__content .unit__title .en::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.4rem;
  background: var(--color-orange);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.c-flow__content .unit__title .ja {
  color: var(--color-orange);
  font-weight: 700;
  padding: 0.6rem 0.8rem 0.4rem;
  background: var(--color-yellow02);
  font-family: var(--serif);
  flex: 1;
}
.c-flow__content .unit__content {
  display: flex;
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__content .unit__content {
    flex-direction: column;
  }
}
.c-flow__content .unit__content.row {
  flex-direction: column;
}
.c-flow__content .unit__content.row .unit__image {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.c-flow__content .unit__content.row .unit__image picture {
  width: 40%;
}
.c-flow__content .unit__content.row .unit__image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-flow__content .unit__content.row .unit__desc {
  width: 100%;
}
.c-flow__content .unit__content.row-single {
  flex-direction: column;
}
.c-flow__content .unit__content.row-single .unit__image {
  width: 100%;
}
.c-flow__content .unit__content.row-single .unit__image picture {
  width: 100%;
}
.c-flow__content .unit__content.row-single .unit__image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-flow__content .unit__content.row-single .unit__desc {
  width: 100%;
}
.c-flow__content .unit__image {
  width: 35%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__content .unit__image {
    width: 100%;
  }
}
.c-flow__content .unit__image picture {
  width: 100%;
}
.c-flow__content .unit__image picture img {
  width: 100%;
  height: auto;
}
.c-flow__content .unit__desc {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__content .unit__desc {
    width: 100%;
  }
}
.c-flow__content .unit__desc p {
  line-height: var(--lh-18);
}

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

ページタイトル

------------------------------------------------------------ */
.pageTitle {
  padding: 20rem 8rem 3rem;
  background: var(--color-yellow02);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pageTitle {
    padding: 10rem 0rem 3rem;
  }
}
.pageTitle__inner {
  width: min(120rem, 100%);
  margin-inline: auto;
  position: relative;
  z-index: 0;
}
.pageTitle__bg picture img {
  width: 100%;
  height: auto;
}
.pageTitle__text {
  position: absolute;
  top: 50%;
  left: 4rem;
  translate: 0 -50%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pageTitle__text {
    top: auto;
    left: 2rem;
    bottom: 2rem;
    translate: 0;
  }
}
.pageTitle__text h2 {
  font-size: 4rem;
  font-weight: 600;
  font-family: var(--serif);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pageTitle__text h2 {
    font-size: 2.4rem;
  }
}

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

下層のパーツ

------------------------------------------------------------ */
.c-unit {
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
}
.c-unit:not(:last-child) {
  margin-bottom: 6.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit:not(:last-child) {
    margin-bottom: 4.8rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit {
    gap: 4.8rem;
  }
}
.c-unit__item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__item {
    gap: 1.6rem;
  }
}
.c-unit__item.bg-pink {
  padding: 2.4rem;
  background: var(--color-pink);
}
.c-unit__item.bg-yellow {
  padding: 2.4rem;
  background: var(--color-yellow02);
  border: 1px solid var(--color-yellow);
}
.c-unit__item .bg-orange {
  background: var(--color-orange);
  padding: 0.6rem 1.6rem 0.2rem;
  color: var(--base-color);
  font-weight: 700;
  width: fit-content;
}
.c-unit__item.result-section {
  display: none;
}
.c-unit__item.result-section.active {
  display: flex;
}
.c-unit__content {
  display: flex;
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__content {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.c-unit__content.singleUnit .c-unit__image {
  width: 100%;
}
.c-unit__content.singleUnit .c-unit__desc {
  width: 100%;
}
.c-unit__content.h6Unit {
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__content.h6Unit {
    margin-top: 2.4rem;
  }
}
.c-unit__content.h6Unit .c-unit__desc {
  gap: 0;
}
.c-unit__content.column {
  flex-direction: column;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__content.column {
    flex-direction: column;
  }
}
.c-unit__content.column .c-unit__image {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8rem;
  position: relative;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__content.column .c-unit__image {
    flex-direction: column;
    gap: 6.4rem;
  }
}
.c-unit__content.column .c-unit__desc {
  width: 100%;
}
.c-unit__content.column.arrow .c-unit__image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  width: 4rem;
  height: 3.2rem;
  background: var(--bg-color);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__content.column.arrow .c-unit__image::before {
    width: 3rem;
    height: 2.8rem;
    rotate: 90deg;
  }
}
.c-unit__image {
  width: 40%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__image {
    width: 100%;
  }
}
.c-unit__image picture {
  width: 100%;
}
.c-unit__image picture img {
  width: 100%;
  height: auto;
}
.c-unit__image figure figcaption {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 700;
  margin-top: 0.8rem;
}
.c-unit__desc {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__desc {
    width: 100%;
  }
}
.c-unit__desc p {
  line-height: var(--lh-18);
  color: var(--font-color);
}
.c-unit__desc p a {
  color: var(--color-orange);
  text-decoration: underline;
  font-weight: 700;
}
.c-unit__desc p .bold {
  font-weight: 700;
  color: var(--font-color);
  font-size: 1.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__desc p .bold {
    font-size: 1.6rem;
  }
}
.c-unit__desc p.dot {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.c-unit__desc p.dot::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  background-color: var(--color-brown02);
  border-radius: 50%;
}
.c-unit__desc ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-unit__desc ul li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.c-unit__desc ul li::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--color-brown02);
  border-radius: 50%;
}
.c-unit__desc ol {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  counter-reset: listnum;
}
.c-unit__desc ol li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  list-style: armenian;
}
.c-unit__desc ol li::before {
  content: counter(listnum) ".";
  counter-increment: listnum;
}
.c-unit__items {
  width: 80%;
  margin-inline: auto;
}
.c-unit__items ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}
.c-unit__items ul li {
  width: calc((100% - 4.8rem) / 3);
  background: linear-gradient(180deg, rgb(241, 135, 173) 10%, rgb(225, 76, 131) 65%);
  font-size: 1.6rem;
  padding: 1.6rem;
  color: var(--base-color);
  font-weight: 700;
  display: grid;
  place-items: center;
}
.c-unit__point {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 2.4rem;
  border: 2px solid var(--color-pink);
}
.c-unit__point .h5-title .large {
  color: var(--color-orange);
  font-size: 2.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__point .h5-title .large {
    font-size: 2.2rem;
  }
}
.c-unit.reverse .c-unit__item:nth-child(even) .c-unit__content {
  flex-direction: row-reverse;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit.reverse .c-unit__item:nth-child(even) .c-unit__content {
    flex-direction: column;
  }
}
.c-unit.reverse .c-unit__image {
  width: 50%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit.reverse .c-unit__image {
    width: 100%;
  }
}
.c-unit.reverse .c-unit__desc {
  width: 50%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit.reverse .c-unit__desc {
    width: 100%;
  }
}

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

見出し

------------------------------------------------------------ */
.heading {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  font-family: var(--serif);
  width: fit-content;
}
.heading__ja {
  font-size: 3.3rem;
  font-weight: 400;
  font-family: inherit;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .heading__ja {
    font-size: 3rem;
  }
}
.heading__en {
  font-size: 1.8rem;
  color: var(--color-brown02);
  font-family: inherit;
  line-height: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .heading__en {
    font-size: 1.6rem;
  }
}
.heading.white .heading__ja {
  color: var(--base-color);
}

.h3-title {
  font-size: 2.6rem;
  background: #7c5910;
  color: var(--base-color);
  padding: 1rem 2.4rem 0.8rem;
  font-family: var(--serif);
  font-weight: 700;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .h3-title {
    font-size: 2.4rem;
  }
}

.h4-title {
  font-size: 2.4rem;
  color: var(--color-brown);
  font-family: var(--serif);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--color-orange);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .h4-title {
    font-size: 2rem;
  }
}
.h4-title::before {
  content: "";
  display: inline-block;
  width: 3.2rem;
  height: 3.2rem;
  background: url(../images/icon_h4.jpg) no-repeat center/cover;
  flex: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .h4-title::before {
    width: 2.4rem;
    height: 2.4rem;
  }
}

.h5-title {
  font-size: 2.4rem;
  color: var(--color-brown);
  font-family: var(--serif);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .h5-title {
    font-size: 2rem;
  }
}
.h5-title::before {
  content: "";
  display: inline-block;
  flex: none;
  width: 0.5rem;
  min-height: 1.7rem;
  align-self: stretch;
  background: linear-gradient(180deg, rgb(241, 135, 173) 10%, rgb(225, 76, 131) 65%);
}

.h6-title {
  font-size: 2rem;
  color: var(--color-orange);
  font-family: var(--serif);
  font-weight: 700;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .h6-title {
    font-size: 1.8rem;
  }
}

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

footerとサイドバーのナビゲーション

------------------------------------------------------------ */
.navItems {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.navItems__title {
  font-size: 1.6rem;
  color: var(--base-color);
  font-weight: 400;
  border-bottom: 1px solid var(--base-color);
  padding-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navItems__title::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--base-color);
  border-radius: 50%;
}
.navItems nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.navItems nav ul li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.navItems nav ul li a svg {
  width: 0.9rem;
  height: 0.6rem;
  fill: var(--base-color);
}
.navItems nav ul li a span {
  font-size: 1.6rem;
  color: var(--base-color);
  font-weight: 400;
}
.navItems nav.col-2 {
  display: flex;
  gap: 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .navItems nav.col-2 {
    flex-direction: column;
    gap: 1.6rem;
  }
}

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

テーブル

------------------------------------------------------------ */
.scheduleTable {
  width: 100%;
}
.scheduleTable thead th {
  padding-bottom: 0.8rem !important;
}
.scheduleTable tr {
  border-bottom: 1px dotted #9a9a9a;
}
.scheduleTable th,
.scheduleTable td {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .scheduleTable th,
  .scheduleTable td {
    font-size: 1.2rem;
  }
}
.scheduleTable__header {
  text-align: left !important;
  padding: 1.5rem 1.3rem 1.2rem;
  width: 14rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .scheduleTable__header {
    font-size: 1.2rem;
    width: 9.5rem;
    padding: 1.1rem 0.8rem 1rem;
  }
}
.scheduleTable__time {
  text-align: left !important;
  padding-bottom: 0.8rem;
  width: 14rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .scheduleTable__time {
    font-size: 1.2rem;
    width: 9.5rem;
  }
}

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

医院情報

------------------------------------------------------------ */
.clinicInfo:not(:last-child) {
  margin-bottom: 8rem;
}
.clinicInfo .h3-title {
  margin-bottom: 3.2rem;
}
.clinicInfo dl {
  border: 1px solid #e8d4b9;
}
.clinicInfo dl .item {
  display: flex;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .clinicInfo dl .item {
    flex-direction: column;
  }
}
.clinicInfo dl .item:not(:last-child) {
  border-bottom: 1px solid #e8d4b9;
}
.clinicInfo dl .item dt {
  background: var(--color-yellow02);
  color: var(--color-brown);
  padding: 1.2rem 1.6rem 1rem;
  min-width: 25%;
  display: grid;
  place-items: center;
  border-inline-end: 1px solid #e8d4b9;
  font-weight: 700;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .clinicInfo dl .item dt {
    place-items: flex-start;
    border-inline-end: none;
    border-bottom: 1px solid #e8d4b9;
  }
}
.clinicInfo dl .item dd {
  background: var(--base-color);
  padding: 1.2rem 1.6rem 1rem;
  min-width: 75%;
  display: flex;
  align-items: center;
}
.clinicInfo dl .item dd .textBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .clinicInfo dl .item dd .textBox {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .clinicInfo dl .item dd .textBox p {
    font-size: 1.4rem;
  }
}
.clinicInfo dl .item dd iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 480/280;
}
.clinicInfo dl .item dd a {
  color: #ff9900;
  font-weight: 700;
  text-decoration: underline;
}
.clinicInfo dl .item dd.column {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
.clinicInfo.perio {
  width: 100%;
}
.clinicInfo.perio dl .item dt {
  min-width: 75%;
  place-items: flex-start;
  align-items: center;
}
.clinicInfo.perio dl .item dd {
  min-width: 25%;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.clinicInfo.perio dl .item dd label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1;
}
.clinicInfo.perio dl .item dd label input {
  margin: 0;
}

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

医院情報

------------------------------------------------------------ */
.calendarUnit {
  display: flex;
  flex-direction: column;
}
.calendarUnit__month {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .calendarUnit__month {
    margin-bottom: 1.8rem;
  }
}
.calendarUnit__month .title {
  font-size: 2.6rem;
  color: var(--base-color);
  font-weight: 400;
  font-family: var(--serif);
}
.calendarUnit__month p {
  font-size: 1.8rem;
  color: var(--base-color);
  font-weight: 400;
  font-family: var(--serif);
  line-height: 2;
}
.calendarUnit__table {
  margin-bottom: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .calendarUnit__table {
    margin-bottom: 2rem;
  }
}
.calendarUnit__table .calendarTable {
  width: 100%;
  border-collapse: collapse;
}
.calendarUnit__table .calendarTable th {
  color: var(--base-color);
  text-align: center;
  padding: 1.6rem 0 1.4rem;
  border: 1px solid var(--base-color);
  font-family: var(--serif);
  font-weight: 700;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .calendarUnit__table .calendarTable th {
    padding: 1.2rem 0 1.1rem;
    line-height: 1;
  }
}
.calendarUnit__table .calendarTable td {
  color: var(--base-color);
  border: 1px solid var(--base-color);
  text-align: center;
  padding: 1.6rem 0 1.4rem;
  font-weight: 700;
  font-family: var(--serif);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .calendarUnit__table .calendarTable td {
    padding: 1.2rem 0 1.1rem;
    line-height: 1;
  }
}
.calendarUnit__table .calendarTable td.highlight {
  background: var(--color-yellow);
}
.calendarUnit__textBox {
  display: flex;
  flex-direction: column;
}
.calendarUnit__textBox p {
  font-size: 1.6rem;
  color: var(--base-color);
  display: flex;
  gap: 0.6rem;
  font-family: var(--serif);
  font-weight: 700px;
}
.calendarUnit__textBox p .icon {
  width: 2.8rem;
  height: 2.8rem;
  background: var(--color-brown02);
  border: 1px solid var(--base-color);
}

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

スタッフ紹介

------------------------------------------------------------ */
.c-staff .h3-title {
  margin-bottom: 3.2rem;
}
.c-staff .h4-title {
  margin-bottom: 2.4rem;
}
.c-staff__image {
  display: flex;
  gap: 4rem;
  margin-bottom: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-staff__image {
    gap: 0.8rem;
  }
}
.c-staff__image picture {
  width: 50%;
}
.c-staff__image picture img {
  width: 100%;
  height: auto;
}
.c-staff__desc {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 6.4rem;
}
.c-staff__desc p {
  line-height: var(--lh-18);
}
.c-staff .h5-title {
  margin-bottom: 1.6rem;
}
.c-staff ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-staff ul:not(:last-child) {
  margin-bottom: 3.2rem;
}
.c-staff ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.c-staff ul li::before {
  content: "";
  background: var(--color-brown);
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  margin-top: 0.9rem;
}

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

ボタン

------------------------------------------------------------ */
.c-links {
  display: flex;
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-links {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.c-links__item {
  width: calc((100% - 4.8rem) / 3);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-links__item {
    width: 100%;
  }
}
.c-links__item a {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--serif);
  border: 1px solid var(--color-orange);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 1.6rem;
}
.c-links__item a .en {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  line-height: 1;
}
.c-links__item a .en img {
  rotate: -90deg;
  width: 1.6rem;
  height: 1rem;
  margin-top: -0.5rem;
}

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

caries,虫歯の4つの要因

------------------------------------------------------------ */
.c-cause {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  border: 2px solid #e8d4b9;
  background: #e8d4b9;
}
.c-cause li {
  width: calc((100% - 2px) / 2);
  padding: 1rem 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-cause li {
    width: 100%;
  }
}
.c-cause li:nth-of-type(1), .c-cause li:nth-of-type(4) {
  background: #fef9f2;
}
.c-cause li:nth-of-type(2), .c-cause li:nth-of-type(3) {
  background: #fcf3e6;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-cause li:nth-of-type(3) {
    background: #fef9f2;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-cause li:nth-of-type(4) {
    background: #fcf3e6;
  }
}
.c-cause li p:nth-of-type(1) {
  color: var(--color-orange);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

複数カラムのテーブル

------------------------------------------------------------ */
.c-unit__desc span {
  color: var(--color-brown);
  font-size: 2rem;
  font-weight: 700;
}

.c-tableColumn .scroll-hint-icon {
  top: 10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-tableColumn {
    width: 100%;
    overflow-x: scroll;
  }
}
.c-tableColumn table {
  width: 100%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-tableColumn table {
    width: 50rem;
  }
}
.c-tableColumn table th,
.c-tableColumn table td {
  padding: 0.8rem 2rem;
  border: 1px solid #e8d4b9;
}
.c-tableColumn table th {
  background: #fcf0d6;
  color: var(--color-brown);
  font-weight: 700;
  text-align: center;
}
.c-tableColumn table th picture {
  margin-top: 1rem;
}
.c-tableColumn table th picture img {
  width: 100%;
  height: auto;
}
.c-tableColumn table td {
  font-size: 1.6rem;
}
.c-tableColumn table td p:not(:last-of-type) {
  margin-bottom: 1rem;
}
.c-tableColumn table td span {
  color: var(--color-orange);
  font-weight: 700;
}
.c-tableColumn table td picture {
  margin: 1rem 0;
}
.c-tableColumn table td picture img {
  width: 100%;
  height: auto;
}
.c-tableColumn table td ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
}
.c-tableColumn table td ul li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.c-tableColumn table td ul li::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--color-brown02);
  border-radius: 50%;
}
.c-tableColumn.two th:nth-of-type(1),
.c-tableColumn.two td:nth-of-type(1) {
  width: 30%;
}
.c-tableColumn.two td:nth-of-type(1) {
  text-align: center;
}
.c-tableColumn.three th,
.c-tableColumn.three td {
  width: 33.3333333333%;
}
.c-tableColumn.three td[rowspan="4"] {
  align-content: flex-start;
}
.c-tableColumn.three td[rowspan="4"] .text {
  display: flex;
  flex-direction: column;
}
.c-tableColumn.three td[rowspan="4"] .text:not(:last-child) {
  margin-bottom: 2.4rem;
}
.c-tableColumn.three td[rowspan="4"] .text span {
  font-weight: 700;
  display: flex;
  gap: 0.8rem;
  color: var(--font-color);
  margin-bottom: 0.3rem;
}
.c-tableColumn.multiple th,
.c-tableColumn.multiple td {
  padding: 0.8rem 1rem;
}
.c-tableColumn.multiple th:nth-of-type(1), .c-tableColumn.multiple th:nth-of-type(2),
.c-tableColumn.multiple td:nth-of-type(1),
.c-tableColumn.multiple td:nth-of-type(2) {
  width: 30%;
}
.c-tableColumn.multiple th {
  line-height: 1.4;
}
.c-tableColumn.multiple td:nth-of-type(1) {
  text-align: center;
}
.c-tableColumn.multiple td:last-of-type {
  text-align: center;
  white-space: nowrap;
}
.c-tableColumn.multiple td.star {
  writing-mode: vertical-rl;
  text-align: center;
}

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

Header

------------------------------------------------------------ */
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background 0.3s;
}
.header.is-active, .header.sub-header {
  position: fixed;
  background: var(--base-color);
  padding: 0 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header.is-active, .header.sub-header {
    height: 7rem;
    padding: 0 0 0 1rem;
    display: flex;
    align-items: center;
  }
}
.header.is-active .header__inner, .header.sub-header .header__inner {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header.is-active .header__inner, .header.sub-header .header__inner {
    padding: 0;
  }
}
.header.is-active .header__inner h1, .header.sub-header .header__inner h1 {
  color: var(--font-color);
  top: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header.is-active .header__inner h1, .header.sub-header .header__inner h1 {
    top: 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header.is-active .header__contents, .header.sub-header .header__contents {
    height: 7rem;
    justify-content: center;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header.is-active .header__logo, .header.sub-header .header__logo {
    margin-top: 1.5rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header.is-active .header__tags, .header.sub-header .header__tags {
    display: none;
  }
}
.header.is-active .header__tags li, .header.sub-header .header__tags li {
  color: var(--font-color);
  border: none;
}
.header.is-active .header__links .telBtn, .header.sub-header .header__links .telBtn {
  color: var(--font-color);
}
.header.is-active .header__nav ul li a .ja, .header.sub-header .header__nav ul li a .ja {
  color: var(--font-color);
}
.header.is-active .header__nav ul li a .en, .header.sub-header .header__nav ul li a .en {
  color: var(--color-brown02);
}
body:not(.sub) .header:not(.is-active) .header__logo {
  background: var(--base-color);
}
.header .sub:has(.header) {
  background: var(--base-color);
}
.header .sub:has(.header) .header__logo img {
  filter: invert(1);
}
.header .sub:has(.header) .header__nav ul li a {
  color: var(--font-color);
}
.header__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: min(120rem, 100%);
  margin-inline: auto;
  position: relative;
  z-index: 0;
  padding-top: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__inner {
    padding-top: 3rem;
  }
}
.header__inner h1 {
  font-size: 1.2rem;
  color: var(--base-color);
  position: absolute;
  top: 2rem;
  left: 1rem;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__inner h1 {
    top: 1rem;
  }
}
.header__contents {
  display: flex;
  align-items: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__contents {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.header__logo {
  width: 25rem;
  margin-inline-end: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__logo {
    width: 22rem;
    margin-inline-end: 0;
  }
}
.header__logo a {
  display: block;
}
.header__logo a img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  transition: filter 0.3s;
}
.header__tags {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__tags {
    width: 100%;
    justify-content: center;
  }
}
.header__tags li {
  color: var(--base-color);
  padding: 1.2rem 0.8rem;
  border-top: 1px solid #b0a79d;
  border-bottom: 1px solid #b0a79d;
  line-height: 1.2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__tags li {
    padding: 0.8rem 0.4rem;
  }
}
.header__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-inline-start: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__links {
    display: none;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  display: flex;
  justify-content: space-around;
}
.header__nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--base-color);
}
.header__nav ul li a .ja {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--serif);
}
.header__nav ul li a .en {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: var(--serif);
}
.header .menuButton {
  width: 7rem;
  height: 7rem;
  cursor: pointer;
  background: #000;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  opacity: 1;
  transition: background 0.4s, filter 0.4s;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header .menuButton {
    display: flex;
  }
}
.header .menuButton .border {
  position: absolute;
  width: 2.4rem;
  height: 0.1rem;
  background: var(--base-color);
  transition: transform 0.4s, opacity 0.4s;
}
.header .menuButton .border:nth-child(1) {
  transform: translateY(-1rem);
}
.header .menuButton .border:nth-child(2) {
  transform-origin: right;
}
.header .menuButton .border:nth-child(3) {
  transform: translateY(1rem);
  transform-origin: left;
}
.header .menuButton .text {
  position: absolute;
  bottom: 0.5rem;
  color: var(--base-color);
  font-size: 1.2rem;
}
.header .menuButton.active .border:nth-child(1) {
  transform: rotate(45deg);
}
.header .menuButton.active .border:nth-child(2) {
  opacity: 0;
}
.header .menuButton.active .border:nth-child(3) {
  transform: rotate(-45deg);
  scale: 1;
  transform-origin: center;
}
.header .spMenu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  z-index: 3;
  transition: all 0.3s ease;
  background: var(--bg-color);
}
.header .spMenu.active {
  opacity: 1;
  visibility: visible;
}
.header .spMenu__nav {
  display: flex;
  flex-direction: column;
  padding: 10rem 2rem 6rem;
  gap: 3rem;
}
.header .spMenu__nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.header .spMenu__nav ul li a {
  color: var(--base-color);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.header .spMenu__nav ul li a svg {
  width: 1rem;
  height: 1rem;
  fill: var(--base-color);
}

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

Footer

------------------------------------------------------------ */
.footer__pickup {
  width: min(100rem, 100%);
  margin-inline: auto;
  padding: 2.4rem 1.6rem;
  display: flex;
  border: 1px solid var(--color-brown02);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__pickup {
    flex-direction: column;
    gap: 4rem;
    box-sizing: border-box;
    border: none;
    padding: 0 1rem;
  }
}
.footer__pickup .items {
  width: 33.3333333333%;
  padding-inline: 1.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__pickup .items {
    width: 100%;
    padding: 0;
  }
}
.footer__pickup .items:nth-child(2) {
  border-inline: 2px dotted var(--color-brown02);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__pickup .items:nth-child(2) {
    border-inline: none;
  }
}
.footer__pickup .items__logo {
  margin-bottom: 2.8rem;
}
.footer__pickup .items__logo picture img {
  width: 100%;
  height: auto;
}
.footer__pickup .items__links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer__pickup .items__links p {
  text-align: center;
  font-weight: 700;
}
.footer__pickup .items__links img {
  width: 100%;
  height: auto;
}
.footer__pickup .items .scheduleTable {
  margin-bottom: 0.8rem;
}
.footer__pickup .items .scheduleTable__time, .footer__pickup .items .scheduleTable__header {
  width: 8rem;
}
.footer__pickup .items .textBox {
  display: flex;
  flex-direction: column;
}
.footer__pickup .items .textBox p {
  font-size: 1.6rem;
  font-weight: 700;
}
.footer__pickup .items__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
}
.footer__pickup .items address {
  font-size: 1.6rem;
  font-weight: 700;
}
.footer .related {
  padding: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .related {
    padding: 5rem 1rem 8rem;
  }
}
.footer .related__inner {
  width: min(100rem, 100%);
  margin-inline: auto;
}
.footer .related .heading {
  margin-bottom: 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .related .heading {
    margin-bottom: 2.8rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.footer .related__image {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .related__image {
    gap: 2rem 3rem;
  }
}
.footer .related__image a {
  width: calc((100% - 6rem) / 4);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .related__image a {
    width: calc((100% - 3rem) / 2);
  }
}
.footer .related__image a figure picture {
  width: 100%;
}
.footer .related__image a figure picture img {
  width: 100%;
  height: auto;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
}
.footer .related__image a figure figcaption {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: var(--serif);
  text-align: center;
  margin-bottom: 0.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .related__image a figure figcaption {
    font-size: 1rem;
  }
}
.footer__content {
  padding: 9rem 8rem 8rem;
  background: var(--bg-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__content {
    padding: 4.8rem 2rem;
  }
}
.footer__nav {
  display: flex;
  justify-content: space-between;
  width: min(100rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__nav {
    flex-direction: column;
    gap: 2.8rem;
  }
}
.footer__nav .navItems:first-child {
  width: 22%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__nav .navItems:first-child {
    width: 100%;
  }
}
.footer__nav .navItems:nth-child(2) {
  width: 22%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__nav .navItems:nth-child(2) {
    width: 100%;
  }
}
.footer__nav .navItems:nth-child(3) {
  width: 48%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__nav .navItems:nth-child(3) {
    width: 100%;
  }
}
.footer__bnr {
  width: min(100rem, 100%);
  margin-inline: auto;
  padding: 4.8rem 0;
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__bnr {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 4rem 1rem;
    min-height: 22rem;
    gap: 3rem;
  }
}
.footer__bnr a {
  display: block;
  width: calc((100% - 12rem) / 4);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__bnr a {
    width: calc((100% - 3rem) / 2);
  }
}
.footer__bnr a img {
  width: 100%;
  height: auto;
}
.footer__copy {
  background: #000;
  padding: 2.3rem 0;
}
.footer__copy p {
  font-size: 1.2rem;
  color: var(--base-color);
  font-weight: 400;
  text-align: center;
}

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

サイドバー

------------------------------------------------------------ */
.menuButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 7rem;
  background: var(--base-color);
  opacity: 1;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  cursor: pointer;
  transition: background 0.4s, filter 0.4s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton {
    width: 5rem;
    height: 5rem;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    writing-mode: unset;
  }
}
@media (hover: hover) {
  .menuButton:hover {
    filter: brightness(1.2);
  }
}
.menuButton .text {
  margin-top: 2.2rem;
  font-size: 1.2rem;
  color: var(--font-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .text {
    margin-top: 2rem;
    font-size: 1.1rem;
  }
}
.menuButton .border {
  position: absolute;
  width: 3rem;
  height: 0.1rem;
  margin-top: -2rem;
  border-radius: 10rem;
  background: #404040;
  transition: transform 0.4s, opacity 0.4s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .menuButton .border {
    margin-top: -1.8rem;
    height: 0.1rem;
    width: 2.7rem;
    height: 0.1rem;
  }
}
.menuButton .border:nth-child(1) {
  transform: translateY(-0.6rem);
}
.menuButton .border:nth-child(3) {
  transform: translateY(0.6rem);
}
.menuButton.active .border:nth-child(1) {
  transform: rotate(25deg);
}
.menuButton.active .border:nth-child(2) {
  opacity: 0;
}
.menuButton.active .border:nth-child(3) {
  transform: rotate(-25deg);
}

.mvFixedBtn {
  height: 60%;
  position: fixed;
  top: 9.6rem;
  right: 0;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
    height: 6rem;
    inset: auto auto 0 0;
  }
}
.mvFixedBtn__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 7rem;
  height: calc((100% - 1rem) / 2);
  color: var(--base-color);
  font-weight: 700;
  writing-mode: vertical-lr;
  text-orientation: upright;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn {
    height: 100%;
    width: 50%;
    writing-mode: unset;
  }
}
.mvFixedBtn__btn svg {
  fill: var(--base-color);
}
.mvFixedBtn__btn.reservation {
  background: #5c5c5c;
  margin-bottom: 1rem;
  margin-left: auto;
  transition: filter 0.3s;
}
@media (hover: hover) {
  .mvFixedBtn__btn.reservation:hover {
    filter: brightness(1.2);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.reservation {
    gap: 0.5rem;
    margin: 0;
  }
}
.mvFixedBtn__btn.reservation svg {
  width: 2.3rem;
  height: 1.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.reservation svg {
    width: 1.6rem;
    height: 1.3rem;
  }
}
.mvFixedBtn__btn.tel {
  background: #0097a7;
  position: relative;
  z-index: 0;
}
@media (hover: hover) {
  .mvFixedBtn__btn.tel:hover .large {
    translate: 0 0;
  }
}
.mvFixedBtn__btn.tel .small {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.tel .small {
    gap: 0.5rem;
  }
}
.mvFixedBtn__btn.tel .small svg {
  width: 1.4rem;
  height: 1.9rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mvFixedBtn__btn.tel .small svg {
    width: 1rem;
    height: 1.4rem;
  }
}
.mvFixedBtn__btn.tel .large {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: #0097a7;
  width: 32rem;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  translate: 100% 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 {
  writing-mode: horizontal-tb;
}
.mvFixedBtn__btn.tel .large span:nth-of-type(1) {
  font-size: 1.6rem;
}
.mvFixedBtn__btn.tel .large span:nth-of-type(2) {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 3rem;
  line-height: 1.8333333333;
}
.mvFixedBtn__btn.tel .large span:nth-of-type(2) svg {
  width: 1.4rem;
  height: 1.9rem;
}

.pageTop {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--base-color);
  font-size: 1.6rem;
  line-height: 1;
  writing-mode: vertical-lr;
  cursor: pointer;
  transition: transform 0.3s;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 3;
}
@media (hover: hover) {
  .pageTop:hover {
    transform: translateY(-0.5rem);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pageTop {
    gap: 0.8rem;
    font-size: 1.5rem;
    bottom: 7.3rem;
    right: 0.8rem;
  }
}
.pageTop span {
  width: 1rem;
  height: 1rem;
  margin-left: 0.3rem;
  background: #eeeeee;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

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

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

下層ページのwrapper

------------------------------------------------------------ */
section:not(:last-child) {
  padding: 0 0 12rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  section:not(:last-child) {
    padding: 0 0 8rem;
  }
}

.mainWrap {
  width: min(120rem, 100%);
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  box-sizing: content-box;
  padding: 8rem 8rem 16rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mainWrap {
    padding: 8rem 1rem;
    flex-direction: column;
    gap: 6.4rem;
    box-sizing: border-box;
  }
}
.mainWrap .mainContent {
  width: 70%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mainWrap .mainContent {
    width: 100%;
  }
}
.mainWrap .sidebar {
  width: 25%;
  position: sticky;
  top: 20rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mainWrap .sidebar {
    width: 100%;
  }
}
.mainWrap .sidebar__nav {
  background: var(--bg-color);
  padding: 2.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .mainWrap .sidebar__nav {
    display: none;
  }
}
.mainWrap .sidebar__nav .navItems nav {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.mainWrap .sidebar__calendar .heading {
  margin-bottom: 1.6rem;
}
.mainWrap .sidebar__calendar .heading__ja {
  font-size: 2.6rem;
}
.mainWrap .sidebar__calendar .heading__en {
  font-size: 1.4rem;
}
.mainWrap .sidebar__calendar .calendarUnitWrap {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.mainWrap .sidebar__calendar .calendarUnit__month {
  margin-bottom: 0.8rem;
}
.mainWrap .sidebar__calendar .calendarUnit__month .title {
  color: var(--font-color);
  font-size: 2rem;
}
.mainWrap .sidebar__calendar .calendarUnit__month p {
  color: var(--font-color);
  font-size: 1.4rem;
}
.mainWrap .sidebar__calendar .calendarUnit__table {
  margin-bottom: 1.6rem;
}
.mainWrap .sidebar__calendar .calendarUnit__table .calendarTable td,
.mainWrap .sidebar__calendar .calendarUnit__table .calendarTable th {
  border-color: var(--color-brown02);
  color: var(--font-color);
}
.mainWrap .sidebar__calendar .calendarUnit__table .calendarTable td.highlight,
.mainWrap .sidebar__calendar .calendarUnit__table .calendarTable th.highlight {
  color: var(--base-color);
}
.mainWrap .sidebar__calendar .calendarUnit__textBox p {
  color: var(--font-color);
}
.mainWrap .sidebar__links {
  border: 1px solid var(--color-brown02);
}
.mainWrap .sidebar__links h3 {
  background: var(--color-orange);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--base-color);
  text-align: center;
  padding: 1rem;
}
.mainWrap .sidebar__links ul {
  display: flex;
  flex-direction: column;
}
.mainWrap .sidebar__links ul li:last-child a {
  padding: 1rem 1rem 0.5rem;
}
.mainWrap .sidebar__links ul li a {
  display: block;
  padding: 1rem;
  border-bottom: 1px dotted #d9d9d9;
  transition: color 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (hover: hover) {
  .mainWrap .sidebar__links ul li a:hover {
    color: var(--color-orange);
  }
}
.mainWrap .sidebar__links #wp-calendar {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 1rem;
}
.mainWrap .sidebar__links #wp-calendar caption {
  padding: 0.5rem 0.2rem;
  background: #5b3f17;
  color: white;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
.mainWrap .sidebar__links #wp-calendar td,
.mainWrap .sidebar__links #wp-calendar th {
  padding: 0.3rem 0.2rem;
  border: 1px solid #e1dfdf;
  font-size: 1.4rem;
  text-align: center;
}
.mainWrap .sidebar__links td.article_post {
  background-color: #5b3f17;
}
.mainWrap .sidebar__links td.article_post a {
  color: #fff;
  font-weight: bold;
}
.mainWrap .sidebar__links #wp-calendar tfoot {
  background: #a78452;
}
.mainWrap .sidebar__links #wp-calendar th {
  background: #a78452;
  color: white;
}
.mainWrap .sidebar__links .wp-calendar-nav {
  display: flex;
  justify-content: space-between;
}
.mainWrap .sidebar__links .wp-calendar-nav .wp-calendar-nav-prev,
.mainWrap .sidebar__links .wp-calendar-nav .wp-calendar-nav-next {
  display: inline-block;
  background-color: #5b3f17;
  width: 40%;
  text-align: center;
}
.mainWrap .sidebar__links .wp-calendar-nav .wp-calendar-nav-prev a,
.mainWrap .sidebar__links .wp-calendar-nav .wp-calendar-nav-next a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}
.mainWrap .sidebar__links02 {
  border: 1px solid var(--color-brown02);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1rem;
}
.mainWrap .sidebar__links02 h3 {
  background: var(--color-orange);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--base-color);
  text-align: center;
  padding: 1rem;
  width: 100%;
}
.mainWrap .sidebar__links02 ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
}
.mainWrap .sidebar__links02 ul li a {
  display: block;
}
.mainWrap .sidebar__links02 ul li a img {
  width: 100%;
  height: auto;
}
.mainWrap .sidebar__links02 ul .sidebarBnr {
  padding: 1rem;
}
.mainWrap .sidebar__links02 ul .sidebarBnr a {
  display: block;
}
.mainWrap .sidebar__links02 ul .sidebarBnr a img {
  width: 100%;
  height: auto;
}

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

モーダル

------------------------------------------------------------ */
.js-modal {
  opacity: 0;
  translate: 0 3rem;
}
.js-modal::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.js-modal[open] {
  display: block;
  animation: slideUp 0.3s ease-out forwards;
}
.js-modal[open]::backdrop {
  opacity: 1;
}
.js-modal.closing {
  animation: slideDown 0.2s ease-in forwards;
}
.js-modal.closing::backdrop {
  opacity: 0;
}

@keyframes slideUp {
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes slideDown {
  from {
    opacity: 1;
    translate: 0 0;
  }
  to {
    opacity: 0;
    translate: 0 3rem;
  }
}
/* ------------------------------------------------------------

アニメーション

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

トップページ

------------------------------------------------------------ */
.page-top .mainVisual .splide {
  width: 100%;
  height: 100vh;
  position: relative;
}
.page-top .mainVisual .splide__track {
  height: 100%;
}
.page-top .mainVisual .splide__slide {
  height: 100%;
}
.page-top .mainVisual .splide__slide picture {
  height: 100%;
  display: block;
}
.page-top .mainVisual .splide__slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-top .mainVisual .splide__pagination {
  width: 100%;
  position: absolute;
  bottom: 4rem;
  left: 50%;
  translate: -50% 0;
  display: flex;
  gap: 1rem;
}
.page-top .mainVisual .splide__pagination__page {
  cursor: pointer;
  width: 6rem;
  height: 0.6rem;
  background: var(--base-color);
}
.page-top .mainVisual .splide__pagination__page.is-active {
  background: var(--font-color);
}
.page-top .cancel {
  padding: 8rem 8rem 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .cancel {
    padding: 8rem 2rem 0;
  }
}
.page-top .cancel__inner {
  width: min(100rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .cancel__inner {
    flex-direction: column;
  }
}
.page-top .cancel details {
  border: 2px solid var(--color-brown);
}
.page-top .cancel details.is-opened summary::after {
  transform: rotate(180deg);
}
.page-top .cancel details summary {
  padding: 2rem 4rem;
  background: var(--color-brown);
  position: relative;
}
.page-top .cancel details summary::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--base-color);
  clip-path: polygon(100% 1%, 0 0, 50% 100%);
  position: absolute;
  top: 50%;
  right: 4rem;
  translate: 0 -50%;
  transition: transform 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .cancel details summary::after {
    width: 1.2rem;
    height: 1.2rem;
    right: 2rem;
  }
}
.page-top .cancel details summary p {
  color: var(--base-color);
  font-size: 2.6rem;
  font-family: var(--serif);
  font-weight: 400;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .cancel details summary p {
    font-size: 2rem;
  }
}
.page-top .cancel details .content {
  overflow: hidden;
}
.page-top .cancel details .content .content__inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2rem;
}
.page-top .cancel details .content .content__inner p {
  text-align: justify;
}
.page-top .cancel details .content .content__inner ul {
  padding-left: 4rem;
}
.page-top .cancel details .content .content__inner ul li {
  list-style: disc;
  font-weight: 700;
}
.page-top .news {
  padding: 16rem 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news {
    padding: 8rem 2rem;
  }
}
.page-top .news__inner {
  display: flex;
  justify-content: space-between;
  width: min(100rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__inner {
    flex-direction: column;
  }
}
.page-top .news__left {
  display: flex;
  flex-direction: column;
  width: 24%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__left {
    width: 100%;
  }
}
.page-top .news .heading {
  margin-bottom: 9.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news .heading {
    margin-bottom: 4.8rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news .btn01 {
    display: none;
  }
}
.page-top .news__content {
  width: 65.6%;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__content {
    width: 100%;
    gap: 4.8rem;
  }
}
.page-top .news__title {
  font-size: 2.6rem;
  font-family: var(--serif);
  font-weight: 400;
  margin-bottom: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__title {
    margin-bottom: 0;
  }
}
.page-top .news__items {
  display: flex;
  flex-direction: column;
}
.page-top .news__items a {
  display: flex;
  align-items: center;
  gap: 2.5em;
  padding: 3rem 4rem 2rem 0;
  border-bottom: 1px solid #d7d7d7;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__items a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1.7rem 2rem 1.7rem 0;
  }
}
.page-top .news__items a time {
  flex: none;
  width: 15rem;
  white-space: nowrap;
}
.page-top .news__items a h4 {
  text-decoration: underline;
  letter-spacing: 0.1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__items a h4 {
    -webkit-line-clamp: 2;
  }
}
.page-top .microscope {
  position: relative;
  z-index: 0;
  padding: 16rem 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .microscope {
    padding: 8rem 2rem;
  }
}
.page-top .microscope__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-top .microscope__bg picture {
  height: 100%;
}
.page-top .microscope__bg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-top .microscope__inner {
  width: min(100rem, 100%);
  margin-inline: auto;
}
.page-top .microscope .heading {
  margin-bottom: 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .microscope .heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.page-top .microscope__images {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .microscope__images {
    width: 100vw;
    margin-left: -2rem;
  }
}
.page-top .microscope__image {
  width: calc((100% - 8rem) / 3);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .microscope__image {
    width: calc((100% - 3rem) / 3);
  }
}
.page-top .microscope__image img {
  width: 100%;
  height: auto;
}
.page-top .microscope__title {
  font-size: 2.8rem;
  color: var(--base-color);
  font-family: var(--serif);
  font-weight: 400;
  margin-bottom: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .microscope__title {
    font-size: 2.6rem;
    margin-bottom: 1.8rem;
  }
}
.page-top .microscope__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .microscope__desc {
    margin-bottom: 3.8rem;
  }
}
.page-top .microscope__desc p {
  line-height: var(--lh-18);
  color: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .microscope__desc p {
    font-size: 1.6rem;
  }
}
.page-top .treatment {
  background: #f0eeed;
  padding: 16rem 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment {
    padding: 8rem 1rem;
  }
}
.page-top .treatment__inner {
  width: min(110rem, 100%);
  margin-inline: auto;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment__inner {
    flex-direction: column;
  }
}
.page-top .treatment__inner .heading {
  gap: 0;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment__inner .heading {
    position: unset;
    margin-inline: auto;
    margin-bottom: 4.8rem;
  }
}
.page-top .treatment__inner .heading__ja, .page-top .treatment__inner .heading__en {
  writing-mode: vertical-lr;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment .treatmentContent {
    padding: 0 1rem;
  }
}
.page-top .treatment .treatmentContent__inner {
  display: flex;
  flex-direction: column;
  width: 95.4545454545%;
  margin-inline-start: 15rem;
  margin-block-end: 10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment .treatmentContent__inner {
    width: 100%;
    margin-inline-start: auto;
    margin-block-end: 8rem;
  }
}
.page-top .treatment .treatmentContent .implant {
  display: flex;
  justify-content: space-between;
  margin-block: 13rem 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment .treatmentContent .implant {
    flex-direction: column;
    margin-block: 0 4rem;
  }
}
.page-top .treatment .treatmentContent .implant__text {
  width: 47.619047619%;
  display: flex;
  flex-direction: column;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment .treatmentContent .implant__text {
    display: contents;
  }
}
.page-top .treatment .treatmentContent .implant__text .heading {
  width: fit-content;
  flex-direction: column;
  position: unset;
  margin-bottom: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment .treatmentContent .implant__text .heading {
    order: -2;
    margin-inline: 0 auto;
    margin-bottom: 1.8rem;
  }
}
.page-top .treatment .treatmentContent .implant__text .heading__ja, .page-top .treatment .treatmentContent .implant__text .heading__en {
  writing-mode: horizontal-tb;
}
.page-top .treatment .treatmentContent .implant__desc {
  line-height: var(--lh-18);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment .treatmentContent .implant__desc {
    margin-bottom: 4.8rem;
  }
}
.page-top .treatment .treatmentContent .implant__btn {
  flex: 1;
  display: flex;
  align-items: flex-end;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment .treatmentContent .implant__btn {
    order: 1;
  }
}
.page-top .treatment .treatmentContent .implant__image {
  width: 47.619047619%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment .treatmentContent .implant__image {
    display: contents;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment .treatmentContent .implant__image picture {
    order: -1;
    margin-bottom: 1.8rem;
  }
}
.page-top .treatment .treatmentContent .implant__image picture img {
  width: 100%;
  height: auto;
}
.page-top .treatment .treatmentContent .secondOpinion {
  width: 75rem;
  padding: 5.3rem 4rem 4.7rem;
  background: var(--bg-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment .treatmentContent .secondOpinion {
    width: 35.6rem;
    margin-left: -1rem;
    padding: 4rem 1rem;
  }
}
.page-top .treatment .treatmentContent .secondOpinion .heading {
  width: fit-content;
  align-items: flex-end;
  gap: 2rem;
  position: unset;
  margin-bottom: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment .treatmentContent .secondOpinion .heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-inline: 0;
  }
}
.page-top .treatment .treatmentContent .secondOpinion .heading__ja, .page-top .treatment .treatmentContent .secondOpinion .heading__en {
  writing-mode: horizontal-tb;
}
.page-top .treatment .treatmentContent .secondOpinion .heading__ja {
  font-size: 2.6rem;
}
.page-top .treatment .treatmentContent .secondOpinion__desc {
  color: var(--base-color);
}
.page-top .treatment .treatmentContent .secondOpinion__desc p {
  line-height: var(--lh-18);
}
.page-top .treatment__list {
  width: min(100rem, 100%);
  margin-inline: auto;
}
.page-top .treatment__list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment__list ul {
    gap: 2.3rem;
  }
}
.page-top .treatment__list ul li {
  width: calc((100% - 8rem) / 3);
  position: relative;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment__list ul li {
    width: calc((100% - 2.3rem) / 2);
  }
}
.page-top .treatment__list ul li::before {
  content: "";
  display: inline-block;
  width: 8rem;
  height: 0.4rem;
  background: var(--color-brown);
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment__list ul li::before {
    width: 4.4rem;
    height: 0.2rem;
  }
}
.page-top .treatment__list ul li a {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--base-color);
  min-height: 16rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment__list ul li a {
    min-height: 8.6rem;
  }
}
.page-top .treatment__list ul li a .title {
  font-size: 2.6rem;
  font-weight: 400;
  font-family: var(--serif);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment__list ul li a .title {
    font-size: 1.6rem;
  }
}
.page-top .treatment__list ul li a .desc {
  font-weight: 600;
  color: var(--color-brown02);
  font-family: var(--serif);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .treatment__list ul li a .desc {
    font-size: 1.2rem;
  }
}
.page-top .decorationImage img {
  width: 100%;
  height: auto;
}
.page-top .concept {
  padding: 20rem 0 16rem;
  display: flex;
  justify-content: flex-start;
  gap: 7.8125vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept {
    padding: 0 1rem 8rem;
    flex-direction: column;
  }
}
.page-top .concept__image {
  width: 47.34375vw;
  margin-top: -30rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__image {
    width: 100%;
    margin-top: -4rem;
    margin-left: -1rem;
  }
}
.page-top .concept__image img {
  width: 100%;
  height: auto;
}
.page-top .concept .heading {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept .heading {
    margin-bottom: 2.8rem;
  }
}
.page-top .concept__textBox {
  width: 26.0416666667vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__textBox {
    width: 100%;
  }
}
.page-top .concept__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 4.8rem;
}
.page-top .concept__desc p {
  line-height: var(--lh-18);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__desc p {
    font-size: 1.6rem;
  }
}
.page-top .calendar {
  background: var(--bg-color);
  padding: 15rem 8rem 20rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .calendar {
    padding: 8rem 2rem;
  }
}
.page-top .calendar__inner {
  width: min(100rem, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.page-top .calendar__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .calendar__content {
    flex-direction: column;
    gap: 4rem;
  }
}
.page-top .calendar .heading {
  margin-bottom: 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .calendar .heading {
    margin-bottom: 2.8rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.page-top .calendar .calendarUnit {
  width: 45%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .calendar .calendarUnit {
    width: 100%;
  }
}
.page-top .access {
  padding: 0 8rem;
  overflow: hidden;
  border-bottom: 1px solid #dfdfdf;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access {
    padding: 0 2rem;
  }
}
.page-top .access__inner {
  display: flex;
  gap: 10rem;
  width: min(100rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__inner {
    flex-direction: column;
    gap: 0;
  }
}
.page-top .access__textBox {
  flex: none;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__textBox {
    display: contents;
  }
}
.page-top .access .heading {
  margin-bottom: 3.2rem;
}
.page-top .access__schedule {
  margin-bottom: 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__schedule {
    margin-bottom: 2.8rem;
  }
}
.page-top .access__schedule .scheduleTable {
  margin-bottom: 0.8rem;
}
.page-top .access__schedule .textBox {
  display: flex;
  justify-content: space-between;
  padding-left: 1.35rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__schedule .textBox {
    padding-left: 0.8rem;
  }
}
.page-top .access__schedule .textBox p {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__schedule .textBox p {
    font-size: 1.2rem;
  }
}
.page-top .access__map {
  margin-bottom: 14rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__map {
    margin-bottom: 8rem;
  }
}
.page-top .access__map address {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.page-top .access__map iframe {
  width: 100%;
  aspect-ratio: 480/280;
  height: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__map iframe {
    aspect-ratio: 334/195;
    margin-bottom: 0.8rem;
  }
}
.page-top .access__map .mapBtn {
  width: fit-content;
}
.page-top .access__contact {
  margin-bottom: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__contact .heading {
    margin-bottom: 2.8rem;
  }
}
.page-top .access__contact > p {
  margin-bottom: 1.4rem;
}
.page-top .access__contact .links {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__contact .links {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.page-top .access__images {
  margin-right: calc(50% - 50vw);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__images {
    display: contents;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__image {
    width: 37.5rem;
    margin-left: -2rem;
    display: flex;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__image picture {
    width: 50%;
  }
}
.page-top .access__image picture img {
  width: 100%;
  height: auto;
  display: block;
}
.page-top .access__image.image01 {
  order: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__image.image01 {
    margin-bottom: 8rem;
  }
}

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

記事一覧

------------------------------------------------------------ */
.newsContent {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.newsContent .data {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .newsContent .data {
    gap: 0.8rem;
  }
}
.newsContent .data time {
  font-weight: 700;
  line-height: 1.2;
}
.newsContent__item {
  padding: 2.4rem;
  border: 1px solid var(--color-orange);
}
.newsContent__title {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 3.2rem;
  margin-bottom: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .newsContent__title {
    gap: 1.2rem;
    padding-bottom: 1.6rem;
    margin-bottom: 2.4rem;
  }
}
.newsContent__title a {
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .newsContent__title a:hover {
    color: var(--color-orange);
  }
}
.newsContent__title h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.newsContent__content h3 {
  color: red;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.8rem 1.6rem;
  background: #ededed;
  margin-bottom: 1.2rem;
}
.newsContent__content h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.8rem 0rem;
  gap: 1.6rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}
.newsContent__content h4::before {
  content: "";
  display: block;
  width: 0.6rem;
  min-height: 3.2rem;
  background: red;
}
.newsContent__content h5 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid red;
  margin-bottom: 1.2rem;
}
.newsContent__content p:not(:last-child) {
  margin-bottom: 4rem;
}
.newsContent__content p:has(+ p) {
  margin-bottom: 0.8rem !important;
}
.newsContent__content p:has(+ figure) {
  margin-bottom: 1.2rem !important;
}
.newsContent__content figure:not(:last-child) {
  margin-bottom: 1.2rem;
}
.newsContent__content ul:not(:last-child) {
  margin-bottom: 4rem;
}
.newsContent__content ul:has(+ p) {
  margin-bottom: 0.8rem !important;
}
.newsContent__content ul li {
  display: flex;
  gap: 0.8rem;
}
.newsContent__content ul li::before {
  content: "";
  display: block;
  flex: none;
  width: 0.6rem;
  height: 0.6rem;
  background: red;
  margin-top: 1.5rem;
  border-radius: 50%;
}
.newsContent__content ol:not(:last-child) {
  margin-bottom: 4rem;
}
.newsContent__content ol:has(+ p) {
  margin-bottom: 0.8rem !important;
}
.newsContent__content ol li {
  list-style: decimal;
  margin-left: 1.6rem;
}
.newsContent__content a {
  color: red;
  font-weight: 700;
}
.newsContent__content strong {
  font-weight: 700;
}
.newsContent__content em {
  font-style: italic;
}
.newsContent__content .wp-block-columns:not(:last-child) {
  margin-bottom: 4rem;
}
.newsContent .back-to-archive {
  display: flex;
  justify-content: center;
}
.newsContent .back-to-archive a {
  border: 1px solid var(--color-orange);
  padding: 0.8rem 1.6rem 0.3rem;
}

.wp-pagenavi {
  line-height: 1.5;
  margin-top: 4rem;
  letter-spacing: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.8rem;
  overflow: hidden;
  width: 100%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wp-pagenavi {
    position: relative;
    height: 4.8rem;
    width: 31.6rem;
    margin: 4rem auto 0;
  }
}
.wp-pagenavi span {
  background: var(--color-orange);
  color: var(--base-color);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
}
.wp-pagenavi a {
  color: var(--font-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  transition: background-color 0.3s;
}
.wp-pagenavi a:hover {
  scale: 1.2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wp-pagenavi .current {
    display: none;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wp-pagenavi .page {
    display: none;
  }
}
.wp-pagenavi .pages {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wp-pagenavi .pages {
    display: block;
    background: transparent;
    color: var(--font-color);
    display: inline-block;
    width: auto;
    height: auto;
  }
}
.wp-pagenavi .extend {
  font-weight: normal;
  background: none;
  border: none;
  color: #333;
  padding: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wp-pagenavi .extend {
    display: none;
  }
}
.wp-pagenavi .first,
.wp-pagenavi .last {
  text-indent: -9999px;
  background: url(../images/ico_pagenavi01.svg) no-repeat center/cover;
  width: 3.8rem;
  height: 3.8rem;
}
.wp-pagenavi .first {
  transform: scale(-1, 1);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wp-pagenavi .first {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wp-pagenavi .last {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  text-indent: -9999px;
  background: url(../images/ico_pagenavi02.svg) no-repeat center/cover;
  width: 3.8rem;
  height: 3.8rem;
}
.wp-pagenavi .previouspostslink {
  transform: scale(-1, 1);
  margin-right: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wp-pagenavi .previouspostslink {
    margin-right: 0;
    position: absolute;
    top: 0;
    left: 5.6rem;
  }
}
.wp-pagenavi .nextpostslink {
  margin-left: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wp-pagenavi .nextpostslink {
    margin-left: 0;
    position: absolute;
    top: 0;
    right: 5.6rem;
  }
}

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

記事詳細

------------------------------------------------------------ */
.single {
  padding: 8rem 6rem 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single {
    padding: 8rem 2rem 0;
  }
}
.single .h2-title {
  margin-bottom: 4rem;
}
.single .h3-title {
  margin-bottom: 3.2rem;
}
.single__image:not(:last-child) {
  margin-bottom: 2rem;
}
.single__image:has(+ .single__content) {
  margin-bottom: 8rem;
}
.single__image img {
  width: 100%;
  height: auto;
}
.single__desc {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.single__desc:not(:last-child) {
  margin-bottom: 4rem;
}
.single__desc:has(+ .treatment) {
  margin-bottom: 8rem;
}
.single__desc p,
.single__desc li {
  font-size: 1.6rem;
  line-height: 1.8;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
.single__desc strong {
  font-weight: 900;
  font-size: 1.8rem;
}
.single__desc ol {
  margin-left: 2.5rem;
}
.single__desc ol li {
  list-style-type: decimal;
}
.single__desc ul {
  margin-left: 2.5rem;
}
.single__desc ul li {
  list-style-type: disc;
}
.single__desc a {
  color: #fff;
  text-decoration: underline;
}
.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 .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 {
  background: #0097a7;
  color: #ffffff;
}
.single .treatment__after {
  background: #ffffff;
  color: var(--font-color);
}
.single .treatment svg {
  width: 4.8rem;
  height: 4.8rem;
  margin-inline: auto;
  fill: #0097a7;
}
.single .c-table {
  margin-bottom: 6rem;
}
.single__content {
  margin-bottom: 8rem;
}
.single__content:has(+ .overview) {
  margin-bottom: 12rem;
}
.single__content .h4-title {
  margin-bottom: 2.4rem;
}
.single__content__image {
  margin-bottom: 2.4rem;
}
.single__content__image img {
  width: 100%;
  height: auto;
}
.single .overview {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 4.8rem 2rem;
  border: 1px solid #37474f;
}
.single .overview:has(+ .supervision) {
  margin-bottom: 4rem;
}
.single .overview__title {
  font-size: 1.8rem;
  line-height: 1.7;
  text-align: center;
}
.single .overview__logo {
  width: 16rem;
  margin-inline: auto;
}
.single .overview__logo img {
  width: 100%;
  height: auto;
}
.single .overview__image img {
  width: 100%;
  height: auto;
}
.single .overview dl {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.single .overview dl > div {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.single .overview dl > div dt {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 0.8rem;
  font-weight: 700;
}
.single .overview dl > div dd {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 400;
}
.single .overview dl > div dd a {
  display: inline-block;
  text-decoration: underline;
  color: var(--font-color);
  font-weight: 400;
}
@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: 5rem;
}
.single .supervision {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 4.8rem 2rem;
  border: 1px solid #37474f;
}
.single .supervision__title {
  font-size: 1.8rem;
  line-height: 1.7;
  text-align: center;
}
.single .supervision figure picture {
  margin-bottom: 2rem;
}
.single .supervision figure picture img {
  width: 100%;
  height: auto;
}
.single .supervision figure figcaption {
  text-align: center;
}

.singleNavi {
  padding: 8rem 2rem 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: inherit;
  transition: opacity 0.3s, translate 0.3s;
}
.singleNavi__prev svg, .singleNavi__archive svg, .singleNavi__next svg {
  width: 1.5rem;
  height: 1rem;
  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 {
  rotate: 90deg;
}
@media (hover: hover) {
  .singleNavi__next:hover {
    translate: 0.3rem;
  }
}
.singleNavi__next svg {
  rotate: -90deg;
}
/*# sourceMappingURL=style.css.map */
