@charset "UTF-8";
@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=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&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 {
  color: #444444;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(1.6rem, 1.3vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
a:link {
  color: #444444;
  text-decoration: none;
}
a:visited {
  color: #444444;
  text-decoration: none;
}
a:hover {
  color: #444444;
  text-decoration: none;
}
a:active {
  color: #444444;
  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
------------------------------------ */
.js-timeOpen #ov {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(68, 68, 68, 0.6);
  z-index: 7;
}

#container {
  display: grid;
  grid-template-columns: 1fr;
}

#header {
  position: sticky;
  top: 0;
  z-index: 6;
  /* header/gnav */
}
@media screen and (max-width: 768px) {
  .js-timeOpen #header {
    background: #fff;
  }
}
#header header {
  background: #FFF;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr max-content;
  gap: 0 2rem;
  position: relative;
  grid-template-areas: "viline viline viline" "logo nav btn_contact";
}
#header header:after {
  content: "";
  width: 100vw;
  height: 5px;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(180deg, rgba(229, 229, 229, 0.5) 0%, rgba(229, 229, 229, 0) 100%);
}
#header header .viline {
  grid-area: viline;
  background: #84CDD9;
  font-size: 1.4rem;
  text-align: center;
  line-height: 2;
  margin-bottom: 0;
  color: #002A54;
}
#header header .logo {
  grid-area: logo;
  padding: 0.5rem 0 1rem 2rem;
  align-self: center;
}
#header header nav {
  grid-area: nav;
  align-self: center;
}
#header header nav > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem clamp(1rem, 2.1vw, 3rem);
  font-weight: 500;
  font-size: clamp(1.6rem, 1.1vw, 1.6rem);
}
#header header nav > ul li {
  position: relative;
}
#header header nav > ul li a:hover {
  color: #5183C4;
}
#header header nav > ul li.treatment:hover .sub_treatment {
  transition: 0.5s;
  opacity: 1;
  pointer-events: all;
}
#header header nav > ul .sub_treatment {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding-top: 4rem;
}
#header header nav > ul .sub_treatment ul {
  background: #F6F2E4;
  padding: 1rem 2rem 1rem;
  display: flex;
  gap: 1rem;
  position: relative;
}
#header header nav > ul .sub_treatment ul::before {
  width: 16px;
  aspect-ratio: 1/0.8660254038;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 10px);
  bottom: calc(100% - 1px);
  background: #F6F2E4;
}
#header header nav > ul .sub_treatment ul a {
  display: block;
  background: #E9C043;
  white-space: nowrap;
  padding: 1rem 3rem 1rem 2rem;
  color: #FFF;
  position: relative;
}
#header header nav > ul .sub_treatment ul a::before {
  content: "";
  width: 8px;
  aspect-ratio: 1;
  display: block;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: calc(50% - 4px);
}
#header header nav > ul .sub_treatment ul a.ear {
  background: #7CBDC8;
}
#header header nav > ul .sub_treatment ul a.ear:hover {
  background: #3BA8D1;
}
#header header nav > ul .sub_treatment ul a.skin {
  background: #E9C043;
}
#header header nav > ul .sub_treatment ul a.skin:hover {
  background: #D39948;
}
#header header .btn_contact {
  grid-area: btn_contact;
}
#header header .btn_menu {
  display: none;
  grid-area: btn_menu;
}
@media screen and (max-width: 1200px) {
  #header header {
    position: relative;
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-template-areas: "viline viline" "logo nav" "sp contact";
  }
  #header header nav {
    padding-right: clamp(1rem, 2.1vw, 3rem);
  }
  #header header nav > ul {
    gap: 1rem clamp(1rem, 2.1vw, 3rem);
    font-size: clamp(1.4rem, 1.5vw, 2.2rem);
  }
  #header header .btn_contact {
    position: fixed;
    right: 0;
    top: 100px;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
  }
  #header header .btn_contact.hidden {
    opacity: 0;
    visibility: hidden;
  }
  #header header .btn_contact li {
    gap: 4px;
  }
  #header header .btn_contact a,
  #header header .btn_contact span {
    padding: 1.5rem 1rem;
  }
}
@media screen and (max-width: 768px) {
  #header header {
    max-width: none;
    grid-template-columns: 1fr 64px;
    grid-template-areas: "viline viline" "logo btn_menu";
  }
  #header header:after {
    display: none;
  }
  #header header .viline {
    font-size: 10px;
  }
  #header header .viline p span {
    display: none;
  }
  #header header .logo {
    max-width: calc(180px + 2rem);
    padding: 0.5rem 0 0.5rem 1rem;
  }
  #header header nav {
    display: none;
  }
  #header header .btn_contact {
    display: none;
  }
  #header header .btn_menu {
    grid-area: btn_menu;
    position: fixed;
    position: relative;
    top: 0;
    right: 0;
    width: 64px;
    display: grid;
    gap: 0.5rem;
    background: #3BA8D1;
    aspect-ratio: 1;
    padding: 1.5rem 1.5rem 1rem;
  }
  #header header .btn_menu .line {
    width: 34px;
    height: 1.1rem;
    position: relative;
  }
  #header header .btn_menu .line span {
    transition: 0.3s;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
  }
  #header header .btn_menu .line span:nth-of-type(1) {
    top: 0;
  }
  #header header .btn_menu .line span:nth-of-type(2) {
    margin-top: -1px;
    bottom: 0;
  }
  .js-menuOpen #header header .btn_menu .line {
    width: 24px;
    margin-left: 5px;
  }
  .js-menuOpen #header header .btn_menu .line span:nth-of-type(1) {
    top: 50%;
    transform: rotate(135deg);
  }
  .js-menuOpen #header header .btn_menu .line span:nth-of-type(2) {
    bottom: auto;
    top: 50%;
    transform: rotate(-135deg);
  }
  #header header .btn_menu span {
    color: #FFF;
    font-family: "Sofia Sans", sans-serif;
  }
  #header header .btn_menu span.close {
    display: none;
  }
  .js-menuOpen #header header .btn_menu span.menu {
    display: none;
  }
  .js-menuOpen #header header .btn_menu span.close {
    display: block;
  }
}

