@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #60574b;
  background-color: #f8f6ea;
  font-weight: 500;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2698412698vw;
  }
}
@media (min-width: 1260px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
img {
  max-width: 100%;
  display: block;
  width: 100%;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.05" /><feFuncG type="linear" slope="1.05" /><feFuncB type="linear" slope="1.05" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.blog-list__item + .blog-list__item {
  margin-top: 41px;
  margin-top: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .blog-list__item + .blog-list__item {
    margin-top: 1.875rem;
  }
}

.blog-list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .blog-list__item a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.blog-list__item-img {
  max-width: 240px;
  max-width: 15rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .blog-list__item-img {
    border-radius: 1.25rem;
    max-width: 14.5rem;
  }
}

.blog-list__item-img img {
  width: 100%;
  aspect-ratio: 195/110;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .blog-list__item-img img {
    border-radius: 1.25rem;
    aspect-ratio: 195/121;
  }
}

.blog-list__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 93%;
}
@media screen and (min-width: 768px) {
  .blog-list__item-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: 3.1875rem;
    gap: 5%;
    width: 67%;
  }
}

.blog-list__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5%;
  margin-top: 10px;
  margin-top: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .blog-list__item-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    width: 24%;
    margin-top: 0;
    gap: 0;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.blog-list__item-date {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  display: block;
  letter-spacing: 0;
  color: #dc890f;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .blog-list__item-date {
    margin-top: 0.625rem;
    letter-spacing: 0.17em;
    font-size: 1rem;
  }
}

.blog-list__item-category {
  padding: 6px;
  padding: 0.375rem;
  min-width: 97px;
  min-width: 6.0625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  background-color: #60574b;
  text-align: center;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .blog-list__item-category {
    min-width: 6.6875rem;
  }
}

.blog-list__item-title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 13px;
  margin-top: 0.8125rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .blog-list__item-title {
    width: 75%;
    margin-top: 0;
    font-size: 1rem;
  }
}

.breadcrumbs {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

.common__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .common__link {
    width: 100%;
    margin-inline: initial;
  }
}

.common__link span {
  width: 30%;
}
@media screen and (min-width: 768px) {
  .common__link span {
    width: auto;
  }
}

.common__link svg {
  width: 91%;
}
@media screen and (min-width: 768px) {
  .common__link svg {
    width: 13%;
  }
}

.common__link svg .cls-1 {
  fill: none;
}

.common__link:hover svg .cls-1 {
  fill: #fff;
}

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

.drawer {
  cursor: pointer;
}

.drawer__icon {
  display: block;
  position: fixed;
  top: 30px;
  right: 27px;
  width: 25px;
  width: 1.5625rem;
  height: 2px;
  height: 0.125rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  z-index: 1000;
}
@media screen and (min-width: 1366px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon.is-open {
  z-index: 900;
}
.drawer__icon.is-open .drawer__icon-bar1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
  top: 0.4375rem;
}
.drawer__icon.is-open .drawer__icon-bar2 {
  display: none;
}
.drawer__icon.is-open .drawer__icon-bar3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 7px;
  top: 0.4375rem;
}

.drawer__icon-bars {
  position: relative;
  width: 32px;
  height: 21px;
}

.drawer__icon-bar1,
.drawer__icon-bar2,
.drawer__icon-bar3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #dc890f;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer__icon-bar1 {
  top: 0;
  border-radius: 0.9375rem;
}

.drawer__icon-bar2 {
  top: 9px;
  border-radius: 0.9375rem;
  width: 100%;
}

.drawer__icon-bar3 {
  top: 18px;
  border-radius: 0.9375rem;
  width: 100%;
}

.drawer__content {
  overflow: scroll;
  position: fixed;
  background-color: #f8f6ea;
  padding-left: 13px;
  padding-right: 13px;
  padding-bottom: 100px;
  top: 73px;
  right: 0;
  height: 100%;
  width: 300px;
  width: 18.75rem;
  z-index: 800;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  width: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
@media screen and (min-width: 1366px) {
  .drawer__content {
    display: none;
  }
}

.drawer__content.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  display: block;
}

.drawer__content-items {
  line-height: 1.57;
  position: relative;
  list-style: none;
}

.drawer__content-item {
  position: relative;
  text-align: left;
}

.drawer__modal-content {
  display: none;
}

.drawer__modal-item a {
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 50px;
  padding-left: 3.125rem;
  background-color: #fff;
}

.drawer__content-item .orange-dot {
  position: relative;
}

.drawer__content-item .orange-dot::after {
  content: "";
  position: absolute;
  right: 21px;
  right: 1.3125rem;
  top: 63%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #dc890f;
  height: 8px;
  height: 0.5rem;
  width: 8px;
  width: 0.5rem;
  border-radius: 50%;
}

.drawer__content-item a {
  position: relative;
  display: block;
  border-bottom: 1px solid;
}

.drawer__content-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
}

.drawer__content-item a {
  display: block;
  padding: 15px 34px;
}

.drawer__content-info {
  margin-top: 9px;
  margin-top: 0.5625rem;
}

.drawer__content-tel {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.drawer__content-hours {
  font-size: 14px;
  font-size: 0.875rem;
}

.drawer__contact {
  color: #dc890f;
  letter-spacing: 0.12em;
  margin-top: 27px;
}

.drawer__contact .common__link {
  gap: 14%;
}
@media screen and (max-width: 520px) {
  .drawer__contact .common__link {
    width: 100%;
    gap: 6%;
  }
}
@media screen and (min-width: 768px) {
  .drawer__contact .common__link {
    gap: 3%;
    width: auto;
  }
}

.drawer__contact .common__link svg {
  width: 27%;
}
@media screen and (max-width: 520px) {
  .drawer__contact .common__link svg {
    width: 12%;
  }
}
@media screen and (min-width: 768px) {
  .drawer__contact .common__link svg {
    width: 5%;
  }
}

.drawer__content-top {
  margin-top: 32px;
  margin-top: 2rem;
}

.drawer__content-bottom {
  margin-top: 16px;
  margin-top: 1rem;
}

.drawer__content-hours span.small {
  font-size: 10.8px;
  font-size: 0.675rem;
}

.fix-menu {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  background-color: #60574b;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 768px) {
  .fix-menu {
    display: none;
  }
}

.fix-menu.fix-fadein {
  opacity: 1;
  visibility: visible;
}

.fix-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
}
.fix-menu__list a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fix-menu__list:not(:first-child) {
  border-left: 2px solid #fff;
}

.fix-menu__list-img {
  width: 15%;
}
@media screen and (max-width: 520px) {
  .fix-menu__list-img {
    width: 20%;
  }
}

.fix-menu__list-title {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.38;
}

.footer {
  background-color: #60574b;
  color: #fff;
  position: relative;
  z-index: 10;
}

.footer__inner.inner {
  padding-top: 11px;
  padding-top: 0.6875rem;
  padding-right: 9px;
  padding-right: 0.5625rem;
  padding-left: 9px;
  padding-left: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .footer__inner.inner {
    padding-top: 5.3125rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5%;
  -ms-flex-flow: column;
      flex-flow: column;
}
@media screen and (min-width: 768px) {
  .footer__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-flow: column;
        flex-flow: column;
  }
}

.footer__info {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .footer__info {
    margin-top: 1.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__table {
  display: table;
  border-collapse: collapse;
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
  table-layout: fixed;
}
@media screen and (min-width: 768px) {
  .footer__table {
    font-size: 1rem;
    width: auto;
  }
}

.footer__table th {
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .footer__table th:nth-of-type(2) {
    padding-left: 0.875rem;
  }
}

.footer__table th:first-child,
.footer__table td:first-child {
  border-right: 2px dotted #ccc;
  /* 受付時間の右側にドット線 */
  padding-left: 4px;
  padding-left: 0.25rem;
  letter-spacing: 0;
  text-align: left;
  width: 98px;
  width: 6.125rem;
}
@media screen and (min-width: 768px) {
  .footer__table th:first-child,
  .footer__table td:first-child {
    padding-right: 1.125rem;
    padding-left: 1.4375rem;
    text-align: center;
    width: auto;
    letter-spacing: 0.12em;
  }
}

.footer__table td {
  text-align: center;
}

.footer__table tr:not(:last-child),
.footer__table th {
  border-bottom: 1px solid;
}

.footer__table td {
  padding: 12px 0;
  padding: 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .footer__table td {
    padding: 0.625rem 0.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__table td:nth-of-type(2) {
    padding-left: 1.625rem;
  }
}

.footer__table-hour {
  color: #dc890f;
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
}

.footer__info-right {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__info-right {
    margin-top: 0rem;
  }
}

.footer__contact {
  margin-top: 59px;
  margin-top: 3.6875rem;
  padding-left: 13px;
  padding-left: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .footer__contact {
    margin-top: 4.5rem;
    padding-left: 0;
  }
}

.footer__contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__contact-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1366px) {
  .footer__contact-info {
    gap: 8%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__tel {
  color: #dc890f;
  font-size: 35px;
  font-size: 2.1875rem;
  font-family: "Roboto", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.12em;
  width: 100%;
  font-weight: 400;
  gap: 2%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__tel {
    width: 50%;
    letter-spacing: 0.09em;
    font-size: 1.875rem;
    gap: 0;
    justify-self: unset;
  }
}
@media screen and (min-width: 1366px) {
  .footer__tel {
    font-size: 2.5rem;
  }
}

.footer__tel-icon {
  width: 7%;
}
@media screen and (max-width: 520px) {
  .footer__tel-icon {
    width: 6%;
  }
}
@media screen and (min-width: 768px) {
  .footer__tel-icon {
    width: 6%;
  }
}

p.footer__info-title {
  font-size: 19px;
  padding-bottom: 12px;
}

.footer__hours-wrap {
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__hours-wrap {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 2rem;
  }
}

.footer__hours {
  line-height: 1.7;
  margin-top: 11px;
  margin-top: 0.6875rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .footer__hours {
    margin-top: 0;
    text-align: left;
    text-align: initial;
    letter-spacing: 0.06em;
  }
}

@media screen and (max-width: 520px) {
  .footer__hours span {
    padding-left: 0.9375rem;
    letter-spacing: 0;
  }
}

.footer__hours + .footer__hours span {
  letter-spacing: -0.08em;
}
@media screen and (max-width: 520px) {
  .footer__hours + .footer__hours span {
    padding-left: 0.4375rem;
  }
}

.footer__hours + .footer__hours {
  letter-spacing: 0.3em;
}
@media screen and (max-width: 520px) {
  .footer__hours + .footer__hours {
    margin-top: 0;
    letter-spacing: 0.24em;
  }
}

.footer__contact-bottom {
  margin-top: 8px;
  margin-top: 0.5rem;
  max-width: 576px;
  max-width: 36rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__contact-bottom {
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-inline: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 36rem;
    width: 100%;
  }
}

.footer__btn {
  font-size: 22px;
  font-size: 1.375rem;
  display: block;
  width: inherit;
  text-align: center;
  background-color: #fff;
  color: #60574b;
  border-radius: 2.875rem;
  padding: 15px 0;
  padding: 0.9375rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6%;
  letter-spacing: 0.14em;
  padding-left: 51px;
  padding-left: 3.1875rem;
  border: 1px solid #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  .footer__btn {
    padding: 1.5rem 0;
    gap: 3%;
  }
}

.footer__btn svg {
  width: 7.5%;
}
@media screen and (max-width: 520px) {
  .footer__btn svg {
    width: 13.5%;
  }
}
@media screen and (min-width: 768px) {
  .footer__btn svg {
    width: 6%;
  }
}

.footer__btn:hover {
  background-color: #60574b;
  color: #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.footer__btn:hover svg {
  fill: #fff;
  stroke: #60574b;
}

.footer__map-wrap {
  margin-top: 41px;
  margin-top: 2.5625rem;
  height: 300px;
  height: 18.75rem;
}
@media screen and (min-width: 768px) {
  .footer__map-wrap {
    margin-top: 5.375rem;
    height: auto;
  }
}

.footer__map {
  height: inherit;
}
@media screen and (min-width: 768px) {
  .footer__map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 34.5%;
  }
}

.footer__map iframe {
  width: 100%;
  border-radius: 0.5625rem;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .footer__map iframe {
    border-radius: 1.375rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.footer__lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9%;
  margin-top: 50px;
  margin-top: 3.125rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  width: 86%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__lower {
    padding-bottom: 7.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 5.6875rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    width: 100%;
  }
}

.footer__lower-left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__lower-left {
    width: 43%;
  }
}

.footer__clinic-info {
  margin-top: 37px;
  margin-top: 2.3125rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .footer__clinic-info {
    margin-top: 1.5625rem;
    font-size: 1rem;
    margin-inline: initial;
  }
}

.footer__logo {
  width: 103%;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 78%;
  }
}

.footer__clinic-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.1em;
}

