@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  background-color: #fcfaf3;
  color: #363636;
}

a {
  color: #363636;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}

/*モバイルのみ表示*/

/*画像の縦横比設定*/
img {
  display: block;
  width: 100%;
  height: auto;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* マウスホバーがあるデバイスでのアニメーション */
@media (any-hover: hover) {
  a {
    transition: opacity 0.3s;
  }

  a:hover {
    opacity: 0.8;
  }
}
/* pc幅での電話発信しない */
@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
/* リキッドレイアウト対応のための設定 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

*,
*::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;
  padding: 0;
}

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

/* 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]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  opacity: 0;
	position: absolute;
}

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

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

/*addressタグのフォントリセット*/
address {
  font-style: normal;
}

.access__wrapper {
  display: grid;
}

.access__img-content {
  display: contents;
}

.access__img {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  aspect-ratio: 344/239;
  overflow: hidden;
  border-radius: 0.625rem;
}

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

.access__text-wrapper {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 1.5rem;
}

.access__name {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2083333333;
  font-family: "Lato", sans-serif;
}

.access__container {
  display: grid;
  margin-top: 0.5rem;
  gap: 0.25rem;
}

.access__text {
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.access__map {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  aspect-ratio: 375/241;
  margin-top: 1.5rem;
  margin-inline: calc(50% - 50vi);
}

.access__map iframe {
  width: 100%;
  height: 100%;
}

.anchor {
  margin-top: -5.625rem;
  padding-top: 5.625rem;
}

.breadcrumb {
  line-break: strict;
  overflow-wrap: anywhere;
}

.breadcrumb span {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  line-break: strict;
  overflow-wrap: anywhere;
}

.breadcrumb span:not(:first-child) {
  margin-left: 0.5rem;
}

.breadcrumb__arrow {
  position: relative;
  margin-right: 0.5rem;
}

.breadcrumb__arrow::before {
  content: "";
  position: absolute;
  top: 55%;
  translate: 0 -50%;
  left: 0;
  width: 0.5625rem;
  height: 0.9375rem;
  background-image: url(../images/common/breadcrumbs_arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

@supports not (background-image: url(../images/common/breadcrumbs_arrow.webp)) {
  .breadcrumb__arrow::before {
    background-image: url(../images/common/breadcrumbs_arrow.png);
  }
}

.breadcrumb a {
  color: #bababa;
}

.breadcrumb.breadcrumb--error .breadcrumb__arrow::before {
  background-image: url(../images/common/breadcrumbs_arrow_white.webp);
}

@supports not (background-image: url(../images/common/breadcrumbs_arrow_white.webp)) {
  .breadcrumb.breadcrumb--error .breadcrumb__arrow::before {
    background-image: url(../images/common/breadcrumbs_arrow_white.png);
  }
}

.breadcrumb.breadcrumb--error a {
  color: #fff;
}

.btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.875rem 2rem;
  border: 1px solid #e1b33f;
  border-radius: 40px;
  background-color: #e1b33f;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btn span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1875;
  font-family: "Lato", sans-serif;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/* お問い合わせフォームボタン */
.btn.btn--contact {
  padding: 0.875rem 4rem 0.875rem 2.5em;
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.13);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.13);
  width: 10.5rem;
  color: #fff;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .btn.btn--contact:hover {
    color: #e1b33f;
  }
}

.btn__out-circle {
  fill: #fff;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.btn__in-circle {
  fill: #e1b33f;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

/*ホバーアニメーション*/
/* 白いボタン*/
.btn.btn--white {
  border: 1px solid #fff;
  background-color: #fff;
}

.btn.btn--white span {
  color: #e1b33f;
}

.btn.btn--white .btn__out-circle {
  fill: #e1b33f;
}

.btn.btn--white .btn__in-circle {
  fill: #fff;
}

/*ホバーアニメーション*/
/* 赤いボタン*/
.btn.btn--red {
  padding: 0.875rem 2.5rem;
  border: 1px solid #f08873;
  background-color: #f08873;
  -webkit-box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.13);
}

.btn.btn--red span {
  color: #fff;
}

.btn.btn--red .btn__out-circle {
  fill: #fff;
}

.btn.btn--red .btn__in-circle {
  fill: #f08873;
}

/*ホバーアニメーション*/
/* エラーページのボタン*/
.btn.btn--error {
  padding: 0.875rem 2.5rem;
  border: 1px solid #fff;
  background-color: #e1b33f;
  -webkit-box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.13);
}

.btn.btn--error span {
  color: #fff;
}

.btn.btn--error .btn__out-circle {
  fill: #fff;
}

.btn.btn--error .btn__in-circle {
  fill: #e1b33f;
}

/*ホバーアニメーション*/
/* 細いボタン*/
.btn.btn--thin {
  padding: 0.5rem 1.5rem;
}

/* お問い合わせバナーボタン*/
.btn__mail-icon {
  width: 1.25rem;
  fill: #fff;
}

.btn__mail-icon + span {
  margin-left: 0.5rem;
}

.btn:hover .btn__mail-icon {
  width: 1.25rem;
  fill: #e1b33f;
}

/* 影付きボタン*/
.btn.btn--shadow {
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.13);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.13);
}

/* お問い合わせのボタン*/
.btn input {
  color: #fff;
}
.category-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
  column-gap: 0.25rem;
  row-gap: 0.25rem;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.category-item.category-item--column-tab {
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 1rem;
}

.category-item__item {
  line-height: 1.2;
  font-size: 0.625rem;
  padding: 1px 8px;
  border: 1px solid #e1b33f;
  border-radius: 20px;
  background-color: #fff;
  font-weight: 400;
  font-family: "Noto Sans JP";
  text-transform: uppercase;
  color: #e1b33f;
}

.category-item__item a {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #e1b33f;
}