/* menu*/
#drawerMenu {
  display: none;
}
@media screen and (max-width: 768px) {
  #drawerMenu {
    display: grid;
    width: 100%;
    height: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #FAF9F5;
    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 #drawerMenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.3s 0s, visibility 0s 0s, transform 0s 0s;
  }
  #drawerMenu header {
    position: sticky;
    align-self: self-start;
    top: 0;
    left: 0;
    width: 100%;
    background: #FAF9F5;
    grid-template-areas: "viline viline" "logo btn_menu";
  }
  #drawerMenu header::after {
    display: none;
  }
  #drawerMenu .menu {
    display: grid;
    overflow-y: auto;
  }
  #drawerMenu nav {
    margin: 1.5rem 2rem 3rem;
  }
  #drawerMenu nav > ul li + li {
    margin-top: 0.5rem;
  }
  #drawerMenu nav > ul li.treatment a::after {
    display: none;
  }
  #drawerMenu nav > ul li a {
    background: #FFF;
    color: #002A54;
    display: block;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1.2rem 2rem;
    position: relative;
  }
  #drawerMenu nav > ul li a:after {
    content: "";
    display: block;
    position: absolute;
    right: 2rem;
    top: calc(50% - 4px);
    width: 4px;
    height: 8px;
    mask: url(/lib/img/cmn/icon_arrow_01.svg) no-repeat center/contain;
    background: #3BA8D1;
  }
  #drawerMenu nav > ul li .sub_treatment {
    pointer-events: all;
    opacity: 1;
    position: relative;
    transform: none;
    z-index: 5;
    padding-top: 0;
  }
  #drawerMenu nav > ul li .sub_treatment ul {
    background: #FFF;
    padding: 0 1rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
  }
  #drawerMenu nav > ul li .sub_treatment ul li + li {
    margin-top: 0;
  }
  #drawerMenu nav > ul li .sub_treatment ul a {
    display: block;
    white-space: nowrap;
    padding: 0.5rem 2rem 0.5rem 1rem;
    color: #FFF;
    position: relative;
  }
  #drawerMenu nav > ul li .sub_treatment ul a::after {
    display: none;
  }
  #drawerMenu nav > ul li .sub_treatment ul a::before {
    content: "";
    display: block;
    position: absolute;
    right: 1rem;
    top: calc(50% - 4px);
    width: 4px;
    height: 8px;
    mask: url(/lib/img/cmn/icon_arrow_01.svg) no-repeat center/contain;
    background: #FFF;
  }
  #drawerMenu nav > ul li .sub_treatment ul a.ear {
    background: #7CBDC8;
  }
  #drawerMenu nav > ul li .sub_treatment ul a.ear:hover {
    background: #3BA8D1;
  }
  #drawerMenu nav > ul li .sub_treatment ul a.skin {
    background: #E9C043;
  }
  #drawerMenu nav > ul li .sub_treatment ul a.skin:hover {
    background: #D39948;
  }
  #drawerMenu nav > ul li.reserve, #drawerMenu nav > ul li.tel {
    display: none;
  }
  #drawerMenu .socialLink {
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  #drawerMenu .socialLink li {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 1;
  }
  #drawerMenu .socialLink a {
    display: inherit;
    grid-template-rows: inherit;
    grid-row: inherit;
    gap: 1rem;
    position: relative;
    padding: 5.5rem 1rem 1rem 1rem;
    border-radius: 10px;
    color: #FFF;
    text-align: center;
  }
  #drawerMenu .socialLink a::before {
    content: "";
    height: 4rem;
    width: 100%;
    display: block;
    position: absolute;
    top: 1rem;
    left: 0;
    background: no-repeat center center/contain;
  }
  #drawerMenu .socialLink a:after {
    content: "";
    display: block;
    width: 6px;
    height: 10px;
    mask: url(/lib/img/cmn/icon_arrow_01.svg) no-repeat center/contain;
    background: #FFF;
    position: absolute;
    right: 1rem;
    bottom: 1.5rem;
  }
  #drawerMenu .socialLink a.insta {
    background: #DA7EBD;
    pointer-events: none;
  }
  #drawerMenu .socialLink a.insta::before {
    background-image: url(/lib/img/cmn/icon_instgram.webp);
  }
  #drawerMenu .socialLink a.line {
    background: #97CA7E;
  }
  #drawerMenu .socialLink a.line::before {
    background-image: url(/lib/img/cmn/icon_line.webp);
  }
  #drawerMenu .accesslink {
    background: #FFF;
    padding: 2rem 2rem;
  }
  #drawerMenu .accesslink .way li a {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    font-size: clamp(1.6rem, 1.3vw, 1.8rem);
    font-weight: 500;
    color: #002A54;
    background: #DEEBED;
    position: relative;
  }
  #drawerMenu .accesslink .way li a span {
    font-size: clamp(2.4rem, 2.1vw, 3rem);
    font-weight: 700;
    display: inline-block;
    padding: 0 0.25rem 0.25rem;
  }
  #drawerMenu .accesslink .way li a:hover {
    background: #DEEBED;
  }
  #drawerMenu .accesslink .way li a:before {
    content: "";
    margin-right: 1rem;
    width: 34px;
    aspect-ratio: 1;
    background: #002A54;
  }
  #drawerMenu .accesslink .way li a:after {
    content: "";
    display: block;
    width: 6px;
    height: 10px;
    mask: url(/lib/img/cmn/icon_arrow_01.svg) no-repeat center/contain;
    background: #002A54;
    position: absolute;
    right: 1rem;
    top: calc(50% - 3px);
  }
  #drawerMenu .accesslink .way li.car a::before {
    mask: url(/lib/img/cmn/icon_car.svg) no-repeat center/contain;
  }
  #drawerMenu .accesslink .way li.train {
    margin-top: 2px;
  }
  #drawerMenu .accesslink .way li.train a::before {
    mask: url(/lib/img/cmn/icon_train.svg) no-repeat center/contain;
  }
  #drawerMenu .accesslink .link {
    margin-top: 5px;
  }
  #drawerMenu .accesslink .link a {
    display: block;
    position: relative;
    background: #3BA8D1;
    color: #FFF;
    font-size: clamp(1.8rem, 1.3vw, 1.8rem);
    font-weight: 500;
    padding: 1rem 2rem 1rem 1rem;
    text-align: center;
  }
  #drawerMenu .accesslink .link a:before {
    content: "";
    display: block;
    position: absolute;
    right: 2rem;
    top: calc(50% - 5px);
    width: 6px;
    height: 10px;
    mask: url(/lib/img/cmn/icon_arrow_01.svg) no-repeat center/contain;
    background: #FFF;
  }
  #drawerMenu .drawer_contact {
    background: #FFF;
    padding: 2rem;
  }
  #drawerMenu .drawer_contact .box {
    border: 3px solid #84CDD9;
    padding: 0 1rem 1rem 1rem;
  }
  #drawerMenu .drawer_contact h2 {
    text-align: center;
    font-size: clamp(1.8rem, 1.3vw, 1.8rem);
    color: #3BA8D1;
    width: fit-content;
    margin: 0 auto;
    background: #FFF;
    transform: translateY(calc(-50% - 0.25rem));
    padding: 0 1.5rem;
  }
  #drawerMenu .drawer_contact li + li {
    margin-top: 1rem;
  }
  #drawerMenu .drawer_contact a {
    box-shadow: 4px 4px 0 #FFF;
    color: #FFF;
    font-weight: 500;
    padding: 0.75rem 2rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    box-shadow: 5px 5px 0 #EDF4F5;
  }
  #drawerMenu .drawer_contact a:after {
    content: "";
    display: block;
    position: absolute;
    right: 1rem;
    top: calc(50% - 5px);
    width: 6px;
    height: 10px;
    mask: url(/lib/img/cmn/icon_arrow_01.svg) no-repeat center/contain;
    background: #FFF;
  }
  #drawerMenu .drawer_contact a:before {
    content: "";
    width: 20px;
    aspect-ratio: 1;
  }
  #drawerMenu .drawer_contact .link_reserve {
    background: #002A54;
    font-size: clamp(1.8rem, 1.4vw, 2rem);
  }
  #drawerMenu .drawer_contact .link_reserve:before {
    width: 22px;
    background: url(/lib/img/cmn/icon_cal.svg) no-repeat center/contain;
  }
  #drawerMenu .drawer_contact .link_tel {
    background: #3BA8D1;
    font-family: "Sofia Sans", sans-serif;
    font-size: clamp(2rem, 1.7vw, 2.4rem);
  }
  #drawerMenu .drawer_contact .link_tel:before {
    width: 20px;
    background: url(/lib/img/cmn/icon_tel.webp) no-repeat center/contain;
  }
  #drawerMenu .timetable {
    padding: 2rem;
    position: relative;
  }
  #drawerMenu .timetable::before {
    content: "";
    width: calc(100% - 4rem);
    height: 2px;
    display: block;
    position: absolute;
    top: 0;
    left: 2rem;
  }
  #drawerMenu .timetable.ear {
    background: #EDF4F5;
  }
  #drawerMenu .timetable.ear::before {
    border-top: 2px dashed #3BA8D1;
  }
  #drawerMenu .timetable.skin {
    background: #F6F2E4;
    position: relative;
  }
  #drawerMenu .timetable.skin::before {
    border-top: 2px dashed #D39948;
  }
  #drawerMenu .copy {
    background: #84CDD9;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 1rem;
    position: relative;
    margin-top: calc(clamp(10px, 245px, 50vw) * 92 / 245);
  }
  #drawerMenu .copy a {
    color: #FFF;
  }
  #drawerMenu .copy::before {
    content: "";
    width: 100%;
    height: calc(clamp(10px, 245px, 50vw) * 92 / 245);
    display: block;
    background: #F6F2E4;
    position: absolute;
    left: 0;
    bottom: 100%;
  }
  #drawerMenu .copy:after {
    content: "";
    width: clamp(10px, 245px, 50vw);
    aspect-ratio: 245/92;
    position: absolute;
    bottom: calc(100% - 0.3rem);
    right: 2rem;
    background: url(/lib/img/cmn/footer_copy_02.webp) no-repeat 0/contain;
  }
}

