@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

/* ------------------------------------
// base
------------------------------------ */
:root {
  --color-base: #241f1f;
  --color-body: #fff;
  --color-beige1: #ffeddf;
  --color-beige2: #f2e2d7;
  --color-beige3: #fef6f2;
  --color-beige4: #faeee4;
  --color-beige5: #f9f1ed;
  --color-beige6: #fff5ee;
  --color-beige7: #fffaf6;
  --color-beige8: #fdf4ef;
  --color-beige9: #fff8f2;
  --color-beige10: #fcf2eb;
  --color-beige11: #f6e9e2;
  --color-brown1: #d8aaa0;
  --color-brown2: #d9a494;
  --color-brown3: #eac9b5;
  --color-red1: #ed7060;
  --color-gray1: #e7ded9;
  --color-white_op: rgb(from #fff r g b / 0.7);
}

html {
  font-size: 62.5%;
}
body {
  color: var(--color-base);
  background: var(--color-body);
  font-family: "Zen Old Mincho", sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(1.5rem, 1.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
@media (width < 375px) {
  body {
    zoom: progress(100lvw, 0px, 375px);
    -webkit-text-size-adjust: initial;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}
a:link {
  color: var(--color-base);
  text-decoration: none;
}
a:visited {
  color: var(--color-base);
  text-decoration: none;
}
a:hover {
  color: var(--color-base);
  text-decoration: none;
}
a:active {
  color: var(--color-base);
  text-decoration: none;
}

a {
  transition: 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (min-width: 1023px) {
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus::-ms-input-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

/* // screen
----------------------------------- */
.sp {
  display: none !important;
}

.tb {
  display: none !important;
}

.md {
  display: none !important;
}

.pc {
  display: block !important;
}

.pconly {
  display: block !important;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: none !important;
  }
  .md {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
  .pc {
    display: block !important;
  }
  .pconly {
    display: none !important;
  }
}
@media screen and (max-width: 1200px) {
  .sp {
    display: none !important;
  }
  .md {
    display: block !important;
  }
  .tb {
    display: block !important;
  }
  .pc {
    display: block !important;
  }
  .pconly {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .tb {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .pconly {
    display: none !important;
  }
}
/* ------------------------------------
// header
------------------------------------ */
header {
  background: var(--color-beige1);
  position: relative;
  z-index: 10;
  top: 0;
  left: 0;
  padding: clamp(2rem, 2.8vw, 3.5rem) 2rem clamp(3rem, 3.6vw, 4.5rem);
}
@media screen and (max-width: 768px) {
  header {
    padding-inline: 1.5rem;
  }
}
header::after {
  content: "";
  mask: url(../img/cmn/bg_wave_03.svg) no-repeat 0 0/100% 100%;
  background: var(--color-beige1);
  position: absolute;
  width: 100%;
  aspect-ratio: 1440/45;
  left: 0;
  bottom: 1px;
  transform: translateY(100%);
}
header .header {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
header .header .site {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3.1vw, 3.8rem);
}
header .header .site > p {
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
header .header .site .logo {
  max-width: 47rem;
}
@media screen and (max-width: 768px) {
  header .header .site .logo {
    width: 27rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 819px) {
  header .header .site > p {
    display: none;
  }
  header .header .site .logo {
    aspect-ratio: 175/170;
    width: 8.8rem;
    background: url(../img/cmn/logo_mark.webp) no-repeat 0 0/contain;
  }
  header .header .site .logo img {
    visibility: hidden;
  }
}
@media screen and (max-width: 768px) {
  header .header .site > p {
    margin-left: 1rem;
  }
  header .header .site .logo {
    width: 27rem;
  }
}
header .header .util {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  justify-content: end;
  gap: 2rem 2.5rem;
  grid-template-areas: "reserve tel" "gnav gnav";
}
header .header .util .btn {
  justify-self: end;
}
header .header .util .btn a {
  background: var(--color-white_op);
  border-radius: 50vh;
  aspect-ratio: 180/60;
  width: clamp(16rem, 14.5vw, 18rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
header .header .util .btn a::before {
  content: "";
  width: 3rem;
  background-size: contain;
  background-repeat: no-repeat;
}
header .header .util .btn a:hover {
  background: var(--color-beige2);
}
header .header .util .btn.reserve {
  grid-area: reserve;
}
header .header .util .btn.reserve a::before {
  content: "";
  aspect-ratio: 60/44;
  background-image: url(../img/cmn/icon_pc.webp);
}
header .header .util .btn.monshin {
  grid-area: monshin;
}
header .header .util .btn.monshin a::before {
  content: "";
  aspect-ratio: 60/48;
  background-image: url(../img/cmn/icon_monshin.webp);
}
header .header .util .tel {
  grid-area: tel;
  font-family: "Jost", sans-serif;
}
header .header .util .tel a {
  font-size: clamp(2rem, 2.4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  letter-spacing: 0.05em;
}
header .header .util .tel a::before {
  content: "";
  aspect-ratio: 17/30;
  width: 1.7rem;
  background: url(../img/cmn/icon_mobile.webp) no-repeat 0 0/contain;
}
header .header .util .gnav {
  grid-area: gnav;
  background: var(--color-white_op);
  border-radius: 50vh;
  padding: 1em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header .util .gnav li {
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
header .header .util .gnav li + li::before {
  content: "｜";
  color: #d9a494;
  margin: 0 0.3em 0 0.4em;
}
header .header .util .gnav li a:hover, header .header .util .gnav li a.current {
  color: var(--color-brown2);
}
@media screen and (max-width: 768px) {
  header .header .util {
    display: none;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
header.fixed {
  width: 100%;
  position: fixed;
  padding-block: 1rem clamp(1rem, 1.6vw, 2rem);
  animation: slideDown 0.3s ease-out forwards;
}
header.fixed.is-leaving {
  animation: slideUp 0.1s ease-in forwards;
}
header.fixed::after {
  transform: translateY(100%) scale(-1, 1);
}
header.fixed .header {
  align-items: center;
}
header.fixed .header .site p {
  display: none;
}
header.fixed .header .util {
  justify-items: end;
  grid-template-columns: 1fr max-content max-content;
  gap: 1rem 1.5rem;
}
header.fixed .header .util .btn a {
  aspect-ratio: 160/40;
  width: 16rem;
}
header.fixed .header .util .gnav {
  padding: 0.5em 1em;
}
header .btn_menu {
  display: none;
}
@media screen and (max-width: 768px) {
  header .btn_menu {
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    aspect-ratio: 1;
    width: 5rem;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background: #fff;
  }
  header .btn_menu > div {
    width: 1.5rem;
    height: 0.9rem;
    position: relative;
  }
  header .btn_menu > div > span {
    width: 100%;
    height: 1px;
    background: var(--color-base);
    position: absolute;
    left: 0;
    transition: 0.3s;
  }
  header .btn_menu > div > span:nth-child(1) {
    top: 0;
  }
  header .btn_menu > div > span:nth-child(2) {
    top: 50%;
    margin-top: -1px;
  }
  header .btn_menu > div > span:nth-child(3) {
    bottom: 0;
  }
  .js-menuOpen header .btn_menu > div > span:nth-child(1) {
    top: 50%;
    transform: rotate(-135deg);
  }
  .js-menuOpen header .btn_menu > div > span:nth-child(2) {
    opacity: 0;
  }
  .js-menuOpen header .btn_menu > div > span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: rotate(135deg);
  }
}

/* ------------------------------------
// menu
------------------------------------ */
#menu {
  display: none;
}
@media screen and (max-width: 768px) {
  #menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 5;
    background: #fff4ee;
    padding: 17rem 3rem 8rem;
    overflow-y: auto;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: padding 0.3s, opacity 0.3s 0s, visibility 0s 0.3s, transform 0s 0.3s;
  }
  .js-menuOpen #menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: padding 0.3s, opacity 0.3s 0s, visibility 0s 0s, transform 0s 0s;
  }
  header.fixed + #menu {
    padding-top: 11rem;
  }
  #menu .gnav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
  }
  #menu .gnav li a {
    display: block;
    border-radius: 1rem;
    color: #fff;
    text-align: center;
    padding: 0.6em 0;
    background: var(--color-brown1);
    font-size: 1.6rem;
  }
  #menu .time {
    margin-top: 2.5rem;
  }
  #menu .time h2 {
    background: var(--color-brown1);
    color: #fff;
    letter-spacing: 0.5em;
    display: grid;
    place-content: center;
    padding: 1em;
    font-size: 1.6rem;
    border-radius: 1rem 1rem 0 0;
  }
  #menu .time .detail {
    padding: 3rem 1.5rem 2.5rem;
    border-radius: 0 0 1rem 1rem;
    background: #fff;
    padding: 2rem;
  }
  #menu .time .detail > div table {
    width: 100%;
  }
  #menu .time .detail > div table th,
  #menu .time .detail > div table td {
    font-weight: 400;
    text-align: center;
    border-bottom: solid 1px var(--color-gray1);
    padding: 0.3em;
    font-size: 1.4rem;
  }
  #menu .time .detail > div table thead th {
    padding-top: 0;
  }
  #menu .time .detail > div table tbody th {
    text-align: left;
    width: 4em;
  }
  #menu .time .detail > div table tbody td {
    font-size: clamp(1.4rem, 1.3vw, 1.6rem);
    color: var(--color-brown1);
  }
  #menu .time .detail > div table tbody td.off {
    color: var(--color-base);
  }
  #menu .time .detail > div .note {
    display: flex;
    margin: 2rem -1rem 0 0;
  }
  #menu .time .detail > div .note span {
    color: var(--color-brown1);
    flex-shrink: 0;
  }
  #menu .time .detail > div .util {
    display: none;
  }
}

