@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Murecho:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&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;
}

/* font-family
    font-family: 'Zen Antique Soft', serif;
    font-family: 'Zen Kaku Gothic New', sans-serif;
*/
/* ------------------------------------
// base
------------------------------------ */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  background: #FFFDF9;
  color: #51443D;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 1.3vw, 1.3vw);
  line-height: 2;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

a:link {
  color: #51443D;
  text-decoration: none;
}
a:visited {
  color: #51443D;
  text-decoration: none;
}
a:hover {
  color: #51443D;
  text-decoration: none;
}
a:active {
  color: #51443D;
  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;
}

@media screen and (max-width: 768px) {
  body {
    min-width: 0;
  }
}
/* // screen
----------------------------------- */
.sp {
  display: none;
}

.md {
  display: none;
}

.pc {
  display: block;
}

.pconly {
  display: block;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: none;
  }
  .md {
    display: block;
  }
  .pc {
    display: block;
  }
  .pconly {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .md {
    display: block;
  }
  .pc {
    display: none;
  }
  .pconly {
    display: none;
  }
}
/* // component
----------------------------------- */
.cl_orangeBold {
  font-weight: bold;
  color: #EB6100;
}

.cl_orange {
  font-weight: bold;
  color: #EB6100;
}

/* header
------------------------------------ */
#header .btn_menu {
  width: 60px;
  padding: 2.5rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
#header .btn_menu > div {
  position: relative;
  width: 100%;
  height: 15px;
}
#header .btn_menu > div span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #EB6100;
  left: 0;
  transition: 0.3s;
}
#header .btn_menu > div span:first-child {
  top: 0;
}
#header .btn_menu > div span:last-child {
  bottom: 0;
}
.js-menuOpen #header .btn_menu > div span:first-child {
  top: 50%;
  transform: rotate(135deg);
  margin-top: -1px;
}
.js-menuOpen #header .btn_menu > div span:last-child {
  bottom: auto;
  top: 50%;
  transform: rotate(-135deg);
  margin-top: -1px;
}
#header > header {
  padding: 0 3.5vw 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
#header > header .logo {
  position: relative;
  padding: 1rem 1.5rem 0;
  width: clamp(150px, 13.9vw, 180px);
  box-shadow: none;
  border-radius: 0;
  left: auto;
  top: auto;
}
#header > header > nav {
  display: grid;
  grid-template-columns: auto 60px;
  align-items: center;
  gap: 1rem 3rem;
}
#header > header > nav .nav {
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0 1.5vw;
}
#header > header > nav .nav li {
  font-size: clamp(2rem, 1.4vw, 1.4vw);
}
#header > header > nav .nav li a {
  color: #221304;
}
#header > header > nav .approach {
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  gap: 2rem;
}
#header > header > nav .approach li a {
  color: #221304;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.3rem 1rem;
  border-radius: 5px;
  border: 1px solid #A0A0A0;
  font-family: "Century Gothic", "Futura", serif;
  width: fit-content;
  position: relative;
}
#header > header > nav .approach li a:before {
  content: "";
  display: block;
  width: 1.6vw;
  aspect-ratio: 1;
}
#header > header > nav .approach li.call a {
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-size: clamp(1.6rem, 1.3vw, 1.3vw);
  font-family: "Century Gothic", "Futura", serif;
  font-weight: 500;
  line-height: 1;
}
#header > header > nav .approach li.call a:before {
  background: url(/lib/img/cmn/icon_call.webp) no-repeat center/contain;
}
#header > header > nav .approach li.reserve a {
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-size: clamp(1.6rem, 1.3vw, 1.3vw);
  line-height: 1;
}
#header > header > nav .approach li.reserve a span {
  font-family: "Murecho", sans-serif;
  font-size: clamp(1.4rem, 1.1vw, 1.1vw);
}
#header > header > nav .approach li.reserve a:before {
  background: url(/lib/img/cmn/icon_reserve.webp) no-repeat center/contain;
}
#header > header > nav .btn_menu {
  grid-column: 2/3;
  grid-row: 1/3;
  align-self: self-start;
}
#header > header.fixed {
  padding: 0 3.5vw 1rem;
  position: fixed;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(calc(-100% - 10px));
  transition: 0.3s ease-in-out;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