/* #time_modal*/
#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: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 90vw;
  border-radius: 10px;
  background: #EDF4F5;
  position: fixed;
  left: 50%;
  top: 200px;
  padding: 2rem 1.5rem 2rem;
}
.js-timeOpen #time_modal {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0s 0s;
}
#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;
  padding: 0.3rem 0;
  grid-column: 1/3;
}
#time_modal .close::before {
  content: "×";
}
@media screen and (max-width: 1024px) {
  #time_modal {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  #time_modal {
    display: grid;
    grid-template-columns: 1fr;
    top: 6rem;
    padding: 2rem 1.5rem 2rem;
  }
  #time_modal section + section {
    margin-top: 2rem;
  }
  #time_modal .close {
    grid-column: 1/2;
  }
}

/* ------------------------------------
// main
------------------------------------ */
#pagetitle {
  padding: clamp(3rem, 3.5vw, 5rem) 2rem;
  margin-bottom: 5rem;
  position: relative;
  background: #DDD url(/lib/img/cmn/bg_pagetitle.webp) no-repeat top center/cover;
}
#pagetitle:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  aspect-ratio: 1400/49;
  background: url(/lib/img/cmn/bg_pagetitle_curve.webp) no-repeat top center/cover;
  z-index: 0;
}
#pagetitle hgroup {
  position: relative;
  z-index: 2;
  display: grid;
  place-content: center;
  place-items: center;
  color: #002A54;
  gap: 0.5rem;
}
#pagetitle hgroup:before {
  content: "";
  width: 30px;
  aspect-ratio: 30/43;
  display: block;
  background: #84CDD9;
  mask: url(/lib/img/cmn/icon_koduchi_01.svg) no-repeat center/contain;
}
#pagetitle hgroup .title {
  font-size: clamp(2rem, 2.4vw, 3.4rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
}
#pagetitle hgroup .en {
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  letter-spacing: 0.02em;
  text-indent: 0.02em;
  font-family: "Sofia Sans", sans-serif;
  text-transform: uppercase;
  margin: 0.5rem 0 2rem;
}
@media screen and (max-width: 768px) {
  #pagetitle hgroup .en {
    margin: 0;
  }
}
#pagetitle hgroup:after {
  content: "";
  width: 110px;
  height: 3px;
  display: block;
  border-top: 3px dotted #84CDD9;
}
@media screen and (max-width: 768px) {
  #pagetitle {
    padding: 2rem;
  }
  #pagetitle hgroup .en {
    margin: 0 0 0.5rem;
  }
}

