@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&family=Questrial&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: "Kosugi Maru", sans-serif;
 font-family: "BIZ UDGothic", sans-serif;
*/
/* ------------------------------------
// base
------------------------------------ */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.8571428571vw;
  }
}

body {
  color: #444;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(1.6rem, 1.428vw, 1.8rem);
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

@media (min-width: 1023px) {
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
    min-width: 0;
  }
}
.sp {
  display: none;
}

.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/* header
------------------------------------ */
#header {
  background: #EFEFEF;
  margin-bottom: 10rem;
}
#header .line {
  background: #FFF;
  color: #3BA8D1;
  padding: 2rem 1rem 2rem;
  font-size: clamp(1.2rem, 1.1vw, 1.6rem);
  text-align: center;
}
#header .titleblock {
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
}
#header .titleblock h1 {
  width: clamp(300px, 40vw, 900px);
  margin: 0 auto;
}
#header .titleblock .data {
  align-self: center;
}
#header .titleblock .data span {
  color: #3BA8D1;
  font-weight: bold;
  font-size: clamp(2rem, 1.6vw, 2.4rem);
  letter-spacing: 0.2rem;
}
#header p {
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #header {
    margin-bottom: 5rem;
  }
  #header .line {
    padding: 1rem;
  }
  #header .titleblock {
    padding: 2rem 1rem;
    display: block;
  }
  #header .titleblock .data {
    border-top: 1px dotted #3BA8D1;
    padding: 3rem 1rem 0;
    margin-top: 3rem;
    text-align: center;
  }
}