.footer__clinic-details + .footer__clinic-details {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .footer__clinic-details + .footer__clinic-details {
    margin-top: 0.875rem;
  }
}

.footer__banner {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.footer__clinic-term {
  max-width: 114px;
  max-width: 7.125rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .footer__clinic-term {
    max-width: 7.75rem;
  }
}

@media screen and (max-width: 520px) {
  .footer__clinic-desc {
    line-height: 1.9;
  }
}

.footer__menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15%;
  margin-top: 52px;
  margin-top: 3.25rem;
  letter-spacing: 0.09em;
}
@media screen and (min-width: 768px) {
  .footer__menu {
    width: 65%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 1.5rem;
  }
}

.footer__menu li:not(:first-child) {
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.footer__menu-list li:first-child a {
  font-weight: 600;
}

.footer__menu-list p {
  font-weight: 600;
}

.footer__menu-list li a {
  font-weight: 400;
}

.footer__menu-list--middle,
.footer__menu-list--right {
  margin-top: 62px;
  margin-top: 3.875rem;
}
@media screen and (min-width: 768px) {
  .footer__menu-list--middle,
  .footer__menu-list--right {
    margin-top: 0;
  }
}

.footer__menu-list--middle li:not(:first-child),
.footer__menu-list--right li:not(:first-child) {
  padding-left: 1.4em;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .footer__menu-list--middle li:not(:first-child),
  .footer__menu-list--right li:not(:first-child) {
    padding-left: 1em;
  }
}

.footer__menu-list--middle li:not(:first-child)::after,
.footer__menu-list--right li:not(:first-child)::after {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #dc890f;
  height: 2px;
  width: 10px;
  width: 0.625rem;
}

.footer__bottom {
  margin-top: 19px;
  margin-top: 1.1875rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 92%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 1.875rem;
    width: 100%;
  }
}

.footer__copy {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 21px;
  margin-top: 1.3125rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1px;
            order: 1px;
    margin-top: 0;
  }
}

.footer__copy span {
  display: block;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .footer__copy span {
    display: inline;
    display: initial;
    margin-top: 0;
  }
}

.footer__bottom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 768px) {
  .footer__bottom-nav {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: auto;
  }
}

.footer__bottom-nav a {
  padding-right: 20px;
  padding-right: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .footer__bottom-nav a {
    font-size: 1rem;
  }
}

.header {
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  width: 100%;
  max-width: 100%;
  z-index: 900;
  background-color: #f8f6ea;
  border-radius: 1.25rem;
}
@media screen and (min-width: 1366px) {
  .header {
    top: 18px;
  }
}

.active__header {
  background: #60574b;
  -webkit-transition: background 0.7s ease;
  transition: background 0.7s ease;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  gap: 3%;
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
  padding: 10px;
}
@media screen and (min-width: 1366px) {
  .header__inner {
    padding-left: 3.9375rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    max-width: 1417px;
    margin-inline: auto;
    padding-left: 3.75rem;
  }
}

.header__logo a {
  width: 70px;
  width: 4.375rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 270px;
  width: 16.875rem;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    width: 20.75rem;
  }
}

.header__nav-wrap {
  display: none;
}
@media screen and (min-width: 1366px) {
  .header__nav-wrap {
    display: block;
    padding-top: 0.375rem;
  }
}

.header__nav-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.header__info-time-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.header__info-time:nth-of-type(2) {
  margin-top: 16px;
  margin-top: 1rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}

.header__info-tel {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .header__info-tel {
    letter-spacing: 0.09em;
  }
}

.header__info-tel::before {
  content: "";
  position: absolute;
  left: -23px;
  left: -1.4375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/icon_tel.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  height: 1.25rem;
  width: 20px;
  width: 1.25rem;
}

.header__info-time {
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: 20px;
  margin-left: 1.25rem;
  font-weight: 500;
}

.header__nav-list {
  display: none;
  height: inherit;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__nav {
  height: inherit;
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 1366px) {
  .header__nav {
    margin-left: 2.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .header__nav {
    margin-left: 2.9375rem;
  }
}
.header__nav-item {
  height: inherit;
  cursor: pointer;
}

.header__nav-link.current {
  color: #dc890f;
}

.header__nav-item.orange-dot {
  position: relative;
}

.header__nav-item.orange-dot::after {
  content: "";
  position: absolute;
  right: 15px;
  right: 0.9375rem;
  top: 63%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #dc890f;
  height: 8px;
  height: 0.5rem;
  width: 8px;
  width: 0.5rem;
  border-radius: 50%;
}

.header__nav-item a {
  position: relative;
  padding: 0 27px;
  padding: 0 1.6875rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.header__nav-item:last-child a {
  padding-right: 0;
}

.header__nav-item.header__nav-item--white a {
  overflow: hidden;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  color: #60574b;
  background: #fff;
  z-index: 1;
  width: 100%;
  position: relative;
}
.header__nav-item.header__nav-item--white a :before,
.header__nav-item.header__nav-item--white a :after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: -1;
}
.header__nav-item.header__nav-item--white a:before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  right: -3.125rem;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  border-right: 50px solid transparent;
  border-bottom: 60px solid #60574b;
  border-bottom: 3.75rem solid #60574b;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.header__nav-item.header__nav-item--white a:hover {
  color: #fff;
  background: #333;
  -webkit-transition: 0.7s all;
  transition: 0.7s all;
}
.header__nav-item.header__nav-item--white a:hover:before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: -10;
}

.header.small-header {
  background-color: rgba(248, 246, 234, .8);
}

.header.small-header .header__logo a {
  width: 268px;
  width: 16.75rem;
}

.header.small-header .header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inner {
  width: 100%;
  padding-right: 13px;
  padding-left: 13px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1310px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.layout-news {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .layout-news {
    margin-top: 1.8125rem;
  }
}

.layout-about {
  margin-top: 164px;
  margin-top: 10.25rem;
}
@media screen and (min-width: 768px) {
  .layout-about {
    margin-top: 7.125rem;
  }
}

.layout-doctors {
  margin-top: 71px;
  margin-top: 4.4375rem;
}
@media screen and (min-width: 768px) {
  .layout-doctors {
    margin-top: 7.0625rem;
  }
}

.layout-medical {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .layout-medical {
    margin-top: 9.75rem;
  }
}

.layout-blog {
  margin-top: 66px;
  margin-top: 4.125rem;
}
@media screen and (min-width: 768px) {
  .layout-blog {
    margin-top: 6.375rem;
  }
}

.layout-facility {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .layout-facility {
    margin-top: 9.875rem;
  }
}

.layout-recruit {
  margin-top: 186px;
  margin-top: 11.625rem;
}
@media screen and (min-width: 768px) {
  .layout-recruit {
    margin-top: 12.125rem;
  }
}

.main-heading {
  font-size: clamp(24px, 20.116px + 1.0355987055vw, 40px);
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  position: relative;
  padding-left: 1em;
}

.main-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/logo_title.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  height: 1.25rem;
  width: 20px;
  width: 1.25rem;
}