article {
  padding: 0;
  position: relative;
  z-index: 0;
  width: 100%;
}
article #contents {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  article {
    padding: 0;
  }
}

/* ------------------------------------
// parts
------------------------------------ */
:root strong.red {
  color: #cc0000;
}
:root .htype01 {
  display: grid;
  place-content: center;
  place-items: center;
  color: #002A54;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
:root .htype01:before {
  content: "";
  width: 30px;
  aspect-ratio: 30/43;
  display: block;
  background: url(/lib/img/cmn/icon_koduchi_01.svg) no-repeat center/contain;
}
:root .htype01 .title {
  font-size: clamp(2rem, 2.2vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
}
:root .htype01 .en {
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  letter-spacing: 0.02em;
  text-indent: 0.02em;
  font-family: "Sofia Sans", sans-serif;
  text-transform: uppercase;
  margin: 0.5rem 0 2.5rem;
}
@media screen and (max-width: 768px) {
  :root .htype01 .en {
    margin: 0;
  }
}
:root .htype01:after {
  content: "";
  width: 110px;
  height: 3px;
  display: block;
  border-top: 3px dotted;
}
:root .htype01.mizu:after {
  border-color: #3BA8D1;
}
:root .htype01.kiiro:after {
  border-color: #F8CB00;
}
:root .htype02 {
  display: grid;
  place-content: center;
  place-items: center;
  color: #002A54;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
:root .htype02:before {
  content: "";
  width: 30px;
  aspect-ratio: 30/43;
  display: block;
  mask: url(/lib/img/cmn/icon_koduchi_01.svg) no-repeat center/contain;
  background: #F8CB00;
}
:root .htype02 .title {
  font-size: clamp(1.8rem, 1.8vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
}
:root .htype02:after {
  content: "";
  width: 110px;
  height: 3px;
  display: block;
  border-top: 3px dotted #3BA8D1;
}
:root .htype03 {
  display: grid;
  grid-template-columns: 40px 1fr;
  width: fit-content;
  color: #002A54;
  gap: 0.5rem;
  margin: 0 auto 3rem;
}
:root .htype03:before {
  content: "";
  width: 30px;
  aspect-ratio: 30/43;
  display: block;
  background: url(/lib/img/cmn/icon_koduchi_01.svg) no-repeat center/contain;
}
:root .htype03 .title {
  font-size: clamp(1.8rem, 1.8vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
  color: #002A54;
}
:root .htype03 .title:after {
  content: "";
  width: 110px;
  height: 3px;
  display: block;
  border-top: 3px dotted #3BA8D1;
  margin: 1.5rem auto 0;
}
:root .list01 {
  color: #002A54;
}
:root .list01 li {
  display: grid;
  grid-template-columns: 25px 1fr;
  line-height: 1.4;
}
:root .list01 li:before {
  content: "";
  width: 6px;
  height: 2px;
  background: #5183C4;
  display: block;
  margin-top: 0.7em;
}
:root .list01 li + li {
  margin-top: 0.75rem;
}

.btn_contact {
  display: grid;
  grid-template-columns: minmax(25%, max-content) 1fr minmax(25%, max-content);
}
.btn_contact li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 2px;
}
.btn_contact a,
.btn_contact span {
  text-align: center;
  color: #FFF;
  padding: 0.5rem 1rem;
  font-size: 1.6rem;
  line-height: 1;
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
}
.btn_contact a:before,
.btn_contact span:before {
  content: "";
  width: 28px;
  aspect-ratio: 1/1;
  background: #FFF;
  display: block;
  margin: 0 auto;
  align-self: center;
}
.btn_contact .btn_time {
  cursor: pointer;
}
.btn_contact .btn_time span {
  background: #3BA8D1;
}
.btn_contact .btn_time span:before {
  width: 32px;
  mask: url(/lib/img/cmn/icon_time.svg) no-repeat center/contain;
}
.btn_contact .btn_tel a {
  background: #5183C4;
  font-family: "Sofia Sans", sans-serif;
  line-height: 1.3;
}
.btn_contact .btn_tel a:before {
  mask: url(/lib/img/cmn/icon_tel.svg) no-repeat center bottom/contain;
}
.btn_contact .btn_reserve a {
  background: #002A54;
}
.btn_contact .btn_reserve a:before {
  mask: url(/lib/img/cmn/icon_cal.svg) no-repeat center bottom/contain;
}

.timetable .meiyoincho {
  color: #3BA8D1;
}
.timetable h2 {
  text-align: center;
  font-size: clamp(1.6rem, 1.4vw, 2rem);
  margin-bottom: 1rem;
  color: #5183C4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}
.timetable h2 span {
  background: #5183C4;
  color: #FFF;
  padding: 0 1rem;
  line-height: 1.3;
  font-weight: 500;
}
.timetable.ear h2 {
  color: #5183C4;
}
.timetable.skin h2 {
  color: #D39948;
}
.timetable.skin h2 span {
  background: #D39948;
}
.timetable.skin table thead th {
  background: #E9C043;
}
.timetable table {
  width: 100%;
  border-spacing: 0;
  display: grid;
  grid-template-columns: max-content repeat(7, 1fr);
  background: #FFF;
  color: #002A54;
}
.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 {
  padding: 0.5em 0.5em 0.5em;
  font-weight: 500;
  white-space: nowrap;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  background: #84CDD9;
  color: #FFF;
}
.timetable table tbody tr:last-child {
  border-top: 1px solid #EDF4F5;
}
.timetable table tbody tr > * {
  padding: 1em 0.5em;
  line-height: 1;
}
.timetable table tbody tr th {
  font-weight: 500;
  text-align: left;
  padding: 1em 0 1em 0.5em;
  white-space: nowrap;
  align-self: center;
}
.timetable table tbody tr th span {
  color: #cc0000;
  font-weight: bold;
  border-bottom: 3px double;
  text-decoration: double;
}
.timetable table tbody tr td {
  align-self: center;
  font-weight: 500;
  text-align: center;
}
.timetable table tbody tr td.ng {
  color: #ABA9A9;
  font-weight: 700;
  font-family: "IBM Plex Sans JP", sans-serif;
}
.timetable ul.note {
  font-size: clamp(1.2rem, 1.1vw, 1.6rem);
  margin-top: 15px;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .timetable table {
    font-size: 1.4rem;
  }
  .timetable table tbody tr > * {
    padding: 1em 0.2em;
    line-height: 1;
  }
}
@media screen and (max-width: 768px) {
  .timetable table {
    font-size: 1.4rem;
  }
  .timetable table thead th {
    padding: 0.5em 0.25em 0.5em;
  }
  .timetable table tbody tr > * {
    padding: 1em 0.25em;
    line-height: 1;
  }
  .timetable table tbody tr th {
    font-size: 1.3rem;
  }
  .timetable table tbody tr td .time {
    font-size: 1rem;
  }
  .timetable ul.note {
    margin-top: 1rem;
    font-size: clamp(1.2rem, 4.3vw, 1.6rem);
  }
}

/* ------------------------------------
// footer
------------------------------------ */
#footer {
  background: #DDEEF0;
  position: relative;
  padding-top: 2rem;
}
#footer::before {
  content: "";
  width: 100%;
  height: 28px;
  background: #DDEEF0;
  mask: url(/lib/img/cmn/separate_nami_01.svg) repeat-x bottom/cover;
  display: block;
  transform: rotate(180deg);
  position: absolute;
  top: -27px;
  left: 0;
}
#footer .pagetop {
  z-index: 5;
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  width: clamp(4rem, 6.3vw, 9rem);
}
#footer .pagetop.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  #footer::before {
    height: 14px;
    top: -14px;
  }
  #footer .pagetop {
    width: clamp(4rem, 16vw, 6rem);
    right: 1rem;
    bottom: 7rem;
  }
}
#footer .logo {
  max-width: 390px;
  margin: 0 auto 2rem;
}
#footer .tel {
  width: fit-content;
  margin: 0 auto 5rem;
}
#footer .tel a {
  background: #3BA8D1;
  box-shadow: 4px 4px 0 #FFF;
  color: #FFF;
  font-family: "Sofia Sans", sans-serif;
  font-size: clamp(2rem, 1.7vw, 2.4rem);
  font-weight: 500;
  padding: 0.75rem 5rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#footer .tel a:before {
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background: url(/lib/img/cmn/icon_tel.webp) no-repeat center/contain;
}
#footer .tel a:after {
  content: "";
  display: block;
  position: absolute;
  right: 1rem;
  top: calc(50% - 5px);
  width: 6px;
  height: 10px;
  mask: url(/lib/img/cmn/icon_arrow_01.svg) no-repeat center/contain;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  #footer .logo {
    max-width: 100%;
    width: 80%;
    margin-bottom: 2rem;
  }
}
#footer footer {
  padding: 0 2rem 5rem;
  background: #EDF4F5;
}
#footer footer .timetableContainer {
  max-width: 940px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem clamp(2rem, 2.1vw, 3rem);
  padding-top: 5rem;
}
#footer footer .clinic {
  max-width: 940px;
  margin: 0 auto 3rem;
  padding-top: 5rem;
  border-top: 3px dotted #3BA8D1;
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-areas: "address map" "socialLink map" "accesslink map";
  gap: 3rem clamp(2rem, 2.1vw, 3rem);
}
#footer footer .clinic .address {
  grid-area: address;
  color: #002A54;
}
#footer footer .clinic .socialLink {
  grid-area: socialLink;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