.category-item__item.category-item__item--small {
  padding: 1px 8px;
  font-size: 0.625rem;
  line-height: 1.2;
}

.category-item__item.category-item__item--inversion {
  background-color: #e1b33f;
  color: #fff;
  font-family: "Lato";
}

/*worksセクション*/

.column-card__image {
  aspect-ratio: 300/200;
  margin: auto;
  overflow: hidden;
  border-radius: 5px;
}

/* .column-card__image img:hover {
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
} */

.column-card__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}

.column-card__content {
  margin-top: 1rem;
}

.column-card__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.column-card__date {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Lato", sans-serif;
}

.column-card__title {
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 150%;
  line-break: strict;
  overflow-wrap: anywhere;
}

.column-card__btn {
  margin-top: 1rem;
}

.column-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  row-gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.column-list__image {
  aspect-ratio: 345/225;
}

.column-list__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.column-list__title {
  color: #e1b33f;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
}

.column-list__text {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 150%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.column-list__btn {
  margin-top: 1.5rem;
}

.column-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.column-meta__date {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  font-family: "Lato", sans-serif;
  flex-shrink: 0;
}

.column-meta__category {
  margin-left: 1rem;
}

.contact-banner {
  margin-inline: auto;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 8px rgba(236, 201, 107, 0.3);
  box-shadow: 4px 4px 8px rgba(236, 201, 107, 0.3);
  text-align: center;
}

.contact-banner__img {
  aspect-ratio: 300/136;
  max-width: 18.75rem;
}

.contact-banner__img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.contact-banner__text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 150%;
}

.contact-banner__phone-number {
  display: inline-block;
  position: relative;
  margin-top: 0.4375rem;
  padding-left: 1.8125rem;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2083333333;
  font-family: "Lato", sans-serif;
}

.contact-banner__phone-number::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.3125rem;
  height: 1.3125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/common/tel-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.contact-banner__btn {
  margin-top: 0.5rem;
  margin-inline: auto;
}

