@charset "UTF-8";
.normal {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.mincho {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  letter-spacing: unset;
}

.bold {
  font-weight: 600;
}

.archivo {
  font-family: "Archivo Narrow", sans-serif;
  font-weight: 400;
}

.row, .rows > *, .rowss > * > * {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  align-content: center;
}

.row > *, .rows > * > *, .rowss > * > * > * {
  flex: 1 1 auto;
}

.col, .cols > * {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: center;
}

.row.fixedrow {
  align-items: flex-start;
}

.row.fixedrow > * {
  flex: 1 0 0%;
}

.row.fixedrow > * + * {
  margin-left: 15px;
}

@media (width > 730px) {
  .only-m {
    display: none;
  }
  .pc-row, .pc-rows > * {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    align-content: center;
  }
  .pc-row > *, .pc-rows > * > * {
    flex: 1 0 0%;
  }
  .pc-col, .pc-cols > * {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: center;
  }
}
@media (width <= 730px) {
  .only-pc {
    display: none;
  }
  .m-row, .m-rows > * {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    align-content: center;
  }
  .m-row > *, .m-rows > * > * {
    flex: 1 1 auto;
  }
  .m-col, .m-cols > * {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: center;
  }
}
.fit {
  flex: 0 0 auto !important;
}

.btns {
  margin-bottom: 3em;
  display: block;
  text-align: center;
  position: relative;
}
.btns > * {
  all: unset;
  display: inline-block;
  position: relative;
  line-height: 1;
  background-color: #B71D2B;
  border: 1px solid #B71D2B;
  color: white;
  transition: all 0.4s;
  margin: 5px;
  text-align: left;
}
@media (width <= 730px) {
  .btns > * {
    padding: 1em 3em 1em 1em;
    min-width: 60vw;
  }
}
@media (width > 730px) {
  .btns > * {
    padding: 1em 3em 1em 1em;
    min-width: 10vw;
  }
}
.btns > *::after {
  display: block;
  font-family: "Font Awesome 6 Free";
  content: "\f138";
  font-weight: 900;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  padding: 0 10px;
  height: 100%;
  font-size: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s;
}
.btns > *:hover {
  cursor: pointer;
  text-decoration: none;
  color: #B71D2B;
  border: 1px solid #B71D2B;
  background-color: white;
}
html.sec-y main .content {
  background-color: white;
  padding-bottom: 60px;
}
html.sec-y main section p {
  line-height: 1.5;
}
html.sec-y main section ul li {
  line-height: 1.5;
}
html.sec-y main section table tr td {
  line-height: 3;
}
html.sec-y main section table tr td:nth-child(1) {
  width: 7em;
}
html.sec-y main .ko-link {
  color: #8CD22F;
  position: relative;
  border-bottom: 1px solid #8CD22F;
  padding-bottom: 1em;
  line-height: 1.5;
}
@media (width <= 730px) {
  html.sec-y main .ko-link {
    font-size: clamp(320px * 6 / 100, (100vw - 40px) * 6 / 100, 690px * 6 / 100);
  }
}
@media (width > 730px) {
  html.sec-y main .ko-link {
    font-size: clamp(490px * 2.5 / 100, (100vw - 240px) * 2.5 / 100, 1060px * 2.5 / 100);
  }
}
@media(width > 730px) {
  html.sec-y main .ko-link {
    width: 80%;
  }
}
@media(width <= 730px) {
  html.sec-y main .ko-link {
    width: 90%;
  }
}
html.sec-y main .ko-link > a::after {
  content: url("/wp-content/themes/custom/img/sec/arrow.svg");
  padding: 5px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #8CD22F;
  color: white;
  display: block;
  position: absolute;
  line-height: 0.5em;
  text-align: center;
  transform: rotate(-90deg);
}
@media(width > 730px) {
  html.sec-y main .ko-link > a::after {
    top: 5%;
    right: 0%;
  }
}
@media(width <= 730px) {
  html.sec-y main .ko-link > a::after {
    top: 30%;
    right: 0%;
  }
}

html#profile main section .pc-row {
  justify-content: space-between;
  align-items: stretch;
}
html#profile main section .pc-row > * {
  flex: 0 0 calc((100% - 35px) / 2);
}
html#profile main section#s01 .name {
  font-size: 200%;
}
html#profile main section#s01 .name span {
  font-size: 50%;
  margin-left: 1em;
}
html#profile main section#s01 ul {
  margin-left: 1em;
  margin-top: 50px;
}
html#profile main section#s01 ul li {
  font-size: 80%;
  list-style: disc;
}
html#profile main section#s02 > div:nth-child(2) {
  margin-bottom: 50px;
}
html#profile main section#s02 > div:nth-child(2) table tr td:first-child {
  color: #8CD22F;
}
html#profile main section#s02 > div:nth-child(2) p {
  color: #8CD22F;
}