#footer footer .clinic .socialLink li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 1;
}
#footer footer .clinic .socialLink a {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  gap: 1rem;
  position: relative;
  padding: 5.5rem 1rem 1rem 1rem;
  border-radius: 10px;
  color: #FFF;
  text-align: center;
}
#footer footer .clinic .socialLink a:hover {
  opacity: 0.8;
}
#footer footer .clinic .socialLink a::before {
  content: "";
  height: 4rem;
  width: 100%;
  display: block;
  position: absolute;
  top: 1rem;
  left: 0;
  background: no-repeat center center/contain;
}
#footer footer .clinic .socialLink a:after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  mask: url(/lib/img/cmn/icon_arrow_01.svg) no-repeat center/contain;
  background: #FFF;
  position: absolute;
  right: 1rem;
  bottom: 1.5rem;
}
#footer footer .clinic .socialLink a.insta {
  background: #DA7EBD;
}
#footer footer .clinic .socialLink a.insta::before {
  background-image: url(/lib/img/cmn/icon_instgram.webp);
}
#footer footer .clinic .socialLink a.line {
  background: #97CA7E;
}
#footer footer .clinic .socialLink a.line::before {
  background-image: url(/lib/img/cmn/icon_line.webp);
}
#footer footer .clinic .map {
  grid-area: map;
}
#footer footer .clinic .map iframe {
  height: 100%;
  min-height: 290px;
}
#footer footer .clinic .accesslink {
  grid-area: accesslink;
  align-self: self-end;
}
#footer footer .clinic .accesslink .way li a {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  font-size: clamp(1.6rem, 1.3vw, 1.8rem);
  font-weight: 500;
  color: #002A54;
  background: #FFF;
  position: relative;
}
#footer footer .clinic .accesslink .way li a span {
  font-size: clamp(2.4rem, 2.1vw, 3rem);
  font-weight: 700;
  display: inline-block;
  padding: 0 0.25rem 0.25rem;
}
#footer footer .clinic .accesslink .way li a:hover {
  background: #DEEBED;
}
#footer footer .clinic .accesslink .way li a:before {
  content: "";
  margin-right: 1rem;
  width: 34px;
  aspect-ratio: 1;
  background: #002A54;
}
#footer footer .clinic .accesslink .way li a:after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  mask: url(/lib/img/cmn/icon_arrow_01.svg) no-repeat center/contain;
  background: #002A54;
  position: absolute;
  right: 1rem;
  top: calc(50% - 3px);
}
#footer footer .clinic .accesslink .way li.car a::before {
  mask: url(/lib/img/cmn/icon_car.svg) no-repeat center/contain;
}
#footer footer .clinic .accesslink .way li.train {
  margin-top: 2px;
}
#footer footer .clinic .accesslink .way li.train a::before {
  mask: url(/lib/img/cmn/icon_train.svg) no-repeat center/contain;
}
#footer footer .clinic .accesslink .link {
  margin-top: 1rem;
}
#footer footer .clinic .accesslink .link a {
  display: block;
  position: relative;
  background: #3BA8D1;
  color: #FFF;
  font-size: clamp(1.8rem, 1.3vw, 1.8rem);
  font-weight: 500;
  padding: 1rem 2rem 1rem 1rem;
  text-align: center;
}
#footer footer .clinic .accesslink .link a:hover {
  background: #7CBDC8;
}
#footer footer .clinic .accesslink .link a:before {
  content: "";
  display: block;
  position: absolute;
  right: 2rem;
  top: calc(50% - 5px);
  width: 6px;
  height: 10px;
  mask: url(/lib/img/cmn/icon_arrow_01.svg) no-repeat center/contain;
  background: #FFF;
}
@media screen and (max-width: 1024px) {
  #footer footer .clinic {
    gap: 1rem clamp(2rem, 2.1vw, 3rem);
  }
}
@media screen and (max-width: 768px) {
  #footer footer {
    padding: 0 1.5rem 1.5rem;
  }
  #footer footer .timetableContainer {
    grid-template-columns: 1fr;
    gap: 1rem clamp(2rem, 2.1vw, 3rem);
  }
  #footer footer .clinic {
    grid-template-columns: 1fr;
    grid-template-areas: "address" "socialLink" "accesslink" "map";
    padding-top: 2rem;
    gap: 3rem;
  }
  #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 {
    margin-top: 0;
  }
  #footer footer .clinic .accesslink a {
    margin: 0 auto;
  }
}
#footer nav {
  padding: 2rem 2rem;
  position: relative;
  background: #FFF;
  max-width: 940px;
  margin: 0 auto;
}
#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;
}
@media screen and (max-width: 768px) {
  #footer nav {
    margin-bottom: calc(clamp(10px, 245px, 50vw) * 92 / 245);
  }
  #footer nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 0.5em;
  }
  #footer nav ul li a {
    display: block;
    padding: 0.5em;
    text-align: center;
  }
}
#footer .copy {
  background: #84CDD9;
  text-align: center;
  padding: 2.5rem 20px;
  font-size: 1.6rem;
  position: relative;
}
#footer .copy a {
  color: #FFF;
}
#footer .copy:before {
  content: "";
  width: 313px;
  aspect-ratio: 313/94;
  position: absolute;
  bottom: calc(100% - 1rem);
  left: clamp(2rem, 50vw - 550px, 9999px);
  background: url(/lib/img/cmn/footer_copy_01.webp) no-repeat 0/contain;
}
#footer .copy:after {
  content: "";
  width: 245px;
  aspect-ratio: 245/92;
  position: absolute;
  bottom: calc(100% - 0.3rem);
  right: clamp(2rem, 50vw - 550px - 2rem, 9999px);
  background: url(/lib/img/cmn/footer_copy_02.webp) no-repeat 0/contain;
}
@media screen and (max-width: 768px) {
  #footer .copy {
    font-size: 1rem;
    padding: 1.5rem 1rem;
  }
  #footer .copy::before {
    display: none;
  }
  #footer .copy:after {
    width: clamp(10px, 245px, 50vw);
    right: 8rem;
  }
}
#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;
  }
}