.dm__treat-img {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .dm__treat-img {
    width: 70%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .dm__treat-img img {
    aspect-ratio: 3/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.dm__diabetes-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .dm__diabetes-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .dm__diabetes-item:not(:first-child) {
    margin-top: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .dm__diabetes-item.end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 768px) {
  .dm__diabetes-item-content {
    width: 80%;
  }
}

.dm__diabetes-item-img {
  margin-top: 16px;
  margin-top: 1rem;
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .dm__diabetes-item-img {
    width: 17%;
    margin-top: 0;
    margin-inline: 0;
  }
}
.dm__diabetes-item-img img {
  aspect-ratio: 3/2;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .dm__diabetes-item-img img {
    aspect-ratio: auto;
  }
}

@media screen and (min-width: 768px) {
  .dm__add-wrap.between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.dm__add-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 32px;
  gap: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .dm__add-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .dm__add-wrap.second {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .dm__add-wrap.second .heading-secondary {
    margin-top: 0;
  }
}

.dm__add-meal-img {
  width: 82%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .dm__add-meal-img {
    width: 29%;
  }
}

.dm__add-wrap-img {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .dm__add-wrap-img {
    width: 75%;
    margin-inline: 0;
  }
}

.second .dm__add-wrap-img {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .second .dm__add-wrap-img {
    width: 30%;
    margin-inline: 0;
  }
}

.heading-secondary {
  position: relative;
  font-size: clamp(20px, 18.058px + 0.5177993528vw, 28px);
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  padding-left: 1em;
}

.heading-secondary span {
  display: block;
  padding-left: 1em;
  color: #dc890f;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .heading-secondary span {
    font-size: 1.125rem;
    padding-left: 0;
  }
}

.heading-secondary span::first-letter {
  text-transform: uppercase;
}

.heading-secondary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #dc890f;
  height: 100%;
  width: 2px;
}

.sub-heading {
  font-size: clamp(18px, 17.029px + 0.2588996764vw, 22px);
  font-size: clamp(1.125rem, 1.0643203883rem + 0.2588996764vw, 1.375rem);
  position: relative;
  color: #dc890f;
  padding-left: 1.5em;
}
.sub-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/logo_title.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  height: 1.25rem;
  width: 20px;
  width: 1.25rem;
}

.sub-heading.add-image {
  position: relative;
}

.sub-heading.add-image.kidney::after {
  background-image: url(../images/common/img_kidney.jpg);
  top: -19px;
  top: -1.1875rem;
  width: 481px;
  width: 30.0625rem;
}

@media screen and (min-width: 768px) {
  .sub-heading.add-image::after {
    background-image: url(../images/common/img_dm-alcohol01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 32.125rem;
    height: 14.5rem;
  }
}

.sub-heading.add-image.medicine::after {
  background-image: url(../images/common/img_medicine01.jpg);
}
@media screen and (min-width: 768px) {
  .sub-heading.add-image.medicine::after {
    right: 4.8125rem;
    top: 1.3125rem;
    width: 37.5rem;
  }
}

.sub-heading.add-image.pizza::after {
  background-image: url(../images/common/img_dm-pizza01.jpg);
}
@media screen and (min-width: 768px) {
  .sub-heading.add-image.pizza::after {
    right: 1.25rem;
    top: 1.3125rem;
    width: 22.5rem;
    height: 15.5rem;
  }
}

.sub-heading.add-image.uro::after {
  background-image: url(../images/common/img_dm-uro01.jpg);
}
@media screen and (min-width: 768px) {
  .sub-heading.add-image.uro::after {
    right: 9.75rem;
    top: 0.1875rem;
    width: 27.75rem;
    height: 13.875rem;
  }
}

@media screen and (min-width: 768px) {
  .heading-secondary.add-image.brain::after {
    background-image: url(../images/common/img_dm-heart01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 28.125rem;
    height: 16.5rem;
  }
}

.strong.add-image {
  position: relative;
}

@media screen and (min-width: 768px) {
  .strong.add-image.calcium::after {
    background-image: url(../images/common/img_medicine01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: -4.4375rem;
    width: 30.625rem;
    height: 16.5rem;
  }
}

.strong.add-image.water {
  position: relative;
}

@media screen and (min-width: 768px) {
  .strong.add-image.water::after {
    content: "";
    position: absolute;
    top: -5rem;
    right: 0;
    width: 20rem;
    height: 14.375rem;
    background-image: url(../images/common/img_dm-pizza01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.dm__add-alcohol {
  width: 82%;
  margin-top: 32px;
  margin-top: 2rem;
  margin-inline: auto;
}

.dm__add-meal {
  width: 82%;
  margin-top: 32px;
  margin-top: 2rem;
  margin-inline: auto;
}

.dm__add-uro {
  width: 82%;
  margin-top: 32px;
  margin-top: 2rem;
  margin-inline: auto;
}

.dm__add-brain {
  width: 82%;
  margin-top: 32px;
  margin-top: 2rem;
  margin-inline: auto;
}

.dm__add-calcium {
  width: 82%;
  margin-top: 32px;
  margin-top: 2rem;
  margin-inline: auto;
}

.dm__add-kidney {
  width: 82%;
  margin-top: 32px;
  margin-top: 2rem;
  margin-inline: auto;
}

.dm__add-water {
  width: 82%;
  margin-top: 32px;
  margin-top: 2rem;
  margin-inline: auto;
}

@media screen and (min-width: 1366px) {
  .mega {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 56px;
    width: 450px;
    background: #60574b;
    color: #fff;
    padding: 20px 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
    border-radius: 15px;
  }
}

.mega::before {
  content: "";
  position: absolute;
  top: -27px;
  left: 20%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #60574b;
}

.header__nav-item.orange-dot:hover > .mega {
  opacity: 1;
  visibility: visible;
}

.mega-menu {
  width: 50%;
}

.mega-menu .mega-menu__list {
  display: block;
  padding: 0 10px;
  padding: 0 0.625rem;
}

.mega-menu__list.--waiting {
  position: relative;
  cursor: default;
}

.mega-menu__list__waiting {
  position: absolute;
  top: calc(50% - 0.8rem);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  color: #60574b;
  z-index: 2;
}

.mega-menu__list__waiting-img {
  position: relative;
}

.mega-menu__list__waiting-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .7);
  z-index: 1;
  border-radius: 15px;
}

.mega-menu .mega-menu__list img {
  border-radius: 15px;
  aspect-ratio: 117/78;
  -o-object-fit: cover;
     object-fit: cover;
}

.mega-menu__list span {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 5px;
  margin-left: 1em;
  font-weight: 500;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .5);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}

/* モーダル本体 */
.modal {
  background: #fff;
  border-radius: 8px;
  max-width: 1300px;
  width: 90%;
  height: 56%;
  max-height: 640px;
  overflow-y: scroll;
  padding: 20px;
  position: relative;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
}

/* 閉じるボタン */
.modal-close {
  position: absolute;
  top: -5px;
  right: 4px;
  background: transparent;
  border: none;
  font-size: 24px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #dc890f;
}
@media screen and (max-width: 520px) {
  .modal-close {
    position: fixed;
    top: 20%;
    right: 6%;
    z-index: 10;
  }
}
@media screen and (min-width: 768px) {
  .modal-close {
    top: 10px;
    right: 10px;
  }
}

/* コンテンツのスタイル */
.modal__introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .modal__introduction {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.modal-image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal-image {
    width: 40%;
  }
}

.modal-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.modal-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal-details {
    width: 58%;
  }
}

.modal-details p {
  margin-top: 1em;
  font-size: 14, 16, 375, 1920;
  text-align: left;
}
.modal-title {
  font-size: 24px;
  font-size: 1.5rem;
}

.modal-subtitle {
  font-size: 16px;
  font-size: 1rem;
  color: gray;
  padding-bottom: 1em;
}

.modal__employment {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .modal__employment {
    margin-top: 0 !important;
  }
}

.modal-description {
  border-bottom: 1px solid #dc890f;
}

.modal__major {
  text-align: left;
  margin-top: 0 !important;
}

.modal-section-title {
  text-align: left;
  font-size: 19.2px;
  font-size: 1.2rem;
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.modal-qualifications {
  list-style: disc;
  text-align: left;
}

/* 表示用のボタン */
.open-modal {
  margin-top: auto;
  font-size: 16px;
  font-size: 1rem;
  cursor: pointer;
  color: #60574b;
}
@media screen and (max-width: 520px) {
  .open-modal {
    font-size: 0.875rem;
  }
}

/* モーダル表示時 */
.modal-overlay.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mt-section {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .mt-section {
    margin-top: 4.375rem;
  }
}

.mt-content {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .mt-content {
    margin-top: 0.575rem;
  }
}

.mv {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .mv {
    margin-top: 138px;
  }
}

.mv__title {
  font-size: clamp(28px, 25.087px + 0.7766990291vw, 40px);
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
}

.mv__img {
  margin: 0 calc(50% - 45vw);
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.mv__img img {
  border-radius: 1.25rem;
}

.wp-pagenavi {
  margin: 40px auto;
  font-size: 14px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333;
}

.wp-pagenavi a {
  color: #333;
  border: none !important;
}

.wp-pagenavi span.current,
.wp-pagenavi a.page {
  margin: 0 4px;
  line-height: 2;
  padding: 0 12px;
  -webkit-transition: 0.03s;
  transition: 0.03s;
  display: block;
  border-bottom: 4px solid transparent;
}

.wp-pagenavi span.current {
  border: none !important;
  border-bottom: 2px solid gray !important;
}

.wp-pagenavi a.page {
  background: none;
  opacity: 0.3;
}

.wp-pagenavi a.page:hover {
  border-bottom: 4px solid #dc890f;
}

.wp-pagenavi .first,
.wp-pagenavi .extend {
  margin-right: 15px;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 18px;
  border: 1px solid !important;
}

.sec-title {
  font-size: clamp(28px, 25.087px + 0.7766990291vw, 40px);
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .sec-title {
    letter-spacing: 0.07em;
  }
}

.sec-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 32px;
  bottom: 2rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #dc890f;
  height: 3px;
  width: 60px;
  width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .sec-title::after {
    width: 6.25rem;
    bottom: 2.9375rem;
  }
}

.sec-title .en {
  color: #dc890f;
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  text-align: center;
  margin-top: 18px;
  margin-top: 1.125rem;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .sec-title .en {
    font-size: 1.125rem;
    margin-top: 2.3125rem;
    letter-spacing: 0.1em;
  }
}

.sidebar-wrap {
  display: none;
}
@media screen and (min-width: 768px) {
  .sidebar-wrap {
    position: fixed;
    right: 0;
    top: 137px;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 5px;
  }
}
@media screen and (min-width: 1366px) {
  .sidebar-wrap {
    top: 18rem;
  }
}

.sidebar__item {
  font-size: 16px;
  font-size: 1rem;
  border-radius: 26px 0 0 26px;
  color: #fff;
  background-color: #60574b;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 24px 19px 31px;
  padding: 1.5rem 1.1875rem 1.9375rem;
  letter-spacing: 0.14em;
  font-family: "Noto Sans JP", sans-serif;
}
::-webkit-full-page-media, :future, :root .sidebar__item {
  letter-spacing: 0.1em;
}

.sidebar__item span {
  text-orientation: upright;
}

.sidebar-item + .sidebar-item {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.sub-page {
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .sub-page {
    padding-bottom: 6.25rem;
    margin-top: 12rem;
  }
}

.mv__swiper {
  border-radius: 20px;
}

.mv__swiper,
.mv__swiper .swiper-img,
.mv__swiper .swiper-img img {
  height: inherit;
  min-height: inherit;
}

.mv__swiper .swiper-img {
  border-radius: 20px;
  overflow: hidden;
}

.mv__swiper .swiper-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 1820/812;
}

.facility-gallery__slider .swiper-pagination {
  bottom: -13%;
}
@media screen and (min-width: 768px) {
  .facility-gallery__slider .swiper-pagination {
    bottom: -4%;
  }
}

.swiper-pagination-bullet-active {
  background-color: #dc890f;
}

.slide-img img {
  border-radius: 1.25rem;
  aspect-ratio: 2/1.2;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  height: 2.5rem;
  margin: auto;
  width: 40px;
  width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    height: 6.25rem;
    margin: auto;
    width: 6.25rem;
  }
}

.swiper-button-prev::after {
  background-image: url(../images/common/slider-left.png);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../images/common/slider-right.png);
}

.test {
  font-size: 100px;
  font-size: 6.25rem;
  background-color: #60574b;
  color: #fff;
}

.img {
  -webkit-animation: rotate-pc01 80s linear 0s infinite forwards;
          animation: rotate-pc01 80s linear 0s infinite forwards;
  position: absolute;
  z-index: -1;
  bottom: -21%;
  right: 4%;
  width: 609px;
  width: 38.0625rem;
}
@media screen and (min-width: 768px) {
  .img {
    bottom: -119%;
    right: 23%;
    width: 61.0625rem;
  }
}

@-webkit-keyframes rotate-pc01 {
  0% {
    -webkit-transform: translate(50%, -50%) translate(0, -10rem) rotate(0);
    transform: translate(50%, -50%) translate(0, -10rem) rotate(0);
  }
  100% {
    -webkit-transform: translate(50%, -50%) translate(0, -10rem) rotate(360deg);
    transform: translate(50%, -50%) translate(0, -10rem) rotate(360deg);
  }
}

@keyframes rotate-pc01 {
  0% {
    -webkit-transform: translate(50%, -50%) translate(0, -10rem) rotate(0);
    transform: translate(50%, -50%) translate(0, -10rem) rotate(0);
  }
  100% {
    -webkit-transform: translate(50%, -50%) translate(0, -10rem) rotate(360deg);
    transform: translate(50%, -50%) translate(0, -10rem) rotate(360deg);
  }
}
@keyframes rotate-pc01 {
  0% {
    -webkit-transform: translate(50%, -50%) translate(0, -10rem) rotate(0);
    transform: translate(50%, -50%) translate(0, -10rem) rotate(0);
  }
  100% {
    -webkit-transform: translate(50%, -50%) translate(0, -10rem) rotate(360deg);
    transform: translate(50%, -50%) translate(0, -10rem) rotate(360deg);
  }
}
.overview-table {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .overview-table {
    margin-top: 1.875rem;
    max-width: 800px;
    margin-inline: auto;
  }
}

.overview__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .overview__list {
    font-size: 1.5rem;
  }
}

.overview__list:first-child {
  border-top: 1px solid;
}
@media screen and (min-width: 768px) {
  .overview__list:first-child {
    margin-top: 1.5625rem;
  }
}

.overview__term {
  max-width: 120px;
  max-width: 7.5rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  padding: 12px;
  padding: 0.75rem;
}
@media screen and (min-width: 768px) {
  .overview__term {
    max-width: 16.875rem;
    padding: 1.25rem;
    text-align: left;
    text-align: initial;
    font-size: 1rem;
  }
}

.overview__description {
  width: calc(100% - 7.5rem);
  text-align: center;
  padding: 15px;
  padding: 0.9375rem;
  font-size: 14px;
  font-size: 0.875rem;
  border-left: 1px dotted;
}
@media screen and (min-width: 768px) {
  .overview__description {
    padding: 1.25rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 520px) {
  .overview__description.nowrap {
    letter-spacing: 0;
  }
}

@media screen and (min-width: 768px) {
  .clinic-time__content-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 1%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1300px) {
  .clinic-time__content-wrap {
    gap: 6%;
  }
}
@media screen and (min-width: 768px) {
  .clinic-time__content {
    max-width: 48.75rem;
    margin-inline: auto;
  }
}

.clinic-time__content p {
  margin-top: 0.3em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .clinic-time__content p {
    font-size: 1.5rem;
    margin-top: 0.5em;
  }
}

.clinic-time__content p span {
  margin-right: 30px;
  margin-right: 1.875rem;
}
@media screen and (min-width: 768px) {
  .clinic-time__content p span {
    margin-right: 2.875rem;
  }
}

.clinic-time__content p:nth-child(2) {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .clinic-time__content p:nth-child(2) {
    margin-top: 3.9375rem;
  }
}

.clinic__table {
  display: table;
  border-collapse: collapse;
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
  table-layout: fixed;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .clinic__table {
    font-size: 1.5rem;
    width: auto;
  }
}

.clinic__table th {
  background-color: #60574b;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .clinic__table th {
    padding: 0.5rem 0.7rem;
  }
}

.clinic__table th:first-child,
.clinic__table td:first-child {
  border-right: 2px dotted #ccc;
  padding-left: 4px;
  padding-left: 0.25rem;
  letter-spacing: 0.12em;
  text-align: left;
  width: 98px;
  width: 6.125rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .clinic__table th:first-child,
  .clinic__table td:first-child {
    padding-right: 1.125rem;
    padding-left: 1.4375rem;
    text-align: center;
    width: auto;
    font-size: 1.625rem;
  }
}

.clinic__table td {
  text-align: center;
}

.clinic__table tr:last-child {
  border-bottom: 1px solid;
}

.clinic__table tr:not(:last-child),
.clinic__table th {
  border-bottom: 1px solid;
}

.clinic__table td:not(:first-child) {
  padding: 12px 0;
  padding: 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .clinic__table td:not(:first-child) {
    padding: 1rem 0;
  }
}

.clinic__table-hour {
  white-space: nowrap;
}

.sub-clinic-info {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .sub-clinic-info {
    margin-top: 1.9375rem;
  }
}

p.clinic-time__content-title {
  font-size: 28.8px;
  font-size: 1.8rem;
  font-weight: 700;
}

.clinic-time__content.--right {
  margin-top: 16px;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .clinic-time__content.--right {
    margin-top: 0rem;
  }
}
p.sub-clinic-info-note {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 0.5em !important;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.sub-clinic-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.3em;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .sub-clinic-info dl {
    font-size: 1rem;
    margin-top: 0.5em;
    letter-spacing: 0.14em;
  }
}

.sub-clinic-info dt {
  width: 117px;
}

.access__map-wrap {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .access__map-wrap {
    margin-top: 0;
  }
}

.access__map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 31.5%;
}

