@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-primary: #8c6a4a;
  --color-primary-02: #cdb79e;
  --color-bg-extra-light: #f7f5f2;
  --color-bg-light: #777;
  --color-border: #e5ded6;
  --color-font-base: #3a342e;
  --color-font-light: #8a7f73;
  --color-white: #fff;
  --color-red: #d96c6c;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: 'Noto Sans JP', sans-serif;
  --font-family-en: 'Poppins', sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-header:30;
  --z-index-menu: 10;
  --z-index-default:1;
  --z-index-negative: -1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  padding: 0;
  margin: 0;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: inherit;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: inherit;
}

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

abbr,
acronym {
  font-variant: normal;
  border: 0;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  appearance: none;
  appearance: none;
  background-color: inherit;
  border: none;
  border-radius: 0;
}

textarea {
  display: block;
  resize: vertical;
}

select {
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

tbody {
  text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  width: 100%;
  height: auto;
}

dialog {
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  margin: 0;
  color: inherit;
  border: none;
}

summary {
  display: block;
}

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

iframe {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/*!
foundation > base
------------------------------
*/
:root {
  --base-vw: 375;
}
@media screen and (min-width: 900px) {
  :root {
    --base-vw: 1366;
  }
}

* {
  letter-spacing: 0.05em;
}

html {
  font-size: calc(100vw / var(--base-vw));
}

body {
  font-family: var(--font-family-base);
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-font-base);
}
@media screen and (min-width: 900px) {
  body {
    font-size: 18rem;
  }
}

/*!
utility > utility
------------------------------
*/
/* 非表示 */
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
}

.u-pb {
  padding-bottom: 64rem !important;
}
@media screen and (min-width: 900px) {
  .u-pb {
    padding-bottom: 96rem !important;
  }
}

.u-ptb {
  padding-block: 64rem !important;
}
@media screen and (min-width: 900px) {
  .u-ptb {
    padding-block: 96rem !important;
  }
}

.u-text-hover {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
@media screen and (min-width: 900px) and (any-hover: hover) {
  .u-text-hover:hover {
    background-size: 100% 1px;
  }
}

.u-text-wave--red {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--color-red);
  text-underline-offset: 3px;
}

.u-text-bold {
  font-weight: 700;
}

/*!
component > button
------------------------------
*/
.c-button {
  --font-size: 18rem;
  --gap: 14rem;
  display: inline-flex;
  gap: var(--gap);
  align-items: center;
  font-family: var(--font-family-en);
  font-size: var(--font-size);
  line-height: 1;
  color: var(--color-primary);
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .c-button {
    --font-size: 20rem;
    --gap: 24rem;
  }
}
.c-button::after {
  --size: 47rem;
  --dot-size: 5rem;
  width: var(--size);
  aspect-ratio: 1/1;
  content: "";
  background-color: var(--color-white);
  border: calc((var(--size) - var(--dot-size)) / 2) solid var(--color-primary);
  border-radius: 50%;
  transition: scale 0.3s;
}
@media screen and (min-width: 900px) {
  .c-button::after {
    --size: 58rem;
    --dot-size: 6rem;
  }
}

.c-button-text {
  display: inline-block;
  padding-bottom: 6rem;
  border-bottom: 2px dashed currentcolor;
}

.c-button--small {
  --font-size: 16rem;
  --gap: 10rem;
}
.c-button--small::after {
  --size: 32rem;
  --dot-size: 4rem;
}

/*!
component > appoint-button
------------------------------
*/
.c-appoint-button {
  width: 290rem;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .c-appoint-button {
    width: 355rem;
  }
}

