@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kaisei+HarunoUmi:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dai+Banna+SIL:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;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
------------------------------------ */
html {
  font-size: 62.5%;
}
body {
  background: url(/lib/img/cmn/body_bg.webp) repeat center center;
  color: #393836;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(1.6rem, 1.3vw, 1.8rem);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
a:link {
  color: #393836;
  text-decoration: none;
}
a:visited {
  color: #393836;
  text-decoration: none;
}
a:hover {
  color: #393836;
  text-decoration: none;
}
a:active {
  color: #393836;
  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;
}

.pc {
  display: block !important;
}

.pconly {
  display: block !important;
}

@media screen and (max-width: 1024px) {
  .sp {
    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;
  }
  .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
------------------------------------ */
.js-timeOpen #ov {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(57, 56, 54, 0.6);
  z-index: 6;
}

#header {
  position: relative;
  z-index: 10;
  padding: 0 20px;
  /* header/gnav */
  /**/
  /**/
  /**/
  /**/
}
@media screen and (max-width: 768px) {
  #header {
    padding: 0 0;
  }
  .js-timeOpen #header {
    background: #fff;
  }
}
#header header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: grid;
  grid-template-columns: minmax(300px, 30%) 1fr;
  gap: clamp(2rem, 2.1vw, 3rem);
}
#header header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em clamp(1rem, 1.4vw, 2rem);
  font-weight: 500;
  font-size: clamp(1.6rem, 1.3vw, 1.8rem);
  font-family: "Zen Old Mincho", serif;
}
#header header nav ul li.reserve a {
  display: block;
  background: #83AD28;
  padding: 0.5em clamp(1.5rem, 2.1vw, 3rem);
  border-radius: 50vh;
  color: #FFF;
}
#header header nav ul li.tel {
  display: none;
}
#header header .btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  #header header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    padding: 3rem 0;
  }
  #header header .logo {
    max-width: 400px;
    margin: 0 auto 1rem;
  }
  #header header nav ul {
    padding: 0 4rem;
  }
  #header header nav ul li a {
    text-align: center;
    display: block;
  }
  #header header nav ul li.reserve {
    position: absolute;
    right: 0;
    top: 5rem;
  }
  #header header nav ul li.reserve a {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #header header {
    display: flex;
    max-width: none;
    padding: 1rem 2rem;
  }
  #header header .logo {
    margin: 0 auto 0 0;
  }
  #header header nav {
    display: none;
  }
  #header header .btn {
    display: flex;
    gap: 1rem;
  }
  #header header .btn > * {
    width: 4rem;
    height: 4rem;
    cursor: pointer;
    position: relative;
    box-shadow: 3px 3px 3px #CCC;
  }
  #header header .btn > *.btn_time {
    background: #978B4D;
    border-radius: 100vh;
  }
  #header header .btn > *.btn_time::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2.1rem;
    height: 2.3rem;
    background: url(../img/cmn/icon_calendar.webp) no-repeat 0 0/100% auto;
    top: 0.7rem;
  }
  .js-menuOpen #header header .btn > *.btn_time {
    opacity: 0;
    visibility: hidden;
    cursor: default;
  }
  #header header .btn > *.btn_menu {
    background: #83AD28;
    border-radius: 100vh;
  }
  #header header .btn > *.btn_menu .line {
    width: 1rem;
    height: 1.4rem;
    position: absolute;
    top: 1.3rem;
    left: 50%;
    transform: translateX(-50%);
  }
  #header header .btn > *.btn_menu .line span {
    transition: 0.3s;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
  }
  #header header .btn > *.btn_menu .line span:nth-of-type(1) {
    top: 0;
  }
  #header header .btn > *.btn_menu .line span:nth-of-type(2) {
    top: 50%;
    margin-top: -1px;
  }
  #header header .btn > *.btn_menu .line span:nth-of-type(3) {
    bottom: 0;
  }
  .js-menuOpen #header header .btn > *.btn_menu .line span:nth-of-type(1) {
    top: 50%;
    transform: rotate(135deg);
  }
  .js-menuOpen #header header .btn > *.btn_menu .line span:nth-of-type(2) {
    opacity: 0;
  }
  .js-menuOpen #header header .btn > *.btn_menu .line span:nth-of-type(3) {
    bottom: auto;
    top: 50%;
    transform: rotate(-135deg);
  }
}
#header #header_fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  padding: 0 0;
  transition: 0.3s;
  transform: translateY(-100%);
}
#header #header_fixed.show {
  transform: translateY(0);
}
#header #header_fixed header {
  grid-template-columns: 1fr auto;
  padding: 2rem 2rem;
  gap: 0;
}
#header #header_fixed header ul li.reserve {
  position: relative;
  top: auto;
  right: auto;
}
#header #header_fixed header ul li.tel {
  display: block;
}
#header #header_fixed header ul li.tel a {
  background: #978B4D;
  padding: 0.5em clamp(1.5rem, 2.1vw, 3rem);
  border-radius: 50vh;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: clamp(1.6rem, 1.3vw, 1.8rem);
  font-family: "Kaisei HarunoUmi", serif;
  color: #FFF;
}
#header #header_fixed header ul li.tel a:before {
  content: "";
  width: 2rem;
  aspect-ratio: 1/1;
  mask: url(/lib/img/cmn/icon_tel.svg) no-repeat center/contain;
  background: #FFF;
  display: block;
}
@media screen and (max-width: 1024px) {
  #header #header_fixed header ul {
    gap: 0.5em 0.5em;
  }
  #header #header_fixed header ul li {
    font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  }
  #header #header_fixed header ul li.reserve a {
    padding: 0.5em 0.75em;
  }
  #header #header_fixed header ul li.tel a {
    padding: 0.5em 0.75em;
  }
  #header #header_fixed header ul li.tel a:before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #header #header_fixed {
    padding: 0 0 0 0;
    background: none;
  }
  #header #header_fixed header {
    height: auto;
  }
  #header #header_fixed header .btn {
    margin-left: auto;
  }
  #header #header_fixed header .btn .btn_time {
    display: none;
  }
  #header #header_fixed header .btn .btn_menu .line span {
    background: #fff;
  }
  #header #header_fixed header .btn .btn_menu p {
    display: none;
  }
  #header #header_fixed header .tel {
    display: none;
  }
}
#header #contact_fixed {
  position: fixed;
  right: 0;
  top: 35%;
  background: #fff;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  width: fit-content;
  display: grid;
  grid-template-columns: 62px auto;
  grid-template-areas: "head tel" "head time";
  grid-template-rows: max-content 1fr;
  box-shadow: 0 4px 20px -10px #666464;
  transform: translateX(calc(100% - 62px));
  transition: 0.3s;
}
#header #contact_fixed h2 {
  grid-area: head;
  writing-mode: vertical-rl;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 600;
  background: #F39800;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.2em;
  padding: 40px 0 60px;
  color: #FFF;
  cursor: pointer;
  position: relative;
}
#header #contact_fixed h2::before {
  content: "";
  width: 20px;
  aspect-ratio: 40/24;
  mask: url(../img/cmn/icon_arrow_04.webp) no-repeat 0 0/100% auto;
  position: absolute;
  background: #FFF;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