/* wp class
----------------------------------- */
.entry_body div.alignright,
.entry_body img.alignright,
.entry_body a.alignright {
  float: right;
  margin: 0 0 1em 1em;
}
.entry_body div.alignright.wp-caption,
.entry_body img.alignright.wp-caption,
.entry_body a.alignright.wp-caption {
  margin-right: -10px;
}
.entry_body div.alignright.wp-caption .wp-caption-text,
.entry_body img.alignright.wp-caption .wp-caption-text,
.entry_body a.alignright.wp-caption .wp-caption-text {
  margin-right: 10px;
}
.entry_body div.alignleft,
.entry_body img.alignleft,
.entry_body a.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
.entry_body div.aligncenter,
.entry_body img.aligncenter,
.entry_body a.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
  padding: 1em 0 0;
}
.entry_body .wp-caption .wp-caption-text {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 10px;
}
.entry_body::after {
  content: "";
  clear: both;
  display: block;
}
.entry_body h1,
.entry_body h2,
.entry_body h3,
.entry_body h4,
.entry_body h5,
.entry_body h6 {
  font-weight: 700;
  margin: 2em 0 1em;
}
.entry_body h1,
.entry_body h2,
.entry_body h3 {
  font-size: 2.2rem;
}
.entry_body h4,
.entry_body h5,
.entry_body h6 {
  font-size: 2rem;
}
.entry_body p:not(.wp-caption-text) {
  margin-bottom: 2em;
}
.entry_body ul {
  margin-bottom: 2em;
}
.entry_body ul li {
  padding-left: 1em;
  position: relative;
}
.entry_body ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.entry_body ol {
  margin-bottom: 2em;
  counter-reset: number;
}
.entry_body ol li {
  padding-left: 1.5em;
  position: relative;
}
.entry_body ol li::before {
  position: absolute;
  left: 0;
  counter-increment: number;
  content: counter(number) ".";
}
@media screen and (max-width: 768px) {
  .entry_body .aligncenter,
  .entry_body .alignright,
  .entry_body .alignleft {
    margin: 0 !important;
    float: none !important;
    padding: 0 0 2em 0 !important;
    width: 100%;
  }
  .entry_body .aligncenter img,
  .entry_body .alignright img,
  .entry_body .alignleft img {
    width: 100% !important;
  }
  .entry_body .wp-caption {
    width: auto !important;
    margin: 0 !important;
  }
  .entry_body .wp-caption .wp-caption-text {
    font-size: 1.4rem;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}