#header > header.fixed .logo {
  position: relative;
  padding: 1rem 1.5rem 0;
  width: clamp(150px, 13.9vw, 180px);
  box-shadow: none;
  border-radius: 0;
  left: auto;
  top: auto;
}
#header > header.fixed.show {
  transform: translateY(0);
}
#header #menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90%;
  height: 100vh;
  background: #EB6100;
  color: #fff;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  box-shadow: -3px 3px 5px #666;
  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 {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 3.5vw;
}
#header #menu > header .logo {
  display: none;
}
#header #menu > header .btn_menu span {
  background: #FFF;
}
#header #menu #menuContainer {
  display: grid;
  grid-template-columns: 60% 30%;
  gap: 3rem 10%;
  max-height: 100vh;
  padding: 0 3.5vw 2rem;
  overflow-y: auto;
  margin-right: 1rem;
}
#header #menu .infoBlock .logo {
  width: 50%;
  margin: 0 auto 3rem;
  max-width: 200px;
}
#header #menu .infoBlock .address {
  text-align: center;
  font-size: 1.4vw;
}
#header #menu .infoBlock .clinicFeature {
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  margin: 3rem auto;
  padding: 1rem;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4vw;
}
#header #menu .infoBlock .clinicFeature li {
  position: relative;
  font-size: 1.1vw;
  text-align: center;
}
#header #menu .infoBlock .clinicFeature li:before {
  content: "";
  width: 4.2vw;
  margin: 0 auto 0.5rem;
  aspect-ratio: 1;
  display: block;
}
#header #menu .infoBlock .clinicFeature li.fea01:before {
  background: url(/lib/img/cmn/icon_emergency.webp) no-repeat center/contain;
}
#header #menu .infoBlock .clinicFeature li.fea02:before {
  background: url(/lib/img/cmn/icon_insurance.webp) no-repeat center/contain;
}
#header #menu .infoBlock .clinicFeature li.fea03:before {
  background: url(/lib/img/cmn/icon_time20.webp) no-repeat center/contain;
}
#header #menu .infoBlock .clinicFeature li.fea04:before {
  background: url(/lib/img/cmn/icon_car.webp) no-repeat center/contain;
}
#header #menu .infoBlock .timeContainer {
  width: fit-content;
  margin: 0 auto;
}
#header #menu .naviBlock {
  padding-top: 2rem;
}
#header #menu .naviBlock .nav li:not(:first-child) {
  margin-top: 1rem;
}
#header #menu .naviBlock .nav li a {
  font-family: "Murecho", sans-serif;
  font-size: clamp(2rem, 1.4vw, 1.4vw);
  color: #FFF;
  display: flex;
  gap: 2rem;
  align-items: center;
}
#header #menu .naviBlock .nav li a::before {
  content: "";
  width: 2.1vw;
  height: 1px;
  background: #fcfbf5;
  display: block;
}
#header #menu .naviBlock .approach {
  margin: 4rem 0 0 0;
}
#header #menu .naviBlock .approach li a {
  display: grid;
  grid-template-columns: 2.8vw auto;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.3rem 1rem;
  background: #fcfbf5;
  border-radius: 5px;
  font-family: "Century Gothic", "Futura", serif;
  width: 100%;
  position: relative;
  font-size: clamp(2rem, 1.7vw, 1.7vw);
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
#header #menu .naviBlock .approach li a:before {
  content: "";
  display: block;
  width: 2.8vw;
  aspect-ratio: 1;
  grid-row: 1/3;
  grid-column: 1/2;
}
#header #menu .naviBlock .approach li.call {
  margin-bottom: 1rem;
}
#header #menu .naviBlock .approach li.call a {
  line-height: 1;
}
#header #menu .naviBlock .approach li.call a:before {
  background: url(/lib/img/cmn/icon_call.webp) no-repeat center/contain;
}
#header #menu .naviBlock .approach li.call a span {
  font-size: clamp(2rem, 1.8vw, 1.8vw);
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: right;
}
#header #menu .naviBlock .approach li.reserve a {
  line-height: 1;
}
#header #menu .naviBlock .approach li.reserve a span {
  font-family: "Murecho", sans-serif;
  font-size: clamp(2rem, 1.8vw, 1.8vw);
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  text-align: right;
}
#header #menu .naviBlock .approach li.reserve a:before {
  background: url(/lib/img/cmn/icon_reserve.webp) no-repeat center/contain;
}
#header #menu .copy {
  grid-column: 1/3;
  text-align: center;
  font-size: clamp(1.2rem, 1.1vw, 1.1vw);
}