.c-appoint-button-link {
  position: relative;
  display: block;
}
@media (any-hover: hover) {
  .c-appoint-button-link:hover .c-button::after {
    scale: 1.1;
  }
}
.c-appoint-button-link img {
  animation: rotate 30s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.c-appoint-button-text {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

/*!
component > title
------------------------------
*/
.c-title {
  display: inline-grid;
  grid-template-columns: 10rem 1fr;
  gap: 14rem 18rem;
}
.c-title::before {
  display: block;
  grid-row: 1/2;
  grid-column: 1/2;
  align-self: center;
  width: 10rem;
  aspect-ratio: 1/1;
  content: "";
  background-color: var(--color-primary);
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .c-title {
    grid-template-columns: 10rem auto auto;
    gap: 14rem;
    align-items: end;
  }
}
.c-title--white::before {
  background-color: var(--color-white);
}

.c-title-en {
  grid-row: 1/2;
  grid-column: 2/3;
  font-family: var(--font-family-en);
  font-size: 40rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 900px) {
  .c-title-en {
    margin-left: 10rem;
    font-size: 50rem;
  }
}
.c-title-en--white {
  color: var(--color-white);
}

.c-title-ja {
  grid-row: 2/3;
  grid-column: 2/3;
  font-size: 14rem;
  line-height: 1;
  color: var(--color-font-light);
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .c-title-ja {
    grid-row: 1/2;
    grid-column: 3/4;
  }
}
.c-title-ja--white {
  color: var(--color-white);
}

.c-title-small {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 10rem;
  font-family: var(--font-family-en);
  font-size: 16rem;
  line-height: 1;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 900px) {
  .c-title-small {
    gap: 14rem;
    font-size: 20rem;
  }
}
.c-title-small::before {
  display: block;
  grid-row: 1/2;
  grid-column: 1/2;
  align-self: center;
  width: 6rem;
  aspect-ratio: 1/1;
  content: "";
  background-color: var(--color-primary);
  border-radius: 50%;
}

/*!
component > page-kv
------------------------------
*/
.c-page-kv {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 365rem;
  background-color: var(--color-bg-extra-light);
}
@media screen and (min-width: 900px) {
  .c-page-kv {
    height: 467rem;
  }
}
.c-page-kv::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 64rem;
  content: "";
  background-color: var(--color-white);
  border-radius: 30rem 0 0;
}
@media screen and (min-width: 900px) {
  .c-page-kv::after {
    height: 96rem;
    border-radius: 50rem 0 0;
  }
}
.c-page-kv > * {
  width: 100%;
}

.c-page-kv-breadcrumb {
  display: flex;
  justify-content: flex-end;
}

.c-page-kv-inner {
  display: flex;
  flex-direction: column;
  gap: 32rem;
  padding-bottom: 84rem;
}
@media screen and (min-width: 900px) {
  .c-page-kv-inner {
    gap: 56rem;
    padding-bottom: 116rem;
  }
}

.c-page-kv-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 22rem;
}
@media screen and (min-width: 900px) {
  .c-page-kv-title-wrap {
    gap: 28rem;
  }
}

.c-page-kv-title-en {
  font-family: var(--font-family-en);
  font-size: 55rem;
  font-weight: 300;
  line-height: 1;
}
@media screen and (min-width: 900px) {
  .c-page-kv-title-en {
    font-size: 72rem;
  }
}

.c-page-kv-title-ja {
  line-height: 1;
  color: var(--color-font-light);
}

/*!
component > news-item
------------------------------
*/
.c-news-item-link {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 16rem 10rem;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.3s;
}
@media screen and (min-width: 900px) {
  .c-news-item-link {
    flex-direction: row;
    gap: 40rem;
    align-items: center;
    padding: 24rem 20rem;
  }
}
@media (any-hover: hover) {
  .c-news-item-link:hover {
    color: var(--color-primary);
  }
}

.c-news-item-date {
  font-family: var(--font-family-en);
  font-size: 13rem;
  color: var(--color-font-light);
  letter-spacing: 0.025em;
}
@media screen and (min-width: 900px) {
  .c-news-item-date {
    font-size: 14rem;
  }
}

.c-news-item-title {
  line-height: 1.6;
}

/*!
component > pagination
------------------------------
*/
.c-pagination-list {
  display: flex;
  gap: 6rem;
  justify-content: center;
}

.c-pagination-link,
.c-pagination-number,
.c-pagination-dots {
  display: inline-block;
  display: grid;
  place-items: center;
  width: 40rem;
  aspect-ratio: 1/1;
  font-size: 16rem;
  border-radius: 50%;
}

.c-pagination-link {
  background: var(--color-bg-extra-light);
  border: 1px solid currentcolor;
  transition: background-color 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .c-pagination-link:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
  }
  .c-pagination-link:hover .c-pagination-icon {
    background-color: var(--color-white);
  }
}

.c-pagination-icon {
  display: block;
  width: 10rem;
  aspect-ratio: 1/1;
  background-color: var(--color-font-base);
  mask-image: url("../../img/icon-arrow.svg");
  mask-position: center;
  mask-size: cover;
  transition: background-color 0.3s;
}

.c-pagination-icon--prev {
  rotate: 180deg;
}