html#treatment section#s01-flow .cont {
  margin: 50px 0 100px 0;
}
html#treatment section#s01-flow .intro {
  padding: 50px 0 50px 0;
}
html#treatment section#s01-flow > div {
  padding-left: 20%;
  position: relative;
}
html#treatment section#s01-flow > div::before {
  content: "";
  width: 3em;
  height: 100%;
  background-color: #eee;
  display: block;
  position: absolute;
  top: -1em;
  padding: 3em 0 3em 0;
}
@media(width > 730px) {
  html#treatment section#s01-flow > div::before {
    left: 2em;
  }
}
@media(width <= 730px) {
  html#treatment section#s01-flow > div::before {
    left: 0%;
  }
}
html#treatment section#s01-flow > div h4 {
  position: relative;
  margin: 20px 0 30px 0;
}
html#treatment section#s01-flow > div h4::before {
  content: "";
  border-top: 1px dashed;
  width: 15%;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: -17%;
}
html#treatment section#s01-flow > div h4::after {
  content: "";
  width: 0.7em;
  height: 0.7em;
  background-color: #8CD22F;
  border-radius: 50%;
  position: absolute;
  top: 20%;
  display: block;
}
@media(width > 730px) {
  html#treatment section#s01-flow > div h4::after {
    left: -18%;
  }
}
@media(width <= 730px) {
  html#treatment section#s01-flow > div h4::after {
    left: -18%;
  }
}
@media (width <= 730px) {
  html#treatment section#s01-flow > div h4 {
    font-size: clamp(320px * 5 / 100, (100vw - 40px) * 5 / 100, 690px * 5 / 100);
  }
}
@media (width > 730px) {
  html#treatment section#s01-flow > div h4 {
    font-size: clamp(490px * 3 / 100, (100vw - 240px) * 3 / 100, 1060px * 3 / 100);
  }
}
html#treatment section#s01-flow > div h4 strong {
  font-family: "Archivo Narrow";
  color: white;
  background-color: black;
  border-radius: 999px;
  padding: 7.5px 10px 7.5px 10px;
  margin-right: 1em;
  letter-spacing: 0.1em;
  font-weight: lighter;
}
html#treatment section#s01-flow > div h4 span {
  color: #8CD22F;
  font-weight: 600;
}

html#consultation main section .cont {
  margin-bottom: 50px;
}
html#consultation main section .cont h4 {
  font-size: 130%;
  margin-bottom: 50px;
  position: relative;
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
}
html#consultation main section .cont h4::before {
  content: "・";
  color: #8CD22F;
  font-size: 150%;
  position: relative;
  top: 5px;
}
html#consultation main section .cont .ko-link {
  width: 100%;
  margin-top: 50px;
}
@media (width <= 730px) {
  html#consultation main section .cont .ko-link {
    font-size: clamp(320px * 5 / 100, (100vw - 40px) * 5 / 100, 690px * 5 / 100);
  }
}
@media (width > 730px) {
  html#consultation main section .cont .ko-link {
    font-size: clamp(490px * 1.8 / 100, (100vw - 240px) * 1.8 / 100, 1060px * 1.8 / 100);
  }
}
html#consultation main section .pc-row > * {
  flex: 0 0 calc(50% - 25px);
}

html#access main section .pc-row {
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
}
html#access main section .pc-row > * {
  flex: 0 0 calc(50% - 20px);
}
html#access main section#s01-place .pc-row {
  align-items: stretch;
}
html#access main section#s01-place .pc-row h4 {
  color: #8CD22F;
  font-size: 120%;
  margin-bottom: 10px;
  font-weight: 600;
}
html#access main section#s01-place .pc-row p {
  line-height: 2;
}
html#access main section#s01-place .pc-row .hours {
  margin-top: 20px;
  border-top: 0.5px solid;
  border-bottom: 0.5px solid;
  padding: 1em 0 1em 0;
}
html#access main section#s01-place .pc-row .hours > * {
  font-size: 80%;
  font-family: "Noto Sans Kannada";
}
html#access main section#s01-place .pc-row .hours > p:nth-child(3) {
  margin-left: 6em;
}
@media(width <= 730px) {
  html#access main section#s01-place iframe {
    height: 30vh;
  }
}
html#access main section#s02-parking .pc-row > div {
  display: flex;
  flex-direction: column;
}
@media(width <= 730px) {
  html#access main section#s02-parking .pc-row figure {
    margin-top: 20px;
  }
}
html#access main section#s02-parking h4 {
  font-size: 130%;
  margin-bottom: 20px;
  position: relative;
  margin-left: 1em;
  text-indent: -1em;
}
html#access main section#s02-parking h4::before {
  content: "・";
  color: #8CD22F;
  font-size: 150%;
  position: relative;
  top: 5px;
}
html#access main section#s02-parking .maps-link {
  background-color: #8CD22F;
  color: white;
  text-align: center;
  padding: 10px;
}
@media(width > 730px) {
  html#access main section#s02-parking .maps-link {
    margin-top: 90px;
  }
}
@media(width <= 730px) {
  html#access main section#s02-parking .maps-link {
    margin-top: 50px;
  }
}/*# sourceMappingURL=site_y.css.map */