@media screen and (max-width: 768px) {
  #header {
    padding: 0;
  }
  #header .btn_menu {
    width: 6rem;
    border-radius: 0.5rem;
    justify-content: center;
    padding: 1.5rem 0;
    z-index: 101;
  }
  #header .btn_menu > div {
    width: 70%;
  }
  #header .btn_menu > div span {
    height: 4px;
  }
  #header > header .logo {
    max-width: 30%;
  }
  #header > header > nav {
    display: block;
  }
  #header > header > nav .nav {
    display: none;
  }
  #header > header > nav .approach {
    display: none;
  }
  #header > header.fixed {
    background: transparent;
    justify-content: flex-end;
    transition: opacity 0.3s, transform 0s;
    opacity: 0;
    box-shadow: none;
    padding-top: 1rem;
  }
  #header > header.fixed .logo {
    display: none;
  }
  #header > header.fixed.show {
    transform: translateY(0);
    opacity: 1;
    transition: 0.3s;
  }
  #header > header.fixed.show > nav .btn_menu {
    background: none;
    background: rgba(252, 251, 245, 0.33);
  }
  #header #menu {
    width: 100%;
    padding: 0;
  }
  #header #menu header {
    padding: 0 3.5vw 2rem;
    background: #fcfbf5;
    justify-content: flex-end;
  }
  #header #menu header .logo {
    display: block;
    z-index: 102;
    max-width: 238px;
    width: clamp(180px, 16.5vw, 238px);
    max-width: 30%;
    padding: 1rem;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 0 0 5px 5px;
    position: absolute;
    left: 3.5vw;
    top: 0;
  }
  .js-menuOpen #header #menu header {
    padding-top: 2rem;
  }
  .js-menuOpen #header #menu header .btn_menu span {
    background: #EB6100;
  }
  #header #menu #menuContainer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem 10%;
    max-height: 100%;
    overflow-y: scroll;
    margin-right: 0;
    padding: 3rem 3.5vw 15rem;
  }
  #header #menu #menuContainer .infoBlock {
    display: contents;
  }
  #header #menu #menuContainer .infoBlock .logo {
    display: none;
  }
  #header #menu #menuContainer .infoBlock .address {
    order: 1;
    font-size: 3.7vw;
    border-bottom: 1px solid #fcfbf5;
    padding-bottom: 0.5rem;
  }
  #header #menu #menuContainer .infoBlock .clinicFeature {
    order: 3;
    margin: 0 auto;
  }
  #header #menu #menuContainer .infoBlock .clinicFeature li {
    font-size: 2.4vw;
  }
  #header #menu #menuContainer .infoBlock .clinicFeature li:before {
    width: 8vw;
  }
  #header #menu #menuContainer .infoBlock .timeContainer {
    order: 4;
  }
  #header #menu #menuContainer .naviBlock {
    display: contents;
  }
  #header #menu #menuContainer .naviBlock .nav {
    order: 2;
  }
  #header #menu #menuContainer .naviBlock .nav li a {
    text-align: center;
    display: block;
    padding: 0.5rem 1rem;
  }
  #header #menu #menuContainer .naviBlock .nav li a:before {
    display: none;
  }
  #header #menu #menuContainer .naviBlock .approach {
    order: 5;
    margin: 0 0 0 0;
  }
  #header #menu #menuContainer .naviBlock .approach li a {
    display: flex;
    font-size: clamp(2rem, 1.7vw, 1.7vw);
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
  #header #menu #menuContainer .naviBlock .approach li a:before {
    width: 10.7vw;
  }
  #header #menu #menuContainer .naviBlock .approach li.call {
    margin-bottom: 1rem;
  }
  #header #menu #menuContainer .naviBlock .approach li.call a {
    line-height: 1;
  }
  #header #menu #menuContainer .naviBlock .approach li.call a:before {
    background: url(/lib/img/cmn/icon_call.webp) no-repeat center/contain;
  }
  #header #menu #menuContainer .naviBlock .approach li.call a span {
    font-size: clamp(2rem, 1.8vw, 1.8vw);
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    text-align: right;
  }
  #header #menu #menuContainer .naviBlock .approach li.reserve a {
    line-height: 1;
  }
  #header #menu #menuContainer .naviBlock .approach li.reserve a span {
    font-family: "Murecho", sans-serif;
    font-size: clamp(2rem, 1.8vw, 1.8vw);
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    text-align: right;
  }
  #header #menu #menuContainer .naviBlock .approach li.reserve a:before {
    background: url(/lib/img/cmn/icon_reserve.webp) no-repeat center/contain;
  }
  #header #menu #menuContainer .copy {
    order: 6;
    grid-column: 1/2;
  }
}
/* pagetop
------------------------------------ */
#pagetop {
  position: fixed;
  bottom: 0;
  right: 1.7vw;
  display: none;
}
#pagetop a {
  font-family: "Century Gothic", "Futura", serif;
  font-size: clamp(1.2rem, 1.1vw, 1.1vw);
  display: grid;
  padding: 2rem 1rem;
  border-radius: 5px;
  text-transform: uppercase;
}
#pagetop a::before {
  content: "";
  width: 12px;
  aspect-ratio: 1/0.8660254038;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #51443D;
  display: block;
  margin: 0 auto;
}
#pagetop a:hover {
  background: rgba(252, 251, 245, 0.33);
}
@media screen and (max-width: 768px) {
  #pagetop {
    display: none;
  }
}