.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
}

.access__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .access__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
    margin-top: 3.75rem;
  }
}

.access__movie {
  margin-top: 30px;
  margin-top: 1.875rem;
  position: relative;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .access__movie {
    width: 40%;
    margin-top: 0;
    padding-top: 22.25%;
  }
}
.access__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access__description {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .access__description {
    width: 50%;
    margin-top: 0;
  }
}

.access__text {
  margin-top: 1em;
}

.archive-blog__inner {
  margin: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .archive-blog__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .archive-blog__wrapper {
    width: 65%;
  }
}

@media screen and (min-width: 768px) {
  .archive-blog__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .archive-blog__item {
    width: 50%;
  }
}

.archive-blog__link {
  padding: 24px 0;
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .archive-blog__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 2.5rem;
    height: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}

.archive-blog__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .archive-blog__content {
    margin-top: 1rem;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

.archive-blog__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .archive-blog__meta {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.archive-blog__date {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Roboto", sans-serif;
}

.archive-blog__category {
  margin-left: 24px;
  margin-left: 1.5rem;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  color: #fff;
  background-color: #60574b;
}

.archive-blog__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  border-bottom: 1px solid;
  padding-bottom: 0.2em;
}
@media screen and (min-width: 768px) {
  .archive-blog__title {
    font-size: 1.125rem;
  }
}

.archive-blog__exert {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.archive-blog__img {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.archive-blog__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .archive-blog__img img {
    aspect-ratio: 320/180;
  }
}

.archive-blog__sidebar {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .archive-blog__sidebar {
    margin-top: 0;
    margin-left: 4rem;
    width: 35%;
  }
}

.archive-blog__sidebar-item {
  padding-top: 24px;
  padding-top: 1.5rem;
  position: relative;
}

.archive-blog__sidebar-item + .archive-blog__sidebar-item {
  margin-top: 64px;
  margin-top: 4rem;
}

.archive-blog__sidebar-title {
  padding-bottom: 16px;
  padding-bottom: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  border-bottom: 1px solid rgba(35, 79, 94, .2);
}

.archive-blog__ranking-link {
  padding: 24px 0;
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(35, 79, 94, .2);
}

.archive-blog__ranking-title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
}

.archive-blog__ranking-img-wrap {
  margin-left: 16px;
  margin-left: 1rem;
  position: relative;
  max-width: 64px;
  max-width: 4rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.archive-blog__ranking-img {
  width: 100%;
}

.archive-blog__ranking-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.archive-blog__ranking-number {
  position: absolute;
  top: -15px;
  top: -0.9375rem;
  right: -8px;
  right: -0.5rem;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  border-radius: 50%;
}

.archive-blog__ranking-item:nth-of-type(1) .archive-blog__ranking-number {
  background-color: #52bcde;
}

.archive-blog__ranking-item:nth-of-type(2) .archive-blog__ranking-number {
  background-color: #73b2a0;
}

.archive-blog__ranking-item:nth-of-type(3) .archive-blog__ranking-number {
  background-color: #a4b4b9;
}

.archive-blog__ranking-item:nth-of-type(4) .archive-blog__ranking-number {
  background-color: #5c7279;
}

.archive-blog__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2%;
  row-gap: 7px;
  row-gap: 0.4375rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.archive-blog__category-link {
  position: relative;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  border-bottom: 1px solid #f0ecf4;
  background-color: #60574b;
  color: #fff;
  padding: 2px 10px;
  padding: 0.125rem 0.625rem;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .archive-blog__category-link {
    font-size: 1.125rem;
  }
}

.archive-blog__tag-list {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  gap: 1rem;
}

.archive-blog__tag-link {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
}

.form-notice__container {
  background-color: #fff;
  padding: 40px 15px;
  padding: 2.5rem 0.9375rem;
  border-radius: 30px;
  border: 1px solid;
  padding: 40px 15px 40px 40px;
  padding: 2.5rem 0.9375rem 2.5rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .form-notice__container {
    padding: 2.5rem 3.75rem;
  }
}

.form-notice__title {
  font-size: clamp(24px, 22.058px + 0.5177993528vw, 32px);
  font-size: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  text-align: center;
}

.form__attention {
  text-align: center;
}

.form-notice__list {
  max-width: 900px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .form-notice__list {
    width: 56.25rem;
  }
}

.form-notice__item {
  list-style: disc outside none;
  list-style: initial;
  letter-spacing: 0.12em;
}

.form-notice__item + .form-notice__item {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .form-notice__item + .form-notice__item {
    margin-top: 0.625rem;
  }
}

.sub-contact {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .sub-contact {
    margin-top: 12.5rem;
  }
}

.sub-contact__privacy {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
}
.sub-contact__privacy__title {
  margin: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 2px solid;
  font-size: clamp(20px, 18.058px + 0.5177993528vw, 28px);
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  font-weight: 600;
}

.sub-contact__privacy-text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.form {
  max-width: 1110px;
  margin: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .form {
    margin-top: 3.75rem;
  }
}

.form__item {
  padding: 20px 0 10px 0;
}
@media screen and (min-width: 768px) {
  .form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5%;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
  }
}

.form__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 0;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .form__title {
    padding: 0 10px;
    width: 29%;
  }
}
.form__title span {
  display: inline-block;
  padding: 7px;
  color: #fff;
  font-size: 12px;
  background-color: #dc890f;
  border-radius: 20px;
}

.form__title p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .form__title p {
    width: 100%;
  }
}

.form__title p span {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .form__title p span {
    margin-left: auto;
  }
}

.form__title--type02 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .form__title--type02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form__item.form__title--aiStart .form__title {
  padding-top: 10px;
  padding-top: 0.625rem;
}

.form__title--aiStart {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .form__input {
    width: 100%;
    margin-top: 10px;
    padding: 0 10px;
  }
}

.form__input input {
  border-radius: 30px;
}

.formInput input::-webkit-input-placeholder,
.formTextarea textarea::-webkit-input-placeholder {
  color: lightgray;
  font-size: 16px;
}

.formInput input::-moz-placeholder,
.formTextarea textarea::-moz-placeholder {
  color: lightgray;
  font-size: 16px;
}

.formInput input::-ms-input-placeholder,
.formTextarea textarea::-ms-input-placeholder {
  color: lightgray;
  font-size: 16px;
}

.formInput input::placeholder,
.formTextarea textarea::placeholder {
  color: lightgray;
  font-size: 16px;
}

.formInput input {
  width: 100%;
  height: 40px;
  padding-left: 20px;
  border: 1px solid #b5b5b5;
  font-size: 16px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .formInput input {
    width: 100%;
    height: 50px;
    margin-left: 0;
    padding-left: 15px;
  }
}

.formInput input:focus,
.formTextarea textarea:focus {
  outline: 2px solid #b5b5b5;
}

.formInput--sm input {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .formInput--sm input {
    width: 100%;
  }
}

.formInput--tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.formInput--tel > * {
  min-width: 0;
}

.formInput--tel input {
  width: 150px;
  max-width: 100%;
}

.formSelect select {
  width: 100%;
  max-width: 100%;
  height: 60px;
  padding-left: 20px;
  border: 1px solid #b5b5b5;
  border-radius: 0;
  color: #60574b;
  font-size: 16px;
  background: url(../images/common/pulldown.svg) right 10px center/10px no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 768px) {
  .formSelect select {
    width: 100%;
    height: 50px;
  }
}