.c-pagination-number--current {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.c-pagination-dot-icon {
  display: block;
  width: 10rem;
  height: 3rem;
  background-color: var(--color-font-base);
  mask-image: url("../../img/icon-dots-small.svg");
  mask-position: center;
  mask-size: cover;
}

/*!
component > breadcrumb
------------------------------
*/
.c-breadcrumb {
  display: flex;
}

.c-breadcrumb-item {
  display: flex;
  align-items: center;
  font-family: var(--font-family-en);
  font-size: 14rem;
  line-height: 1;
  color: var(--color-font-light);
}
@media screen and (min-width: 900px) {
  .c-breadcrumb-item {
    font-size: 16rem;
  }
}
.c-breadcrumb-item:not(:last-child)::after {
  display: inline-block;
  width: 11rem;
  height: 9rem;
  margin: 0 10rem;
  content: "";
  background-color: var(--color-font-light);
  mask-image: url("../../img/icon-arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.c-breadcrumb-item--current {
  color: var(--color-primary);
}

/*!
component > form
------------------------------
*/
.c-form-required {
  display: inline-block;
  padding: 2rem 8rem;
  font-size: 13rem;
  color: var(--color-white);
  background-color: var(--color-red);
  border-radius: 7rem;
}

.c-form-text {
  width: 100%;
  padding: 12rem 8rem;
  background: var(--color-bg-extra-light);
  border-radius: 8rem;
}
.c-form-text::placeholder {
  color: var(--color-font-light);
}
.c-form-text:focus {
  outline: 1px solid var(--color-primary);
}

.c-form-text--textarea {
  min-height: 200rem;
  field-sizing: content;
}

.c-form-button {
  padding: 14rem 40rem;
  font-size: 18rem;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: 1rem solid var(--color-primary);
  border-radius: 100vh;
  transition: background-color 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .c-form-button:hover {
    color: var(--color-primary);
    background-color: var(--color-white);
  }
}

/*!
component > hours
------------------------------
*/
.c-hours-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.c-hours {
  width: 100%;
  min-width: 640rem;
  margin-top: 16rem;
  overflow: hidden;
  border-spacing: 0;
  border-collapse: separate;
  background: var(--color-white);
  border: 1rem solid rgba(0, 0, 0, 0.12);
  border-radius: 16rem;
}
@media screen and (min-width: 900px) {
  .c-hours {
    margin-top: 32rem;
  }
}
.c-hours th,
.c-hours td {
  padding: 14rem 12rem;
  font-size: 14rem;
  text-align: center;
  border-right: 1rem solid rgba(0, 0, 0, 0.08);
  border-bottom: 1rem solid rgba(0, 0, 0, 0.08);
}
.c-hours thead th {
  font-weight: 600;
  background: rgba(0, 0, 0, 0.03);
}
.c-hours tbody th {
  font-size: 16rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.02);
}
.c-hours tr:last-child th,
.c-hours tr:last-child td {
  border-bottom: 0;
}
.c-hours th:last-child,
.c-hours td:last-child {
  border-right: 0;
}

.c-hours-mark {
  display: inline-grid;
  place-items: center;
  width: 28rem;
  height: 28rem;
  font-size: 16rem;
  line-height: 1;
  border-radius: 999px;
}

.c-hours-mark--open {
  color: var(--color-primary);
  background: rgba(0, 0, 0, 0.02);
}

.c-hours-mark--close {
  color: rgba(0, 0, 0, 0.35);
}

.c-hours-note {
  margin-top: 12rem;
  font-size: 12rem;
  color: var(--color-font-light);
}
@media screen and (min-width: 900px) {
  .c-hours-note {
    font-size: 14rem;
  }
}

/*!
component > clinic-info
------------------------------
*/
.c-clinic-info {
  padding: 20rem;
  margin-top: 24rem;
  background: var(--color-bg-extra-light);
  border-radius: 16rem;
}
@media screen and (min-width: 900px) {
  .c-clinic-info {
    margin-top: 0;
  }
}

.c-clinic-name {
  font-size: 16rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.c-clinic-address {
  margin-top: 10rem;
  line-height: 1.8;
}
.c-clinic-address span {
  display: block;
}

.c-clinic-meta {
  display: grid;
  gap: 8rem;
  padding-left: 0;
  margin-top: 14rem;
  list-style: none;
}

.c-clinic-meta-item {
  display: flex;
  gap: 8rem;
  align-items: center;
  font-size: 14rem;
  color: var(--color-font-light);
}
.c-clinic-meta-item img {
  width: 18rem;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.c-clinic-appoint {
  display: grid;
  gap: 6rem;
  margin-top: 16rem;
  font-size: 14rem;
}

.c-clinic-appoint-tel {
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .c-clinic-appoint-tel:hover {
    text-decoration: underline;
    text-underline-offset: 4rem;
  }
}

.c-clinic-map {
  margin-top: 32rem;
}
@media screen and (min-width: 900px) {
  .c-clinic-map {
    margin-top: 0;
  }
}

.c-clinic-map-frame {
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 3rem solid currentcolor;
  border-radius: 16rem;
}
.c-clinic-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (min-width: 900px) {
  .c-clinic-map-frame {
    aspect-ratio: 1/1;
  }
}

/*!
component > modal
------------------------------
*/
.c-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.c-modal[aria-hidden=false] {
  display: block;
}

.c-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.c-modal-content {
  position: relative;
  max-width: 500px;
  margin: 10vh auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
}

.c-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.c-modal-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.c-modal-text {
  margin-bottom: 16px;
  line-height: 1.6;
}

.c-modal-button {
  --font-size: 18rem;
  --gap: 14rem;
  display: inline-flex;
  gap: var(--gap);
  align-items: center;
  font-size: var(--font-size);
  line-height: 1;
  color: var(--color-primary);
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .c-modal-button {
    --font-size: 20rem;
    --gap: 24rem;
  }
}
.c-modal-button::after {
  --size: 47rem;
  --dot-size: 5rem;
  width: var(--size);
  aspect-ratio: 1/1;
  content: "";
  mask-image: url("../../img/icon-stamp.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--color-primary);
  transition: scale 0.3s;
}
@media screen and (min-width: 900px) {
  .c-modal-button::after {
    --size: 58rem;
    --dot-size: 6rem;
  }
}

/*!
layout > container
------------------------------
*/
.l-container-s {
  padding-inline: 20rem;
}
@media screen and (min-width: 900px) {
  .l-container-s {
    padding-inline: 303rem;
  }
}

.l-container {
  padding-inline: 20rem;
}
@media screen and (min-width: 900px) {
  .l-container {
    padding-inline: 83rem;
  }
}

/*!
layout > header
------------------------------
*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  display: flex;
  gap: 61rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 23rem 12rem;
  background-color: rgba(255, 255, 255, 0);
}
@media screen and (min-width: 900px) {
  .l-header {
    padding: 24rem 65rem;
  }
}

.l-header--top .l-header-logo-color {
  display: none;
}
.l-header--top.is-active .l-header-logo-white {
  display: none;
}
.l-header--top.is-active .l-header-logo-color {
  display: block;
}
@media screen and (min-width: 900px) {
  .l-header--top.is-active .l-header-menu-link:not(.l-header-menu-link--appoint) {
    color: var(--color-font-base);
  }
}

.l-header-logo {
  width: 240rem;
}
@media screen and (min-width: 900px) {
  .l-header-logo {
    width: 290rem;
  }
}

.l-header-menu {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 900px) {
  .l-header-menu {
    position: static;
    display: block;
    width: auto;
    height: auto;
    background-color: transparent;
  }
}
.l-header-menu::backdrop {
  display: none;
}

.l-header-menu-open-button,
.l-header-menu-close-button {
  display: grid;
  place-items: center;
  width: 50rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .l-header-menu-open-button,
  .l-header-menu-close-button {
    display: none;
  }
}

.l-header-menu-open-button {
  background-color: var(--color-primary);
}
.l-header-menu-open-button img {
  width: 24rem;
}

.l-header-menu-close-button {
  position: absolute;
  top: 20rem;
  right: 12rem;
  background-color: var(--color-white);
}
.l-header-menu-close-button img {
  width: 28rem;
}

.l-header-menu-nav {
  width: 319rem;
  padding: 40rem;
  margin-left: auto;
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 0 0 0 30rem;
}
@media screen and (min-width: 900px) {
  .l-header-menu-nav {
    width: auto;
    padding: 0;
    color: var(--color-font-base);
    background-color: transparent;
    border-radius: 0;
  }
}

.l-header-menu-list {
  display: flex;
  flex-direction: column;
  gap: 16rem;
}
@media screen and (min-width: 900px) {
  .l-header-menu-list {
    flex-direction: row;
    gap: 40rem;
    align-items: center;
  }
}

@media screen and (min-width: 900px) {
  .l-header-menu-item--top {
    display: none;
  }
}

.l-header-menu-link {
  display: block;
}

@media screen and (min-width: 900px) {
  .l-header-menu-link--current {
    color: var(--color-primary);
  }
}

@media screen and (min-width: 900px) {
  .l-header-menu-link--white {
    color: var(--color-white);
  }
}

@media screen and (min-width: 900px) {
  .l-header-menu-link--appoint {
    display: flex;
    gap: 9rem;
    align-items: center;
    padding: 9rem 31rem;
    font-family: var(--font-family-en);
    color: var(--color-white);
    background-color: var(--color-primary);
    border: 1rem solid var(--color-primary);
    border-radius: 100vh;
    transition: background-color 0.3s, color 0.3s;
  }
  .l-header-menu-link--appoint::before {
    display: block;
    width: 16rem;
    aspect-ratio: 1/1;
    content: "";
    background-color: var(--color-white);
    mask-image: url("../../img/icon-calendar.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    transition: background-color 0.3s;
  }
}
@media screen and (min-width: 900px) and (any-hover: hover) {
  .l-header-menu-link--appoint:hover {
    color: var(--color-primary);
    background-color: var(--color-white);
  }
  .l-header-menu-link--appoint:hover::before {
    background-color: var(--color-primary);
  }
}

.l-header-menu-text-en {
  display: block;
  font-family: var(--font-family-en);
  font-size: 28rem;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 900px) {
  .l-header-menu-text-en {
    display: none;
  }
}

.l-header-menu-text-ja {
  display: block;
  font-size: 14rem;
  opacity: 0.8;
}
@media screen and (min-width: 900px) {
  .l-header-menu-text-ja {
    font-size: 18rem;
    line-height: 1;
  }
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  display: flex;
  flex-direction: column;
  gap: 24rem;
  padding: 54rem 40rem;
  color: var(--color-white);
  background-color: var(--color-primary);
}
@media screen and (min-width: 900px) {
  .l-footer {
    flex-flow: row wrap;
    gap: 80rem 0;
    justify-content: space-between;
    padding: 54rem 65rem 32rem;
  }
}

.l-footer-logo {
  width: 250rem;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .l-footer-logo {
    order: 1;
    margin: 0;
  }
}

.l-footer-info {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  font-size: 13rem;
  text-align: center;
}
.l-footer-info * {
  letter-spacing: 0.075em;
}
@media screen and (min-width: 900px) {
  .l-footer-info {
    gap: 5rem;
    order: 3;
    text-align-last: left;
  }
}

.l-footer-address span {
  display: block;
}
@media screen and (min-width: 900px) {
  .l-footer-address {
    display: inline-block;
  }
}

.l-footer-appoint {
  display: flex;
  gap: 12rem;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .l-footer-appoint {
    justify-content: flex-start;
  }
}

.l-footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16rem 32rem;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .l-footer-menu-list {
    gap: 40rem;
    order: 2;
  }
}

.l-footer-menu-item {
  font-family: var(--font-family-en);
  font-size: 18rem;
  line-height: 1;
}
.l-footer-menu-item * {
  letter-spacing: 0.025em;
}

.l-footer-menu-item--appoint {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .l-footer-menu-item--appoint {
    width: auto;
  }
}
.l-footer-menu-item--appoint a {
  display: flex;
  gap: 9rem;
  align-items: center;
  justify-content: center;
  padding: 9rem;
  text-align: center;
  border: 1rem solid var(--color-white);
  border-radius: 100vh;
  transition: background-color 0.3s color 0.3s;
}
@media screen and (min-width: 900px) {
  .l-footer-menu-item--appoint a {
    padding: 9rem 31rem;
  }
}
.l-footer-menu-item--appoint a::before {
  display: block;
  width: 16rem;
  aspect-ratio: 1/1;
  content: "";
  background-color: var(--color-white);
  mask-image: url("../../img/icon-calendar.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .l-footer-menu-item--appoint a:hover {
    color: var(--color-primary);
    background-color: var(--color-white);
  }
  .l-footer-menu-item--appoint a:hover::before {
    background-color: var(--color-primary);
  }
}

.l-footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  font-size: 12rem;
  color: var(--color-white);
  text-align: center;
  opacity: 0.7;
}
@media screen and (min-width: 900px) {
  .l-footer-copyright {
    align-self: flex-end;
    order: 3;
    text-align: right;
  }
}

.l-footer-note {
  font-size: 11rem;
  opacity: 0.8;
}

/*# sourceMappingURL=style.css.map */