/* footer
------------------------------------ */
#footer footer {
  color: #fff;
  padding: 0 5.6vw 5rem;
  margin: 0 auto;
  background: #EB6100;
}
#footer footer .logo {
  text-align: center;
  width: calc(clamp(20rem, 13.9vw, 13.9vw) + 1.7vw);
  margin: 0 auto;
  background: #fcfbf5;
  padding: 1.7vw;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 4rem;
}
#footer footer .address {
  border-bottom: 1px solid #FFF;
  text-align: center;
  font-size: clamp(2rem, 2.2vw, 2.4rem);
  padding-bottom: 2rem;
  margin-bottom: 4rem;
}
#footer footer .info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6rem 0;
}
#footer footer .data {
  width: 48%;
  position: relative;
  padding-top: 1rem;
}
#footer footer .data .approach {
  margin: 4rem 0 0 0;
}
#footer footer .data .approach li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.3rem 1rem;
  background: #fcfbf5;
  border-radius: 5px;
  font-family: "Century Gothic", "Futura", serif;
  width: fit-content;
  position: relative;
}
#footer footer .data .approach li a:before {
  content: "";
  display: block;
  width: 2.8vw;
  aspect-ratio: 1;
}
#footer footer .data .approach li.call {
  margin-bottom: 1rem;
}
#footer footer .data .approach li.call a {
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-size: 2.2vw;
  font-family: "Century Gothic", "Futura", serif;
  font-weight: 500;
  line-height: 1;
}
#footer footer .data .approach li.call a:before {
  background: url(/lib/img/cmn/icon_call.webp) no-repeat center/contain;
}
#footer footer .data .approach li.reserve a {
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-size: 2.2vw;
}
#footer footer .data .approach li.reserve a span {
  font-family: "Murecho", sans-serif;
  font-size: 1.7vw;
}
#footer footer .data .approach li.reserve a:before {
  background: url(/lib/img/cmn/icon_reserve.webp) no-repeat center/contain;
}
#footer footer .mapdata {
  width: 48%;
}
#footer footer .mapdata .clinicFeature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
#footer footer .mapdata .clinicFeature li {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  font-size: clamp(1.4rem, 1.4vw, 1.4vw);
}
#footer footer .mapdata .clinicFeature li:before {
  content: "";
  width: 4.2vw;
  aspect-ratio: 1;
  display: block;
}
#footer footer .mapdata .clinicFeature li.fea01:before {
  background: url(/lib/img/cmn/icon_emergency.webp) no-repeat center/contain;
}
#footer footer .mapdata .clinicFeature li.fea02:before {
  background: url(/lib/img/cmn/icon_insurance.webp) no-repeat center/contain;
}
#footer footer .mapdata .clinicFeature li.fea03:before {
  background: url(/lib/img/cmn/icon_time20.webp) no-repeat center/contain;
}
#footer footer .mapdata .clinicFeature li.fea04:before {
  background: url(/lib/img/cmn/icon_car.webp) no-repeat center/contain;
}
#footer footer .footergnavi {
  width: 100%;
}
#footer footer .footergnavi ul {
  display: flex;
  justify-content: center;
  gap: 0.7vw;
  background: #fcfbf5;
  border-radius: 50vh;
  width: fit-content;
  margin: 0 auto;
  padding: 0 3.1vw;
}
#footer footer .footergnavi ul li a {
  display: block;
  padding: 1rem 1.5vw;
  font-family: "Murecho", sans-serif;
  font-size: clamp(1.6rem, 1.4vw, 1.4vw);
}
#footer .copy {
  text-align: center;
  font-family: "Murecho", sans-serif;
  line-height: 1;
  padding: 2rem 1rem;
  font-size: 1.4rem;
}
#footer .footer_fixed {
  display: none;
}