.formSelect select:focus {
  outline: 2px solid #b5b5b5;
  color: black;
}

.formSelect select option:checked {
  color: black; /* 選択後の文字色を黒に */
}

.formSelect select.selected {
  color: black; /* 選択されたときの色を黒に */
}

@-moz-document url-prefix() {
  .formCalendar input {
    background: none;
  }
  .formCalendar::after {
    position: absolute;
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path d="M13.5 2H13V1c0-.6-.4-1-1-1s-1 .4-1 1v1H5V1c0-.6-.4-1-1-1S3 .4 3 1v1h-.5C1.1 2 0 3.1 0 4.5v9C0 14.9 1.1 16 2.5 16h11c1.4 0 2.5-1.1 2.5-2.5v-9C16 3.1 14.9 2 13.5 2zm0 12.5h-11c-.6 0-1-.4-1-1V6h13v7.5c0 .6-.4 1-1 1z"></path></svg>') no-repeat center center/contain;
    top: 50%;
    right: 10px;
    transform: translateY(-55%);
    pointer-events: none;
  }
}
.formCalendar input::-webkit-date-and-time-value {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .Android .formCalendar input {
    padding-left: 15px;
  }
}

.formCalendar input:focus {
  outline: 2px solid #b5b5b5;
}

@media screen and (min-width: 768px) {
  .form__dataBlockSelect {
    width: 100%;
  }
}

.form__dataBlockDate input:not(.formDate__default) {
  color: #333;
}

.formNumber__txt {
  font-size: 16px;
}

.formNumber__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .formNumber__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.formNumber__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.formNumber__blockLabel01 {
  margin-right: 30px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .formNumber__blockLabel01 {
    width: 55px;
  }
}

.formNumber__blockLabel01 {
  font-size: 16px;
}

.formNumber__blockInput {
  width: 150px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .formNumber__blockInput {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 20px;
  }
}

.formCheckbox input {
  display: none;
}

.formCheckbox .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.formCheckbox .wpcf7-list-item {
  margin-left: 0;
}

.formCheckbox--vertical .wpcf7-checkbox {
  display: block;
}

.formCheckbox--vertical .wpcf7-list-item {
  display: block;
  margin: 0;
}

.formCheckbox--vertical .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 20px;
}

.formCheckbox input + span {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 0 0 0 35px;
  font-size: 16px;
  cursor: pointer;
}

.formCheckbox input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #b5b5b5;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.formCheckbox input + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  display: block;
  width: 8px;
  height: 13px;
  margin-top: -8px;
  border-right: 3px solid #dc890f;
  border-bottom: 3px solid #dc890f;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.formCheckbox input:checked + span::after {
  opacity: 1;
}

.formRadio .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
  gap: 3.75rem;
}

.formRadio--vertical .wpcf7-radio {
  display: block;
}

.formRadio .wpcf7-list-item {
  margin: 0;
}

.formRadio--vertical .wpcf7-list-item {
  display: block;
  margin: 0;
}

.formRadio--vertical .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 20px;
}

.formRadio input + span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  cursor: pointer;
}

.formRadio input[type=radio] {
  display: none;
}

.formRadio input + span::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: auto;
  margin-right: 0.5em;
  margin-bottom: auto;
  border: 1px solid #b5b5b5;
  border-radius: 100%;
  background: #fff;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.formRadio input:checked + span::before {
  background-color: blue;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
          box-shadow: inset 0 0 0 3px #fff;
}

.formTextarea textarea {
  width: 100%;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #b5b5b5;
  border-radius: 30px;
  font-size: 16px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .formTextarea textarea {
    width: 100%;
    min-height: 300px;
    margin-left: 0;
    padding-left: 15px;
  }
}

.form__privacy {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .form__privacy {
    text-align: left;
  }
}

.form__privacy a {
  line-height: 1;
  text-decoration: underline;
}

.form__acceptance {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form__acceptance {
    text-align: left;
  }
}

.form__acceptance.formCheckbox {
  text-align: center;
}

.form__acceptance.formCheckbox a {
  text-decoration: underline;
}

.form__submit {
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .form__submit {
    margin-top: 60px;
  }
}

.formBtn input {
  width: 300px;
  padding: 20px 0;
  border: none;
  color: #fff;
  font-size: 18px;
  text-align: center;
  border-radius: 0;
  background-color: #313d58;
  cursor: pointer;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
.formBtn input:disabled {
  color: #fff;
  background-color: #eee;
  border-color: #eee;
}
@media screen and (min-width: 768px) {
  .formBtn input:disabled:hover {
    cursor: not-allowed;
  }
}
@media screen and (min-width: 768px) {
  .formBtn input:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
}

.p-formBtn__wrapper {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-formBtn__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.form__submit.p-formBtn input {
  font-size: 16px;
  font-size: 1rem;
  display: block;
  width: inherit;
  text-align: center;
  background-color: #60574b;
  color: #fff;
  border-radius: 2.875rem;
  padding: 5px 0;
  padding: 0.3125rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6%;
  letter-spacing: 0.14em;
  border: 1px solid #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: 90%;
  margin-inline: auto;
  border: 1px solid #60574b;
}
@media screen and (min-width: 768px) {
  .form__submit.p-formBtn input {
    margin-inline: initial;
    font-size: 1.25rem;
    padding: 0.9375rem 0;
    gap: 3%;
    width: 18.75rem;
    margin-inline: auto;
  }
}

.form__submit.p-formBtn input:hover {
  color: #60574b;
  background-color: #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.form__submit.p-formBtn.return input {
  margin-left: 0;
}

.form__submit.p-formBtn.return input {
  width: 200px;
  background-color: #fff;
  color: #60574b;
  border: 1px solid #60574b;
}

.form__submit.p-formBtn.return input:hover {
  background-color: #60574b;
  color: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
  padding: 15px 10px;
  border-color: #2c94de;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .wpcf7 form.sent .wpcf7-response-output {
    font-size: 16px;
  }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  padding: 15px 10px;
  border-color: red;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 16px;
  }
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  color: red;
  font-size: 16px;
  font-weight: normal;
}

.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
  display: none;
}

.formValidation .wpcf7-not-valid-tip {
  display: none;
}

.formValidation__error {
  display: none;
  margin-top: 10px;
  color: red;
  font-size: 16px;
  font-weight: normal;
}

.wpcf7-form:not(.hide_error_message) .formValidation:has(.wpcf7-not-valid-tip) .formValidation__error {
  display: block;
}

.dm ul li .dyslipidemia {
  text-align: center;
}

.dm__dyslipidemia-img {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .dm__dyslipidemia-img img {
    aspect-ratio: 3/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.tour-facility__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .tour-facility__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5rem;
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .tour-facility__item {
    width: 45%;
  }
}

.tour-facility__img {
  background-color: #fff;
  border-radius: 20px;
  margin-top: 16px;
  margin-top: 1rem;
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .tour-facility__img {
    margin-top: 0;
    width: 100%;
    margin-inline: 0;
  }
}

.tour-facility__img img {
  border-radius: 1.25rem;
  aspect-ratio: 4/3;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .tour-facility__img img {
    aspect-ratio: 567/368;
  }
}

.tour-facility__name {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .tour-facility__name {
    margin-top: 0.5em;
  }
}

.tour-facility__description {
  margin-top: 1em;
}

.facility-gallery__slider {
  position: relative;
}

.first-parent__title {
  letter-spacing: -0.06em;
}
@media screen and (min-width: 768px) {
  .first-parent__title {
    letter-spacing: normal;
    letter-spacing: initial;
  }
}

::-webkit-full-page-media, :future, :root .first-parent__title {
  letter-spacing: 0.1em;
}

.first-parent__description {
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .first-parent__description {
    line-height: 1.8;
  }
}

.clinic-feature__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .clinic-feature__list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }
}

.clinic-feature-item {
  padding: 20px;
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid;
}

.clinic-feature__list h3 {
  text-align: center;
  font-size: clamp(16px, 15.029px + 0.2588996764vw, 20px);
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
}

.clinic-feature__list p {
  margin-top: 0.7em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .clinic-feature__list p {
    line-height: 1.7;
  }
}

.clinic-guide__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .clinic-guide__media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
  }
}

@media screen and (min-width: 768px) {
  .clinic-guide-mediaImg {
    width: 45%;
  }
}

.clinic-guide-mediaImg img {
  border-radius: 20px;
}

@media screen and (min-width: 768px) {
  .clinic-guide__text-wrap {
    width: 40%;
  }
}

.clinic-guide__mediaTitle {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: clamp(20px, 18.058px + 0.5177993528vw, 28px);
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 5px solid;
  border-bottom: 0.3125rem solid;
}
@media screen and (min-width: 768px) {
  .clinic-guide__mediaTitle {
    margin-top: 0;
  }
}

.clinic-guide__mediaTitle:nth-of-type(2) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.clinic-guide__mediaText {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.clinic-guide__mediaFooter {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.belongings__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .belongings__media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 7%;
  }
}

@media screen and (min-width: 768px) {
  .belongings__textWrap {
    width: 38%;
  }
}

.belongings__list-item + .belongings__list-item {
  margin-top: 0.3em;
}
@media screen and (min-width: 768px) {
  .belongings__list-item + .belongings__list-item {
    margin-top: 1em;
  }
}

.belongings__attention {
  margin-top: 2em;
  font-size: 13px;
  font-size: 0.8125rem;
  text-indent: -16px;
  text-indent: -1rem;
  padding-left: 16px;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .belongings__attention {
    font-size: 0.9375rem;
  }
}

.belongings__img {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .belongings__img {
    width: 45%;
    margin-top: 0;
  }
}

.belongings__img img {
  border-radius: 1.25rem;
}

.dm .attention {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .dm .attention {
    margin-top: 2.5rem;
  }
}

.blood-pressure-wrap {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .blood-pressure-wrap {
    display: grid;
    margin-top: 1.875rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
  }
}

.blood-pressure + .blood-pressure {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .blood-pressure + .blood-pressure {
    margin-top: 0;
  }
}

.blood-pressure {
  text-align: center;
  border-radius: 1.25rem;
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
  border: 1px solid;
}
@media screen and (min-width: 768px) {
  .blood-pressure {
    padding: 1.25rem;
  }
}

