/* variable
------------------------------------------ */
:root {
  --c_text01: #393939;
  --c_text02: #224466;
  --c_border01: #9B9B9B;
  --c_border02: #CECECE;
  --c_bg01: #fff;
  --c_bg02: #CBE4F4;
  --c_bg03: #F8F8F8;
  --c_bg04: #BCDDE8;
  --c_bg05: #FFFCE8;
  --c_bg06: #E5F4FE;
  --c_accent01: #FF7700;
  --c_accent02: #FFFF00;
  --c_accent03: #1D4999;
  --c_accent04: #47A8C7;
  --c_calendar01: #FDDDE6;
  --c_calendar02: #DEF0FC;
  --c_calendar03: #0C8739;
  --c_calendar04: #707070;
}

/* mixin
------------------------------------------ */
/* base
------------------------------------------ */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 820px) {
  html {
    font-size: 3.9024390244vw;
  }
}
@media screen and (max-width: 410px) {
  html {
    font-size: 3.9024390244vw;
  }
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  color: var(--c_text01);
  background-color: var(--c_bg01);
}
body a {
  color: var(--c_text01);
  text-decoration: none;
}
body a,
body a:hover,
body button {
  transition: color 0.3s, background-color 0.3s, opacity 0.3s;
}
body img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
body iframe {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
body ul,
body ol {
  list-style: none;
}
body address {
  font-style: normal;
}

/* component
------------------------------------------ */
.container {
  max-width: 75rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 820px) {
  .container {
    padding: 0 0.9375rem;
  }
}

.notosansjp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.Roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.color-change--orange {
  color: var(--c_accent01);
}

.bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.main-text {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.6;
}
@media screen and (max-width: 820px) {
  .main-text {
    font-size: 0.9375rem;
    line-height: 1.85;
  }
}

@media screen and (max-width: 820px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 820px) {
  .sp-only {
    display: block;
  }
}

@media (min-width: 821px) {
  .br-sp {
    display: none;
  }
}
@media (max-width: 820px) {
  .br-pc {
    display: none;
  }
}
.button {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  height: 3.375rem;
  line-height: 3.375rem;
  border-radius: 1.6875rem;
}
@media screen and (max-width: 820px) {
  .button {
    height: 2.25rem;
    line-height: 2.25rem;
    border-radius: 1.125rem;
    font-size: 0.9375rem;
  }
}
.button--reserve {
  background-color: var(--c_accent01);
  color: var(--c_bg01);
}
.button--large {
  background-color: var(--c_accent03);
  color: var(--c_bg01);
}

.link-small {
  display: flex;
  column-gap: 0.25rem;
  align-items: center;
}
.link-small__text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 820px) {
  .link-small__text {
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}
.link-small__arrow {
  display: flex;
  width: 1.3125rem;
  height: 1.3125rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--c_accent03);
  transition: background-color 0.3s;
}
@media screen and (max-width: 820px) {
  .link-small__arrow {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.link-small__arrow-img {
  width: 0.375rem;
  height: 0.5625rem;
}
@media screen and (max-width: 820px) {
  .link-small__arrow-img {
    width: 0.24rem;
    height: 0.75rem;
  }
}

@media (any-hover: hover) {
  .button--reserve:hover {
    background-color: var(--c_accent03);
  }
}
.button--reserve:focus {
  background-color: var(--c_accent03);
}

@media (any-hover: hover) {
  .button--large:hover {
    background-color: var(--c_accent04);
  }
}
.button--large:focus {
  background-color: var(--c_accent04);
}

@media (any-hover: hover) {
  .link-small:hover .link-small__arrow {
    background-color: var(--c_accent04);
  }
}
.link-small:focus .link-small__arrow {
  background-color: var(--c_accent04);
}

@media (any-hover: hover) {
  .hover-opacity:hover {
    opacity: 0.4;
  }
}
.hover-opacity:focus {
  opacity: 0.4;
}

.category-box {
  display: block;
  color: var(--c_bg01);
  border-radius: 0.125rem;
  width: 4.4375rem;
  height: 1.5625rem;
  line-height: 1.5625rem;
  text-align: center;
  background-color: var(--c_accent03);
}
@media screen and (max-width: 820px) {
  .category-box {
    font-size: 0.625rem;
    padding: 0 0.25rem;
    width: auto;
    height: auto;
    line-height: 1.6;
  }
}
.category-box--news {
  background-color: var(--c_accent03);
}
.category-box--blog {
  background-color: var(--c_accent04);
}

.underline-yellow {
  background-image: linear-gradient(transparent 0%, transparent 70%, var(--c_accent02) 70%, var(--c_accent02) 100%);
}

.tel-box {
  text-align: center;
}
.tel-box__text {
  display: inline-block;
  color: var(--c_accent03);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 820px) {
  .tel-box__text {
    font-size: 1.125rem;
  }
}
.tel-box__number {
  display: inline-block;
  font-size: 3.4375rem;
  font-weight: 700;
  color: var(--c_accent03);
  line-height: 1.2;
  position: relative;
  padding-left: 3.125rem;
  margin-top: 1.4375rem;
  white-space: nowrap;
}
@media screen and (max-width: 820px) {
  .tel-box__number {
    font-size: 2.1875rem;
    padding-left: 2rem;
    margin-top: 0.25rem;
  }
}
.tel-box__number::before {
  content: "";
  background-image: url(../images/icon_tel.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 2.25rem;
  height: 2.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 820px) {
  .tel-box__number::before {
    width: 1.4375rem;
    height: 1.4375rem;
  }
}
.tel-box__number:link, .tel-box__number:visited, .tel-box__number:hover, .tel-box__number:active {
  color: var(--c_accent03);
}
.tel-box__button-outer {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
}
@media screen and (max-width: 820px) {
  .tel-box__button-outer {
    flex-direction: row;
    column-gap: 0.8125rem;
    justify-content: center;
  }
}
.tel-box .button--reserve,
.tel-box .button--large {
  width: 100%;
  max-width: 16rem;
}
@media screen and (max-width: 820px) {
  .tel-box .button--reserve,
  .tel-box .button--large {
    max-width: 11.375rem;
  }
}

.table-hours {
  width: 36.25rem;
  border-collapse: collapse;
  border: 0.125rem solid var(--c_accent04);
  line-height: 1.4;
  background-color: var(--c_bg01);
}
@media screen and (max-width: 820px) {
  .table-hours {
    width: 23.75rem;
    line-height: 1.2;
  }
}
.table-hours__thead {
  background-color: var(--c_accent04);
  color: var(--c_bg01);
  font-size: 0.9375rem;
  font-weight: 700;
  height: 3.375rem;
}
@media screen and (max-width: 820px) {
  .table-hours__thead {
    font-size: 0.6875rem;
    height: 2.25rem;
  }
}
.table-hours__thead .table-hours__th {
  border: none;
}
@media screen and (max-width: 820px) {
  .table-hours__thead .table-hours__th {
    padding: 0.625rem 0;
  }
}
.table-hours__th, .table-hours__td {
  border: 0.0625rem solid var(--c_border01);
}
.table-hours__td {
  width: 4rem;
  height: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .table-hours__td {
    width: 2.625rem;
    height: 2.5rem;
  }
}
.table-hours .large-cell {
  width: 8.25rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 820px) {
  .table-hours .large-cell {
    width: 5.375rem;
  }
}
.table-hours .table-hours__tbody .large-cell {
  font-size: 1rem;
  color: var(--c_text02);
}
@media screen and (max-width: 820px) {
  .table-hours .table-hours__tbody .large-cell {
    font-size: 0.6875rem;
  }
}

.circle-mark {
  width: 1.5625rem;
  height: 1.5625rem;
  border: 0.1875rem solid var(--c_accent03);
  border-radius: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .circle-mark {
    width: 1rem;
    height: 1rem;
    border: 0.125rem solid var(--c_accent03);
  }
}

.cross-mark {
  color: var(--c_accent03);
  width: 1.0625rem;
  height: 1.0625rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .cross-mark {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.cross-mark::before, .cross-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background-color: currentColor;
  color: var(--c_accent03);
}
@media screen and (max-width: 820px) {
  .cross-mark::before, .cross-mark::after {
    height: 0.125rem;
  }
}
.cross-mark::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cross-mark::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.table-hours-note {
  background-color: var(--c_bg05);
  width: 36.25rem;
  display: flex;
  flex-direction: column;
  padding: 1.5625rem 1.625rem 1.4375rem;
  row-gap: 0.4375rem;
}
@media screen and (max-width: 820px) {
  .table-hours-note {
    width: 23.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    padding: 0.625rem;
    row-gap: 0.25rem;
  }
}

.g-map {
  width: 100%;
}
.g-map__inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  text-align: center;
  font-size: 2.1875rem;
  font-weight: 700;
  color: var(--c_accent03);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  padding-top: 3.375rem;
  position: relative;
}
@media screen and (max-width: 820px) {
  .section-title {
    font-size: 1.25rem;
    line-height: 1.8;
    padding-top: 1.375rem;
  }
}
.section-title::before {
  content: "";
  width: 2.6875rem;
  height: 2.75rem;
  background-image: url(../images/icon_apple-lightblue.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 820px) {
  .section-title::before {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.section-title--white::before {
  background-image: url(../images/icon_apple-white.svg);
}

.subpage-title {
  height: 18.75rem;
  margin-top: 6.25rem;
  background-image: url(../images/bg_01.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 820px) {
  .subpage-title {
    font-size: 1.375rem;
    height: 7.1875rem;
    margin-top: 3.125rem;
  }
}
.subpage-title__inner {
  width: 100%;
  height: 100%;
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .subpage-title__inner {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 820px) {
  .subpage-title__inner {
    padding: 0 0.9375rem;
  }
}
.subpage-title__text {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--c_accent03);
  line-height: 1.45;
}
@media screen and (max-width: 820px) {
  .subpage-title__text {
    font-size: 1.375rem;
  }
}

.breadcrumbs__wrapper {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0.625rem 0 0;
}
@media screen and (max-width: 1280px) {
  .breadcrumbs__wrapper {
    padding: 0.625rem 0.9375rem;
  }
}
@media screen and (max-width: 820px) {
  .breadcrumbs__wrapper {
    padding: 0.375rem 0.9375rem;
  }
}
.breadcrumbs__item {
  display: inline;
}
.breadcrumbs__item .breadcrumbs__link {
  font-size: 0.75rem;
  padding-right: 0.5rem;
}
.breadcrumbs__item:not(:first-child) .breadcrumbs__link {
  padding-left: 0.5rem;
}
.breadcrumbs__item:last-child .breadcrumbs__symbol {
  display: none;
}
.breadcrumbs__item .breadcrumbs__symbol {
  color: var(--c_accent03);
  font-size: 0.75rem;
}

.anchor-link .container {
  padding-top: 2.625rem;
}
@media screen and (max-width: 820px) {
  .anchor-link .container {
    padding-top: 2rem;
  }
}
.anchor-link__list {
  display: flex;
  column-gap: 3.6875rem;
  row-gap: 1.5rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  .anchor-link__list {
    column-gap: 1rem;
    row-gap: 0.5rem;
  }
}
.anchor-link__item {
  width: calc((100% - 11.0625rem) / 4);
}
@media screen and (max-width: 820px) {
  .anchor-link__item {
    width: calc((100% - 1rem) / 2);
  }
}
.anchor-link__link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c_accent03);
  text-align: center;
  line-height: 1;
  height: 3.375rem;
  line-height: 3.375rem;
  border-radius: 1.6875rem;
  border: 0.0625rem solid var(--c_accent03);
  background-color: var(--c_bg01);
  position: relative;
  transition: box-shadow 0.3s;
}
@media screen and (max-width: 820px) {
  .anchor-link__link {
    font-size: 0.9375rem;
    height: 2.25rem;
    line-height: 2.25rem;
    border-radius: 1.125rem;
  }
}
.anchor-link__link::after {
  content: "";
  width: 0.5rem;
  height: 0.75rem;
  background-image: url(../images/icon_arrow-bottom.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  right: 0.875rem;
}
@media screen and (max-width: 820px) {
  .anchor-link__link::after {
    right: 0.5625rem;
  }
}

@media (any-hover: hover) {
  .anchor-link__link:hover {
    box-shadow: 0 1rem 1.25rem -0.5rem rgba(0, 0, 0, 0.2);
  }
}
.anchor-link__link:focus {
  box-shadow: 0 1rem 1.25rem -0.5rem rgba(0, 0, 0, 0.2);
}

.itemize-lightblue {
  line-height: 1.5;
  padding-left: 1.875rem;
  position: relative;
}
@media screen and (max-width: 820px) {
  .itemize-lightblue {
    font-size: 0.9375rem;
    padding-left: 1.4375rem;
  }
}
.itemize-lightblue::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: var(--c_accent04);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 820px) {
  .itemize-lightblue::before {
    width: 0.9375rem;
    height: 0.9375rem;
    top: 12%;
    transform: none;
  }
}

.h3-title {
  font-family: "Noto Sans JP", sans-serif;
  background-color: var(--c_bg02);
  border-left: 0.3125rem solid var(--c_accent03);
  color: var(--c_accent03);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.43;
  padding: 0.375rem 0 0.375rem 1.5rem;
}
@media screen and (max-width: 820px) {
  .h3-title {
    font-size: 1.125rem;
    border-left: 0.1875rem solid var(--c_accent03);
    padding: 0.4375rem 0 0.4375rem 0.75rem;
  }
}

.h4-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--c_accent03);
  position: relative;
  padding-left: 1.9375rem;
}
@media screen and (max-width: 820px) {
  .h4-title {
    font-size: 1rem;
    padding-left: 1.4375rem;
  }
}
.h4-title::before {
  content: "";
  width: 1.4375rem;
  height: 1.4375rem;
  background-image: url(../images/icon_apple-blue.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0.375rem;
  left: 0;
}
@media screen and (max-width: 820px) {
  .h4-title::before {
    width: 0.9375rem;
    height: 0.9375rem;
    top: 0.25rem;
  }
}

.bg-change-gray {
  background-color: var(--c_bg03);
}

.box-frame {
  display: flex;
}
@media screen and (max-width: 820px) {
  .box-frame {
    flex-direction: column;
  }
}
.box-frame__img-outer {
  width: 39.3333333333%;
  aspect-ratio: 472/396;
}
@media screen and (max-width: 820px) {
  .box-frame__img-outer {
    width: 100%;
    height: 100%;
    aspect-ratio: 820/478;
  }
}
.box-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-frame__text-outer {
  width: 60.6666666667%;
  background-color: var(--c_bg02);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.125rem 0 2.8125rem;
}
@media screen and (max-width: 820px) {
  .box-frame__text-outer {
    width: 100%;
    row-gap: 0.75rem;
    padding: 1.6875rem 0.9375rem;
  }
}
.box-frame__title {
  font-size: 1.875rem;
  color: var(--c_accent03);
}
@media screen and (max-width: 820px) {
  .box-frame__title {
    font-size: 1.125rem;
  }
}

.bottom-title-box__img-outer {
  width: 100%;
  aspect-ratio: 563/364;
  position: relative;
}
@media screen and (max-width: 820px) {
  .bottom-title-box__img-outer {
    aspect-ratio: 760/491;
  }
}
.bottom-title-box__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bottom-title-box__title {
  position: absolute;
  bottom: -3.375rem;
  left: 0;
  width: 100%;
  height: 3.375rem;
  background-color: var(--c_accent03);
  color: var(--c_bg01);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 820px) {
  .bottom-title-box__title {
    bottom: -2.3125rem;
    height: 2.3125rem;
    font-size: 1rem;
  }
}
.bottom-title-box__text {
  line-height: 2.6;
  margin-top: 4.375rem;
}
@media screen and (max-width: 820px) {
  .bottom-title-box__text {
    font-size: 0.9375rem;
    line-height: 1.9;
    margin-top: 3.3125rem;
  }
}

.text-link {
  color: var(--c_accent03);
  text-decoration: 0.0625rem underline var(--c_accent03);
}

@media (any-hover: hover) {
  .text-link:hover {
    color: var(--c_accent04);
    text-decoration: 0.0625rem underline var(--c_accent04);
  }
}
.text-link:focus {
  color: var(--c_accent04);
  text-decoration: 0.0625rem underline var(--c_accent04);
}

.teeth-list {
  display: flex;
  column-gap: 1.5rem;
}
@media screen and (max-width: 820px) {
  .teeth-list {
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 1rem;
  }
}
.teeth-list__item {
  width: calc((100% - 4.5rem) / 4);
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .teeth-list__item {
    width: calc((100% - 1rem) / 2);
    row-gap: 0.25rem;
    line-height: 1.5;
  }
}
.teeth-list__img-outer {
  width: 100%;
  aspect-ratio: 282/166;
}
.teeth-list__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teeth-list__text {
  text-align: center;
}
.teeth-list__button {
  width: 100%;
  max-width: 16rem;
  margin: 3.875rem auto 0;
}
@media screen and (max-width: 820px) {
  .teeth-list__button {
    max-width: 11.375rem;
    margin: 1.5rem auto 0;
  }
}

.frame-01 {
  display: flex;
}
@media screen and (max-width: 820px) {
  .frame-01 {
    flex-direction: column;
    margin-top: 1.125rem;
  }
}
.frame-01__box01 {
  width: 50%;
}
@media screen and (max-width: 820px) {
  .frame-01__box01 {
    width: 100%;
    padding-right: 0.9375rem;
  }
}
.frame-01__img-outer {
  width: 44.3vw;
  aspect-ratio: 850/494;
  border-radius: 0 28.1875rem 28.1875rem 0;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .frame-01__img-outer {
    width: 100%;
    border-radius: 0 14.125rem 14.125rem 0;
    aspect-ratio: 790/459;
  }
}
.frame-01__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame-01__box02 {
  width: 50%;
  margin-right: auto;
  margin-top: 2.75rem;
}
@media screen and (max-width: 820px) {
  .frame-01__box02 {
    width: 100%;
    margin-top: 1.25rem;
    margin-right: 0;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.frame-01__box02-inner {
  width: 31.3vw;
}
@media screen and (max-width: 820px) {
  .frame-01__box02-inner {
    width: 100%;
  }
}
.frame-01__text {
  margin-top: 1.875rem;
}
@media screen and (max-width: 820px) {
  .frame-01__text {
    font-size: 0.9375rem;
    margin-top: 0;
  }
}
.frame-01__desc:not(:first-child) {
  padding-top: 0.75rem;
}
@media screen and (max-width: 820px) {
  .frame-01__desc:not(:first-child) {
    padding-top: 0.5rem;
  }
}

.frame-02__img-outer {
  margin-top: 2.5rem;
  width: 100%;
  aspect-ratio: 1200/565;
}
@media screen and (max-width: 820px) {
  .frame-02__img-outer {
    margin-top: 1.25rem;
  }
}
.frame-02__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame-02__text {
  margin-top: 2rem;
}
@media screen and (max-width: 820px) {
  .frame-02__text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
  }
}
.frame-02__button {
  margin-top: 2rem;
}
@media screen and (max-width: 820px) {
  .frame-02__button {
    margin-top: 1.25rem;
  }
}

.frame-03__img-outer {
  margin-top: 2.5rem;
  width: 100%;
  aspect-ratio: 1200/565;
}
@media screen and (max-width: 820px) {
  .frame-03__img-outer {
    margin-top: 1.25rem;
  }
}
.frame-03__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame-03__text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .frame-03__text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
  }
}
.frame-03__desc:not(:first-child) {
  padding-top: 1.8125rem;
}
@media screen and (max-width: 820px) {
  .frame-03__desc:not(:first-child) {
    padding-top: 1.25rem;
  }
}

.number-list {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  margin-top: 1.8125rem;
}
@media screen and (max-width: 820px) {
  .number-list {
    row-gap: 0.5rem;
    margin-top: 1.25rem;
  }
}
.number-list__item {
  display: flex;
  column-gap: 0.875rem;
}
@media screen and (max-width: 820px) {
  .number-list__item {
    column-gap: 0.5rem;
    font-size: 0.9375rem;
  }
}
.number-list__number {
  font-weight: 700;
  color: var(--c_accent04);
}

/* header
------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--c_bg01);
  z-index: 10;
  padding: 0 3.125rem;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 820px) {
  .header {
    height: 3.125rem;
    padding: 0 1rem;
  }
}
.header__reserve-button {
  margin-left: auto;
  margin-right: 0.8125rem;
}
.header__reserve-button .gnav__button {
  max-width: 7.625rem;
  width: 100%;
}

.header .header-logo {
  line-height: 0;
}
@media screen and (max-width: 820px) {
  .header .header-logo {
    z-index: 12;
  }
}
.header .header-logo__img {
  width: 100%;
  max-width: 19.0625rem;
}
@media screen and (max-width: 820px) {
  .header .header-logo__img {
    max-width: 10.875rem;
  }
}

.header .hamburger-button {
  display: none;
}
@media screen and (max-width: 820px) {
  .header .hamburger-button {
    display: block;
    position: relative;
    z-index: 12;
    width: 1.5rem;
    height: 3.125rem;
    text-align: center;
  }
  .header .hamburger-button__line {
    position: absolute;
    display: block;
    width: 1.5rem;
    height: 0.1875rem;
    left: 0;
    border-radius: 0.1875rem;
    transition: all 0.6s;
    background-color: var(--c_accent03);
  }
  .header .hamburger-button__line:nth-child(1) {
    top: 1rem;
  }
  .header .hamburger-button__line:nth-child(2) {
    top: 1.5rem;
  }
  .header .hamburger-button__line:nth-child(3) {
    top: 2rem;
  }
  .header .hamburger-button.active .hamburger-button__line {
    background-color: var(--c_accent03);
  }
  .header .hamburger-button.active .hamburger-button__line:nth-child(1) {
    top: 1.5rem;
    transform: rotate(40deg);
  }
  .header .hamburger-button.active .hamburger-button__line:nth-child(2) {
    opacity: 0;
  }
  .header .hamburger-button.active .hamburger-button__line:nth-child(3) {
    top: 1.5rem;
    transform: rotate(-40deg);
  }
}

html.active {
  height: 100%;
  overflow: hidden;
}

.header .gnav {
  position: relative;
}
@media screen and (max-width: 820px) {
  .header .gnav {
    position: fixed;
    z-index: 11;
    top: 3.125rem;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all 0.6s;
    background-color: var(--c_bg03);
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    row-gap: 2.875rem;
    align-items: center;
    padding: 0.9375rem 2.1875rem 2.25rem;
    overflow-y: scroll;
  }
  .header .gnav.active {
    opacity: 1;
    pointer-events: auto;
  }
}
.header .gnav__list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .header .gnav__list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.header .gnav__item:not(:nth-child(5)):not(:nth-child(6)) {
  margin-right: 4.5rem;
}
@media screen and (max-width: 820px) {
  .header .gnav__item:not(:nth-child(5)):not(:nth-child(6)) {
    margin-right: 0;
  }
}
.header .gnav__item:nth-child(5) {
  margin-right: 3.5625rem;
}
@media screen and (max-width: 820px) {
  .header .gnav__item:nth-child(5) {
    margin-right: 0;
  }
}
@media screen and (max-width: 820px) {
  .header .gnav__item {
    width: 100%;
  }
}
.header .gnav__link {
  padding: 0.75rem 0;
}
@media screen and (max-width: 820px) {
  .header .gnav__link {
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
    border-bottom: 0.0625rem solid var(--c_border02);
    padding: 1.75rem 0.375rem 1.25rem 0;
  }
}
@media screen and (max-width: 820px) {
  .header .gnav__link-img-outer {
    width: 0.5625rem;
    aspect-ratio: 9/14;
  }
}
@media screen and (max-width: 820px) {
  .header .gnav__link-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: top;
  }
}
.header .gnav__button {
  font-size: 1rem;
  width: 12.8125rem;
}
@media screen and (max-width: 820px) {
  .header .gnav__button {
    font-size: 0.9375rem;
  }
}
.header .gnav .tel-box {
  margin-bottom: 3.125rem;
}

/* fv
------------------------------------------ */
.fv {
  background-image: url(../images/top_fv-01.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 41.4375rem;
  margin-top: 6.25rem;
}
@media screen and (max-width: 820px) {
  .fv {
    background-image: url(../images/top_fv-01--sp.webp);
    height: 31.8125rem;
    margin-top: 3.125rem;
  }
}

.fv__inner {
  max-width: 99.875rem;
  display: flex;
  justify-content: center;
  column-gap: 5.8125rem;
  padding-top: 2.875rem;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .fv__inner {
    display: block;
    padding: 1.4375rem 0.75rem 0;
  }
}

.fv__text {
  width: 49.4375rem;
  margin-left: 12.4375rem;
  padding-top: 3.3125rem;
}
@media screen and (max-width: 820px) {
  .fv__text {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    text-align: center;
  }
}
.fv__speech-bubble {
  font-size: 1.75rem;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  margin-bottom: 1.125rem;
  padding: 0.625rem 1.4375rem;
  border-radius: 2rem;
  background-color: var(--c_accent04);
  text-align: center;
  font-weight: 400;
  color: var(--c_bg01);
}
@media screen and (max-width: 820px) {
  .fv__speech-bubble {
    font-size: 1.125rem;
    padding: 0.5rem 1.0625rem;
    margin-bottom: 0;
  }
}
.fv__speech-bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 1.125rem 1.125rem 0 1.125rem;
  border-color: var(--c_accent04) transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 820px) {
  .fv__speech-bubble::after {
    border-width: 0.75rem 0.75rem 0 0.75rem;
  }
}
.fv__catchcopy {
  color: var(--c_accent03);
  font-size: 2.3125rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 1.3125rem;
  white-space: nowrap;
}
@media screen and (max-width: 820px) {
  .fv__catchcopy {
    font-size: 1.5rem;
    margin-top: 0.75rem;
    line-height: 1.7;
  }
}
.fv__subcopy {
  font-size: 1.25rem;
  line-height: 2.1;
  margin-top: 1rem;
}
@media screen and (max-width: 820px) {
  .fv__subcopy {
    font-size: 1rem;
    margin-top: 0.5rem;
    line-height: 1.7;
  }
}

@media screen and (max-width: 820px) {
  .fv__sp-inner {
    display: flex;
    column-gap: 1rem;
    align-items: flex-end;
    justify-content: center;
    margin-top: 1rem;
  }
}

.fv__circle-outer {
  margin-top: 1.625rem;
  display: flex;
  column-gap: 1.6875rem;
}
@media screen and (max-width: 820px) {
  .fv__circle-outer {
    margin-top: 0;
    margin-left: 0.5rem;
    flex-direction: column;
    row-gap: 0.5625rem;
    width: 7.875rem;
  }
}
.fv__circle {
  width: 11.6875rem;
  height: 11.6875rem;
  background-color: var(--c_bg01);
  border: 0.25rem solid var(--c_accent03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c_accent03);
}
.fv__circle:last-child {
  padding-top: 1.5625rem;
}
@media screen and (max-width: 820px) {
  .fv__circle:last-child {
    padding-top: 0.75rem;
  }
}
@media screen and (max-width: 820px) {
  .fv__circle {
    width: 7.875rem;
    height: 7.875rem;
  }
}

.fv__circle-text-01 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 0.6875rem;
}
@media screen and (max-width: 820px) {
  .fv__circle-text-01 {
    font-size: 0.875rem;
    line-height: 1.5;
    padding-bottom: 0.125rem;
  }
}
.fv__circle-text-01-01 {
  font-size: 1.8125rem;
}
@media screen and (max-width: 820px) {
  .fv__circle-text-01-01 {
    font-size: 1.125rem;
  }
}
.fv__circle-text-02 {
  line-height: 1;
  display: flex;
  justify-content: center;
  column-gap: 0.25rem;
}
@media screen and (max-width: 820px) {
  .fv__circle-text-02 {
    column-gap: 0.1875rem;
  }
}
.fv__circle-text-02-01 {
  font-size: 5.0625rem;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .fv__circle-text-02-01 {
    font-size: 3.375rem;
  }
}
.fv__circle-text-02-02 {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1640px) {
  .fv__circle-text-02-02 {
    row-gap: 0.25rem;
  }
}
.fv__circle-text-02-02-top {
  font-size: 1.1875rem;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  .fv__circle-text-02-02-top {
    font-size: 0.8125rem;
  }
}
.fv__circle-text-02-02-bottom {
  font-size: 2.25rem;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  .fv__circle-text-02-02-bottom {
    font-size: 1.5rem;
  }
}

.fv__circle-text-03 {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 820px) {
  .fv__circle-text-03 {
    font-size: 2.125rem;
  }
}
.fv__circle-text-03-01 {
  font-weight: 700;
}
.fv__circle-text-04 {
  font-size: 1.6875rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 0.625rem;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .fv__circle-text-04 {
    font-size: 1.125rem;
    line-height: 1.4;
    padding-bottom: 0.0625rem;
  }
}

.fv__img-outer--pc {
  width: 59.625rem;
  aspect-ratio: 714/546;
}
.fv__img-outer--sp {
  width: 14.25rem;
  aspect-ratio: 456/497;
}
.fv__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* information-01
------------------------------------------ */
.information-01 .container {
  padding-top: 2.3125rem;
  padding-bottom: 2.1875rem;
}
@media screen and (max-width: 820px) {
  .information-01 .container {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.information-01__inner {
  display: flex;
  column-gap: 5.875rem;
}
@media screen and (max-width: 820px) {
  .information-01__inner {
    flex-direction: column;
    row-gap: 0.5rem;
  }
}

@media screen and (max-width: 820px) {
  .information-01__sp-inner {
    display: flex;
    justify-content: space-between;
  }
}

.information-01__title {
  color: var(--c_accent03);
  font-size: 1.875rem;
  line-height: 1.4;
  width: 10%;
  margin-top: 0.875rem;
}
@media screen and (max-width: 820px) {
  .information-01__title {
    font-size: 1.25rem;
    line-height: 1.7;
    width: auto;
    margin-top: 0;
  }
}
.information-01 .news-list {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  width: 61.5%;
  margin-right: 2.375rem;
}
@media screen and (max-width: 820px) {
  .information-01 .news-list {
    row-gap: 0.625rem;
    width: 100%;
    margin-right: 0;
  }
}
.information-01 .news-list__link {
  display: flex;
  column-gap: 1.6875rem;
}
@media screen and (max-width: 820px) {
  .information-01 .news-list__link {
    flex-direction: column;
    column-gap: 0.5rem;
  }
}
.information-01 .news-list__info {
  display: flex;
  column-gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .information-01 .news-list__info {
    column-gap: 0.75rem;
  }
}
@media screen and (max-width: 820px) {
  .information-01 .news-list__date {
    font-size: 0.9375rem;
  }
}
.information-01 .news-list__title-outer {
  width: 71.7741935484%;
}
@media screen and (max-width: 820px) {
  .information-01 .news-list__title-outer {
    width: 100%;
  }
}
.information-01 .news-list__title {
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 820px) {
  .information-01 .news-list__title {
    line-height: 1.6;
    font-size: 0.875rem;
    white-space: wrap;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.information-01__button--pc {
  width: 9.5833333333%;
  align-self: center;
  margin-top: 0.5rem;
}
@media screen and (max-width: 820px) {
  .information-01 .pc-only {
    display: none;
  }
}

/* information-02
------------------------------------------ */
.information-02 {
  border-top: 0.0625rem solid var(--c_border01);
}

.information-02 .container {
  padding-top: 3.625rem;
  padding-bottom: 4.25rem;
}
@media screen and (max-width: 820px) {
  .information-02 .container {
    padding-top: 1.8125rem;
    padding-bottom: 2rem;
  }
}

.information-02__inner {
  display: flex;
  column-gap: 4.5rem;
}
@media screen and (max-width: 820px) {
  .information-02__inner {
    flex-direction: column;
    row-gap: 1.625rem;
  }
}

.information-02__box01 {
  width: 48.3333333333%;
}
@media screen and (max-width: 820px) {
  .information-02__box01 {
    width: 100%;
  }
}
.information-02__box01 .tel-box__text {
  margin-left: 2.125rem;
}
@media screen and (max-width: 820px) {
  .information-02__box01 .tel-box__text {
    margin-left: 0;
  }
}
.information-02__box01 .tel-box__number-outer {
  margin-right: 1.125rem;
}
@media screen and (max-width: 820px) {
  .information-02__box01 .tel-box__number-outer {
    margin-right: 0;
  }
}
.information-02__box01 .tel-box__button-outer {
  margin-right: 1.125rem;
}
@media screen and (max-width: 820px) {
  .information-02__box01 .tel-box__button-outer {
    margin-right: 0;
  }
}
.information-02__box01 .table-hours {
  margin-top: 1.6875rem;
}
@media screen and (max-width: 820px) {
  .information-02__box01 .table-hours {
    margin: 2.0625rem auto 0;
  }
}
.information-02__box01 .table-hours-note {
  margin-top: 1.1875rem;
}
@media screen and (max-width: 820px) {
  .information-02__box01 .table-hours-note {
    margin: 0.5rem auto 0;
  }
}
.information-02__table-hours-outer {
  width: 100%;
}

.information-02__box02 {
  width: 45.6666666667%;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .information-02__box02 {
    width: 100%;
  }
}
.information-02__box02-title {
  color: var(--c_accent03);
  line-height: 1.45;
}
.information-02 .map__title-01 {
  font-size: 1.5625rem;
}
@media screen and (max-width: 820px) {
  .information-02 .map__title-01 {
    font-size: 0.9375rem;
    padding-left: 14px;
  }
}
.information-02 .map__title-01-inner {
  font-size: 1.875rem;
}
@media screen and (max-width: 820px) {
  .information-02 .map__title-01-inner {
    font-size: 1.125rem;
  }
}
.information-02 .map__title-02 {
  display: inline-block;
  font-size: 1.875rem;
}
@media screen and (max-width: 820px) {
  .information-02 .map__title-02 {
    font-size: 1.125rem;
  }
}

.information-02 .g-map {
  aspect-ratio: 548/522;
  margin-top: 3.125rem;
}
@media screen and (max-width: 820px) {
  .information-02 .g-map {
    aspect-ratio: 760/471;
    margin-top: 1rem;
  }
}
.information-02 .g-map__inner {
  width: 100%;
}

/* information-01
------------------------------------------ */
.guide {
  background-color: var(--c_bg02);
}

.guide .container {
  padding-top: 4.5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .guide .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.guide__list {
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 13.75rem 13.75rem;
  gap: 1.5625rem;
  justify-content: center;
}
@media screen and (max-width: 820px) {
  .guide__list {
    margin: 0.875rem auto 0;
    grid-template-columns: repeat(3, 7.375rem);
    grid-template-rows: 7.375rem 7.375rem 7.375rem;
    column-gap: 0.8125rem;
    row-gap: 0.5rem;
  }
}
@media screen and (max-width: 820px) {
  .guide__item:nth-child(9) .guide__link {
    row-gap: 0.1875rem;
    padding: 0.6875rem 0.5rem 0.5625rem 0.6875rem;
  }
  .guide__item:nth-child(9) .guide__text {
    align-items: flex-end;
  }
  .guide__item:nth-child(9) .guide__text .link-small__text {
    text-align: center;
  }
  .guide__item:nth-child(9) .guide__text .link-small__arrow {
    margin-bottom: 0.1875rem;
  }
}
.guide__link {
  background-color: var(--c_bg01);
  border: 0.0625rem solid var(--c_accent03);
  border-radius: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.0625rem;
  padding: 2.0625rem 0 2rem;
}
@media screen and (max-width: 820px) {
  .guide__link {
    border-radius: 1.25rem;
    row-gap: 0.5rem;
    padding: 0.9375rem 0.6875rem 1.0625rem;
  }
}
.guide__img-outer {
  width: 6.875rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 820px) {
  .guide__img-outer {
    width: 3.6875rem;
  }
}
.guide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide__text.link-small {
  column-gap: 0.25rem;
  white-space: nowrap;
}
@media screen and (max-width: 820px) {
  .guide__text.link-small .link-small__text {
    line-height: 1.3;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 820px) {
  .guide__text.link-small .link-small__arrow {
    width: 0.75rem;
    height: 0.75rem;
  }
}
@media screen and (max-width: 820px) {
  .guide__text.link-small .link-small__arrow-img {
    width: 0.1875rem;
    height: 0.3125rem;
  }
}

@media (any-hover: hover) {
  .guide__link:hover {
    background-color: var(--c_bg04);
  }
}
.guide__link:focus {
  background-color: var(--c_bg04);
}

.guide__button {
  width: 100%;
  max-width: 16rem;
  margin: 3.4375rem auto 0;
}
@media screen and (max-width: 820px) {
  .guide__button {
    width: 100%;
    max-width: 11.375rem;
    margin: 1.25rem auto 0;
  }
}

/* for-patient
------------------------------------------ */
.for-patient .container {
  max-width: none;
  padding-top: 6.6875rem;
  padding-bottom: 6.8125rem;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (max-width: 820px) {
  .for-patient .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 820px) {
  .for-patient .frame-01__desc.sp-only {
    padding-top: 0;
  }
}
@media screen and (max-width: 820px) {
  .for-patient .corona-banner__outer {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.for-patient .frame-01__button-outer {
  width: 100%;
  max-width: 34.25rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.25rem;
  row-gap: 1.6875rem;
  margin: 3rem auto;
}
@media screen and (max-width: 820px) {
  .for-patient .frame-01__button-outer {
    max-width: 100%;
    column-gap: 1rem;
    row-gap: 0.75rem;
    margin: 1rem auto 0;
  }
}
.for-patient .button--large {
  width: calc((100% - 2.25rem) / 2);
}
@media screen and (max-width: 820px) {
  .for-patient .button--large {
    width: calc((100% - 1rem) / 2);
  }
}

.for-patient .corona-banner {
  width: 43.875rem;
  background-color: var(--c_bg06);
  border: 0.1875rem solid var(--c_accent03);
  color: var(--c_accent03);
  padding: 2.6875rem 1.8125rem 2.375rem;
  margin: 6rem auto 0;
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .for-patient .corona-banner {
    width: 23.75rem;
    border: 0.125rem solid var(--c_accent03);
    margin: 2rem auto 0;
    padding: 1.5rem 0.6875rem 1.3125rem;
    column-gap: 0.5rem;
  }
}
.for-patient .corona-banner::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background-image: url(../images/icon_arrow-right-white.svg);
  background-size: 30%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--c_accent03);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 820px) {
  .for-patient .corona-banner::after {
    width: 1.0625rem;
    height: 1.0625rem;
  }
}
.for-patient .corona-banner__img-outer {
  width: 8.8125rem;
  aspect-ratio: 141/89;
}
@media screen and (max-width: 820px) {
  .for-patient .corona-banner__img-outer {
    width: 4.75rem;
    aspect-ratio: 152/96;
  }
}
.for-patient .corona-banner__img {
  width: 100%;
  height: 100%;
}
.for-patient .corona-banner__text {
  font-size: 2.1875rem;
  line-height: 1.45;
  white-space: nowrap;
}
@media screen and (max-width: 820px) {
  .for-patient .corona-banner__text {
    font-size: 1.1875rem;
    letter-spacing: -0.02em;
  }
}

/* information-01
------------------------------------------ */
.footer .footer-logo {
  line-height: 0;
}
@media screen and (max-width: 820px) {
  .footer .footer-logo {
    text-align: center;
  }
}
.footer .footer-logo__img {
  width: 100%;
  max-width: 19.0625rem;
}
@media screen and (max-width: 820px) {
  .footer .footer-logo__img {
    max-width: 10.875rem;
  }
}

.footer-top {
  background-color: var(--c_bg02);
}

.footer-top .container {
  padding-top: 4rem;
  padding-bottom: 4.3125rem;
}
@media screen and (max-width: 820px) {
  .footer-top .container {
    padding-top: 2rem;
    padding-bottom: 2.25rem;
  }
}

.footer-top__inner {
  display: flex;
  column-gap: 7.125rem;
}
@media screen and (max-width: 820px) {
  .footer-top__inner {
    flex-direction: column;
    row-gap: 2rem;
  }
}
.footer-top__box01 {
  width: 48.3333333333%;
}
@media screen and (max-width: 820px) {
  .footer-top__box01 {
    width: 100%;
  }
}
.footer-top__table-hours-outer {
  margin-top: 1.1875rem;
}
@media screen and (max-width: 820px) {
  .footer-top__table-hours-outer {
    margin-top: 0.375rem;
  }
}
@media screen and (max-width: 820px) {
  .footer-top .table-hours {
    margin: 0 auto;
  }
}
.footer-top .table-hours-note {
  margin-top: 1.25rem;
}
@media screen and (max-width: 820px) {
  .footer-top .table-hours-note {
    margin: 0.375rem auto 0;
  }
}

.footer-top__box02 {
  width: 42.25%;
}
@media screen and (max-width: 820px) {
  .footer-top__box02 {
    width: 100%;
  }
}
.footer-top .tel-box {
  margin-top: 1.625rem;
}
@media screen and (max-width: 820px) {
  .footer-top .tel-box {
    margin-top: 0;
  }
}
.footer-top .tel-box__text {
  margin-right: 4.625rem;
}
@media screen and (max-width: 820px) {
  .footer-top .tel-box__text {
    margin-right: 0;
  }
}
.footer-top .tel-box__number-outer {
  margin-right: 6rem;
}
@media screen and (max-width: 820px) {
  .footer-top .tel-box__number-outer {
    margin-right: 0;
  }
}
.footer-top .tel-box__button-outer {
  margin-top: 1.125rem;
  margin-right: 4.625rem;
}
@media screen and (max-width: 820px) {
  .footer-top .tel-box__button-outer {
    margin-top: 1.0625rem;
    margin-right: 0;
  }
}
@media screen and (max-width: 820px) {
  .footer-top__access-outer {
    display: flex;
    justify-content: center;
  }
}
.footer-top__access {
  margin-top: 2.0625rem;
  margin-left: 0.6875rem;
}
@media screen and (max-width: 820px) {
  .footer-top__access {
    margin-top: 2.0625rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 820px) {
  .footer-top__access {
    margin-top: 2.25rem;
    font-size: 0.9375rem;
  }
}
.footer-top__access-text {
  line-height: 1;
  display: flex;
  align-items: center;
  column-gap: 1.0625rem;
}
@media screen and (max-width: 820px) {
  .footer-top__access-text {
    font-size: 0.9375rem;
    column-gap: 0.4375rem;
  }
}
.footer-top__access-text--info01 {
  margin-top: 1.25rem;
}
@media screen and (max-width: 820px) {
  .footer-top__access-text--info01 {
    margin-top: 0.75rem;
  }
}
.footer-top__access-text--info02 {
  margin-top: 0.75rem;
}
@media screen and (max-width: 820px) {
  .footer-top__access-text--info02 {
    margin-top: 0.75rem;
  }
}
.footer-top__access-img-outer {
  width: 1rem;
  aspect-ratio: 16/20;
}
@media screen and (max-width: 820px) {
  .footer-top__access-img-outer {
    width: 0.75rem;
  }
}
.footer-top__access-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom .container {
  padding-top: 3.1875rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 820px) {
  .footer-bottom .container {
    padding-top: 1.75rem;
    padding-bottom: 4rem;
  }
}
.footer-bottom__inner {
  display: flex;
}
@media screen and (max-width: 820px) {
  .footer-bottom__inner {
    flex-direction: column;
    row-gap: 1.5rem;
  }
}
.footer-bottom__nav {
  width: 50%;
}
@media screen and (max-width: 820px) {
  .footer-bottom__nav {
    width: 100%;
  }
}
.footer-bottom__banner-box {
  width: 50%;
}
@media screen and (max-width: 820px) {
  .footer-bottom__banner-box {
    width: 100%;
  }
}

.footer-bottom__nav {
  display: flex;
  column-gap: 5.8125rem;
}
@media screen and (max-width: 820px) {
  .footer-bottom__nav {
    flex-direction: column;
    row-gap: 0.5rem;
  }
}
.footer-bottom__list01 {
  width: 21%;
  display: flex;
  flex-direction: column;
  row-gap: 3.3125rem;
}
@media screen and (max-width: 820px) {
  .footer-bottom__list01 {
    width: 100%;
    flex-direction: row;
    column-gap: 7.125rem;
  }
}
.footer-bottom__link {
  display: inline-block;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 820px) {
  .footer-bottom__link {
    font-size: 0.875rem;
  }
}
.footer-bottom__link::after {
  content: "";
  width: 0.3125rem;
  height: 0.5rem;
  background-image: url(../images/icon_footer-arrow-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -0.75rem;
  transition: all 0.3s;
}
@media screen and (max-width: 820px) {
  .footer-bottom__link::after {
    width: 0.375rem;
    height: 0.625rem;
    right: -0.6875rem;
  }
}
.footer-bottom__list01-inner {
  padding-left: 2.0625rem;
  margin-top: 0.625rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
}
@media screen and (max-width: 820px) {
  .footer-bottom__list01-inner {
    padding-left: 0.9375rem;
    margin-top: 0;
    row-gap: 0;
  }
}
.footer-bottom__list02-inner {
  padding-left: 2.0625rem;
  margin-top: 0.625rem;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  row-gap: 0.75rem;
  column-gap: 2.75rem;
}
@media screen and (max-width: 820px) {
  .footer-bottom__list02-inner {
    padding-left: 0.9375rem;
    margin-top: 0;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0;
    column-gap: 2.125rem;
  }
}
.footer-bottom__list02 {
  width: 63.5%;
}
@media screen and (max-width: 820px) {
  .footer-bottom__list02 {
    width: 100%;
  }
}

@media (any-hover: hover) {
  .footer-bottom__link:hover::after {
    background-image: url(../images/icon_footer-arrow-right-lightblue.svg);
  }
}
.footer-bottom__link:focus::after {
  background-image: url(../images/icon_footer-arrow-right-lightblue.svg);
}

.footer-bottom__banner-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
}
.footer-bottom__banner-img-outer {
  width: 16.375rem;
  aspect-ratio: 262/105;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .footer-bottom__banner-img-outer {
    width: 262px;
    margin-bottom: 15px;
  }
}
.footer-bottom__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__copyright {
  display: block;
  background-color: var(--c_accent03);
  color: var(--c_bg01);
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.4375rem 0 0.375rem;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .footer__copyright {
    font-size: 0.875rem;
    padding: 0.75rem 0 0.625rem;
  }
}

/* clinic_consultation-hours
------------------------------------------ */
.page-clinic .anchor-link .container {
  padding-top: 3.625rem;
}
@media screen and (max-width: 820px) {
  .page-clinic .anchor-link .container {
    padding-top: 2rem;
  }
}

.consultation-hours .container {
  padding-top: 5rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 820px) {
  .consultation-hours .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.consultation-hours .table-hours {
  margin: 2.6875rem auto 0;
  width: 61.0625rem;
}
@media screen and (max-width: 820px) {
  .consultation-hours .table-hours {
    margin: 1rem auto 0;
    width: 23.75rem;
  }
}
.consultation-hours .table-hours__thead {
  font-size: 1.5rem;
  font-weight: 700;
  height: 5.6875rem;
}
@media screen and (max-width: 820px) {
  .consultation-hours .table-hours__thead {
    font-size: 0.6875rem;
    height: 2.25rem;
  }
}
.consultation-hours .table-hours__thead .large-cell {
  padding-right: 18px;
}
.consultation-hours .table-hours__thead .table-hours__th:last-child {
  letter-spacing: -0.2em;
}
.consultation-hours .table-hours__td {
  width: 6.75rem;
  height: 6.3125rem;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .consultation-hours .table-hours__td {
    width: 2.625rem;
    height: 2.5rem;
  }
}
.consultation-hours .table-hours .large-cell {
  width: 13.875rem;
}
@media screen and (max-width: 820px) {
  .consultation-hours .table-hours .large-cell {
    width: 5.375rem;
  }
}
.consultation-hours .table-hours__tbody .large-cell {
  font-size: 1.625rem;
}
@media screen and (max-width: 820px) {
  .consultation-hours .table-hours__tbody .large-cell {
    font-size: 0.6875rem;
  }
}
.consultation-hours .table-hours .circle-mark {
  width: 2.625rem;
  height: 2.625rem;
  border: 0.1875rem solid var(--c_accent03);
  border-radius: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .consultation-hours .table-hours .circle-mark {
    width: 1rem;
    height: 1rem;
    border: 0.125rem solid var(--c_accent03);
  }
}
.consultation-hours .table-hours .cross-mark {
  color: var(--c_accent03);
  width: 1.875rem;
  height: 1.875rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .consultation-hours .table-hours .cross-mark {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.consultation-hours .table-hours .cross-mark::before, .consultation-hours .table-hours .cross-mark::after {
  width: 100%;
  height: 0.1875rem;
}
@media screen and (max-width: 820px) {
  .consultation-hours .table-hours .cross-mark::before, .consultation-hours .table-hours .cross-mark::after {
    height: 0.125rem;
  }
}
.consultation-hours__note {
  width: 100%;
  max-width: 61.0625rem;
  margin: 1.5625rem auto 0;
}
@media screen and (max-width: 820px) {
  .consultation-hours__note {
    font-size: 0.9375rem;
    margin: 0.5rem auto 0;
  }
}

.consultation-hours .h3-title {
  margin-top: 3.625rem;
}
@media screen and (max-width: 820px) {
  .consultation-hours .h3-title {
    margin-top: 1.625rem;
  }
}
.consultation-hours .calendar {
  margin-top: 3.25rem;
}
@media screen and (max-width: 820px) {
  .consultation-hours .calendar {
    margin-top: 1.25rem;
  }
}

.consultation-hours .calendar-note {
  margin-top: 1.375rem;
}
@media screen and (max-width: 820px) {
  .consultation-hours .calendar-note {
    margin-top: 0.3125rem;
  }
}
.consultation-hours .calendar-note__item {
  display: flex;
  align-items: center;
  column-gap: 1.125rem;
}
@media screen and (max-width: 820px) {
  .consultation-hours .calendar-note__item {
    column-gap: 0.3125rem;
    line-height: 1.4;
  }
}
.consultation-hours .calendar-note__item:not(:first-child) {
  margin-top: 0.875rem;
}
@media screen and (max-width: 820px) {
  .consultation-hours .calendar-note__item:not(:first-child) {
    margin-top: 0.375rem;
  }
}
.consultation-hours .calendar-note__mark {
  width: 4.375rem;
  height: 1.625rem;
  border: 0.0625rem solid var(--c_calendar04);
}
@media screen and (max-width: 820px) {
  .consultation-hours .calendar-note__mark {
    width: 2.25rem;
    height: 0.8125rem;
    font-size: 0.5625rem;
  }
}
.consultation-hours .calendar-note__mark--01 {
  background-color: var(--c_calendar01);
}
.consultation-hours .calendar-note__mark--02 {
  background-color: var(--c_calendar02);
}
.consultation-hours .calendar-note__mark--03 {
  border: none;
  color: var(--c_calendar03);
}
@media screen and (max-width: 820px) {
  .consultation-hours .calendar-note__mark--03 {
    font-size: 0.5625rem;
    white-space: nowrap;
  }
}
.consultation-hours .calendar-note__text {
  line-height: 1.45;
}
@media screen and (max-width: 820px) {
  .consultation-hours .calendar-note__text {
    font-size: 0.9375rem;
  }
}

.consultation-hours .calendar-note__box {
  background-color: var(--c_bg05);
  padding: 1.375rem 2.6875rem;
  margin-top: 1.3125rem;
}
@media screen and (max-width: 820px) {
  .consultation-hours .calendar-note__box {
    padding: 0.625rem;
    margin-top: 0.1875rem;
  }
}
.consultation-hours .calendar-note__box .itemize-lightblue:not(:first-child) {
  margin-top: 0.5rem;
}
@media screen and (max-width: 820px) {
  .consultation-hours .calendar-note__box .itemize-lightblue:not(:first-child) {
    margin-top: 0.5rem;
  }
}

.xo-event-calendar .xo-months {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.75rem;
}
@media screen and (max-width: 820px) {
  .xo-event-calendar .xo-months {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
  }
}
.xo-event-calendar .calendar.xo-month-wrap {
  margin-top: 0;
}
.xo-event-calendar .holiday-titles {
  display: none;
}
.xo-event-calendar button {
  display: none;
}
.xo-event-calendar .calendar-caption {
  font-size: 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .xo-event-calendar .calendar-caption {
    font-size: 1.125rem;
  }
}
.xo-event-calendar .month-event-title.category-orthodontics {
  color: #0c8739 !important;
  background-color: #fff !important;
}
@media screen and (max-width: 820px) {
  .xo-event-calendar table.xo-month .month-event-title {
    font-size: 0.7em;
  }
}
.xo-event-calendar .month-event a {
  pointer-events: none;
}

/* clinic_access
------------------------------------------ */
.access .container {
  padding-top: 4rem;
  padding-bottom: 3.5625rem;
  padding-bottom: 3.8125rem;
}
@media screen and (max-width: 820px) {
  .access .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.access__inner {
  display: flex;
  column-gap: 4.5rem;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 820px) {
  .access__inner {
    flex-direction: column;
    row-gap: 1rem;
    margin-top: 0.9375rem;
  }
}
.access__img-outer {
  width: 43.0833333333%;
  aspect-ratio: 517/356;
  margin-left: 2.6875rem;
}
@media screen and (max-width: 820px) {
  .access__img-outer {
    width: 16.1875rem;
    margin: 0 auto;
  }
}
.access__route-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.access__map {
  width: 47.25%;
}
@media screen and (max-width: 820px) {
  .access__map {
    width: 100%;
  }
}
.access .g-map {
  aspect-ratio: 567/320;
}
@media screen and (max-width: 820px) {
  .access .g-map {
    aspect-ratio: 760/471;
  }
}
.access__text {
  line-height: 2;
  padding-left: 2.125rem;
  position: relative;
  margin-top: 0.25rem;
}
@media screen and (max-width: 820px) {
  .access__text {
    line-height: 1.9;
    padding-left: 1.1875rem;
    font-size: 0.9375rem;
  }
}
.access__text::before {
  content: "";
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.0625rem;
  height: 1.25rem;
  background-image: url(../images/icon_map.svg);
}
@media screen and (max-width: 820px) {
  .access__text::before {
    width: 0.75rem;
    height: 0.875rem;
  }
}

.access .h3-title {
  margin-top: 3.5625rem;
}
@media screen and (max-width: 820px) {
  .access .h3-title {
    margin-top: 1.75rem;
  }
}
.access__route-list {
  display: flex;
  flex-direction: column;
  row-gap: 2.125rem;
  margin-top: 2.625rem;
}
@media screen and (max-width: 820px) {
  .access__route-list {
    row-gap: 2rem;
    margin-top: 1.25rem;
  }
}
.access__route-item {
  display: flex;
  column-gap: 4.25rem;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .access__route-item {
    flex-direction: column;
    row-gap: 0.75rem;
  }
}
.access__route-item:first-child .access__route-text {
  padding-bottom: 1rem;
}
@media screen and (max-width: 820px) {
  .access__route-item:first-child .access__route-text {
    padding-bottom: 0;
  }
}
.access__route-item:last-child .access__route-text {
  padding-bottom: 0.375rem;
}
@media screen and (max-width: 820px) {
  .access__route-item:last-child .access__route-text {
    padding-bottom: 0;
  }
}
.access__route-img-outer {
  width: 20rem;
}
@media screen and (max-width: 820px) {
  .access__route-img-outer {
    width: 17.5rem;
  }
}
.access__route-text {
  flex: 1;
}

/* clinic_concept
------------------------------------------ */
.concept .container {
  padding-top: 4rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .concept .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 820px) {
  .concept .accordion {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.concept .box-frame {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .concept .box-frame {
    margin-top: 1.375rem;
  }
}
.concept .box-frame__text-outer {
  padding-bottom: 1.125rem;
}
@media screen and (max-width: 820px) {
  .concept .box-frame__text-outer {
    padding-bottom: 1.6875rem;
  }
}

.accordion {
  margin-top: 9.1875rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 4.5rem;
  row-gap: 7.1875rem;
}
@media screen and (max-width: 820px) {
  .accordion {
    margin-top: 2rem;
    flex-direction: column;
    row-gap: 2rem;
  }
}
.accordion__box {
  width: calc((100% - 4.5rem) / 2);
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .accordion__box {
    width: 100%;
  }
}
.accordion__box:nth-child(2) .accordion__title-text {
  margin-top: 0.75rem;
}
@media screen and (max-width: 820px) {
  .accordion__box:nth-child(2) .accordion__title-text {
    margin-top: 0.375rem;
  }
}
.accordion__box:nth-child(2) .accordion__title-icon {
  margin-top: 1.25rem;
}
@media screen and (max-width: 820px) {
  .accordion__box:nth-child(2) .accordion__title-icon {
    margin-top: 0.25rem;
  }
}
.accordion__box:nth-child(3) .accordion__title-text {
  margin-top: 0.5625rem;
  margin-left: 0.875rem;
}
@media screen and (max-width: 820px) {
  .accordion__box:nth-child(3) .accordion__title-text {
    margin-top: 0.375rem;
    margin-left: 0;
  }
}
.accordion__box:nth-child(3) .accordion__title-icon {
  margin-top: 1.375rem;
}
@media screen and (max-width: 820px) {
  .accordion__box:nth-child(3) .accordion__title-icon {
    margin-top: 0.25rem;
  }
}
@media screen and (max-width: 820px) {
  .accordion__box:nth-child(4) .accordion__title-text {
    margin-top: 0.375rem;
  }
}
@media screen and (max-width: 820px) {
  .accordion__box:nth-child(4) .accordion__title-icon {
    margin-top: 0.25rem;
  }
}

.accordion__title {
  color: var(--c_accent03);
  border: 0.0625rem solid var(--c_accent03);
  border-radius: 2.5rem;
  height: 10.6875rem;
  line-height: 1;
  padding: 0.75rem 0 0.5rem;
  transition: box-shadow 0.3s;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .accordion__title {
    border-radius: 1.25rem;
    height: 7.625rem;
    padding: 0.75rem 0 0.5rem;
  }
}
.accordion__title-number {
  font-size: 2.1875rem;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .accordion__title-number {
    font-size: 1.5rem;
  }
}
.accordion__title-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 820px) {
  .accordion__title-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 0.9375rem;
  }
}
.accordion__title-icon {
  display: inline-block;
  width: 1rem;
  height: 1.125rem;
  background-image: url(../images/icon_arrow-bottom.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2.3125rem;
}
@media screen and (max-width: 820px) {
  .accordion__title-icon {
    width: 0.75rem;
    height: 1rem;
    margin-top: 1.5rem;
  }
}

@media (any-hover: hover) {
  .accordion__title:hover {
    box-shadow: 0 1rem 1.25rem -0.5rem rgba(0, 0, 0, 0.2);
  }
}
.anchor-link__link:focus {
  box-shadow: 0 1rem 1.25rem -0.5rem rgba(0, 0, 0, 0.2);
}

.accordion__title.active .accordion__title-icon {
  transform: rotate(180deg);
}

.accordion__content {
  display: none;
}
.accordion__content-inner {
  display: flex;
  flex-direction: column;
  row-gap: 1.375rem;
  align-items: center;
  padding-top: 1.75rem;
}
@media screen and (max-width: 820px) {
  .accordion__content-inner {
    row-gap: 0.5rem;
    padding-top: 0.75rem;
  }
}
.accordion__content-text {
  line-height: 2.6;
  text-align: left;
}
@media screen and (max-width: 820px) {
  .accordion__content-text {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}
.accordion__content-desc:not(:first-child) {
  padding-top: 1.8125rem;
  padding-top: 2.625rem;
}
@media screen and (max-width: 820px) {
  .accordion__content-desc:not(:first-child) {
    padding-top: 1.25rem;
  }
}
.accordion__button {
  width: 100%;
  max-width: 16rem;
}
@media screen and (max-width: 820px) {
  .accordion__button {
    width: 100%;
    max-width: 11.375rem;
    margin-bottom: 2rem;
  }
}
.accordion .accordion__box:nth-child(2) .accordion__content-inner {
  row-gap: 4.0625rem;
}
@media screen and (max-width: 820px) {
  .accordion .accordion__box:nth-child(2) .accordion__content-inner {
    row-gap: 0.75rem;
  }
}
.accordion .accordion__box:nth-child(3) .accordion__content-inner {
  row-gap: 1.125rem;
}
@media screen and (max-width: 820px) {
  .accordion .accordion__box:nth-child(3) .accordion__content-inner {
    row-gap: 0.75rem;
  }
}
.accordion .accordion__box:nth-child(4) .accordion__content-inner {
  row-gap: 1.75rem;
}
@media screen and (max-width: 820px) {
  .accordion .accordion__box:nth-child(4) .accordion__content-inner {
    row-gap: 0.75rem;
  }
}

/* clinic_chairman
------------------------------------------ */
.chairman .container {
  padding-top: 4.0625rem;
  padding-bottom: 4.375rem;
}
@media screen and (max-width: 820px) {
  .chairman .container {
    padding-top: 2rem;
    padding-bottom: 1.6875rem;
  }
}

.chairman__lead {
  margin-top: 1.5rem;
}
@media screen and (max-width: 820px) {
  .chairman__lead {
    font-size: 0.9375rem;
    margin-top: 1rem;
    line-height: 1.85;
  }
}
.chairman__inner {
  display: flex;
  align-items: flex-start;
  column-gap: 6.875rem;
  margin-top: 2.75rem;
}
@media screen and (max-width: 820px) {
  .chairman__inner {
    flex-direction: column;
    row-gap: 1.25rem;
    margin-top: 1.25rem;
  }
}
.chairman__img-outer {
  width: 34.3333333333%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 820px) {
  .chairman__img-outer {
    width: 12.875rem;
    margin: 0 auto;
  }
}
.chairman__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chairman__career {
  width: 56.5%;
}
@media screen and (max-width: 820px) {
  .chairman__career {
    width: 100%;
  }
}
.chairman__career-list {
  margin-top: 1.5rem;
  line-height: 2.6;
}
@media screen and (max-width: 820px) {
  .chairman__career-list {
    margin-top: 1.25rem;
    line-height: 1.85;
  }
}
.chairman__career-list .itemize-lightblue:not(:first-child) {
  margin-top: 0.5rem;
}
@media screen and (max-width: 820px) {
  .chairman__career-list .itemize-lightblue:not(:first-child) {
    margin-top: 0.4375rem;
  }
}
.chairman .h4-title {
  margin-top: 2.375rem;
}
@media screen and (max-width: 820px) {
  .chairman .h4-title {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 820px) {
  .chairman .h4-title--02 {
    margin-top: 0.875rem;
  }
}
.chairman__carrer-affiliation {
  margin-top: 1.5rem;
}
@media screen and (max-width: 820px) {
  .chairman__carrer-affiliation {
    margin-top: 0.5rem;
  }
}
.chairman__career-activity-list {
  margin-top: 1.5rem;
}
@media screen and (max-width: 820px) {
  .chairman__career-activity-list {
    margin-top: 0.25rem;
  }
}
@media screen and (max-width: 820px) {
  .chairman__career-activity-item:first-child .link-small__arrow {
    position: absolute;
    bottom: 0.5rem;
    left: 8.25rem;
  }
}
.chairman__career-activity-item:last-child {
  margin-top: 1rem;
}
@media screen and (max-width: 820px) {
  .chairman__career-activity-item:last-child {
    margin-top: 0.375rem;
  }
}
@media screen and (max-width: 820px) {
  .chairman__career-activity-item:last-child .link-small__arrow {
    position: absolute;
    bottom: 0.5rem;
    left: 8.25rem;
  }
}
@media screen and (max-width: 820px) {
  .chairman__career-activity-item .link-small {
    display: inline-block;
    position: relative;
  }
}
.chairman__career-activity-item .link-small__text {
  display: block;
  line-height: 1.6;
}

.chairman__achievements {
  display: flex;
  column-gap: 4.625rem;
  margin-top: 6.875rem;
}
@media screen and (max-width: 820px) {
  .chairman__achievements {
    flex-direction: column;
    row-gap: 1.1875rem;
    margin-top: 1.4375rem;
  }
}
.chairman .bottom-title-box {
  flex: 1;
}
@media screen and (max-width: 820px) {
  .chairman .bottom-title-box {
    width: 100%;
  }
}
.chairman .bottom-title-box__text {
  margin-top: 3.25rem;
}

/* archive
------------------------------------------ */
.archive .container {
  padding-top: 2.625rem;
  padding-bottom: 4.4375rem;
}
@media screen and (max-width: 820px) {
  .archive .container {
    padding-top: 2.75rem;
    padding-bottom: 2rem;
  }
}

.archive .category-list {
  display: flex;
  column-gap: 3.6875rem;
  row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 820px) {
  .archive .category-list {
    column-gap: 1rem;
  }
}
.archive .category-list__item {
  width: calc((100% - 11.0625rem) / 4);
  min-width: 16rem;
}
@media screen and (max-width: 820px) {
  .archive .category-list__item {
    width: calc((100% - 1rem) / 2);
    min-width: 11.375rem;
  }
}
.archive .category-list__link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c_bg01);
  text-align: center;
  line-height: 1;
  height: 3.375rem;
  line-height: 3.375rem;
  border-radius: 1.6875rem;
  position: relative;
  transition: box-shadow 0.3s;
  background-color: var(--c_accent03);
}
@media screen and (max-width: 820px) {
  .archive .category-list__link {
    font-size: 0.9375rem;
    height: 2.25rem;
    line-height: 2.25rem;
    border-radius: 1.125rem;
  }
}
.archive .category-list__link--news {
  background-color: var(--c_accent03);
}
.archive .category-list__link--blog {
  background-color: var(--c_accent04);
}
@media (any-hover: hover) {
  .archive .category-list .category-list__link:hover {
    box-shadow: 0 1rem 1.25rem -0.5rem rgba(0, 0, 0, 0.2);
  }
}
.archive .category-list .category-list__link:focus {
  box-shadow: 0 1rem 1.25rem -0.5rem rgba(0, 0, 0, 0.2);
}

.archive__list {
  margin-top: 3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 820px) {
  .archive__list {
    margin-top: 1.25rem;
  }
}
.archive__link {
  display: flex;
  column-gap: 1.6875rem;
  border-bottom: 0.0625rem solid var(--c_border01);
  padding: 1.5625rem 0;
}
@media screen and (max-width: 820px) {
  .archive__link {
    flex-direction: column;
    column-gap: 0.5rem;
    padding: 0.75rem 0;
  }
}
.archive__info {
  display: flex;
  column-gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .archive__info {
    column-gap: 0.75rem;
  }
}
@media screen and (max-width: 820px) {
  .archive__date {
    font-size: 0.9375rem;
  }
}
.archive__title {
  font-size: 1rem;
  font-weight: 400;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 820px) {
  .archive__title {
    line-height: 1.6;
    font-size: 0.875rem;
    white-space: wrap;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.nav-links {
  width: 100%;
  display: flex;
  column-gap: 1.25rem;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}
@media screen and (max-width: 820px) {
  .nav-links {
    margin-top: 2rem;
  }
}

.page-numbers {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--c_accent03);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  .page-numbers {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
}
.page-numbers.prev {
  margin-right: 1rem;
}
@media screen and (max-width: 820px) {
  .page-numbers.prev {
    margin-right: 0.8125rem;
  }
}
.page-numbers.next {
  margin-left: 1rem;
}
@media screen and (max-width: 820px) {
  .page-numbers.next {
    margin-left: 0.8125rem;
  }
}
.page-numbers.current {
  color: var(--c_bg01);
  background-color: var(--c_accent03);
}

@media (any-hover: hover) {
  .page-numbers:hover {
    color: var(--c_bg01);
    background-color: var(--c_accent03);
  }
}
.page-numbers:focus {
  color: var(--c_bg01);
  background-color: var(--c_accent03);
}

/* single
------------------------------------------ */
.single .container {
  padding-top: 2.625rem;
  padding-bottom: 4.4375rem;
}
@media screen and (max-width: 820px) {
  .single .container {
    padding-top: 2.75rem;
    padding-bottom: 2rem;
  }
}

.single {
  font-family: "Noto Sans JP", sans-serif;
}
.single .article__h2-title {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--c_accent03);
}
@media screen and (max-width: 820px) {
  .single .article__h2-title {
    font-size: 1.25rem;
  }
}
.single .article__date {
  display: block;
  line-height: 1.8;
  margin-top: 1.25rem;
}
@media screen and (max-width: 820px) {
  .single .article__date {
    font-size: 0.9375rem;
    margin-top: 0.75rem;
  }
}

.single__button {
  width: 100%;
  max-width: 16rem;
  margin: 4.0625rem auto 0;
}
@media screen and (max-width: 820px) {
  .single__button {
    width: 100%;
    max-width: 11.375rem;
    margin: 3.375rem auto 0;
  }
}

.main-content {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 4.375rem;
}
@media screen and (max-width: 820px) {
  .main-content {
    margin-top: 1.25rem;
  }
}

.main-content > *:first-child {
  margin-top: 0;
}

.main-content h2 {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--c_accent03);
}
@media screen and (max-width: 820px) {
  .main-content h2 {
    font-size: 1.25rem;
  }
}
.main-content h3 {
  margin-top: 4rem;
  background-color: var(--c_bg02);
  border-left: 0.3125rem solid var(--c_accent03);
  color: var(--c_accent03);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.43;
  padding: 0.375rem 0 0.375rem 1.5rem;
}
@media screen and (max-width: 820px) {
  .main-content h3 {
    margin-top: 2rem;
    font-size: 1.125rem;
    border-left: 0.1875rem solid var(--c_accent03);
    padding: 0.4375rem 0 0.4375rem 0.75rem;
  }
}
.main-content h4 {
  margin-top: 3rem;
  color: var(--c_accent03);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.7;
  padding: 0 0 0 1.625rem;
  position: relative;
}
@media screen and (max-width: 820px) {
  .main-content h4 {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.4;
  }
}
.main-content h4::before {
  content: "";
  width: 0.6875rem;
  height: 76%;
  background-color: var(--c_accent03);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 820px) {
  .main-content h4::before {
    width: 0.375rem;
  }
}
.main-content h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c_accent03);
  line-height: 1.4;
  margin-top: 2rem;
}
@media screen and (max-width: 820px) {
  .main-content h5 {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}
.main-content p {
  margin-top: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  .main-content p {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}
.main-content .wp-block-image {
  margin-top: 1.5rem;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .main-content .wp-block-image {
    margin-top: 1.25rem;
  }
}
.main-content .wp-block-image img {
  width: 100%;
}
.main-content a {
  color: var(--c_accent03);
  text-decoration: 0.0625rem underline var(--c_accent03);
}
@media (any-hover: hover) {
  .main-content a:hover {
    color: var(--c_accent04);
    text-decoration: 0.0625rem underline var(--c_accent04);
  }
}
.main-content a:focus {
  color: var(--c_accent04);
  text-decoration: 0.0625rem underline var(--c_accent04);
}
.main-content .wp-block-buttons {
  margin-top: 1.5rem;
}
@media screen and (max-width: 820px) {
  .main-content .wp-block-buttons {
    margin-top: 1.25rem;
  }
}
.main-content .wp-block-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  height: 3.375rem;
  border-radius: 1.6875rem;
  background-color: var(--c_accent03);
  color: var(--c_bg01);
  width: 100%;
  max-width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
  text-decoration: none;
}
@media screen and (max-width: 820px) {
  .main-content .wp-block-buttons a {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    height: 2.25rem;
    border-radius: 1.125rem;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .main-content .wp-block-buttons a:hover {
    background-color: var(--c_accent04);
  }
}
.main-content .wp-block-buttons a:focus {
  background-color: var(--c_accent04);
}
.main-content ul.wp-block-list {
  margin-top: 1.5rem;
}
@media screen and (max-width: 820px) {
  .main-content ul.wp-block-list {
    margin-top: 1.25rem;
  }
}
.main-content ul.wp-block-list li {
  line-height: 1.5;
  padding-left: 1.875rem;
  position: relative;
}
.main-content ul.wp-block-list li:not(:first-child) {
  margin-top: 0.5rem;
}
@media screen and (max-width: 820px) {
  .main-content ul.wp-block-list li {
    font-size: 0.9375rem;
    padding-left: 1.4375rem;
  }
}
.main-content ul.wp-block-list li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: var(--c_accent04);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 820px) {
  .main-content ul.wp-block-list li::before {
    width: 0.9375rem;
    height: 0.9375rem;
    top: 12%;
    transform: none;
  }
}

/* _flow_fme-flow
------------------------------------------ */
.fme-flow .container {
  padding-top: 4.6875rem;
  padding-bottom: 5.9375rem;
}
@media screen and (max-width: 820px) {
  .fme-flow .container {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
}

.fme-flow__list {
  margin-top: 2.9375rem;
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}
@media screen and (max-width: 820px) {
  .fme-flow__list {
    margin-top: 1.25rem;
    row-gap: 1.5rem;
  }
}
.fme-flow__content {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  column-gap: 4.25rem;
}
@media screen and (max-width: 820px) {
  .fme-flow__content {
    flex-direction: column;
    row-gap: 0.5rem;
  }
}
.fme-flow__img-outer {
  width: 26.6666666667%;
  aspect-ratio: 320/230;
}
@media screen and (max-width: 820px) {
  .fme-flow__img-outer {
    width: 13.125rem;
  }
}
.fme-flow__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fme-flow__text {
  width: 67.6666666667%;
}
@media screen and (max-width: 820px) {
  .fme-flow__text {
    width: 100%;
  }
}

/* _flow_policy
------------------------------------------ */
.policy .container {
  padding-top: 3.875rem;
}
@media screen and (max-width: 820px) {
  .policy .container {
    padding-top: 2rem;
  }
}
.policy__box {
  background-color: var(--c_bg03);
  border-radius: 2.5rem;
  padding: 2.5rem 3.125rem 2.1875rem;
}
@media screen and (max-width: 820px) {
  .policy__box {
    border-radius: 1.25rem;
    padding: 1.5rem 1.25rem;
  }
}
.policy__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--c_accent03);
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .policy__title {
    font-size: 1.25rem;
  }
}
.policy__text-outer {
  margin-top: 1rem;
}
@media screen and (max-width: 820px) {
  .policy__text-outer {
    margin-top: 1.25rem;
  }
}
.policy__text:last-child {
  padding-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .policy__text:last-child {
    padding-top: 1.25rem;
  }
}

/* _medical_treatment-list
------------------------------------------ */
.treatment-list .container {
  padding-top: 3rem;
  padding-bottom: 5.4375rem;
}
@media screen and (max-width: 820px) {
  .treatment-list .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.treatment-list__list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
}
@media screen and (max-width: 820px) {
  .treatment-list__list {
    margin-top: 1.25rem;
    row-gap: 2.25rem;
  }
}
.treatment-list__content {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  column-gap: 3.0625rem;
}
@media screen and (max-width: 820px) {
  .treatment-list__content {
    margin-top: 1.25rem;
    flex-direction: column;
    row-gap: 1rem;
  }
}
.treatment-list__img-outer {
  width: 45.9166666667%;
  aspect-ratio: 551/309;
}
@media screen and (max-width: 820px) {
  .treatment-list__img-outer {
    width: 100%;
  }
}
.treatment-list__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.treatment-list__text {
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 1.0625rem;
}
@media screen and (max-width: 820px) {
  .treatment-list__text {
    width: 100%;
    row-gap: 0.5rem;
  }
}
.treatment-list__desc {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 820px) {
  .treatment-list__desc {
    font-size: 0.9375rem;
    line-height: 1.85;
  }
}
.treatment-list__desc:not(:first-child) {
  padding-top: 1.8125rem;
}
@media screen and (max-width: 820px) {
  .treatment-list__desc:not(:first-child) {
    padding-top: 1.25rem;
  }
}
.treatment-list__button {
  width: 100%;
  max-width: 16rem;
  margin: 3rem auto 0;
}
@media screen and (max-width: 820px) {
  .treatment-list__button {
    max-width: 11.375rem;
    margin: 1.5rem auto 0;
  }
}

.treatment-list__item:nth-child(1) .treatment-list__text {
  margin-top: 1.3125rem;
}
@media screen and (max-width: 820px) {
  .treatment-list__item:nth-child(1) .treatment-list__text {
    margin-top: 0;
  }
}
.treatment-list__item:nth-child(6) .treatment-list__text {
  margin-top: -1.8125rem;
}
@media screen and (max-width: 820px) {
  .treatment-list__item:nth-child(6) .treatment-list__text {
    margin-top: 0;
  }
}
.treatment-list__item:nth-child(9) .treatment-list__sub-title {
  padding-right: 1.375rem;
}

/* _cavity_treatment
------------------------------------------ */
.treatment .container {
  padding-top: 2.625rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .treatment .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.treatment__list {
  margin-top: 2.1875rem;
  display: flex;
  flex-direction: column;
  row-gap: 3.5rem;
}
@media screen and (max-width: 820px) {
  .treatment__list {
    row-gap: 1.5rem;
    margin-top: 1.25rem;
  }
}
.treatment__content {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  column-gap: 3.0625rem;
}
@media screen and (max-width: 820px) {
  .treatment__content {
    margin-top: 1.25rem;
    flex-direction: column;
    row-gap: 1rem;
  }
}
.treatment__img-outer {
  width: 45.9166666667%;
  aspect-ratio: 551/309;
}
@media screen and (max-width: 820px) {
  .treatment__img-outer {
    width: 100%;
    height: 100%;
  }
}
.treatment__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.treatment__text {
  width: 50%;
}
@media screen and (max-width: 820px) {
  .treatment__text {
    width: 100%;
  }
}
.treatment__desc {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 820px) {
  .treatment__desc {
    font-size: 0.9375rem;
  }
}
.treatment__desc:not(:first-child) {
  padding-top: 1.8125rem;
}
@media screen and (max-width: 820px) {
  .treatment__desc:not(:first-child) {
    padding-top: 1.25rem;
  }
}

/* _cavity_habit
------------------------------------------ */
.habit .container {
  padding-top: 5rem;
  padding-bottom: 4.25rem;
}
@media screen and (max-width: 820px) {
  .habit .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.habit__list {
  margin-top: 3.25rem;
  display: flex;
  column-gap: 4.5rem;
}
@media screen and (max-width: 820px) {
  .habit__list {
    margin-top: 1.25rem;
    flex-direction: column;
    row-gap: 1rem;
  }
}
.habit__item {
  width: 47%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--c_bg02);
  border-radius: 2.5rem;
  padding: 2.125rem 2.375rem 2.1875rem;
}
@media screen and (max-width: 820px) {
  .habit__item {
    width: 100%;
    border-radius: 1.25rem;
    padding: 1.25rem;
  }
}
.habit__img-outer {
  max-width: 6.875rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 820px) {
  .habit__img-outer {
    max-width: 5.125rem;
  }
}
.habit__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.habit__title {
  color: var(--c_accent03);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .habit__title {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-top: 1rem;
  }
}
.habit__text {
  margin-top: 1.5rem;
}
@media screen and (max-width: 820px) {
  .habit__text {
    font-size: 0.9375rem;
    margin-top: 1rem;
  }
}
.habit__desc {
  font-family: "Noto Sans JP", sans-serif;
}
.habit__desc:not(:first-child) {
  padding-top: 1.8125rem;
}
@media screen and (max-width: 820px) {
  .habit__desc:not(:first-child) {
    padding-top: 1.25rem;
  }
}

.habit__teeth-list {
  margin-top: 4rem;
}
@media screen and (max-width: 820px) {
  .habit__teeth-list {
    margin-top: 2rem;
  }
}

/* _preventive_routine-checkup
------------------------------------------ */
@media screen and (max-width: 820px) {
  .page-preventive .anchor-link__link {
    font-size: 0.8125rem;
  }
}

.routine-checkup .container {
  padding-top: 3rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .routine-checkup .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.routine-checkup__text {
  margin-top: 3.25rem;
}
@media screen and (max-width: 820px) {
  .routine-checkup__text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.85;
  }
}
.routine-checkup__desc:not(:first-child) {
  padding-top: 1.75rem;
}
@media screen and (max-width: 820px) {
  .routine-checkup__desc:not(:first-child) {
    padding-top: 1.25rem;
  }
}

.routine-checkup__list {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.4375rem;
  row-gap: 1.375rem;
}
@media screen and (max-width: 820px) {
  .routine-checkup__list {
    margin-top: 1.25rem;
    flex-direction: column;
    row-gap: 1rem;
    padding: 0 1.25rem;
  }
}
.routine-checkup__item {
  width: calc((100% - 2.875rem) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--c_bg02);
  border-radius: 2.5rem;
  padding: 0.875rem 2rem 1.3125rem;
}
@media screen and (max-width: 820px) {
  .routine-checkup__item {
    width: 100%;
    border-radius: 1.25rem;
    padding: 1.25rem;
  }
}
.routine-checkup__img-outer {
  max-width: 6.875rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 820px) {
  .routine-checkup__img-outer {
    max-width: 5.125rem;
  }
}
.routine-checkup__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.routine-checkup__title {
  color: var(--c_accent03);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .routine-checkup__title {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
.routine-checkup__list-text {
  margin-top: 1.25rem;
}
@media screen and (max-width: 820px) {
  .routine-checkup__list-text {
    font-size: 0.9375rem;
    margin-top: 1rem;
  }
}

/* _preventive_pmtc
------------------------------------------ */
.pmtc .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .pmtc .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 820px) {
  .pmtc .pmtc__img-box,
  .pmtc .pmtc__text {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
@media screen and (max-width: 820px) {
  .pmtc .h3-title {
    margin: 0 0.9375rem;
  }
}

.pmtc .h3-title {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .pmtc .h3-title {
    margin-top: 1.25rem;
  }
}
.pmtc__img-box {
  display: flex;
  margin-top: 1.5rem;
}
@media screen and (max-width: 820px) {
  .pmtc__img-box {
    flex-direction: column;
    margin-top: 1rem;
  }
}
.pmtc__img-outer {
  width: 50%;
  aspect-ratio: 600/565;
  position: relative;
}
@media screen and (max-width: 820px) {
  .pmtc__img-outer {
    width: 100%;
  }
}
.pmtc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pmtc__img-text {
  background-color: var(--c_accent03);
  color: var(--c_bg01);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.9375rem 0;
  width: 76.5%;
  position: absolute;
  bottom: 3.3628318584%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
@media screen and (max-width: 820px) {
  .pmtc__img-text {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
}
.pmtc__text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .pmtc__text {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 820px) {
  .pmtc__desc {
    font-size: 0.9375rem;
  }
}
.pmtc__desc:not(:first-child) {
  margin-top: 1.75rem;
}
@media screen and (max-width: 820px) {
  .pmtc__desc:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.pmtc__box-frame {
  margin-top: 3.6875rem;
}
.pmtc__box-frame .box-frame__text-outer {
  padding: 0 2.125rem 0 2.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 0.5rem;
}
@media screen and (max-width: 820px) {
  .pmtc__box-frame .box-frame__text-outer {
    padding: 1.6875rem 0.9375rem;
  }
}

/* _preventive_mouth
------------------------------------------ */
.mouth .container {
  max-width: none;
  padding-top: 5rem;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (max-width: 820px) {
  .mouth .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: 0;
    padding-left: 0;
  }
}

.mouth .frame-01 {
  column-gap: 4.75rem;
}
.mouth .frame-01__box01 {
  width: 44.3vw;
}
@media screen and (max-width: 820px) {
  .mouth .frame-01__box01 {
    width: 100%;
  }
}
.mouth .frame-01__box02 {
  width: 51.8vw;
  margin-top: 1.25rem;
}
@media screen and (max-width: 820px) {
  .mouth .frame-01__box02 {
    width: 100%;
  }
}
.mouth .frame-01__box02-inner {
  width: 33vw;
}
@media screen and (max-width: 820px) {
  .mouth .frame-01__box02-inner {
    width: 100%;
  }
}
.mouth .frame-01__box02-inner .section-title {
  margin-right: 5.25rem;
}
@media screen and (max-width: 820px) {
  .mouth .frame-01__box02-inner .section-title {
    margin-right: 0;
  }
}
.mouth .frame-01__text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .mouth .frame-01__text {
    margin-top: 0;
  }
}
.mouth .frame-01__button-outer {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media screen and (max-width: 820px) {
  .mouth .frame-01__button-outer {
    margin-top: 1.25rem;
    row-gap: 0.5rem;
  }
}

/* _preventive_teeth-01
------------------------------------------ */
.teeth-01 .container {
  max-width: none;
  padding-top: 5.5625rem;
  padding-bottom: 5rem;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (max-width: 820px) {
  .teeth-01 .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: 0;
    padding-left: 0;
  }
}

.teeth-01 .frame-01 {
  flex-direction: row-reverse;
  column-gap: 4.75rem;
}
@media screen and (max-width: 820px) {
  .teeth-01 .frame-01 {
    flex-direction: column;
  }
}
.teeth-01 .frame-01__img-outer {
  border-radius: 28.1875rem 0 0 28.1875rem;
  margin-left: auto;
}
@media screen and (max-width: 820px) {
  .teeth-01 .frame-01__img-outer {
    margin-left: 0;
  }
}
.teeth-01 .frame-01__box01 {
  width: 44.3vw;
}
@media screen and (max-width: 820px) {
  .teeth-01 .frame-01__box01 {
    width: 100%;
    padding-right: 0;
    padding-left: 0.9375rem;
  }
}
.teeth-01 .frame-01__box02 {
  width: 51.8vw;
  margin-top: 3.5625rem;
}
@media screen and (max-width: 820px) {
  .teeth-01 .frame-01__box02 {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.teeth-01 .frame-01__box02-inner {
  width: 33vw;
  margin-left: auto;
}
@media screen and (max-width: 820px) {
  .teeth-01 .frame-01__box02-inner {
    width: 100%;
    margin-left: 0;
  }
}
.teeth-01 .frame-01__box02-inner .section-title {
  margin-right: 5.25rem;
}
@media screen and (max-width: 820px) {
  .teeth-01 .frame-01__box02-inner .section-title {
    margin-right: 0;
  }
}
.teeth-01 .frame-01__text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .teeth-01 .frame-01__text {
    margin-top: 0;
  }
}
.teeth-01 .frame-01__desc:not(:first-child) {
  padding-top: 1.75rem;
}
@media screen and (max-width: 820px) {
  .teeth-01 .frame-01__desc:not(:first-child) {
    padding-top: 1.25rem;
  }
}
.teeth-01 .frame-01__button-outer {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .teeth-01 .frame-01__button-outer {
    margin-top: 1.25rem;
  }
}

/* _preventive_aftercare-01
------------------------------------------ */
.aftercare-01 .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .aftercare-01 .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* _pediatric_present
------------------------------------------ */
.present .container {
  padding-top: 2.625rem;
}
@media screen and (max-width: 820px) {
  .present .container {
    padding-top: 2rem;
    padding-right: 0;
    padding-left: 0;
  }
}

.present .box-frame__text-outer {
  padding-bottom: 1rem;
}
@media screen and (max-width: 820px) {
  .present .box-frame__text-outer {
    padding: 1.6875rem 0.9375rem;
  }
}

/* _pediatric_cavity
------------------------------------------ */
.cavity .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .cavity .container {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
}

.cavity__img01-outer {
  margin-top: 3.25rem;
  width: 100%;
  aspect-ratio: 1200/889;
}
@media screen and (max-width: 820px) {
  .cavity__img01-outer {
    margin-top: 1.25rem;
  }
}
.cavity__img01, .cavity__img02 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cavity__img01-note {
  margin-top: 0.5rem;
}
@media screen and (max-width: 820px) {
  .cavity__img01-note {
    font-size: 0.9375rem;
  }
}
.cavity__text01 {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 820px) {
  .cavity__text01 {
    margin-top: 1.25rem;
  }
}
.cavity__desc01:not(:first-child), .cavity__desc02:not(:first-child) {
  padding-top: 1.8125rem;
}
@media screen and (max-width: 820px) {
  .cavity__desc01:not(:first-child), .cavity__desc02:not(:first-child) {
    padding-top: 1.25rem;
  }
}
.cavity__img02-outer {
  margin-top: 2.5rem;
  width: 100%;
  aspect-ratio: 1200/565;
}
@media screen and (max-width: 820px) {
  .cavity__img02-outer {
    margin-top: 1.25rem;
  }
}
.cavity__text02 {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .cavity__text02 {
    margin-top: 1.25rem;
  }
}

.cavity__teeth-list {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .cavity__teeth-list {
    margin-top: 2rem;
  }
}
.cavity__button {
  margin: 3.25rem auto 0;
}
@media screen and (max-width: 820px) {
  .cavity__button {
    margin: 1.25rem auto 0;
  }
}

/* _pediatric_orthodontics
------------------------------------------ */
.orthodontics .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .orthodontics .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.orthodontics__text {
  margin-top: 3rem;
}
@media screen and (max-width: 820px) {
  .orthodontics__text {
    margin-top: 1.25rem;
  }
}
.orthodontics__button {
  width: 16rem;
  margin: 2rem auto 0;
}
@media screen and (max-width: 820px) {
  .orthodontics__button {
    width: 11.375rem;
    margin: 1.25rem auto 0;
  }
}

/* _aesthetic_whitening
------------------------------------------ */
.whitening .container {
  padding-top: 2.625rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .whitening .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* _aesthetic_survey-result
------------------------------------------ */
.survey-result .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .survey-result .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.survey-result .h3-title {
  margin-top: 2.75rem;
}
@media screen and (max-width: 820px) {
  .survey-result .h3-title {
    margin-top: 1.25rem;
  }
}
.survey-result__text {
  margin-top: 2rem;
}
@media screen and (max-width: 820px) {
  .survey-result__text {
    margin-top: 1.25rem;
  }
}
.survey-result__desc:not(:first-child) {
  padding-top: 1.8125rem;
}
@media screen and (max-width: 820px) {
  .survey-result__desc:not(:first-child) {
    padding-top: 1.25rem;
  }
}
.survey-result__img-box {
  margin-top: 1.75rem;
}
@media screen and (max-width: 820px) {
  .survey-result__img-box {
    margin-top: 1.25rem;
  }
}
.survey-result__img-outer {
  width: 100%;
}
.survey-result__img-outer:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .survey-result__img-outer:not(:first-child) {
    margin-top: 1.25rem;
  }
}
.survey-result__img {
  width: 100%;
}

/* _orthodontics_counseling
------------------------------------------ */
.counseling .container {
  padding-top: 2.625rem;
  padding-bottom: 5rem;
}

/* _implant_pros-and-cons
------------------------------------------ */
.pros-and-cons .container {
  padding-top: 2.625rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .pros-and-cons .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.pros-and-cons__pros-title {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .pros-and-cons__pros-title {
    margin-top: 1.25rem;
  }
}
.pros-and-cons__cons-title {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .pros-and-cons__cons-title {
    margin-top: 2rem;
  }
}
.pros-and-cons__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
@media screen and (max-width: 820px) {
  .pros-and-cons__list {
    margin-top: 1.25rem;
  }
}
.pros-and-cons__text {
  margin-top: 1.125rem;
}
@media screen and (max-width: 820px) {
  .pros-and-cons__text {
    row-gap: 1.25rem;
    font-size: 0.9375rem;
  }
}

/* _implant_aftercare-02
------------------------------------------ */
.aftercare-02 .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .aftercare-02 .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* _dentures_worry
------------------------------------------ */
.page-dentures .anchor-link__list {
  justify-content: center;
}
@media screen and (max-width: 820px) {
  .page-dentures .anchor-link__list {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 820px) {
  .worry .container {
    padding-right: 0;
    padding-left: 0;
  }
}
.worry .box-frame {
  margin-top: 3rem;
}
@media screen and (max-width: 820px) {
  .worry .box-frame {
    margin-top: 2rem;
  }
}
.worry .box-frame__text-outer {
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 820px) {
  .worry .box-frame__text-outer {
    padding: 1.6875rem 0.9375rem;
  }
}

/* _dentures_not-covered
------------------------------------------ */
.not-covered .container {
  padding-top: 5rem;
  padding-bottom: 6.8125rem;
}
@media screen and (max-width: 820px) {
  .not-covered .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.not-covered .h3-title {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .not-covered .h3-title {
    margin-top: 1.25rem;
  }
}
.not-covered__list {
  margin-top: 2.0625rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.3125rem;
}
@media screen and (max-width: 820px) {
  .not-covered__list {
    margin-top: 1.25rem;
  }
}
.not-covered__text {
  margin-top: 1.125rem;
}
@media screen and (max-width: 820px) {
  .not-covered__text {
    margin-top: 1rem;
  }
}

/* _dentures_planning
------------------------------------------ */
.planning .container {
  padding-top: 3.1875rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .planning .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.planning__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.6875rem;
  margin-top: 2.5625rem;
}
@media screen and (max-width: 820px) {
  .planning__list {
    row-gap: 2rem;
    margin-top: 1.25rem;
  }
}
.planning__text {
  margin-top: 2rem;
}
@media screen and (max-width: 820px) {
  .planning__text {
    margin-top: 1.25rem;
  }
}
.planning__desc:not(:first-child) {
  padding-top: 1.8125rem;
}
@media screen and (max-width: 820px) {
  .planning__desc:not(:first-child) {
    padding-top: 1.25rem;
  }
}

.planning__button {
  margin-top: 2rem;
}
@media screen and (max-width: 820px) {
  .planning__button {
    margin-top: 1.25rem;
  }
}

/* _dentures_teeth-02
------------------------------------------ */
.teeth-02 .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .teeth-02 .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* house-call
------------------------------------------ */
.house-call .container {
  padding-top: 2.625rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .house-call .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.house-call__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}
@media screen and (max-width: 820px) {
  .house-call__list {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.house-call__list-item {
  width: 50%;
}
@media screen and (max-width: 820px) {
  .house-call__list-item {
    width: 100%;
  }
}

.house-call .frame-03__desc:not(:first-child) {
  padding-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .house-call .frame-03__desc:not(:first-child) {
    padding-top: 1.25rem;
  }
}

/* .tooth-injury_how-to
------------------------------------------ */
.how-to .container {
  padding-top: 2.625rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .how-to .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.how-to__img-outer {
  margin-top: 2.5rem;
  width: 100%;
  aspect-ratio: 1200/565;
}
@media screen and (max-width: 820px) {
  .how-to__img-outer {
    margin-top: 1.25rem;
  }
}
.how-to__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-to .h3-title {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .how-to .h3-title {
    margin-top: 1.25rem;
  }
}
.how-to__text {
  margin-top: 2rem;
}
@media screen and (max-width: 820px) {
  .how-to__text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.85;
  }
}
.how-to .number-list {
  margin-top: 1.75rem;
}
@media screen and (max-width: 820px) {
  .how-to .number-list {
    margin-top: 1.25rem;
  }
}
.how-to__button {
  margin-top: 2.3125rem;
}
@media screen and (max-width: 820px) {
  .how-to__button {
    margin-top: 1.25rem;
  }
}

/* _tooth-injury_night-guard
------------------------------------------ */
.night-guard .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .night-guard .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 820px) {
  .night-guard__text, .night-guard__img-outer {
    margin-right: 0.9375rem;
    margin-left: 0.9375rem;
  }
}
@media screen and (max-width: 820px) {
  .night-guard .h3-title,
  .night-guard .h4-title {
    margin-right: 0.9375rem;
    margin-left: 0.9375rem;
  }
}

.night-guard__inner {
  margin-top: 2.5625rem;
}
@media screen and (max-width: 820px) {
  .night-guard__inner {
    margin-top: 1.25rem;
  }
}
.night-guard__inner .box-frame__text-outer {
  padding-bottom: 1.125rem;
}
@media screen and (max-width: 820px) {
  .night-guard__inner .box-frame__text-outer {
    padding: 1.6875rem 0.9375rem;
  }
}
.night-guard__inner .box-frame:last-child {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .night-guard__inner .box-frame:last-child {
    margin-top: 1.25rem;
  }
}

.night-guard .h3-title {
  margin-top: 3.5rem;
}
@media screen and (max-width: 820px) {
  .night-guard .h3-title {
    margin-top: 2rem;
  }
}
.night-guard__text {
  margin-top: 1.5rem;
}
@media screen and (max-width: 820px) {
  .night-guard__text {
    margin-top: 1.25rem;
  }
}
.night-guard .h4-title {
  margin-top: 1.75rem;
}
@media screen and (max-width: 820px) {
  .night-guard .h4-title {
    margin-top: 1.5rem;
  }
}
.night-guard__img-outer {
  margin-top: 1.5rem;
  width: 100%;
  aspect-ratio: 1200/432;
}
@media screen and (max-width: 820px) {
  .night-guard__img-outer {
    margin-top: 1.25rem;
    width: auto;
  }
}
.night-guard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* _guide_facility
------------------------------------------ */
.facility .container {
  padding-top: 2.625rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .facility .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.facility__text {
  margin-top: 2.25rem;
}
@media screen and (max-width: 820px) {
  .facility__text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
  }
}
.facility .h3-title {
  margin-top: 3.6875rem;
}
@media screen and (max-width: 820px) {
  .facility .h3-title {
    margin-top: 2rem;
  }
}
.facility .h3-title:nth-of-type(2) {
  margin-top: 5rem;
}
@media screen and (max-width: 820px) {
  .facility .h3-title:nth-of-type(2) {
    margin-top: 3rem;
  }
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.875rem;
  row-gap: 2.25rem;
  margin-top: 2.0625rem;
}
@media screen and (max-width: 820px) {
  .guide-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 1.25rem;
    margin-top: 1.25rem;
  }
}
.guide-list .bottom-title-box__img-outer {
  aspect-ratio: 380/285;
}
@media screen and (max-width: 820px) {
  .guide-list .bottom-title-box__title {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 820px) {
  .guide-list .bottom-title-box__title--small01 {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 820px) {
  .guide-list .bottom-title-box__title--small02 {
    font-size: 0.6875rem;
  }
}
.guide-list .bottom-title-box__text {
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  .guide-list .bottom-title-box__text {
    line-height: 1.85;
    font-size: 0.875rem;
  }
}

/* _guide_equipment
------------------------------------------ */
.equipment .container {
  padding-top: 5rem;
  padding-bottom: 6.0625rem;
}
@media screen and (max-width: 820px) {
  .equipment .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* error404
------------------------------------------ */
.error404 .container {
  padding-top: 2.625rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .error404 .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 820px) {
  .error404__text {
    font-size: 0.9375rem;
  }
}
.error404__button {
  width: 100%;
  max-width: 16rem;
  margin: 2.625rem auto 0;
}
@media screen and (max-width: 820px) {
  .error404__button {
    max-width: 11.375rem;
    margin: 1.25rem auto 0;
  }
}/*# sourceMappingURL=style.css.map */


/*2025/07/31 追加 */
.table-hours-note-top {
  font-size: 1.5rem;
  padding: 20px 40px;
  max-width: 1000px;
  margin: 40px auto 20px;
  background-color: var(--c_bg05);
  text-align: center;
}

@media screen and (max-width: 820px) {
  .table-hours-note-top {
    width: 23.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    padding: 0.625rem;
    row-gap: 0.25rem;
  }
}