/* ------------------------------------
// contact_fixed
------------------------------------ */
#contact_fixed {
  width: fit-content;
  display: flex;
  position: fixed;
  z-index: 11;
  right: 0;
  top: 30%;
  transition: 0.3s;
  transform: translateX(calc(100% - 4.5rem));
}
.js-contactOpen #contact_fixed {
  transform: translateX(0);
}
.js-contactOpen #contact_fixed h2::after {
  transform: translateX(-50%) scale(1, 1);
}
@media screen and (max-width: 768px) {
  #contact_fixed {
    display: none;
  }
}
#contact_fixed h2 {
  width: 4.5rem;
  border-radius: 1rem 0 0 1rem;
  background: var(--color-brown1);
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 0.5em;
  display: grid;
  place-content: center;
  cursor: pointer;
  position: relative;
}
#contact_fixed h2::after {
  content: "";
  aspect-ratio: 6/10;
  width: 0.9rem;
  background: url(../img/cmn/icon_arrow_02.svg) no-repeat 0 0/contain;
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%) scale(-1, 1);
}
#contact_fixed .detail {
  flex: 1;
  background: #fffcfa;
  padding: 1rem 1.5rem 1.5rem;
}
#contact_fixed .detail > div {
  max-width: 460px;
  margin: 0 auto;
}
#contact_fixed .detail > div table {
  width: 100%;
}
#contact_fixed .detail > div table th,
#contact_fixed .detail > div table td {
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  font-weight: 400;
  padding: 0.3em;
  text-align: center;
  border-bottom: solid 1px var(--color-gray1);
}
#contact_fixed .detail > div table thead th {
  padding-top: 0;
}
#contact_fixed .detail > div table tbody th {
  text-align: left;
  width: 8.5em;
}
#contact_fixed .detail > div table tbody td {
  font-size: clamp(1.2rem, 1.1vw, 1.4rem);
  color: var(--color-brown1);
}
#contact_fixed .detail > div table tbody td.off {
  color: var(--color-base);
}
#contact_fixed .detail > div .note {
  display: flex;
  margin-top: 2rem;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