#header #contact_fixed .timetable {
  padding: 1rem 2rem 2rem;
}
#header #contact_fixed .tel {
  grid-area: tel;
  padding: 2rem 2rem 1rem;
}
#header #contact_fixed .tel a {
  background: #978B4D;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-family: "Kaisei HarunoUmi", serif;
  font-size: clamp(1.8rem, 1.7vw, 2.4rem);
  color: #FFF;
  padding: 1rem 1rem;
  border-radius: 10px;
}
#header #contact_fixed .tel a:before {
  content: "";
  width: clamp(2.4rem, 2.1vw, 3rem);
  aspect-ratio: 1/1;
  mask: url(/lib/img/cmn/icon_tel.svg) no-repeat center/contain;
  background: #FFF;
  display: block;
}
#header #contact_fixed.open {
  transform: translateX(0);
}
#header #contact_fixed.open h2::before {
  transform: translateX(-50%) scale(-1, 1);
}
@media screen and (max-width: 768px) {
  #header #contact_fixed {
    display: none;
  }
}
#header #menu {
  display: none;
}
@media screen and (max-width: 768px) {
  #header #menu {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #F2F2E3;
    overflow-y: auto;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0s 0.3s;
  }
  .js-menuOpen #header #menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.3s 0s, visibility 0s 0s, transform 0s 0s;
  }
  #header #menu header {
    background: url(/lib/img/cmn/body_bg.webp) repeat center;
  }
  #header #menu nav {
    margin: 1.5rem 2rem 3rem;
  }
  #header #menu nav ul li {
    font-family: "Zen Old Mincho", serif;
    border-bottom: 1px solid #D9D6C8;
  }
  #header #menu nav ul li a {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1.4rem 0;
    position: relative;
  }
  #header #menu nav ul li.reserve, #header #menu nav ul li.tel {
    display: none;
  }
  #header #menu .address {
    text-align: center;
  }
  #header #menu .contact {
    margin: 2rem 2rem;
  }
  #header #menu .contact li {
    margin-bottom: 1rem;
  }
  #header #menu .contact a {
    display: block;
    text-align: center;
    color: #FFF;
    padding: 0.75em 1em;
    border-radius: 50vh;
    font-size: 1.4rem;
  }
  #header #menu .contact .tel a {
    background: #978B4D;
    font-family: "Kaisei HarunoUmi", serif;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
  }
  #header #menu .contact .tel a:before {
    content: "";
    width: 16px;
    aspect-ratio: 1/1;
    mask: url(/lib/img/cmn/icon_tel.svg) no-repeat center/contain;
    background: #FFF;
    display: block;
  }
  #header #menu .contact .reserve a {
    background: #83AD28;
    font-family: "Zen Old Mincho", serif;
  }
  #header #menu .timetable {
    margin: 0 2rem 3rem 2rem;
  }
  #header #menu .copy {
    position: relative;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    padding: calc(14.1333333333vw + 1rem) 2rem 2rem;
  }
  #header #menu .copy::before {
    content: "";
    background: url(/lib/img/cmn/footer_nav_bg_sp.webp) no-repeat center bottom/cover;
    display: block;
    aspect-ratio: 375/53;
    height: 14.1333333333vw;
    position: absolute;
    top: 0;
    left: 0;
  }
}
#header #time_modal {
  display: none;
}
@media screen and (max-width: 768px) {
  #header #time_modal {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0s 0.3s;
    z-index: 100;
    display: block;
    width: 90vw;
    border-radius: 10px;
    background: #fff;
    position: fixed;
    left: 50%;
    top: 11.5rem;
    padding: 2rem 1.5rem 2rem;
  }
  .js-timeOpen #header #time_modal {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
    transition: opacity 0.3s 0s, visibility 0s 0s, transform 0s 0s;
  }
  #header #time_modal h2 {
    font-size: 1.8rem;
    font-weight: 500;
    position: relative;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.15em;
    font-family: "Zen Old Mincho", serif;
  }
  #header #time_modal .close {
    cursor: pointer;
    height: 2.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eff2ed;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 2em;
    gap: 0 0.3rem;
    margin-top: 2rem;
    padding: 0.3rem 0;
  }
  #header #time_modal .close::before {
    content: "×";
  }
}