@media screen and (max-width: 768px) {
  #footer footer {
    padding: 0 5.3vw 1.5rem 5.3vw;
  }
  #footer footer .logo {
    width: calc(clamp(10rem, 40vw, 40vw) + 3.3vw);
    padding: 3.3vw;
    margin-bottom: 3rem;
  }
  #footer footer .address {
    border-bottom: 1px solid #FFF;
    text-align: center;
    font-size: clamp(1.2rem, 4vw, 2.4rem);
    padding-bottom: 2rem;
    margin-bottom: 4rem;
  }
  #footer footer .info {
    display: block;
  }
  #footer footer .info .data {
    padding-top: 0;
    width: auto;
    margin-bottom: 2rem;
  }
  #footer footer .info .data .logo_jp {
    margin-bottom: 3rem;
  }
  #footer footer .info .data .logo_jp img {
    width: 25.7rem;
  }
  #footer footer .info .data .approach li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.3rem 1rem;
  }
  #footer footer .info .data .approach li a:before {
    content: "";
    display: block;
    width: 6.7vw;
    aspect-ratio: 1;
  }
  #footer footer .info .data .approach li.call a {
    font-size: 4.3vw;
  }
  #footer footer .info .data .approach li.reserve a {
    font-size: 4.3vw;
  }
  #footer footer .info .data .approach li.reserve a span {
    font-size: 3.2vw;
  }
  #footer footer .info .mapdata {
    width: 100%;
  }
  #footer footer .info .footergnavi {
    display: none;
  }
  #footer .copy {
    font-size: 1.2rem;
    padding: 1.5rem 0 8rem;
  }
  #footer .footer_fixed {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 200;
    background: #EB6100;
  }
  #footer .footer_fixed ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    padding: 5px;
    gap: 5px;
  }
  #footer .footer_fixed ul li {
    display: inherit;
    grid-template-rows: inherit;
    grid-row: inherit;
  }
  #footer .footer_fixed ul li a {
    display: flex;
    border-radius: 5px;
    background: #fcfbf5;
    padding: 0.75rem 1rem;
    text-align: center;
    position: relative;
    gap: 0;
    align-items: center;
    justify-content: space-between;
  }
  #footer .footer_fixed ul li a:before {
    content: "";
    width: 6.7vw;
    aspect-ratio: 1;
  }
  #footer .footer_fixed ul li a:after {
    content: "";
    width: 2.7vw;
    aspect-ratio: 1;
  }
  #footer .footer_fixed ul li.call a {
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    font-size: 4.3vw;
    font-family: "Century Gothic", "Futura", serif;
    font-weight: 500;
    line-height: 1;
  }
  #footer .footer_fixed ul li.call a:before {
    background: url(/lib/img/cmn/icon_call.webp) no-repeat center/contain;
  }
  #footer .footer_fixed ul li.call a:after {
    content: "";
    width: 1.3vw;
  }
  #footer .footer_fixed ul li.reserve a {
    gap: 2.5rem;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    font-size: 3.7vw;
    font-family: "Murecho", sans-serif;
  }
  #footer .footer_fixed ul li.reserve a:before {
    background: url(/lib/img/cmn/icon_reserve.webp) no-repeat center/contain;
  }
}
/* timetable
------------------------------------ */
.timeTable {
  border-collapse: collapse;
  margin: 0 auto 2rem 0;
}
.timeTable th,
.timeTable td {
  font-weight: 400;
  padding: 0.2rem 0.7vw;
  font-size: clamp(1.4rem, 1.4vw, 1.4vw);
}
.timeTable thead th {
  padding: 0.2rem 0.7vw;
}
.timeTable tbody th {
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-align: right;
  padding: 0.2rem 0.7vw 0.2rem 0;
}
.timeTable tbody td {
  text-align: center;
}