.dm .blood-pressure p {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(0, 0, 0, 0)), color-stop(80%, #dc890f));
  background-image: linear-gradient(rgba(0, 0, 0, 0) 80%, #dc890f 80%);
}
@media screen and (min-width: 768px) {
  .dm .blood-pressure p {
    font-size: 1.375rem;
  }
}

.dm .blood-pressure span {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .dm .blood-pressure span {
    font-size: 1.125rem;
  }
}

.blood-pressure-table {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .blood-pressure-table {
    margin-top: 1.875rem;
    max-width: 800px;
    margin-inline: auto;
  }
}

.blood-pressure__list {
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .blood-pressure__list {
    padding-bottom: 1.5625rem;
    font-size: 1rem;
  }
}

.blood-pressure__list:first-child {
  border-top: 1px solid;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .blood-pressure__list:first-child {
    margin-top: 1.5625rem;
    padding-top: 1.5625rem;
  }
}

.blood-pressure__list + .blood-pressure__list {
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .blood-pressure__list + .blood-pressure__list {
    padding-top: 1.5625rem;
  }
}

.blood-pressure__term {
  max-width: 120px;
  max-width: 7.5rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .blood-pressure__term {
    max-width: 16.875rem;
  }
}

.blood-pressure__description {
  width: calc(100% - 7.5rem);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .blood-pressure__description {
    text-align: left;
    text-align: initial;
    width: auto;
  }
}

.dm__page a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dm__page-img {
  width: 30%;
}

.dm__page-img img {
  aspect-ratio: 170/120;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}

.dm .dm__inner .dm__page p {
  margin-top: 0;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .dm .dm__inner .dm__page p {
    font-size: 1.75rem;
  }
}

.dm h2 {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .dm h2 {
    margin-top: 6.25rem;
  }
}

.dm h3 {
  margin-top: 60px;
  margin-top: 3.75rem;
}
.dm h4 {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #dc890f;
  font-size: clamp(18px, 17.029px + 0.2588996764vw, 22px);
  font-size: clamp(1.125rem, 1.0643203883rem + 0.2588996764vw, 1.375rem);
}
@media screen and (min-width: 768px) {
  .dm h4 {
    margin-top: 1.875rem !important;
  }
}

.dm p {
  margin-top: 0.7em;
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .dm p {
    margin-top: 1em;
    font-size: 1rem;
  }
}

.dm .strong {
  font-weight: 600;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .dm .strong {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

.dm .list-wrap {
  display: block;
  margin-top: 1em;
}

.dm .list-wrap .list {
  border: none;
  text-align: left;
  text-align: initial;
  padding: 0;
  padding-left: 20px;
  padding-left: 1.25rem;
  position: relative;
  text-indent: -8px;
  text-indent: -0.5rem;
  padding-left: 32px;
  padding-left: 2rem;
}

.dm .list-wrap .list:not(:first-child) {
  margin-top: 0.5em;
}

.dm .list-wrap .list .dot {
  display: inline-block;
  position: static;
  position: initial;
  color: #dc890f;
  left: 8px;
  left: 0.5rem;
  background-color: #dc890f;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-radius: 50%;
  padding: 0;
}

.dm .explanation .life-style {
  display: inline;
}

.dm .heading-secondary span {
  margin-top: 0;
}

.dm .mark {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(0, 0, 0, 0)), color-stop(70%, #dc890f));
  background-image: linear-gradient(rgba(0, 0, 0, 0) 70%, #dc890f 70%);
  display: inline;
}

.dm .explanation {
  margin-top: 1em;
}

.dm ul {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .dm ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3%;
    row-gap: 3.75rem;
  }
}

.dm ul li {
  border: 1px solid;
  border-radius: 0.9375rem;
  position: relative;
  text-align: center;
  padding: 30px 20px 20px;
  padding: 1.875rem 1.25rem 1.25rem;
}

.dm ul li:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .dm ul li:not(:first-child) {
    margin-top: 0;
  }
}

.dm ul li span {
  position: absolute;
  top: -0.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(30px, 25.631px + 1.1650485437vw, 48px);
  font-size: clamp(1.875rem, 1.6019417476rem + 1.1650485437vw, 3rem);
  font-family: "Roboto", sans-serif;
  margin-top: 0;
  line-height: 1;
  padding: 0 10px;
  padding: 0 0.625rem;
  background-color: #f8f6ea;
}

.dm ul li h3 {
  margin-top: 0;
  font-size: clamp(22px, 20.058px + 0.5177993528vw, 30px);
  font-size: clamp(1.375rem, 1.2536407767rem + 0.5177993528vw, 1.875rem);
}

.dm ul li p {
  margin-top: 1em;
  text-align: left;
  text-align: initial;
  text-indent: -16px;
  text-indent: -1rem;
  padding-left: 16px;
  padding-left: 1rem;
}

.dm__button {
  font-size: 16px;
  font-size: 1rem;
  display: block;
  width: inherit;
  text-align: center;
  background-color: #60574b;
  color: #fff;
  border-radius: 2.875rem;
  padding: 5px 0;
  padding: 0.3125rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6%;
  letter-spacing: 0.14em;
  border: 1px solid #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 90%;
  margin-inline: auto;
  padding-left: 20px;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .dm__button {
    margin-inline: initial;
    font-size: 1.25rem;
    padding: 0.9375rem 0 0.9375rem 20px;
    gap: 3%;
    width: 18.75rem;
    margin-inline: auto;
    margin-top: 1.875rem;
  }
}

.dm__button svg {
  width: 9.5%;
}
@media screen and (min-width: 768px) {
  .dm__button svg {
    width: 11%;
  }
}

.dm__button:hover {
  background-color: #fff;
  color: #60574b;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.dm__button:hover svg .cls-1 {
  fill: #60574b;
  stroke: #fff;
}

.dm__treatment p {
  margin-top: 0;
  padding-left: 1em;
}

.single-blog__title {
  font-size: clamp(28px, 25.087px + 0.7766990291vw, 40px);
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
}

.single-page.archive-blog {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .single-page.archive-blog {
    margin-top: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .archive-blog__wrap {
    width: 90%;
  }
}

.archive-blog__wrap img {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.archive-blog__wrap h2 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 32px;
  padding: 8px 16px;
  color: #fff;
  background-color: #60574b;
}
@media screen and (min-width: 768px) {
  .archive-blog__wrap h2 {
    font-size: 1.5rem;
  }
}

.archive-blog__wrap h3 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 32px;
  padding: 0 16px 8px;
  border-bottom: 2px solid #60574b;
}
@media screen and (min-width: 768px) {
  .archive-blog__wrap h3 {
    font-size: 1.25rem;
  }
}

.archive-blog__wrap p {
  margin-bottom: 24px;
}

.archive-blog__wrap a {
  display: block;
  text-decoration: underline;
  color: #0072bc;
}

.archive-blog__wrap ul {
  margin-bottom: 24px;
}

.archive-blog__wrap li {
  position: relative;
  padding-left: 1em;
}

.archive-blog__wrap li::after {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 4px;
  background-color: #60574b;
}

.archive-blog__wrap li + li {
  margin-top: 4px;
}

.archive-blog__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .archive-blog__footer {
    margin-top: 5rem;
  }
}

.archive-blog__footer .common__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #60574b;
  text-decoration: none;
  letter-spacing: 0.15em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .archive-blog__footer .common__link {
    font-size: 1rem;
  }
}

.archive-blog__footer .common__link svg {
  width: 30px;
  width: 1.875rem;
}
@media screen and (min-width: 768px) {
  .archive-blog__footer .common__link svg {
    width: 3.125rem;
  }
}