/* ------------------------------------
// main
------------------------------------ */
#vi {
  padding: 0 2rem;
  max-width: calc(1200px + 4rem);
  margin: 0 auto;
  position: relative;
}
#vi .pagetitle {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translate(0, -50%);
  padding: 1rem 2rem;
  background: #83AD28;
  color: #FFF;
  font-size: clamp(2rem, 2.8vw, 4rem);
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  #vi .pagetitle {
    padding: 0.5rem 1rem;
  }
}

article {
  padding: 6rem 2rem 10rem;
  position: relative;
  z-index: 0;
}
article #contents {
  max-width: 1200px;
  margin: 0 auto;
}
/* ------------------------------------
// parts
------------------------------------ */
:root .linkbtn01 {
  display: block;
  width: fit-content;
  text-align: center;
  color: #FFF;
  padding: 0.5em 2em;
  border-radius: 50vh;
  background: #83AD28;
  color: #FFF;
}
:root .linkbtn01:hover {
  background: #978B4D;
}

.cl_gr {
  color: #83AD28;
}

.cl_or {
  color: #F39800;
}

.marker_gr {
  background: linear-gradient(transparent 70%, rgba(131, 173, 40, 0.3) 30%);
}

.marker_or {
  background: linear-gradient(transparent 70%, rgba(243, 152, 0, 0.3) 30%);
}