.contact-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  row-gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact-form__label {
  width: 100%;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-form__required {
  position: relative;
}

.contact-form__required::before {
  display: inline;
  position: absolute;
  top: 0;
  right: -20px;
  content: "※";
  color: #cb0000;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
}

.contact-form input:not([type="submit"], [type="button"]),
.contact-form textarea {
  width: 100%;
  padding: 0.6875rem 1.5rem;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1rem;
}

.contact-form textarea {
  field-sizing: content;
  min-height: 13.5625rem;
}

.contact-form ::-webkit-input-placeholder {
  color: #cacaca;
}

.contact-form ::-moz-placeholder {
  color: #cacaca;
}

.contact-form :-ms-input-placeholder {
  color: #cacaca;
}

.contact-form ::-ms-input-placeholder {
  color: #cacaca;
}

.contact-form ::placeholder {
  color: #cacaca;
}

.contact-form__btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.contact-form__btn {
  margin-top: 2.5rem;
  margin-inline: auto;
}

.contact-form__confirm {
  min-width: 10.5rem;
}

/* お問い合わせページ用ボタンレイアウト */
.contact-btn {
  position: relative;
}

.contact-btn::before {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  background-image: url(../images/common/btn-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  width: 1rem;
  height: 1rem;
  transition: background-image 0.3s ease;
}

.contact-btn.contact-btn--confirm::before {
  right: 3.375rem;
}

@media (any-hover: hover) {
  .contact-btn:hover::before {
    background-image: url(../images/common/btn-icon-hover.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
}

/* 確認画面を隠す */
.confirm-area {
  display: none;
}

.wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}

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

.wpcf7-list-item-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.wpcf7-list-item-label::before {
  display: block;
  width: 14px;
  height: 14px;
  padding: 0;
  border: 1px solid #e1b33f;
  border-radius: 9999px;
  content: " ";
  flex-shrink: 0;
}

input[type="radio"]:checked + .wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: #e1b33f;
  content: " ";
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-spinner {
  display: none !important;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.en-treat {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.en-treat span {
  display: inline-block;
  z-index: -2;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #faf3e0;
  font-weight: 700;
  font-size: 3.375rem;
  line-height: 1.2037037037;
  font-family: "Lato", sans-serif;
  white-space: nowrap;
}

.footer {
  position: relative;
  padding: 12.75rem 0 2.5rem;
  background-color: #e1b33f;
}

.footer__inner {
  position: relative;
}

.footer__inner::before {
  position: absolute;
  top: -18.0625rem;
  left: -3.75rem;
  width: 13.9375rem;
  height: 15.5625rem;
  background-image: url(../images/common/dental-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  -webkit-filter: drop-shadow(10px 10px 30px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(10px 10px 30px rgba(0, 0, 0, 0.1));
}

.footer__inner::after {
  position: absolute;
  top: -15.625rem;
  left: 0.9375rem;
  width: 6.1875rem;
  height: 5.6875rem;
  background-image: url(../images/common/logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.footer__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem;
}

.footer__calendar {
  width: 100%;
  padding: 1.5rem 1.375rem 1.4375rem;
  border-radius: 10px;
  background-color: #fff;
  color: #e1b33f;
}

.footer__calendar-header,
.footer__calendar-time {
  display: grid;
  grid-template-columns: 3rem repeat(7, 1fr) 2.5625rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid #e1b33f;
  font-size: 0.75rem;
}

.footer__calendar-row:not(:first-child) {
  margin-top: 0.5rem;
}

.footer__calendar-content {
  text-align: center;
}

.footer__calendar-footer {
  margin-top: 0.9375rem;
}

.footer__address {
  display: grid;
  row-gap: 0.1875rem;
  margin-top: 0.5rem;
}

.footer__heading,
.footer__address-text {
  color: #fff;
}

.footer__heading {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2083333333;
  font-family: "Lato", sans-serif;
}

.footer__address-text {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer__btn {
  margin-top: 1.4375rem;
  margin-inline: auto;
}

.footer__copy {
  margin-top: 2.5rem;
  color: #fff;
  font-weight: 400;
  font-size: 0.875rem;
  font-family: "Lato", sans-serif;
  text-align: center;
}

.fv {
  margin-top: 5.625rem;
  overflow-x: clip;
}

.inner.fv__inner {
  max-width: 100%;
}

.fv__container {
  position: relative;
  margin-inline: 0 calc(50% - 50vi);
}

.fv__title {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #e1b33f;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1875;
  font-family: "Lato", sans-serif;
  text-align: center;
  width: 100%;
}

.fv__image {
  aspect-ratio: 360/452;
  height: 100%;
  margin-left: auto;
}

.fv__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0px 0px 0px 60px;
}

.fv__news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 2.5rem;
  padding: 1.875rem 1.5rem 2.5rem 1.5rem;
  gap: 1.5rem;
  border-radius: 10px;
  background-color: #e1b33f;
}

.fv__news-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-greeting {
  padding-bottom: 2.5rem;
  border-radius: 15px 15px 0px 0px;
  background-color: #fff;
}

.top-greeting__container {
  padding-top: 2.875rem;
  gap: 1.5rem;
}

.top-greeting__image {
  aspect-ratio: 345/412;
}

/*ハンバーガーメニュー*/
.hamburger {
  z-index: 20;
  width: 2.375rem;
  padding: 0;
}

.hamburger span {
  display: block;
  position: relative;
  width: 2.375rem;
  height: 0.125rem;
  background-color: #e1b33f;
  -webkit-transition: -webkit-transform 0.3s 0s ease;
  transition: -webkit-transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease, -webkit-transform 0.3s 0s ease;
}

.hamburger span:nth-child(2) {
  width: 1.875rem;
  margin-block: 0.5625rem;
}

.hamburger span:nth-child(3) {
  width: 1.375rem;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  margin-inline: auto 0;
}

.hamburger.is-openSP span {
  width: 2.375rem;
  background-color: #fff;
}

.hamburger.is-openSP span:nth-child(1) {
  top: 0.4375rem;
  -webkit-transform: rotate(26.57deg);
  transform: rotate(26.57deg);
}

.hamburger.is-openSP span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-openSP span:nth-child(3) {
  top: -0.9375rem;
  -webkit-transform: rotate(-26.57deg);
  transform: rotate(-26.57deg);
}

body.js-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.header {
  z-index: 60;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.625rem;
  background-color: #fcfaf3;
}

.header.header--error {
  background-color: #e1b33f;
}

.inner.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 100%;
  height: inherit;
}

.header__nav-item,
.header__nav-link {
  height: inherit;
}

.header__logo {
  z-index: 50;
  position: relative;
  width: 4.375rem;
  max-width: 100%;
}

.header__logo a {
  display: block;
}

.header__image {
  fill: #e1b33f;
  width: 100%;
}

.header__image.header__image--error {
  fill: #fff;
}

.header__image-stroke {
  fill: none;
  stroke: #e1b33f;
}

.header__image-stroke.header__image-stroke--error {
  stroke: #fff;
}

.header:has(.is-openSP) .header__image {
  fill: #fff;
}

.header:has(.is-openSP) .header__image-stroke {
  fill: none;
  stroke: #fff;
}

.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 3.8125rem;
  padding: 1rem 3.125rem 1rem 3.5rem;
  gap: 2.375rem;
  border: 1px #e1b33f solid;
  border-radius: 6.25rem;
  background: rgba(255, 255, 255, 0.6);
}

.header__nav.header__nav--error {
  border: 1px #fff solid;
  background: #e1b33f;
}

.header__nav-link {
  display: grid;
  place-items: center;
  font-weight: 400;
}

.inner {
  width: 100%;
  max-width: 37.5rem;
  margin-inline: auto;
  padding-inline: 15px;
}

.media-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.media-box__title {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3333333333;
}

.media-box__texts {
  margin-top: 1.5rem;
}

.media-box__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.media-box__text:not(:first-of-type) {
  margin-top: 1.75rem;
}

.media-box__profile {
  margin-top: 2.5rem;
}

.media__btn {
  margin-top: 2.5rem;
}

.media-box__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.medical {
  overflow-x: clip;
}

.medical__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 1.3125rem;
  -moz-column-gap: 1.3125rem;
  column-gap: 1.3125rem;
  row-gap: 1.125rem;
  margin-top: 2.5rem;
}

.medical__wrapper {
  display: grid;
  margin-top: 3.5rem;
  gap: 5rem;
}

.medical__container {
  gap: 1.5rem;
}

.medical__number {
  display: inline-block;
  padding: 0.125rem 1.5rem;
  border: 1px solid #e1b33f;
  border-radius: 1.25rem;
  color: #e1b33f;
  font-size: 0.75rem;
  line-height: 1.4166666667;
}

.medical__sub-title {
  margin-top: 0;
}

.medical__image {
  aspect-ratio: 345/230;
}

.nav-text {
  font-size: 1rem;
  line-height: 1.5;
}

.nav-text.nav-text--white {
  color: #fff;
}

.nav-text span {
  position: relative;
}

.nav-text span::before {
  display: inline-block;
  position: absolute;
  top: -0.1875rem;
  left: -0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #e1b33f;
  content: "";
}

.nav-text.nav-text--white span::before {
  background-color: #fff;
}

/*newsセクション*/
.news {
  overflow-x: clip;
}

.news-card {
  padding-bottom: 1.25rem;
  background-color: #fff;
}

.news-card__image {
  aspect-ratio: 320/208;
  margin: auto;
  overflow: hidden;
}

.news-card__image img {
  transition: transform 1s;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (any-hover: hover) {
  .news-card:hover {
    opacity: 1;
  }
  .news-card:hover img {
    transform: scale(1.1);
  }
}
.news-card__meta,
.news-card__title,
.news-card__text {
  padding-inline: 1rem;
}

.news-card__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 1rem;
}

.news-card__date {
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-family: "Lato", sans-serif;
}

.news-card__categories {
  margin-left: 0.25rem;
}

.news-card__title {
  margin-top: 0.5625rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-break: strict;
  overflow-wrap: anywhere;
}

.news-card__text {
  margin-top: 0.5rem;
  padding-inline: 0.875rem;
  line-height: 1.4285714286;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.news-list__item {
  display: block;
  padding: 1.5rem 0;
}

.news-list__item:not(:last-of-type) {
  border-bottom: 1px solid #fff;
}

.news-list__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}

.news-list__head time,
.news-list__body {
  color: #fff;
}

.news-list__head {
  display: grid;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  gap: 0.375rem;
}

.news-list__head time {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  font-family: "Lato", sans-serif;
}

.news-list__body {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  white-space: nowrap;         /* 改行しない */
  overflow: hidden;            /* はみ出した部分を隠す */
  text-overflow: ellipsis;     /* 「…」で省略表示 */
}

.news-list__new span {
  font-family: Lato;
}

.news__wrapper {
  margin-top: 2.5rem;
  gap: 5rem;
}

.news__items {
  display: grid;
}

.news__item {
  margin-top: 1.5rem;
}

.news__pagination {
  margin-top: 4rem;
}

.pager {
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: calc(77 / 345 * 100%) calc(45 / 345 * 100%) calc(
      55 / 345 * 100%
    );
}

.pager__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.pager__item.pager__item--start {
  place-self: start;
}

.pager__item.pager__item--end {
  place-self: end;
}

.pager__item:not(:has(a)) .pager__item-image {
  display: none;
}

.pager__item-link {
  display: flex;
  align-items: center;
  color: #e1b33f;
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
  gap: 0.5rem;
}

.pager__item-image {
  width: 1rem;
  height: 1rem;
}

/*トップへ戻る*/
.page-top {
  z-index: 60;
  position: fixed;
  right: 1.25rem;
  bottom: 6.25rem;
  width: 3rem;
}

.page-top a {
  -webkit-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
}

.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3rem;
}

.pagination__item {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .pagination__item:hover {
    opacity: 0.7;
  }
  .pagination__item:has(.page-numbers.current):hover {
    opacity: 1;
  }
}

.page-numbers {
  color: #e1b33f;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Lato", sans-serif;
}

.page-numbers.current {
  display: inline-block;
  position: relative;
  color: #fff;
  line-height: 1;
  font-family: "Lato", sans-serif;
}

.page-numbers.current::before {
  position: absolute;
  content: "";
  z-index: -1;
  background-color: #e1b33f;
  width: 1.75rem;
  height: 1.75rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-numbers.next,
.page-numbers.prev {
  position: relative;
}

.page-numbers.next::before,
.page-numbers.prev::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.125rem;
  height: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
}

.page-numbers.next::before {
  transform: translateY(-50%) rotate(180deg);
  right: 0;
}

.page-numbers.prev::before {
  left: 0;
}

.panel {
  padding-block: 1rem 1.5rem;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(236, 201, 107, 0.3);
  box-shadow: 4px 4px 8px 0px rgba(236, 201, 107, 0.3);
}

.panel.panel--medical-page {
  padding-block: 0.5rem 0.4375rem;
}

.panel__image {
  aspect-ratio: 1/1;
  margin-inline: auto;
}

.panel__image.panel__image--medical {
  max-width: 10.25rem;
}

.panel__image.panel__image--medical-page {
  max-width: 6.5rem;
}

.panel__image.panel__image--policy {
  max-width: 11.875rem;
}

.panel__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 9999px;
}

.panel__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.8125rem;
  margin-inline: auto;
  padding: 4px 12px;
  border-radius: 5px;
  background-color: #e1b33f;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

.panel__title.panel__title--medical-page {
  margin-top: 0.4375rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.policy__title {
  margin-inline: auto;
  text-align: center;
}

.policy__items {
  display: grid;
  margin-top: 2.5rem;
  gap: 2.5rem;
}

.policy__description {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.4375;
  text-align: center;
}

.profile__head {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: "Lato", sans-serif;
}

.profile__name {
  margin-top: 0.375rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
}

.profile__name span {
  margin-right: 1.375rem;
  font-weight: 700;
}

.section-column {
  margin-top: 5.375rem;
}

.section-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 6px;
  color: #e1b33f;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
}

.section-title::before {
  display: block;
  position: absolute;
  top: -6px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: #e1b33f;
  content: "";
}

.section-title span {
  display: block;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  font-family: "Lato", sans-serif;
  text-transform: capitalize;
}

/*  白いタイトル */
.section-title.section-title--white {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  line-height: 1.5;
}

.section-title.section-title--white span {
  color: #fff;
}

.section-title.section-title--white::before {
  background-color: #fff;
}

/*  サイドバーの文字が小さい見出し */
.section-title.section-title--sidebar {
  font-size: 1.5rem;
  line-height: 1.5;
}

.sidebar {
  display: grid;
  row-gap: 3.875rem;
}

.sidebar-latest {
  display: grid;
  row-gap: 1.5rem;
  margin-top: 1.4375rem;
}

.sidebar-latest__link {
  display: grid;
  row-gap: 0.5rem;
}

.sidebar-latest__date {
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-family: "Lato", sans-serif;
}

.sidebar-latest__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  line-break: strict;
  overflow-wrap: anywhere;
}

.sidebar-archive {
  display: grid;
  row-gap: 1.5rem;
  margin-top: 1.5rem;
}

.sidebar-archive__year {
  position: relative;
  padding-left: 0.875rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  cursor: pointer;
}

.sidebar-archive__year::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 0.625rem;
  height: 0.375rem;
  background-image: url(../images/common/sidebar-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

details[open] .sidebar-archive__year::before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

.sidebar-archive__lists {
  display: grid;
  row-gap: 0.5rem;
  padding-left: 2.5625rem;
  list-style: disc;
}

.sidebar-archive__list {
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.sidebar-archive__list::marker {
  color: #363636;
  font-size: 0.625rem;
}

.js-sidebar-content {
  -webkit-animation: fadeIn 0.5s ease infinite;
  animation: fadeIn 0.5s ease infinite;
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.sidebar-category {
  display: grid;
  row-gap: 1.5rem;
  margin-top: 1.5rem;
}

.sidebar-category__item {
  display: grid;
  row-gap: 1rem;
  padding-left: 0.875rem;
}

.sidebar-category__link {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

/* スマホメニュー*/
.sp-nav {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  background-color: #e1b33f;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.sp-nav.is-openSP {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.sp-nav__logo {
  display: block;
  padding-top: 1.375rem;
  padding-left: 1.25rem;
}

.sp-nav__logo img {
  width: 5.25rem;
  max-width: 100%;
}

.sp-nav__items {
  display: grid;
  place-content: center;
  padding-top: 11rem;
  gap: 2.4375rem;
}

.sp-nav__item a {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sp-nav__btn {
  margin-top: 3.5rem;
  margin-inline: auto;
}

.thoughts__inner {
  position: relative;
}

.thoughts__inner::before {
  z-index: -1;
  position: absolute;
  top: 2.5rem;
  left: -3.4375rem;
  width: 16.75rem;
  height: 18.6875rem;
  background-image: url(../images/common/dental-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  -webkit-filter: drop-shadow(10px 10px 30px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(10px 10px 30px rgba(0, 0, 0, 0.1));
}

.thoughts__title {
  margin-top: 1.875rem;
}

.thoughts__container {
  gap: 2.5rem;
}

.thoughts__image {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  aspect-ratio: 345/230;
}

.top-column__cards {
  display: grid;
  row-gap: 2.5rem;
  margin-top: 2.5rem;
}

.top-column__btn {
  margin-top: 3.5rem;
  margin-inline: auto;
}

.top-contact-banner {
  margin-top: 2.5rem;
}

.top-footer {
  margin-top: 7.8125rem;
}

.top-loop-slider__item {
  aspect-ratio: 174/116;
  width: 100%;
  max-width: 10.875rem;
}

.top-loop-slider__item img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-medical__title {
  margin-top: 2.875rem;
}

.top-medical__menu {
  display: grid;
  z-index: 10;
  position: relative;
  grid-template-columns: repeat(4, 1fr);
  width: 64.9375rem;
  margin-top: 1.5rem;
  margin-inline: auto;
  gap: 1.1875rem;
}

.top-medical__scroll {
  margin-right: calc(50% - 50vi);
  margin-bottom: 0.9375rem;
  overflow: auto;
}

.top-medical__footer {
  position: relative;
  width: 100vw;
  margin-top: -9.375rem;
  margin-inline: calc(50% - 50vi);
  padding-block: 11.875rem 2rem;
  border-radius: 10px 10px 0px 0px;
  background-color: #e1b33f;
}

.top-medical__footer::before {
  position: absolute;
  top: 69px;
  bottom: 33px;
  left: 0;
  width: 11.375rem;
  height: 10.4375rem;
  background-image: url(../images/common/logo-lYellow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  fill: #faf3e0;
}

.top-medical__btn {
  z-index: 1;
  position: relative;
  margin-inline: auto;
}

.about-contact-banner {
  margin-top: 2.5rem;
}

.column-detail {
  margin-top: 5.625rem;
}

.column-detail__inner {
  margin-top: 2.5rem;
}

.column-detail__description {
  margin-top: 0.8125rem;
}

.column-detail__thumbnail {
  aspect-ratio: 345/222;
  margin-top: 1.5rem;
  overflow: hidden;
}

.column-detail__thumbnail img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.3125rem;
}

.column-detail__title {
  padding: 0.375rem 1rem;
  border-radius: 0.1875rem;
  background-color: #e1b33f;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  line-break: strict;
  overflow-wrap: anywhere;
}

.column-detail__meta {
  margin-top: 1.25rem;
}

.column-detail__content {
  margin-top: 2.5rem;
  display: grid;
  row-gap: 2.5rem;
}

.column-detail__content h2 {
  padding-bottom: 1.5rem;
  color: #e1b33f;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.8;
}

.column-detail__content p {
  font-size: 1rem;
  line-height: 1.5;
}

.column-detail__pagination {
  margin-top: 3.5rem;
  margin-inline: auto;
}

.column-page {
  overflow-x: clip;
}

.column-page__tab {
  margin-top: 1rem;
}

.column-page__items {
  display: grid;
  row-gap: 2.5rem;
  margin-top: 2.5rem;
}

.column-page__pagination {
  margin-top: 2.6875rem;
}

.contact-page__container {
  margin-top: 1.5rem;
}

.error-page {
  background-color: #e1b33f;
}

.error-page__container {
  margin-top: 6.25rem;
  color: #fff;
}

.error-page__inner {
  margin-top: 5.25rem;
  text-align: center;
}

.error-page__title {
  aspect-ratio: 307/127;
  width: 88.9855072464%;
  margin-inline: auto;
}

.error-page__title img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.error-page__message {
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
}

.error-page__description {
  margin-top: 1rem;
}

.error-page__btn {
  margin-top: 3.375rem;
  margin-inline: auto;
}

.news-detail {
  margin-top: 5.625rem;
}

.news-detail__wrapper {
  row-gap: 7.25rem;
  margin-top: 1.375rem;
}

.news-detail__thumbnail {
  aspect-ratio: 345/222;
}

.news-detail__thumbnail img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.news-detail__title {
  margin-top: 2.875rem;
  line-break: strict;
  overflow-wrap: anywhere;
}

.news-detail__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.25rem;
}

.news-detail__date {
  color: #e1b33f;
  font-size: 0.75rem;
  line-height: 1.1666666667;
}

.news-detail__content {
  margin-top: 1.5rem;
}

.news-detail__content p {
  font-size: 1rem;
  line-height: 1.5;
}

.news-detail__content h2 {
  position: relative;
  margin-top: 2.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.news-detail__content h2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5rem;
  height: 1.75rem;
  border-radius: 0.625rem;
  background-color: #e1b33f;
  content: "";
}

.news-detail__content h3 {
  margin-top: 2.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}

.news-detail__content a {
  display: inline-block;
  margin-top: 2.5rem;
  color: #1093dd;
  font-size: 1rem;
  line-height: 150%;
  text-decoration: underline;
}

.news-detail__content ol {
  display: grid;
  margin-top: 2.5rem;
  gap: 0.25rem;
  counter-reset: number;
}

.news-detail__content ol li {
  position: relative;
  padding-left: 1rem;
  font-size: 1rem;
  line-height: 150%;
}

.news-detail__content ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(number) ")";
  counter-increment: number;
}

.news-detail__pagination {
  margin-top: 5rem;
  margin-inline: auto;
}

.news-page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.section-access {
  margin-top: 5rem;
}

.section-policy {
  margin-top: 5.375rem;
}

.section-top-greeting {
  margin-top: 2.5rem;
}

.thanks-page {
  margin-top: 6.25rem;
}

.thanks-page__container {
  margin-top: 3.5rem;
  text-align: center;
}

.thanks-page__title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
}

.thanks-page__message {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.thanks-page__btn {
  margin-top: 3.5rem;
  margin-inline: auto;
}

.under-breadcrumb {
  margin-top: 0.625rem;
}

.under-footer {
  margin-top: 7.8125rem;
}

.under-fv {
  margin-top: 5.625rem;
  overflow-x: clip;
}

.under-fv__inner {
  position: relative;
}

.under-fv__img {
  aspect-ratio: 360/452;
  margin-inline: auto calc(50% - 50vi);
}

.under-fv__img img {
  border-radius: 0 0 0 30px;
}

.under-fv__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #e1b33f;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1875;
  font-family: "Lato", sans-serif;
  text-align: center;
}

.under-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  row-gap: 1.875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  html {
    font-size: 1.3333333333vw;
  }
  .access__img-content {
    display: grid;
    gap: 2.5rem;
  }
  .access__img {
    aspect-ratio: 843/356;
    max-width: 52.6875rem;
    border-radius: 1.25rem;
  }
  .access__text-wrapper {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: initial;
  }
  .access__map {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    aspect-ratio: 600/386;
    max-width: 37.5rem;
    margin-top: -24.125rem;
    margin-inline: initial;
    margin-inline: auto 0;
    overflow: hidden;
    border-radius: 1.25rem;
  }
  .anchor {
    margin-top: -9.625rem;
    padding-top: 9.625rem;
  }
  .breadcrumb span {
    font-size: 1rem;
    line-height: 1.5;
  }
  .btn__mail-icon {
    width: 1.3125rem;
  }
  .btn:hover .btn__mail-icon {
    width: 1.3125rem;
  }
  .category-item__item {
    font-size: 0.875rem;
    line-height: 1.2142857143;
    padding: 3px 24px;
  }
  .column-card {
    display: grid;
    grid-template-rows: subgrid;
    row-gap: 0;
    grid-row: span 3;
  }
  .column-card__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .column-card__head {
    display: contents;
  }
  .column-card__categories {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 0.5rem;
  }
  .column-card__btn {
    margin-top: 1.5rem;
  }
  .column-list {
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .column-list__image {
    aspect-ratio: 344/224;
    max-width: 100%;
    width: 21.5rem;
    flex-shrink: 0;
  }
  .column-list__content {
    max-width: 43.5rem;
    flex: 1;
  }
  .column-list__title {
    padding: 0.375rem 1rem;
    border-radius: 0.1875rem;
    background-color: #e1b33f;
    color: #fff;
  }
  .column-list__meta {
    margin-top: 0.625rem;
  }
  .column-list__text {
    margin-top: 0.375rem;
    -webkit-line-clamp: 2;
  }
  .column-list__btn {
    margin-top: 2.625rem;
  }
  .column-meta__category {
    margin-left: 1.5rem;
  }
  .contact-banner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 51.25rem;
    padding: 0.75rem 0.625rem;
    gap: 1.5rem;
  }
  .contact-banner__text {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
  .contact-banner__phone-number {
    margin-top: 0.375rem;
    padding-left: 3.1875rem;
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .contact-banner__phone-number::before {
    width: 1.875rem;
    height: 1.875rem;
  }
  .contact-banner__btn {
    margin-top: 0.9375rem;
  }
  .contact-form {
    width: 100%;
    max-width: 43.75rem;
    margin-inline: auto;
    gap: 2.5rem;
  }
  .contact-form__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .contact-form__label {
    max-width: 195px;
    min-width: 195px;
  }
  .contact-form input:not([type="submit"]),
  .contact-form textarea {
    max-width: 31.5625rem;
  }
  .contact-form textarea {
    min-height: 18.75rem;
  }
  .contact-form__btns {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
    margin-top: 4rem;
  }
  .contact-form__btn {
    margin-top: 5rem;
  }

  .input-area.is-hidden,
  .confirm-area.is-hidden {
    display: none;
  }

  .wpcf7-form-control.wpcf7-radio {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .en-treat {
    width: 61.125rem;
    margin-inline: auto 0;
  }
  .en-treat span {
    font-size: 8.75rem;
    line-height: 1.2;
  }
  .footer {
    padding-block: 9.375rem;
  }
  .footer__inner::before {
    top: -16rem;
    left: -13.4375rem;
    width: 24.858125rem;
    height: 27.75rem;
  }
  .footer__inner::after {
    top: -5.625rem;
    left: 25px;
  }
  .footer__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer__calendar {
    max-width: 32.5rem;
    padding: 2.8125rem 3.375rem 2.8125rem 3rem;
  }
  .footer__calendar-header,
  .footer__calendar-time {
    grid-template-columns: 5.0625rem repeat(7, 1fr) 3rem;
    padding-bottom: 0.4rem;
    font-size: 0.875rem;
  }
  .footer__calendar-row:not(:first-child) {
    margin-top: 1rem;
  }
  .footer__calendar-footer {
    margin-top: 1.5rem;
  }
  .footer__info {
    margin-left: 9.9375rem;
    padding-top: 2.8125rem;
  }
  .footer__address {
    row-gap: 0.25rem;
  }
  .footer__btn {
    margin-top: 1.5rem;
  }
  .fv {
    margin-top: 9.625rem;
  }
  .inner.fv__inner {
    max-width: 1250px;
  }
  .fv__title {
    top: 38.1107491857%;
    left: 32.7272727273%;
    -webkit-transform: none;
    transform: none;
    font-size: 3rem;
    line-height: 1.2083333333;
    width: fit-content;
  }
  .fv__image {
    aspect-ratio: 1320/614;
  }
  .fv__news {
    z-index: 10;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    max-width: 49.1875rem;
    margin-top: -6.25rem;
    margin-left: auto;
    padding: 1.875rem 2.5rem 2rem 2.375rem;
    gap: 2.5rem;
  }
  .fv__news-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 1rem;
    flex-shrink: 0;
  }
  .fv__news-container {
    width: 32.375rem;
    max-width: 100%;
  }
  .top-greeting {
    padding-bottom: 5rem;
    border-radius: 60px 60px 0px 0px;
  }
  .top-greeting__container {
    padding-top: 11.25rem;
    gap: 3.75rem;
  }
  .top-greeting__image {
    aspect-ratio: 520/620;
    max-width: 32.5rem;
  }
  .header {
    height: 9.625rem;
  }
  .inner.header__inner {
    max-width: 1330px;
    height: 6.875rem;
    margin-top: 1rem;
  }
  .header__logo {
    width: 7.5rem;
  }
  .header__drawer {
    display: none;
  }
  .inner {
    max-width: 1250px;
    padding-inline: 25px;
  }
  .inner--l {
    max-width: 1330px;
  }
  .inner--s {
    max-width: 1090px;
  }
  .media-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .media-box.media-box--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .media-box.media-box--bottom {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .media-box.media-box--top {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .media-box__title {
    margin-top: 2.5rem;
  }
  .media-box__profile {
    margin-top: 1.5rem;
  }
  .media__btn {
    margin-top: 1.25rem;
  }
  .media-box__image img {
    border-radius: 20px;
  }
  .medical__menu {
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 1.1875rem;
    -moz-column-gap: 1.1875rem;
    column-gap: 1.1875rem;
    margin-top: 1.5rem;
  }
  .medical__wrapper {
    margin-top: 5rem;
  }
  .medical__container {
    gap: 3rem;
  }
  .medical__sub-title {
    margin-top: 0.25rem;
  }
  .medical__image {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    aspect-ratio: 580/386;
    width: 36.25rem;
  }
  .news-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
  }
  .news-card__image {
    aspect-ratio: 284/185;
  }
  .news-list__item {
    padding: 1rem 0;
  }
  .news-list__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    max-width: 32.375rem;
  }
  .news-list__head {
    width: 19.6911196911%;
  }
  .news__wrapper {
    margin-top: 1.125rem;
    gap: 3.75rem;
  }
  .news__body {
    width: 56.25rem;
  }
  .news__items {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
  .news__item {
    margin-top: 0;
  }
  .news__item:nth-child(n + 4) {
    margin-top: 3.5rem;
  }
  .news__pagination {
    margin-top: 5rem;
  }
  .pager {
    justify-content: center;
    grid-template-columns: calc(77 / 322 * 100%) calc(42 / 322 * 100%) calc(
        55 / 322 * 100%
      );
  }
  .page-top {
    width: 3.625rem;
  }

  .pagination {
    gap: 5.25rem;
  }
  .page-numbers {
    font-size: 1.25rem;
  }

  .page-numbers.current::before {
    width: 2.5rem;
    height: 2.5rem;
  }

  .page-numbers.next::before,
  .page-numbers.prev::before {
    width: 0.625rem;
    height: 0.9375rem;
  }

  .panel.panel--medical-page {
    padding-block: 1rem 1.5rem;
  }
  .panel__image.panel__image--medical-page {
    max-width: 10.25rem;
  }
  .panel__title.panel__title--medical-page {
    margin-top: 0.8125rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  .policy__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.875rem;
  }
  .profile__name span {
    margin-right: 2.5rem;
  }
  .section-column {
    margin-top: 7.375rem;
  }
  .section-title {
    font-size: 2rem;
    line-height: 1.5;
  }
  .sp-nav {
    display: none;
  }
  .thoughts__inner::before {
    top: 0;
    left: -22.5rem;
    width: 39.75rem;
    height: 44.375rem;
  }
  .thoughts__title {
    margin-top: initial;
  }
  .thoughts__container {
    gap: 3rem;
  }
  .thoughts__content {
    padding-bottom: 1.75rem;
  }
  .thoughts__image {
    aspect-ratio: 580/386;
    width: 36.25rem;
  }
  .top-column {
    position: relative;
  }
  .top-column::before {
    z-index: -1;
    position: absolute;
    top: -5rem;
    right: 5rem;
    width: 20.375rem;
    height: 19.3125rem;
    background-image: url(../images/common/contact-logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
  }
  .top-column__cards {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 4.375rem;
    -moz-column-gap: 4.375rem;
    column-gap: 4.375rem;
    row-gap: 0;
    margin-top: 1.875rem;
  }
  .top-column__btn {
    margin-top: 5.625rem;
  }
  .top-contact-banner {
    margin-top: 7.5rem;
  }
  .top-footer {
    margin-top: 8.4375rem;
  }
  .top-loop-slider__item {
    aspect-ratio: 420/280;
    max-width: 26.25rem;
  }
  .top-medical__title {
    margin-top: 7.5rem;
  }
  .top-medical__menu {
    max-width: 100%;
    margin-top: 2.5rem;
  }
  .top-medical__scroll {
    max-width: 64.9375rem;
    margin-bottom: unset;
    margin-inline: auto;
  }
  .top-medical__footer {
    width: unset;
    margin-top: -8rem;
    margin-inline: unset;
    padding-block: 12.4375rem 5rem;
  }
  .top-medical__footer::before {
    top: 8px;
    bottom: 8px;
    width: 21rem;
    height: 19.3125rem;
  }
  .about-contact-banner {
    margin-top: 7.5rem;
  }
  .column-detail {
    margin-top: 9.625rem;
  }
  .column-detail__inner {
    max-width: 43.75rem;
    margin-top: 3.25rem;
  }
  .column-detail__description {
    margin-top: 2.4375rem;
  }
  .column-detail__thumbnail {
    aspect-ratio: 700/450;
    margin-top: 2.5rem;
  }
  .column-detail__title {
    padding: 0.5rem 1rem;
  }
  .column-detail__meta {
    margin-top: 1.5rem;
  }
  .column-page__inner {
    max-width: 1090px;
  }
  .column-page__tab {
    margin-top: 1.125rem;
  }
  .column-page__items {
    row-gap: 3.375rem;
  }
  .column-page__pagination {
    margin-top: 5.3125rem;
  }
  .contact-page__container {
    margin-top: 1.125rem;
  }
  .error-page__container {
    margin-top: 9.375rem;
  }
  .error-page__inner {
    margin-top: 2.5rem;
  }
  .error-page__title {
    aspect-ratio: 720/276;
    max-width: 45rem;
  }
  .error-page__message {
    font-size: 2rem;
    line-height: 1.46875;
  }
  .error-page__description {
    margin-top: 1.4375rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  .error-page__btn {
    margin-top: 2.5rem;
  }
  .news-detail {
    margin-top: 9.625rem;
  }
  .news-detail__body {
    width: 43.75rem;
  }
  .news-detail__wrapper {
    -webkit-column-gap: 11.25rem;
    -moz-column-gap: 11.25rem;
    column-gap: 11.25rem;
    margin-top: 3.25rem;
  }
  .news-detail__thumbnail {
    aspect-ratio: 700/450;
  }
  .news-detail__date {
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
  .news-detail__content {
    padding-top: 2.5rem;
  }
  .news-detail__content h2 {
    margin-top: 2.125rem;
    padding-left: 1.125rem;
    font-size: 1.5rem;
    line-height: 1;
  }
  .news-detail__content h2::before {
    width: 0.625rem;
    height: 2rem;
  }
  .news-detail__content h3 {
    margin-top: 2.75rem;
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .news-detail__content a {
    margin-top: 2.75rem;
  }
  .news-detail__content ul {
    margin-top: 2.75rem;
  }
  .news-page {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .news-page__side {
    width: 15rem;
  }
  .section-access {
    margin-top: 7.5rem;
  }
  .section-policy {
    margin-top: 7.6875rem;
  }
  .section-thoughts {
    margin-top: 4.125rem;
  }
  .section-top-greeting {
    margin-top: -6.25rem;
  }
  .thanks-page {
    margin-top: 9.375rem;
  }
  .thanks-page__title {
    font-size: 2rem;
    line-height: 1.46875;
  }
  .thanks-page__message {
    margin-top: 2.5rem;
  }
  .thanks-page__btn {
    margin-top: 2.5rem;
  }
  .under-footer {
    margin-top: 8.75rem;
  }
  .under-fv {
    margin-top: 9.625rem;
  }
  .under-fv__img {
    aspect-ratio: 1320/514;
    overflow: hidden;
  }
  .under-fv__img img {
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0 0 0 60px;
  }
  .under-fv__text {
    font-size: 3rem;
    line-height: 1.2083333333;
  }
  .under-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 82.5rem;
    margin-inline: 0 calc(50% - 50vi);
    margin-top: 4.125rem;
  }
  .under-title__title {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-bottom: 1.375rem;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .btn:hover {
    background-color: #fff;
    opacity: 1;
  }
  .btn:hover span {
    color: #e1b33f;
  }
  .btn:hover .btn__out-circle {
    fill: #e1b33f;
  }
  .btn:hover .btn__in-circle {
    fill: #fff;
  }
  .btn.btn--white:hover {
    background-color: #e1b33f;
  }
  .btn.btn--white:hover span {
    color: #fff;
  }
  .btn.btn--white:hover .btn__out-circle {
    fill: #fff;
  }
  .btn.btn--white:hover .btn__in-circle {
    fill: #e1b33f;
  }
  .btn.btn--red:hover {
    background-color: #fff;
  }
  .btn.btn--red:hover span {
    color: #f08873;
  }
  .btn.btn--red:hover .btn__out-circle {
    fill: #f08873;
  }
  .btn.btn--red:hover .btn__in-circle {
    fill: #fff;
  }
  .btn.btn--error:hover {
    background-color: #fff;
  }
  .btn.btn--error:hover span {
    color: #e1b33f;
  }
  .btn.btn--error:hover .btn__out-circle {
    fill: #e1b33f;
  }
  .btn.btn--error:hover .btn__in-circle {
    fill: #fff;
  }
  .btn:hover input {
    color: #e1b33f;
  }
}