#contact_fixed .detail > div .note span {
  color: var(--color-brown1);
}
#contact_fixed .detail > div .util {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "reserve tel";
  gap: 2rem;
  align-items: center;
}
#contact_fixed .detail > div .util .btn a {
  background: var(--color-beige4);
  border-radius: 50vh;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
#contact_fixed .detail > div .util .btn a::before {
  content: "";
  width: 3rem;
  background-size: contain;
  background-repeat: no-repeat;
}
#contact_fixed .detail > div .util .btn a:hover {
  background: var(--color-beige2);
}
#contact_fixed .detail > div .util .btn.reserve {
  grid-area: reserve;
}
#contact_fixed .detail > div .util .btn.reserve a::before {
  content: "";
  aspect-ratio: 60/44;
  background-image: url(../img/cmn/icon_pc.webp);
}
#contact_fixed .detail > div .util .btn.monshin {
  grid-area: monshin;
}
#contact_fixed .detail > div .util .btn.monshin a::before {
  content: "";
  aspect-ratio: 60/48;
  background-image: url(../img/cmn/icon_monshin.webp);
}
#contact_fixed .detail > div .util .tel {
  grid-area: tel;
  justify-self: center;
  font-family: "Jost", sans-serif;
}
#contact_fixed .detail > div .util .tel a {
  font-size: clamp(2rem, 2.1vw, 2.6rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  letter-spacing: 0.05em;
}
#contact_fixed .detail > div .util .tel a::before {
  content: "";
  aspect-ratio: 17/30;
  width: 1.7rem;
  background: url(../img/cmn/icon_mobile.webp) no-repeat 0 0/contain;
}