.timetable {
  grid-area: time;
  background: #FFF;
  border-radius: 10px;
  padding: 3rem 1rem;
}
.timetable table {
  width: 100%;
  border-spacing: 0;
  display: grid;
  grid-template-columns: max-content repeat(7, 1fr);
  font-size: clamp(1.2rem, 1.3vw, 1.8rem);
}
.timetable table tbody, .timetable table thead {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 8;
}
.timetable table tbody tr, .timetable table thead tr {
  display: inherit;
  grid-template-columns: subgrid;
  grid-column: inherit;
}
.timetable table thead th {
  border-bottom: solid 1px #BCB8A5;
  padding: 0.6em 0 0.4em;
  font-weight: 500;
  white-space: nowrap;
}
.timetable table tbody tr > * {
  padding: 0.7em 0 0.7em;
  border-bottom: solid 1px #BCB8A5;
}
.timetable table tbody tr th {
  font-weight: 500;
  text-align: left;
  padding-left: 0.5em;
  white-space: nowrap;
}
.timetable table tbody tr td {
  font-weight: 700;
  color: #F39800;
  text-align: center;
  vertical-align: center;
}
.timetable table tbody tr td.ng {
  color: #aba9a9;
}
.timetable ul.note {
  font-size: clamp(1.2rem, 1.3vw, 1.8rem);
  margin-top: 15px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .timetable {
    padding: 1.5rem clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 2.5rem;
  }
  .timetable table {
    font-size: 1.4rem;
  }
  .timetable ul.note {
    margin-top: 1rem;
    font-size: clamp(1.2rem, 3.7vw, 1.4rem);
  }
}