.archive-staff-wrapper__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5%;
  row-gap: 40px;
  row-gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 520px) {
  .archive-staff-wrapper__inner {
    gap: 10%;
    row-gap: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .archive-staff-wrapper__inner {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.archive-staff-wrapper__content {
  width: 30%;
  text-align: center;
  list-style: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 520px) {
  .archive-staff-wrapper__content {
    width: 44%;
  }
}
@media screen and (min-width: 768px) {
  .archive-staff-wrapper__content {
    width: 20%;
  }
}

.archive-staff-wrapper__content .common__link {
  width: 100%;
}

.archive-staff-wrapper__content .common__link svg {
  letter-spacing: 0.1em;
  width: 17%;
}
.archive-staff-wrapper__img {
  border-radius: 1.25rem;
  overflow: hidden;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .archive-staff-wrapper__img {
    margin-top: 1rem;
  }
}

.archive-staff-wrapper__img img {
  aspect-ratio: 1/1.4;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.archive-staff-wrapper__name {
  font-size: 16px;
  margin-top: 5px;
  margin-top: 0.3125rem;
  margin-inline: auto;
  border-bottom: 1px solid;
}
@media screen and (max-width: 520px) {
  .archive-staff-wrapper__name {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .archive-staff-wrapper__name {
    font-size: 1.75rem;
    margin-top: 0.875rem;
    border-bottom: 2px solid;
    padding-bottom: 0.3125rem;
  }
}

.archive-staff-wrapper__position {
  font-size: 14px;
  margin-top: 7px;
  margin-top: 0.4375rem;
  font-weight: 600;
}
@media screen and (max-width: 520px) {
  .archive-staff-wrapper__position {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .archive-staff-wrapper__position {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    margin-top: 0.625rem;
  }
}

.archive-staff-wrapper__position span {
  display: block;
}

.archive-staff-wrapper__department {
  font-size: 16px;
  background: #60574b;
  color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 2px 5px;
  padding: 0.125rem 0.3125rem;
}
@media screen and (max-width: 520px) {
  .archive-staff-wrapper__department {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .archive-staff-wrapper__department {
    font-size: 1.25rem;
  }
}

.no-post {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.archive-staff__bottom {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .archive-staff__bottom {
    margin-top: 5rem;
  }
}

.archive-staff__bottom .common__link {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .archive-staff__bottom .common__link {
    gap: 1%;
  }
}

.archive-staff__bottom .common__link svg {
  width: 9%;
}
@media screen and (min-width: 768px) {
  .archive-staff__bottom .common__link svg {
    width: 4%;
  }
}

.page-stanndby {
  margin-top: 100px;
  margin-top: 6.25rem;
  margin-bottom: 160px;
  margin-bottom: 10rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-stanndby {
    margin-top: 15rem;
    margin-bottom: 10rem;
  }
}

.page-stanndby__title {
  font-size: clamp(30px, 25.145px + 1.2944983819vw, 50px);
  font-size: clamp(1.875rem, 1.5716019417rem + 1.2944983819vw, 3.125rem);
}

.page-stanndby__text {
  font-size: clamp(18px, 14.601px + 0.9061488673vw, 32px);
  font-size: clamp(1.125rem, 0.9126213592rem + 0.9061488673vw, 2rem);
  line-height: 1.7;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-stanndby__text {
    margin-top: 2.5rem;
  }
}

.page-stanndby__footer {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .page-stanndby__footer {
    margin-top: 5rem;
  }
}

.page-stanndby__link {
  font-size: 16px;
  font-size: 1rem;
  display: block;
  width: inherit;
  text-align: center;
  background-color: #60574b;
  color: #fff;
  border-radius: 2.875rem;
  padding: 5px 0;
  padding: 0.3125rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6%;
  letter-spacing: 0.14em;
  border: 1px solid #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 90%;
  margin-inline: auto;
  border: 1px solid #60574b;
  max-width: 350px;
}
@media screen and (min-width: 768px) {
  .page-stanndby__link {
    margin-inline: initial;
    font-size: 1.25rem;
    padding: 0.9375rem 0;
    gap: 3%;
    width: 18.75rem;
    margin-inline: auto;
    margin-top: 1.875rem;
  }
}

.page-stanndby__link:hover {
  -webkit-transform: 0.3s all;
          transform: 0.3s all;
  background-color: #fff;
  color: black;
}

.page-stanndby {
  margin-top: 100px;
  margin-top: 6.25rem;
  margin-bottom: 160px;
  margin-bottom: 10rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-stanndby {
    margin-top: 15rem;
    margin-bottom: 10rem;
  }
}

.page-stanndby__title {
  font-size: clamp(30px, 25.145px + 1.2944983819vw, 50px);
  font-size: clamp(1.875rem, 1.5716019417rem + 1.2944983819vw, 3.125rem);
}

.page-stanndby__text {
  font-size: clamp(18px, 14.601px + 0.9061488673vw, 32px);
  font-size: clamp(1.125rem, 0.9126213592rem + 0.9061488673vw, 2rem);
  line-height: 1.7;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-stanndby__text {
    margin-top: 2.5rem;
  }
}

.page-stanndby__footer {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .page-stanndby__footer {
    margin-top: 5rem;
  }
}

.page-stanndby__link {
  font-size: 16px;
  font-size: 1rem;
  display: block;
  width: inherit;
  text-align: center;
  background-color: #60574b;
  color: #fff;
  border-radius: 2.875rem;
  padding: 5px 0;
  padding: 0.3125rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6%;
  letter-spacing: 0.14em;
  border: 1px solid #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 90%;
  margin-inline: auto;
  border: 1px solid #60574b;
  max-width: 350px;
}
@media screen and (min-width: 768px) {
  .page-stanndby__link {
    margin-inline: initial;
    font-size: 1.25rem;
    padding: 0.9375rem 0;
    gap: 3%;
    width: 18.75rem;
    margin-inline: auto;
    margin-top: 1.875rem;
  }
}

.page-stanndby__link:hover {
  -webkit-transform: 0.3s all;
          transform: 0.3s all;
  background-color: #fff;
  color: black;
}

.fv {
  margin-top: 100px;
  height: 500px;
  height: 31.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv {
    height: 50.75rem;
  }
}
@media screen and (min-width: 1366px) {
  .fv {
    margin-top: 180px;
  }
}

.fv__inner {
  padding: 0 13px;
  padding: 0 0.8125rem;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    padding: 0 4.9375rem 0 1.4375rem;
  }
}

.fv__inner .fv-swiper {
  border-radius: 20px;
}

.fv-swiper {
  position: relative;
  height: inherit;
}

.fv-swiper .slide-img {
  height: inherit;
}

.fv-swiper picture {
  height: inherit;
}

.fv-swiper picture img {
  height: inherit;
}

.fv__img {
  height: inherit;
  overflow: hidden;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .fv__img {
    border-radius: 1.25rem;
  }
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.fv__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-animation: 4s zoom both 1.5s;
          animation: 4s zoom both 1.5s;
}
@media screen and (min-width: 768px) {
  .fv__img img {
    border-radius: 1.25rem;
  }
}

.fv__wrap {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 12%;
  left: 5%;
  border-radius: 20px;
  z-index: 1;
  background-color: rgba(255, 255, 255, .8);
  padding: 20px;
  padding: 1.25rem;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .fv__wrap {
    top: 17%;
    left: 3.7%;
    gap: 9%;
    padding: 1.875rem;
    width: auto;
  }
}

.fv__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 11.203px + 1.8122977346vw, 46px);
  font-size: clamp(1.125rem, 0.7002427184rem + 1.8122977346vw, 2.875rem);
  -webkit-animation: 3s fade both 1s;
          animation: 3s fade both 1s;
  letter-spacing: 0.14em;
}
.fv__title .kaigyou {
  display: block;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fv__title .orientation {
  text-combine-upright: all;
}

.fv__text {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: clamp(12px, 8.359px + 0.9708737864vw, 27px);
  font-size: clamp(0.75rem, 0.5224514563rem + 0.9708737864vw, 1.6875rem);
  letter-spacing: 0.14em;
  line-height: 1.8;
  -webkit-animation: 2s fadein both 3s;
          animation: 2s fadein both 3s;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .fv__text {
    margin-top: 2.875rem;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fv__banner {
  display: none;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .fv__banner {
    position: absolute;
    width: 9.0625rem;
    height: 9.0625rem;
    background-color: #dc890f;
    color: #fff;
    top: 4%;
    right: 10%;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.fv__banner a {
  text-align: center;
}

.fv__standby {
  position: absolute;
  bottom: 1%;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: clamp(20px, 15.631px + 1.1650485437vw, 38px);
  font-size: clamp(1.25rem, 0.9769417476rem + 1.1650485437vw, 2.375rem);
  color: #dc890f;
  background-color: #fff;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  border-radius: 20px;
  border: 1px solid orange;
  width: 81%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__standby {
    padding: 1.25rem 1.875rem;
    bottom: 3%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.fv__standby span {
  font-size: clamp(14px, 12.058px + 0.5177993528vw, 22px);
  font-size: clamp(0.875rem, 0.7536407767rem + 0.5177993528vw, 1.375rem);
  display: block;
}

.fv_logo-img {
  margin-inline: auto;
  width: 19%;
}

.fv__banner p {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 11px;
  margin-top: 0.6875rem;
  line-height: 1;
}

.fv__banner span {
  line-height: 1.8;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}

.news__list {
  width: 100%;
  margin-inline: auto;
  background-color: #fff;
  border: 1px solid #dc890f;
  border-radius: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .news__list {
    width: 59.6875rem;
  }
}

.news-list__item a {
  padding: 12px 0;
  padding: 0.75rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .news-list__item a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.5rem 0;
  }
}

.news-list__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 16px;
  margin-left: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 400;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .news-list__item-meta {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: 3.4375rem;
  }
}

.news-list__item-date {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .news-list__item-date {
    font-size: 1.125rem;
  }
}

.news-list__title {
  text-transform: uppercase;
  font-size: 17px;
  font-size: 1.0625rem;
  width: 103px;
  width: 6.4375rem;
  text-align: center;
  letter-spacing: 0.19em;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .news-list__title {
    font-size: 1.25rem;
    width: 14.5625rem;
  }
}

.news-list__title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #dc890f;
  height: 178%;
  width: 2px;
}
@media screen and (min-width: 768px) {
  .news-list__title::after {
    height: 194%;
  }
}

.news-list__item-title {
  line-height: 1.5;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .news-list__item-title {
    margin-left: 3.125rem;
    font-size: 1rem;
  }
}

/*======================================
                   about
=======================================*/
.about {
  position: relative;
  overflow-x: clip;
}

.about__inner.inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .about__inner.inner {
    max-width: 1382px;
  }
}

.about__title {
  margin-inline: auto;
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.7%;
}
@media screen and (min-width: 768px) {
  .about__content {
    margin-top: -2.3125rem;
    gap: 6.7%;
  }
}

.about__left,
.about__right {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__left,
  .about__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.25rem;
    width: 18%;
  }
}

.about__img {
  border-radius: 20px;
}

.about__center {
  width: 100%;
  margin-top: 18px;
  margin-top: 1.125rem;
  text-align: center;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .about__center {
    width: 52%;
    margin-top: 4.0625rem;
  }
}

.about__catch {
  font-size: clamp(20px, 18.058px + 0.5177993528vw, 28px);
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .about__catch {
    letter-spacing: 0.06em;
  }
}

.about__text {
  margin-top: 52px;
  margin-top: 3.25rem;
  letter-spacing: 0.07em;
  text-align: left;
  text-align: initial;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  font-family: 400;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 1rem;
    margin-top: 1.5625rem;
    line-height: 1.85;
  }
}

.about__profile {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .about__profile {
    margin-top: 5.9375rem;
  }
}

.about__name {
  font-size: clamp(14px, 12.058px + 0.5177993528vw, 22px);
  font-size: clamp(0.875rem, 0.7536407767rem + 0.5177993528vw, 1.375rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .about__name {
    letter-spacing: 0;
    margin-right: 2.6875rem;
  }
}

.about__name span {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .about__name span {
    font-size: 1rem;
  }
}

.about__name rt {
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .about__name rt {
    font-size: 0.875rem;
  }
}

.about__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 87%;
  margin-inline: auto;
  margin-top: 66px;
  margin-top: 4.125rem;
  gap: 9%;
}
@media screen and (min-width: 768px) {
  .about__img-wrap {
    gap: 11%;
    margin-top: 1.5rem;
    display: none;
  }
}

.about__sp-left,
.about__sp-right {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  row-gap: 1.25rem;
}

/*======================================
            doctors
=======================================*/
.doctors {
  background-image: url(../images/common/img_dr01-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 93%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .doctors {
    background-image: url(../images/common/img_dr01.jpg);
    width: 98%;
  }
}

.doctors__inner {
  padding: 25px 10px 5px;
  padding: 1.5625rem 0.625rem 0.3125rem;
}
@media screen and (min-width: 768px) {
  .doctors__inner {
    padding: 2.0625rem 0;
  }
}

.doctors__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.5%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .doctors__content {
    margin-left: 4.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 62%;
  }
}

.doctors__title {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.14em;
  font-size: clamp(28px, 25.087px + 0.7766990291vw, 40px);
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  padding-right: 44px;
  padding-right: 2.75rem;
}
@media screen and (min-width: 768px) {
  .doctors__title {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
  }
}

::-webkit-full-page-media,
:future,
:root .doctors__title {
  letter-spacing: 0.1em;
}

.doctors__title::after {
  content: "";
  position: absolute;
  left: 25px;
  left: 1.5625rem;
  bottom: 0;
  background-color: #dc890f;
  height: 68px;
  height: 4.25rem;
  width: 2px;
}
@media screen and (min-width: 768px) {
  .doctors__title::after {
    height: 6.25rem;
    width: 3px;
    left: 2.5625rem;
  }
}

.doctors__title .en {
  color: #dc890f;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: right;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-right: 0.8em;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .doctors__title .en {
    font-size: 1.125rem;
    margin-right: 1.5em;
    letter-spacing: 0.1em;
  }
}

.doctors__wrap {
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .doctors__wrap {
    width: 67%;
  }
}

.doctors__text {
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: 222px;
  margin-top: 13.875rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .doctors__text {
    margin-top: 0;
    line-height: 1.8;
    font-size: 1rem;
    letter-spacing: 0.03em;
  }
}

.doctors__button {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .doctors__button {
    margin-top: 1.625rem;
  }
}

.doctors__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .doctors__link {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    width: 100%;
    margin-inline: initial;
  }
}

.doctors__link span {
  width: 30%;
}
@media screen and (min-width: 768px) {
  .doctors__link span {
    width: auto;
  }
}

.doctors__link svg {
  width: 91%;
}
@media screen and (min-width: 768px) {
  .doctors__link svg {
    width: 13%;
  }
}

.doctors__link svg .cls-1 {
  fill: none;
}

.doctors__link:hover svg .cls-1 {
  fill: #fff;
}

/*======================================
              medical
=======================================*/
.medical {
  background-color: #ece6cf;
  position: relative;
  overflow-x: clip;
}

.medical__inner.inner {
  padding-bottom: 168px;
  padding-bottom: 10.5rem;
  position: relative;
  z-index: 1;
  padding-top: 61px;
  padding-top: 3.8125rem;
}
@media screen and (min-width: 768px) {
  .medical__inner.inner {
    padding-top: 3rem;
    max-width: 1164px;
    padding-bottom: 3.8125rem;
  }
}

.medical__upper-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5%;
}
@media screen and (min-width: 768px) {
  .medical__upper-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.medical__title-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .medical__title-wrap {
    text-align: right;
    width: 21.5%;
  }
}

.medical__title {
  font-size: clamp(28px, 25.087px + 0.7766990291vw, 40px);
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  position: relative;
  letter-spacing: 0.17em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .medical__title {
    letter-spacing: 0.25em;
    text-align: right;
  }
}

.medical__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  bottom: -0.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #dc890f;
  height: 2px;
  width: 60px;
  width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .medical__title::after {
    width: 3px;
    right: -0.8125rem;
    left: auto;
    top: 91%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 6.25rem;
    width: 2px;
  }
}

.medical__title-wrap .en {
  color: #dc890f;
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 17px;
  margin-top: 1.0625rem;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .medical__title-wrap .en {
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    margin-top: 0.625rem;
    text-align: left;
    text-align: initial;
  }
}

.medical__text-wrap {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .medical__text-wrap {
    text-align: left;
    text-align: initial;
  }
}

.medical__message {
  font-size: clamp(20px, 18.058px + 0.5177993528vw, 28px);
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .medical__message {
    text-align: left;
    text-align: initial;
    margin-top: 0;
  }
}

.medical__text {
  margin-top: 14px;
  margin-top: 0.875rem;
  line-height: 1.82;
  letter-spacing: 0.04em;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
  text-align: initial;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .medical__text {
    font-size: 1rem;
    line-height: 1.77;
  }
}

.medical__lower-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5%;
  margin-top: 57px;
  margin-top: 3.5625rem;
}
@media screen and (min-width: 768px) {
  .medical__lower-content {
    margin-top: 5.3125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.medical__information {
  position: relative;
}
@media screen and (min-width: 768px) {
  .medical__information {
    width: 48%;
  }
}

a.medical__information-link-waiting {
  position: relative;
  display: block;
}
a.medical__information-link-waiting::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .7);
  z-index: 1;
  border-radius: 11px 0 0 0;
}
@media screen and (min-width: 768px) {
  a.medical__information-link-waiting::after {
    border-radius: 18px 0 0 0;
  }
}

p.link-waiting-text {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 900;
  white-space: nowrap;
  text-align: center;
  z-index: 2;
  color: #60574b;
}
@media screen and (min-width: 768px) {
  p.link-waiting-text {
    font-size: 2.5rem;
  }
}

.medical__information img {
  aspect-ratio: 530/317;
  -o-object-fit: cover;
     object-fit: cover;
}

.medical__information + .medical__information {
  margin-top: 31px;
  margin-top: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .medical__information + .medical__information {
    margin-top: 0;
  }
}

.medical__information .number {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #60574b;
  color: #fff;
  z-index: 1;
  font-size: clamp(21px, 18.815px + 0.5825242718vw, 30px);
  font-size: clamp(1.3125rem, 1.1759708738rem + 0.5825242718vw, 1.875rem);
  border-radius: 20px 0 20px 0;
  font-family: "Roboto", sans-serif;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .medical__information .number {
    padding: 0.4375rem 1rem;
  }
}

.medical__information-text {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ece6cf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px 0 0 0;
  width: 57%;
  font-size: clamp(14px, 12.058px + 0.5177993528vw, 22px);
  font-size: clamp(0.875rem, 0.7536407767rem + 0.5177993528vw, 1.375rem);
  letter-spacing: 0.15em;
  padding: 8px 5px 6px 21px;
  padding: 0.5rem 0.3125rem 0.375rem 1.3125rem;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .medical__information-text {
    padding: 0.9375rem 1.4375rem 0.9375rem 1.9375rem;
    gap: 11%;
    border-radius: 20px 0 0 0;
    width: 60%;
    letter-spacing: 0.06em;
  }
}

.medical__information-text.low-gap {
  gap: 5.5%;
  padding: 8px 7px 6px 8px;
  padding: 0.5rem 0.4375rem 0.375rem 0.5rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .medical__information-text.low-gap {
    padding: 0.9375rem 1.4375rem 0.9375rem 1.9375rem;
    gap: 2.5%;
    letter-spacing: 0.06em;
  }
}

.medical__information-text.low-gap span {
  letter-spacing: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.medical__information-text span {
  display: block;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .medical__information-text span {
    font-size: 1rem;
  }
}

.medical__information-text svg {
  width: 17%;
}

.medical__information-text svg .cls-1 {
  fill: none;
}

.medical__information:hover svg .cls-1 {
  fill: #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.medical__information-name {
  font-weight: 600;
}

/*======================================
              hospital
=======================================*/
.hospital__inner {
  padding-top: 95px;
  padding-top: 5.9375rem;
  padding-bottom: 77px;
  padding-bottom: 4.8125rem;
}
@media screen and (min-width: 768px) {
  .hospital__inner {
    padding-top: 6.125rem;
    padding-bottom: 1.5625rem;
  }
}

.hospital__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .hospital__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8%;
  }
}