/* ------------------------------------
// main
------------------------------------ */
main > section,
main .section {
  position: relative;
  padding: clamp(4rem, 7.3vw, 9rem) clamp(3rem, 5.1vw, 6.3rem);
  background: var(--color-beige5);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  main > section,
  main .section {
    padding-inline: 3rem;
  }
}
main > section::before, main > section::after,
main .section::before,
main .section::after {
  content: "";
  mask: url(../img/cmn/bg_wave_04.svg) no-repeat 0 0/100% 100%;
  background: var(--color-beige5);
  position: absolute;
  width: 100%;
  aspect-ratio: 1440/51;
  left: 0;
}
main > section::before,
main .section::before {
  top: 1px;
  transform: translateY(-100%) scale(1, -1);
}
main > section::after,
main .section::after {
  display: none;
  bottom: 1px;
  transform: translateY(100%);
}
main > section:first-child,
main .section:first-child {
  padding-block: clamp(5rem, 21.8vw, 27rem) clamp(10rem, 15.3vw, 19rem);
  background: var(--color-beige3);
}
main > section:first-child::before, main > section:first-child::after,
main .section:first-child::before,
main .section:first-child::after {
  mask-image: url(../img/cmn/bg_wave_03.svg);
  background: var(--color-beige3);
  aspect-ratio: 1440/45;
}
main > section:last-child::after,
main .section:last-child::after {
  display: block;
}
main p {
  line-height: 2;
}
main p + * {
  margin-top: 2em;
}
main .inner {
  max-width: 1200px;
  margin-inline: auto;
}