/* contents
------------------------------------ */
#contents {
  max-width: 1024px;
  padding: 0 2rem;
  margin: 0 auto;
}
#contents > section {
  margin-bottom: 5em;
}
#contents .htype01 {
  margin-bottom: 2em;
  padding-bottom: 0.2em;
  border-bottom: 2px solid #5183C4;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  padding-bottom: 1rem;
}
#contents .htype01 p {
  color: #3BA8D1;
  font-family: "Questrial", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
}
#contents .htype01 p::before {
  content: "―― ";
  letter-spacing: 0;
}
#contents .htype01 h2 {
  color: #5183C4;
  font-size: 3rem;
  display: flex;
  gap: 1rem;
  line-height: 1;
}
#contents .htype01 h2::before {
  content: "";
  width: 1.8rem;
  aspect-ratio: 1;
  mask: url(/pre_lib/img/icon_plus.svg) no-repeat center/contain;
  background: #F8CB00;
}
#contents .htype01 h2 span {
  font-size: 1.428vw;
}
#contents p + p {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  #contents .htype01 {
    flex-wrap: wrap;
    gap: 0 1rem;
  }
  #contents .htype01 h2 {
    font-size: 2rem;
    gap: 0.5rem;
  }
  #contents .htype01 p {
    margin-top: 1rem;
    width: 100%;
    font-size: 1.2rem;
    text-align: right !important;
  }
}
#contents #treatment ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10em, 1fr));
  gap: 1rem 2rem;
  margin-top: 3rem;
}
#contents #treatment ul li {
  border-radius: 5px;
  line-height: 1.2;
  border: 1px solid #CCC;
  padding: 1rem 0.5rem;
  text-align: center;
  place-content: center;
  place-items: center;
}
#contents #treatment ul.ear li {
  background: rgba(59, 168, 209, 0.1);
}
#contents #treatment ul.skin li {
  background: rgba(248, 203, 0, 0.1);
}
#contents #greeting p {
  text-align: justify;
}
#contents #greeting .doctor {
  text-align: right;
}
#contents #about .motto {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 3rem;
}
#contents #about .motto h3 {
  color: #5183C4;
  font-weight: bold;
  align-self: center;
}
#contents #about .motto ul {
  padding-left: 3rem;
  position: relative;
}
#contents #about .motto ul::before {
  content: "";
  position: absolute;
  display: block;
  border-left: 2px solid #5183C4;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  transform: rotate(8deg);
}
#contents #about .motto ul li {
  color: #5183C4;
  font-weight: bold;
}
#contents #profile .doctor {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 10em 1fr;
  gap: 4rem;
}
#contents #profile .doctor .name {
  background: rgba(132, 205, 217, 0.2);
  padding: 2rem;
  position: relative;
}
#contents #profile .doctor .name::before {
  content: "";
  width: 1.8rem;
  aspect-ratio: 1;
  mask: url(/pre_lib/img/icon_plus.svg) no-repeat center/contain;
  background: #F8CB00;
  position: absolute;
  display: block;
  top: -0.9rem;
  left: -0.9rem;
}
#contents #profile .doctor .name hgroup p {
  color: #5183C4;
  font-weight: bold;
}
#contents #profile .doctor .name hgroup h3 {
  font-size: 2.4rem;
}
#contents #profile .doctor .name hgroup h3 span {
  font-size: 1.4rem;
  display: block;
}
#contents #profile .doctor .data ul, #contents #profile .doctor .data dl {
  padding: 2rem 0 2rem 1.5rem;
  border-left: 1px solid #5183C4;
}
#contents #profile .doctor .data section + section {
  margin-top: 3rem;
}
#contents #profile .doctor .data h4 {
  background: #5183C4;
  width: fit-content;
  border-radius: 0 50vh 50vh 0;
  padding: 4px 2rem;
  color: #FFF;
}
#contents #profile .doctor .data dl.history {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0 2rem;
}
#contents #profile .doctor .data ul li {
  padding-left: 0.75rem;
  text-indent: -0.75rem;
  line-height: 1.4;
}
#contents #profile .doctor .data ul li + li {
  margin-top: 0.5rem;
}
#contents #profile .doctor .data ul li::before {
  content: "- ";
  color: #5183C4;
}
@media screen and (max-width: 768px) {
  #contents #profile .doctor {
    display: grid;
    grid-template-columns: 1fr;
  }
}
#contents #profile #satoru .name {
  background: rgba(81, 131, 196, 0.2);
}
#contents #profile #satoru .name::before {
  background: #5183C4;
}
#contents #profile #hiromu .name {
  background: rgba(59, 168, 209, 0.2);
}
#contents #profile #hiromu .name::before {
  background: #3BA8D1;
}
#contents #profile #hiromu .name hgroup p {
  color: #3BA8D1;
}
#contents #profile #hiromu .data h4 {
  background: #3BA8D1;
}
#contents #profile #hiromu .data ul, #contents #profile #hiromu .data dl {
  border-color: #3BA8D1;
}
#contents #profile #nagako .name {
  background: rgba(248, 203, 0, 0.2);
}
#contents #profile #nagako .name::before {
  background: #F8CB00;
}
#contents #profile #nagako .name hgroup p {
  color: #F8CB00;
}
#contents #profile #nagako .data h4 {
  background: #F8CB00;
}
#contents #profile #nagako .data ul, #contents #profile #nagako .data dl {
  border-color: #F8CB00;
}
#contents #time h3 {
  background: #5183C4;
  padding: 4px 4rem 4px 2rem;
  border-radius: 0 50vh 50vh 0;
  width: fit-content;
  color: #FFF;
}
#contents #time .cover {
  padding-left: 1.5rem;
  padding: 2rem 0 2rem 1.5rem;
  border-left: 1px solid #5183C4;
}
#contents #time .timetable {
  border-collapse: collapse;
  border-left: 1px solid #CCC;
  border-top: 1px solid #CCC;
  width: fit-content;
}
#contents #time .timetable th, #contents #time .timetable td {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  font-weight: normal;
}
#contents #time .timetable thead th {
  background: rgba(81, 131, 196, 0.2);
}
#contents #time .timetable tbody th {
  text-align: right;
}
@media screen and (max-width: 768px) {
  #contents #time .cover {
    padding-left: 0.5rem;
  }
  #contents #time .timetable {
    width: 100%;
  }
  #contents #time .timetable th, #contents #time .timetable td {
    padding: 0.5rem 0.25rem;
    font-size: 1.3rem;
  }
  #contents #time .timetable tbody th {
    text-align: center;
  }
  #contents #time .timetable tbody td.timelimit {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
#contents #time #skin {
  margin-top: 3rem;
}
#contents #time #skin h3 {
  background: #F8CB00;
  color: #444;
}
#contents #time #skin .cover {
  border-color: #F8CB00;
}
#contents #time #skin .timetable thead th {
  background: rgba(248, 203, 0, 0.15);
}
#contents #access .access_inner {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 4rem;
}
#contents #access .access_inner .data ul li {
  padding: 4px 2rem;
  background: #5183C4;
  color: #FFF;
  border-radius: 50vh;
  margin-top: 1rem;
  text-align: center;
}
#contents #access .access_inner .map iframe {
  aspect-ratio: 3/2;
}
@media screen and (max-width: 768px) {
  #contents #access .access_inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
#contents #recruit {
  background: rgba(248, 203, 0, 0.1);
  padding: 3rem 3rem;
  border-radius: 15px;
}
#contents #recruit .link a {
  display: block;
  width: fit-content;
  padding: 2rem 4rem;
  margin: 2rem auto 0 auto;
  text-align: center;
  background: #5183C4;
  color: #FFF;
  border-radius: 50vh;
}
@media screen and (max-width: 768px) {
  #contents #recruit {
    padding: 3rem 2rem;
  }
}

.copy {
  text-align: center;
  font-size: 1.4rem;
  padding: 2rem 0;
  border-top: 1px solid #ccc;
  margin-top: 3rem;
  letter-spacing: 0.1rem;
}