@media screen and (min-width: 768px) {
  .hospital__title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.hospital__title {
  font-size: clamp(28px, 25.087px + 0.7766990291vw, 40px);
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  position: relative;
  text-align: center;
  letter-spacing: 0.17em;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .hospital__title {
    text-align: left;
    text-align: initial;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    margin-top: 1.25rem;
    letter-spacing: 0.14em;
  }
}

::-webkit-full-page-media,
:future,
:root .hospital__title {
  letter-spacing: 0.1em;
}

.hospital__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  bottom: -0.5625rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #dc890f;
  height: 2px;
  width: 60px;
  width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .hospital__title::after {
    width: 6.25rem;
    bottom: -1.0625rem;
  }
}

.hospital__title-wrap .en {
  color: #dc890f;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  text-align: center;
  display: block;
  line-height: 1.6;
  margin-top: 18px;
  margin-top: 1.125rem;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .hospital__title-wrap .en {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-align: left;
    text-align: initial;
    font-size: 1.125rem;
    letter-spacing: 0.07em;
    margin-top: 2.4375rem;
    line-height: 1.4;
  }
}

.hospital__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4%;
  width: 69%;
  margin-inline: auto;
  margin-top: 42px;
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .hospital__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .hospital__info-list {
    width: 33%;
  }
}

.hospital__info-list + .hospital__info-list {
  margin-top: 67px;
  margin-top: 4.1875rem;
}
@media screen and (min-width: 768px) {
  .hospital__info-list + .hospital__info-list {
    margin-top: 0;
  }
}

.hospital__img img {
  aspect-ratio: 337/346;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.hospital__name {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 19px;
  margin-top: 1.1875rem;
  text-align: left;
  text-align: initial;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 3em;
}
@media screen and (min-width: 768px) {
  .hospital__name {
    gap: 3%;
    margin-top: 1.4375rem;
    text-align: center;
    padding-left: 0;
  }
}

.hospital__name::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 35px;
  height: 2.1875rem;
  width: 35px;
  width: 2.1875rem;
  background-image: url(../images/common/icon_arrow-circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
}
@media screen and (min-width: 768px) {
  .hospital__name::after {
    right: 18%;
    height: 2.6875rem;
    width: 2.6875rem;
  }
}

.hospital__name.time::after {
  right: 5%;
}

.hospital__name:hover::after {
  background-image: url(../images/common/icon_arrow-circle-white.png);
}

.hospital__name.time {
  letter-spacing: 0.04em;
  padding-left: 0;
}
.hospital__name svg {
  width: 17%;
}
@media screen and (min-width: 768px) {
  .hospital__name svg {
    width: 12%;
  }
}

.hospital__name svg .cls-1 {
  fill: none;
}

.hospital__info-list:hover svg .cls-1 {
  fill: #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

/*======================================
              recruit
=======================================*/
.recruit {
  position: relative;
  overflow-x: clip;
}

.recruit .img {
  position: absolute;
  top: 47%;
  bottom: auto;
  left: -156%;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .recruit .img {
    bottom: auto;
    right: auto;
    left: -36%;
    top: 57%;
  }
}

.recruit__inner {
  padding-bottom: 116px;
  padding-bottom: 7.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .recruit__inner {
    padding-bottom: 7.0625rem;
  }
}

.recruit__title {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .recruit__title {
    letter-spacing: 0.16em;
  }
}

.recruit__message {
  font-size: clamp(20px, 17.572px + 0.6472491909vw, 30px);
  font-size: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
  text-align: center;
  letter-spacing: 0.065em;
  margin-top: 25px;
  margin-top: 1.5625rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .recruit__message {
    margin-top: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .recruit__text-wrap {
    width: 59%;
    margin-inline: auto;
    position: relative;
  }
}

.recruit__text {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 16px;
  margin-top: 1rem;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .recruit__text {
    font-size: 1rem;
    margin-top: 1.5625rem;
  }
}

.recruit__button {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .recruit__button {
    margin-top: 0;
    position: absolute;
    right: -30%;
    bottom: -5%;
    letter-spacing: 0.2em;
  }
}
@media screen and (min-width: 1366px) {
  .recruit__button {
    right: -34%;
  }
}

.recruit__button .common__link {
  gap: 24%;
}
@media screen and (min-width: 768px) {
  .recruit__button .common__link {
    gap: 10%;
    width: 10rem;
  }
}

@media screen and (min-width: 768px) {
  .recruit__button .common__link span {
    width: 30%;
  }
}

@media screen and (min-width: 768px) {
  .recruit__button .common__link svg {
    width: 27%;
  }
}

.recruit__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
  margin: 0 calc(50% - 50vw);
  margin-top: 93px;
  margin-top: 5.8125rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .recruit__slider {
    margin-top: 2.5rem;
  }
}

.recruit__img-wrap {
  -webkit-animation: scroll-left 30s infinite linear 1.5s both;
          animation: scroll-left 30s infinite linear 1.5s both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
}

.recruit__img {
  width: 76.9230769231vw;
}
@media screen and (min-width: 768px) {
  .recruit__img {
    width: 25vw;
  }
}

.recruit__img img {
  aspect-ratio: 451/262;
}

@-webkit-keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/*======================================
            blog
=======================================*/
.blog {
  position: relative;
  overflow-x: clip;
}

.blog .img {
  position: absolute;
  top: 110%;
  bottom: auto;
  left: -66%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .blog .img {
    top: 217%;
    left: 26%;
    right: auto;
  }
}

.blog__inner.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .blog__inner.inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1230px;
    gap: 11%;
  }
}

.blog__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32%;
}

.blog__button {
  letter-spacing: 0.13em;
  margin-top: 76px;
  margin-top: 4.75rem;
  position: relative;
}
@media screen and (max-width: 520px) {
  .blog__button {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .blog__button {
    margin-top: auto;
    margin-bottom: 2.25rem;
    width: 100%;
  }
}

.blog__button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blog__button span {
  display: inline-block;
  height: 35px;
  height: 2.1875rem;
  width: 35px;
  width: 2.1875rem;
  background-image: url(../images/common/icon_arrow-circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
}
@media screen and (max-width: 520px) {
  .blog__button span {
    right: 7%;
    height: 2.625rem;
    width: 2.625rem;
  }
}
@media screen and (min-width: 768px) {
  .blog__button span {
    right: -35%;
    height: 2.6875rem;
    width: 2.6875rem;
  }
}

.blog__button :hover span {
  background-image: url(../images/common/icon_arrow-circle-white.png);
}

.blog__content {
  width: 100%;
  margin-top: 89px;
  margin-top: 5.5625rem;
}
@media screen and (min-width: 768px) {
  .blog__content {
    margin-top: 1.4375rem;
  }
}

.privacy-policy__section-title {
  font-size: clamp(20px, 18.058px + 0.5177993528vw, 28px);
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
}

.privacy-policy__section ul {
  margin-top: 14px;
  margin-top: 0.875rem;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .privacy-policy__section ul {
    margin-top: 1.25rem;
  }
}

.privacy-policy__section li {
  list-style: disc outside none;
  list-style: initial;
}
/*# sourceMappingURL=styles.css.map */