/* ------------------------------------
// footer
------------------------------------ */
footer {
  margin-top: clamp(5rem, 11.3vw, 14rem);
  padding-bottom: 5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 8rem;
  }
}
footer .gnav {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .gnav li + li::before {
  content: "｜";
  color: var(--color-brown2);
  margin: 0 0.3em 0 0.4em;
}
footer .gnav li a:hover, footer .gnav li a.current {
  color: var(--color-brown2);
}
@media screen and (max-width: 768px) {
  footer .gnav {
    margin: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
  }
  footer .gnav li + li::before {
    display: none;
  }
  footer .gnav li a {
    display: block;
    border-radius: 1rem;
    color: #fff;
    text-align: center;
    padding: 0.6em 0;
    background: var(--color-brown1);
    font-size: 1.6rem;
  }
  footer .gnav li a:hover, footer .gnav li a.current {
    color: #fff;
  }
}
footer .footer {
  background: var(--color-beige2);
  position: relative;
  padding: 16.5rem 2rem 3.5rem;
  margin: clamp(5rem, 11.3vw, 14rem) 0 10rem;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 5rem 3rem 3rem;
    margin: 5.5rem 0 0;
  }
}
footer .footer .pagetop {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: clamp(5rem, 8.1vw, 10rem);
  aspect-ratio: 1;
  background: url(../img/cmn/icon_pagetop.webp) no-repeat 0 0/contain;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
}
footer .footer .pagetop.show {
  visibility: visible;
  opacity: 1;
}
footer .footer .pagetop.bottom {
  position: absolute;
  bottom: auto;
  top: 0;
}
@media screen and (max-width: 768px) {
  footer .footer .pagetop {
    bottom: 8rem;
    background-image: url(../img/cmn/icon_pagetop_sp.webp);
  }
  footer .footer .pagetop.bottom {
    position: fixed;
    top: auto;
    bottom: 8rem;
  }
}
footer .footer::before, footer .footer::after {
  content: "";
  mask: url(../img/cmn/bg_wave_01.svg) no-repeat 0 0/100% 100%;
  background: var(--color-beige2);
  position: absolute;
  width: 100%;
  aspect-ratio: 1440/57;
}
footer .footer::before {
  left: 0;
  top: 1px;
  transform: translateY(-100%) scale(1, -1);
}
footer .footer::after {
  left: 0;
  bottom: 1px;
  transform: translateY(100%);
}
@media screen and (max-width: 768px) {
  footer .footer::after {
    transform: translateY(100%) scale(-1, 1);
  }
}
footer .footer .clinic {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  footer .footer .clinic {
    display: block;
  }
}
footer .footer .clinic .data {
  flex-basis: 65rem;
}
footer .footer .clinic .data .time {
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .footer .clinic .data .time {
    display: block;
  }
}
footer .footer .clinic .data .time h2 {
  border-radius: 1rem 0 0 1rem;
  background: var(--color-brown1);
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 0.5em;
  display: grid;
  place-content: center;
  padding: 1em;
}
@media screen and (max-width: 768px) {
  footer .footer .clinic .data .time h2 {
    font-size: 1.6rem;
    writing-mode: horizontal-tb;
    border-radius: 1rem 1rem 0 0;
  }
}
footer .footer .clinic .data .time .detail {
  flex: 1;
  border-radius: 0 1rem 1rem 0;
  background: var(--color-white_op);
  padding: 3rem 1.5rem 2.5rem;
}
@media screen and (max-width: 768px) {
  footer .footer .clinic .data .time .detail {
    border-radius: 0 0 1rem 1rem;
    background: #fff;
    padding: 2rem;
  }
}
footer .footer .clinic .data .time .detail > div {
  max-width: 460px;
  margin: 0 auto;
}
footer .footer .clinic .data .time .detail > div table {
  width: 100%;
}
footer .footer .clinic .data .time .detail > div table th,
footer .footer .clinic .data .time .detail > div table td {
  font-weight: 400;
  padding: 0.8em;
  text-align: center;
  border-bottom: solid 1px var(--color-gray1);
}
@media screen and (max-width: 768px) {
  footer .footer .clinic .data .time .detail > div table th,
  footer .footer .clinic .data .time .detail > div table td {
    padding: 0.3em;
    font-size: 1.4rem;
  }
}
footer .footer .clinic .data .time .detail > div table thead th {
  padding-top: 0;
}
footer .footer .clinic .data .time .detail > div table tbody th {
  text-align: left;
  width: 8.5em;
}
@media screen and (max-width: 768px) {
  footer .footer .clinic .data .time .detail > div table tbody th {
    width: 4em;
  }
}
footer .footer .clinic .data .time .detail > div table tbody td {
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  color: var(--color-brown1);
}
footer .footer .clinic .data .time .detail > div table tbody td.off {
  color: var(--color-base);
}
footer .footer .clinic .data .time .detail > div .note {
  display: flex;
  margin-top: 2rem;
}
footer .footer .clinic .data .time .detail > div .note span {
  color: var(--color-brown1);
}
footer .footer .clinic .data .time .detail > div .util {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "reserve tel";
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .footer .clinic .data .time .detail > div .util {
    display: none;
  }
}
footer .footer .clinic .data .time .detail > div .util .btn a {
  background: var(--color-beige4);
  border-radius: 50vh;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
footer .footer .clinic .data .time .detail > div .util .btn a::before {
  content: "";
  width: 3rem;
  background-size: contain;
  background-repeat: no-repeat;
}
footer .footer .clinic .data .time .detail > div .util .btn a:hover {
  background: var(--color-beige2);
}
footer .footer .clinic .data .time .detail > div .util .btn.reserve {
  grid-area: reserve;
}
footer .footer .clinic .data .time .detail > div .util .btn.reserve a::before {
  content: "";
  aspect-ratio: 60/44;
  background-image: url(../img/cmn/icon_pc.webp);
}
footer .footer .clinic .data .time .detail > div .util .btn.monshin {
  grid-area: monshin;
}
footer .footer .clinic .data .time .detail > div .util .btn.monshin a::before {
  content: "";
  aspect-ratio: 60/48;
  background-image: url(../img/cmn/icon_monshin.webp);
}
footer .footer .clinic .data .time .detail > div .util .tel {
  grid-area: tel;
  font-family: "Jost", sans-serif;
  margin-right: -2rem;
}
footer .footer .clinic .data .time .detail > div .util .tel a {
  font-size: clamp(2rem, 2.3vw, 2.8rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  letter-spacing: 0.05em;
}
footer .footer .clinic .data .time .detail > div .util .tel a::before {
  content: "";
  aspect-ratio: 17/30;
  width: 1.7rem;
  background: url(../img/cmn/icon_mobile.webp) no-repeat 0 0/contain;
}
footer .footer .clinic .data .address {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-block: 5rem 4rem;
}
footer .footer .clinic .data .address::before {
  content: "";
  aspect-ratio: 82/104;
  width: 4.1rem;
  background: url(../img/cmn/icon_pin.webp) no-repeat 0 0/contain;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  footer .footer .clinic .data .address {
    align-items: end;
    margin-block: 2rem 3rem;
    font-size: 1.6rem;
  }
}
footer .footer .clinic .data .parking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  footer .footer .clinic .data .parking {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
footer .footer .clinic .data .parking li {
  background: var(--color-white_op);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-radius: 1rem;
  height: 8rem;
}
@media screen and (max-width: 768px) {
  footer .footer .clinic .data .parking li {
    font-size: 1.6rem;
  }
}
footer .footer .clinic .data .parking li::before {
  content: "";
}
footer .footer .clinic .data .parking li.car::before {
  aspect-ratio: 134/60;
  width: 6.7rem;
  background: url(../img/cmn/icon_car.webp) no-repeat 0 0/contain;
}
footer .footer .clinic .data .parking li.bike::before {
  aspect-ratio: 112/68;
  width: 5.6rem;
  background: url(../img/cmn/icon_bike.webp) no-repeat 0 0/contain;
}
footer .footer .clinic .data .access {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  footer .footer .clinic .data .access {
    margin-top: 3rem;
  }
}
footer .footer .clinic .data .access li {
  position: relative;
  padding-left: 1.2em;
  line-height: 2;
}
footer .footer .clinic .data .access li::before {
  position: absolute;
  left: 0;
  top: 0.8em;
  content: "";
  aspect-ratio: 1;
  width: 0.8rem;
  border-radius: 50%;
  background: var(--color-brown1);
}
footer .footer .clinic .data .access li .indent {
  margin-left: 1em;
}
footer .footer .clinic .map {
  flex-basis: 48rem;
}
footer .footer .clinic .map .gmap {
  width: 100%;
  height: 80%;
}
footer .footer .clinic .map .gmap iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  footer .footer .clinic .map {
    margin-top: 3rem;
  }
  footer .footer .clinic .map .gmap {
    height: 30rem;
  }
}
footer .footer .clinic .map .btn {
  margin-top: 3rem;
}
footer .footer .clinic .map .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: #fff;
  border-radius: 50vh;
  padding-block: 0.9em;
  background: var(--color-brown1);
  font-family: "Jost", sans-serif;
}
footer .footer .clinic .map .btn a:hover {
  background: #ecc7ae;
}
footer .footer .clinic .map .btn a::after {
  content: "";
  aspect-ratio: 42/15;
  width: 2.1rem;
  background: url(../img/cmn/icon_arrow_01.svg) no-repeat 0 0/contain;
}
@media screen and (max-width: 768px) {
  footer .footer .clinic .map .btn {
    margin-top: 1.5rem;
  }
  footer .footer .clinic .map .btn a {
    padding-block: 1.1em;
    font-size: 1.6rem;
  }
}
footer .copy {
  max-width: 1240px;
  margin-inline: auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
footer .copy .logo {
  max-width: 40rem;
}
footer .copy p {
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  footer .copy .logo {
    display: none;
  }
  footer .copy p {
    padding: 5rem 0 2rem 2rem;
  }
}
footer .util_fixed {
  display: none;
}
@media screen and (max-width: 768px) {
  footer .util_fixed {
    position: fixed;
    z-index: 10;
    width: 100%;
    left: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #fff;
  }
  footer .util_fixed > * a {
    background: var(--color-beige4);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6rem;
    gap: 0.7rem;
  }
  footer .util_fixed > * a::before {
    content: "";
    width: 2.4rem;
    background-size: contain;
    background-repeat: no-repeat;
  }
  footer .util_fixed > *.reserve a {
    font-size: 1.6rem;
  }
  footer .util_fixed > *.reserve a::before {
    content: "";
    aspect-ratio: 60/44;
    background-image: url(../img/cmn/icon_pc.webp);
  }
  footer .util_fixed > *.monshin a::before {
    content: "";
    aspect-ratio: 60/48;
    background-image: url(../img/cmn/icon_monshin.webp);
  }
  footer .util_fixed > *.tel {
    font-family: "Jost", sans-serif;
  }
  footer .util_fixed > *.tel a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.05em;
    padding: 0 1rem;
    font-size: 1.8rem;
  }
  footer .util_fixed > *.tel a::before {
    content: "";
    aspect-ratio: 17/30;
    width: 1.1rem;
    background: url(../img/cmn/icon_mobile.webp) no-repeat 0 0/contain;
  }
}