.timeTableMemo {
  font-size: clamp(1.4rem, 1.4vw, 1.4vw);
}

@media screen and (max-width: 768px) {
  .timeTable {
    border-collapse: collapse;
    margin-bottom: 2rem;
    width: 100%;
  }
  .timeTable th,
  .timeTable td {
    font-weight: 400;
    padding: 0.2rem 1vw;
    font-size: clamp(1.3rem, 1.4vw, 1.4vw);
  }
  .timeTable thead th {
    padding: 0.2rem 1vw;
  }
  .timeTable tbody th {
    text-align: left;
    padding: 0.2rem 1vw 0.2rem 0;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }
  .timeTable tbody td {
    text-align: center;
  }
  .timeTableMemo {
    font-size: clamp(1.4rem, 1.4vw, 1.4vw);
  }
}
/* main
------------------------------------ */
main .bread {
  padding: 2rem 3.5vw 0;
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}
main .bread li {
  font-size: clamp(1.2rem, 0.8vw, 0.8vw);
}
main .bread li:not(:first-child) {
  display: flex;
  gap: 1rem;
}
main .bread li:not(:first-child)::before {
  content: ">";
}
main .pagetitle {
  padding: 0 3.5vw;
  font-family: "Century Gothic", "Futura", serif;
  font-size: clamp(3rem, 4.4vw, 4.4vw);
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  main .pagetitle {
    margin-bottom: 0rem;
  }
}
main #container {
  padding: 2rem 0;
}
main #container p {
  line-height: 2;
}
main #container p + p {
  margin-top: 3rem;
}
main #container .list_01 {
  margin: 1.5rem 0;
}
main #container .list_01 li {
  display: flex;
  gap: 1rem;
}
main #container .list_01 li:before {
  content: "※";
}
main #container .list_01 li + li {
  margin-top: 1rem;
}
main #container .list_02 {
  margin: 1.5rem 0;
}
main #container .list_02 li {
  display: flex;
  gap: 1rem;
  align-items: center;
}
main #container .list_02 li:before {
  content: "";
  width: clamp(0.8rem, 0.8vw, 0.8vw);
  aspect-ratio: 1/1;
  background: url(/lib/img/cmn/icon_square01.webp) no-repeat center/contain;
}
main #container .list_02 li + li {
  margin-top: 1rem;
}

/* ------------------------------------
// 404
----------------------------------- */
.notFound {
  text-align: center;
  padding: 100px 0;
}

/* fadeIn
------------------------------------------------------*/
.fadeIn {
  transform: translate(0, 10%);
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.fadeIn.show {
  transform: translate(0, 0);
  opacity: 1;
}

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