/* ------------------------------------
// footer
------------------------------------ */
#footer .pagetop {
  z-index: 5;
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  border-radius: 50vh;
  background: rgba(220, 220, 190, 0.3);
  border: 1px solid #DFDDD5;
  padding: 0.5em 2em;
}
#footer .pagetop.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  #footer {
    padding-bottom: 4.5rem;
  }
  #footer .pagetop {
    right: 1rem;
    bottom: 5.5rem;
    font-size: 1.2rem;
    padding: 0.5em 1em;
  }
}
#footer .logo {
  max-width: 480px;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 768px) {
  #footer .logo {
    max-width: 100%;
    width: 80%;
    margin-bottom: 2rem;
  }
}
#footer footer {
  padding: 0 2rem 5rem;
}
#footer footer .clinic {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(350px, 40%) 1fr;
  grid-template-areas: "address map" "tel map" "time map" "sp accesslink";
  gap: 1rem clamp(2rem, 4.2vw, 6rem);
}
#footer footer .clinic .address {
  grid-area: address;
  font-size: clamp(1.8rem, 1.4vw, 2rem);
}
#footer footer .clinic .tel {
  grid-area: tel;
  margin: 4rem 0 1rem;
}
#footer footer .clinic .tel a {
  background: #978B4D;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-family: "Kaisei HarunoUmi", serif;
  font-size: 2.4rem;
  color: #FFF;
  padding: 1.5rem 1rem;
  border-radius: 10px;
}
#footer footer .clinic .tel a:before {
  content: "";
  width: 3.6rem;
  aspect-ratio: 1/1;
  mask: url(/lib/img/cmn/icon_tel.svg) no-repeat center/contain;
  background: #FFF;
  display: block;
}
#footer footer .clinic .map {
  grid-area: map;
}
#footer footer .clinic .map iframe {
  height: 100%;
  border-radius: 15px;
}
#footer footer .clinic .accesslink {
  grid-area: accesslink;
  margin-top: 1rem;
}
@media screen and (max-width: 1024px) {
  #footer footer .clinic {
    gap: 1rem clamp(2rem, 4.2vw, 6rem);
  }
}
@media screen and (max-width: 768px) {
  #footer footer {
    padding: 0 1.5rem 0;
  }
  #footer footer .clinic {
    grid-template-columns: 1fr;
    grid-template-areas: "address" "tel" "time" "map" "accesslink";
  }
  #footer footer .clinic .address {
    text-align: center;
  }
  #footer footer .clinic .tel {
    margin: 2rem 0 1rem;
  }
  #footer footer .clinic .map {
    width: auto;
  }
  #footer footer .clinic .map iframe {
    aspect-ratio: 1;
  }
  #footer footer .clinic .accesslink a {
    margin: 0 auto;
  }
}
#footer nav {
  padding: calc(6.7361111111vw + 3.8rem) 2rem 3.8rem 2rem;
  position: relative;
}
#footer nav:before {
  content: "";
  width: 100%;
  background: url(/lib/img/cmn/footer_nav_bg.webp) no-repeat center/cover;
  aspect-ratio: 1440/97;
  height: 6.7361111111vw;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#footer nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em 2.1vw;
  font-weight: 500;
  font-size: 1.6rem;
  font-family: "Zen Old Mincho", serif;
}
#footer nav ul li.reserve a {
  display: block;
  background: #83AD28;
  padding: 0.5em 2em;
  border-radius: 50vh;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  #footer nav {
    padding: 38px 20px;
    padding: 3.8rem 2rem 14.1333333333vw 2rem;
  }
  #footer nav::before {
    background: url(/lib/img/cmn/footer_nav_bg_sp.webp) no-repeat center bottom/cover;
    aspect-ratio: 375/53;
    height: 14.1333333333vw;
    top: auto;
    bottom: 0;
  }
  #footer nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 0.5em;
    margin-bottom: 1rem;
  }
  #footer nav ul li {
    padding: 0.5rem;
    border-bottom: 1px solid #D9D6C8;
  }
  #footer nav ul li:nth-child(1), #footer nav ul li:nth-child(2) {
    border-top: 1px solid #D9D6C8;
  }
  #footer nav ul li.reserve {
    display: none;
  }
  #footer nav ul li a {
    display: block;
    padding: 0.5em;
    text-align: center;
  }
}
#footer .copy {
  border-top: 1px solid #C2BFB1;
  font-size: 1.6rem;
  text-align: center;
  padding: 2.2em 20px 2em;
}
@media screen and (max-width: 768px) {
  #footer .copy {
    border-top: none;
    font-size: 1rem;
    padding: 3rem 1rem 2rem;
    text-align: left;
  }
}
#footer #footer_fixed {
  display: none;
}
@media screen and (max-width: 768px) {
  #footer #footer_fixed {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 5;
    line-height: 1.3;
  }
  #footer #footer_fixed ul {
    padding: 0 1em 1em;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: minmax(50%, auto) 1fr;
    gap: 1em;
  }
  #footer #footer_fixed ul a {
    display: block;
    text-align: center;
    color: #FFF;
    padding: 0.5em 1em;
    border-radius: 50vh;
    font-size: 1.4rem;
  }
  #footer #footer_fixed ul .tel a {
    background: #978B4D;
    font-family: "Kaisei HarunoUmi", serif;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
  }
  #footer #footer_fixed ul .tel a:before {
    content: "";
    width: 16px;
    aspect-ratio: 1/1;
    mask: url(/lib/img/cmn/icon_tel.svg) no-repeat center/contain;
    background: #FFF;
    display: block;
  }
  #footer #footer_fixed ul .reserve a {
    background: #83AD28;
    font-family: "Zen Old Mincho", serif;
  }
}